blob: 50f11637407f510644a0de7e491014b061861d18 [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{
Amaury Denoyelle8f2e7fd2024-03-29 17:47:23 +0100484 if (newsrv->flags & SRV_F_DYNAMIC) {
485 return 0;
486 }
487
Emeric Brun52a91d32017-08-31 14:41:55 +0200488 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
489 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100490 newsrv->check.state &= ~CHK_ST_PAUSED;
491 newsrv->check.health = newsrv->check.rise;
492 return 0;
493}
494
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100495/* Parse the "error-limit" server keyword */
496static int srv_parse_error_limit(char **args, int *cur_arg,
497 struct proxy *curproxy, struct server *newsrv, char **err)
498{
499 if (!*args[*cur_arg + 1]) {
500 memprintf(err, "'%s' expects an integer argument.",
501 args[*cur_arg]);
502 return ERR_ALERT | ERR_FATAL;
503 }
504
505 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
506
507 if (newsrv->consecutive_errors_limit <= 0) {
508 memprintf(err, "%s has to be > 0.",
509 args[*cur_arg]);
510 return ERR_ALERT | ERR_FATAL;
511 }
512
513 return 0;
514}
515
Amaury Denoyelle69352ec2021-10-18 14:40:29 +0200516/* Parse the "ws" keyword */
517static int srv_parse_ws(char **args, int *cur_arg,
518 struct proxy *curproxy, struct server *newsrv, char **err)
519{
520 if (!args[*cur_arg + 1]) {
521 memprintf(err, "'%s' expects 'auto', 'h1' or 'h2' value", args[*cur_arg]);
522 return ERR_ALERT | ERR_FATAL;
523 }
524
525 if (strcmp(args[*cur_arg + 1], "h1") == 0) {
526 newsrv->ws = SRV_WS_H1;
527 }
528 else if (strcmp(args[*cur_arg + 1], "h2") == 0) {
529 newsrv->ws = SRV_WS_H2;
530 }
531 else if (strcmp(args[*cur_arg + 1], "auto") == 0) {
532 newsrv->ws = SRV_WS_AUTO;
533 }
534 else {
535 memprintf(err, "'%s' has to be 'auto', 'h1' or 'h2'", args[*cur_arg]);
536 return ERR_ALERT | ERR_FATAL;
537 }
538
539
540 return 0;
541}
542
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100543/* Parse the "init-addr" server keyword */
544static int srv_parse_init_addr(char **args, int *cur_arg,
545 struct proxy *curproxy, struct server *newsrv, char **err)
546{
547 char *p, *end;
548 int done;
549 struct sockaddr_storage sa;
550
551 newsrv->init_addr_methods = 0;
552 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
553
554 for (p = args[*cur_arg + 1]; *p; p = end) {
555 /* cut on next comma */
556 for (end = p; *end && *end != ','; end++);
557 if (*end)
558 *(end++) = 0;
559
560 memset(&sa, 0, sizeof(sa));
561 if (strcmp(p, "libc") == 0) {
562 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
563 }
564 else if (strcmp(p, "last") == 0) {
565 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
566 }
567 else if (strcmp(p, "none") == 0) {
568 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
569 }
570 else if (str2ip2(p, &sa, 0)) {
571 if (is_addr(&newsrv->init_addr)) {
572 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
573 args[*cur_arg], p);
574 return ERR_ALERT | ERR_FATAL;
575 }
576 newsrv->init_addr = sa;
577 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
578 }
579 else {
580 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
581 args[*cur_arg], p);
582 return ERR_ALERT | ERR_FATAL;
583 }
584 if (!done) {
585 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
586 args[*cur_arg], p);
587 return ERR_ALERT | ERR_FATAL;
588 }
589 }
590
591 return 0;
592}
593
594/* Parse the "log-proto" server keyword */
595static int srv_parse_log_proto(char **args, int *cur_arg,
596 struct proxy *curproxy, struct server *newsrv, char **err)
597{
598 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
599 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
600 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
601 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
602 else {
603 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
604 args[*cur_arg], args[*cur_arg + 1]);
605 return ERR_ALERT | ERR_FATAL;
606 }
607
608 return 0;
609}
610
611/* Parse the "maxconn" server keyword */
612static int srv_parse_maxconn(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 newsrv->maxconn = atol(args[*cur_arg + 1]);
616 return 0;
617}
618
619/* Parse the "maxqueue" server keyword */
620static int srv_parse_maxqueue(char **args, int *cur_arg,
621 struct proxy *curproxy, struct server *newsrv, char **err)
622{
623 newsrv->maxqueue = atol(args[*cur_arg + 1]);
624 return 0;
625}
626
627/* Parse the "minconn" server keyword */
628static int srv_parse_minconn(char **args, int *cur_arg,
629 struct proxy *curproxy, struct server *newsrv, char **err)
630{
631 newsrv->minconn = atol(args[*cur_arg + 1]);
632 return 0;
633}
634
Willy Tarreau9c538e02019-01-23 10:21:49 +0100635static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
636{
637 char *arg;
638
639 arg = args[*cur_arg + 1];
640 if (!*arg) {
641 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
642 return ERR_ALERT | ERR_FATAL;
643 }
644 newsrv->max_reuse = atoi(arg);
645
646 return 0;
647}
648
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100649static 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 +0100650{
651 const char *res;
652 char *arg;
653 unsigned int time;
654
655 arg = args[*cur_arg + 1];
656 if (!*arg) {
657 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
658 return ERR_ALERT | ERR_FATAL;
659 }
660 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200661 if (res == PARSE_TIME_OVER) {
662 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
663 args[*cur_arg+1], args[*cur_arg]);
664 return ERR_ALERT | ERR_FATAL;
665 }
666 else if (res == PARSE_TIME_UNDER) {
667 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
668 args[*cur_arg+1], args[*cur_arg]);
669 return ERR_ALERT | ERR_FATAL;
670 }
671 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100672 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
673 *res, args[*cur_arg]);
674 return ERR_ALERT | ERR_FATAL;
675 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100676 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100677
678 return 0;
679}
680
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200681static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
682{
683 char *arg;
684
685 arg = args[*cur_arg + 1];
686 if (!*arg) {
687 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
688 return ERR_ALERT | ERR_FATAL;
689 }
690
691 newsrv->low_idle_conns = atoi(arg);
692 return 0;
693}
694
Olivier Houchard006e3102018-12-10 18:30:32 +0100695static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
696{
697 char *arg;
698
699 arg = args[*cur_arg + 1];
700 if (!*arg) {
701 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
702 return ERR_ALERT | ERR_FATAL;
703 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100704
Olivier Houchard006e3102018-12-10 18:30:32 +0100705 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100706 if ((int)newsrv->max_idle_conns < -1) {
707 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
708 return ERR_ALERT | ERR_FATAL;
709 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100710
711 return 0;
712}
713
Willy Tarreaudff55432012-10-10 17:51:05 +0200714/* parse the "id" server keyword */
715static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
716{
717 struct eb32_node *node;
718
719 if (!*args[*cur_arg + 1]) {
720 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
721 return ERR_ALERT | ERR_FATAL;
722 }
723
724 newsrv->puid = atol(args[*cur_arg + 1]);
725 newsrv->conf.id.key = newsrv->puid;
726
727 if (newsrv->puid <= 0) {
728 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
729 return ERR_ALERT | ERR_FATAL;
730 }
731
732 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
733 if (node) {
734 struct server *target = container_of(node, struct server, conf.id);
735 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
736 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
737 target->id);
738 return ERR_ALERT | ERR_FATAL;
739 }
740
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200741 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200742 return 0;
743}
744
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100745/* Parse the "namespace" server keyword */
746static int srv_parse_namespace(char **args, int *cur_arg,
747 struct proxy *curproxy, struct server *newsrv, char **err)
748{
Willy Tarreaue5733232019-05-22 19:24:06 +0200749#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100750 char *arg;
751
752 arg = args[*cur_arg + 1];
753 if (!*arg) {
754 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
755 return ERR_ALERT | ERR_FATAL;
756 }
757
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100758 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100759 /* Use the namespace associated with the connection (if present). */
760 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
761 return 0;
762 }
763
764 /*
765 * As this parser may be called several times for the same 'default-server'
766 * object, or for a new 'server' instance deriving from a 'default-server'
767 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
768 */
769 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
770
771 newsrv->netns = netns_store_lookup(arg, strlen(arg));
772 if (!newsrv->netns)
773 newsrv->netns = netns_store_insert(arg);
774
775 if (!newsrv->netns) {
776 memprintf(err, "Cannot open namespace '%s'", arg);
777 return ERR_ALERT | ERR_FATAL;
778 }
779
780 return 0;
781#else
782 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
783 return ERR_ALERT | ERR_FATAL;
784#endif
785}
786
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100787/* Parse the "no-backup" server keyword */
788static int srv_parse_no_backup(char **args, int *cur_arg,
789 struct proxy *curproxy, struct server *newsrv, char **err)
790{
791 newsrv->flags &= ~SRV_F_BACKUP;
792 return 0;
793}
794
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100795
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100796/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200797static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100798{
799 srv->pp_opts &= ~flags;
800 return 0;
801}
802
803/* Parse the "no-send-proxy" server keyword */
804static int srv_parse_no_send_proxy(char **args, int *cur_arg,
805 struct proxy *curproxy, struct server *newsrv, char **err)
806{
807 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
808}
809
810/* Parse the "no-send-proxy-v2" server keyword */
811static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
812 struct proxy *curproxy, struct server *newsrv, char **err)
813{
814 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
815}
816
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200817/* Parse the "no-tfo" server keyword */
818static int srv_parse_no_tfo(char **args, int *cur_arg,
819 struct proxy *curproxy, struct server *newsrv, char **err)
820{
821 newsrv->flags &= ~SRV_F_FASTOPEN;
822 return 0;
823}
824
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100825/* Parse the "non-stick" server keyword */
826static int srv_parse_non_stick(char **args, int *cur_arg,
827 struct proxy *curproxy, struct server *newsrv, char **err)
828{
829 newsrv->flags |= SRV_F_NON_STICK;
830 return 0;
831}
832
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100833/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200834static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100835{
836 srv->pp_opts |= flags;
837 return 0;
838}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200839/* parse the "proto" server keyword */
840static int srv_parse_proto(char **args, int *cur_arg,
841 struct proxy *px, struct server *newsrv, char **err)
842{
843 struct ist proto;
844
845 if (!*args[*cur_arg + 1]) {
846 memprintf(err, "'%s' : missing value", args[*cur_arg]);
847 return ERR_ALERT | ERR_FATAL;
848 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100849 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200850 newsrv->mux_proto = get_mux_proto(proto);
851 if (!newsrv->mux_proto) {
852 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
853 return ERR_ALERT | ERR_FATAL;
854 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200855 return 0;
856}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100857
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100858/* parse the "proxy-v2-options" */
859static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
860 struct proxy *px, struct server *newsrv, char **err)
861{
862 char *p, *n;
863 for (p = args[*cur_arg+1]; p; p = n) {
864 n = strchr(p, ',');
865 if (n)
866 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100867 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100868 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100869 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100870 newsrv->pp_opts |= SRV_PP_V2_SSL;
871 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100872 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100873 newsrv->pp_opts |= SRV_PP_V2_SSL;
874 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100875 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100876 newsrv->pp_opts |= SRV_PP_V2_SSL;
877 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100878 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100879 newsrv->pp_opts |= SRV_PP_V2_SSL;
880 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100881 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100882 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100883 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100884 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100885 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100886 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100887 } else
888 goto fail;
889 }
890 return 0;
891 fail:
892 if (err)
893 memprintf(err, "'%s' : proxy v2 option not implemented", p);
894 return ERR_ALERT | ERR_FATAL;
895}
896
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100897/* Parse the "observe" server keyword */
898static int srv_parse_observe(char **args, int *cur_arg,
899 struct proxy *curproxy, struct server *newsrv, char **err)
900{
901 char *arg;
902
903 arg = args[*cur_arg + 1];
904 if (!*arg) {
905 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
906 return ERR_ALERT | ERR_FATAL;
907 }
908
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100909 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100910 newsrv->observe = HANA_OBS_NONE;
911 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100912 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100913 newsrv->observe = HANA_OBS_LAYER4;
914 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100915 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100916 if (curproxy->mode != PR_MODE_HTTP) {
917 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
918 return ERR_ALERT;
919 }
920 newsrv->observe = HANA_OBS_LAYER7;
921 }
922 else {
923 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
924 "but got '%s'\n", args[*cur_arg], arg);
925 return ERR_ALERT | ERR_FATAL;
926 }
927
928 return 0;
929}
930
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100931/* Parse the "on-error" server keyword */
932static int srv_parse_on_error(char **args, int *cur_arg,
933 struct proxy *curproxy, struct server *newsrv, char **err)
934{
935 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
936 newsrv->onerror = HANA_ONERR_FASTINTER;
937 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
938 newsrv->onerror = HANA_ONERR_FAILCHK;
939 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
940 newsrv->onerror = HANA_ONERR_SUDDTH;
941 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
942 newsrv->onerror = HANA_ONERR_MARKDWN;
943 else {
944 memprintf(err, "'%s' expects one of 'fastinter', "
945 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
946 args[*cur_arg], args[*cur_arg + 1]);
947 return ERR_ALERT | ERR_FATAL;
948 }
949
950 return 0;
951}
952
953/* Parse the "on-marked-down" server keyword */
954static int srv_parse_on_marked_down(char **args, int *cur_arg,
955 struct proxy *curproxy, struct server *newsrv, char **err)
956{
957 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
958 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
959 else {
960 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
961 args[*cur_arg], args[*cur_arg + 1]);
962 return ERR_ALERT | ERR_FATAL;
963 }
964
965 return 0;
966}
967
968/* Parse the "on-marked-up" server keyword */
969static int srv_parse_on_marked_up(char **args, int *cur_arg,
970 struct proxy *curproxy, struct server *newsrv, char **err)
971{
972 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
973 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
974 else {
975 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
976 args[*cur_arg], args[*cur_arg + 1]);
977 return ERR_ALERT | ERR_FATAL;
978 }
979
980 return 0;
981}
982
Frédéric Lécaille16186232017-03-14 16:42:49 +0100983/* Parse the "redir" server keyword */
984static int srv_parse_redir(char **args, int *cur_arg,
985 struct proxy *curproxy, struct server *newsrv, char **err)
986{
987 char *arg;
988
989 arg = args[*cur_arg + 1];
990 if (!*arg) {
991 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
992 return ERR_ALERT | ERR_FATAL;
993 }
994
995 free(newsrv->rdr_pfx);
996 newsrv->rdr_pfx = strdup(arg);
997 newsrv->rdr_len = strlen(arg);
998
999 return 0;
1000}
1001
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001002/* Parse the "resolvers" server keyword */
1003static int srv_parse_resolvers(char **args, int *cur_arg,
1004 struct proxy *curproxy, struct server *newsrv, char **err)
1005{
1006 free(newsrv->resolvers_id);
1007 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
1008 return 0;
1009}
1010
1011/* Parse the "resolve-net" server keyword */
1012static int srv_parse_resolve_net(char **args, int *cur_arg,
1013 struct proxy *curproxy, struct server *newsrv, char **err)
1014{
1015 char *p, *e;
1016 unsigned char mask;
1017 struct resolv_options *opt;
1018
1019 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
1020 memprintf(err, "'%s' expects a list of networks.",
1021 args[*cur_arg]);
1022 return ERR_ALERT | ERR_FATAL;
1023 }
1024
1025 opt = &newsrv->resolv_opts;
1026
1027 /* Split arguments by comma, and convert it from ipv4 or ipv6
1028 * string network in in_addr or in6_addr.
1029 */
1030 p = args[*cur_arg + 1];
1031 e = p;
1032 while (*p != '\0') {
1033 /* If no room available, return error. */
1034 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1035 memprintf(err, "'%s' exceed %d networks.",
1036 args[*cur_arg], SRV_MAX_PREF_NET);
1037 return ERR_ALERT | ERR_FATAL;
1038 }
1039 /* look for end or comma. */
1040 while (*e != ',' && *e != '\0')
1041 e++;
1042 if (*e == ',') {
1043 *e = '\0';
1044 e++;
1045 }
1046 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1047 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1048 /* Try to convert input string from ipv4 or ipv6 network. */
1049 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1050 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1051 &mask)) {
1052 /* Try to convert input string from ipv6 network. */
1053 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1054 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1055 } else {
1056 /* All network conversions fail, return error. */
1057 memprintf(err, "'%s' invalid network '%s'.",
1058 args[*cur_arg], p);
1059 return ERR_ALERT | ERR_FATAL;
1060 }
1061 opt->pref_net_nb++;
1062 p = e;
1063 }
1064
1065 return 0;
1066}
1067
1068/* Parse the "resolve-opts" server keyword */
1069static int srv_parse_resolve_opts(char **args, int *cur_arg,
1070 struct proxy *curproxy, struct server *newsrv, char **err)
1071{
1072 char *p, *end;
1073
1074 for (p = args[*cur_arg + 1]; *p; p = end) {
1075 /* cut on next comma */
1076 for (end = p; *end && *end != ','; end++);
1077 if (*end)
1078 *(end++) = 0;
1079
1080 if (strcmp(p, "allow-dup-ip") == 0) {
1081 newsrv->resolv_opts.accept_duplicate_ip = 1;
1082 }
1083 else if (strcmp(p, "ignore-weight") == 0) {
1084 newsrv->resolv_opts.ignore_weight = 1;
1085 }
1086 else if (strcmp(p, "prevent-dup-ip") == 0) {
1087 newsrv->resolv_opts.accept_duplicate_ip = 0;
1088 }
1089 else {
1090 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1091 args[*cur_arg], p);
1092 return ERR_ALERT | ERR_FATAL;
1093 }
1094 }
1095
1096 return 0;
1097}
1098
1099/* Parse the "resolve-prefer" server keyword */
1100static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1101 struct proxy *curproxy, struct server *newsrv, char **err)
1102{
1103 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1104 newsrv->resolv_opts.family_prio = AF_INET;
1105 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1106 newsrv->resolv_opts.family_prio = AF_INET6;
1107 else {
1108 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1109 args[*cur_arg]);
1110 return ERR_ALERT | ERR_FATAL;
1111 }
1112
1113 return 0;
1114}
1115
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001116/* Parse the "send-proxy" server keyword */
1117static int srv_parse_send_proxy(char **args, int *cur_arg,
1118 struct proxy *curproxy, struct server *newsrv, char **err)
1119{
1120 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1121}
1122
1123/* Parse the "send-proxy-v2" server keyword */
1124static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1125 struct proxy *curproxy, struct server *newsrv, char **err)
1126{
1127 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1128}
1129
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001130/* Parse the "slowstart" server keyword */
1131static int srv_parse_slowstart(char **args, int *cur_arg,
1132 struct proxy *curproxy, struct server *newsrv, char **err)
1133{
1134 /* slowstart is stored in seconds */
1135 unsigned int val;
1136 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1137
1138 if (time_err == PARSE_TIME_OVER) {
1139 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1140 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1141 return ERR_ALERT | ERR_FATAL;
1142 }
1143 else if (time_err == PARSE_TIME_UNDER) {
1144 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1145 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1146 return ERR_ALERT | ERR_FATAL;
1147 }
1148 else if (time_err) {
1149 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1150 *time_err, newsrv->id);
1151 return ERR_ALERT | ERR_FATAL;
1152 }
1153 newsrv->slowstart = (val + 999) / 1000;
1154
1155 return 0;
1156}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001157
1158/* Parse the "source" server keyword */
1159static int srv_parse_source(char **args, int *cur_arg,
1160 struct proxy *curproxy, struct server *newsrv, char **err)
1161{
1162 char *errmsg;
1163 int port_low, port_high;
1164 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001165
1166 errmsg = NULL;
1167
1168 if (!*args[*cur_arg + 1]) {
1169 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1170 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1171 goto err;
1172 }
1173
1174 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001175 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1176 &errmsg, NULL, NULL,
1177 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 +01001178 if (!sk) {
1179 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1180 goto err;
1181 }
1182
Frédéric Lécailledba97072017-03-17 15:33:50 +01001183 newsrv->conn_src.opts |= CO_SRC_BIND;
1184 newsrv->conn_src.source_addr = *sk;
1185
1186 if (port_low != port_high) {
1187 int i;
1188
Frédéric Lécailledba97072017-03-17 15:33:50 +01001189 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001190 if (!newsrv->conn_src.sport_range) {
1191 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1192 goto err;
1193 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001194 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1195 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1196 }
1197
1198 *cur_arg += 2;
1199 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001200 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001201#if defined(CONFIG_HAP_TRANSPARENT)
1202 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1204 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001205 goto err;
1206 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001207 if (strcmp(args[*cur_arg + 1], "client") == 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_CLI;
1210 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001211 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001212 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1213 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1214 }
1215 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1216 char *name, *end;
1217
1218 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001219 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001220 name++;
1221
1222 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001223 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001224 end++;
1225
1226 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1227 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1228 free(newsrv->conn_src.bind_hdr_name);
1229 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001230 if (!newsrv->conn_src.bind_hdr_name) {
1231 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1232 goto err;
1233 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001234 newsrv->conn_src.bind_hdr_len = end - name;
1235 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1236 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1237 newsrv->conn_src.bind_hdr_occ = -1;
1238
1239 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001240 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001241 end++;
1242 if (*end == ',') {
1243 end++;
1244 name = end;
1245 if (*end == '-')
1246 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001247 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001248 end++;
1249 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1250 }
1251
1252 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001253 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1254 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001255 goto err;
1256 }
1257 }
1258 else {
1259 struct sockaddr_storage *sk;
1260 int port1, port2;
1261
1262 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001263 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1264 &errmsg, NULL, NULL,
1265 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001266 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001267 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001268 goto err;
1269 }
1270
Frédéric Lécailledba97072017-03-17 15:33:50 +01001271 newsrv->conn_src.tproxy_addr = *sk;
1272 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1273 }
1274 global.last_checks |= LSTCHK_NETADM;
1275 *cur_arg += 2;
1276 continue;
1277#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 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 +01001279 goto err;
1280#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1281 } /* "usesrc" */
1282
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001283 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001284#ifdef SO_BINDTODEVICE
1285 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001287 goto err;
1288 }
1289 free(newsrv->conn_src.iface_name);
1290 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1291 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1292 global.last_checks |= LSTCHK_NETADM;
1293#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001294 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001295 goto err;
1296#endif
1297 *cur_arg += 2;
1298 continue;
1299 }
1300 /* this keyword in not an option of "source" */
1301 break;
1302 } /* while */
1303
1304 return 0;
1305
1306 err:
1307 free(errmsg);
1308 return ERR_ALERT | ERR_FATAL;
1309}
1310
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001311/* Parse the "stick" server keyword */
1312static int srv_parse_stick(char **args, int *cur_arg,
1313 struct proxy *curproxy, struct server *newsrv, char **err)
1314{
1315 newsrv->flags &= ~SRV_F_NON_STICK;
1316 return 0;
1317}
1318
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001319/* Parse the "track" server keyword */
1320static int srv_parse_track(char **args, int *cur_arg,
1321 struct proxy *curproxy, struct server *newsrv, char **err)
1322{
1323 char *arg;
1324
1325 arg = args[*cur_arg + 1];
1326 if (!*arg) {
1327 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1328 return ERR_ALERT | ERR_FATAL;
1329 }
1330
1331 free(newsrv->trackit);
1332 newsrv->trackit = strdup(arg);
1333
1334 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001335}
1336
1337/* Parse the "socks4" server keyword */
1338static int srv_parse_socks4(char **args, int *cur_arg,
1339 struct proxy *curproxy, struct server *newsrv, char **err)
1340{
1341 char *errmsg;
1342 int port_low, port_high;
1343 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001344
1345 errmsg = NULL;
1346
1347 if (!*args[*cur_arg + 1]) {
1348 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1349 goto err;
1350 }
1351
1352 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001353 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1354 &errmsg, NULL, NULL,
1355 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001356 if (!sk) {
1357 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1358 goto err;
1359 }
1360
Alexander Liu2a54bb72019-05-22 19:44:48 +08001361 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1362 newsrv->socks4_addr = *sk;
1363
Alexander Liu2a54bb72019-05-22 19:44:48 +08001364 return 0;
1365
1366 err:
1367 free(errmsg);
1368 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001369}
1370
Frédéric Lécailledba97072017-03-17 15:33:50 +01001371
Willy Tarreau034c88c2017-01-23 23:36:45 +01001372/* parse the "tfo" server keyword */
1373static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1374{
1375 newsrv->flags |= SRV_F_FASTOPEN;
1376 return 0;
1377}
1378
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001379/* parse the "usesrc" server keyword */
1380static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1381{
1382 memprintf(err, "'%s' only allowed after a '%s' statement.",
1383 "usesrc", "source");
1384 return ERR_ALERT | ERR_FATAL;
1385}
1386
1387/* parse the "weight" server keyword */
1388static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1389{
1390 int w;
1391
1392 w = atol(args[*cur_arg + 1]);
1393 if (w < 0 || w > SRV_UWGHT_MAX) {
1394 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1395 newsrv->id, SRV_UWGHT_MAX, w);
1396 return ERR_ALERT | ERR_FATAL;
1397 }
1398 newsrv->uweight = newsrv->iweight = w;
1399
1400 return 0;
1401}
1402
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001403/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001404 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001405 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001406 *
1407 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001408 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001409void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001410{
Willy Tarreau751153e2021-02-17 13:33:24 +01001411 struct stream *stream;
1412 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001413 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001414
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001415 for (thr = 0; thr < global.nbthread; thr++)
1416 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1417 if (stream->srv_conn == srv)
1418 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001419}
1420
1421/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001422 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001423 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001424 *
1425 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001426 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001427void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001428{
1429 struct server *srv;
1430
1431 for (srv = px->srv; srv != NULL; srv = srv->next)
1432 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001433 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001434}
1435
Willy Tarreaubda92272014-05-20 21:55:30 +02001436/* Appends some information to a message string related to a server going UP or
1437 * DOWN. If both <forced> and <reason> are null and the server tracks another
1438 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001439 * If <check> is non-null, an entire string describing the check result will be
1440 * appended after a comma and a space (eg: to report some information from the
1441 * check that changed the state). In the other case, the string will be built
1442 * using the check results stored into the struct server if present.
1443 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001444 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001445 *
1446 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001447 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001448void srv_append_status(struct buffer *msg, struct server *s,
1449 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001450{
Emeric Brun5a133512017-10-19 14:42:30 +02001451 short status = s->op_st_chg.status;
1452 short code = s->op_st_chg.code;
1453 long duration = s->op_st_chg.duration;
1454 char *desc = s->op_st_chg.reason;
1455
1456 if (check) {
1457 status = check->status;
1458 code = check->code;
1459 duration = check->duration;
1460 desc = check->desc;
1461 }
1462
1463 if (status != -1) {
1464 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1465
1466 if (status >= HCHK_STATUS_L57DATA)
1467 chunk_appendf(msg, ", code: %d", code);
1468
1469 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001470 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001471
1472 chunk_appendf(msg, ", info: \"");
1473
1474 chunk_initlen(&src, desc, 0, strlen(desc));
1475 chunk_asciiencode(msg, &src, '"');
1476
1477 chunk_appendf(msg, "\"");
1478 }
1479
1480 if (duration >= 0)
1481 chunk_appendf(msg, ", check duration: %ldms", duration);
1482 }
1483 else if (desc && *desc) {
1484 chunk_appendf(msg, ", %s", desc);
1485 }
1486 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001487 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001488 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001489
1490 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001491 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001492 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1493 " %d sessions active, %d requeued, %d remaining in queue",
1494 s->proxy->srv_act, s->proxy->srv_bck,
1495 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1496 s->cur_sess, xferred, s->nbpend);
1497 else
1498 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1499 " %d sessions requeued, %d total in queue",
1500 s->proxy->srv_act, s->proxy->srv_bck,
1501 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1502 xferred, s->nbpend);
1503 }
1504}
1505
Emeric Brun5a133512017-10-19 14:42:30 +02001506/* Marks server <s> down, regardless of its checks' statuses. The server is
1507 * registered in a list to postpone the counting of the remaining servers on
1508 * the proxy and transfers queued streams whenever possible to other servers at
1509 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1510 * non-null as the reason for going down or the available data from the check
1511 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001512 *
1513 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001514 */
Emeric Brun5a133512017-10-19 14:42:30 +02001515void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001516{
1517 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001518
Emeric Brun64cc49c2017-10-03 14:46:45 +02001519 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001520 return;
1521
Emeric Brun52a91d32017-08-31 14:41:55 +02001522 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001523 *s->op_st_chg.reason = 0;
1524 s->op_st_chg.status = -1;
1525 if (reason) {
1526 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1527 }
1528 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001529 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001530 s->op_st_chg.code = check->code;
1531 s->op_st_chg.status = check->status;
1532 s->op_st_chg.duration = check->duration;
1533 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001534
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001535 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001536 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001537
Emeric Brun9f0b4582017-10-23 14:39:51 +02001538 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001539 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001540 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001541 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001542 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001543}
1544
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001545/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001546 * in maintenance. The server is registered in a list to postpone the counting
1547 * of the remaining servers on the proxy and tries to grab requests from the
1548 * proxy at a sync point. Maintenance servers are ignored. It stores the
1549 * <reason> if non-null as the reason for going down or the available data
1550 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001551 *
1552 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001553 */
Emeric Brun5a133512017-10-19 14:42:30 +02001554void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001555{
1556 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001557
Emeric Brun64cc49c2017-10-03 14:46:45 +02001558 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001559 return;
1560
Emeric Brun52a91d32017-08-31 14:41:55 +02001561 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001562 return;
1563
Emeric Brun52a91d32017-08-31 14:41:55 +02001564 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001565 *s->op_st_chg.reason = 0;
1566 s->op_st_chg.status = -1;
1567 if (reason) {
1568 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1569 }
1570 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001571 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001572 s->op_st_chg.code = check->code;
1573 s->op_st_chg.status = check->status;
1574 s->op_st_chg.duration = check->duration;
1575 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001576
Emeric Brun64cc49c2017-10-03 14:46:45 +02001577 if (s->slowstart <= 0)
1578 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001579
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001580 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001581 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001582
Emeric Brun9f0b4582017-10-23 14:39:51 +02001583 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001584 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001585 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001586 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001587 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001588}
1589
Willy Tarreau8eb77842014-05-21 13:54:57 +02001590/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001591 * isn't in maintenance. The server is registered in a list to postpone the
1592 * counting of the remaining servers on the proxy and tries to grab requests
1593 * from the proxy. Maintenance servers are ignored. It stores the
1594 * <reason> if non-null as the reason for going down or the available data
1595 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001596 * up. Note that it makes use of the trash to build the log strings, so <reason>
1597 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001598 *
1599 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001600 */
Emeric Brun5a133512017-10-19 14:42:30 +02001601void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001602{
1603 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001604
Emeric Brun64cc49c2017-10-03 14:46:45 +02001605 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001606 return;
1607
Emeric Brun52a91d32017-08-31 14:41:55 +02001608 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001609 return;
1610
Emeric Brun52a91d32017-08-31 14:41:55 +02001611 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001612 *s->op_st_chg.reason = 0;
1613 s->op_st_chg.status = -1;
1614 if (reason) {
1615 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1616 }
1617 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001618 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001619 s->op_st_chg.code = check->code;
1620 s->op_st_chg.status = check->status;
1621 s->op_st_chg.duration = check->duration;
1622 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001623
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001624 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001625 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001626
Emeric Brun9f0b4582017-10-23 14:39:51 +02001627 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001628 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001629 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001630 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001631 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001632}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001633
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001634/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1635 * enforce either maint mode or drain mode. It is not allowed to set more than
1636 * one flag at once. The equivalent "inherited" flag is propagated to all
1637 * tracking servers. Maintenance mode disables health checks (but not agent
1638 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001639 * is done. If <cause> is non-null, it will be displayed at the end of the log
1640 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001641 *
1642 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001643 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001644void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001645{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001646 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001647
1648 if (!mode)
1649 return;
1650
1651 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001652 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001653 return;
1654
Emeric Brun52a91d32017-08-31 14:41:55 +02001655 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001656 if (cause)
1657 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1658
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001659 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001660 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001661
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001662 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001663 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1664 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001665 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001666
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001667 /* compute the inherited flag to propagate */
1668 if (mode & SRV_ADMF_MAINT)
1669 mode = SRV_ADMF_IMAINT;
1670 else if (mode & SRV_ADMF_DRAIN)
1671 mode = SRV_ADMF_IDRAIN;
1672
Emeric Brun9f0b4582017-10-23 14:39:51 +02001673 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001674 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001675 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001676 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001677 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001678}
1679
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001680/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1681 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1682 * than one flag at once. The equivalent "inherited" flag is propagated to all
1683 * tracking servers. Leaving maintenance mode re-enables health checks. When
1684 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001685 *
1686 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001687 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001688void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001689{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001690 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001691
1692 if (!mode)
1693 return;
1694
1695 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001696 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001697 return;
1698
Emeric Brun52a91d32017-08-31 14:41:55 +02001699 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001700
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001701 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001702 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001703
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001704 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001705 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1706 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001707 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001708
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001709 if (mode & SRV_ADMF_MAINT)
1710 mode = SRV_ADMF_IMAINT;
1711 else if (mode & SRV_ADMF_DRAIN)
1712 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001713
Emeric Brun9f0b4582017-10-23 14:39:51 +02001714 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001715 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001716 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001717 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001718 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001719}
1720
Willy Tarreau757478e2016-11-03 19:22:19 +01001721/* principle: propagate maint and drain to tracking servers. This is useful
1722 * upon startup so that inherited states are correct.
1723 */
1724static void srv_propagate_admin_state(struct server *srv)
1725{
1726 struct server *srv2;
1727
1728 if (!srv->trackers)
1729 return;
1730
1731 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001732 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001733 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001734 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001735
Emeric Brun52a91d32017-08-31 14:41:55 +02001736 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001737 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001738 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001739 }
1740}
1741
1742/* Compute and propagate the admin states for all servers in proxy <px>.
1743 * Only servers *not* tracking another one are considered, because other
1744 * ones will be handled when the server they track is visited.
1745 */
1746void srv_compute_all_admin_states(struct proxy *px)
1747{
1748 struct server *srv;
1749
1750 for (srv = px->srv; srv; srv = srv->next) {
1751 if (srv->track)
1752 continue;
1753 srv_propagate_admin_state(srv);
1754 }
1755}
1756
Willy Tarreaudff55432012-10-10 17:51:05 +02001757/* Note: must not be declared <const> as its list will be overwritten.
1758 * Please take care of keeping this list alphabetically sorted, doing so helps
1759 * all code contributors.
1760 * Optional keywords are also declared with a NULL ->parse() function so that
1761 * the config parser can report an appropriate error when a known keyword was
1762 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001763 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001764 */
1765static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001766 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001767 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001768 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1769 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001770 { "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 +02001771 { "ws", srv_parse_ws, 1, 1, 1 }, /* websocket protocol */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001772 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001773 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1774 { "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 +01001775 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1776 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001777 { "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 +01001778 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001779 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001780 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1781 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1782 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1783 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001784 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
1785 { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */
1786 { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */
1787 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */
1788 { "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 +01001789 { "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 */
1790 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1791 { "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 +01001792 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001793 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001794 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001795 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001796 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001797 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001798 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001799 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1800 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001801 { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001802 { "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 +01001803 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001804 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001805 { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */
1806 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001807 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1808 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001809 { NULL, NULL, 0 },
1810}};
1811
Willy Tarreau0108d902018-11-25 19:14:37 +01001812INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001813
Willy Tarreau004e0452013-11-21 11:22:01 +01001814/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001815 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001816 * state is automatically disabled if the time is elapsed. If <must_update> is
1817 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001818 *
1819 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001820 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001821void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001822{
1823 struct proxy *px = sv->proxy;
1824 unsigned w;
1825
1826 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1827 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001828 if (sv->next_state == SRV_ST_STARTING)
1829 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001830 }
1831
1832 /* We must take care of not pushing the server to full throttle during slow starts.
1833 * It must also start immediately, at least at the minimal step when leaving maintenance.
1834 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001835 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001836 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1837 else
1838 w = px->lbprm.wdiv;
1839
Emeric Brun52a91d32017-08-31 14:41:55 +02001840 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001841
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001842 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001843 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001844 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001845}
1846
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001848 * Parses weight_str and configures sv accordingly.
1849 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001850 *
1851 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001852 */
1853const char *server_parse_weight_change_request(struct server *sv,
1854 const char *weight_str)
1855{
1856 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001857 long int w;
1858 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001859
1860 px = sv->proxy;
1861
1862 /* if the weight is terminated with '%', it is set relative to
1863 * the initial weight, otherwise it is absolute.
1864 */
1865 if (!*weight_str)
1866 return "Require <weight> or <weight%>.\n";
1867
Simon Hormanb796afa2013-02-12 10:45:53 +09001868 w = strtol(weight_str, &end, 10);
1869 if (end == weight_str)
1870 return "Empty weight string empty or preceded by garbage";
1871 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001872 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001873 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001874 /* Avoid integer overflow */
1875 if (w > 25600)
1876 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001877 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001878 if (w > 256)
1879 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001880 }
1881 else if (w < 0 || w > 256)
1882 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001883 else if (end[0] != '\0')
1884 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001885
1886 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1887 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1888
1889 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001890 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001891
1892 return NULL;
1893}
1894
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001895/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001896 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1897 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001898 * Returns:
1899 * - error string on error
1900 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001901 *
1902 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001903 */
1904const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001905 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001906{
1907 unsigned char ip[INET6_ADDRSTRLEN];
1908
1909 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001910 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001911 return NULL;
1912 }
1913 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001914 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001915 return NULL;
1916 }
1917
1918 return "Could not understand IP address format.\n";
1919}
1920
Willy Tarreau46b7f532018-08-21 11:54:26 +02001921/*
1922 * Must be called with the server lock held.
1923 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001924const char *server_parse_maxconn_change_request(struct server *sv,
1925 const char *maxconn_str)
1926{
1927 long int v;
1928 char *end;
1929
1930 if (!*maxconn_str)
1931 return "Require <maxconn>.\n";
1932
1933 v = strtol(maxconn_str, &end, 10);
1934 if (end == maxconn_str)
1935 return "maxconn string empty or preceded by garbage";
1936 else if (end[0] != '\0')
1937 return "Trailing garbage in maxconn string";
1938
1939 if (sv->maxconn == sv->minconn) { // static maxconn
1940 sv->maxconn = sv->minconn = v;
1941 } else { // dynamic maxconn
1942 sv->maxconn = v;
1943 }
1944
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001945 /* server_parse_maxconn_change_request requires the server lock held.
1946 * Specify it to process_srv_queue to prevent a deadlock.
1947 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001948 if (may_dequeue_tasks(sv, sv->proxy))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001949 process_srv_queue(sv, 1);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001950
1951 return NULL;
1952}
1953
William Lallemand71048532021-10-20 13:28:41 +02001954#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001955static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1956 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001957{
1958 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001959 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001960 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001961 NULL,
1962 };
1963
1964 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001965 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001966
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001967 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001968}
1969
1970static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1971{
1972 struct sample_expr *expr;
1973
1974 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 +01001975 if (!expr) {
1976 memprintf(err, "error detected while parsing sni expression : %s", *err);
1977 return ERR_ALERT | ERR_FATAL;
1978 }
1979
1980 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1981 memprintf(err, "error detected while parsing sni expression : "
1982 " fetch method '%s' extracts information from '%s', "
1983 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001984 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001985 return ERR_ALERT | ERR_FATAL;
1986 }
1987
1988 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1989 release_sample_expr(newsrv->ssl_ctx.sni);
1990 newsrv->ssl_ctx.sni = expr;
1991
1992 return 0;
1993}
William Lallemand71048532021-10-20 13:28:41 +02001994#endif
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001995
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001996static 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 +01001997{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001998 char *msg = "error encountered while processing ";
1999 char *quote = "'";
2000 char *token = args[cur_arg];
2001
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002002 if (err && *err) {
2003 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002004 msg = *err;
2005 quote = "";
2006 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002007 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002008
2009 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
2010 ha_warning("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 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002014 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
2015 file, linenum, args[0], args[1],
2016 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002017}
2018
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002019static void srv_conn_src_sport_range_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002020{
2021 int range_sz;
2022
2023 range_sz = src->conn_src.sport_range->size;
2024 if (range_sz > 0) {
2025 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
2026 if (srv->conn_src.sport_range != NULL) {
2027 int i;
2028
2029 for (i = 0; i < range_sz; i++) {
2030 srv->conn_src.sport_range->ports[i] =
2031 src->conn_src.sport_range->ports[i];
2032 }
2033 }
2034 }
2035}
2036
2037/*
2038 * Copy <src> server connection source settings to <srv> server everything needed.
2039 */
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002040static void srv_conn_src_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002041{
2042 srv->conn_src.opts = src->conn_src.opts;
2043 srv->conn_src.source_addr = src->conn_src.source_addr;
2044
2045 /* Source port range copy. */
2046 if (src->conn_src.sport_range != NULL)
2047 srv_conn_src_sport_range_cpy(srv, src);
2048
2049#ifdef CONFIG_HAP_TRANSPARENT
2050 if (src->conn_src.bind_hdr_name != NULL) {
2051 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2052 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2053 }
2054 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2055 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2056#endif
Aurelien DARRAGONe34253a2024-03-26 10:42:48 +01002057 if (src->conn_src.iface_name != NULL) {
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002058 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
Aurelien DARRAGONe34253a2024-03-26 10:42:48 +01002059 srv->conn_src.iface_len = src->conn_src.iface_len;
2060 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002061}
2062
2063/*
2064 * Copy <src> server SSL settings to <srv> server allocating
2065 * everything needed.
2066 */
2067#if defined(USE_OPENSSL)
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002068static void srv_ssl_settings_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002069{
Christopher Faulet7cbd1562021-12-01 09:50:41 +01002070 /* <src> is the current proxy's default server and SSL is enabled */
William Lallemand6338b7d2021-12-28 18:47:17 +01002071 BUG_ON(src->ssl_ctx.ctx != NULL); /* the SSL_CTX must never be initialized in a default-server */
2072
Christopher Faulet7cbd1562021-12-01 09:50:41 +01002073 if (src == &srv->proxy->defsrv && src->use_ssl == 1)
2074 srv->flags |= SRV_F_DEFSRV_USE_SSL;
2075
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002076 if (src->ssl_ctx.ca_file != NULL)
2077 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2078 if (src->ssl_ctx.crl_file != NULL)
2079 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
William Lallemand6338b7d2021-12-28 18:47:17 +01002080 if (src->ssl_ctx.client_crt != NULL)
2081 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002082
2083 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2084
Remi Tricot-Le Breton3b0f3e02021-07-13 18:28:22 +02002085
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002086 if (src->ssl_ctx.verify_host != NULL)
2087 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2088 if (src->ssl_ctx.ciphers != NULL)
2089 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002090 if (src->ssl_ctx.options)
2091 srv->ssl_ctx.options = src->ssl_ctx.options;
2092 if (src->ssl_ctx.methods.flags)
2093 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2094 if (src->ssl_ctx.methods.min)
2095 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2096 if (src->ssl_ctx.methods.max)
2097 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2098
William Lallemand71048532021-10-20 13:28:41 +02002099#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002100 if (src->ssl_ctx.ciphersuites != NULL)
2101 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
William Lallemand71048532021-10-20 13:28:41 +02002102#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002103 if (src->sni_expr != NULL)
2104 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002105
William Lallemand71048532021-10-20 13:28:41 +02002106#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchardc7566002018-11-20 23:33:50 +01002107 if (src->ssl_ctx.alpn_str) {
2108 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2109 if (srv->ssl_ctx.alpn_str) {
2110 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2111 src->ssl_ctx.alpn_len);
2112 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2113 }
2114 }
William Lallemand71048532021-10-20 13:28:41 +02002115#endif
2116#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01002117 if (src->ssl_ctx.npn_str) {
2118 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2119 if (srv->ssl_ctx.npn_str) {
2120 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2121 src->ssl_ctx.npn_len);
2122 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2123 }
2124 }
William Lallemand71048532021-10-20 13:28:41 +02002125#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002126}
2127#endif
2128
2129/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002130 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002131 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002132 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002133 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002134int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002135{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002136 char *hostname_dn;
2137 int hostname_len, hostname_dn_len;
2138
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002139 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002140 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002141
Christopher Faulet67957bd2017-09-27 11:00:59 +02002142 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002143 hostname_dn = trash.area;
Willy Tarreauc1c765f2021-10-14 07:49:49 +02002144 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002145 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002146 if (hostname_dn_len == -1)
2147 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002148
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002149
Christopher Faulet67957bd2017-09-27 11:00:59 +02002150 free(srv->hostname);
2151 free(srv->hostname_dn);
2152 srv->hostname = strdup(hostname);
2153 srv->hostname_dn = strdup(hostname_dn);
2154 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002155 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002156 goto err;
2157
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002158 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002159
2160 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002161 ha_free(&srv->hostname);
2162 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002163 return -1;
2164}
2165
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002166/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002167 * Copy <src> server settings to <srv> server allocating
2168 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002169 * This function is not supposed to be called at any time, but only
2170 * during server settings parsing or during server allocations from
2171 * a server template, and just after having calloc()'ed a new server.
2172 * So, <src> may only be a default server (when parsing server settings)
2173 * or a server template (during server allocations from a server template).
2174 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2175 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002176 */
Christopher Faulet29962f72022-08-03 11:28:08 +02002177void srv_settings_cpy(struct server *srv, const struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002178{
2179 /* Connection source settings copy */
2180 srv_conn_src_cpy(srv, src);
2181
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002182 if (srv_tmpl) {
2183 srv->addr = src->addr;
2184 srv->svc_port = src->svc_port;
2185 }
2186
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002187 srv->pp_opts = src->pp_opts;
2188 if (src->rdr_pfx != NULL) {
2189 srv->rdr_pfx = strdup(src->rdr_pfx);
2190 srv->rdr_len = src->rdr_len;
2191 }
2192 if (src->cookie != NULL) {
2193 srv->cookie = strdup(src->cookie);
2194 srv->cklen = src->cklen;
2195 }
2196 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002197 srv->check.addr = src->check.addr;
2198 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002199 srv->check.use_ssl = src->check.use_ssl;
2200 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002201 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002202 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002203 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002204 /* Note: 'flags' field has potentially been already initialized. */
2205 srv->flags |= src->flags;
2206 srv->do_check = src->do_check;
2207 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002208 srv->check.inter = src->check.inter;
2209 srv->check.fastinter = src->check.fastinter;
2210 srv->check.downinter = src->check.downinter;
2211 srv->agent.use_ssl = src->agent.use_ssl;
2212 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002213
2214 if (src->agent.tcpcheck_rules) {
2215 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2216 if (srv->agent.tcpcheck_rules) {
2217 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2218 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2219 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2220 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2221 &src->agent.tcpcheck_rules->preset_vars);
2222 }
2223 }
2224
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002225 srv->agent.inter = src->agent.inter;
2226 srv->agent.fastinter = src->agent.fastinter;
2227 srv->agent.downinter = src->agent.downinter;
2228 srv->maxqueue = src->maxqueue;
Amaury Denoyelle8e99b842021-10-18 14:39:57 +02002229 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002230 srv->minconn = src->minconn;
2231 srv->maxconn = src->maxconn;
2232 srv->slowstart = src->slowstart;
2233 srv->observe = src->observe;
2234 srv->onerror = src->onerror;
2235 srv->onmarkeddown = src->onmarkeddown;
2236 srv->onmarkedup = src->onmarkedup;
2237 if (src->trackit != NULL)
2238 srv->trackit = strdup(src->trackit);
2239 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2240 srv->uweight = srv->iweight = src->iweight;
2241
2242 srv->check.send_proxy = src->check.send_proxy;
2243 /* health: up, but will fall down at first failure */
2244 srv->check.rise = srv->check.health = src->check.rise;
2245 srv->check.fall = src->check.fall;
2246
2247 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002248 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2249 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2250 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002251 srv->check.state |= CHK_ST_PAUSED;
2252 srv->check.health = 0;
2253 }
2254
2255 /* health: up but will fall down at first failure */
2256 srv->agent.rise = srv->agent.health = src->agent.rise;
2257 srv->agent.fall = src->agent.fall;
2258
2259 if (src->resolvers_id != NULL)
2260 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002261 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2262 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2263 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2264 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2265 srv->resolv_opts.family_prio = AF_INET6;
2266 memcpy(srv->resolv_opts.pref_net,
2267 src->resolv_opts.pref_net,
2268 sizeof srv->resolv_opts.pref_net);
2269 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002270
2271 srv->init_addr_methods = src->init_addr_methods;
2272 srv->init_addr = src->init_addr;
2273#if defined(USE_OPENSSL)
2274 srv_ssl_settings_cpy(srv, src);
2275#endif
2276#ifdef TCP_USER_TIMEOUT
2277 srv->tcp_ut = src->tcp_ut;
2278#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002279 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002280 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002281 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002282 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002283 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002284
Olivier Houchard8da5f982017-08-04 18:35:36 +02002285 if (srv_tmpl)
2286 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002287
Aurelien DARRAGON9478e5a2023-06-14 09:53:32 +02002288 srv->netns = src->netns;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002289 srv->check.via_socks4 = src->check.via_socks4;
2290 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002291}
2292
Willy Tarreau198e92a2021-03-05 10:23:32 +01002293/* allocate a server and attach it to the global servers_list. Returns
2294 * the server on success, otherwise NULL.
2295 */
William Lallemand313bfd12018-10-26 14:47:32 +02002296struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002297{
2298 struct server *srv;
2299
2300 srv = calloc(1, sizeof *srv);
2301 if (!srv)
2302 return NULL;
2303
2304 srv->obj_type = OBJ_TYPE_SERVER;
2305 srv->proxy = proxy;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04002306 srv->pendconns = EB_ROOT;
Willy Tarreau2b718102021-04-21 07:32:39 +02002307 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002308 LIST_INIT(&srv->srv_rec_item);
Emeric Brunf9ca5d82021-06-11 10:08:05 +02002309 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002310
Emeric Brun52a91d32017-08-31 14:41:55 +02002311 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002312 srv->last_change = now.tv_sec;
2313
Christopher Faulet38290462020-04-21 11:46:40 +02002314 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002315 srv->check.status = HCHK_STATUS_INI;
2316 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002317 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002318 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002319
Christopher Faulet38290462020-04-21 11:46:40 +02002320 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002321 srv->agent.status = HCHK_STATUS_INI;
2322 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002323 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002324 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002325#if defined(USE_QUIC)
2326 srv->cids = EB_ROOT_UNIQUE;
2327#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002328
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002329 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002330#ifdef USE_OPENSSL
2331 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2332#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002333
Willy Tarreau975b1552019-06-06 16:25:55 +02002334 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002335 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002336 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002337 return srv;
2338}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002339
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002340/* Increment the dynamic server refcount. */
Amaury Denoyelle4a699422021-08-25 14:39:53 +02002341void srv_use_dynsrv(struct server *srv)
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002342{
2343 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2344 HA_ATOMIC_INC(&srv->refcount_dynsrv);
2345}
2346
2347/* Decrement the dynamic server refcount. */
2348static uint srv_release_dynsrv(struct server *srv)
2349{
2350 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2351 return HA_ATOMIC_SUB_FETCH(&srv->refcount_dynsrv, 1);
2352}
2353
Amaury Denoyelleff836742021-08-09 15:08:54 +02002354/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2355 * dynamic servers, its refcount is decremented first. The free operations are
2356 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002357 *
2358 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
2359 * when calling free_server on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002360 */
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002361struct server *free_server(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002362{
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002363 struct server *next = NULL;
2364
2365 next = srv->next;
2366
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002367 /* For dynamic servers, decrement the reference counter. Only free the
2368 * server when reaching zero.
2369 */
Amaury Denoyelleff836742021-08-09 15:08:54 +02002370 if (likely(!(global.mode & MODE_STOPPING))) {
2371 if (srv->flags & SRV_F_DYNAMIC) {
2372 if (srv_release_dynsrv(srv))
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002373 goto end;
Amaury Denoyelleff836742021-08-09 15:08:54 +02002374 }
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002375 }
2376
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002377 task_destroy(srv->warmup);
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002378 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002379
2380 free(srv->id);
2381 free(srv->cookie);
Aurelien DARRAGON031ccb12023-09-15 00:42:55 +02002382 free(srv->rdr_pfx);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002383 free(srv->hostname);
2384 free(srv->hostname_dn);
2385 free((char*)srv->conf.file);
2386 free(srv->per_thr);
2387 free(srv->curr_idle_thr);
2388 free(srv->resolvers_id);
2389 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002390 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002391
2392 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2393 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2394 xprt_get(XPRT_SSL)->destroy_srv(srv);
2395 }
2396 HA_SPIN_DESTROY(&srv->lock);
2397
Willy Tarreau2b718102021-04-21 07:32:39 +02002398 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002399
2400 EXTRA_COUNTERS_FREE(srv->extra_counters);
2401
2402 free(srv);
2403 srv = NULL;
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002404
2405 end:
2406 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002407}
2408
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002409/*
2410 * Parse as much as possible such a range string argument: low[-high]
2411 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2412 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2413 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2414 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002415 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002416static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2417 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002418{
2419 char *nb_high_arg;
2420
2421 *nb_high = 0;
2422 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002423 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002424
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002425 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002426 *nb_high_arg++ = '\0';
2427 *nb_high = atoi(nb_high_arg);
2428 }
2429 else {
2430 *nb_high += *nb_low;
2431 *nb_low = 1;
2432 }
2433
2434 if (*nb_low < 0 || *nb_high < *nb_low)
2435 return -1;
2436
2437 return 0;
2438}
2439
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002440/* Parse as much as possible such a range string argument: low[-high]
2441 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2442 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2443 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002444 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002445 * initialize a new server on startup.
2446 *
2447 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2448 * Returns 0 if succeeded, -1 if not.
2449 */
2450static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2451 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002452{
2453 chunk_printf(&trash, "%s%d", prefix, nb);
2454 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002455 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002456}
2457
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002458/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002459 * Note that a server template is a special server with
2460 * a few different parameters than a server which has
2461 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002462 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002463 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002464 * initialize a new server on startup.
2465 *
Joseph Herlant44466822018-11-15 08:57:51 -08002466 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002467 * 'srv' template included.
2468 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002469static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002470{
2471 int i;
2472 struct server *newsrv;
2473
2474 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 +02002475 newsrv = new_server(px);
2476 if (!newsrv)
2477 goto err;
2478
Christopher Faulet75bef002020-11-02 22:04:55 +01002479 newsrv->conf.file = strdup(srv->conf.file);
2480 newsrv->conf.line = srv->conf.line;
2481
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002482 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002483 srv_prepare_for_resolution(newsrv, srv->hostname);
William Lallemand71048532021-10-20 13:28:41 +02002484#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002485 if (newsrv->sni_expr) {
2486 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2487 if (!newsrv->ssl_ctx.sni)
2488 goto err;
2489 }
William Lallemand71048532021-10-20 13:28:41 +02002490#endif
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002491 /* append to list of servers available to receive an hostname */
Emeric Brun3ecaf532021-06-14 10:02:18 +02002492 if (newsrv->srvrq)
2493 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002494
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002495 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002496 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002497
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002498 /* Linked backwards first. This will be restablished after parsing. */
2499 newsrv->next = px->srv;
2500 px->srv = newsrv;
2501 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002502 _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 +02002503
2504 return i - srv->tmpl_info.nb_low;
2505
2506 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002507 _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 +02002508 if (newsrv) {
William Lallemand71048532021-10-20 13:28:41 +02002509#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002510 release_sample_expr(newsrv->ssl_ctx.sni);
William Lallemand71048532021-10-20 13:28:41 +02002511#endif
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002512 free_check(&newsrv->agent);
2513 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002514 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002515 }
2516 free(newsrv);
2517 return i - srv->tmpl_info.nb_low;
2518}
2519
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002520/* Allocate a new server pointed by <srv> and try to parse the first arguments
2521 * in <args> as an address for a server or an address-range for a template or
2522 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2523 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002524 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002525 * initialize a new server on startup.
2526 *
2527 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2528 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2529 * <srv> will be set to NULL.
2530 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002531static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2532 struct proxy *curproxy,
2533 int parse_flags, char **errmsg)
Willy Tarreau272adea2014-03-31 10:39:59 +02002534{
2535 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002536 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002537 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002538 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002539 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002540
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002541 *srv = NULL;
2542
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002543 /* There is no mandatory first arguments for default server. */
2544 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2545 if (parse_flags & SRV_PARSE_TEMPLATE) {
2546 if (!*args[3]) {
2547 /* 'server-template' line number of argument check. */
2548 memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002549 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002550 err_code |= ERR_ALERT | ERR_FATAL;
2551 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002552 }
2553
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002554 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002555 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002556 else {
2557 if (!*args[2]) {
2558 /* 'server' line number of argument check. */
2559 memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002560 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002561 err_code |= ERR_ALERT | ERR_FATAL;
2562 goto out;
2563 }
2564
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002565 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002566 }
2567
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002568 if (err) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002569 memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.",
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002570 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002571 err_code |= ERR_ALERT | ERR_FATAL;
2572 goto out;
2573 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002574 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002575
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002576 *cur_arg = 2;
2577 if (parse_flags & SRV_PARSE_TEMPLATE) {
2578 /* Parse server-template <nb | range> arg. */
2579 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
2580 memprintf(errmsg, "Wrong %s number or range arg '%s'.",
2581 args[0], args[*cur_arg]);
2582 err_code |= ERR_ALERT | ERR_FATAL;
2583 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002584 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002585 (*cur_arg)++;
2586 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002587
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002588 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2589 struct sockaddr_storage *sk;
2590 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002591
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002592 *srv = newsrv = new_server(curproxy);
2593 if (!newsrv) {
2594 memprintf(errmsg, "out of memory.");
2595 err_code |= ERR_ALERT | ERR_ABORT;
2596 goto out;
2597 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002598
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002599 if (parse_flags & SRV_PARSE_TEMPLATE) {
2600 newsrv->tmpl_info.nb_low = tmpl_range_low;
2601 newsrv->tmpl_info.nb_high = tmpl_range_high;
2602 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002603
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002604 if (parse_flags & SRV_PARSE_DYNAMIC)
2605 newsrv->flags |= SRV_F_DYNAMIC;
2606
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002607 /* Note: for a server template, its id is its prefix.
2608 * This is a temporary id which will be used for server allocations to come
2609 * after parsing.
2610 */
2611 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2612 newsrv->id = strdup(args[1]);
2613 else
2614 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002615
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002616 /* several ways to check the port component :
2617 * - IP => port=+0, relative (IPv4 only)
2618 * - IP: => port=+0, relative
2619 * - IP:N => port=N, absolute
2620 * - IP:+N => port=+N, relative
2621 * - IP:-N => port=-N, relative
2622 */
2623 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2624 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002625
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002626 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
2627 errmsg, NULL, &fqdn,
2628 (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);
2629 if (!sk) {
2630 memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg);
2631 err_code |= ERR_ALERT | ERR_FATAL;
2632 goto out;
2633 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002634
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002635 if (!port1 || !port2) {
2636 /* no port specified, +offset, -offset */
2637 newsrv->flags |= SRV_F_MAPPORTS;
2638 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002639
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002640 /* save hostname and create associated name resolution */
2641 if (fqdn) {
2642 if (fqdn[0] == '_') { /* SRV record */
2643 /* Check if a SRV request already exists, and if not, create it */
2644 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2645 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2646 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002647 err_code |= ERR_ALERT | ERR_FATAL;
2648 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002649 }
Christopher Faulet08736f92021-06-29 20:52:35 +02002650 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002651 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002652 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
2653 memprintf(errmsg, "Can't create DNS resolution for server '%s'",
2654 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002655 err_code |= ERR_ALERT | ERR_FATAL;
2656 goto out;
2657 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002658 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002659
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002660 newsrv->addr = *sk;
2661 newsrv->svc_port = port;
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02002662 /*
2663 * we don't need to lock the server here, because
2664 * we are in the process of initializing.
2665 *
2666 * Note that the server is not attached into the proxy tree if
2667 * this is a dynamic server.
2668 */
2669 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002670
2671 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
2672 memprintf(errmsg, "Unknown protocol family %d '%s'",
2673 newsrv->addr.ss_family, args[*cur_arg]);
2674 err_code |= ERR_ALERT | ERR_FATAL;
2675 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002676 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002677
2678 (*cur_arg)++;
2679 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002680 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2681 /* Copy default server settings to new server */
2682 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2683 } else {
2684 /* Initialize dynamic server weight to 1 */
2685 newsrv->uweight = newsrv->iweight = 1;
2686
2687 /* A dynamic server is disabled on startup */
2688 newsrv->next_admin = SRV_ADMF_FMAINT;
2689 newsrv->next_state = SRV_ST_STOPPED;
2690 server_recalc_eweight(newsrv, 0);
2691 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002692 HA_SPIN_INIT(&newsrv->lock);
2693 }
2694 else {
2695 *srv = newsrv = &curproxy->defsrv;
2696 *cur_arg = 1;
2697 newsrv->resolv_opts.family_prio = AF_INET6;
2698 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002699 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002700
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002701 free(fqdn);
2702 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002703
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002704out:
2705 free(fqdn);
2706 return err_code;
2707}
Willy Tarreau272adea2014-03-31 10:39:59 +02002708
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002709/* Parse the server keyword in <args>.
2710 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2711 * might not be the case if an error is reported.
2712 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002713 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002714 * initialize a new server on startup.
2715 *
2716 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2717 * interrupted.
2718 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002719static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2720 struct proxy *curproxy,
2721 int parse_flags, char **errmsg)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002722{
2723 int err_code = 0;
2724 struct srv_kw *kw;
2725 const char *best;
Willy Tarreau272adea2014-03-31 10:39:59 +02002726
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002727 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002728 if (!kw) {
2729 best = srv_find_best_kw(args[*cur_arg]);
2730 if (best)
2731 memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?",
2732 args[*cur_arg], best);
2733 else
2734 memprintf(errmsg, "unknown keyword '%s'.",
2735 args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002736
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002737 return ERR_ALERT | ERR_FATAL;
2738 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002739
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002740 if (!kw->parse) {
2741 memprintf(errmsg, "'%s' option is not implemented in this version (check build options)",
2742 args[*cur_arg]);
2743 err_code = ERR_ALERT | ERR_FATAL;
2744 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002745 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002746
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002747 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002748 memprintf(errmsg, "'%s' option is not accepted in default-server sections",
2749 args[*cur_arg]);
2750 err_code = ERR_ALERT;
2751 goto out;
2752 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002753 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
2754 memprintf(errmsg, "'%s' option is not accepted for dynamic server",
2755 args[*cur_arg]);
2756 err_code |= ERR_ALERT;
2757 goto out;
2758 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002759
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002760 err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002761
2762out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002763 if (kw->skip != -1)
2764 *cur_arg += 1 + kw->skip;
2765
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002766 return err_code;
2767}
2768
William Lallemand71048532021-10-20 13:28:41 +02002769#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002770/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002771 * initialize a new server on startup.
2772 */
2773static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2774 struct server *srv, struct proxy *proxy,
2775 char **errmsg)
2776{
2777 int ret;
2778
2779 if (!srv->sni_expr)
2780 return 0;
2781
2782 ret = server_parse_sni_expr(srv, proxy, errmsg);
2783 if (!ret)
2784 return 0;
2785
2786 return ret;
2787}
William Lallemand71048532021-10-20 13:28:41 +02002788#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002789
2790/* Server initializations finalization.
2791 * Initialize health check, agent check and SNI expression if enabled.
2792 * Must not be called for a default server instance.
2793 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002794 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002795 * initialize a new server on startup.
2796 */
2797static int _srv_parse_finalize(char **args, int cur_arg,
2798 struct server *srv, struct proxy *px,
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002799 int parse_flags, char **errmsg)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002800{
William Lallemand71048532021-10-20 13:28:41 +02002801#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002802 int ret;
William Lallemand71048532021-10-20 13:28:41 +02002803#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002804
2805 if (srv->do_check && srv->trackit) {
2806 memprintf(errmsg, "unable to enable checks and tracking at the same time!");
2807 return ERR_ALERT | ERR_FATAL;
2808 }
2809
2810 if (srv->do_agent && !srv->agent.port) {
2811 memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.",
2812 srv->id);
2813 return ERR_ALERT | ERR_FATAL;
2814 }
2815
William Lallemand71048532021-10-20 13:28:41 +02002816#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002817 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0)
2818 return ret;
William Lallemand71048532021-10-20 13:28:41 +02002819#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002820
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002821 /* A dynamic server is disabled on startup. It must not be counted as
2822 * an active backend entry.
2823 */
2824 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2825 if (srv->flags & SRV_F_BACKUP)
2826 px->srv_bck++;
2827 else
2828 px->srv_act++;
2829 }
2830
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002831 srv_lb_commit_status(srv);
2832
2833 return 0;
2834}
2835
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002836int parse_server(const char *file, int linenum, char **args,
2837 struct proxy *curproxy, const struct proxy *defproxy,
2838 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002839{
2840 struct server *newsrv = NULL;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002841 char *errmsg = NULL;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002842 int err_code = 0;
2843
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002844 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002845
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002846 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
2847 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
2848 err_code |= ERR_ALERT | ERR_FATAL;
2849 goto out;
2850 }
2851 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2852 err_code |= ERR_ALERT | ERR_FATAL;
2853 goto out;
2854 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002855
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002856 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2857 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2858 if (!*args[2])
2859 return 0;
2860 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002861
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002862 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
2863 parse_flags, &errmsg);
2864 if (errmsg) {
2865 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
2866 free(errmsg);
2867 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002868
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002869 /* the servers are linked backwards first */
2870 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2871 newsrv->next = curproxy->srv;
2872 curproxy->srv = newsrv;
2873 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002874
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002875 if (err_code & ERR_CODE)
2876 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002877
Willy Tarreau091598a2023-11-23 14:28:14 +01002878 if (!newsrv->conf.file) // note: do it only once for default-server
2879 newsrv->conf.file = strdup(file);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002880 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002881
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002882 while (*args[cur_arg]) {
2883 errmsg = NULL;
2884 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
2885 parse_flags, &errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002886
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002887 if (err_code & ERR_ALERT) {
2888 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2889 free(errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002890 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002891
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002892 if (err_code & ERR_FATAL)
2893 goto out;
2894 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002895
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002896 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002897 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags, &errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002898 if (err_code) {
2899 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2900 free(errmsg);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002901 }
2902
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002903 if (err_code & ERR_FATAL)
2904 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002905 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002906
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002907 if (parse_flags & SRV_PARSE_TEMPLATE)
2908 _srv_parse_tmpl_init(newsrv, curproxy);
2909
Amaury Denoyellef88af882021-06-08 17:00:20 +02002910 /* If the server id is fixed, insert it in the proxy used_id tree.
2911 * This is needed to detect a later duplicate id via srv_parse_id.
2912 *
2913 * If no is specified, a dynamic one is generated in
2914 * check_config_validity.
2915 */
2916 if (newsrv->flags & SRV_F_FORCED_ID)
2917 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2918
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002919 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002920 "parsing [%s:%d] : 'server %s' : configured with weight of 0 will never be selected by load balancing algorithms\n",
2921 file, linenum, newsrv->id);
2922
Willy Tarreau272adea2014-03-31 10:39:59 +02002923 return 0;
2924
2925 out:
Willy Tarreau272adea2014-03-31 10:39:59 +02002926 return err_code;
2927}
2928
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002929/* Returns a pointer to the first server matching either id <id>.
2930 * NULL is returned if no match is found.
2931 * the lookup is performed in the backend <bk>
2932 */
2933struct server *server_find_by_id(struct proxy *bk, int id)
2934{
2935 struct eb32_node *eb32;
2936 struct server *curserver;
2937
2938 if (!bk || (id ==0))
2939 return NULL;
2940
2941 /* <bk> has no backend capabilities, so it can't have a server */
2942 if (!(bk->cap & PR_CAP_BE))
2943 return NULL;
2944
2945 curserver = NULL;
2946
2947 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2948 if (eb32)
2949 curserver = container_of(eb32, struct server, conf.id);
2950
2951 return curserver;
2952}
2953
2954/* Returns a pointer to the first server matching either name <name>, or id
2955 * if <name> starts with a '#'. NULL is returned if no match is found.
2956 * the lookup is performed in the backend <bk>
2957 */
2958struct server *server_find_by_name(struct proxy *bk, const char *name)
2959{
2960 struct server *curserver;
2961
2962 if (!bk || !name)
2963 return NULL;
2964
2965 /* <bk> has no backend capabilities, so it can't have a server */
2966 if (!(bk->cap & PR_CAP_BE))
2967 return NULL;
2968
2969 curserver = NULL;
2970 if (*name == '#') {
2971 curserver = server_find_by_id(bk, atoi(name + 1));
2972 if (curserver)
2973 return curserver;
2974 }
2975 else {
2976 curserver = bk->srv;
2977
2978 while (curserver && (strcmp(curserver->id, name) != 0))
2979 curserver = curserver->next;
2980
2981 if (curserver)
2982 return curserver;
2983 }
2984
2985 return NULL;
2986}
2987
2988struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2989{
2990 struct server *byname;
2991 struct server *byid;
2992
2993 if (!name && !id)
2994 return NULL;
2995
2996 if (diff)
2997 *diff = 0;
2998
2999 byname = byid = NULL;
3000
3001 if (name) {
3002 byname = server_find_by_name(bk, name);
3003 if (byname && (!id || byname->puid == id))
3004 return byname;
3005 }
3006
3007 /* remaining possibilities :
3008 * - name not set
3009 * - name set but not found
3010 * - name found but ID doesn't match
3011 */
3012 if (id) {
3013 byid = server_find_by_id(bk, id);
3014 if (byid) {
3015 if (byname) {
3016 /* use id only if forced by configuration */
3017 if (byid->flags & SRV_F_FORCED_ID) {
3018 if (diff)
3019 *diff |= 2;
3020 return byid;
3021 }
3022 else {
3023 if (diff)
3024 *diff |= 1;
3025 return byname;
3026 }
3027 }
3028
3029 /* remaining possibilities:
3030 * - name not set
3031 * - name set but not found
3032 */
3033 if (name && diff)
3034 *diff |= 2;
3035 return byid;
3036 }
3037
3038 /* id bot found */
3039 if (byname) {
3040 if (diff)
3041 *diff |= 1;
3042 return byname;
3043 }
3044 }
3045
3046 return NULL;
3047}
3048
Simon Horman7d09b9a2013-02-12 10:45:51 +09003049/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003050 * update a server's current IP address.
3051 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3052 * ip is in network format.
3053 * updater is a string which contains an information about the requester of the update.
3054 * updater is used if not NULL.
3055 *
3056 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003057 *
3058 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003059 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003060int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003061{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003062 /* save the new IP family & address if necessary */
3063 switch (ip_sin_family) {
3064 case AF_INET:
3065 if (s->addr.ss_family == ip_sin_family &&
3066 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3067 return 0;
3068 break;
3069 case AF_INET6:
3070 if (s->addr.ss_family == ip_sin_family &&
3071 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3072 return 0;
3073 break;
3074 };
3075
Baptiste Assmann14e40142015-04-14 01:13:07 +02003076 /* generates a log line and a warning on stderr */
3077 if (1) {
3078 /* book enough space for both IPv4 and IPv6 */
3079 char oldip[INET6_ADDRSTRLEN];
3080 char newip[INET6_ADDRSTRLEN];
3081
3082 memset(oldip, '\0', INET6_ADDRSTRLEN);
3083 memset(newip, '\0', INET6_ADDRSTRLEN);
3084
3085 /* copy old IP address in a string */
3086 switch (s->addr.ss_family) {
3087 case AF_INET:
3088 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3089 break;
3090 case AF_INET6:
3091 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3092 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003093 default:
3094 strcpy(oldip, "(none)");
3095 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003096 };
3097
3098 /* copy new IP address in a string */
3099 switch (ip_sin_family) {
3100 case AF_INET:
3101 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3102 break;
3103 case AF_INET6:
3104 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3105 break;
3106 };
3107
3108 /* save log line into a buffer */
3109 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3110 s->proxy->id, s->id, oldip, newip, updater);
3111
3112 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003113 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003114
3115 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003116 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003117 }
3118
3119 /* save the new IP family */
3120 s->addr.ss_family = ip_sin_family;
3121 /* save the new IP address */
3122 switch (ip_sin_family) {
3123 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003124 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003125 break;
3126 case AF_INET6:
3127 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3128 break;
3129 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003130 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003131 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003132
3133 return 0;
3134}
3135
William Dauchy7cabc062021-02-11 22:51:24 +01003136/* update agent health check address and port
3137 * addr can be ip4/ip6 or a hostname
3138 * if one error occurs, don't apply anything
3139 * must be called with the server lock held.
3140 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003141const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003142{
3143 struct sockaddr_storage sk;
3144 struct buffer *msg;
3145 int new_port;
3146
3147 msg = get_trash_chunk();
3148 chunk_reset(msg);
3149
3150 if (!(s->agent.state & CHK_ST_ENABLED)) {
3151 chunk_strcat(msg, "agent checks are not enabled on this server");
3152 goto out;
3153 }
3154 if (addr) {
3155 memset(&sk, 0, sizeof(struct sockaddr_storage));
3156 if (str2ip(addr, &sk) == NULL) {
3157 chunk_appendf(msg, "invalid addr '%s'", addr);
3158 goto out;
3159 }
3160 }
3161 if (port) {
3162 if (strl2irc(port, strlen(port), &new_port) != 0) {
3163 chunk_appendf(msg, "provided port is not an integer");
3164 goto out;
3165 }
3166 if (new_port < 0 || new_port > 65535) {
3167 chunk_appendf(msg, "provided port is invalid");
3168 goto out;
3169 }
3170 }
3171out:
3172 if (msg->data)
3173 return msg->area;
3174 else {
3175 if (addr)
3176 set_srv_agent_addr(s, &sk);
3177 if (port)
3178 set_srv_agent_port(s, new_port);
3179 }
3180 return NULL;
3181}
3182
William Dauchyb456e1f2021-02-11 22:51:23 +01003183/* update server health check address and port
3184 * addr must be ip4 or ip6, it won't be resolved
3185 * if one error occurs, don't apply anything
3186 * must be called with the server lock held.
3187 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003188const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003189{
3190 struct sockaddr_storage sk;
3191 struct buffer *msg;
3192 int new_port;
3193
3194 msg = get_trash_chunk();
3195 chunk_reset(msg);
3196
3197 if (!(s->check.state & CHK_ST_ENABLED)) {
3198 chunk_strcat(msg, "health checks are not enabled on this server");
3199 goto out;
3200 }
3201 if (addr) {
3202 memset(&sk, 0, sizeof(struct sockaddr_storage));
3203 if (str2ip2(addr, &sk, 0) == NULL) {
3204 chunk_appendf(msg, "invalid addr '%s'", addr);
3205 goto out;
3206 }
3207 }
3208 if (port) {
3209 if (strl2irc(port, strlen(port), &new_port) != 0) {
3210 chunk_appendf(msg, "provided port is not an integer");
3211 goto out;
3212 }
3213 if (new_port < 0 || new_port > 65535) {
3214 chunk_appendf(msg, "provided port is invalid");
3215 goto out;
3216 }
3217 /* prevent the update of port to 0 if MAPPORTS are in use */
3218 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3219 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3220 goto out;
3221 }
3222 }
3223out:
3224 if (msg->data)
3225 return msg->area;
3226 else {
3227 if (addr)
3228 s->check.addr = sk;
3229 if (port)
3230 s->check.port = new_port;
3231 }
3232 return NULL;
3233}
3234
Baptiste Assmann14e40142015-04-14 01:13:07 +02003235/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003236 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3237 *
3238 * Caller can pass its name through <updater> to get it integrated in the response message
3239 * returned by the function.
3240 *
3241 * The function first does the following, in that order:
3242 * - validates the new addr and/or port
3243 * - checks if an update is required (new IP or port is different than current ones)
3244 * - checks the update is allowed:
3245 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3246 * - allow all changes if no CHECKS are configured
3247 * - if CHECK is configured:
3248 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3249 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3250 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003251 *
3252 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003253 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003254const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003255{
3256 struct sockaddr_storage sa;
3257 int ret, port_change_required;
3258 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003259 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003260 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003261 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003262
3263 msg = get_trash_chunk();
3264 chunk_reset(msg);
3265
3266 if (addr) {
3267 memset(&sa, 0, sizeof(struct sockaddr_storage));
3268 if (str2ip2(addr, &sa, 0) == NULL) {
3269 chunk_printf(msg, "Invalid addr '%s'", addr);
3270 goto out;
3271 }
3272
3273 /* changes are allowed on AF_INET* families only */
3274 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3275 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3276 goto out;
3277 }
3278
3279 /* collecting data currently setup */
3280 memset(current_addr, '\0', sizeof(current_addr));
3281 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3282 /* changes are allowed on AF_INET* families only */
3283 if ((ret != AF_INET) && (ret != AF_INET6)) {
3284 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3285 goto out;
3286 }
3287
3288 /* applying ADDR changes if required and allowed
3289 * ipcmp returns 0 when both ADDR are the same
3290 */
3291 if (ipcmp(&s->addr, &sa) == 0) {
3292 chunk_appendf(msg, "no need to change the addr");
3293 goto port;
3294 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003295 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003296 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003297
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003298 /* update report for caller */
3299 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3300 }
3301
3302 port:
3303 if (port) {
3304 char sign = '\0';
3305 char *endptr;
3306
3307 if (addr)
3308 chunk_appendf(msg, ", ");
3309
3310 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003311 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003312
3313 /* check if PORT change is required */
3314 port_change_required = 0;
3315
3316 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003317 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003318 new_port = strtol(port, &endptr, 10);
3319 if ((errno != 0) || (port == endptr)) {
3320 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3321 goto out;
3322 }
3323
3324 /* check if caller triggers a port mapped or offset */
3325 if (sign == '-' || (sign == '+')) {
3326 /* check if server currently uses port map */
3327 if (!(s->flags & SRV_F_MAPPORTS)) {
3328 /* switch from fixed port to port map mandatorily triggers
3329 * a port change */
3330 port_change_required = 1;
3331 /* check is configured
3332 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3333 * prevent PORT change if check doesn't have it's dedicated port while switching
3334 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003335 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003336 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.");
3337 goto out;
3338 }
3339 }
3340 /* we're already using port maps */
3341 else {
3342 port_change_required = current_port != new_port;
3343 }
3344 }
3345 /* fixed port */
3346 else {
3347 port_change_required = current_port != new_port;
3348 }
3349
3350 /* applying PORT changes if required and update response message */
3351 if (port_change_required) {
3352 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003353 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003354 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003355
3356 /* prepare message */
3357 chunk_appendf(msg, "port changed from '");
3358 if (s->flags & SRV_F_MAPPORTS)
3359 chunk_appendf(msg, "+");
3360 chunk_appendf(msg, "%d' to '", current_port);
3361
3362 if (sign == '-') {
3363 s->flags |= SRV_F_MAPPORTS;
3364 chunk_appendf(msg, "%c", sign);
3365 /* just use for result output */
3366 new_port = -new_port;
3367 }
3368 else if (sign == '+') {
3369 s->flags |= SRV_F_MAPPORTS;
3370 chunk_appendf(msg, "%c", sign);
3371 }
3372 else {
3373 s->flags &= ~SRV_F_MAPPORTS;
3374 }
3375
3376 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003377 }
3378 else {
3379 chunk_appendf(msg, "no need to change the port");
3380 }
3381 }
3382
3383out:
William Dauchy6318d332020-05-02 21:52:36 +02003384 if (changed) {
3385 /* force connection cleanup on the given server */
3386 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003387 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003388 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003389 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003390 if (updater)
3391 chunk_appendf(msg, " by '%s'", updater);
3392 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003393 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003394}
3395
Christopher Faulet5efdef22021-03-11 18:03:21 +01003396/*
3397 * update server status based on result of SRV resolution
3398 * returns:
3399 * 0 if server status is updated
3400 * 1 if server status has not changed
3401 *
3402 * Must be called with the server lock held.
3403 */
3404int srvrq_update_srv_status(struct server *s, int has_no_ip)
3405{
3406 if (!s->srvrq)
3407 return 1;
3408
3409 /* since this server has an IP, it can go back in production */
3410 if (has_no_ip == 0) {
3411 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3412 return 1;
3413 }
3414
3415 if (s->next_admin & SRV_ADMF_RMAINT)
3416 return 1;
3417
3418 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3419 return 0;
3420}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003421
3422/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003423 * update server status based on result of name resolution
3424 * returns:
3425 * 0 if server status is updated
3426 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003427 *
3428 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003429 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003430int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003431{
Emeric Brun750fe792020-12-23 16:51:12 +01003432 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003433 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003434 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003435
Jerome Magnin012261a2020-07-28 13:38:22 +02003436 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003437 if (resolution == NULL)
3438 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003439
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003440 switch (resolution->status) {
3441 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003442 /* status when HAProxy has just (re)started.
3443 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003444 break;
3445
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003446 case RSLV_STATUS_VALID:
3447 /*
3448 * resume health checks
3449 * server will be turned back on if health check is safe
3450 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003451 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003452 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003453 return 1;
3454 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3455 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003456 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003457 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003458
Emeric Brun52a91d32017-08-31 14:41:55 +02003459 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003460 return 1;
3461 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3462 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3463 s->proxy->id, s->id);
3464
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003465 ha_warning("%s.\n", trash.area);
3466 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003467 return 0;
3468
3469 case RSLV_STATUS_NX:
3470 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003471 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3472 if (!tick_is_expired(exp, now_ms))
3473 break;
3474
3475 if (s->next_admin & SRV_ADMF_RMAINT)
3476 return 1;
3477 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3478 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003479
3480 case RSLV_STATUS_TIMEOUT:
3481 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003482 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3483 if (!tick_is_expired(exp, now_ms))
3484 break;
3485
3486 if (s->next_admin & SRV_ADMF_RMAINT)
3487 return 1;
3488 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3489 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003490
3491 case RSLV_STATUS_REFUSED:
3492 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003493 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3494 if (!tick_is_expired(exp, now_ms))
3495 break;
3496
3497 if (s->next_admin & SRV_ADMF_RMAINT)
3498 return 1;
3499 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3500 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003501
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003502 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003503 /* stop server if resolution failed for a long enough period */
3504 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3505 if (!tick_is_expired(exp, now_ms))
3506 break;
3507
3508 if (s->next_admin & SRV_ADMF_RMAINT)
3509 return 1;
3510 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3511 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003512 }
3513
3514 return 1;
3515}
3516
3517/*
3518 * Server Name Resolution valid response callback
3519 * It expects:
3520 * - <nameserver>: the name server which answered the valid response
3521 * - <response>: buffer containing a valid DNS response
3522 * - <response_len>: size of <response>
3523 * It performs the following actions:
3524 * - ignore response if current ip found and server family not met
3525 * - update with first new ip found if family is met and current IP is not found
3526 * returns:
3527 * 0 on error
3528 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003529 *
3530 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003531 */
Emeric Brun08622d32020-12-23 17:41:43 +01003532int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003533{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003534 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003535 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003536 void *serverip, *firstip;
3537 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003538 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003539 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003540 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003541
Christopher Faulet67957bd2017-09-27 11:00:59 +02003542 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003543 if (!s)
3544 return 1;
3545
Christopher Faulet49531e82021-03-10 15:07:27 +01003546 if (s->srvrq) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003547 /* If DNS resolution is disabled ignore it.
3548 * This is the case if the server was associated to
3549 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003550 */
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003551 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003552 return 1;
3553 }
3554
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003555 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003556 if (!resolution)
3557 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003558
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003559 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003560 firstip = NULL; /* pointer to the first valid response found */
3561 /* it will be used as the new IP if a change is required */
3562 firstip_sin_family = AF_UNSPEC;
3563 serverip = NULL; /* current server IP address */
3564
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003565 /* initializing server IP pointer */
3566 server_sin_family = s->addr.ss_family;
3567 switch (server_sin_family) {
3568 case AF_INET:
3569 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3570 break;
3571
3572 case AF_INET6:
3573 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3574 break;
3575
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003576 case AF_UNSPEC:
3577 break;
3578
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003579 default:
3580 goto invalid;
3581 }
3582
Emeric Brund30e9a12020-12-23 18:49:16 +01003583 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3584 serverip, server_sin_family, &firstip,
3585 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003586
3587 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003588 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003589 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003590
Emeric Brun456de772020-12-23 18:17:31 +01003591 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003592 goto save_ip;
3593
Emeric Brun456de772020-12-23 18:17:31 +01003594 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003595 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003596 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003597
Emeric Brun456de772020-12-23 18:17:31 +01003598 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003599 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003600 resolution->status = RSLV_STATUS_OTHER;
Christopher Fauletb142fb42021-06-24 15:33:52 +02003601 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003602 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003603
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003604 default:
Christopher Fauletb142fb42021-06-24 15:33:52 +02003605 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003606 goto invalid;
3607
3608 }
3609
3610 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003611 if (counters) {
3612 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003613 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003614 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003615 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003616 else
3617 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003618 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003619
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003620 update_status:
Christopher Faulet7c129bb2021-06-24 15:26:03 +02003621 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3622 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003623 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003624
3625 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003626 if (counters) {
3627 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003628 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003629 }
Christopher Fauletb142fb42021-06-24 15:33:52 +02003630 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3631 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003632 return 0;
3633}
3634
3635/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003636 * SRV record error management callback
3637 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003638 * 0 if we can trash answser items.
3639 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003640 *
3641 * Grabs the server's lock.
3642 */
3643int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3644{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003645 struct resolv_srvrq *srvrq;
3646 struct resolv_resolution *res;
3647 struct resolvers *resolvers;
3648 int exp;
3649
3650 /* SRV records */
3651 srvrq = objt_resolv_srvrq(requester->owner);
3652 if (!srvrq)
Emeric Brun43839d02021-06-10 15:25:25 +02003653 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003654
3655 resolvers = srvrq->resolvers;
3656 res = requester->resolution;
3657
3658 switch (res->status) {
3659
3660 case RSLV_STATUS_NX:
3661 /* stop server if resolution is NX for a long enough period */
3662 exp = tick_add(res->last_valid, resolvers->hold.nx);
3663 if (!tick_is_expired(exp, now_ms))
3664 return 1;
3665 break;
3666
3667 case RSLV_STATUS_TIMEOUT:
3668 /* stop server if resolution is TIMEOUT for a long enough period */
3669 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3670 if (!tick_is_expired(exp, now_ms))
3671 return 1;
3672 break;
3673
3674 case RSLV_STATUS_REFUSED:
3675 /* stop server if resolution is REFUSED for a long enough period */
3676 exp = tick_add(res->last_valid, resolvers->hold.refused);
3677 if (!tick_is_expired(exp, now_ms))
3678 return 1;
3679 break;
3680
3681 default:
3682 /* stop server if resolution failed for a long enough period */
3683 exp = tick_add(res->last_valid, resolvers->hold.other);
3684 if (!tick_is_expired(exp, now_ms))
3685 return 1;
3686 }
3687
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003688 /* Remove any associated server ref */
Willy Tarreau33360872021-10-20 14:07:31 +02003689 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003690
Emeric Brun43839d02021-06-10 15:25:25 +02003691 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003692}
3693
3694/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003695 * Server Name Resolution error management callback
3696 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003697 * 0 if we can trash answser items.
3698 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003699 *
3700 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003701 */
Emeric Brun08622d32020-12-23 17:41:43 +01003702int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003703{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003704 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003705
Christopher Faulet67957bd2017-09-27 11:00:59 +02003706 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003707 if (!s)
Emeric Brun43839d02021-06-10 15:25:25 +02003708 return 0;
3709
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003710 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003711 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003712 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun43839d02021-06-10 15:25:25 +02003713 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau33360872021-10-20 14:07:31 +02003714 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun43839d02021-06-10 15:25:25 +02003715 return 0;
3716 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003717 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003718
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003719 return 1;
3720}
3721
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003722/*
3723 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003724 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003725 * It returns a pointer to the first server found or NULL if <ip> is not yet
3726 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003727 *
3728 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003729 */
3730struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3731{
3732 struct server *tmpsrv;
3733 struct proxy *be;
3734
3735 if (!srv)
3736 return NULL;
3737
3738 be = srv->proxy;
3739 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003740 /* we found the current server is the same, ignore it */
3741 if (srv == tmpsrv)
3742 continue;
3743
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003744 /* We want to compare the IP in the record with the IP of the servers in the
3745 * same backend, only if:
3746 * * DNS resolution is enabled on the server
3747 * * the hostname used for the resolution by our server is the same than the
3748 * one used for the server found in the backend
3749 * * the server found in the backend is not our current server
3750 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003751 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003752 if ((tmpsrv->hostname_dn == NULL) ||
3753 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003754 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003755 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003756 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003757 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003758 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003759
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003760 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003761 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003762 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003763 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003764 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003765
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003766 /* At this point, we have 2 different servers using the same DNS hostname
3767 * for their respective resolution.
3768 */
3769 if (*ip_family == tmpsrv->addr.ss_family &&
3770 ((tmpsrv->addr.ss_family == AF_INET &&
3771 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3772 (tmpsrv->addr.ss_family == AF_INET6 &&
3773 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003774 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003775 return tmpsrv;
3776 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003777 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003778 }
3779
Emeric Brune9fd6b52017-11-02 17:20:39 +01003780
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003781 return NULL;
3782}
3783
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003784/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3785 * resolver. This is suited for initial address configuration. Returns 0 on
3786 * success otherwise a non-zero error code. In case of error, *err_code, if
3787 * not NULL, is filled up.
3788 */
3789int srv_set_addr_via_libc(struct server *srv, int *err_code)
3790{
3791 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003792 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003793 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003794 return 1;
3795 }
3796 return 0;
3797}
3798
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003799/* Set the server's FDQN (->hostname) from <hostname>.
3800 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003801 *
3802 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003803 */
Emeric Brun08622d32020-12-23 17:41:43 +01003804int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003805{
Emeric Brun08622d32020-12-23 17:41:43 +01003806 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003807 char *hostname_dn;
3808 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003809
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003810 /* Note that the server lock is already held. */
3811 if (!srv->resolvers)
3812 return -1;
3813
Emeric Brun08622d32020-12-23 17:41:43 +01003814 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003815 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003816 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003817 * and we can't enable it at run time for now.
3818 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003819 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003820 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003821
3822 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003823 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003824 hostname_dn = trash.area;
Willy Tarreauc1c765f2021-10-14 07:49:49 +02003825 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003826 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003827 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003828 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003829
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003830 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003831 if (resolution &&
3832 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003833 resolution->hostname_dn_len == hostname_dn_len &&
3834 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003835 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003836
Willy Tarreau33360872021-10-20 14:07:31 +02003837 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003838
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003839 free(srv->hostname);
3840 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003841 srv->hostname = strdup(hostname);
3842 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003843 srv->hostname_dn_len = hostname_dn_len;
3844 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003845 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003846
Baptiste Assmann13a92322019-06-07 09:40:55 +02003847 if (srv->flags & SRV_F_NO_RESOLUTION)
3848 goto end;
3849
Emeric Brund30e9a12020-12-23 18:49:16 +01003850 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003851 goto err;
3852
3853 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003854 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003855 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003856 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003857
3858 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003859 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003860 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003861 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003862}
3863
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003864/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3865 * from the state file. This is suited for initial address configuration.
3866 * Returns 0 on success otherwise a non-zero error code. In case of error,
3867 * *err_code, if not NULL, is filled up.
3868 */
3869static int srv_apply_lastaddr(struct server *srv, int *err_code)
3870{
3871 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3872 if (err_code)
3873 *err_code |= ERR_WARN;
3874 return 1;
3875 }
3876 return 0;
3877}
3878
Willy Tarreau25e51522016-11-04 15:10:17 +01003879/* returns 0 if no error, otherwise a combination of ERR_* flags */
3880static int srv_iterate_initaddr(struct server *srv)
3881{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003882 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003883 int return_code = 0;
3884 int err_code;
3885 unsigned int methods;
3886
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003887 /* If no addr and no hostname set, get the name from the DNS SRV request */
3888 if (!name && srv->srvrq)
3889 name = srv->srvrq->name;
3890
Willy Tarreau25e51522016-11-04 15:10:17 +01003891 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003892 if (!methods) {
3893 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003894 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3895 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003896 if (srv->resolvers_id) {
3897 /* dns resolution is configured, add "none" to not fail on startup */
3898 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3899 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003900 }
3901
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003902 /* "-dr" : always append "none" so that server addresses resolution
3903 * failures are silently ignored, this is convenient to validate some
3904 * configs out of their environment.
3905 */
3906 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3907 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3908
Willy Tarreau25e51522016-11-04 15:10:17 +01003909 while (methods) {
3910 err_code = 0;
3911 switch (srv_get_next_initaddr(&methods)) {
3912 case SRV_IADDR_LAST:
3913 if (!srv->lastaddr)
3914 continue;
3915 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003916 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003917 return_code |= err_code;
3918 break;
3919
3920 case SRV_IADDR_LIBC:
3921 if (!srv->hostname)
3922 continue;
3923 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003924 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003925 return_code |= err_code;
3926 break;
3927
Willy Tarreau37ebe122016-11-04 15:17:58 +01003928 case SRV_IADDR_NONE:
3929 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003930 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003931 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003932 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003933 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003934 return return_code;
3935
Willy Tarreau4310d362016-11-02 15:05:56 +01003936 case SRV_IADDR_IP:
3937 ipcpy(&srv->init_addr, &srv->addr);
3938 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003939 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 +01003940 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003941 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003942 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003943
Willy Tarreau25e51522016-11-04 15:10:17 +01003944 default: /* unhandled method */
3945 break;
3946 }
3947 }
3948
3949 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003950 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003951 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003952 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003953 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003954 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003955 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003956 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003957
3958 return_code |= ERR_ALERT | ERR_FATAL;
3959 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003960out:
3961 srv_set_dyncookie(srv);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003962 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003963 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003964}
3965
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003966/*
3967 * This function parses all backends and all servers within each backend
3968 * and performs servers' addr resolution based on information provided by:
3969 * - configuration file
3970 * - server-state file (states provided by an 'old' haproxy process)
3971 *
3972 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3973 */
3974int srv_init_addr(void)
3975{
3976 struct proxy *curproxy;
3977 int return_code = 0;
3978
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003979 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003980 while (curproxy) {
3981 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003982
3983 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01003984 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003985 goto srv_init_addr_next;
3986
Willy Tarreau25e51522016-11-04 15:10:17 +01003987 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003988 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003989 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003990
3991 srv_init_addr_next:
3992 curproxy = curproxy->next;
3993 }
3994
3995 return return_code;
3996}
3997
Willy Tarreau46b7f532018-08-21 11:54:26 +02003998/*
3999 * Must be called with the server lock held.
4000 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01004001const 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 +02004002{
4003
Willy Tarreau83061a82018-07-13 11:56:34 +02004004 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004005
4006 msg = get_trash_chunk();
4007 chunk_reset(msg);
4008
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004009 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004010 chunk_appendf(msg, "no need to change the FDQN");
4011 goto out;
4012 }
4013
4014 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4015 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4016 goto out;
4017 }
4018
4019 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4020 server->proxy->id, server->id, server->hostname, fqdn);
4021
Emeric Brun08622d32020-12-23 17:41:43 +01004022 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004023 chunk_reset(msg);
4024 chunk_appendf(msg, "could not update %s/%s FQDN",
4025 server->proxy->id, server->id);
4026 goto out;
4027 }
4028
4029 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004030 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004031
4032 out:
4033 if (updater)
4034 chunk_appendf(msg, " by '%s'", updater);
4035 chunk_appendf(msg, "\n");
4036
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004037 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004038}
4039
4040
Willy Tarreau21b069d2016-11-23 17:15:08 +01004041/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4042 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004043 * 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 +01004044 * used for CLI commands requiring a server name.
4045 * Important: the <arg> is modified to remove the '/'.
4046 */
4047struct server *cli_find_server(struct appctx *appctx, char *arg)
4048{
4049 struct proxy *px;
4050 struct server *sv;
4051 char *line;
4052
4053 /* split "backend/server" and make <line> point to server */
4054 for (line = arg; *line; line++)
4055 if (*line == '/') {
4056 *line++ = '\0';
4057 break;
4058 }
4059
4060 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004061 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004062 return NULL;
4063 }
4064
4065 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004066 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004067 return NULL;
4068 }
4069
Willy Tarreauc3914d42020-09-24 08:39:22 +02004070 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004071 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004072 return NULL;
4073 }
4074
4075 return sv;
4076}
4077
William Lallemand222baf22016-11-19 02:00:33 +01004078
Willy Tarreau46b7f532018-08-21 11:54:26 +02004079/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004080static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004081{
4082 struct server *sv;
4083 const char *warning;
4084
4085 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4086 return 1;
4087
4088 sv = cli_find_server(appctx, args[2]);
4089 if (!sv)
4090 return 1;
4091
4092 if (strcmp(args[3], "weight") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004093 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004094 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004095 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004096 if (warning)
4097 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004098 }
4099 else if (strcmp(args[3], "state") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004100 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004101 if (strcmp(args[4], "ready") == 0)
4102 srv_adm_set_ready(sv);
4103 else if (strcmp(args[4], "drain") == 0)
4104 srv_adm_set_drain(sv);
4105 else if (strcmp(args[4], "maint") == 0)
4106 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004107 else
4108 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004109 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004110 }
4111 else if (strcmp(args[3], "health") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004112 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004113 if (sv->track)
4114 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004115 else if (strcmp(args[4], "up") == 0) {
4116 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004117 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004118 }
4119 else if (strcmp(args[4], "stopping") == 0) {
4120 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004121 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004122 }
4123 else if (strcmp(args[4], "down") == 0) {
4124 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004125 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004126 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004127 else
4128 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004129 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004130 }
4131 else if (strcmp(args[3], "agent") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004132 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004133 if (!(sv->agent.state & CHK_ST_ENABLED))
4134 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004135 else if (strcmp(args[4], "up") == 0) {
4136 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004137 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004138 }
4139 else if (strcmp(args[4], "down") == 0) {
4140 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004141 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004142 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004143 else
4144 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004145 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004146 }
Misiek2da082d2017-01-09 09:40:42 +01004147 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004148 char *addr = NULL;
4149 char *port = NULL;
4150 if (strlen(args[4]) == 0) {
4151 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4152 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004153 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004154 }
4155 addr = args[4];
4156 if (strcmp(args[5], "port") == 0)
4157 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004158 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004159 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004160 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004161 if (warning)
4162 cli_msg(appctx, LOG_WARNING, warning);
4163 }
4164 else if (strcmp(args[3], "agent-port") == 0) {
4165 char *port = NULL;
4166 if (strlen(args[4]) == 0) {
4167 cli_err(appctx, "set server <b>/<s> agent-port requires"
4168 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004169 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004170 }
4171 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004172 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004173 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004174 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004175 if (warning)
4176 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004177 }
4178 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet88fca372021-06-18 08:47:14 +02004179 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004180 if (!(sv->agent.state & CHK_ST_ENABLED))
4181 cli_err(appctx, "agent checks are not enabled on this server.\n");
4182 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004183 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004184 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004185 }
Christopher Faulet88fca372021-06-18 08:47:14 +02004186 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004187 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004188 else if (strcmp(args[3], "check-addr") == 0) {
4189 char *addr = NULL;
4190 char *port = NULL;
4191 if (strlen(args[4]) == 0) {
4192 cli_err(appctx, "set server <b>/<s> check-addr requires"
4193 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004194 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004195 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004196 addr = args[4];
4197 if (strcmp(args[5], "port") == 0)
4198 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004199 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004200 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004201 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004202 if (warning)
4203 cli_msg(appctx, LOG_WARNING, warning);
4204 }
4205 else if (strcmp(args[3], "check-port") == 0) {
4206 char *port = NULL;
4207 if (strlen(args[4]) == 0) {
4208 cli_err(appctx, "set server <b>/<s> check-port requires"
4209 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004210 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004211 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004212 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004213 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004214 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004215 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004216 if (warning)
4217 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004218 }
4219 else if (strcmp(args[3], "addr") == 0) {
4220 char *addr = NULL;
4221 char *port = NULL;
4222 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004223 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004224 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004225 }
4226 else {
4227 addr = args[4];
4228 }
4229 if (strcmp(args[5], "port") == 0) {
4230 port = args[6];
4231 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004232 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004233 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004234 if (warning)
4235 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004236 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004237 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004238 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004239 else if (strcmp(args[3], "fqdn") == 0) {
4240 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004241 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004242 goto out;
4243 }
4244 if (!sv->resolvers) {
4245 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4246 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004247 }
Christopher Faulet5b04f462021-06-15 11:37:40 +02004248 if (sv->srvrq) {
4249 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004250 goto out;
Christopher Faulet5b04f462021-06-15 11:37:40 +02004251 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004252 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4253 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004254 /* ensure runtime resolver will process this new fqdn */
4255 if (sv->flags & SRV_F_NO_RESOLUTION) {
4256 sv->flags &= ~SRV_F_NO_RESOLUTION;
4257 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004258 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet88fca372021-06-18 08:47:14 +02004259 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004260 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004261 if (warning)
4262 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004263 }
William Dauchyf6370442020-11-14 19:25:33 +01004264 else if (strcmp(args[3], "ssl") == 0) {
4265#ifdef USE_OPENSSL
4266 if (sv->ssl_ctx.ctx == NULL) {
4267 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4268 " default-server should define ssl settings\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004269 goto out;
4270 }
4271
4272 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4273 if (strcmp(args[4], "on") == 0) {
William Dauchyf6370442020-11-14 19:25:33 +01004274 ssl_sock_set_srv(sv, 1);
4275 } else if (strcmp(args[4], "off") == 0) {
4276 ssl_sock_set_srv(sv, 0);
4277 } else {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004278 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004279 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004280 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004281 }
4282 srv_cleanup_connections(sv);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004283 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004284 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4285#else
4286 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4287#endif
4288 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004289 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004290 "usage: set server <backend>/<server> "
4291 "addr | agent | agent-addr | agent-port | agent-send | "
4292 "check-addr | check-port | fqdn | health | ssl | "
4293 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004294 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004295 out:
William Lallemand222baf22016-11-19 02:00:33 +01004296 return 1;
4297}
4298
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004299static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004300{
4301 struct stream_interface *si = appctx->owner;
4302 struct proxy *px;
4303 struct server *sv;
4304 char *line;
4305
4306
4307 /* split "backend/server" and make <line> point to server */
4308 for (line = args[2]; *line; line++)
4309 if (*line == '/') {
4310 *line++ = '\0';
4311 break;
4312 }
4313
Willy Tarreau9d008692019-08-09 11:21:01 +02004314 if (!*line)
4315 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004316
Willy Tarreau9d008692019-08-09 11:21:01 +02004317 if (!get_backend_server(args[2], line, &px, &sv))
4318 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004319
4320 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004321 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4322 sv->iweight);
4323 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004324 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004325 return 0;
4326 }
William Lallemand6b160942016-11-22 12:34:35 +01004327 return 1;
4328}
4329
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004330/* Parse a "set weight" command.
4331 *
4332 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004333 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004334static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004335{
4336 struct server *sv;
4337 const char *warning;
4338
4339 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4340 return 1;
4341
4342 sv = cli_find_server(appctx, args[2]);
4343 if (!sv)
4344 return 1;
4345
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004346 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4347
William Lallemand6b160942016-11-22 12:34:35 +01004348 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004349 if (warning)
4350 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004351
4352 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4353
William Lallemand6b160942016-11-22 12:34:35 +01004354 return 1;
4355}
4356
Willy Tarreau46b7f532018-08-21 11:54:26 +02004357/* parse a "set maxconn server" command. It always returns 1.
4358 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004359 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004360 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004361static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004362{
4363 struct server *sv;
4364 const char *warning;
4365
4366 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4367 return 1;
4368
4369 sv = cli_find_server(appctx, args[3]);
4370 if (!sv)
4371 return 1;
4372
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004373 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4374
Willy Tarreaub8026272016-11-23 11:26:56 +01004375 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004376 if (warning)
4377 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004378
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004379 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4380
Willy Tarreaub8026272016-11-23 11:26:56 +01004381 return 1;
4382}
William Lallemand6b160942016-11-22 12:34:35 +01004383
Willy Tarreau46b7f532018-08-21 11:54:26 +02004384/* parse a "disable agent" command. It always returns 1.
4385 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004386 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004387 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004388static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004389{
4390 struct server *sv;
4391
4392 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4393 return 1;
4394
4395 sv = cli_find_server(appctx, args[2]);
4396 if (!sv)
4397 return 1;
4398
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004399 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004400 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004401 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004402 return 1;
4403}
4404
Willy Tarreau46b7f532018-08-21 11:54:26 +02004405/* parse a "disable health" command. It always returns 1.
4406 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004407 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004408 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004409static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004410{
4411 struct server *sv;
4412
4413 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4414 return 1;
4415
4416 sv = cli_find_server(appctx, args[2]);
4417 if (!sv)
4418 return 1;
4419
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004420 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004421 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004422 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004423 return 1;
4424}
4425
Willy Tarreau46b7f532018-08-21 11:54:26 +02004426/* parse a "disable server" command. It always returns 1.
4427 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004428 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004429 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004430static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004431{
4432 struct server *sv;
4433
4434 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4435 return 1;
4436
4437 sv = cli_find_server(appctx, args[2]);
4438 if (!sv)
4439 return 1;
4440
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004441 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004442 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004443 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004444 return 1;
4445}
4446
Willy Tarreau46b7f532018-08-21 11:54:26 +02004447/* parse a "enable agent" command. It always returns 1.
4448 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004449 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004450 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004451static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004452{
4453 struct server *sv;
4454
4455 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4456 return 1;
4457
4458 sv = cli_find_server(appctx, args[2]);
4459 if (!sv)
4460 return 1;
4461
Willy Tarreau9d008692019-08-09 11:21:01 +02004462 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4463 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004464
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004465 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004466 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004467 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004468 return 1;
4469}
4470
Willy Tarreau46b7f532018-08-21 11:54:26 +02004471/* parse a "enable health" command. It always returns 1.
4472 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004473 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004474 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004475static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004476{
4477 struct server *sv;
4478
4479 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4480 return 1;
4481
4482 sv = cli_find_server(appctx, args[2]);
4483 if (!sv)
4484 return 1;
4485
Amaury Denoyellee636a112021-09-21 10:29:09 +02004486 if (!(sv->check.state & CHK_ST_CONFIGURED))
4487 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4488
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004489 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004490 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004491 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004492 return 1;
4493}
4494
Willy Tarreau46b7f532018-08-21 11:54:26 +02004495/* parse a "enable server" command. It always returns 1.
4496 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004497 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004498 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004499static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004500{
4501 struct server *sv;
4502
4503 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4504 return 1;
4505
4506 sv = cli_find_server(appctx, args[2]);
4507 if (!sv)
4508 return 1;
4509
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004510 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004511 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004512 if (!(sv->flags & SRV_F_COOKIESET)
4513 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4514 sv->cookie)
4515 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004516 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004517 return 1;
4518}
4519
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004520/* Allocates data structure related to load balancing for the server <sv>. It
4521 * is only required for dynamic servers.
4522 *
4523 * At the moment, the server lock is not used as this function is only called
4524 * for a dynamic server not yet registered.
4525 *
4526 * Returns 1 on success, 0 on allocation failure.
4527 */
4528static int srv_alloc_lb(struct server *sv, struct proxy *be)
4529{
4530 int node;
4531
4532 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4533 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4534 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4535 sv->lb_nodes_now = 0;
4536
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004537 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4538 ((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 +01004539 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4540
4541 if (!sv->lb_nodes)
4542 return 0;
4543
4544 for (node = 0; node < sv->lb_nodes_tot; node++) {
4545 sv->lb_nodes[node].server = sv;
4546 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4547 }
4548 }
4549
4550 return 1;
4551}
4552
4553/* Parse a "add server" command
4554 * Returns 0 if the server has been successfully initialized, 1 on failure.
4555 */
4556static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4557{
4558 struct proxy *be;
4559 struct server *srv;
4560 char *be_name, *sv_name;
4561 char *errmsg = NULL;
4562 int errcode, argc;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004563 int next_id, i;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004564 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4565
4566 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4567 return 1;
4568
4569 ++args;
4570
4571 sv_name = be_name = args[1];
4572 /* split backend/server arg */
4573 while (*sv_name && *(++sv_name)) {
4574 if (*sv_name == '/') {
4575 *sv_name = '\0';
4576 ++sv_name;
4577 break;
4578 }
4579 }
4580
4581 if (!*sv_name)
4582 return cli_err(appctx, "Require 'backend/server'.");
4583
Amaury Denoyellecece9182021-04-20 17:09:08 +02004584 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004585 if (!be)
4586 return cli_err(appctx, "No such backend.");
4587
4588 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004589 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004590 return 1;
4591 }
4592
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004593 /* At this point, some operations might not be thread-safe anymore. This
4594 * might be the case for parsing handlers which were designed to run
4595 * only at the starting stage on single-thread mode.
4596 *
4597 * Activate thread isolation to ensure thread-safety.
4598 */
4599 thread_isolate();
4600
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004601 args[1] = sv_name;
4602 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg);
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02004603 if (srv)
4604 srv_use_dynsrv(srv);
4605
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004606 if (errcode) {
4607 if (errmsg)
4608 cli_dynerr(appctx, errmsg);
4609 goto out;
4610 }
4611
4612 while (*args[argc]) {
4613 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg);
4614
4615 if (errcode) {
4616 if (errmsg)
4617 cli_dynerr(appctx, errmsg);
4618 goto out;
4619 }
4620 }
4621
4622 _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg);
4623 if (errmsg) {
4624 cli_dynerr(appctx, errmsg);
4625 goto out;
4626 }
4627
Amaury Denoyellee9bb7fb2021-06-10 17:34:10 +02004628 /* A dynamic server does not currently support resolution.
4629 *
4630 * Initialize it explicitly to the "none" method to ensure no
4631 * resolution will ever be executed.
4632 */
4633 srv->init_addr_methods = SRV_IADDR_NONE;
4634
Amaury Denoyelle30467232021-03-12 18:03:27 +01004635 if (srv->mux_proto) {
4636 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
4637 cli_err(appctx, "MUX protocol is not usable for server.");
4638 goto out;
4639 }
4640 }
4641
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004642 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4643 if (!srv->per_thr) {
4644 cli_err(appctx, "failed to allocate per-thread lists for server.");
4645 goto out;
4646 }
4647
4648 for (i = 0; i < global.nbthread; i++) {
4649 srv->per_thr[i].idle_conns = EB_ROOT;
4650 srv->per_thr[i].safe_conns = EB_ROOT;
4651 srv->per_thr[i].avail_conns = EB_ROOT;
4652 MT_LIST_INIT(&srv->per_thr[i].streams);
4653 }
4654
4655 if (srv->max_idle_conns != 0) {
4656 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4657 if (!srv->curr_idle_thr) {
4658 cli_err(appctx, "failed to allocate counters for server.");
4659 goto out;
4660 }
4661 }
4662
4663 if (!srv_alloc_lb(srv, be)) {
4664 cli_err(appctx, "Failed to initialize load-balancing data.");
4665 goto out;
4666 }
4667
4668 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4669 COUNTERS_SV,
4670 STATS_PX_CAP_SRV)) {
4671 cli_err(appctx, "failed to allocate extra counters for server.");
4672 goto out;
4673 }
4674
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004675 /* Attach the server to the end of the proxy linked list. Note that this
4676 * operation is not thread-safe so this is executed under thread
4677 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004678 *
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004679 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004680 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004681
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004682 /* TODO use a double-linked list for px->srv */
4683 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004684 struct server *next = be->srv;
4685
4686 while (1) {
4687 /* check for duplicate server */
4688 if (!strcmp(srv->id, next->id)) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004689 cli_err(appctx, "Already exists a server with the same name in backend.");
4690 goto out;
4691 }
4692
4693 if (!next->next)
4694 break;
4695
4696 next = next->next;
4697 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004698
4699 next->next = srv;
4700 }
4701 else {
4702 srv->next = be->srv;
4703 be->srv = srv;
4704 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004705
Amaury Denoyelle12173562021-06-09 09:58:47 +02004706 /* generate the server id if not manually specified */
4707 if (!srv->puid) {
4708 next_id = get_next_id(&be->conf.used_server_id, 1);
4709 if (!next_id) {
4710 ha_alert("Cannot attach server : no id left in proxy\n");
4711 goto out;
4712 }
4713
4714 srv->conf.id.key = srv->puid = next_id;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004715 }
Christopher Faulet2ea1aa52021-12-07 18:49:44 +01004716 srv->conf.name.key = srv->id;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004717
4718 /* insert the server in the backend trees */
Amaury Denoyellef88af882021-06-08 17:00:20 +02004719 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4720 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02004721 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle12173562021-06-09 09:58:47 +02004722
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004723 thread_release();
4724
Amaury Denoyelled38e7fa2021-04-20 18:35:19 +02004725 ha_notice("New server %s/%s registered.\n", be->id, srv->id);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004726 cli_msg(appctx, LOG_INFO, "New server registered.");
4727
4728 return 0;
4729
4730out:
Amaury Denoyelledb130872021-08-04 11:20:05 +02004731 if (srv) {
4732 /* remove the server from the proxy linked list */
4733 if (be->srv == srv) {
4734 be->srv = srv->next;
4735 }
4736 else {
4737 struct server *prev;
4738 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4739 ;
4740 if (prev)
4741 prev->next = srv->next;
4742 }
4743
4744 }
4745
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004746 thread_release();
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004747 if (srv)
4748 free_server(srv);
4749 return 1;
4750}
4751
Amaury Denoyellee5580432021-04-15 14:41:20 +02004752/* Parse a "del server" command
4753 * Returns 0 if the server has been successfully initialized, 1 on failure.
4754 */
4755static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4756{
4757 struct proxy *be;
4758 struct server *srv;
4759 char *be_name, *sv_name;
4760
4761 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4762 return 1;
4763
4764 ++args;
4765
4766 sv_name = be_name = args[1];
4767 /* split backend/server arg */
4768 while (*sv_name && *(++sv_name)) {
4769 if (*sv_name == '/') {
4770 *sv_name = '\0';
4771 ++sv_name;
4772 break;
4773 }
4774 }
4775
4776 if (!*sv_name)
4777 return cli_err(appctx, "Require 'backend/server'.");
4778
4779 /* The proxy servers list is currently not protected by a lock so this
4780 * requires thread isolation.
4781 */
4782
4783 /* WARNING there is maybe a potential violation of the thread isolation
4784 * mechanism by the pool allocator. The allocator marks the thread as
4785 * harmless before the allocation, but a processing outside of it could
4786 * relies on a particular server triggered at the same time by a
4787 * 'delete server'. Currently, it is unknown if such case is present in
4788 * the current code. If it happens to be, the thread isolation
4789 * mechanism should be improved, maybe with a differentiation between
4790 * read and read+write safe sections.
4791 */
4792 thread_isolate();
4793
4794 get_backend_server(be_name, sv_name, &be, &srv);
4795 if (!be) {
4796 cli_err(appctx, "No such backend.");
4797 goto out;
4798 }
4799
4800 if (!srv) {
4801 cli_err(appctx, "No such server.");
4802 goto out;
4803 }
4804
4805 if (!(srv->flags & SRV_F_DYNAMIC)) {
4806 cli_err(appctx, "Only servers added at runtime via <add server> CLI cmd can be deleted.");
4807 goto out;
4808 }
4809
4810 /* Only servers in maintenance can be deleted. This ensures that the
4811 * server is not present anymore in the lb structures (through
4812 * lbprm.set_server_status_down).
4813 */
4814 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4815 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4816 goto out;
4817 }
4818
4819 /* Ensure that there is no active/idle/pending connection on the server.
4820 *
4821 * TODO idle connections should not prevent server deletion. A proper
4822 * cleanup function should be implemented to be used here.
4823 */
4824 if (srv->cur_sess || srv->curr_idle_conns ||
4825 !eb_is_empty(&srv->pendconns)) {
4826 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4827 goto out;
4828 }
4829
4830 /* TODO remove server for check list once 'check' will be implemented for
4831 * dynamic servers
4832 */
4833
4834 /* detach the server from the proxy linked list
4835 * The proxy servers list is currently not protected by a lock, so this
4836 * requires thread_isolate/release.
4837 */
4838
4839 /* be->srv cannot be empty since we have already found the server with
4840 * get_backend_server */
4841 BUG_ON(!be->srv);
4842 if (be->srv == srv) {
4843 be->srv = srv->next;
4844 }
4845 else {
4846 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004847 for (next = be->srv; srv != next->next; next = next->next) {
4848 /* srv cannot be not found since we have already found
4849 * it with get_backend_server */
4850 BUG_ON(!next);
4851 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004852
Amaury Denoyellee5580432021-04-15 14:41:20 +02004853 next->next = srv->next;
4854 }
4855
4856 /* remove srv from addr_node tree */
Amaury Denoyelle40ad9f42021-06-09 16:00:43 +02004857 eb32_delete(&srv->conf.id);
4858 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004859 ebpt_delete(&srv->addr_node);
4860
4861 /* remove srv from idle_node tree for idle conn cleanup */
4862 eb32_delete(&srv->idle_node);
4863
4864 thread_release();
4865
4866 ha_notice("Server %s/%s deleted.\n", be->id, srv->id);
4867 free_server(srv);
4868
4869 cli_msg(appctx, LOG_INFO, "Server deleted.");
4870
4871 return 0;
4872
4873out:
4874 thread_release();
4875
4876 return 1;
4877}
4878
William Lallemand222baf22016-11-19 02:00:33 +01004879/* register cli keywords */
4880static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec59faa52021-08-03 18:05:37 +02004881 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
4882 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004883 { { "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 +02004884 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
4885 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004886 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4887 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
4888 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
4889 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
4890 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
4891 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
4892 { { "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 +01004893 {{},}
4894}};
4895
Willy Tarreau0108d902018-11-25 19:14:37 +01004896INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004897
Emeric Brun64cc49c2017-10-03 14:46:45 +02004898/*
4899 * This function applies server's status changes, it is
4900 * is designed to be called asynchronously.
4901 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004902 * Must be called with the server lock held. This may also be called at init
4903 * time as the result of parsing the state file, in which case no lock will be
4904 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004905 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004906static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004907{
4908 struct check *check = &s->check;
4909 int xferred;
4910 struct proxy *px = s->proxy;
4911 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4912 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
Aurelien DARRAGON37f548d2023-04-18 13:52:27 +02004913 enum srv_state srv_prev_state = s->cur_state;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004914 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004915 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004916
Emeric Brun64cc49c2017-10-03 14:46:45 +02004917 /* If currently main is not set we try to apply pending state changes */
4918 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4919 int next_admin;
4920
4921 /* Backup next admin */
4922 next_admin = s->next_admin;
4923
4924 /* restore current admin state */
4925 s->next_admin = s->cur_admin;
4926
4927 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004928 if (s->proxy->lbprm.set_server_status_down)
4929 s->proxy->lbprm.set_server_status_down(s);
4930
4931 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4932 srv_shutdown_streams(s, SF_ERR_DOWN);
4933
4934 /* we might have streams queued on this server and waiting for
4935 * a connection. Those which are redispatchable will be queued
4936 * to another server or to the proxy itself.
4937 */
4938 xferred = pendconn_redistribute(s);
4939
4940 tmptrash = alloc_trash_chunk();
4941 if (tmptrash) {
4942 chunk_printf(tmptrash,
4943 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4944 s->proxy->id, s->id);
4945
Emeric Brun5a133512017-10-19 14:42:30 +02004946 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004947 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004948
4949 /* we don't send an alert if the server was previously paused */
4950 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004951 send_log(s->proxy, log_level, "%s.\n",
4952 tmptrash->area);
4953 send_email_alert(s, log_level, "%s",
4954 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004955 free_trash_chunk(tmptrash);
4956 tmptrash = NULL;
4957 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004958 s->counters.down_trans++;
4959 }
4960 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004961 if (s->proxy->lbprm.set_server_status_down)
4962 s->proxy->lbprm.set_server_status_down(s);
4963
4964 /* we might have streams queued on this server and waiting for
4965 * a connection. Those which are redispatchable will be queued
4966 * to another server or to the proxy itself.
4967 */
4968 xferred = pendconn_redistribute(s);
4969
4970 tmptrash = alloc_trash_chunk();
4971 if (tmptrash) {
4972 chunk_printf(tmptrash,
4973 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4974 s->proxy->id, s->id);
4975
Emeric Brun5a133512017-10-19 14:42:30 +02004976 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004977
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004978 ha_warning("%s.\n", tmptrash->area);
4979 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4980 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004981 free_trash_chunk(tmptrash);
4982 tmptrash = NULL;
4983 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004984 }
4985 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4986 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004987
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004988 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004989 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4990
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004991 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004992 /* now propagate the status change to any LB algorithms */
4993 if (px->lbprm.update_server_eweight)
4994 px->lbprm.update_server_eweight(s);
4995 else if (srv_willbe_usable(s)) {
4996 if (px->lbprm.set_server_status_up)
4997 px->lbprm.set_server_status_up(s);
4998 }
4999 else {
5000 if (px->lbprm.set_server_status_down)
5001 px->lbprm.set_server_status_down(s);
5002 }
5003
5004 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5005 * and it's not a backup server and its effective weight is > 0,
5006 * then it can accept new connections, so we shut down all streams
5007 * on all backup servers.
5008 */
5009 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5010 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5011 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5012
5013 /* check if we can handle some connections queued at the proxy. We
5014 * will take as many as we can handle.
5015 */
5016 xferred = pendconn_grab_from_px(s);
5017
5018 tmptrash = alloc_trash_chunk();
5019 if (tmptrash) {
5020 chunk_printf(tmptrash,
5021 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5022 s->proxy->id, s->id);
5023
Emeric Brun5a133512017-10-19 14:42:30 +02005024 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005025 ha_warning("%s.\n", tmptrash->area);
5026 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5027 tmptrash->area);
5028 send_email_alert(s, LOG_NOTICE, "%s",
5029 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005030 free_trash_chunk(tmptrash);
5031 tmptrash = NULL;
5032 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005033 }
5034 else if (s->cur_eweight != s->next_eweight) {
5035 /* now propagate the status change to any LB algorithms */
5036 if (px->lbprm.update_server_eweight)
5037 px->lbprm.update_server_eweight(s);
5038 else if (srv_willbe_usable(s)) {
5039 if (px->lbprm.set_server_status_up)
5040 px->lbprm.set_server_status_up(s);
5041 }
5042 else {
5043 if (px->lbprm.set_server_status_down)
5044 px->lbprm.set_server_status_down(s);
5045 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005046 }
5047
5048 s->next_admin = next_admin;
5049 }
5050
Emeric Brun5a133512017-10-19 14:42:30 +02005051 /* reset operational state change */
5052 *s->op_st_chg.reason = 0;
5053 s->op_st_chg.status = s->op_st_chg.code = -1;
5054 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005055
5056 /* Now we try to apply pending admin changes */
5057
5058 /* Maintenance must also disable health checks */
5059 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5060 if (s->check.state & CHK_ST_ENABLED) {
5061 s->check.state |= CHK_ST_PAUSED;
5062 check->health = 0;
5063 }
5064
5065 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005066 tmptrash = alloc_trash_chunk();
5067 if (tmptrash) {
5068 chunk_printf(tmptrash,
5069 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5070 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5071 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005072
Olivier Houchard796a2b32017-10-24 17:42:47 +02005073 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005074
Olivier Houchard796a2b32017-10-24 17:42:47 +02005075 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005076 ha_warning("%s.\n", tmptrash->area);
5077 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5078 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005079 }
5080 free_trash_chunk(tmptrash);
5081 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005082 }
5083 }
5084 else { /* server was still running */
5085 check->health = 0; /* failure */
Emeric Brune3114802017-12-21 14:42:26 +01005086
5087 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005088 if (s->proxy->lbprm.set_server_status_down)
5089 s->proxy->lbprm.set_server_status_down(s);
5090
Emeric Brun64cc49c2017-10-03 14:46:45 +02005091 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5092 srv_shutdown_streams(s, SF_ERR_DOWN);
5093
William Dauchy6318d332020-05-02 21:52:36 +02005094 /* force connection cleanup on the given server */
5095 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005096 /* we might have streams queued on this server and waiting for
5097 * a connection. Those which are redispatchable will be queued
5098 * to another server or to the proxy itself.
5099 */
5100 xferred = pendconn_redistribute(s);
5101
5102 tmptrash = alloc_trash_chunk();
5103 if (tmptrash) {
5104 chunk_printf(tmptrash,
5105 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5106 s->flags & SRV_F_BACKUP ? "Backup " : "",
5107 s->proxy->id, s->id,
5108 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5109
5110 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5111
5112 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005113 ha_warning("%s.\n", tmptrash->area);
5114 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5115 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005116 }
5117 free_trash_chunk(tmptrash);
5118 tmptrash = NULL;
5119 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005120 s->counters.down_trans++;
5121 }
5122 }
5123 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5124 /* OK here we're leaving maintenance, we have many things to check,
5125 * because the server might possibly be coming back up depending on
5126 * its state. In practice, leaving maintenance means that we should
5127 * immediately turn to UP (more or less the slowstart) under the
5128 * following conditions :
5129 * - server is neither checked nor tracked
5130 * - server tracks another server which is not checked
5131 * - server tracks another server which is already up
5132 * Which sums up as something simpler :
5133 * "either the tracking server is up or the server's checks are disabled
5134 * or up". Otherwise we only re-enable health checks. There's a special
5135 * case associated to the stopping state which can be inherited. Note
5136 * that the server might still be in drain mode, which is naturally dealt
5137 * with by the lower level functions.
5138 */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005139 if (s->check.state & CHK_ST_ENABLED) {
5140 s->check.state &= ~CHK_ST_PAUSED;
5141 check->health = check->rise; /* start OK but check immediately */
5142 }
5143
5144 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5145 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5146 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5147 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5148 s->next_state = SRV_ST_STOPPING;
5149 }
5150 else {
5151 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005152 if (s->slowstart > 0) {
5153 if (s->warmup)
5154 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5155 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005156 else
5157 s->next_state = SRV_ST_RUNNING;
5158 }
5159
5160 }
5161
5162 tmptrash = alloc_trash_chunk();
5163 if (tmptrash) {
5164 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5165 chunk_printf(tmptrash,
5166 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5167 s->flags & SRV_F_BACKUP ? "Backup " : "",
5168 s->proxy->id, s->id,
5169 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5170 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5171 }
5172 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5173 chunk_printf(tmptrash,
5174 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5175 s->flags & SRV_F_BACKUP ? "Backup " : "",
5176 s->proxy->id, s->id, s->hostname,
5177 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5178 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5179 }
5180 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5181 chunk_printf(tmptrash,
5182 "%sServer %s/%s is %s/%s (leaving maintenance)",
5183 s->flags & SRV_F_BACKUP ? "Backup " : "",
5184 s->proxy->id, s->id,
5185 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5186 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5187 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005188 ha_warning("%s.\n", tmptrash->area);
5189 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5190 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005191 free_trash_chunk(tmptrash);
5192 tmptrash = NULL;
5193 }
5194
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005195 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005196 /* now propagate the status change to any LB algorithms */
5197 if (px->lbprm.update_server_eweight)
5198 px->lbprm.update_server_eweight(s);
5199 else if (srv_willbe_usable(s)) {
5200 if (px->lbprm.set_server_status_up)
5201 px->lbprm.set_server_status_up(s);
5202 }
5203 else {
5204 if (px->lbprm.set_server_status_down)
5205 px->lbprm.set_server_status_down(s);
5206 }
5207
Willy Tarreau6a78e612018-08-07 10:14:53 +02005208 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5209 * and it's not a backup server and its effective weight is > 0,
5210 * then it can accept new connections, so we shut down all streams
5211 * on all backup servers.
5212 */
5213 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5214 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5215 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5216
5217 /* check if we can handle some connections queued at the proxy. We
5218 * will take as many as we can handle.
5219 */
5220 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005221 }
5222 else if (s->next_admin & SRV_ADMF_MAINT) {
5223 /* remaining in maintenance mode, let's inform precisely about the
5224 * situation.
5225 */
5226 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5227 tmptrash = alloc_trash_chunk();
5228 if (tmptrash) {
5229 chunk_printf(tmptrash,
5230 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5231 s->flags & SRV_F_BACKUP ? "Backup " : "",
5232 s->proxy->id, s->id);
5233
5234 if (s->track) /* normally it's mandatory here */
5235 chunk_appendf(tmptrash, " via %s/%s",
5236 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005237 ha_warning("%s.\n", tmptrash->area);
5238 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5239 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005240 free_trash_chunk(tmptrash);
5241 tmptrash = NULL;
5242 }
5243 }
5244 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5245 tmptrash = alloc_trash_chunk();
5246 if (tmptrash) {
5247 chunk_printf(tmptrash,
5248 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5249 s->flags & SRV_F_BACKUP ? "Backup " : "",
5250 s->proxy->id, s->id, s->hostname);
5251
5252 if (s->track) /* normally it's mandatory here */
5253 chunk_appendf(tmptrash, " via %s/%s",
5254 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005255 ha_warning("%s.\n", tmptrash->area);
5256 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5257 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005258 free_trash_chunk(tmptrash);
5259 tmptrash = NULL;
5260 }
5261 }
5262 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5263 tmptrash = alloc_trash_chunk();
5264 if (tmptrash) {
5265 chunk_printf(tmptrash,
5266 "%sServer %s/%s remains in forced maintenance",
5267 s->flags & SRV_F_BACKUP ? "Backup " : "",
5268 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005269 ha_warning("%s.\n", tmptrash->area);
5270 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5271 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005272 free_trash_chunk(tmptrash);
5273 tmptrash = NULL;
5274 }
5275 }
5276 /* don't report anything when leaving drain mode and remaining in maintenance */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005277 }
5278
5279 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5280 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5281 /* drain state is applied only if not yet in maint */
5282
Emeric Brun64cc49c2017-10-03 14:46:45 +02005283 if (px->lbprm.set_server_status_down)
5284 px->lbprm.set_server_status_down(s);
5285
5286 /* we might have streams queued on this server and waiting for
5287 * a connection. Those which are redispatchable will be queued
5288 * to another server or to the proxy itself.
5289 */
5290 xferred = pendconn_redistribute(s);
5291
5292 tmptrash = alloc_trash_chunk();
5293 if (tmptrash) {
5294 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5295 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5296 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5297
5298 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5299
5300 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005301 ha_warning("%s.\n", tmptrash->area);
5302 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5303 tmptrash->area);
5304 send_email_alert(s, LOG_NOTICE, "%s",
5305 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005306 }
5307 free_trash_chunk(tmptrash);
5308 tmptrash = NULL;
5309 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005310 }
5311 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5312 /* OK completely leaving drain mode */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005313 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005314
5315 tmptrash = alloc_trash_chunk();
5316 if (tmptrash) {
Aurelien DARRAGONec4db422023-03-27 10:17:31 +02005317 if (s->cur_admin & SRV_ADMF_FDRAIN) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02005318 chunk_printf(tmptrash,
5319 "%sServer %s/%s is %s (leaving forced drain)",
5320 s->flags & SRV_F_BACKUP ? "Backup " : "",
5321 s->proxy->id, s->id,
5322 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5323 }
5324 else {
5325 chunk_printf(tmptrash,
5326 "%sServer %s/%s is %s (leaving drain)",
5327 s->flags & SRV_F_BACKUP ? "Backup " : "",
5328 s->proxy->id, s->id,
5329 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5330 if (s->track) /* normally it's mandatory here */
5331 chunk_appendf(tmptrash, " via %s/%s",
5332 s->track->proxy->id, s->track->id);
5333 }
5334
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005335 ha_warning("%s.\n", tmptrash->area);
5336 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5337 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005338 free_trash_chunk(tmptrash);
5339 tmptrash = NULL;
5340 }
5341
5342 /* now propagate the status change to any LB algorithms */
5343 if (px->lbprm.update_server_eweight)
5344 px->lbprm.update_server_eweight(s);
5345 else if (srv_willbe_usable(s)) {
5346 if (px->lbprm.set_server_status_up)
5347 px->lbprm.set_server_status_up(s);
5348 }
5349 else {
5350 if (px->lbprm.set_server_status_down)
5351 px->lbprm.set_server_status_down(s);
5352 }
5353 }
5354 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5355 /* remaining in drain mode after removing one of its flags */
5356
5357 tmptrash = alloc_trash_chunk();
5358 if (tmptrash) {
5359 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5360 chunk_printf(tmptrash,
5361 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5362 s->flags & SRV_F_BACKUP ? "Backup " : "",
5363 s->proxy->id, s->id);
5364
5365 if (s->track) /* normally it's mandatory here */
5366 chunk_appendf(tmptrash, " via %s/%s",
5367 s->track->proxy->id, s->track->id);
5368 }
5369 else {
5370 chunk_printf(tmptrash,
5371 "%sServer %s/%s remains in forced drain mode",
5372 s->flags & SRV_F_BACKUP ? "Backup " : "",
5373 s->proxy->id, s->id);
5374 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005375 ha_warning("%s.\n", tmptrash->area);
5376 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5377 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005378 free_trash_chunk(tmptrash);
5379 tmptrash = NULL;
5380 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005381 }
5382 }
5383
5384 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005385 *s->adm_st_chg_cause = 0;
Aurelien DARRAGON674ba672023-04-17 17:45:58 +02005386
5387 /* explicitly commit state changes (even if it was already applied implicitly
5388 * by some lb state change function), so we don't miss anything
5389 */
5390 srv_lb_commit_status(s);
Aurelien DARRAGON9aba5c02023-04-17 15:30:11 +02005391
Aurelien DARRAGON37f548d2023-04-18 13:52:27 +02005392 /* check if server stats must be updated due the the server state change */
5393 if (srv_prev_state != s->cur_state) {
5394 if (srv_prev_state == SRV_ST_STOPPED) {
5395 /* server was down and no longer is */
5396 if (s->last_change < now.tv_sec) // ignore negative times
5397 s->down_time += now.tv_sec - s->last_change;
5398 }
5399 s->last_change = now.tv_sec;
5400 }
5401
Aurelien DARRAGON9aba5c02023-04-17 15:30:11 +02005402 /* check if backend stats must be updated due to the server state change */
5403 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5404 set_backend_down(s->proxy); /* backend going down */
5405 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act)) {
5406 /* backend was down and is back up again:
5407 * no helper function, updating last_change and backend downtime stats
5408 */
5409 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5410 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5411 s->proxy->last_change = now.tv_sec;
5412 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005413}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005414
Willy Tarreau144f84a2021-03-02 16:09:26 +01005415struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005416{
5417 struct connection *conn;
5418
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005419 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005420 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005421 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005422 }
5423
5424 return task;
5425}
5426
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005427/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005428 * moving them all.
5429 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005430 *
5431 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005432 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005433static 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 +02005434{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005435 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005436 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005437 int i = 0;
5438
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005439 node = eb_first(idle_tree);
5440 while (node) {
5441 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005442 if (toremove_nb != -1 && i >= toremove_nb)
5443 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005444
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005445 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005446 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005447 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005448 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005449
5450 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005451 }
5452 return i;
5453}
William Dauchy6318d332020-05-02 21:52:36 +02005454/* cleanup connections for a given server
5455 * might be useful when going on forced maintenance or live changing ip/port
5456 */
William Dauchy707ad322020-05-04 13:52:40 +02005457static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005458{
William Dauchy6318d332020-05-02 21:52:36 +02005459 int did_remove;
5460 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005461
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005462 /* nothing to do if pool-max-conn is null */
5463 if (!srv->max_idle_conns)
5464 return;
5465
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005466 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005467 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005468 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005469 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005470 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 +02005471 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005472 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 +02005473 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005474 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005475 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005476 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005477
5478 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5479 break;
William Dauchy6318d332020-05-02 21:52:36 +02005480 }
William Dauchy6318d332020-05-02 21:52:36 +02005481}
5482
Willy Tarreau144f84a2021-03-02 16:09:26 +01005483struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005484{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005485 struct server *srv;
5486 struct eb32_node *eb;
5487 int i;
5488 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005489
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005490 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005491 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5492 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005493 int exceed_conns;
5494 int to_kill;
5495 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005496
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005497 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5498 if (!eb) {
5499 /* we might have reached the end of the tree, typically because
5500 * <now_ms> is in the first half and we're first scanning the last
5501 * half. Let's loop back to the beginning of the tree now.
5502 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005503
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005504 eb = eb32_first(&idle_conn_srv);
5505 if (likely(!eb))
5506 break;
5507 }
5508 if (tick_is_lt(now_ms, eb->key)) {
5509 /* timer not expired yet, revisit it later */
5510 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005511 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005512 }
5513 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005514
5515 /* Calculate how many idle connections we want to kill :
5516 * we want to remove half the difference between the total
5517 * of established connections (used or idle) and the max
5518 * number of used connections.
5519 */
5520 curr_idle = srv->curr_idle_conns;
5521 if (curr_idle == 0)
5522 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005523 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005524 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005525
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005526 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005527 if (srv->est_need_conns < srv->max_used_conns)
5528 srv->est_need_conns = srv->max_used_conns;
5529
Willy Tarreau41d57422022-11-21 14:32:33 +01005530 HA_ATOMIC_STORE(&srv->max_used_conns, srv->curr_used_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005531
Willy Tarreau18ed7892020-07-02 19:05:30 +02005532 if (exceed_conns <= 0)
5533 goto remove;
5534
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005535 /* check all threads starting with ours */
5536 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005537 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005538 int j;
5539 int did_remove = 0;
5540
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005541 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5542 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005543
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005544 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005545 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 +02005546 if (j > 0)
5547 did_remove = 1;
5548 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005549 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 +01005550 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005551 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005552
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005553 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005554 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005555
5556 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5557 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005558 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005559remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005560 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005561
5562 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005563 /* There are still more idle connections, add the
5564 * server back in the tree.
5565 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005566 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005567 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005568 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005569 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005570 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005571 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5572
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005573 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005574 return task;
5575}
Olivier Houchard88698d92019-04-16 19:07:22 +02005576
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005577/* Close remaining idle connections. This functions is designed to be run on
5578 * process shutdown. This guarantees a proper socket shutdown to avoid
5579 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5580 * bypassed.
5581 *
5582 * This function is not thread-safe so it must only be called via a global
5583 * deinit function.
5584 */
5585static void srv_close_idle_conns(struct server *srv)
5586{
5587 struct eb_root **cleaned_tree;
5588 int i;
5589
5590 for (i = 0; i < global.nbthread; ++i) {
5591 struct eb_root *conn_trees[] = {
5592 &srv->per_thr[i].idle_conns,
5593 &srv->per_thr[i].safe_conns,
5594 &srv->per_thr[i].avail_conns,
5595 NULL
5596 };
5597
5598 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5599 while (!eb_is_empty(*cleaned_tree)) {
5600 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5601 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5602 struct connection *conn = conn_hash_node->conn;
5603
5604 if (conn->ctrl->ctrl_close)
5605 conn->ctrl->ctrl_close(conn);
5606 ebmb_delete(node);
5607 }
5608 }
5609 }
5610}
5611
5612REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5613
Willy Tarreau76cc6992020-07-01 18:49:24 +02005614/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5615static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005616 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005617 char **err)
5618{
5619 if (too_many_args(1, args, err, NULL))
5620 return -1;
5621
5622 if (strcmp(args[1], "on") == 0)
5623 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5624 else if (strcmp(args[1], "off") == 0)
5625 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5626 else {
5627 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5628 return -1;
5629 }
5630 return 0;
5631}
5632
Olivier Houchard88698d92019-04-16 19:07:22 +02005633/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5634static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005635 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005636 char **err)
5637{
5638 int arg = -1;
5639
5640 if (too_many_args(1, args, err, NULL))
5641 return -1;
5642
5643 if (*(args[1]) != 0)
5644 arg = atoi(args[1]);
5645
5646 if (arg < 0 || arg > 100) {
5647 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5648 return -1;
5649 }
5650
5651 if (args[0][10] == 'h')
5652 global.tune.pool_high_ratio = arg;
5653 else
5654 global.tune.pool_low_ratio = arg;
5655 return 0;
5656}
5657
5658/* config keyword parsers */
5659static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005660 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005661 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5662 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5663 { 0, NULL, NULL }
5664}};
5665
5666INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5667
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005668/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005669 * Local variables:
5670 * c-indent-level: 8
5671 * c-basic-offset: 8
5672 * End:
5673 */