blob: 2061153bc04c78c1d9d330576979205c135d12b2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreau260f3242021-10-06 18:30:04 +020019#include <import/ebmbtree.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010041#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Willy Tarreauba6300e2021-05-08 14:09:40 +020047#include <haproxy/tools.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020048#include <haproxy/xxhash.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 Denoyelle9c3251d2021-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{
207 if (srv->mux_proto || srv->use_ssl != 1 || !srv->ssl_ctx.alpn_str) {
208 /* explicit srv.mux_proto or no ALPN : srv.mux_proto is used
209 * for mux selection.
210 */
211 const struct ist srv_mux = srv->mux_proto ?
212 srv->mux_proto->token : IST_NULL;
213
214 switch (srv->ws) {
215 /* "auto" means use the same protocol : reuse is possible. */
216 case SRV_WS_AUTO:
217 return 1;
218
219 /* "h2" means use h2 for websocket : reuse is possible if
220 * server mux is h2.
221 */
222 case SRV_WS_H2:
223 if (srv->mux_proto && isteq(srv_mux, ist("h2")))
224 return 1;
225 break;
226
227 /* "h1" means use h1 for websocket : reuse is possible if
228 * server mux is h1.
229 */
230 case SRV_WS_H1:
231 if (!srv->mux_proto || isteq(srv_mux, ist("h1")))
232 return 1;
233 break;
234 }
235 }
236 else {
237 /* ALPN selection.
238 * Based on the assumption that only "h2" and "http/1.1" token
239 * are used on server ALPN.
240 */
241 const struct ist alpn = ist2(srv->ssl_ctx.alpn_str,
242 srv->ssl_ctx.alpn_len);
243
244 switch (srv->ws) {
245 case SRV_WS_AUTO:
246 /* for auto mode, consider reuse as possible if the
247 * server uses a single protocol ALPN
248 */
249 if (!istchr(alpn, ','))
250 return 1;
251 break;
252
253 case SRV_WS_H2:
254 return isteq(alpn, ist("\x02h2"));
255
256 case SRV_WS_H1:
257 return isteq(alpn, ist("\x08http/1.1"));
258 }
259 }
260
261 return 0;
262}
263
264/* Return the proto to used for a websocket stream on <srv> without ALPN. NULL
265 * is a valid value indicating to use the fallback mux.
266 */
267const struct mux_ops *srv_get_ws_proto(struct server *srv)
268{
269 const struct mux_proto_list *mux = NULL;
270
271 switch (srv->ws) {
272 case SRV_WS_AUTO:
273 mux = srv->mux_proto;
274 break;
275
276 case SRV_WS_H1:
277 mux = get_mux_proto(ist("h1"));
278 break;
279
280 case SRV_WS_H2:
281 mux = get_mux_proto(ist("h2"));
282 break;
283 }
284
285 return mux ? mux->mux : NULL;
286}
287
Willy Tarreau21faa912012-10-10 08:27:36 +0200288/*
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200289 * Must be called with the server lock held. The server is first removed from
290 * the proxy tree if it was already attached. If <reattach> is true, the server
291 * will then be attached in the proxy tree. The proxy lock is held to
292 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700293 */
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200294static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700295{
296 struct proxy *p = s->proxy;
297 char *key;
298
299 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
300
301 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700302 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700303 free(key);
304 return;
305 }
306
307 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
308 ebpt_delete(&s->addr_node);
309 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
310
311 free(s->addr_node.key);
312 }
313
314 s->addr_node.key = key;
315
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200316 if (reattach) {
317 if (s->addr_node.key) {
318 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
319 ebis_insert(&p->used_server_addr, &s->addr_node);
320 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
321 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700322 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700323}
324
325/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200326 * Registers the server keyword list <kwl> as a list of valid keywords for next
327 * parsing sessions.
328 */
329void srv_register_keywords(struct srv_kw_list *kwl)
330{
Willy Tarreau2b718102021-04-21 07:32:39 +0200331 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200332}
333
334/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
335 * keyword is found with a NULL ->parse() function, then an attempt is made to
336 * find one with a valid ->parse() function. This way it is possible to declare
337 * platform-dependant, known keywords as NULL, then only declare them as valid
338 * if some options are met. Note that if the requested keyword contains an
339 * opening parenthesis, everything from this point is ignored.
340 */
341struct srv_kw *srv_find_kw(const char *kw)
342{
343 int index;
344 const char *kwend;
345 struct srv_kw_list *kwl;
346 struct srv_kw *ret = NULL;
347
348 kwend = strchr(kw, '(');
349 if (!kwend)
350 kwend = kw + strlen(kw);
351
352 list_for_each_entry(kwl, &srv_keywords.list, list) {
353 for (index = 0; kwl->kw[index].kw != NULL; index++) {
354 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
355 kwl->kw[index].kw[kwend-kw] == 0) {
356 if (kwl->kw[index].parse)
357 return &kwl->kw[index]; /* found it !*/
358 else
359 ret = &kwl->kw[index]; /* may be OK */
360 }
361 }
362 }
363 return ret;
364}
365
366/* Dumps all registered "server" keywords to the <out> string pointer. The
367 * unsupported keywords are only dumped if their supported form was not
368 * found.
369 */
370void srv_dump_kws(char **out)
371{
372 struct srv_kw_list *kwl;
373 int index;
374
Christopher Faulet784063e2020-05-18 12:14:18 +0200375 if (!out)
376 return;
377
Willy Tarreau21faa912012-10-10 08:27:36 +0200378 *out = NULL;
379 list_for_each_entry(kwl, &srv_keywords.list, list) {
380 for (index = 0; kwl->kw[index].kw != NULL; index++) {
381 if (kwl->kw[index].parse ||
382 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
383 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
384 kwl->scope,
385 kwl->kw[index].kw,
386 kwl->kw[index].skip ? " <arg>" : "",
387 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
388 kwl->kw[index].parse ? "" : " (not supported)");
389 }
390 }
391 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100392}
393
394/* Try to find in srv_keyword the word that looks closest to <word> by counting
395 * transitions between letters, digits and other characters. Will return the
396 * best matching word if found, otherwise NULL. An optional array of extra
397 * words to compare may be passed in <extra>, but it must then be terminated
398 * by a NULL entry. If unused it may be NULL.
399 */
400static const char *srv_find_best_kw(const char *word)
401{
402 uint8_t word_sig[1024];
403 uint8_t list_sig[1024];
404 const struct srv_kw_list *kwl;
405 const char *best_ptr = NULL;
406 int dist, best_dist = INT_MAX;
407 const char **extra;
408 int index;
409
410 make_word_fingerprint(word_sig, word);
411 list_for_each_entry(kwl, &srv_keywords.list, list) {
412 for (index = 0; kwl->kw[index].kw != NULL; index++) {
413 make_word_fingerprint(list_sig, kwl->kw[index].kw);
414 dist = word_fingerprint_distance(word_sig, list_sig);
415 if (dist < best_dist) {
416 best_dist = dist;
417 best_ptr = kwl->kw[index].kw;
418 }
419 }
420 }
421
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100422 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100423 make_word_fingerprint(list_sig, *extra);
424 dist = word_fingerprint_distance(word_sig, list_sig);
425 if (dist < best_dist) {
426 best_dist = dist;
427 best_ptr = *extra;
428 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100429 }
430
431 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
432 best_ptr = NULL;
433
434 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200435}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100436
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100437/* Parse the "backup" server keyword */
438static int srv_parse_backup(char **args, int *cur_arg,
439 struct proxy *curproxy, struct server *newsrv, char **err)
440{
441 newsrv->flags |= SRV_F_BACKUP;
442 return 0;
443}
444
Alexander Liu2a54bb72019-05-22 19:44:48 +0800445
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100446/* Parse the "cookie" server keyword */
447static int srv_parse_cookie(char **args, int *cur_arg,
448 struct proxy *curproxy, struct server *newsrv, char **err)
449{
450 char *arg;
451
452 arg = args[*cur_arg + 1];
453 if (!*arg) {
454 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
455 return ERR_ALERT | ERR_FATAL;
456 }
457
458 free(newsrv->cookie);
459 newsrv->cookie = strdup(arg);
460 newsrv->cklen = strlen(arg);
461 newsrv->flags |= SRV_F_COOKIESET;
462 return 0;
463}
464
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100465/* Parse the "disabled" server keyword */
466static int srv_parse_disabled(char **args, int *cur_arg,
467 struct proxy *curproxy, struct server *newsrv, char **err)
468{
Emeric Brun52a91d32017-08-31 14:41:55 +0200469 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
470 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100471 newsrv->check.state |= CHK_ST_PAUSED;
472 newsrv->check.health = 0;
473 return 0;
474}
475
476/* Parse the "enabled" server keyword */
477static int srv_parse_enabled(char **args, int *cur_arg,
478 struct proxy *curproxy, struct server *newsrv, char **err)
479{
Emeric Brun52a91d32017-08-31 14:41:55 +0200480 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
481 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100482 newsrv->check.state &= ~CHK_ST_PAUSED;
483 newsrv->check.health = newsrv->check.rise;
484 return 0;
485}
486
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100487/* Parse the "error-limit" server keyword */
488static int srv_parse_error_limit(char **args, int *cur_arg,
489 struct proxy *curproxy, struct server *newsrv, char **err)
490{
491 if (!*args[*cur_arg + 1]) {
492 memprintf(err, "'%s' expects an integer argument.",
493 args[*cur_arg]);
494 return ERR_ALERT | ERR_FATAL;
495 }
496
497 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
498
499 if (newsrv->consecutive_errors_limit <= 0) {
500 memprintf(err, "%s has to be > 0.",
501 args[*cur_arg]);
502 return ERR_ALERT | ERR_FATAL;
503 }
504
505 return 0;
506}
507
Amaury Denoyellef9d59572021-10-18 14:40:29 +0200508/* Parse the "ws" keyword */
509static int srv_parse_ws(char **args, int *cur_arg,
510 struct proxy *curproxy, struct server *newsrv, char **err)
511{
512 if (!args[*cur_arg + 1]) {
513 memprintf(err, "'%s' expects 'auto', 'h1' or 'h2' value", args[*cur_arg]);
514 return ERR_ALERT | ERR_FATAL;
515 }
516
517 if (strcmp(args[*cur_arg + 1], "h1") == 0) {
518 newsrv->ws = SRV_WS_H1;
519 }
520 else if (strcmp(args[*cur_arg + 1], "h2") == 0) {
521 newsrv->ws = SRV_WS_H2;
522 }
523 else if (strcmp(args[*cur_arg + 1], "auto") == 0) {
524 newsrv->ws = SRV_WS_AUTO;
525 }
526 else {
527 memprintf(err, "'%s' has to be 'auto', 'h1' or 'h2'", args[*cur_arg]);
528 return ERR_ALERT | ERR_FATAL;
529 }
530
531
532 return 0;
533}
534
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100535/* Parse the "init-addr" server keyword */
536static int srv_parse_init_addr(char **args, int *cur_arg,
537 struct proxy *curproxy, struct server *newsrv, char **err)
538{
539 char *p, *end;
540 int done;
541 struct sockaddr_storage sa;
542
543 newsrv->init_addr_methods = 0;
544 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
545
546 for (p = args[*cur_arg + 1]; *p; p = end) {
547 /* cut on next comma */
548 for (end = p; *end && *end != ','; end++);
549 if (*end)
550 *(end++) = 0;
551
552 memset(&sa, 0, sizeof(sa));
553 if (strcmp(p, "libc") == 0) {
554 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
555 }
556 else if (strcmp(p, "last") == 0) {
557 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
558 }
559 else if (strcmp(p, "none") == 0) {
560 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
561 }
562 else if (str2ip2(p, &sa, 0)) {
563 if (is_addr(&newsrv->init_addr)) {
564 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
565 args[*cur_arg], p);
566 return ERR_ALERT | ERR_FATAL;
567 }
568 newsrv->init_addr = sa;
569 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
570 }
571 else {
572 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
573 args[*cur_arg], p);
574 return ERR_ALERT | ERR_FATAL;
575 }
576 if (!done) {
577 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
578 args[*cur_arg], p);
579 return ERR_ALERT | ERR_FATAL;
580 }
581 }
582
583 return 0;
584}
585
586/* Parse the "log-proto" server keyword */
587static int srv_parse_log_proto(char **args, int *cur_arg,
588 struct proxy *curproxy, struct server *newsrv, char **err)
589{
590 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
591 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
592 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
593 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
594 else {
595 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
596 args[*cur_arg], args[*cur_arg + 1]);
597 return ERR_ALERT | ERR_FATAL;
598 }
599
600 return 0;
601}
602
603/* Parse the "maxconn" server keyword */
604static int srv_parse_maxconn(char **args, int *cur_arg,
605 struct proxy *curproxy, struct server *newsrv, char **err)
606{
607 newsrv->maxconn = atol(args[*cur_arg + 1]);
608 return 0;
609}
610
611/* Parse the "maxqueue" server keyword */
612static int srv_parse_maxqueue(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 newsrv->maxqueue = atol(args[*cur_arg + 1]);
616 return 0;
617}
618
619/* Parse the "minconn" server keyword */
620static int srv_parse_minconn(char **args, int *cur_arg,
621 struct proxy *curproxy, struct server *newsrv, char **err)
622{
623 newsrv->minconn = atol(args[*cur_arg + 1]);
624 return 0;
625}
626
Willy Tarreau9c538e02019-01-23 10:21:49 +0100627static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
628{
629 char *arg;
630
631 arg = args[*cur_arg + 1];
632 if (!*arg) {
633 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
634 return ERR_ALERT | ERR_FATAL;
635 }
636 newsrv->max_reuse = atoi(arg);
637
638 return 0;
639}
640
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100641static 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 +0100642{
643 const char *res;
644 char *arg;
645 unsigned int time;
646
647 arg = args[*cur_arg + 1];
648 if (!*arg) {
649 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
650 return ERR_ALERT | ERR_FATAL;
651 }
652 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200653 if (res == PARSE_TIME_OVER) {
654 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
655 args[*cur_arg+1], args[*cur_arg]);
656 return ERR_ALERT | ERR_FATAL;
657 }
658 else if (res == PARSE_TIME_UNDER) {
659 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
660 args[*cur_arg+1], args[*cur_arg]);
661 return ERR_ALERT | ERR_FATAL;
662 }
663 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100664 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
665 *res, args[*cur_arg]);
666 return ERR_ALERT | ERR_FATAL;
667 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100668 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100669
670 return 0;
671}
672
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200673static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
674{
675 char *arg;
676
677 arg = args[*cur_arg + 1];
678 if (!*arg) {
679 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
680 return ERR_ALERT | ERR_FATAL;
681 }
682
683 newsrv->low_idle_conns = atoi(arg);
684 return 0;
685}
686
Olivier Houchard006e3102018-12-10 18:30:32 +0100687static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
688{
689 char *arg;
690
691 arg = args[*cur_arg + 1];
692 if (!*arg) {
693 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
694 return ERR_ALERT | ERR_FATAL;
695 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100696
Olivier Houchard006e3102018-12-10 18:30:32 +0100697 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100698 if ((int)newsrv->max_idle_conns < -1) {
699 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
700 return ERR_ALERT | ERR_FATAL;
701 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100702
703 return 0;
704}
705
Willy Tarreaudff55432012-10-10 17:51:05 +0200706/* parse the "id" server keyword */
707static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
708{
709 struct eb32_node *node;
710
711 if (!*args[*cur_arg + 1]) {
712 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
713 return ERR_ALERT | ERR_FATAL;
714 }
715
716 newsrv->puid = atol(args[*cur_arg + 1]);
717 newsrv->conf.id.key = newsrv->puid;
718
719 if (newsrv->puid <= 0) {
720 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
721 return ERR_ALERT | ERR_FATAL;
722 }
723
724 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
725 if (node) {
726 struct server *target = container_of(node, struct server, conf.id);
727 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
728 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
729 target->id);
730 return ERR_ALERT | ERR_FATAL;
731 }
732
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200733 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200734 return 0;
735}
736
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100737/* Parse the "namespace" server keyword */
738static int srv_parse_namespace(char **args, int *cur_arg,
739 struct proxy *curproxy, struct server *newsrv, char **err)
740{
Willy Tarreaue5733232019-05-22 19:24:06 +0200741#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100742 char *arg;
743
744 arg = args[*cur_arg + 1];
745 if (!*arg) {
746 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
747 return ERR_ALERT | ERR_FATAL;
748 }
749
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100750 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100751 /* Use the namespace associated with the connection (if present). */
752 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
753 return 0;
754 }
755
756 /*
757 * As this parser may be called several times for the same 'default-server'
758 * object, or for a new 'server' instance deriving from a 'default-server'
759 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
760 */
761 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
762
763 newsrv->netns = netns_store_lookup(arg, strlen(arg));
764 if (!newsrv->netns)
765 newsrv->netns = netns_store_insert(arg);
766
767 if (!newsrv->netns) {
768 memprintf(err, "Cannot open namespace '%s'", arg);
769 return ERR_ALERT | ERR_FATAL;
770 }
771
772 return 0;
773#else
774 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
775 return ERR_ALERT | ERR_FATAL;
776#endif
777}
778
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100779/* Parse the "no-backup" server keyword */
780static int srv_parse_no_backup(char **args, int *cur_arg,
781 struct proxy *curproxy, struct server *newsrv, char **err)
782{
783 newsrv->flags &= ~SRV_F_BACKUP;
784 return 0;
785}
786
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100787
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100788/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200789static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100790{
791 srv->pp_opts &= ~flags;
792 return 0;
793}
794
795/* Parse the "no-send-proxy" server keyword */
796static int srv_parse_no_send_proxy(char **args, int *cur_arg,
797 struct proxy *curproxy, struct server *newsrv, char **err)
798{
799 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
800}
801
802/* Parse the "no-send-proxy-v2" server keyword */
803static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
804 struct proxy *curproxy, struct server *newsrv, char **err)
805{
806 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
807}
808
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200809/* Parse the "no-tfo" server keyword */
810static int srv_parse_no_tfo(char **args, int *cur_arg,
811 struct proxy *curproxy, struct server *newsrv, char **err)
812{
813 newsrv->flags &= ~SRV_F_FASTOPEN;
814 return 0;
815}
816
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100817/* Parse the "non-stick" server keyword */
818static int srv_parse_non_stick(char **args, int *cur_arg,
819 struct proxy *curproxy, struct server *newsrv, char **err)
820{
821 newsrv->flags |= SRV_F_NON_STICK;
822 return 0;
823}
824
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100825/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200826static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100827{
828 srv->pp_opts |= flags;
829 return 0;
830}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200831/* parse the "proto" server keyword */
832static int srv_parse_proto(char **args, int *cur_arg,
833 struct proxy *px, struct server *newsrv, char **err)
834{
835 struct ist proto;
836
837 if (!*args[*cur_arg + 1]) {
838 memprintf(err, "'%s' : missing value", args[*cur_arg]);
839 return ERR_ALERT | ERR_FATAL;
840 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100841 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200842 newsrv->mux_proto = get_mux_proto(proto);
843 if (!newsrv->mux_proto) {
844 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
845 return ERR_ALERT | ERR_FATAL;
846 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200847 return 0;
848}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100849
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100850/* parse the "proxy-v2-options" */
851static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
852 struct proxy *px, struct server *newsrv, char **err)
853{
854 char *p, *n;
855 for (p = args[*cur_arg+1]; p; p = n) {
856 n = strchr(p, ',');
857 if (n)
858 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100859 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100860 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100861 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100862 newsrv->pp_opts |= SRV_PP_V2_SSL;
863 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100864 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100865 newsrv->pp_opts |= SRV_PP_V2_SSL;
866 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100867 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100868 newsrv->pp_opts |= SRV_PP_V2_SSL;
869 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100870 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100871 newsrv->pp_opts |= SRV_PP_V2_SSL;
872 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100873 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100874 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100875 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100876 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100877 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100878 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100879 } else
880 goto fail;
881 }
882 return 0;
883 fail:
884 if (err)
885 memprintf(err, "'%s' : proxy v2 option not implemented", p);
886 return ERR_ALERT | ERR_FATAL;
887}
888
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100889/* Parse the "observe" server keyword */
890static int srv_parse_observe(char **args, int *cur_arg,
891 struct proxy *curproxy, struct server *newsrv, char **err)
892{
893 char *arg;
894
895 arg = args[*cur_arg + 1];
896 if (!*arg) {
897 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
898 return ERR_ALERT | ERR_FATAL;
899 }
900
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100901 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100902 newsrv->observe = HANA_OBS_NONE;
903 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100904 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100905 newsrv->observe = HANA_OBS_LAYER4;
906 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100907 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100908 if (curproxy->mode != PR_MODE_HTTP) {
909 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
910 return ERR_ALERT;
911 }
912 newsrv->observe = HANA_OBS_LAYER7;
913 }
914 else {
915 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
916 "but got '%s'\n", args[*cur_arg], arg);
917 return ERR_ALERT | ERR_FATAL;
918 }
919
920 return 0;
921}
922
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100923/* Parse the "on-error" server keyword */
924static int srv_parse_on_error(char **args, int *cur_arg,
925 struct proxy *curproxy, struct server *newsrv, char **err)
926{
927 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
928 newsrv->onerror = HANA_ONERR_FASTINTER;
929 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
930 newsrv->onerror = HANA_ONERR_FAILCHK;
931 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
932 newsrv->onerror = HANA_ONERR_SUDDTH;
933 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
934 newsrv->onerror = HANA_ONERR_MARKDWN;
935 else {
936 memprintf(err, "'%s' expects one of 'fastinter', "
937 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
938 args[*cur_arg], args[*cur_arg + 1]);
939 return ERR_ALERT | ERR_FATAL;
940 }
941
942 return 0;
943}
944
945/* Parse the "on-marked-down" server keyword */
946static int srv_parse_on_marked_down(char **args, int *cur_arg,
947 struct proxy *curproxy, struct server *newsrv, char **err)
948{
949 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
950 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
951 else {
952 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
953 args[*cur_arg], args[*cur_arg + 1]);
954 return ERR_ALERT | ERR_FATAL;
955 }
956
957 return 0;
958}
959
960/* Parse the "on-marked-up" server keyword */
961static int srv_parse_on_marked_up(char **args, int *cur_arg,
962 struct proxy *curproxy, struct server *newsrv, char **err)
963{
964 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
965 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
966 else {
967 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
968 args[*cur_arg], args[*cur_arg + 1]);
969 return ERR_ALERT | ERR_FATAL;
970 }
971
972 return 0;
973}
974
Frédéric Lécaille16186232017-03-14 16:42:49 +0100975/* Parse the "redir" server keyword */
976static int srv_parse_redir(char **args, int *cur_arg,
977 struct proxy *curproxy, struct server *newsrv, char **err)
978{
979 char *arg;
980
981 arg = args[*cur_arg + 1];
982 if (!*arg) {
983 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
984 return ERR_ALERT | ERR_FATAL;
985 }
986
987 free(newsrv->rdr_pfx);
988 newsrv->rdr_pfx = strdup(arg);
989 newsrv->rdr_len = strlen(arg);
990
991 return 0;
992}
993
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100994/* Parse the "resolvers" server keyword */
995static int srv_parse_resolvers(char **args, int *cur_arg,
996 struct proxy *curproxy, struct server *newsrv, char **err)
997{
998 free(newsrv->resolvers_id);
999 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
1000 return 0;
1001}
1002
1003/* Parse the "resolve-net" server keyword */
1004static int srv_parse_resolve_net(char **args, int *cur_arg,
1005 struct proxy *curproxy, struct server *newsrv, char **err)
1006{
1007 char *p, *e;
1008 unsigned char mask;
1009 struct resolv_options *opt;
1010
1011 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
1012 memprintf(err, "'%s' expects a list of networks.",
1013 args[*cur_arg]);
1014 return ERR_ALERT | ERR_FATAL;
1015 }
1016
1017 opt = &newsrv->resolv_opts;
1018
1019 /* Split arguments by comma, and convert it from ipv4 or ipv6
1020 * string network in in_addr or in6_addr.
1021 */
1022 p = args[*cur_arg + 1];
1023 e = p;
1024 while (*p != '\0') {
1025 /* If no room available, return error. */
1026 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1027 memprintf(err, "'%s' exceed %d networks.",
1028 args[*cur_arg], SRV_MAX_PREF_NET);
1029 return ERR_ALERT | ERR_FATAL;
1030 }
1031 /* look for end or comma. */
1032 while (*e != ',' && *e != '\0')
1033 e++;
1034 if (*e == ',') {
1035 *e = '\0';
1036 e++;
1037 }
1038 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1039 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1040 /* Try to convert input string from ipv4 or ipv6 network. */
1041 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1042 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1043 &mask)) {
1044 /* Try to convert input string from ipv6 network. */
1045 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1046 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1047 } else {
1048 /* All network conversions fail, return error. */
1049 memprintf(err, "'%s' invalid network '%s'.",
1050 args[*cur_arg], p);
1051 return ERR_ALERT | ERR_FATAL;
1052 }
1053 opt->pref_net_nb++;
1054 p = e;
1055 }
1056
1057 return 0;
1058}
1059
1060/* Parse the "resolve-opts" server keyword */
1061static int srv_parse_resolve_opts(char **args, int *cur_arg,
1062 struct proxy *curproxy, struct server *newsrv, char **err)
1063{
1064 char *p, *end;
1065
1066 for (p = args[*cur_arg + 1]; *p; p = end) {
1067 /* cut on next comma */
1068 for (end = p; *end && *end != ','; end++);
1069 if (*end)
1070 *(end++) = 0;
1071
1072 if (strcmp(p, "allow-dup-ip") == 0) {
1073 newsrv->resolv_opts.accept_duplicate_ip = 1;
1074 }
1075 else if (strcmp(p, "ignore-weight") == 0) {
1076 newsrv->resolv_opts.ignore_weight = 1;
1077 }
1078 else if (strcmp(p, "prevent-dup-ip") == 0) {
1079 newsrv->resolv_opts.accept_duplicate_ip = 0;
1080 }
1081 else {
1082 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1083 args[*cur_arg], p);
1084 return ERR_ALERT | ERR_FATAL;
1085 }
1086 }
1087
1088 return 0;
1089}
1090
1091/* Parse the "resolve-prefer" server keyword */
1092static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1093 struct proxy *curproxy, struct server *newsrv, char **err)
1094{
1095 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1096 newsrv->resolv_opts.family_prio = AF_INET;
1097 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1098 newsrv->resolv_opts.family_prio = AF_INET6;
1099 else {
1100 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1101 args[*cur_arg]);
1102 return ERR_ALERT | ERR_FATAL;
1103 }
1104
1105 return 0;
1106}
1107
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001108/* Parse the "send-proxy" server keyword */
1109static int srv_parse_send_proxy(char **args, int *cur_arg,
1110 struct proxy *curproxy, struct server *newsrv, char **err)
1111{
1112 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1113}
1114
1115/* Parse the "send-proxy-v2" server keyword */
1116static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1117 struct proxy *curproxy, struct server *newsrv, char **err)
1118{
1119 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1120}
1121
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001122/* Parse the "slowstart" server keyword */
1123static int srv_parse_slowstart(char **args, int *cur_arg,
1124 struct proxy *curproxy, struct server *newsrv, char **err)
1125{
1126 /* slowstart is stored in seconds */
1127 unsigned int val;
1128 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1129
1130 if (time_err == PARSE_TIME_OVER) {
1131 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1132 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1133 return ERR_ALERT | ERR_FATAL;
1134 }
1135 else if (time_err == PARSE_TIME_UNDER) {
1136 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1137 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1138 return ERR_ALERT | ERR_FATAL;
1139 }
1140 else if (time_err) {
1141 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1142 *time_err, newsrv->id);
1143 return ERR_ALERT | ERR_FATAL;
1144 }
1145 newsrv->slowstart = (val + 999) / 1000;
1146
1147 return 0;
1148}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001149
1150/* Parse the "source" server keyword */
1151static int srv_parse_source(char **args, int *cur_arg,
1152 struct proxy *curproxy, struct server *newsrv, char **err)
1153{
1154 char *errmsg;
1155 int port_low, port_high;
1156 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001157
1158 errmsg = NULL;
1159
1160 if (!*args[*cur_arg + 1]) {
1161 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1162 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1163 goto err;
1164 }
1165
1166 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001167 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1168 &errmsg, NULL, NULL,
1169 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 +01001170 if (!sk) {
1171 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1172 goto err;
1173 }
1174
Frédéric Lécailledba97072017-03-17 15:33:50 +01001175 newsrv->conn_src.opts |= CO_SRC_BIND;
1176 newsrv->conn_src.source_addr = *sk;
1177
1178 if (port_low != port_high) {
1179 int i;
1180
Frédéric Lécailledba97072017-03-17 15:33:50 +01001181 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001182 if (!newsrv->conn_src.sport_range) {
1183 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1184 goto err;
1185 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001186 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1187 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1188 }
1189
1190 *cur_arg += 2;
1191 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001192 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001193#if defined(CONFIG_HAP_TRANSPARENT)
1194 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001195 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1196 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001197 goto err;
1198 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001199 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001200 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1201 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1202 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001203 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001204 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1205 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1206 }
1207 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1208 char *name, *end;
1209
1210 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001211 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001212 name++;
1213
1214 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001215 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001216 end++;
1217
1218 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1219 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1220 free(newsrv->conn_src.bind_hdr_name);
1221 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001222 if (!newsrv->conn_src.bind_hdr_name) {
1223 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1224 goto err;
1225 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001226 newsrv->conn_src.bind_hdr_len = end - name;
1227 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1228 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1229 newsrv->conn_src.bind_hdr_occ = -1;
1230
1231 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001232 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001233 end++;
1234 if (*end == ',') {
1235 end++;
1236 name = end;
1237 if (*end == '-')
1238 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001239 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001240 end++;
1241 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1242 }
1243
1244 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1246 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001247 goto err;
1248 }
1249 }
1250 else {
1251 struct sockaddr_storage *sk;
1252 int port1, port2;
1253
1254 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001255 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1256 &errmsg, NULL, NULL,
1257 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001258 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001259 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001260 goto err;
1261 }
1262
Frédéric Lécailledba97072017-03-17 15:33:50 +01001263 newsrv->conn_src.tproxy_addr = *sk;
1264 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1265 }
1266 global.last_checks |= LSTCHK_NETADM;
1267 *cur_arg += 2;
1268 continue;
1269#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001270 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 +01001271 goto err;
1272#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1273 } /* "usesrc" */
1274
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001275 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001276#ifdef SO_BINDTODEVICE
1277 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001279 goto err;
1280 }
1281 free(newsrv->conn_src.iface_name);
1282 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1283 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1284 global.last_checks |= LSTCHK_NETADM;
1285#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001287 goto err;
1288#endif
1289 *cur_arg += 2;
1290 continue;
1291 }
1292 /* this keyword in not an option of "source" */
1293 break;
1294 } /* while */
1295
1296 return 0;
1297
1298 err:
1299 free(errmsg);
1300 return ERR_ALERT | ERR_FATAL;
1301}
1302
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001303/* Parse the "stick" server keyword */
1304static int srv_parse_stick(char **args, int *cur_arg,
1305 struct proxy *curproxy, struct server *newsrv, char **err)
1306{
1307 newsrv->flags &= ~SRV_F_NON_STICK;
1308 return 0;
1309}
1310
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001311/* Parse the "track" server keyword */
1312static int srv_parse_track(char **args, int *cur_arg,
1313 struct proxy *curproxy, struct server *newsrv, char **err)
1314{
1315 char *arg;
1316
1317 arg = args[*cur_arg + 1];
1318 if (!*arg) {
1319 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1320 return ERR_ALERT | ERR_FATAL;
1321 }
1322
1323 free(newsrv->trackit);
1324 newsrv->trackit = strdup(arg);
1325
1326 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001327}
1328
1329/* Parse the "socks4" server keyword */
1330static int srv_parse_socks4(char **args, int *cur_arg,
1331 struct proxy *curproxy, struct server *newsrv, char **err)
1332{
1333 char *errmsg;
1334 int port_low, port_high;
1335 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001336
1337 errmsg = NULL;
1338
1339 if (!*args[*cur_arg + 1]) {
1340 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1341 goto err;
1342 }
1343
1344 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001345 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1346 &errmsg, NULL, NULL,
1347 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001348 if (!sk) {
1349 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1350 goto err;
1351 }
1352
Alexander Liu2a54bb72019-05-22 19:44:48 +08001353 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1354 newsrv->socks4_addr = *sk;
1355
Alexander Liu2a54bb72019-05-22 19:44:48 +08001356 return 0;
1357
1358 err:
1359 free(errmsg);
1360 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001361}
1362
Frédéric Lécailledba97072017-03-17 15:33:50 +01001363
Willy Tarreau034c88c2017-01-23 23:36:45 +01001364/* parse the "tfo" server keyword */
1365static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1366{
1367 newsrv->flags |= SRV_F_FASTOPEN;
1368 return 0;
1369}
1370
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001371/* parse the "usesrc" server keyword */
1372static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1373{
1374 memprintf(err, "'%s' only allowed after a '%s' statement.",
1375 "usesrc", "source");
1376 return ERR_ALERT | ERR_FATAL;
1377}
1378
1379/* parse the "weight" server keyword */
1380static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1381{
1382 int w;
1383
1384 w = atol(args[*cur_arg + 1]);
1385 if (w < 0 || w > SRV_UWGHT_MAX) {
1386 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1387 newsrv->id, SRV_UWGHT_MAX, w);
1388 return ERR_ALERT | ERR_FATAL;
1389 }
1390 newsrv->uweight = newsrv->iweight = w;
1391
1392 return 0;
1393}
1394
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001395/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001396 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001397 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001398 *
1399 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001400 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001401void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001402{
Willy Tarreau751153e2021-02-17 13:33:24 +01001403 struct stream *stream;
1404 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001405 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001406
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001407 for (thr = 0; thr < global.nbthread; thr++)
1408 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1409 if (stream->srv_conn == srv)
1410 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001411}
1412
1413/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001414 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001415 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001416 *
1417 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001418 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001419void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001420{
1421 struct server *srv;
1422
1423 for (srv = px->srv; srv != NULL; srv = srv->next)
1424 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001425 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001426}
1427
Willy Tarreaubda92272014-05-20 21:55:30 +02001428/* Appends some information to a message string related to a server going UP or
1429 * DOWN. If both <forced> and <reason> are null and the server tracks another
1430 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001431 * If <check> is non-null, an entire string describing the check result will be
1432 * appended after a comma and a space (eg: to report some information from the
1433 * check that changed the state). In the other case, the string will be built
1434 * using the check results stored into the struct server if present.
1435 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001436 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001437 *
1438 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001439 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001440void srv_append_status(struct buffer *msg, struct server *s,
1441 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001442{
Emeric Brun5a133512017-10-19 14:42:30 +02001443 short status = s->op_st_chg.status;
1444 short code = s->op_st_chg.code;
1445 long duration = s->op_st_chg.duration;
1446 char *desc = s->op_st_chg.reason;
1447
1448 if (check) {
1449 status = check->status;
1450 code = check->code;
1451 duration = check->duration;
1452 desc = check->desc;
1453 }
1454
1455 if (status != -1) {
1456 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1457
1458 if (status >= HCHK_STATUS_L57DATA)
1459 chunk_appendf(msg, ", code: %d", code);
1460
1461 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001462 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001463
1464 chunk_appendf(msg, ", info: \"");
1465
1466 chunk_initlen(&src, desc, 0, strlen(desc));
1467 chunk_asciiencode(msg, &src, '"');
1468
1469 chunk_appendf(msg, "\"");
1470 }
1471
1472 if (duration >= 0)
1473 chunk_appendf(msg, ", check duration: %ldms", duration);
1474 }
1475 else if (desc && *desc) {
1476 chunk_appendf(msg, ", %s", desc);
1477 }
1478 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001479 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001480 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001481
1482 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001483 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001484 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1485 " %d sessions active, %d requeued, %d remaining in queue",
1486 s->proxy->srv_act, s->proxy->srv_bck,
1487 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001488 s->cur_sess, xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001489 else
1490 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1491 " %d sessions requeued, %d total in queue",
1492 s->proxy->srv_act, s->proxy->srv_bck,
1493 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001494 xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001495 }
1496}
1497
Emeric Brun5a133512017-10-19 14:42:30 +02001498/* Marks server <s> down, regardless of its checks' statuses. The server is
1499 * registered in a list to postpone the counting of the remaining servers on
1500 * the proxy and transfers queued streams whenever possible to other servers at
1501 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1502 * non-null as the reason for going down or the available data from the check
1503 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001504 *
1505 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001506 */
Emeric Brun5a133512017-10-19 14:42:30 +02001507void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001508{
1509 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001510
Emeric Brun64cc49c2017-10-03 14:46:45 +02001511 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001512 return;
1513
Emeric Brun52a91d32017-08-31 14:41:55 +02001514 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001515 *s->op_st_chg.reason = 0;
1516 s->op_st_chg.status = -1;
1517 if (reason) {
1518 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1519 }
1520 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001521 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001522 s->op_st_chg.code = check->code;
1523 s->op_st_chg.status = check->status;
1524 s->op_st_chg.duration = check->duration;
1525 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001526
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001527 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001528 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001529
Emeric Brun9f0b4582017-10-23 14:39:51 +02001530 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001531 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001532 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001533 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001534 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001535}
1536
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001537/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001538 * in maintenance. The server is registered in a list to postpone the counting
1539 * of the remaining servers on the proxy and tries to grab requests from the
1540 * proxy at a sync point. Maintenance servers are ignored. It stores the
1541 * <reason> if non-null as the reason for going down or the available data
1542 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001543 *
1544 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001545 */
Emeric Brun5a133512017-10-19 14:42:30 +02001546void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001547{
1548 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001549
Emeric Brun64cc49c2017-10-03 14:46:45 +02001550 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001551 return;
1552
Emeric Brun52a91d32017-08-31 14:41:55 +02001553 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001554 return;
1555
Emeric Brun52a91d32017-08-31 14:41:55 +02001556 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001557 *s->op_st_chg.reason = 0;
1558 s->op_st_chg.status = -1;
1559 if (reason) {
1560 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1561 }
1562 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001563 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001564 s->op_st_chg.code = check->code;
1565 s->op_st_chg.status = check->status;
1566 s->op_st_chg.duration = check->duration;
1567 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001568
Emeric Brun64cc49c2017-10-03 14:46:45 +02001569 if (s->slowstart <= 0)
1570 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001571
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001572 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001573 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001574
Emeric Brun9f0b4582017-10-23 14:39:51 +02001575 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001576 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001577 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001578 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001579 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001580}
1581
Willy Tarreau8eb77842014-05-21 13:54:57 +02001582/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001583 * isn't in maintenance. The server is registered in a list to postpone the
1584 * counting of the remaining servers on the proxy and tries to grab requests
1585 * from the proxy. Maintenance servers are ignored. It stores the
1586 * <reason> if non-null as the reason for going down or the available data
1587 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001588 * up. Note that it makes use of the trash to build the log strings, so <reason>
1589 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001590 *
1591 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001592 */
Emeric Brun5a133512017-10-19 14:42:30 +02001593void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001594{
1595 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001596
Emeric Brun64cc49c2017-10-03 14:46:45 +02001597 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001598 return;
1599
Emeric Brun52a91d32017-08-31 14:41:55 +02001600 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001601 return;
1602
Emeric Brun52a91d32017-08-31 14:41:55 +02001603 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001604 *s->op_st_chg.reason = 0;
1605 s->op_st_chg.status = -1;
1606 if (reason) {
1607 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1608 }
1609 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001610 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001611 s->op_st_chg.code = check->code;
1612 s->op_st_chg.status = check->status;
1613 s->op_st_chg.duration = check->duration;
1614 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001615
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001616 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001617 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001618
Emeric Brun9f0b4582017-10-23 14:39:51 +02001619 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001620 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001621 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001622 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001623 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001624}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001625
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001626/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1627 * enforce either maint mode or drain mode. It is not allowed to set more than
1628 * one flag at once. The equivalent "inherited" flag is propagated to all
1629 * tracking servers. Maintenance mode disables health checks (but not agent
1630 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001631 * is done. If <cause> is non-null, it will be displayed at the end of the log
1632 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001633 *
1634 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001635 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001636void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001637{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001638 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001639
1640 if (!mode)
1641 return;
1642
1643 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001644 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001645 return;
1646
Emeric Brun52a91d32017-08-31 14:41:55 +02001647 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001648 if (cause)
1649 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1650
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001651 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001652 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001653
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001654 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001655 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1656 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001657 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001658
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001659 /* compute the inherited flag to propagate */
1660 if (mode & SRV_ADMF_MAINT)
1661 mode = SRV_ADMF_IMAINT;
1662 else if (mode & SRV_ADMF_DRAIN)
1663 mode = SRV_ADMF_IDRAIN;
1664
Emeric Brun9f0b4582017-10-23 14:39:51 +02001665 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001666 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001667 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001668 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001669 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001670}
1671
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001672/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1673 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1674 * than one flag at once. The equivalent "inherited" flag is propagated to all
1675 * tracking servers. Leaving maintenance mode re-enables health checks. When
1676 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001677 *
1678 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001679 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001680void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001681{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001682 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001683
1684 if (!mode)
1685 return;
1686
1687 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001688 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001689 return;
1690
Emeric Brun52a91d32017-08-31 14:41:55 +02001691 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001692
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001693 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001694 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001695
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001696 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001697 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1698 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001699 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001700
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001701 if (mode & SRV_ADMF_MAINT)
1702 mode = SRV_ADMF_IMAINT;
1703 else if (mode & SRV_ADMF_DRAIN)
1704 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001705
Emeric Brun9f0b4582017-10-23 14:39:51 +02001706 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001707 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001708 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001709 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001710 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001711}
1712
Willy Tarreau757478e2016-11-03 19:22:19 +01001713/* principle: propagate maint and drain to tracking servers. This is useful
1714 * upon startup so that inherited states are correct.
1715 */
1716static void srv_propagate_admin_state(struct server *srv)
1717{
1718 struct server *srv2;
1719
1720 if (!srv->trackers)
1721 return;
1722
1723 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001724 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001725 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001726 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001727
Emeric Brun52a91d32017-08-31 14:41:55 +02001728 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001729 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001730 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001731 }
1732}
1733
1734/* Compute and propagate the admin states for all servers in proxy <px>.
1735 * Only servers *not* tracking another one are considered, because other
1736 * ones will be handled when the server they track is visited.
1737 */
1738void srv_compute_all_admin_states(struct proxy *px)
1739{
1740 struct server *srv;
1741
1742 for (srv = px->srv; srv; srv = srv->next) {
1743 if (srv->track)
1744 continue;
1745 srv_propagate_admin_state(srv);
1746 }
1747}
1748
Willy Tarreaudff55432012-10-10 17:51:05 +02001749/* Note: must not be declared <const> as its list will be overwritten.
1750 * Please take care of keeping this list alphabetically sorted, doing so helps
1751 * all code contributors.
1752 * Optional keywords are also declared with a NULL ->parse() function so that
1753 * the config parser can report an appropriate error when a known keyword was
1754 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001755 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001756 */
1757static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001758 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001759 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001760 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1761 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001762 { "error-limit", srv_parse_error_limit, 1, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellef9d59572021-10-18 14:40:29 +02001763 { "ws", srv_parse_ws, 1, 1, 1 }, /* websocket protocol */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001764 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001765 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1766 { "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 +01001767 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1768 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001769 { "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 +01001770 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001771 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001772 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1773 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1774 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1775 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001776 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001777 { "observe", srv_parse_observe, 1, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
1778 { "on-error", srv_parse_on_error, 1, 1, 1 }, /* Configure the action on check failure */
1779 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 1 }, /* Configure the action when a server is marked down */
1780 { "on-marked-up", srv_parse_on_marked_up, 1, 1, 1 }, /* Configure the action when a server is marked up */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001781 { "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 */
1782 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1783 { "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 +01001784 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001785 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001786 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001787 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001788 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001789 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001790 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001791 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1792 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02001793 { "slowstart", srv_parse_slowstart, 1, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001794 { "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 +01001795 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001796 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02001797 { "track", srv_parse_track, 1, 1, 1 }, /* Set the current state of the server, tracking another one */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001798 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001799 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1800 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001801 { NULL, NULL, 0 },
1802}};
1803
Willy Tarreau0108d902018-11-25 19:14:37 +01001804INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001805
Willy Tarreau004e0452013-11-21 11:22:01 +01001806/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001807 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001808 * state is automatically disabled if the time is elapsed. If <must_update> is
1809 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001810 *
1811 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001812 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001813void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001814{
1815 struct proxy *px = sv->proxy;
1816 unsigned w;
1817
1818 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1819 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001820 if (sv->next_state == SRV_ST_STARTING)
1821 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001822 }
1823
1824 /* We must take care of not pushing the server to full throttle during slow starts.
1825 * It must also start immediately, at least at the minimal step when leaving maintenance.
1826 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001827 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001828 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1829 else
1830 w = px->lbprm.wdiv;
1831
Emeric Brun52a91d32017-08-31 14:41:55 +02001832 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001833
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001834 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001835 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001836 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001837}
1838
Willy Tarreaubaaee002006-06-26 02:48:02 +02001839/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001840 * Parses weight_str and configures sv accordingly.
1841 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001842 *
1843 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001844 */
1845const char *server_parse_weight_change_request(struct server *sv,
1846 const char *weight_str)
1847{
1848 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001849 long int w;
1850 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001851
1852 px = sv->proxy;
1853
1854 /* if the weight is terminated with '%', it is set relative to
1855 * the initial weight, otherwise it is absolute.
1856 */
1857 if (!*weight_str)
1858 return "Require <weight> or <weight%>.\n";
1859
Simon Hormanb796afa2013-02-12 10:45:53 +09001860 w = strtol(weight_str, &end, 10);
1861 if (end == weight_str)
1862 return "Empty weight string empty or preceded by garbage";
1863 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001864 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001865 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001866 /* Avoid integer overflow */
1867 if (w > 25600)
1868 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001869 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001870 if (w > 256)
1871 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001872 }
1873 else if (w < 0 || w > 256)
1874 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001875 else if (end[0] != '\0')
1876 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001877
1878 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1879 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1880
1881 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001882 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001883
1884 return NULL;
1885}
1886
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001887/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001888 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1889 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001890 * Returns:
1891 * - error string on error
1892 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001893 *
1894 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001895 */
1896const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001897 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001898{
1899 unsigned char ip[INET6_ADDRSTRLEN];
1900
1901 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001902 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001903 return NULL;
1904 }
1905 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001906 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001907 return NULL;
1908 }
1909
1910 return "Could not understand IP address format.\n";
1911}
1912
Willy Tarreau46b7f532018-08-21 11:54:26 +02001913/*
1914 * Must be called with the server lock held.
1915 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001916const char *server_parse_maxconn_change_request(struct server *sv,
1917 const char *maxconn_str)
1918{
1919 long int v;
1920 char *end;
1921
1922 if (!*maxconn_str)
1923 return "Require <maxconn>.\n";
1924
1925 v = strtol(maxconn_str, &end, 10);
1926 if (end == maxconn_str)
1927 return "maxconn string empty or preceded by garbage";
1928 else if (end[0] != '\0')
1929 return "Trailing garbage in maxconn string";
1930
1931 if (sv->maxconn == sv->minconn) { // static maxconn
1932 sv->maxconn = sv->minconn = v;
1933 } else { // dynamic maxconn
1934 sv->maxconn = v;
1935 }
1936
1937 if (may_dequeue_tasks(sv, sv->proxy))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001938 process_srv_queue(sv);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001939
1940 return NULL;
1941}
1942
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001943static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1944 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001945{
1946 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001947 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001948 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001949 NULL,
1950 };
1951
1952 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001953 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001954
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001955 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001956}
1957
1958static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1959{
1960 struct sample_expr *expr;
1961
1962 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 +01001963 if (!expr) {
1964 memprintf(err, "error detected while parsing sni expression : %s", *err);
1965 return ERR_ALERT | ERR_FATAL;
1966 }
1967
1968 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1969 memprintf(err, "error detected while parsing sni expression : "
1970 " fetch method '%s' extracts information from '%s', "
Amaury Denoyellec008a632021-05-28 11:01:22 +02001971 "none of which is available here.",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001972 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001973 return ERR_ALERT | ERR_FATAL;
1974 }
1975
1976 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1977 release_sample_expr(newsrv->ssl_ctx.sni);
1978 newsrv->ssl_ctx.sni = expr;
1979
1980 return 0;
1981}
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001982
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001983static 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 +01001984{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001985 char *msg = "error encountered while processing ";
1986 char *quote = "'";
1987 char *token = args[cur_arg];
1988
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001989 if (err && *err) {
1990 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001991 msg = *err;
1992 quote = "";
1993 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001994 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001995
1996 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001997 ha_warning("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001998 else
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001999 ha_alert("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002000}
2001
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002002static void srv_conn_src_sport_range_cpy(struct server *srv,
2003 struct server *src)
2004{
2005 int range_sz;
2006
2007 range_sz = src->conn_src.sport_range->size;
2008 if (range_sz > 0) {
2009 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
2010 if (srv->conn_src.sport_range != NULL) {
2011 int i;
2012
2013 for (i = 0; i < range_sz; i++) {
2014 srv->conn_src.sport_range->ports[i] =
2015 src->conn_src.sport_range->ports[i];
2016 }
2017 }
2018 }
2019}
2020
2021/*
2022 * Copy <src> server connection source settings to <srv> server everything needed.
2023 */
2024static void srv_conn_src_cpy(struct server *srv, struct server *src)
2025{
2026 srv->conn_src.opts = src->conn_src.opts;
2027 srv->conn_src.source_addr = src->conn_src.source_addr;
2028
2029 /* Source port range copy. */
2030 if (src->conn_src.sport_range != NULL)
2031 srv_conn_src_sport_range_cpy(srv, src);
2032
2033#ifdef CONFIG_HAP_TRANSPARENT
2034 if (src->conn_src.bind_hdr_name != NULL) {
2035 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2036 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2037 }
2038 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2039 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2040#endif
2041 if (src->conn_src.iface_name != NULL)
2042 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
2043}
2044
2045/*
2046 * Copy <src> server SSL settings to <srv> server allocating
2047 * everything needed.
2048 */
2049#if defined(USE_OPENSSL)
2050static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
2051{
Christopher Faulet4ab26792021-12-01 09:50:41 +01002052 /* <src> is the current proxy's default server and SSL is enabled */
William Lallemand2c776f12021-12-28 18:47:17 +01002053 BUG_ON(src->ssl_ctx.ctx != NULL); /* the SSL_CTX must never be initialized in a default-server */
2054
Christopher Faulet4ab26792021-12-01 09:50:41 +01002055 if (src == &srv->proxy->defsrv && src->use_ssl == 1)
2056 srv->flags |= SRV_F_DEFSRV_USE_SSL;
2057
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002058 if (src->ssl_ctx.ca_file != NULL)
2059 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2060 if (src->ssl_ctx.crl_file != NULL)
2061 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
William Lallemand2c776f12021-12-28 18:47:17 +01002062 if (src->ssl_ctx.client_crt != NULL)
2063 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002064
2065 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2066
Remi Tricot-Le Breton0498fa42021-07-13 18:28:22 +02002067
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002068 if (src->ssl_ctx.verify_host != NULL)
2069 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2070 if (src->ssl_ctx.ciphers != NULL)
2071 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002072 if (src->ssl_ctx.options)
2073 srv->ssl_ctx.options = src->ssl_ctx.options;
2074 if (src->ssl_ctx.methods.flags)
2075 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2076 if (src->ssl_ctx.methods.min)
2077 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2078 if (src->ssl_ctx.methods.max)
2079 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2080
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002081 if (src->ssl_ctx.ciphersuites != NULL)
2082 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002083 if (src->sni_expr != NULL)
2084 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002085
Olivier Houchardc7566002018-11-20 23:33:50 +01002086 if (src->ssl_ctx.alpn_str) {
2087 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2088 if (srv->ssl_ctx.alpn_str) {
2089 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2090 src->ssl_ctx.alpn_len);
2091 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2092 }
2093 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002094
Olivier Houchardc7566002018-11-20 23:33:50 +01002095 if (src->ssl_ctx.npn_str) {
2096 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2097 if (srv->ssl_ctx.npn_str) {
2098 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2099 src->ssl_ctx.npn_len);
2100 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2101 }
2102 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002103}
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002104
2105/* Activate ssl on server <s>.
2106 * do nothing if there is no change to apply
2107 *
2108 * Must be called with the server lock held.
2109 */
2110void srv_set_ssl(struct server *s, int use_ssl)
2111{
2112 if (s->use_ssl == use_ssl)
2113 return;
2114
2115 s->use_ssl = use_ssl;
2116 if (s->use_ssl)
2117 s->xprt = xprt_get(XPRT_SSL);
2118 else
2119 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
2120}
2121
2122#endif /* USE_OPENSSL */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002123
2124/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002125 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002126 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002127 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002128 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002129int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002130{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002131 char *hostname_dn;
2132 int hostname_len, hostname_dn_len;
2133
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002134 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002135 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002136
Christopher Faulet67957bd2017-09-27 11:00:59 +02002137 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002138 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02002139 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002140 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002141 if (hostname_dn_len == -1)
2142 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002143
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002144
Christopher Faulet67957bd2017-09-27 11:00:59 +02002145 free(srv->hostname);
2146 free(srv->hostname_dn);
2147 srv->hostname = strdup(hostname);
2148 srv->hostname_dn = strdup(hostname_dn);
2149 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002150 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002151 goto err;
2152
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002153 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002154
2155 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002156 ha_free(&srv->hostname);
2157 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002158 return -1;
2159}
2160
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002161/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002162 * Copy <src> server settings to <srv> server allocating
2163 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002164 * This function is not supposed to be called at any time, but only
2165 * during server settings parsing or during server allocations from
2166 * a server template, and just after having calloc()'ed a new server.
2167 * So, <src> may only be a default server (when parsing server settings)
2168 * or a server template (during server allocations from a server template).
2169 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2170 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002171 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002172static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002173{
2174 /* Connection source settings copy */
2175 srv_conn_src_cpy(srv, src);
2176
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002177 if (srv_tmpl) {
2178 srv->addr = src->addr;
2179 srv->svc_port = src->svc_port;
2180 }
2181
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002182 srv->pp_opts = src->pp_opts;
2183 if (src->rdr_pfx != NULL) {
2184 srv->rdr_pfx = strdup(src->rdr_pfx);
2185 srv->rdr_len = src->rdr_len;
2186 }
2187 if (src->cookie != NULL) {
2188 srv->cookie = strdup(src->cookie);
2189 srv->cklen = src->cklen;
2190 }
2191 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002192 srv->check.addr = src->check.addr;
2193 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002194 srv->check.use_ssl = src->check.use_ssl;
2195 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002196 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002197 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002198 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002199 /* Note: 'flags' field has potentially been already initialized. */
2200 srv->flags |= src->flags;
2201 srv->do_check = src->do_check;
2202 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002203 srv->check.inter = src->check.inter;
2204 srv->check.fastinter = src->check.fastinter;
2205 srv->check.downinter = src->check.downinter;
2206 srv->agent.use_ssl = src->agent.use_ssl;
2207 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002208
2209 if (src->agent.tcpcheck_rules) {
2210 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2211 if (srv->agent.tcpcheck_rules) {
2212 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2213 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2214 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2215 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2216 &src->agent.tcpcheck_rules->preset_vars);
2217 }
2218 }
2219
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002220 srv->agent.inter = src->agent.inter;
2221 srv->agent.fastinter = src->agent.fastinter;
2222 srv->agent.downinter = src->agent.downinter;
2223 srv->maxqueue = src->maxqueue;
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02002224 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002225 srv->minconn = src->minconn;
2226 srv->maxconn = src->maxconn;
2227 srv->slowstart = src->slowstart;
2228 srv->observe = src->observe;
2229 srv->onerror = src->onerror;
2230 srv->onmarkeddown = src->onmarkeddown;
2231 srv->onmarkedup = src->onmarkedup;
2232 if (src->trackit != NULL)
2233 srv->trackit = strdup(src->trackit);
2234 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2235 srv->uweight = srv->iweight = src->iweight;
2236
2237 srv->check.send_proxy = src->check.send_proxy;
2238 /* health: up, but will fall down at first failure */
2239 srv->check.rise = srv->check.health = src->check.rise;
2240 srv->check.fall = src->check.fall;
2241
2242 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002243 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2244 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2245 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002246 srv->check.state |= CHK_ST_PAUSED;
2247 srv->check.health = 0;
2248 }
2249
2250 /* health: up but will fall down at first failure */
2251 srv->agent.rise = srv->agent.health = src->agent.rise;
2252 srv->agent.fall = src->agent.fall;
2253
2254 if (src->resolvers_id != NULL)
2255 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002256 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2257 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2258 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2259 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2260 srv->resolv_opts.family_prio = AF_INET6;
2261 memcpy(srv->resolv_opts.pref_net,
2262 src->resolv_opts.pref_net,
2263 sizeof srv->resolv_opts.pref_net);
2264 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002265
2266 srv->init_addr_methods = src->init_addr_methods;
2267 srv->init_addr = src->init_addr;
2268#if defined(USE_OPENSSL)
2269 srv_ssl_settings_cpy(srv, src);
2270#endif
2271#ifdef TCP_USER_TIMEOUT
2272 srv->tcp_ut = src->tcp_ut;
2273#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002274 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002275 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002276 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002277 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002278 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002279
Olivier Houchard8da5f982017-08-04 18:35:36 +02002280 if (srv_tmpl)
2281 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002282
2283 srv->check.via_socks4 = src->check.via_socks4;
2284 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002285}
2286
Willy Tarreau198e92a2021-03-05 10:23:32 +01002287/* allocate a server and attach it to the global servers_list. Returns
2288 * the server on success, otherwise NULL.
2289 */
William Lallemand313bfd12018-10-26 14:47:32 +02002290struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002291{
2292 struct server *srv;
2293
2294 srv = calloc(1, sizeof *srv);
2295 if (!srv)
2296 return NULL;
2297
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002298 srv_take(srv);
2299
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002300 srv->obj_type = OBJ_TYPE_SERVER;
2301 srv->proxy = proxy;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02002302 queue_init(&srv->queue, proxy, srv);
Willy Tarreau2b718102021-04-21 07:32:39 +02002303 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun34067662021-06-11 10:48:45 +02002304 LIST_INIT(&srv->srv_rec_item);
Emeric Brunbd78c912021-06-11 10:08:05 +02002305 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002306
Emeric Brun52a91d32017-08-31 14:41:55 +02002307 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002308 srv->last_change = now.tv_sec;
2309
Christopher Faulet38290462020-04-21 11:46:40 +02002310 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002311 srv->check.status = HCHK_STATUS_INI;
2312 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002313 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002314 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002315
Christopher Faulet38290462020-04-21 11:46:40 +02002316 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002317 srv->agent.status = HCHK_STATUS_INI;
2318 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002319 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002320 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002321#if defined(USE_QUIC)
2322 srv->cids = EB_ROOT_UNIQUE;
2323#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002324
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002325 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002326#ifdef USE_OPENSSL
2327 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2328#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002329
Willy Tarreau975b1552019-06-06 16:25:55 +02002330 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002331 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002332 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002333 return srv;
2334}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002335
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002336/* Increment the server refcount. */
2337void srv_take(struct server *srv)
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002338{
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002339 HA_ATOMIC_INC(&srv->refcount);
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002340}
2341
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002342/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2343 * dynamic servers, its refcount is decremented first. The free operations are
2344 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002345 *
2346 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002347 * when calling srv_drop on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002348 */
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002349struct server *srv_drop(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002350{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002351 struct server *next = NULL;
2352
William Lallemand4c395fc2021-08-20 10:10:15 +02002353 if (!srv)
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002354 goto end;
2355
2356 next = srv->next;
William Lallemand4c395fc2021-08-20 10:10:15 +02002357
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002358 /* For dynamic servers, decrement the reference counter. Only free the
2359 * server when reaching zero.
2360 */
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002361 if (likely(!(global.mode & MODE_STOPPING))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002362 if (HA_ATOMIC_SUB_FETCH(&srv->refcount, 1))
2363 goto end;
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002364 }
2365
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002366 task_destroy(srv->warmup);
Christopher Fauletdcac4182021-06-15 16:17:17 +02002367 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002368
2369 free(srv->id);
2370 free(srv->cookie);
2371 free(srv->hostname);
2372 free(srv->hostname_dn);
2373 free((char*)srv->conf.file);
2374 free(srv->per_thr);
2375 free(srv->curr_idle_thr);
2376 free(srv->resolvers_id);
2377 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002378 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002379
2380 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2381 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2382 xprt_get(XPRT_SSL)->destroy_srv(srv);
2383 }
2384 HA_SPIN_DESTROY(&srv->lock);
2385
Willy Tarreau2b718102021-04-21 07:32:39 +02002386 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002387
2388 EXTRA_COUNTERS_FREE(srv->extra_counters);
2389
Tim Duesterhus025b93e2021-11-04 21:03:52 +01002390 ha_free(&srv);
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002391
2392 end:
2393 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002394}
2395
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02002396/* Remove a server <srv> from a tracking list if <srv> is tracking another
2397 * server. No special care is taken if <srv> is tracked itself by another one :
2398 * this situation should be avoided by the caller.
2399 *
2400 * Not thread-safe.
2401 */
2402static void release_server_track(struct server *srv)
2403{
2404 struct server *strack = srv->track;
2405 struct server **base;
2406
2407 if (!strack)
2408 return;
2409
2410 for (base = &strack->trackers; *base; base = &((*base)->tracknext)) {
2411 if (*base == srv) {
2412 *base = srv->tracknext;
2413 return;
2414 }
2415 }
2416
2417 /* srv not found on the tracking list, this should never happen */
2418 BUG_ON(!*base);
2419}
2420
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002421/*
2422 * Parse as much as possible such a range string argument: low[-high]
2423 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2424 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2425 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2426 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002427 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002428static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2429 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002430{
2431 char *nb_high_arg;
2432
2433 *nb_high = 0;
2434 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002435 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002436
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002437 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002438 *nb_high_arg++ = '\0';
2439 *nb_high = atoi(nb_high_arg);
2440 }
2441 else {
2442 *nb_high += *nb_low;
2443 *nb_low = 1;
2444 }
2445
2446 if (*nb_low < 0 || *nb_high < *nb_low)
2447 return -1;
2448
2449 return 0;
2450}
2451
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002452/* Parse as much as possible such a range string argument: low[-high]
2453 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2454 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2455 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002456 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002457 * initialize a new server on startup.
2458 *
2459 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2460 * Returns 0 if succeeded, -1 if not.
2461 */
2462static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2463 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002464{
2465 chunk_printf(&trash, "%s%d", prefix, nb);
2466 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002467 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002468}
2469
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002470/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002471 * Note that a server template is a special server with
2472 * a few different parameters than a server which has
2473 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002474 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002475 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002476 * initialize a new server on startup.
2477 *
Joseph Herlant44466822018-11-15 08:57:51 -08002478 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002479 * 'srv' template included.
2480 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002481static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002482{
2483 int i;
2484 struct server *newsrv;
2485
2486 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 +02002487 newsrv = new_server(px);
2488 if (!newsrv)
2489 goto err;
2490
Christopher Faulet75bef002020-11-02 22:04:55 +01002491 newsrv->conf.file = strdup(srv->conf.file);
2492 newsrv->conf.line = srv->conf.line;
2493
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002494 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002495 srv_prepare_for_resolution(newsrv, srv->hostname);
Willy Tarreau80527bc2021-10-06 14:48:37 +02002496
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002497 if (newsrv->sni_expr) {
2498 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2499 if (!newsrv->ssl_ctx.sni)
2500 goto err;
2501 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002502
Emeric Brun34067662021-06-11 10:48:45 +02002503 /* append to list of servers available to receive an hostname */
Emeric Bruncaef19e2021-06-14 10:02:18 +02002504 if (newsrv->srvrq)
2505 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun34067662021-06-11 10:48:45 +02002506
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002507 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002508 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002509
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002510 /* Linked backwards first. This will be restablished after parsing. */
2511 newsrv->next = px->srv;
2512 px->srv = newsrv;
2513 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002514 _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 +02002515
2516 return i - srv->tmpl_info.nb_low;
2517
2518 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002519 _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 +02002520 if (newsrv) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002521 release_sample_expr(newsrv->ssl_ctx.sni);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002522 free_check(&newsrv->agent);
2523 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002524 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002525 }
2526 free(newsrv);
2527 return i - srv->tmpl_info.nb_low;
2528}
2529
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002530/* Allocate a new server pointed by <srv> and try to parse the first arguments
2531 * in <args> as an address for a server or an address-range for a template or
2532 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2533 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002534 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002535 * initialize a new server on startup.
2536 *
2537 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2538 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2539 * <srv> will be set to NULL.
2540 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002541static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2542 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002543 int parse_flags)
Willy Tarreau272adea2014-03-31 10:39:59 +02002544{
2545 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002546 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002547 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002548 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002549 int tmpl_range_low = 0, tmpl_range_high = 0;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002550 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002551
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002552 *srv = NULL;
2553
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002554 /* There is no mandatory first arguments for default server. */
2555 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2556 if (parse_flags & SRV_PARSE_TEMPLATE) {
2557 if (!*args[3]) {
2558 /* 'server-template' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002559 ha_alert("'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
2560 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002561 err_code |= ERR_ALERT | ERR_FATAL;
2562 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002563 }
2564
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002565 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002566 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002567 else {
2568 if (!*args[2]) {
2569 /* 'server' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002570 ha_alert("'%s' expects <name> and <addr>[:<port>] as arguments.\n",
2571 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002572 err_code |= ERR_ALERT | ERR_FATAL;
2573 goto out;
2574 }
2575
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002576 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002577 }
2578
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002579 if (err) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002580 ha_alert("character '%c' is not permitted in %s %s '%s'.\n",
2581 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002582 err_code |= ERR_ALERT | ERR_FATAL;
2583 goto out;
2584 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002585 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002586
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002587 *cur_arg = 2;
2588 if (parse_flags & SRV_PARSE_TEMPLATE) {
2589 /* Parse server-template <nb | range> arg. */
2590 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002591 ha_alert("Wrong %s number or range arg '%s'.\n",
2592 args[0], args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002593 err_code |= ERR_ALERT | ERR_FATAL;
2594 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002595 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002596 (*cur_arg)++;
2597 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002598
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002599 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2600 struct sockaddr_storage *sk;
2601 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002602
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002603 *srv = newsrv = new_server(curproxy);
2604 if (!newsrv) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002605 ha_alert("out of memory.\n");
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002606 err_code |= ERR_ALERT | ERR_ABORT;
2607 goto out;
2608 }
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002609 register_parsing_obj(&newsrv->obj_type);
Willy Tarreau272adea2014-03-31 10:39:59 +02002610
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002611 if (parse_flags & SRV_PARSE_TEMPLATE) {
2612 newsrv->tmpl_info.nb_low = tmpl_range_low;
2613 newsrv->tmpl_info.nb_high = tmpl_range_high;
2614 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002615
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002616 if (parse_flags & SRV_PARSE_DYNAMIC)
2617 newsrv->flags |= SRV_F_DYNAMIC;
2618
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002619 /* Note: for a server template, its id is its prefix.
2620 * This is a temporary id which will be used for server allocations to come
2621 * after parsing.
2622 */
2623 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2624 newsrv->id = strdup(args[1]);
2625 else
2626 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002627
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002628 /* several ways to check the port component :
2629 * - IP => port=+0, relative (IPv4 only)
2630 * - IP: => port=+0, relative
2631 * - IP:N => port=N, absolute
2632 * - IP:+N => port=+N, relative
2633 * - IP:-N => port=-N, relative
2634 */
2635 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2636 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002637
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002638 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002639 &errmsg, NULL, &fqdn,
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002640 (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);
2641 if (!sk) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002642 ha_alert("%s\n", errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002643 err_code |= ERR_ALERT | ERR_FATAL;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002644 ha_free(&errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002645 goto out;
2646 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002647
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002648 if (!port1 || !port2) {
2649 /* no port specified, +offset, -offset */
2650 newsrv->flags |= SRV_F_MAPPORTS;
2651 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002652
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002653 /* save hostname and create associated name resolution */
2654 if (fqdn) {
2655 if (fqdn[0] == '_') { /* SRV record */
2656 /* Check if a SRV request already exists, and if not, create it */
2657 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2658 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2659 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002660 err_code |= ERR_ALERT | ERR_FATAL;
2661 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002662 }
Christopher Faulet81ba74a2021-06-29 20:52:35 +02002663 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002664 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002665 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002666 ha_alert("Can't create DNS resolution for server '%s'\n",
2667 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002668 err_code |= ERR_ALERT | ERR_FATAL;
2669 goto out;
2670 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002671 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002672
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002673 newsrv->addr = *sk;
2674 newsrv->svc_port = port;
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02002675 /*
2676 * we don't need to lock the server here, because
2677 * we are in the process of initializing.
2678 *
2679 * Note that the server is not attached into the proxy tree if
2680 * this is a dynamic server.
2681 */
2682 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002683
Willy Tarreau14e7f292021-10-27 17:41:07 +02002684 if (!newsrv->srvrq && !newsrv->hostname &&
2685 !protocol_lookup(newsrv->addr.ss_family, PROTO_TYPE_STREAM, 0)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002686 ha_alert("Unknown protocol family %d '%s'\n",
2687 newsrv->addr.ss_family, args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002688 err_code |= ERR_ALERT | ERR_FATAL;
2689 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002690 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002691
2692 (*cur_arg)++;
2693 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002694 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2695 /* Copy default server settings to new server */
2696 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2697 } else {
2698 /* Initialize dynamic server weight to 1 */
2699 newsrv->uweight = newsrv->iweight = 1;
2700
2701 /* A dynamic server is disabled on startup */
2702 newsrv->next_admin = SRV_ADMF_FMAINT;
2703 newsrv->next_state = SRV_ST_STOPPED;
2704 server_recalc_eweight(newsrv, 0);
Amaury Denoyellefca18172021-07-22 16:03:36 +02002705
2706 /* Set default values for checks */
2707 newsrv->check.inter = DEF_CHKINTR;
2708 newsrv->check.rise = DEF_RISETIME;
2709 newsrv->check.fall = DEF_FALLTIME;
2710
2711 newsrv->agent.inter = DEF_CHKINTR;
2712 newsrv->agent.rise = DEF_AGENT_RISETIME;
2713 newsrv->agent.fall = DEF_AGENT_FALLTIME;
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002714 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002715 HA_SPIN_INIT(&newsrv->lock);
2716 }
2717 else {
2718 *srv = newsrv = &curproxy->defsrv;
2719 *cur_arg = 1;
2720 newsrv->resolv_opts.family_prio = AF_INET6;
2721 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002722 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002723
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002724 free(fqdn);
2725 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002726
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002727out:
2728 free(fqdn);
2729 return err_code;
2730}
Willy Tarreau272adea2014-03-31 10:39:59 +02002731
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002732/* Parse the server keyword in <args>.
2733 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2734 * might not be the case if an error is reported.
2735 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002736 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002737 * initialize a new server on startup.
2738 *
2739 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2740 * interrupted.
2741 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002742static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2743 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002744 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002745{
2746 int err_code = 0;
2747 struct srv_kw *kw;
2748 const char *best;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002749 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002750
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002751 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002752 if (!kw) {
2753 best = srv_find_best_kw(args[*cur_arg]);
2754 if (best)
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002755 ha_alert("unknown keyword '%s'; did you mean '%s' maybe ?\n",
2756 args[*cur_arg], best);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002757 else
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002758 ha_alert("unknown keyword '%s'.\n", args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002759
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002760 return ERR_ALERT | ERR_FATAL;
2761 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002762
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002763 if (!kw->parse) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002764 ha_alert("'%s' option is not implemented in this version (check build options)\n",
2765 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002766 err_code = ERR_ALERT | ERR_FATAL;
2767 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002768 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002769
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002770 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002771 ha_alert("'%s' option is not accepted in default-server sections\n",
2772 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002773 err_code = ERR_ALERT;
2774 goto out;
2775 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002776 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002777 ha_alert("'%s' option is not accepted for dynamic server\n",
2778 args[*cur_arg]);
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002779 err_code |= ERR_ALERT;
2780 goto out;
2781 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002782
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002783 err_code = kw->parse(args, cur_arg, curproxy, srv, &errmsg);
2784 if (err_code) {
2785 display_parser_err(NULL, 0, args, *cur_arg, err_code, &errmsg);
2786 free(errmsg);
2787 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002788
2789out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002790 if (kw->skip != -1)
2791 *cur_arg += 1 + kw->skip;
2792
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002793 return err_code;
2794}
2795
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002796/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002797 * initialize a new server on startup.
2798 */
2799static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2800 struct server *srv, struct proxy *proxy,
2801 char **errmsg)
2802{
2803 int ret;
2804
2805 if (!srv->sni_expr)
2806 return 0;
2807
2808 ret = server_parse_sni_expr(srv, proxy, errmsg);
2809 if (!ret)
2810 return 0;
2811
2812 return ret;
2813}
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002814
2815/* Server initializations finalization.
2816 * Initialize health check, agent check and SNI expression if enabled.
2817 * Must not be called for a default server instance.
2818 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002819 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002820 * initialize a new server on startup.
2821 */
2822static int _srv_parse_finalize(char **args, int cur_arg,
2823 struct server *srv, struct proxy *px,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002824 int parse_flags)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002825{
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002826 int ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002827 char *errmsg = NULL;
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002828
2829 if (srv->do_check && srv->trackit) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002830 ha_alert("unable to enable checks and tracking at the same time!\n");
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002831 return ERR_ALERT | ERR_FATAL;
2832 }
2833
2834 if (srv->do_agent && !srv->agent.port) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002835 ha_alert("server %s does not have agent port. Agent check has been disabled.\n",
2836 srv->id);
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002837 return ERR_ALERT | ERR_FATAL;
2838 }
2839
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002840 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, &errmsg)) != 0) {
2841 if (errmsg) {
2842 ha_alert("%s\n", errmsg);
2843 free(errmsg);
2844 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002845 return ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002846 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002847
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002848 /* A dynamic server is disabled on startup. It must not be counted as
2849 * an active backend entry.
2850 */
2851 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2852 if (srv->flags & SRV_F_BACKUP)
2853 px->srv_bck++;
2854 else
2855 px->srv_act++;
2856 }
2857
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002858 srv_lb_commit_status(srv);
2859
2860 return 0;
2861}
2862
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002863int parse_server(const char *file, int linenum, char **args,
2864 struct proxy *curproxy, const struct proxy *defproxy,
2865 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002866{
2867 struct server *newsrv = NULL;
2868 int err_code = 0;
2869
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002870 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002871
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002872 set_usermsgs_ctx(file, linenum, NULL);
2873
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002874 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002875 ha_alert("'%s' not allowed in 'defaults' section.\n", args[0]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002876 err_code |= ERR_ALERT | ERR_FATAL;
2877 goto out;
2878 }
2879 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2880 err_code |= ERR_ALERT | ERR_FATAL;
2881 goto out;
2882 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002883
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002884 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2885 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2886 if (!*args[2])
2887 return 0;
2888 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002889
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002890 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002891 parse_flags);
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002892
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002893 /* the servers are linked backwards first */
2894 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2895 newsrv->next = curproxy->srv;
2896 curproxy->srv = newsrv;
2897 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002898
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002899 if (err_code & ERR_CODE)
2900 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002901
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002902 newsrv->conf.file = strdup(file);
2903 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002904
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002905 while (*args[cur_arg]) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002906 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002907 parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002908 if (err_code & ERR_FATAL)
2909 goto out;
2910 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002911
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002912 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002913 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002914 if (err_code & ERR_FATAL)
2915 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002916 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002917
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002918 if (parse_flags & SRV_PARSE_TEMPLATE)
2919 _srv_parse_tmpl_init(newsrv, curproxy);
2920
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02002921 /* If the server id is fixed, insert it in the proxy used_id tree.
2922 * This is needed to detect a later duplicate id via srv_parse_id.
2923 *
2924 * If no is specified, a dynamic one is generated in
2925 * check_config_validity.
2926 */
2927 if (newsrv->flags & SRV_F_FORCED_ID)
2928 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2929
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002930 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002931 "configured with weight of 0 will never be selected by load balancing algorithms\n");
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002932
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002933 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002934 return 0;
2935
2936 out:
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002937 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002938 return err_code;
2939}
2940
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002941/* Returns a pointer to the first server matching either id <id>.
2942 * NULL is returned if no match is found.
2943 * the lookup is performed in the backend <bk>
2944 */
2945struct server *server_find_by_id(struct proxy *bk, int id)
2946{
2947 struct eb32_node *eb32;
2948 struct server *curserver;
2949
2950 if (!bk || (id ==0))
2951 return NULL;
2952
2953 /* <bk> has no backend capabilities, so it can't have a server */
2954 if (!(bk->cap & PR_CAP_BE))
2955 return NULL;
2956
2957 curserver = NULL;
2958
2959 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2960 if (eb32)
2961 curserver = container_of(eb32, struct server, conf.id);
2962
2963 return curserver;
2964}
2965
2966/* Returns a pointer to the first server matching either name <name>, or id
2967 * if <name> starts with a '#'. NULL is returned if no match is found.
2968 * the lookup is performed in the backend <bk>
2969 */
2970struct server *server_find_by_name(struct proxy *bk, const char *name)
2971{
2972 struct server *curserver;
2973
2974 if (!bk || !name)
2975 return NULL;
2976
2977 /* <bk> has no backend capabilities, so it can't have a server */
2978 if (!(bk->cap & PR_CAP_BE))
2979 return NULL;
2980
2981 curserver = NULL;
2982 if (*name == '#') {
2983 curserver = server_find_by_id(bk, atoi(name + 1));
2984 if (curserver)
2985 return curserver;
2986 }
2987 else {
2988 curserver = bk->srv;
2989
2990 while (curserver && (strcmp(curserver->id, name) != 0))
2991 curserver = curserver->next;
2992
2993 if (curserver)
2994 return curserver;
2995 }
2996
2997 return NULL;
2998}
2999
3000struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
3001{
3002 struct server *byname;
3003 struct server *byid;
3004
3005 if (!name && !id)
3006 return NULL;
3007
3008 if (diff)
3009 *diff = 0;
3010
3011 byname = byid = NULL;
3012
3013 if (name) {
3014 byname = server_find_by_name(bk, name);
3015 if (byname && (!id || byname->puid == id))
3016 return byname;
3017 }
3018
3019 /* remaining possibilities :
3020 * - name not set
3021 * - name set but not found
3022 * - name found but ID doesn't match
3023 */
3024 if (id) {
3025 byid = server_find_by_id(bk, id);
3026 if (byid) {
3027 if (byname) {
3028 /* use id only if forced by configuration */
3029 if (byid->flags & SRV_F_FORCED_ID) {
3030 if (diff)
3031 *diff |= 2;
3032 return byid;
3033 }
3034 else {
3035 if (diff)
3036 *diff |= 1;
3037 return byname;
3038 }
3039 }
3040
3041 /* remaining possibilities:
3042 * - name not set
3043 * - name set but not found
3044 */
3045 if (name && diff)
3046 *diff |= 2;
3047 return byid;
3048 }
3049
3050 /* id bot found */
3051 if (byname) {
3052 if (diff)
3053 *diff |= 1;
3054 return byname;
3055 }
3056 }
3057
3058 return NULL;
3059}
3060
Simon Horman7d09b9a2013-02-12 10:45:51 +09003061/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003062 * update a server's current IP address.
3063 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3064 * ip is in network format.
3065 * updater is a string which contains an information about the requester of the update.
3066 * updater is used if not NULL.
3067 *
3068 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003069 *
3070 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003071 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003072int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003073{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003074 /* save the new IP family & address if necessary */
3075 switch (ip_sin_family) {
3076 case AF_INET:
3077 if (s->addr.ss_family == ip_sin_family &&
3078 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3079 return 0;
3080 break;
3081 case AF_INET6:
3082 if (s->addr.ss_family == ip_sin_family &&
3083 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3084 return 0;
3085 break;
3086 };
3087
Baptiste Assmann14e40142015-04-14 01:13:07 +02003088 /* generates a log line and a warning on stderr */
3089 if (1) {
3090 /* book enough space for both IPv4 and IPv6 */
3091 char oldip[INET6_ADDRSTRLEN];
3092 char newip[INET6_ADDRSTRLEN];
3093
3094 memset(oldip, '\0', INET6_ADDRSTRLEN);
3095 memset(newip, '\0', INET6_ADDRSTRLEN);
3096
3097 /* copy old IP address in a string */
3098 switch (s->addr.ss_family) {
3099 case AF_INET:
3100 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3101 break;
3102 case AF_INET6:
3103 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3104 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003105 default:
3106 strcpy(oldip, "(none)");
3107 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003108 };
3109
3110 /* copy new IP address in a string */
3111 switch (ip_sin_family) {
3112 case AF_INET:
3113 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3114 break;
3115 case AF_INET6:
3116 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3117 break;
3118 };
3119
3120 /* save log line into a buffer */
3121 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3122 s->proxy->id, s->id, oldip, newip, updater);
3123
3124 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003125 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003126
3127 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003128 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003129 }
3130
3131 /* save the new IP family */
3132 s->addr.ss_family = ip_sin_family;
3133 /* save the new IP address */
3134 switch (ip_sin_family) {
3135 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003136 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003137 break;
3138 case AF_INET6:
3139 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3140 break;
3141 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003142 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003143 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003144
3145 return 0;
3146}
3147
William Dauchy7cabc062021-02-11 22:51:24 +01003148/* update agent health check address and port
3149 * addr can be ip4/ip6 or a hostname
3150 * if one error occurs, don't apply anything
3151 * must be called with the server lock held.
3152 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003153const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003154{
3155 struct sockaddr_storage sk;
3156 struct buffer *msg;
3157 int new_port;
3158
3159 msg = get_trash_chunk();
3160 chunk_reset(msg);
3161
3162 if (!(s->agent.state & CHK_ST_ENABLED)) {
3163 chunk_strcat(msg, "agent checks are not enabled on this server");
3164 goto out;
3165 }
3166 if (addr) {
3167 memset(&sk, 0, sizeof(struct sockaddr_storage));
3168 if (str2ip(addr, &sk) == NULL) {
3169 chunk_appendf(msg, "invalid addr '%s'", addr);
3170 goto out;
3171 }
3172 }
3173 if (port) {
3174 if (strl2irc(port, strlen(port), &new_port) != 0) {
3175 chunk_appendf(msg, "provided port is not an integer");
3176 goto out;
3177 }
3178 if (new_port < 0 || new_port > 65535) {
3179 chunk_appendf(msg, "provided port is invalid");
3180 goto out;
3181 }
3182 }
3183out:
3184 if (msg->data)
3185 return msg->area;
3186 else {
3187 if (addr)
3188 set_srv_agent_addr(s, &sk);
3189 if (port)
3190 set_srv_agent_port(s, new_port);
3191 }
3192 return NULL;
3193}
3194
William Dauchyb456e1f2021-02-11 22:51:23 +01003195/* update server health check address and port
3196 * addr must be ip4 or ip6, it won't be resolved
3197 * if one error occurs, don't apply anything
3198 * must be called with the server lock held.
3199 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003200const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003201{
3202 struct sockaddr_storage sk;
3203 struct buffer *msg;
3204 int new_port;
3205
3206 msg = get_trash_chunk();
3207 chunk_reset(msg);
3208
3209 if (!(s->check.state & CHK_ST_ENABLED)) {
3210 chunk_strcat(msg, "health checks are not enabled on this server");
3211 goto out;
3212 }
3213 if (addr) {
3214 memset(&sk, 0, sizeof(struct sockaddr_storage));
3215 if (str2ip2(addr, &sk, 0) == NULL) {
3216 chunk_appendf(msg, "invalid addr '%s'", addr);
3217 goto out;
3218 }
3219 }
3220 if (port) {
3221 if (strl2irc(port, strlen(port), &new_port) != 0) {
3222 chunk_appendf(msg, "provided port is not an integer");
3223 goto out;
3224 }
3225 if (new_port < 0 || new_port > 65535) {
3226 chunk_appendf(msg, "provided port is invalid");
3227 goto out;
3228 }
3229 /* prevent the update of port to 0 if MAPPORTS are in use */
3230 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3231 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3232 goto out;
3233 }
3234 }
3235out:
3236 if (msg->data)
3237 return msg->area;
3238 else {
3239 if (addr)
3240 s->check.addr = sk;
3241 if (port)
3242 s->check.port = new_port;
3243 }
3244 return NULL;
3245}
3246
Baptiste Assmann14e40142015-04-14 01:13:07 +02003247/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003248 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3249 *
3250 * Caller can pass its name through <updater> to get it integrated in the response message
3251 * returned by the function.
3252 *
3253 * The function first does the following, in that order:
3254 * - validates the new addr and/or port
3255 * - checks if an update is required (new IP or port is different than current ones)
3256 * - checks the update is allowed:
3257 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3258 * - allow all changes if no CHECKS are configured
3259 * - if CHECK is configured:
3260 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3261 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3262 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003263 *
3264 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003265 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003266const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003267{
3268 struct sockaddr_storage sa;
3269 int ret, port_change_required;
3270 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003271 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003272 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003273 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003274
3275 msg = get_trash_chunk();
3276 chunk_reset(msg);
3277
3278 if (addr) {
3279 memset(&sa, 0, sizeof(struct sockaddr_storage));
3280 if (str2ip2(addr, &sa, 0) == NULL) {
3281 chunk_printf(msg, "Invalid addr '%s'", addr);
3282 goto out;
3283 }
3284
3285 /* changes are allowed on AF_INET* families only */
3286 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3287 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3288 goto out;
3289 }
3290
3291 /* collecting data currently setup */
3292 memset(current_addr, '\0', sizeof(current_addr));
3293 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3294 /* changes are allowed on AF_INET* families only */
3295 if ((ret != AF_INET) && (ret != AF_INET6)) {
3296 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3297 goto out;
3298 }
3299
3300 /* applying ADDR changes if required and allowed
3301 * ipcmp returns 0 when both ADDR are the same
3302 */
3303 if (ipcmp(&s->addr, &sa) == 0) {
3304 chunk_appendf(msg, "no need to change the addr");
3305 goto port;
3306 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003307 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003308 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003309
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003310 /* update report for caller */
3311 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3312 }
3313
3314 port:
3315 if (port) {
3316 char sign = '\0';
3317 char *endptr;
3318
3319 if (addr)
3320 chunk_appendf(msg, ", ");
3321
3322 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003323 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003324
3325 /* check if PORT change is required */
3326 port_change_required = 0;
3327
3328 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003329 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003330 new_port = strtol(port, &endptr, 10);
3331 if ((errno != 0) || (port == endptr)) {
3332 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3333 goto out;
3334 }
3335
3336 /* check if caller triggers a port mapped or offset */
3337 if (sign == '-' || (sign == '+')) {
3338 /* check if server currently uses port map */
3339 if (!(s->flags & SRV_F_MAPPORTS)) {
3340 /* switch from fixed port to port map mandatorily triggers
3341 * a port change */
3342 port_change_required = 1;
3343 /* check is configured
3344 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3345 * prevent PORT change if check doesn't have it's dedicated port while switching
3346 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003347 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003348 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.");
3349 goto out;
3350 }
3351 }
3352 /* we're already using port maps */
3353 else {
3354 port_change_required = current_port != new_port;
3355 }
3356 }
3357 /* fixed port */
3358 else {
3359 port_change_required = current_port != new_port;
3360 }
3361
3362 /* applying PORT changes if required and update response message */
3363 if (port_change_required) {
3364 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003365 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003366 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003367
3368 /* prepare message */
3369 chunk_appendf(msg, "port changed from '");
3370 if (s->flags & SRV_F_MAPPORTS)
3371 chunk_appendf(msg, "+");
3372 chunk_appendf(msg, "%d' to '", current_port);
3373
3374 if (sign == '-') {
3375 s->flags |= SRV_F_MAPPORTS;
3376 chunk_appendf(msg, "%c", sign);
3377 /* just use for result output */
3378 new_port = -new_port;
3379 }
3380 else if (sign == '+') {
3381 s->flags |= SRV_F_MAPPORTS;
3382 chunk_appendf(msg, "%c", sign);
3383 }
3384 else {
3385 s->flags &= ~SRV_F_MAPPORTS;
3386 }
3387
3388 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003389 }
3390 else {
3391 chunk_appendf(msg, "no need to change the port");
3392 }
3393 }
3394
3395out:
William Dauchy6318d332020-05-02 21:52:36 +02003396 if (changed) {
3397 /* force connection cleanup on the given server */
3398 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003399 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003400 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003401 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003402 if (updater)
3403 chunk_appendf(msg, " by '%s'", updater);
3404 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003405 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003406}
3407
Christopher Faulet5efdef22021-03-11 18:03:21 +01003408/*
3409 * update server status based on result of SRV resolution
3410 * returns:
3411 * 0 if server status is updated
3412 * 1 if server status has not changed
3413 *
3414 * Must be called with the server lock held.
3415 */
3416int srvrq_update_srv_status(struct server *s, int has_no_ip)
3417{
3418 if (!s->srvrq)
3419 return 1;
3420
3421 /* since this server has an IP, it can go back in production */
3422 if (has_no_ip == 0) {
3423 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3424 return 1;
3425 }
3426
3427 if (s->next_admin & SRV_ADMF_RMAINT)
3428 return 1;
3429
3430 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3431 return 0;
3432}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003433
3434/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003435 * update server status based on result of name resolution
3436 * returns:
3437 * 0 if server status is updated
3438 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003439 *
3440 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003441 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003442int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003443{
Emeric Brun750fe792020-12-23 16:51:12 +01003444 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003445 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003446 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003447
Jerome Magnin012261a2020-07-28 13:38:22 +02003448 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003449 if (resolution == NULL)
3450 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003451
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003452 switch (resolution->status) {
3453 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003454 /* status when HAProxy has just (re)started.
3455 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003456 break;
3457
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003458 case RSLV_STATUS_VALID:
3459 /*
3460 * resume health checks
3461 * server will be turned back on if health check is safe
3462 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003463 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003464 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003465 return 1;
3466 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3467 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003468 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003469 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003470
Emeric Brun52a91d32017-08-31 14:41:55 +02003471 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003472 return 1;
3473 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3474 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3475 s->proxy->id, s->id);
3476
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003477 ha_warning("%s.\n", trash.area);
3478 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003479 return 0;
3480
3481 case RSLV_STATUS_NX:
3482 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003483 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3484 if (!tick_is_expired(exp, now_ms))
3485 break;
3486
3487 if (s->next_admin & SRV_ADMF_RMAINT)
3488 return 1;
3489 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3490 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003491
3492 case RSLV_STATUS_TIMEOUT:
3493 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003494 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3495 if (!tick_is_expired(exp, now_ms))
3496 break;
3497
3498 if (s->next_admin & SRV_ADMF_RMAINT)
3499 return 1;
3500 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3501 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003502
3503 case RSLV_STATUS_REFUSED:
3504 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003505 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3506 if (!tick_is_expired(exp, now_ms))
3507 break;
3508
3509 if (s->next_admin & SRV_ADMF_RMAINT)
3510 return 1;
3511 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3512 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003513
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003514 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003515 /* stop server if resolution failed for a long enough period */
3516 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3517 if (!tick_is_expired(exp, now_ms))
3518 break;
3519
3520 if (s->next_admin & SRV_ADMF_RMAINT)
3521 return 1;
3522 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3523 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003524 }
3525
3526 return 1;
3527}
3528
3529/*
3530 * Server Name Resolution valid response callback
3531 * It expects:
3532 * - <nameserver>: the name server which answered the valid response
3533 * - <response>: buffer containing a valid DNS response
3534 * - <response_len>: size of <response>
3535 * It performs the following actions:
3536 * - ignore response if current ip found and server family not met
3537 * - update with first new ip found if family is met and current IP is not found
3538 * returns:
3539 * 0 on error
3540 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003541 *
3542 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003543 */
Emeric Brun08622d32020-12-23 17:41:43 +01003544int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003545{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003546 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003547 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003548 void *serverip, *firstip;
3549 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003550 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003551 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003552 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003553
Christopher Faulet67957bd2017-09-27 11:00:59 +02003554 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003555 if (!s)
3556 return 1;
3557
Christopher Faulet49531e82021-03-10 15:07:27 +01003558 if (s->srvrq) {
Emeric Brun34067662021-06-11 10:48:45 +02003559 /* If DNS resolution is disabled ignore it.
3560 * This is the case if the server was associated to
3561 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003562 */
Emeric Brun34067662021-06-11 10:48:45 +02003563 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003564 return 1;
3565 }
3566
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003567 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003568 if (!resolution)
3569 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003570
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003571 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003572 firstip = NULL; /* pointer to the first valid response found */
3573 /* it will be used as the new IP if a change is required */
3574 firstip_sin_family = AF_UNSPEC;
3575 serverip = NULL; /* current server IP address */
3576
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003577 /* initializing server IP pointer */
3578 server_sin_family = s->addr.ss_family;
3579 switch (server_sin_family) {
3580 case AF_INET:
3581 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3582 break;
3583
3584 case AF_INET6:
3585 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3586 break;
3587
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003588 case AF_UNSPEC:
3589 break;
3590
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003591 default:
3592 goto invalid;
3593 }
3594
Emeric Brund30e9a12020-12-23 18:49:16 +01003595 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3596 serverip, server_sin_family, &firstip,
3597 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003598
3599 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003600 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003601 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003602
Emeric Brun456de772020-12-23 18:17:31 +01003603 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003604 goto save_ip;
3605
Emeric Brun456de772020-12-23 18:17:31 +01003606 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003607 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003608 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003609
Emeric Brun456de772020-12-23 18:17:31 +01003610 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003611 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003612 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet07ecff52021-06-24 15:33:52 +02003613 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003614 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003615
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003616 default:
Christopher Faulet07ecff52021-06-24 15:33:52 +02003617 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003618 goto invalid;
3619
3620 }
3621
3622 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003623 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003624 counters->app.resolver.update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003625 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003626 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003627 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003628 else
3629 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003630 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003631
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003632 update_status:
Christopher Fauleta8ce4972021-06-24 15:26:03 +02003633 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3634 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003635 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003636
3637 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003638 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003639 counters->app.resolver.invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003640 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003641 }
Christopher Faulet07ecff52021-06-24 15:33:52 +02003642 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3643 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003644 return 0;
3645}
3646
3647/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003648 * SRV record error management callback
3649 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003650 * 0 if we can trash answser items.
3651 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003652 *
3653 * Grabs the server's lock.
3654 */
3655int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3656{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003657 struct resolv_srvrq *srvrq;
3658 struct resolv_resolution *res;
3659 struct resolvers *resolvers;
3660 int exp;
3661
3662 /* SRV records */
3663 srvrq = objt_resolv_srvrq(requester->owner);
3664 if (!srvrq)
Emeric Brun12ca6582021-06-10 15:25:25 +02003665 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003666
3667 resolvers = srvrq->resolvers;
3668 res = requester->resolution;
3669
3670 switch (res->status) {
3671
3672 case RSLV_STATUS_NX:
3673 /* stop server if resolution is NX for a long enough period */
3674 exp = tick_add(res->last_valid, resolvers->hold.nx);
3675 if (!tick_is_expired(exp, now_ms))
3676 return 1;
3677 break;
3678
3679 case RSLV_STATUS_TIMEOUT:
3680 /* stop server if resolution is TIMEOUT for a long enough period */
3681 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3682 if (!tick_is_expired(exp, now_ms))
3683 return 1;
3684 break;
3685
3686 case RSLV_STATUS_REFUSED:
3687 /* stop server if resolution is REFUSED for a long enough period */
3688 exp = tick_add(res->last_valid, resolvers->hold.refused);
3689 if (!tick_is_expired(exp, now_ms))
3690 return 1;
3691 break;
3692
3693 default:
3694 /* stop server if resolution failed for a long enough period */
3695 exp = tick_add(res->last_valid, resolvers->hold.other);
3696 if (!tick_is_expired(exp, now_ms))
3697 return 1;
3698 }
3699
Emeric Brun34067662021-06-11 10:48:45 +02003700 /* Remove any associated server ref */
Willy Tarreau6878f802021-10-20 14:07:31 +02003701 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003702
Emeric Brun12ca6582021-06-10 15:25:25 +02003703 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003704}
3705
3706/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003707 * Server Name Resolution error management callback
3708 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003709 * 0 if we can trash answser items.
3710 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003711 *
3712 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003713 */
Emeric Brun08622d32020-12-23 17:41:43 +01003714int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003715{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003716 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003717
Christopher Faulet67957bd2017-09-27 11:00:59 +02003718 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003719 if (!s)
Emeric Brun12ca6582021-06-10 15:25:25 +02003720 return 0;
3721
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003722 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003723 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003724 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun12ca6582021-06-10 15:25:25 +02003725 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau6878f802021-10-20 14:07:31 +02003726 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun12ca6582021-06-10 15:25:25 +02003727 return 0;
3728 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003729 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003730
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003731 return 1;
3732}
3733
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003734/*
3735 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003736 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003737 * It returns a pointer to the first server found or NULL if <ip> is not yet
3738 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003739 *
3740 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003741 */
3742struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3743{
3744 struct server *tmpsrv;
3745 struct proxy *be;
3746
3747 if (!srv)
3748 return NULL;
3749
3750 be = srv->proxy;
3751 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003752 /* we found the current server is the same, ignore it */
3753 if (srv == tmpsrv)
3754 continue;
3755
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003756 /* We want to compare the IP in the record with the IP of the servers in the
3757 * same backend, only if:
3758 * * DNS resolution is enabled on the server
3759 * * the hostname used for the resolution by our server is the same than the
3760 * one used for the server found in the backend
3761 * * the server found in the backend is not our current server
3762 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003763 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003764 if ((tmpsrv->hostname_dn == NULL) ||
3765 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003766 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003767 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003768 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003769 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003770 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003771
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003772 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003773 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003774 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003775 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003776 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003777
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003778 /* At this point, we have 2 different servers using the same DNS hostname
3779 * for their respective resolution.
3780 */
3781 if (*ip_family == tmpsrv->addr.ss_family &&
3782 ((tmpsrv->addr.ss_family == AF_INET &&
3783 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3784 (tmpsrv->addr.ss_family == AF_INET6 &&
3785 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003786 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003787 return tmpsrv;
3788 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003789 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003790 }
3791
Emeric Brune9fd6b52017-11-02 17:20:39 +01003792
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003793 return NULL;
3794}
3795
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003796/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3797 * resolver. This is suited for initial address configuration. Returns 0 on
3798 * success otherwise a non-zero error code. In case of error, *err_code, if
3799 * not NULL, is filled up.
3800 */
3801int srv_set_addr_via_libc(struct server *srv, int *err_code)
3802{
3803 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003804 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003805 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003806 return 1;
3807 }
3808 return 0;
3809}
3810
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003811/* Set the server's FDQN (->hostname) from <hostname>.
3812 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003813 *
3814 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003815 */
Emeric Brun08622d32020-12-23 17:41:43 +01003816int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003817{
Emeric Brun08622d32020-12-23 17:41:43 +01003818 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003819 char *hostname_dn;
3820 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003821
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003822 /* Note that the server lock is already held. */
3823 if (!srv->resolvers)
3824 return -1;
3825
Emeric Brun08622d32020-12-23 17:41:43 +01003826 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003827 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003828 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003829 * and we can't enable it at run time for now.
3830 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003831 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003832 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003833
3834 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003835 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003836 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02003837 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003838 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003839 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003840 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003841
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003842 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003843 if (resolution &&
3844 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003845 resolution->hostname_dn_len == hostname_dn_len &&
3846 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003847 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003848
Willy Tarreau6878f802021-10-20 14:07:31 +02003849 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003850
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003851 free(srv->hostname);
3852 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003853 srv->hostname = strdup(hostname);
3854 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003855 srv->hostname_dn_len = hostname_dn_len;
3856 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003857 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003858
Baptiste Assmann13a92322019-06-07 09:40:55 +02003859 if (srv->flags & SRV_F_NO_RESOLUTION)
3860 goto end;
3861
Emeric Brund30e9a12020-12-23 18:49:16 +01003862 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003863 goto err;
3864
3865 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003866 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003867 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003868 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003869
3870 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003871 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003872 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003873 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003874}
3875
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003876/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3877 * from the state file. This is suited for initial address configuration.
3878 * Returns 0 on success otherwise a non-zero error code. In case of error,
3879 * *err_code, if not NULL, is filled up.
3880 */
3881static int srv_apply_lastaddr(struct server *srv, int *err_code)
3882{
3883 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3884 if (err_code)
3885 *err_code |= ERR_WARN;
3886 return 1;
3887 }
3888 return 0;
3889}
3890
Willy Tarreau25e51522016-11-04 15:10:17 +01003891/* returns 0 if no error, otherwise a combination of ERR_* flags */
3892static int srv_iterate_initaddr(struct server *srv)
3893{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003894 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003895 int return_code = 0;
3896 int err_code;
3897 unsigned int methods;
3898
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003899 /* If no addr and no hostname set, get the name from the DNS SRV request */
3900 if (!name && srv->srvrq)
3901 name = srv->srvrq->name;
3902
Willy Tarreau25e51522016-11-04 15:10:17 +01003903 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003904 if (!methods) {
3905 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003906 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3907 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003908 if (srv->resolvers_id) {
3909 /* dns resolution is configured, add "none" to not fail on startup */
3910 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3911 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003912 }
3913
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003914 /* "-dr" : always append "none" so that server addresses resolution
3915 * failures are silently ignored, this is convenient to validate some
3916 * configs out of their environment.
3917 */
3918 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3919 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3920
Willy Tarreau25e51522016-11-04 15:10:17 +01003921 while (methods) {
3922 err_code = 0;
3923 switch (srv_get_next_initaddr(&methods)) {
3924 case SRV_IADDR_LAST:
3925 if (!srv->lastaddr)
3926 continue;
3927 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003928 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003929 return_code |= err_code;
3930 break;
3931
3932 case SRV_IADDR_LIBC:
3933 if (!srv->hostname)
3934 continue;
3935 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003936 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003937 return_code |= err_code;
3938 break;
3939
Willy Tarreau37ebe122016-11-04 15:17:58 +01003940 case SRV_IADDR_NONE:
3941 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003942 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003943 ha_warning("could not resolve address '%s', disabling server.\n",
3944 name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003945 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003946 return return_code;
3947
Willy Tarreau4310d362016-11-02 15:05:56 +01003948 case SRV_IADDR_IP:
3949 ipcpy(&srv->init_addr, &srv->addr);
3950 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003951 ha_warning("could not resolve address '%s', falling back to configured address.\n",
3952 name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003953 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003954 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003955
Willy Tarreau25e51522016-11-04 15:10:17 +01003956 default: /* unhandled method */
3957 break;
3958 }
3959 }
3960
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003961 if (!return_code)
3962 ha_alert("no method found to resolve address '%s'.\n", name);
3963 else
3964 ha_alert("could not resolve address '%s'.\n", name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003965
3966 return_code |= ERR_ALERT | ERR_FATAL;
3967 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003968out:
3969 srv_set_dyncookie(srv);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003970 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003971 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003972}
3973
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003974/*
3975 * This function parses all backends and all servers within each backend
3976 * and performs servers' addr resolution based on information provided by:
3977 * - configuration file
3978 * - server-state file (states provided by an 'old' haproxy process)
3979 *
3980 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3981 */
3982int srv_init_addr(void)
3983{
3984 struct proxy *curproxy;
3985 int return_code = 0;
3986
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003987 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003988 while (curproxy) {
3989 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003990
3991 /* servers are in backend only */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003992 if (!(curproxy->cap & PR_CAP_BE) || (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003993 goto srv_init_addr_next;
3994
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003995 for (srv = curproxy->srv; srv; srv = srv->next) {
3996 set_usermsgs_ctx(srv->conf.file, srv->conf.line, &srv->obj_type);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003997 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003998 return_code |= srv_iterate_initaddr(srv);
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003999 reset_usermsgs_ctx();
4000 }
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004001
4002 srv_init_addr_next:
4003 curproxy = curproxy->next;
4004 }
4005
4006 return return_code;
4007}
4008
Willy Tarreau46b7f532018-08-21 11:54:26 +02004009/*
4010 * Must be called with the server lock held.
4011 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01004012const 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 +02004013{
4014
Willy Tarreau83061a82018-07-13 11:56:34 +02004015 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004016
4017 msg = get_trash_chunk();
4018 chunk_reset(msg);
4019
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004020 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004021 chunk_appendf(msg, "no need to change the FDQN");
4022 goto out;
4023 }
4024
4025 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4026 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4027 goto out;
4028 }
4029
4030 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4031 server->proxy->id, server->id, server->hostname, fqdn);
4032
Emeric Brun08622d32020-12-23 17:41:43 +01004033 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004034 chunk_reset(msg);
4035 chunk_appendf(msg, "could not update %s/%s FQDN",
4036 server->proxy->id, server->id);
4037 goto out;
4038 }
4039
4040 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004041 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004042
4043 out:
4044 if (updater)
4045 chunk_appendf(msg, " by '%s'", updater);
4046 chunk_appendf(msg, "\n");
4047
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004048 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004049}
4050
4051
Willy Tarreau21b069d2016-11-23 17:15:08 +01004052/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4053 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004054 * 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 +01004055 * used for CLI commands requiring a server name.
4056 * Important: the <arg> is modified to remove the '/'.
4057 */
4058struct server *cli_find_server(struct appctx *appctx, char *arg)
4059{
4060 struct proxy *px;
4061 struct server *sv;
4062 char *line;
4063
4064 /* split "backend/server" and make <line> point to server */
4065 for (line = arg; *line; line++)
4066 if (*line == '/') {
4067 *line++ = '\0';
4068 break;
4069 }
4070
4071 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004072 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004073 return NULL;
4074 }
4075
4076 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004077 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004078 return NULL;
4079 }
4080
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004081 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004082 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004083 return NULL;
4084 }
4085
4086 return sv;
4087}
4088
William Lallemand222baf22016-11-19 02:00:33 +01004089
Willy Tarreau46b7f532018-08-21 11:54:26 +02004090/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004091static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004092{
4093 struct server *sv;
4094 const char *warning;
4095
4096 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4097 return 1;
4098
4099 sv = cli_find_server(appctx, args[2]);
4100 if (!sv)
4101 return 1;
4102
4103 if (strcmp(args[3], "weight") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004104 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004105 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004106 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004107 if (warning)
4108 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004109 }
4110 else if (strcmp(args[3], "state") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004111 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004112 if (strcmp(args[4], "ready") == 0)
4113 srv_adm_set_ready(sv);
4114 else if (strcmp(args[4], "drain") == 0)
4115 srv_adm_set_drain(sv);
4116 else if (strcmp(args[4], "maint") == 0)
4117 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004118 else
4119 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004120 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004121 }
4122 else if (strcmp(args[3], "health") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004123 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004124 if (sv->track)
4125 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004126 else if (strcmp(args[4], "up") == 0) {
4127 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004128 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004129 }
4130 else if (strcmp(args[4], "stopping") == 0) {
4131 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004132 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004133 }
4134 else if (strcmp(args[4], "down") == 0) {
4135 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004136 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004137 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004138 else
4139 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004140 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004141 }
4142 else if (strcmp(args[3], "agent") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004143 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004144 if (!(sv->agent.state & CHK_ST_ENABLED))
4145 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004146 else if (strcmp(args[4], "up") == 0) {
4147 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004148 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004149 }
4150 else if (strcmp(args[4], "down") == 0) {
4151 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004152 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004153 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004154 else
4155 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004156 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004157 }
Misiek2da082d2017-01-09 09:40:42 +01004158 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004159 char *addr = NULL;
4160 char *port = NULL;
4161 if (strlen(args[4]) == 0) {
4162 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4163 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004164 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004165 }
4166 addr = args[4];
4167 if (strcmp(args[5], "port") == 0)
4168 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004169 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004170 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004171 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004172 if (warning)
4173 cli_msg(appctx, LOG_WARNING, warning);
4174 }
4175 else if (strcmp(args[3], "agent-port") == 0) {
4176 char *port = NULL;
4177 if (strlen(args[4]) == 0) {
4178 cli_err(appctx, "set server <b>/<s> agent-port requires"
4179 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004180 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004181 }
4182 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004183 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004184 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004185 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004186 if (warning)
4187 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004188 }
4189 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004190 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004191 if (!(sv->agent.state & CHK_ST_ENABLED))
4192 cli_err(appctx, "agent checks are not enabled on this server.\n");
4193 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004194 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004195 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004196 }
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004197 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004198 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004199 else if (strcmp(args[3], "check-addr") == 0) {
4200 char *addr = NULL;
4201 char *port = NULL;
4202 if (strlen(args[4]) == 0) {
4203 cli_err(appctx, "set server <b>/<s> check-addr requires"
4204 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004205 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004206 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004207 addr = args[4];
4208 if (strcmp(args[5], "port") == 0)
4209 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004210 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004211 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004212 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004213 if (warning)
4214 cli_msg(appctx, LOG_WARNING, warning);
4215 }
4216 else if (strcmp(args[3], "check-port") == 0) {
4217 char *port = NULL;
4218 if (strlen(args[4]) == 0) {
4219 cli_err(appctx, "set server <b>/<s> check-port requires"
4220 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004221 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004222 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004223 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004224 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004225 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004226 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004227 if (warning)
4228 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004229 }
4230 else if (strcmp(args[3], "addr") == 0) {
4231 char *addr = NULL;
4232 char *port = NULL;
4233 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004234 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004235 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004236 }
4237 else {
4238 addr = args[4];
4239 }
4240 if (strcmp(args[5], "port") == 0) {
4241 port = args[6];
4242 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004243 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004244 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004245 if (warning)
4246 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004247 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004248 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004249 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004250 else if (strcmp(args[3], "fqdn") == 0) {
4251 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004252 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004253 goto out;
4254 }
4255 if (!sv->resolvers) {
4256 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4257 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004258 }
Christopher Fauleta386e782021-06-15 11:37:40 +02004259 if (sv->srvrq) {
4260 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004261 goto out;
Christopher Fauleta386e782021-06-15 11:37:40 +02004262 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004263 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4264 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004265 /* ensure runtime resolver will process this new fqdn */
4266 if (sv->flags & SRV_F_NO_RESOLUTION) {
4267 sv->flags &= ~SRV_F_NO_RESOLUTION;
4268 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004269 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004270 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004271 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004272 if (warning)
4273 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004274 }
William Dauchyf6370442020-11-14 19:25:33 +01004275 else if (strcmp(args[3], "ssl") == 0) {
4276#ifdef USE_OPENSSL
Amaury Denoyelleb89d3d32021-05-19 15:00:54 +02004277 if (sv->flags & SRV_F_DYNAMIC) {
4278 cli_err(appctx, "'set server <srv> ssl' not supported on dynamic servers\n");
4279 goto out;
4280 }
4281
William Dauchyf6370442020-11-14 19:25:33 +01004282 if (sv->ssl_ctx.ctx == NULL) {
4283 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4284 " default-server should define ssl settings\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004285 goto out;
4286 }
4287
4288 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4289 if (strcmp(args[4], "on") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004290 srv_set_ssl(sv, 1);
William Dauchyf6370442020-11-14 19:25:33 +01004291 } else if (strcmp(args[4], "off") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004292 srv_set_ssl(sv, 0);
William Dauchyf6370442020-11-14 19:25:33 +01004293 } else {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004294 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004295 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004296 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004297 }
4298 srv_cleanup_connections(sv);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004299 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004300 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4301#else
4302 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4303#endif
4304 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004305 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004306 "usage: set server <backend>/<server> "
4307 "addr | agent | agent-addr | agent-port | agent-send | "
4308 "check-addr | check-port | fqdn | health | ssl | "
4309 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004310 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004311 out:
William Lallemand222baf22016-11-19 02:00:33 +01004312 return 1;
4313}
4314
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004315static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004316{
4317 struct stream_interface *si = appctx->owner;
4318 struct proxy *px;
4319 struct server *sv;
4320 char *line;
4321
4322
4323 /* split "backend/server" and make <line> point to server */
4324 for (line = args[2]; *line; line++)
4325 if (*line == '/') {
4326 *line++ = '\0';
4327 break;
4328 }
4329
Willy Tarreau9d008692019-08-09 11:21:01 +02004330 if (!*line)
4331 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004332
Willy Tarreau9d008692019-08-09 11:21:01 +02004333 if (!get_backend_server(args[2], line, &px, &sv))
4334 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004335
4336 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004337 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4338 sv->iweight);
4339 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004340 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004341 return 0;
4342 }
William Lallemand6b160942016-11-22 12:34:35 +01004343 return 1;
4344}
4345
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004346/* Parse a "set weight" command.
4347 *
4348 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004349 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004350static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004351{
4352 struct server *sv;
4353 const char *warning;
4354
4355 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4356 return 1;
4357
4358 sv = cli_find_server(appctx, args[2]);
4359 if (!sv)
4360 return 1;
4361
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004362 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4363
William Lallemand6b160942016-11-22 12:34:35 +01004364 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004365 if (warning)
4366 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004367
4368 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4369
William Lallemand6b160942016-11-22 12:34:35 +01004370 return 1;
4371}
4372
Willy Tarreau46b7f532018-08-21 11:54:26 +02004373/* parse a "set maxconn server" command. It always returns 1.
4374 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004375 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004376 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004377static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004378{
4379 struct server *sv;
4380 const char *warning;
4381
4382 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4383 return 1;
4384
4385 sv = cli_find_server(appctx, args[3]);
4386 if (!sv)
4387 return 1;
4388
Amaury Denoyelle02742862021-06-18 11:11:36 +02004389 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4390
Willy Tarreaub8026272016-11-23 11:26:56 +01004391 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004392 if (warning)
4393 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004394
Amaury Denoyelle02742862021-06-18 11:11:36 +02004395 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4396
Willy Tarreaub8026272016-11-23 11:26:56 +01004397 return 1;
4398}
William Lallemand6b160942016-11-22 12:34:35 +01004399
Willy Tarreau46b7f532018-08-21 11:54:26 +02004400/* parse a "disable agent" command. It always returns 1.
4401 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004402 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004403 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004404static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004405{
4406 struct server *sv;
4407
4408 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4409 return 1;
4410
4411 sv = cli_find_server(appctx, args[2]);
4412 if (!sv)
4413 return 1;
4414
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004415 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004416 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004417 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004418 return 1;
4419}
4420
Willy Tarreau46b7f532018-08-21 11:54:26 +02004421/* parse a "disable health" command. It always returns 1.
4422 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004423 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004424 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004425static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004426{
4427 struct server *sv;
4428
4429 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4430 return 1;
4431
4432 sv = cli_find_server(appctx, args[2]);
4433 if (!sv)
4434 return 1;
4435
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004436 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004437 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004438 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004439 return 1;
4440}
4441
Willy Tarreau46b7f532018-08-21 11:54:26 +02004442/* parse a "disable server" command. It always returns 1.
4443 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004444 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004445 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004446static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004447{
4448 struct server *sv;
4449
4450 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4451 return 1;
4452
4453 sv = cli_find_server(appctx, args[2]);
4454 if (!sv)
4455 return 1;
4456
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004457 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004458 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004459 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004460 return 1;
4461}
4462
Willy Tarreau46b7f532018-08-21 11:54:26 +02004463/* parse a "enable agent" command. It always returns 1.
4464 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004465 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004466 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004467static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004468{
4469 struct server *sv;
4470
4471 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4472 return 1;
4473
4474 sv = cli_find_server(appctx, args[2]);
4475 if (!sv)
4476 return 1;
4477
Willy Tarreau9d008692019-08-09 11:21:01 +02004478 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4479 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004480
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004481 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004482 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004483 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004484 return 1;
4485}
4486
Willy Tarreau46b7f532018-08-21 11:54:26 +02004487/* parse a "enable health" command. It always returns 1.
4488 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004489 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004490 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004491static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004492{
4493 struct server *sv;
4494
4495 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4496 return 1;
4497
4498 sv = cli_find_server(appctx, args[2]);
4499 if (!sv)
4500 return 1;
4501
Amaury Denoyelle0f456d52021-09-21 10:29:09 +02004502 if (!(sv->check.state & CHK_ST_CONFIGURED))
4503 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4504
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004505 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004506 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004507 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004508 return 1;
4509}
4510
Willy Tarreau46b7f532018-08-21 11:54:26 +02004511/* parse a "enable server" command. It always returns 1.
4512 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004513 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004514 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004515static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004516{
4517 struct server *sv;
4518
4519 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4520 return 1;
4521
4522 sv = cli_find_server(appctx, args[2]);
4523 if (!sv)
4524 return 1;
4525
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004526 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004527 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004528 if (!(sv->flags & SRV_F_COOKIESET)
4529 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4530 sv->cookie)
4531 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004532 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004533 return 1;
4534}
4535
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004536/* Allocates data structure related to load balancing for the server <sv>. It
4537 * is only required for dynamic servers.
4538 *
4539 * At the moment, the server lock is not used as this function is only called
4540 * for a dynamic server not yet registered.
4541 *
4542 * Returns 1 on success, 0 on allocation failure.
4543 */
4544static int srv_alloc_lb(struct server *sv, struct proxy *be)
4545{
4546 int node;
4547
4548 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4549 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4550 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4551 sv->lb_nodes_now = 0;
4552
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004553 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4554 ((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 +01004555 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4556
4557 if (!sv->lb_nodes)
4558 return 0;
4559
4560 for (node = 0; node < sv->lb_nodes_tot; node++) {
4561 sv->lb_nodes[node].server = sv;
4562 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4563 }
4564 }
4565
4566 return 1;
4567}
4568
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004569/* updates the server's weight during a warmup stage. Once the final weight is
4570 * reached, the task automatically stops. Note that any server status change
4571 * must have updated s->last_change accordingly.
4572 */
4573static struct task *server_warmup(struct task *t, void *context, unsigned int state)
4574{
4575 struct server *s = context;
4576
4577 /* by default, plan on stopping the task */
4578 t->expire = TICK_ETERNITY;
4579 if ((s->next_admin & SRV_ADMF_MAINT) ||
4580 (s->next_state != SRV_ST_STARTING))
4581 return t;
4582
4583 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4584
4585 /* recalculate the weights and update the state */
4586 server_recalc_eweight(s, 1);
4587
4588 /* probably that we can refill this server with a bit more connections */
4589 pendconn_grab_from_px(s);
4590
4591 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4592
4593 /* get back there in 1 second or 1/20th of the slowstart interval,
4594 * whichever is greater, resulting in small 5% steps.
4595 */
4596 if (s->next_state == SRV_ST_STARTING)
4597 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
4598 return t;
4599}
4600
4601/* Allocate the slowstart task if the server is configured with a slowstart
4602 * timer. If server next_state is SRV_ST_STARTING, the task is scheduled.
4603 *
4604 * Returns 0 on success else non-zero.
4605 */
4606static int init_srv_slowstart(struct server *srv)
4607{
4608 struct task *t;
4609
4610 if (srv->slowstart) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004611 if ((t = task_new_anywhere()) == NULL) {
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004612 ha_alert("Cannot activate slowstart for server %s/%s: out of memory.\n", srv->proxy->id, srv->id);
4613 return ERR_ALERT | ERR_FATAL;
4614 }
4615
4616 /* We need a warmup task that will be called when the server
4617 * state switches from down to up.
4618 */
4619 srv->warmup = t;
4620 t->process = server_warmup;
4621 t->context = srv;
4622
4623 /* server can be in this state only because of */
4624 if (srv->next_state == SRV_ST_STARTING) {
4625 task_schedule(srv->warmup,
4626 tick_add(now_ms,
4627 MS_TO_TICKS(MAX(1000, (now.tv_sec - srv->last_change)) / 20)));
4628 }
4629 }
4630
4631 return ERR_NONE;
4632}
4633REGISTER_POST_SERVER_CHECK(init_srv_slowstart);
4634
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004635/* Memory allocation and initialization of the per_thr field.
4636 * Returns 0 if the field has been successfully initialized, -1 on failure.
4637 */
4638int srv_init_per_thr(struct server *srv)
4639{
4640 int i;
4641
4642 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4643 if (!srv->per_thr)
4644 return -1;
4645
4646 for (i = 0; i < global.nbthread; i++) {
4647 srv->per_thr[i].idle_conns = EB_ROOT;
4648 srv->per_thr[i].safe_conns = EB_ROOT;
4649 srv->per_thr[i].avail_conns = EB_ROOT;
4650 MT_LIST_INIT(&srv->per_thr[i].streams);
4651 }
4652
4653 return 0;
4654}
4655
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004656/* Parse a "add server" command
4657 * Returns 0 if the server has been successfully initialized, 1 on failure.
4658 */
4659static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4660{
4661 struct proxy *be;
4662 struct server *srv;
4663 char *be_name, *sv_name;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004664 int errcode, argc;
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004665 int next_id;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004666 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4667
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004668 usermsgs_clr("CLI");
4669
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004670 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4671 return 1;
4672
4673 ++args;
4674
4675 sv_name = be_name = args[1];
4676 /* split backend/server arg */
4677 while (*sv_name && *(++sv_name)) {
4678 if (*sv_name == '/') {
4679 *sv_name = '\0';
4680 ++sv_name;
4681 break;
4682 }
4683 }
4684
4685 if (!*sv_name)
4686 return cli_err(appctx, "Require 'backend/server'.");
4687
Amaury Denoyellecece9182021-04-20 17:09:08 +02004688 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004689 if (!be)
4690 return cli_err(appctx, "No such backend.");
4691
4692 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004693 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004694 return 1;
4695 }
4696
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004697 /* At this point, some operations might not be thread-safe anymore. This
4698 * might be the case for parsing handlers which were designed to run
4699 * only at the starting stage on single-thread mode.
4700 *
4701 * Activate thread isolation to ensure thread-safety.
4702 */
4703 thread_isolate();
4704
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004705 args[1] = sv_name;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004706 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags);
4707 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004708 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004709
4710 while (*args[argc]) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004711 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004712
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004713 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004714 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004715 }
4716
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004717 errcode = _srv_parse_finalize(args, argc, srv, be, parse_flags);
4718 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004719 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004720
Amaury Denoyelleefbf35c2021-06-10 17:34:10 +02004721 /* A dynamic server does not currently support resolution.
4722 *
4723 * Initialize it explicitly to the "none" method to ensure no
4724 * resolution will ever be executed.
4725 */
4726 srv->init_addr_methods = SRV_IADDR_NONE;
4727
Amaury Denoyelle30467232021-03-12 18:03:27 +01004728 if (srv->mux_proto) {
4729 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004730 ha_alert("MUX protocol is not usable for server.\n");
Amaury Denoyelle30467232021-03-12 18:03:27 +01004731 goto out;
4732 }
4733 }
4734
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004735 if (srv_init_per_thr(srv) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004736 ha_alert("failed to allocate per-thread lists for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004737 goto out;
4738 }
4739
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004740 if (srv->max_idle_conns != 0) {
4741 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4742 if (!srv->curr_idle_thr) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004743 ha_alert("failed to allocate counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004744 goto out;
4745 }
4746 }
4747
4748 if (!srv_alloc_lb(srv, be)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004749 ha_alert("Failed to initialize load-balancing data.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004750 goto out;
4751 }
4752
4753 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4754 COUNTERS_SV,
4755 STATS_PX_CAP_SRV)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004756 ha_alert("failed to allocate extra counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004757 goto out;
4758 }
4759
Amaury Denoyelle79b90e82021-09-20 15:15:19 +02004760 if (srv->use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL) ||
4761 srv->check.use_ssl == 1) {
Amaury Denoyelle34897d22021-05-19 09:49:41 +02004762 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
4763 if (xprt_get(XPRT_SSL)->prepare_srv(srv))
4764 goto out;
4765 }
4766 }
4767
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004768 if (srv->trackit) {
4769 if (srv_apply_track(srv, be))
4770 goto out;
4771 }
4772
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004773 /* Init check/agent if configured. The check is manually disabled
4774 * because a dynamic server is started in a disable state. It must be
4775 * manually activated via a "enable health/agent" command.
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004776 */
4777 if (srv->do_check) {
4778 if (init_srv_check(srv))
4779 goto out;
4780
4781 srv->check.state &= ~CHK_ST_ENABLED;
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004782 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004783
4784 if (srv->do_agent) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004785 if (init_srv_agent_check(srv))
4786 goto out;
4787
4788 srv->agent.state &= ~CHK_ST_ENABLED;
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004789 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004790
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02004791 /* Init slowstart if needed. */
4792 if (init_srv_slowstart(srv))
4793 goto out;
4794
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004795 /* Attach the server to the end of the proxy linked list. Note that this
4796 * operation is not thread-safe so this is executed under thread
4797 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004798 *
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004799 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004800 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004801
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004802 /* TODO use a double-linked list for px->srv */
4803 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004804 struct server *next = be->srv;
4805
4806 while (1) {
4807 /* check for duplicate server */
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02004808 if (strcmp(srv->id, next->id) == 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004809 ha_alert("Already exists a server with the same name in backend.\n");
Amaury Denoyellecece9182021-04-20 17:09:08 +02004810 goto out;
4811 }
4812
4813 if (!next->next)
4814 break;
4815
4816 next = next->next;
4817 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004818
4819 next->next = srv;
4820 }
4821 else {
4822 srv->next = be->srv;
4823 be->srv = srv;
4824 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004825
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004826 /* generate the server id if not manually specified */
4827 if (!srv->puid) {
4828 next_id = get_next_id(&be->conf.used_server_id, 1);
4829 if (!next_id) {
4830 ha_alert("Cannot attach server : no id left in proxy\n");
4831 goto out;
4832 }
4833
4834 srv->conf.id.key = srv->puid = next_id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004835 }
Christopher Faulet70f89482021-12-07 18:49:44 +01004836 srv->conf.name.key = srv->id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004837
4838 /* insert the server in the backend trees */
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02004839 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4840 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02004841 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004842
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004843 thread_release();
4844
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004845 /* Start the check task. The server must be fully initialized.
4846 *
4847 * <srvpos> and <nbcheck> parameters are set to 1 as there should be no
4848 * need to randomly spread the task interval for dynamic servers.
4849 */
4850 if (srv->check.state & CHK_ST_CONFIGURED) {
4851 if (!start_check_task(&srv->check, 0, 1, 1))
4852 ha_alert("System might be unstable, consider to execute a reload");
4853 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004854 if (srv->agent.state & CHK_ST_CONFIGURED) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004855 if (!start_check_task(&srv->agent, 0, 1, 1))
4856 ha_alert("System might be unstable, consider to execute a reload");
4857 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004858
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004859 ha_notice("New server registered.\n");
4860 cli_msg(appctx, LOG_INFO, usermsgs_str());
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004861
4862 return 0;
4863
4864out:
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004865 if (srv) {
4866 if (srv->track)
4867 release_server_track(srv);
4868
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004869 if (srv->check.state & CHK_ST_CONFIGURED)
4870 free_check(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004871 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004872 free_check(&srv->agent);
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004873
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004874 /* remove the server from the proxy linked list */
4875 if (be->srv == srv) {
4876 be->srv = srv->next;
4877 }
4878 else {
4879 struct server *prev;
4880 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4881 ;
4882 if (prev)
4883 prev->next = srv->next;
4884 }
4885
4886 }
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004887
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004888 thread_release();
4889
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004890 if (!usermsgs_empty())
4891 cli_err(appctx, usermsgs_str());
4892
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004893 if (srv)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004894 srv_drop(srv);
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004895
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004896 return 1;
4897}
4898
Amaury Denoyellee5580432021-04-15 14:41:20 +02004899/* Parse a "del server" command
4900 * Returns 0 if the server has been successfully initialized, 1 on failure.
4901 */
4902static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4903{
4904 struct proxy *be;
4905 struct server *srv;
4906 char *be_name, *sv_name;
4907
4908 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4909 return 1;
4910
4911 ++args;
4912
4913 sv_name = be_name = args[1];
4914 /* split backend/server arg */
4915 while (*sv_name && *(++sv_name)) {
4916 if (*sv_name == '/') {
4917 *sv_name = '\0';
4918 ++sv_name;
4919 break;
4920 }
4921 }
4922
4923 if (!*sv_name)
4924 return cli_err(appctx, "Require 'backend/server'.");
4925
4926 /* The proxy servers list is currently not protected by a lock so this
Willy Tarreauba3ab792021-08-04 14:42:37 +02004927 * requires thread isolation. In addition, any place referencing the
4928 * server about to be deleted would be unsafe after our operation, so
4929 * we must be certain to be alone so that no other thread has even
4930 * started to grab a temporary reference to this server.
Amaury Denoyellee5580432021-04-15 14:41:20 +02004931 */
Willy Tarreauba3ab792021-08-04 14:42:37 +02004932 thread_isolate_full();
Amaury Denoyellee5580432021-04-15 14:41:20 +02004933
4934 get_backend_server(be_name, sv_name, &be, &srv);
4935 if (!be) {
4936 cli_err(appctx, "No such backend.");
4937 goto out;
4938 }
4939
4940 if (!srv) {
4941 cli_err(appctx, "No such server.");
4942 goto out;
4943 }
4944
Amaury Denoyelle14c3c5c2021-08-23 14:10:51 +02004945 if (srv->flags & SRV_F_NON_PURGEABLE) {
4946 cli_err(appctx, "This server cannot be removed at runtime due to other configuration elements pointing to it.");
Amaury Denoyellee5580432021-04-15 14:41:20 +02004947 goto out;
4948 }
4949
4950 /* Only servers in maintenance can be deleted. This ensures that the
4951 * server is not present anymore in the lb structures (through
4952 * lbprm.set_server_status_down).
4953 */
4954 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4955 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4956 goto out;
4957 }
4958
4959 /* Ensure that there is no active/idle/pending connection on the server.
4960 *
4961 * TODO idle connections should not prevent server deletion. A proper
4962 * cleanup function should be implemented to be used here.
4963 */
4964 if (srv->cur_sess || srv->curr_idle_conns ||
Willy Tarreaua0570452021-06-18 09:30:30 +02004965 !eb_is_empty(&srv->queue.head)) {
Amaury Denoyellee5580432021-04-15 14:41:20 +02004966 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4967 goto out;
4968 }
4969
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004970 /* remove srv from tracking list */
4971 if (srv->track)
4972 release_server_track(srv);
4973
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004974 /* stop the check task if running */
4975 if (srv->check.state & CHK_ST_CONFIGURED)
4976 check_purge(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004977 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004978 check_purge(&srv->agent);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004979
4980 /* detach the server from the proxy linked list
4981 * The proxy servers list is currently not protected by a lock, so this
4982 * requires thread_isolate/release.
4983 */
4984
4985 /* be->srv cannot be empty since we have already found the server with
4986 * get_backend_server */
4987 BUG_ON(!be->srv);
4988 if (be->srv == srv) {
4989 be->srv = srv->next;
4990 }
4991 else {
4992 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004993 for (next = be->srv; srv != next->next; next = next->next) {
4994 /* srv cannot be not found since we have already found
4995 * it with get_backend_server */
4996 BUG_ON(!next);
4997 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004998
Amaury Denoyellee5580432021-04-15 14:41:20 +02004999 next->next = srv->next;
5000 }
5001
5002 /* remove srv from addr_node tree */
Amaury Denoyelle82d7f772021-06-09 16:00:43 +02005003 eb32_delete(&srv->conf.id);
5004 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005005 ebpt_delete(&srv->addr_node);
5006
5007 /* remove srv from idle_node tree for idle conn cleanup */
5008 eb32_delete(&srv->idle_node);
5009
5010 thread_release();
5011
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02005012 ha_notice("Server deleted.\n");
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02005013 srv_drop(srv);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005014
5015 cli_msg(appctx, LOG_INFO, "Server deleted.");
5016
5017 return 0;
5018
5019out:
5020 thread_release();
5021
5022 return 1;
5023}
5024
William Lallemand222baf22016-11-19 02:00:33 +01005025/* register cli keywords */
5026static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec755efd2021-08-03 18:05:37 +02005027 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
5028 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005029 { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Amaury Denoyellec755efd2021-08-03 18:05:37 +02005030 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
5031 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005032 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
5033 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
5034 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
5035 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
5036 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
5037 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
5038 { { "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 +01005039 {{},}
5040}};
5041
Willy Tarreau0108d902018-11-25 19:14:37 +01005042INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01005043
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005044/* Prepare a server <srv> to track check status of another one. <srv>.<trackit>
5045 * field is used to retrieve the identifier of the tracked server, either with
5046 * the format "proxy/server" or just "server". <curproxy> must point to the
5047 * backend owning <srv>; if no proxy is specified in <trackit>, it will be used
5048 * to find the tracked server.
5049 *
5050 * Returns 0 if the server track has been activated else non-zero.
5051 *
5052 * Not thread-safe.
5053 */
5054int srv_apply_track(struct server *srv, struct proxy *curproxy)
5055{
5056 struct proxy *px;
5057 struct server *strack, *loop;
5058 char *pname, *sname;
5059
5060 if (!srv->trackit)
5061 return 1;
5062
5063 pname = srv->trackit;
5064 sname = strrchr(pname, '/');
5065
5066 if (sname) {
5067 *sname++ = '\0';
5068 }
5069 else {
5070 sname = pname;
5071 pname = NULL;
5072 }
5073
5074 if (pname) {
5075 px = proxy_be_by_name(pname);
5076 if (!px) {
5077 ha_alert("unable to find required proxy '%s' for tracking.\n",
5078 pname);
5079 return 1;
5080 }
5081 }
5082 else {
5083 px = curproxy;
5084 }
5085
5086 strack = findserver(px, sname);
5087 if (!strack) {
5088 ha_alert("unable to find required server '%s' for tracking.\n",
5089 sname);
5090 return 1;
5091 }
5092
Amaury Denoyelle79f68be2021-07-13 10:35:50 +02005093 if (strack->flags & SRV_F_DYNAMIC) {
5094 ha_alert("unable to use %s/%s for tracking as it is a dynamic server.\n",
5095 px->id, strack->id);
5096 return 1;
5097 }
5098
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005099 if (!strack->do_check && !strack->do_agent && !strack->track &&
5100 !strack->trackit) {
5101 ha_alert("unable to use %s/%s for "
5102 "tracking as it does not have any check nor agent enabled.\n",
5103 px->id, strack->id);
5104 return 1;
5105 }
5106
5107 for (loop = strack->track; loop && loop != srv; loop = loop->track)
5108 ;
5109
5110 if (srv == strack || loop) {
5111 ha_alert("unable to track %s/%s as it "
5112 "belongs to a tracking chain looping back to %s/%s.\n",
5113 px->id, strack->id, px->id,
5114 srv == strack ? strack->id : loop->id);
5115 return 1;
5116 }
5117
5118 if (curproxy != px &&
5119 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
5120 ha_alert("unable to use %s/%s for"
5121 "tracking: disable-on-404 option inconsistency.\n",
5122 px->id, strack->id);
5123 return 1;
5124 }
5125
5126 srv->track = strack;
5127 srv->tracknext = strack->trackers;
5128 strack->trackers = srv;
Amaury Denoyelle06269612021-08-23 14:05:07 +02005129 strack->flags |= SRV_F_NON_PURGEABLE;
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005130
5131 ha_free(&srv->trackit);
5132
5133 return 0;
5134}
5135
Emeric Brun64cc49c2017-10-03 14:46:45 +02005136/*
5137 * This function applies server's status changes, it is
5138 * is designed to be called asynchronously.
5139 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005140 * Must be called with the server lock held. This may also be called at init
5141 * time as the result of parsing the state file, in which case no lock will be
5142 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005143 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005144static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005145{
5146 struct check *check = &s->check;
5147 int xferred;
5148 struct proxy *px = s->proxy;
5149 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
5150 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
5151 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02005152 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005153
Emeric Brun64cc49c2017-10-03 14:46:45 +02005154 /* If currently main is not set we try to apply pending state changes */
5155 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
5156 int next_admin;
5157
5158 /* Backup next admin */
5159 next_admin = s->next_admin;
5160
5161 /* restore current admin state */
5162 s->next_admin = s->cur_admin;
5163
5164 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
5165 s->last_change = now.tv_sec;
5166 if (s->proxy->lbprm.set_server_status_down)
5167 s->proxy->lbprm.set_server_status_down(s);
5168
5169 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5170 srv_shutdown_streams(s, SF_ERR_DOWN);
5171
5172 /* we might have streams queued on this server and waiting for
5173 * a connection. Those which are redispatchable will be queued
5174 * to another server or to the proxy itself.
5175 */
5176 xferred = pendconn_redistribute(s);
5177
5178 tmptrash = alloc_trash_chunk();
5179 if (tmptrash) {
5180 chunk_printf(tmptrash,
5181 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
5182 s->proxy->id, s->id);
5183
Emeric Brun5a133512017-10-19 14:42:30 +02005184 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005185 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005186
5187 /* we don't send an alert if the server was previously paused */
5188 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005189 send_log(s->proxy, log_level, "%s.\n",
5190 tmptrash->area);
5191 send_email_alert(s, log_level, "%s",
5192 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005193 free_trash_chunk(tmptrash);
5194 tmptrash = NULL;
5195 }
5196 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5197 set_backend_down(s->proxy);
5198
5199 s->counters.down_trans++;
5200 }
5201 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
5202 s->last_change = now.tv_sec;
5203 if (s->proxy->lbprm.set_server_status_down)
5204 s->proxy->lbprm.set_server_status_down(s);
5205
5206 /* we might have streams queued on this server and waiting for
5207 * a connection. Those which are redispatchable will be queued
5208 * to another server or to the proxy itself.
5209 */
5210 xferred = pendconn_redistribute(s);
5211
5212 tmptrash = alloc_trash_chunk();
5213 if (tmptrash) {
5214 chunk_printf(tmptrash,
5215 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
5216 s->proxy->id, s->id);
5217
Emeric Brun5a133512017-10-19 14:42:30 +02005218 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005219
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005220 ha_warning("%s.\n", tmptrash->area);
5221 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5222 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005223 free_trash_chunk(tmptrash);
5224 tmptrash = NULL;
5225 }
5226
5227 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5228 set_backend_down(s->proxy);
5229 }
5230 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5231 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
5232 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5233 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5234 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5235 s->proxy->last_change = now.tv_sec;
5236 }
5237
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01005238 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02005239 s->down_time += now.tv_sec - s->last_change;
5240
5241 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005242 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005243 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5244
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005245 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005246 /* now propagate the status change to any LB algorithms */
5247 if (px->lbprm.update_server_eweight)
5248 px->lbprm.update_server_eweight(s);
5249 else if (srv_willbe_usable(s)) {
5250 if (px->lbprm.set_server_status_up)
5251 px->lbprm.set_server_status_up(s);
5252 }
5253 else {
5254 if (px->lbprm.set_server_status_down)
5255 px->lbprm.set_server_status_down(s);
5256 }
5257
5258 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5259 * and it's not a backup server and its effective weight is > 0,
5260 * then it can accept new connections, so we shut down all streams
5261 * on all backup servers.
5262 */
5263 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5264 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5265 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5266
5267 /* check if we can handle some connections queued at the proxy. We
5268 * will take as many as we can handle.
5269 */
5270 xferred = pendconn_grab_from_px(s);
5271
5272 tmptrash = alloc_trash_chunk();
5273 if (tmptrash) {
5274 chunk_printf(tmptrash,
5275 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5276 s->proxy->id, s->id);
5277
Emeric Brun5a133512017-10-19 14:42:30 +02005278 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005279 ha_warning("%s.\n", tmptrash->area);
5280 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5281 tmptrash->area);
5282 send_email_alert(s, LOG_NOTICE, "%s",
5283 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005284 free_trash_chunk(tmptrash);
5285 tmptrash = NULL;
5286 }
5287
5288 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5289 set_backend_down(s->proxy);
5290 }
5291 else if (s->cur_eweight != s->next_eweight) {
5292 /* now propagate the status change to any LB algorithms */
5293 if (px->lbprm.update_server_eweight)
5294 px->lbprm.update_server_eweight(s);
5295 else if (srv_willbe_usable(s)) {
5296 if (px->lbprm.set_server_status_up)
5297 px->lbprm.set_server_status_up(s);
5298 }
5299 else {
5300 if (px->lbprm.set_server_status_down)
5301 px->lbprm.set_server_status_down(s);
5302 }
5303
5304 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5305 set_backend_down(s->proxy);
5306 }
5307
5308 s->next_admin = next_admin;
5309 }
5310
Emeric Brun5a133512017-10-19 14:42:30 +02005311 /* reset operational state change */
5312 *s->op_st_chg.reason = 0;
5313 s->op_st_chg.status = s->op_st_chg.code = -1;
5314 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005315
5316 /* Now we try to apply pending admin changes */
5317
5318 /* Maintenance must also disable health checks */
5319 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5320 if (s->check.state & CHK_ST_ENABLED) {
5321 s->check.state |= CHK_ST_PAUSED;
5322 check->health = 0;
5323 }
5324
5325 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005326 tmptrash = alloc_trash_chunk();
5327 if (tmptrash) {
5328 chunk_printf(tmptrash,
5329 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5330 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5331 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005332
Olivier Houchard796a2b32017-10-24 17:42:47 +02005333 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005334
Olivier Houchard796a2b32017-10-24 17:42:47 +02005335 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005336 ha_warning("%s.\n", tmptrash->area);
5337 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5338 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005339 }
5340 free_trash_chunk(tmptrash);
5341 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005342 }
Emeric Brun8f298292017-12-06 16:47:17 +01005343 /* commit new admin status */
5344
5345 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005346 }
5347 else { /* server was still running */
5348 check->health = 0; /* failure */
5349 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005350
5351 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005352 if (s->proxy->lbprm.set_server_status_down)
5353 s->proxy->lbprm.set_server_status_down(s);
5354
Emeric Brun64cc49c2017-10-03 14:46:45 +02005355 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5356 srv_shutdown_streams(s, SF_ERR_DOWN);
5357
William Dauchy6318d332020-05-02 21:52:36 +02005358 /* force connection cleanup on the given server */
5359 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005360 /* we might have streams queued on this server and waiting for
5361 * a connection. Those which are redispatchable will be queued
5362 * to another server or to the proxy itself.
5363 */
5364 xferred = pendconn_redistribute(s);
5365
5366 tmptrash = alloc_trash_chunk();
5367 if (tmptrash) {
5368 chunk_printf(tmptrash,
5369 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5370 s->flags & SRV_F_BACKUP ? "Backup " : "",
5371 s->proxy->id, s->id,
5372 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5373
5374 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5375
5376 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005377 ha_warning("%s.\n", tmptrash->area);
5378 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5379 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005380 }
5381 free_trash_chunk(tmptrash);
5382 tmptrash = NULL;
5383 }
5384 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5385 set_backend_down(s->proxy);
5386
5387 s->counters.down_trans++;
5388 }
5389 }
5390 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5391 /* OK here we're leaving maintenance, we have many things to check,
5392 * because the server might possibly be coming back up depending on
5393 * its state. In practice, leaving maintenance means that we should
5394 * immediately turn to UP (more or less the slowstart) under the
5395 * following conditions :
5396 * - server is neither checked nor tracked
5397 * - server tracks another server which is not checked
5398 * - server tracks another server which is already up
5399 * Which sums up as something simpler :
5400 * "either the tracking server is up or the server's checks are disabled
5401 * or up". Otherwise we only re-enable health checks. There's a special
5402 * case associated to the stopping state which can be inherited. Note
5403 * that the server might still be in drain mode, which is naturally dealt
5404 * with by the lower level functions.
5405 */
5406
5407 if (s->check.state & CHK_ST_ENABLED) {
5408 s->check.state &= ~CHK_ST_PAUSED;
5409 check->health = check->rise; /* start OK but check immediately */
5410 }
5411
5412 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5413 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5414 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5415 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5416 s->next_state = SRV_ST_STOPPING;
5417 }
5418 else {
Willy Tarreaud332f132021-08-04 19:35:13 +02005419 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005420 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005421 if (s->slowstart > 0) {
5422 if (s->warmup)
5423 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5424 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005425 else
5426 s->next_state = SRV_ST_RUNNING;
5427 }
5428
5429 }
5430
5431 tmptrash = alloc_trash_chunk();
5432 if (tmptrash) {
5433 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5434 chunk_printf(tmptrash,
5435 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5436 s->flags & SRV_F_BACKUP ? "Backup " : "",
5437 s->proxy->id, s->id,
5438 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5439 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5440 }
5441 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5442 chunk_printf(tmptrash,
5443 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5444 s->flags & SRV_F_BACKUP ? "Backup " : "",
5445 s->proxy->id, s->id, s->hostname,
5446 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5447 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5448 }
5449 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5450 chunk_printf(tmptrash,
5451 "%sServer %s/%s is %s/%s (leaving maintenance)",
5452 s->flags & SRV_F_BACKUP ? "Backup " : "",
5453 s->proxy->id, s->id,
5454 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5455 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5456 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005457 ha_warning("%s.\n", tmptrash->area);
5458 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5459 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005460 free_trash_chunk(tmptrash);
5461 tmptrash = NULL;
5462 }
5463
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005464 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005465 /* now propagate the status change to any LB algorithms */
5466 if (px->lbprm.update_server_eweight)
5467 px->lbprm.update_server_eweight(s);
5468 else if (srv_willbe_usable(s)) {
5469 if (px->lbprm.set_server_status_up)
5470 px->lbprm.set_server_status_up(s);
5471 }
5472 else {
5473 if (px->lbprm.set_server_status_down)
5474 px->lbprm.set_server_status_down(s);
5475 }
5476
5477 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5478 set_backend_down(s->proxy);
Willy Tarreaud332f132021-08-04 19:35:13 +02005479 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5480 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005481
Willy Tarreau6a78e612018-08-07 10:14:53 +02005482 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5483 * and it's not a backup server and its effective weight is > 0,
5484 * then it can accept new connections, so we shut down all streams
5485 * on all backup servers.
5486 */
5487 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5488 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5489 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5490
5491 /* check if we can handle some connections queued at the proxy. We
5492 * will take as many as we can handle.
5493 */
5494 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005495 }
5496 else if (s->next_admin & SRV_ADMF_MAINT) {
5497 /* remaining in maintenance mode, let's inform precisely about the
5498 * situation.
5499 */
5500 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5501 tmptrash = alloc_trash_chunk();
5502 if (tmptrash) {
5503 chunk_printf(tmptrash,
5504 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5505 s->flags & SRV_F_BACKUP ? "Backup " : "",
5506 s->proxy->id, s->id);
5507
5508 if (s->track) /* normally it's mandatory here */
5509 chunk_appendf(tmptrash, " via %s/%s",
5510 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005511 ha_warning("%s.\n", tmptrash->area);
5512 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5513 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005514 free_trash_chunk(tmptrash);
5515 tmptrash = NULL;
5516 }
5517 }
5518 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5519 tmptrash = alloc_trash_chunk();
5520 if (tmptrash) {
5521 chunk_printf(tmptrash,
5522 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5523 s->flags & SRV_F_BACKUP ? "Backup " : "",
5524 s->proxy->id, s->id, s->hostname);
5525
5526 if (s->track) /* normally it's mandatory here */
5527 chunk_appendf(tmptrash, " via %s/%s",
5528 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005529 ha_warning("%s.\n", tmptrash->area);
5530 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5531 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005532 free_trash_chunk(tmptrash);
5533 tmptrash = NULL;
5534 }
5535 }
5536 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5537 tmptrash = alloc_trash_chunk();
5538 if (tmptrash) {
5539 chunk_printf(tmptrash,
5540 "%sServer %s/%s remains in forced maintenance",
5541 s->flags & SRV_F_BACKUP ? "Backup " : "",
5542 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005543 ha_warning("%s.\n", tmptrash->area);
5544 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5545 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005546 free_trash_chunk(tmptrash);
5547 tmptrash = NULL;
5548 }
5549 }
5550 /* don't report anything when leaving drain mode and remaining in maintenance */
5551
5552 s->cur_admin = s->next_admin;
5553 }
5554
5555 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5556 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5557 /* drain state is applied only if not yet in maint */
5558
5559 s->last_change = now.tv_sec;
5560 if (px->lbprm.set_server_status_down)
5561 px->lbprm.set_server_status_down(s);
5562
5563 /* we might have streams queued on this server and waiting for
5564 * a connection. Those which are redispatchable will be queued
5565 * to another server or to the proxy itself.
5566 */
5567 xferred = pendconn_redistribute(s);
5568
5569 tmptrash = alloc_trash_chunk();
5570 if (tmptrash) {
5571 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5572 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5573 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5574
5575 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5576
5577 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005578 ha_warning("%s.\n", tmptrash->area);
5579 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5580 tmptrash->area);
5581 send_email_alert(s, LOG_NOTICE, "%s",
5582 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005583 }
5584 free_trash_chunk(tmptrash);
5585 tmptrash = NULL;
5586 }
5587
5588 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5589 set_backend_down(s->proxy);
5590 }
5591 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5592 /* OK completely leaving drain mode */
5593 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5594 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5595 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5596 s->proxy->last_change = now.tv_sec;
5597 }
5598
5599 if (s->last_change < now.tv_sec) // ignore negative times
5600 s->down_time += now.tv_sec - s->last_change;
5601 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005602 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005603
5604 tmptrash = alloc_trash_chunk();
5605 if (tmptrash) {
5606 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5607 chunk_printf(tmptrash,
5608 "%sServer %s/%s is %s (leaving forced drain)",
5609 s->flags & SRV_F_BACKUP ? "Backup " : "",
5610 s->proxy->id, s->id,
5611 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5612 }
5613 else {
5614 chunk_printf(tmptrash,
5615 "%sServer %s/%s is %s (leaving drain)",
5616 s->flags & SRV_F_BACKUP ? "Backup " : "",
5617 s->proxy->id, s->id,
5618 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5619 if (s->track) /* normally it's mandatory here */
5620 chunk_appendf(tmptrash, " via %s/%s",
5621 s->track->proxy->id, s->track->id);
5622 }
5623
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005624 ha_warning("%s.\n", tmptrash->area);
5625 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5626 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005627 free_trash_chunk(tmptrash);
5628 tmptrash = NULL;
5629 }
5630
5631 /* now propagate the status change to any LB algorithms */
5632 if (px->lbprm.update_server_eweight)
5633 px->lbprm.update_server_eweight(s);
5634 else if (srv_willbe_usable(s)) {
5635 if (px->lbprm.set_server_status_up)
5636 px->lbprm.set_server_status_up(s);
5637 }
5638 else {
5639 if (px->lbprm.set_server_status_down)
5640 px->lbprm.set_server_status_down(s);
5641 }
5642 }
5643 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5644 /* remaining in drain mode after removing one of its flags */
5645
5646 tmptrash = alloc_trash_chunk();
5647 if (tmptrash) {
5648 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5649 chunk_printf(tmptrash,
5650 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5651 s->flags & SRV_F_BACKUP ? "Backup " : "",
5652 s->proxy->id, s->id);
5653
5654 if (s->track) /* normally it's mandatory here */
5655 chunk_appendf(tmptrash, " via %s/%s",
5656 s->track->proxy->id, s->track->id);
5657 }
5658 else {
5659 chunk_printf(tmptrash,
5660 "%sServer %s/%s remains in forced drain mode",
5661 s->flags & SRV_F_BACKUP ? "Backup " : "",
5662 s->proxy->id, s->id);
5663 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005664 ha_warning("%s.\n", tmptrash->area);
5665 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5666 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005667 free_trash_chunk(tmptrash);
5668 tmptrash = NULL;
5669 }
5670
5671 /* commit new admin status */
5672
5673 s->cur_admin = s->next_admin;
5674 }
5675 }
5676
5677 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005678 *s->adm_st_chg_cause = 0;
5679}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005680
Willy Tarreau144f84a2021-03-02 16:09:26 +01005681struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005682{
5683 struct connection *conn;
5684
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005685 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005686 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005687 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005688 }
5689
5690 return task;
5691}
5692
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005693/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005694 * moving them all.
5695 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005696 *
5697 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005698 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005699static 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 +02005700{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005701 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005702 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005703 int i = 0;
5704
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005705 node = eb_first(idle_tree);
5706 while (node) {
5707 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005708 if (toremove_nb != -1 && i >= toremove_nb)
5709 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005710
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005711 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005712 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005713 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005714 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005715
5716 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005717 }
5718 return i;
5719}
William Dauchy6318d332020-05-02 21:52:36 +02005720/* cleanup connections for a given server
5721 * might be useful when going on forced maintenance or live changing ip/port
5722 */
William Dauchy707ad322020-05-04 13:52:40 +02005723static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005724{
William Dauchy6318d332020-05-02 21:52:36 +02005725 int did_remove;
5726 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005727
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005728 /* nothing to do if pool-max-conn is null */
5729 if (!srv->max_idle_conns)
5730 return;
5731
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005732 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005733 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005734 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005735 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005736 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 +02005737 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005738 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 +02005739 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005740 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005741 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005742 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005743
5744 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5745 break;
William Dauchy6318d332020-05-02 21:52:36 +02005746 }
Willy Tarreau260f3242021-10-06 18:30:04 +02005747}
5748
5749/* removes an idle conn after updating the server idle conns counters */
5750void srv_release_conn(struct server *srv, struct connection *conn)
5751{
5752 if (conn->flags & CO_FL_LIST_MASK) {
5753 /* The connection is currently in the server's idle list, so tell it
5754 * there's one less connection available in that list.
5755 */
5756 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5757 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
5758 _HA_ATOMIC_DEC(&srv->curr_idle_thr[tid]);
5759 }
5760 else {
5761 /* The connection is not private and not in any server's idle
5762 * list, so decrement the current number of used connections
5763 */
5764 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5765 }
5766
5767 /* Remove the connection from any tree (safe, idle or available) */
5768 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5769 conn_delete_from_tree(&conn->hash_node->node);
5770 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5771}
5772
5773/* retrieve a connection from its <hash> in <tree>
5774 * returns NULL if no connection found
5775 */
5776struct connection *srv_lookup_conn(struct eb_root *tree, uint64_t hash)
5777{
5778 struct ebmb_node *node = NULL;
5779 struct connection *conn = NULL;
5780 struct conn_hash_node *hash_node = NULL;
5781
5782 node = ebmb_lookup(tree, &hash, sizeof(hash_node->hash));
5783 if (node) {
5784 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5785 conn = hash_node->conn;
5786 }
5787
5788 return conn;
5789}
5790
5791/* retrieve the next connection sharing the same hash as <conn>
5792 * returns NULL if no connection found
5793 */
5794struct connection *srv_lookup_conn_next(struct connection *conn)
5795{
5796 struct ebmb_node *node = NULL;
5797 struct connection *next_conn = NULL;
5798 struct conn_hash_node *hash_node = NULL;
5799
5800 node = ebmb_next_dup(&conn->hash_node->node);
5801 if (node) {
5802 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5803 next_conn = hash_node->conn;
5804 }
5805
5806 return next_conn;
5807}
5808
5809/* This adds an idle connection to the server's list if the connection is
5810 * reusable, not held by any owner anymore, but still has available streams.
5811 */
5812int srv_add_to_idle_list(struct server *srv, struct connection *conn, int is_safe)
5813{
5814 /* we try to keep the connection in the server's idle list
5815 * if we don't have too many FD in use, and if the number of
5816 * idle+current conns is lower than what was observed before
5817 * last purge, or if we already don't have idle conns for the
5818 * current thread and we don't exceed last count by global.nbthread.
5819 */
5820 if (!(conn->flags & CO_FL_PRIVATE) &&
5821 srv && srv->pool_purge_delay > 0 &&
5822 ((srv->proxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
5823 ha_used_fds < global.tune.pool_high_count &&
5824 (srv->max_idle_conns == -1 || srv->max_idle_conns > srv->curr_idle_conns) &&
5825 ((eb_is_empty(&srv->per_thr[tid].safe_conns) &&
5826 (is_safe || eb_is_empty(&srv->per_thr[tid].idle_conns))) ||
5827 (ha_used_fds < global.tune.pool_low_count &&
5828 (srv->curr_used_conns + srv->curr_idle_conns <=
5829 MAX(srv->curr_used_conns, srv->est_need_conns) + srv->low_idle_conns))) &&
5830 !conn->mux->used_streams(conn) && conn->mux->avail_streams(conn)) {
5831 int retadd;
5832
5833 retadd = _HA_ATOMIC_ADD_FETCH(&srv->curr_idle_conns, 1);
5834 if (retadd > srv->max_idle_conns) {
5835 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5836 return 0;
5837 }
5838 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5839
5840 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5841 conn_delete_from_tree(&conn->hash_node->node);
5842
5843 if (is_safe) {
5844 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_SAFE_LIST;
5845 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5846 _HA_ATOMIC_INC(&srv->curr_safe_nb);
5847 } else {
5848 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_IDLE_LIST;
5849 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5850 _HA_ATOMIC_INC(&srv->curr_idle_nb);
5851 }
5852 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5853 _HA_ATOMIC_INC(&srv->curr_idle_thr[tid]);
5854
5855 __ha_barrier_full();
5856 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5857 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5858 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5859 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5860 now_ms);
5861 eb32_insert(&idle_conn_srv, &srv->idle_node);
5862 if (!task_in_wq(idle_conn_task) && !
5863 task_in_rq(idle_conn_task)) {
5864 task_schedule(idle_conn_task,
5865 srv->idle_node.key);
5866 }
5867
5868 }
5869 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5870 }
5871 return 1;
5872 }
5873 return 0;
William Dauchy6318d332020-05-02 21:52:36 +02005874}
5875
Willy Tarreau144f84a2021-03-02 16:09:26 +01005876struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005877{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005878 struct server *srv;
5879 struct eb32_node *eb;
5880 int i;
5881 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005882
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005883 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005884 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5885 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005886 int exceed_conns;
5887 int to_kill;
5888 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005889
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005890 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5891 if (!eb) {
5892 /* we might have reached the end of the tree, typically because
5893 * <now_ms> is in the first half and we're first scanning the last
5894 * half. Let's loop back to the beginning of the tree now.
5895 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005896
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005897 eb = eb32_first(&idle_conn_srv);
5898 if (likely(!eb))
5899 break;
5900 }
5901 if (tick_is_lt(now_ms, eb->key)) {
5902 /* timer not expired yet, revisit it later */
5903 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005904 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005905 }
5906 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005907
5908 /* Calculate how many idle connections we want to kill :
5909 * we want to remove half the difference between the total
5910 * of established connections (used or idle) and the max
5911 * number of used connections.
5912 */
5913 curr_idle = srv->curr_idle_conns;
5914 if (curr_idle == 0)
5915 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005916 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005917 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005918
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005919 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005920 if (srv->est_need_conns < srv->max_used_conns)
5921 srv->est_need_conns = srv->max_used_conns;
5922
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005923 srv->max_used_conns = srv->curr_used_conns;
5924
Willy Tarreau18ed7892020-07-02 19:05:30 +02005925 if (exceed_conns <= 0)
5926 goto remove;
5927
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005928 /* check all threads starting with ours */
5929 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005930 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005931 int j;
5932 int did_remove = 0;
5933
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005934 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5935 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005936
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005937 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005938 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 +02005939 if (j > 0)
5940 did_remove = 1;
5941 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005942 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 +01005943 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005944 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005945
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005946 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005947 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005948
5949 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5950 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005951 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005952remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005953 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005954
5955 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005956 /* There are still more idle connections, add the
5957 * server back in the tree.
5958 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005959 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005960 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005961 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005962 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005963 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005964 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5965
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005966 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005967 return task;
5968}
Olivier Houchard88698d92019-04-16 19:07:22 +02005969
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005970/* Close remaining idle connections. This functions is designed to be run on
5971 * process shutdown. This guarantees a proper socket shutdown to avoid
5972 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5973 * bypassed.
5974 *
5975 * This function is not thread-safe so it must only be called via a global
5976 * deinit function.
5977 */
5978static void srv_close_idle_conns(struct server *srv)
5979{
5980 struct eb_root **cleaned_tree;
5981 int i;
5982
5983 for (i = 0; i < global.nbthread; ++i) {
5984 struct eb_root *conn_trees[] = {
5985 &srv->per_thr[i].idle_conns,
5986 &srv->per_thr[i].safe_conns,
5987 &srv->per_thr[i].avail_conns,
5988 NULL
5989 };
5990
5991 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5992 while (!eb_is_empty(*cleaned_tree)) {
5993 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5994 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5995 struct connection *conn = conn_hash_node->conn;
5996
5997 if (conn->ctrl->ctrl_close)
5998 conn->ctrl->ctrl_close(conn);
5999 ebmb_delete(node);
6000 }
6001 }
6002 }
6003}
6004
6005REGISTER_SERVER_DEINIT(srv_close_idle_conns);
6006
Willy Tarreau76cc6992020-07-01 18:49:24 +02006007/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
6008static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006009 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02006010 char **err)
6011{
6012 if (too_many_args(1, args, err, NULL))
6013 return -1;
6014
6015 if (strcmp(args[1], "on") == 0)
6016 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
6017 else if (strcmp(args[1], "off") == 0)
6018 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
6019 else {
6020 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
6021 return -1;
6022 }
6023 return 0;
6024}
6025
Olivier Houchard88698d92019-04-16 19:07:22 +02006026/* config parser for global "tune.pool-{low,high}-fd-ratio" */
6027static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006028 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02006029 char **err)
6030{
6031 int arg = -1;
6032
6033 if (too_many_args(1, args, err, NULL))
6034 return -1;
6035
6036 if (*(args[1]) != 0)
6037 arg = atoi(args[1]);
6038
6039 if (arg < 0 || arg > 100) {
6040 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
6041 return -1;
6042 }
6043
6044 if (args[0][10] == 'h')
6045 global.tune.pool_high_ratio = arg;
6046 else
6047 global.tune.pool_low_ratio = arg;
6048 return 0;
6049}
6050
6051/* config keyword parsers */
6052static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02006053 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02006054 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
6055 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
6056 { 0, NULL, NULL }
6057}};
6058
6059INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
6060
Baptiste Assmanna68ca962015-04-14 01:15:08 +02006061/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02006062 * Local variables:
6063 * c-indent-level: 8
6064 * c-basic-offset: 8
6065 * End:
6066 */