blob: f6e3aa94399bb02363a3a6e6983230949eae8539 [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
508/* Parse the "init-addr" server keyword */
509static int srv_parse_init_addr(char **args, int *cur_arg,
510 struct proxy *curproxy, struct server *newsrv, char **err)
511{
512 char *p, *end;
513 int done;
514 struct sockaddr_storage sa;
515
516 newsrv->init_addr_methods = 0;
517 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
518
519 for (p = args[*cur_arg + 1]; *p; p = end) {
520 /* cut on next comma */
521 for (end = p; *end && *end != ','; end++);
522 if (*end)
523 *(end++) = 0;
524
525 memset(&sa, 0, sizeof(sa));
526 if (strcmp(p, "libc") == 0) {
527 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
528 }
529 else if (strcmp(p, "last") == 0) {
530 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
531 }
532 else if (strcmp(p, "none") == 0) {
533 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
534 }
535 else if (str2ip2(p, &sa, 0)) {
536 if (is_addr(&newsrv->init_addr)) {
537 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
538 args[*cur_arg], p);
539 return ERR_ALERT | ERR_FATAL;
540 }
541 newsrv->init_addr = sa;
542 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
543 }
544 else {
545 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
546 args[*cur_arg], p);
547 return ERR_ALERT | ERR_FATAL;
548 }
549 if (!done) {
550 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
551 args[*cur_arg], p);
552 return ERR_ALERT | ERR_FATAL;
553 }
554 }
555
556 return 0;
557}
558
559/* Parse the "log-proto" server keyword */
560static int srv_parse_log_proto(char **args, int *cur_arg,
561 struct proxy *curproxy, struct server *newsrv, char **err)
562{
563 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
564 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
565 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
566 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
567 else {
568 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
569 args[*cur_arg], args[*cur_arg + 1]);
570 return ERR_ALERT | ERR_FATAL;
571 }
572
573 return 0;
574}
575
576/* Parse the "maxconn" server keyword */
577static int srv_parse_maxconn(char **args, int *cur_arg,
578 struct proxy *curproxy, struct server *newsrv, char **err)
579{
580 newsrv->maxconn = atol(args[*cur_arg + 1]);
581 return 0;
582}
583
584/* Parse the "maxqueue" server keyword */
585static int srv_parse_maxqueue(char **args, int *cur_arg,
586 struct proxy *curproxy, struct server *newsrv, char **err)
587{
588 newsrv->maxqueue = atol(args[*cur_arg + 1]);
589 return 0;
590}
591
592/* Parse the "minconn" server keyword */
593static int srv_parse_minconn(char **args, int *cur_arg,
594 struct proxy *curproxy, struct server *newsrv, char **err)
595{
596 newsrv->minconn = atol(args[*cur_arg + 1]);
597 return 0;
598}
599
Willy Tarreau9c538e02019-01-23 10:21:49 +0100600static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
601{
602 char *arg;
603
604 arg = args[*cur_arg + 1];
605 if (!*arg) {
606 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
607 return ERR_ALERT | ERR_FATAL;
608 }
609 newsrv->max_reuse = atoi(arg);
610
611 return 0;
612}
613
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100614static 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 +0100615{
616 const char *res;
617 char *arg;
618 unsigned int time;
619
620 arg = args[*cur_arg + 1];
621 if (!*arg) {
622 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
623 return ERR_ALERT | ERR_FATAL;
624 }
625 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200626 if (res == PARSE_TIME_OVER) {
627 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
628 args[*cur_arg+1], args[*cur_arg]);
629 return ERR_ALERT | ERR_FATAL;
630 }
631 else if (res == PARSE_TIME_UNDER) {
632 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
633 args[*cur_arg+1], args[*cur_arg]);
634 return ERR_ALERT | ERR_FATAL;
635 }
636 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100637 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
638 *res, args[*cur_arg]);
639 return ERR_ALERT | ERR_FATAL;
640 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100641 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100642
643 return 0;
644}
645
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200646static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
647{
648 char *arg;
649
650 arg = args[*cur_arg + 1];
651 if (!*arg) {
652 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
653 return ERR_ALERT | ERR_FATAL;
654 }
655
656 newsrv->low_idle_conns = atoi(arg);
657 return 0;
658}
659
Olivier Houchard006e3102018-12-10 18:30:32 +0100660static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
661{
662 char *arg;
663
664 arg = args[*cur_arg + 1];
665 if (!*arg) {
666 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
667 return ERR_ALERT | ERR_FATAL;
668 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100669
Olivier Houchard006e3102018-12-10 18:30:32 +0100670 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100671 if ((int)newsrv->max_idle_conns < -1) {
672 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
673 return ERR_ALERT | ERR_FATAL;
674 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100675
676 return 0;
677}
678
Willy Tarreaudff55432012-10-10 17:51:05 +0200679/* parse the "id" server keyword */
680static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
681{
682 struct eb32_node *node;
683
684 if (!*args[*cur_arg + 1]) {
685 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
686 return ERR_ALERT | ERR_FATAL;
687 }
688
689 newsrv->puid = atol(args[*cur_arg + 1]);
690 newsrv->conf.id.key = newsrv->puid;
691
692 if (newsrv->puid <= 0) {
693 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
694 return ERR_ALERT | ERR_FATAL;
695 }
696
697 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
698 if (node) {
699 struct server *target = container_of(node, struct server, conf.id);
700 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
701 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
702 target->id);
703 return ERR_ALERT | ERR_FATAL;
704 }
705
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200706 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200707 return 0;
708}
709
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100710/* Parse the "namespace" server keyword */
711static int srv_parse_namespace(char **args, int *cur_arg,
712 struct proxy *curproxy, struct server *newsrv, char **err)
713{
Willy Tarreaue5733232019-05-22 19:24:06 +0200714#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100715 char *arg;
716
717 arg = args[*cur_arg + 1];
718 if (!*arg) {
719 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
720 return ERR_ALERT | ERR_FATAL;
721 }
722
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100723 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100724 /* Use the namespace associated with the connection (if present). */
725 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
726 return 0;
727 }
728
729 /*
730 * As this parser may be called several times for the same 'default-server'
731 * object, or for a new 'server' instance deriving from a 'default-server'
732 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
733 */
734 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
735
736 newsrv->netns = netns_store_lookup(arg, strlen(arg));
737 if (!newsrv->netns)
738 newsrv->netns = netns_store_insert(arg);
739
740 if (!newsrv->netns) {
741 memprintf(err, "Cannot open namespace '%s'", arg);
742 return ERR_ALERT | ERR_FATAL;
743 }
744
745 return 0;
746#else
747 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
748 return ERR_ALERT | ERR_FATAL;
749#endif
750}
751
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100752/* Parse the "no-backup" server keyword */
753static int srv_parse_no_backup(char **args, int *cur_arg,
754 struct proxy *curproxy, struct server *newsrv, char **err)
755{
756 newsrv->flags &= ~SRV_F_BACKUP;
757 return 0;
758}
759
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100760
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100761/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200762static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100763{
764 srv->pp_opts &= ~flags;
765 return 0;
766}
767
768/* Parse the "no-send-proxy" server keyword */
769static int srv_parse_no_send_proxy(char **args, int *cur_arg,
770 struct proxy *curproxy, struct server *newsrv, char **err)
771{
772 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
773}
774
775/* Parse the "no-send-proxy-v2" server keyword */
776static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
777 struct proxy *curproxy, struct server *newsrv, char **err)
778{
779 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
780}
781
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200782/* Parse the "no-tfo" server keyword */
783static int srv_parse_no_tfo(char **args, int *cur_arg,
784 struct proxy *curproxy, struct server *newsrv, char **err)
785{
786 newsrv->flags &= ~SRV_F_FASTOPEN;
787 return 0;
788}
789
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100790/* Parse the "non-stick" server keyword */
791static int srv_parse_non_stick(char **args, int *cur_arg,
792 struct proxy *curproxy, struct server *newsrv, char **err)
793{
794 newsrv->flags |= SRV_F_NON_STICK;
795 return 0;
796}
797
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100798/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200799static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100800{
801 srv->pp_opts |= flags;
802 return 0;
803}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200804/* parse the "proto" server keyword */
805static int srv_parse_proto(char **args, int *cur_arg,
806 struct proxy *px, struct server *newsrv, char **err)
807{
808 struct ist proto;
809
810 if (!*args[*cur_arg + 1]) {
811 memprintf(err, "'%s' : missing value", args[*cur_arg]);
812 return ERR_ALERT | ERR_FATAL;
813 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100814 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200815 newsrv->mux_proto = get_mux_proto(proto);
816 if (!newsrv->mux_proto) {
817 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
818 return ERR_ALERT | ERR_FATAL;
819 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200820 return 0;
821}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100822
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100823/* parse the "proxy-v2-options" */
824static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
825 struct proxy *px, struct server *newsrv, char **err)
826{
827 char *p, *n;
828 for (p = args[*cur_arg+1]; p; p = n) {
829 n = strchr(p, ',');
830 if (n)
831 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100832 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100833 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100834 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100835 newsrv->pp_opts |= SRV_PP_V2_SSL;
836 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100837 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100838 newsrv->pp_opts |= SRV_PP_V2_SSL;
839 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100840 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100841 newsrv->pp_opts |= SRV_PP_V2_SSL;
842 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100843 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100844 newsrv->pp_opts |= SRV_PP_V2_SSL;
845 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100846 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100847 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100848 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100849 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100850 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100851 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100852 } else
853 goto fail;
854 }
855 return 0;
856 fail:
857 if (err)
858 memprintf(err, "'%s' : proxy v2 option not implemented", p);
859 return ERR_ALERT | ERR_FATAL;
860}
861
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100862/* Parse the "observe" server keyword */
863static int srv_parse_observe(char **args, int *cur_arg,
864 struct proxy *curproxy, struct server *newsrv, char **err)
865{
866 char *arg;
867
868 arg = args[*cur_arg + 1];
869 if (!*arg) {
870 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
871 return ERR_ALERT | ERR_FATAL;
872 }
873
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100874 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100875 newsrv->observe = HANA_OBS_NONE;
876 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100877 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100878 newsrv->observe = HANA_OBS_LAYER4;
879 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100880 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100881 if (curproxy->mode != PR_MODE_HTTP) {
882 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
883 return ERR_ALERT;
884 }
885 newsrv->observe = HANA_OBS_LAYER7;
886 }
887 else {
888 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
889 "but got '%s'\n", args[*cur_arg], arg);
890 return ERR_ALERT | ERR_FATAL;
891 }
892
893 return 0;
894}
895
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100896/* Parse the "on-error" server keyword */
897static int srv_parse_on_error(char **args, int *cur_arg,
898 struct proxy *curproxy, struct server *newsrv, char **err)
899{
900 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
901 newsrv->onerror = HANA_ONERR_FASTINTER;
902 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
903 newsrv->onerror = HANA_ONERR_FAILCHK;
904 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
905 newsrv->onerror = HANA_ONERR_SUDDTH;
906 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
907 newsrv->onerror = HANA_ONERR_MARKDWN;
908 else {
909 memprintf(err, "'%s' expects one of 'fastinter', "
910 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
911 args[*cur_arg], args[*cur_arg + 1]);
912 return ERR_ALERT | ERR_FATAL;
913 }
914
915 return 0;
916}
917
918/* Parse the "on-marked-down" server keyword */
919static int srv_parse_on_marked_down(char **args, int *cur_arg,
920 struct proxy *curproxy, struct server *newsrv, char **err)
921{
922 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
923 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
924 else {
925 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
926 args[*cur_arg], args[*cur_arg + 1]);
927 return ERR_ALERT | ERR_FATAL;
928 }
929
930 return 0;
931}
932
933/* Parse the "on-marked-up" server keyword */
934static int srv_parse_on_marked_up(char **args, int *cur_arg,
935 struct proxy *curproxy, struct server *newsrv, char **err)
936{
937 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
938 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
939 else {
940 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
941 args[*cur_arg], args[*cur_arg + 1]);
942 return ERR_ALERT | ERR_FATAL;
943 }
944
945 return 0;
946}
947
Frédéric Lécaille16186232017-03-14 16:42:49 +0100948/* Parse the "redir" server keyword */
949static int srv_parse_redir(char **args, int *cur_arg,
950 struct proxy *curproxy, struct server *newsrv, char **err)
951{
952 char *arg;
953
954 arg = args[*cur_arg + 1];
955 if (!*arg) {
956 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
957 return ERR_ALERT | ERR_FATAL;
958 }
959
960 free(newsrv->rdr_pfx);
961 newsrv->rdr_pfx = strdup(arg);
962 newsrv->rdr_len = strlen(arg);
963
964 return 0;
965}
966
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100967/* Parse the "resolvers" server keyword */
968static int srv_parse_resolvers(char **args, int *cur_arg,
969 struct proxy *curproxy, struct server *newsrv, char **err)
970{
971 free(newsrv->resolvers_id);
972 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
973 return 0;
974}
975
976/* Parse the "resolve-net" server keyword */
977static int srv_parse_resolve_net(char **args, int *cur_arg,
978 struct proxy *curproxy, struct server *newsrv, char **err)
979{
980 char *p, *e;
981 unsigned char mask;
982 struct resolv_options *opt;
983
984 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
985 memprintf(err, "'%s' expects a list of networks.",
986 args[*cur_arg]);
987 return ERR_ALERT | ERR_FATAL;
988 }
989
990 opt = &newsrv->resolv_opts;
991
992 /* Split arguments by comma, and convert it from ipv4 or ipv6
993 * string network in in_addr or in6_addr.
994 */
995 p = args[*cur_arg + 1];
996 e = p;
997 while (*p != '\0') {
998 /* If no room available, return error. */
999 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1000 memprintf(err, "'%s' exceed %d networks.",
1001 args[*cur_arg], SRV_MAX_PREF_NET);
1002 return ERR_ALERT | ERR_FATAL;
1003 }
1004 /* look for end or comma. */
1005 while (*e != ',' && *e != '\0')
1006 e++;
1007 if (*e == ',') {
1008 *e = '\0';
1009 e++;
1010 }
1011 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1012 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1013 /* Try to convert input string from ipv4 or ipv6 network. */
1014 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1015 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1016 &mask)) {
1017 /* Try to convert input string from ipv6 network. */
1018 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1019 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1020 } else {
1021 /* All network conversions fail, return error. */
1022 memprintf(err, "'%s' invalid network '%s'.",
1023 args[*cur_arg], p);
1024 return ERR_ALERT | ERR_FATAL;
1025 }
1026 opt->pref_net_nb++;
1027 p = e;
1028 }
1029
1030 return 0;
1031}
1032
1033/* Parse the "resolve-opts" server keyword */
1034static int srv_parse_resolve_opts(char **args, int *cur_arg,
1035 struct proxy *curproxy, struct server *newsrv, char **err)
1036{
1037 char *p, *end;
1038
1039 for (p = args[*cur_arg + 1]; *p; p = end) {
1040 /* cut on next comma */
1041 for (end = p; *end && *end != ','; end++);
1042 if (*end)
1043 *(end++) = 0;
1044
1045 if (strcmp(p, "allow-dup-ip") == 0) {
1046 newsrv->resolv_opts.accept_duplicate_ip = 1;
1047 }
1048 else if (strcmp(p, "ignore-weight") == 0) {
1049 newsrv->resolv_opts.ignore_weight = 1;
1050 }
1051 else if (strcmp(p, "prevent-dup-ip") == 0) {
1052 newsrv->resolv_opts.accept_duplicate_ip = 0;
1053 }
1054 else {
1055 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1056 args[*cur_arg], p);
1057 return ERR_ALERT | ERR_FATAL;
1058 }
1059 }
1060
1061 return 0;
1062}
1063
1064/* Parse the "resolve-prefer" server keyword */
1065static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1066 struct proxy *curproxy, struct server *newsrv, char **err)
1067{
1068 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1069 newsrv->resolv_opts.family_prio = AF_INET;
1070 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1071 newsrv->resolv_opts.family_prio = AF_INET6;
1072 else {
1073 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1074 args[*cur_arg]);
1075 return ERR_ALERT | ERR_FATAL;
1076 }
1077
1078 return 0;
1079}
1080
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001081/* Parse the "send-proxy" server keyword */
1082static int srv_parse_send_proxy(char **args, int *cur_arg,
1083 struct proxy *curproxy, struct server *newsrv, char **err)
1084{
1085 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1086}
1087
1088/* Parse the "send-proxy-v2" server keyword */
1089static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1090 struct proxy *curproxy, struct server *newsrv, char **err)
1091{
1092 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1093}
1094
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001095/* Parse the "slowstart" server keyword */
1096static int srv_parse_slowstart(char **args, int *cur_arg,
1097 struct proxy *curproxy, struct server *newsrv, char **err)
1098{
1099 /* slowstart is stored in seconds */
1100 unsigned int val;
1101 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1102
1103 if (time_err == PARSE_TIME_OVER) {
1104 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1105 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1106 return ERR_ALERT | ERR_FATAL;
1107 }
1108 else if (time_err == PARSE_TIME_UNDER) {
1109 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1110 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1111 return ERR_ALERT | ERR_FATAL;
1112 }
1113 else if (time_err) {
1114 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1115 *time_err, newsrv->id);
1116 return ERR_ALERT | ERR_FATAL;
1117 }
1118 newsrv->slowstart = (val + 999) / 1000;
1119
1120 return 0;
1121}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001122
1123/* Parse the "source" server keyword */
1124static int srv_parse_source(char **args, int *cur_arg,
1125 struct proxy *curproxy, struct server *newsrv, char **err)
1126{
1127 char *errmsg;
1128 int port_low, port_high;
1129 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001130
1131 errmsg = NULL;
1132
1133 if (!*args[*cur_arg + 1]) {
1134 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1135 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1136 goto err;
1137 }
1138
1139 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001140 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1141 &errmsg, NULL, NULL,
1142 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 +01001143 if (!sk) {
1144 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1145 goto err;
1146 }
1147
Frédéric Lécailledba97072017-03-17 15:33:50 +01001148 newsrv->conn_src.opts |= CO_SRC_BIND;
1149 newsrv->conn_src.source_addr = *sk;
1150
1151 if (port_low != port_high) {
1152 int i;
1153
Frédéric Lécailledba97072017-03-17 15:33:50 +01001154 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001155 if (!newsrv->conn_src.sport_range) {
1156 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1157 goto err;
1158 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001159 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1160 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1161 }
1162
1163 *cur_arg += 2;
1164 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001165 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001166#if defined(CONFIG_HAP_TRANSPARENT)
1167 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001168 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1169 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001170 goto err;
1171 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001172 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001173 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1174 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1175 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001176 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001177 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1178 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1179 }
1180 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1181 char *name, *end;
1182
1183 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001184 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001185 name++;
1186
1187 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001188 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001189 end++;
1190
1191 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1192 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1193 free(newsrv->conn_src.bind_hdr_name);
1194 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001195 if (!newsrv->conn_src.bind_hdr_name) {
1196 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1197 goto err;
1198 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001199 newsrv->conn_src.bind_hdr_len = end - name;
1200 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1201 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1202 newsrv->conn_src.bind_hdr_occ = -1;
1203
1204 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001205 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001206 end++;
1207 if (*end == ',') {
1208 end++;
1209 name = end;
1210 if (*end == '-')
1211 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001212 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001213 end++;
1214 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1215 }
1216
1217 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1219 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001220 goto err;
1221 }
1222 }
1223 else {
1224 struct sockaddr_storage *sk;
1225 int port1, port2;
1226
1227 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001228 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1229 &errmsg, NULL, NULL,
1230 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001231 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001233 goto err;
1234 }
1235
Frédéric Lécailledba97072017-03-17 15:33:50 +01001236 newsrv->conn_src.tproxy_addr = *sk;
1237 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1238 }
1239 global.last_checks |= LSTCHK_NETADM;
1240 *cur_arg += 2;
1241 continue;
1242#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001243 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 +01001244 goto err;
1245#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1246 } /* "usesrc" */
1247
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001248 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001249#ifdef SO_BINDTODEVICE
1250 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001252 goto err;
1253 }
1254 free(newsrv->conn_src.iface_name);
1255 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1256 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1257 global.last_checks |= LSTCHK_NETADM;
1258#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001259 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001260 goto err;
1261#endif
1262 *cur_arg += 2;
1263 continue;
1264 }
1265 /* this keyword in not an option of "source" */
1266 break;
1267 } /* while */
1268
1269 return 0;
1270
1271 err:
1272 free(errmsg);
1273 return ERR_ALERT | ERR_FATAL;
1274}
1275
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001276/* Parse the "stick" server keyword */
1277static int srv_parse_stick(char **args, int *cur_arg,
1278 struct proxy *curproxy, struct server *newsrv, char **err)
1279{
1280 newsrv->flags &= ~SRV_F_NON_STICK;
1281 return 0;
1282}
1283
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001284/* Parse the "track" server keyword */
1285static int srv_parse_track(char **args, int *cur_arg,
1286 struct proxy *curproxy, struct server *newsrv, char **err)
1287{
1288 char *arg;
1289
1290 arg = args[*cur_arg + 1];
1291 if (!*arg) {
1292 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1293 return ERR_ALERT | ERR_FATAL;
1294 }
1295
1296 free(newsrv->trackit);
1297 newsrv->trackit = strdup(arg);
1298
1299 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001300}
1301
1302/* Parse the "socks4" server keyword */
1303static int srv_parse_socks4(char **args, int *cur_arg,
1304 struct proxy *curproxy, struct server *newsrv, char **err)
1305{
1306 char *errmsg;
1307 int port_low, port_high;
1308 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001309
1310 errmsg = NULL;
1311
1312 if (!*args[*cur_arg + 1]) {
1313 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1314 goto err;
1315 }
1316
1317 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001318 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1319 &errmsg, NULL, NULL,
1320 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001321 if (!sk) {
1322 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1323 goto err;
1324 }
1325
Alexander Liu2a54bb72019-05-22 19:44:48 +08001326 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1327 newsrv->socks4_addr = *sk;
1328
Alexander Liu2a54bb72019-05-22 19:44:48 +08001329 return 0;
1330
1331 err:
1332 free(errmsg);
1333 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001334}
1335
Frédéric Lécailledba97072017-03-17 15:33:50 +01001336
Willy Tarreau034c88c2017-01-23 23:36:45 +01001337/* parse the "tfo" server keyword */
1338static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1339{
1340 newsrv->flags |= SRV_F_FASTOPEN;
1341 return 0;
1342}
1343
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001344/* parse the "usesrc" server keyword */
1345static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1346{
1347 memprintf(err, "'%s' only allowed after a '%s' statement.",
1348 "usesrc", "source");
1349 return ERR_ALERT | ERR_FATAL;
1350}
1351
1352/* parse the "weight" server keyword */
1353static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1354{
1355 int w;
1356
1357 w = atol(args[*cur_arg + 1]);
1358 if (w < 0 || w > SRV_UWGHT_MAX) {
1359 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1360 newsrv->id, SRV_UWGHT_MAX, w);
1361 return ERR_ALERT | ERR_FATAL;
1362 }
1363 newsrv->uweight = newsrv->iweight = w;
1364
1365 return 0;
1366}
1367
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001368/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001369 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001370 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001371 *
1372 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001373 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001374void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001375{
Willy Tarreau751153e2021-02-17 13:33:24 +01001376 struct stream *stream;
1377 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001378 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001379
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001380 for (thr = 0; thr < global.nbthread; thr++)
1381 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1382 if (stream->srv_conn == srv)
1383 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001384}
1385
1386/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001387 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001388 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001389 *
1390 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001391 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001392void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001393{
1394 struct server *srv;
1395
1396 for (srv = px->srv; srv != NULL; srv = srv->next)
1397 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001398 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001399}
1400
Willy Tarreaubda92272014-05-20 21:55:30 +02001401/* Appends some information to a message string related to a server going UP or
1402 * DOWN. If both <forced> and <reason> are null and the server tracks another
1403 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001404 * If <check> is non-null, an entire string describing the check result will be
1405 * appended after a comma and a space (eg: to report some information from the
1406 * check that changed the state). In the other case, the string will be built
1407 * using the check results stored into the struct server if present.
1408 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001409 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001410 *
1411 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001412 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001413void srv_append_status(struct buffer *msg, struct server *s,
1414 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001415{
Emeric Brun5a133512017-10-19 14:42:30 +02001416 short status = s->op_st_chg.status;
1417 short code = s->op_st_chg.code;
1418 long duration = s->op_st_chg.duration;
1419 char *desc = s->op_st_chg.reason;
1420
1421 if (check) {
1422 status = check->status;
1423 code = check->code;
1424 duration = check->duration;
1425 desc = check->desc;
1426 }
1427
1428 if (status != -1) {
1429 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1430
1431 if (status >= HCHK_STATUS_L57DATA)
1432 chunk_appendf(msg, ", code: %d", code);
1433
1434 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001435 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001436
1437 chunk_appendf(msg, ", info: \"");
1438
1439 chunk_initlen(&src, desc, 0, strlen(desc));
1440 chunk_asciiencode(msg, &src, '"');
1441
1442 chunk_appendf(msg, "\"");
1443 }
1444
1445 if (duration >= 0)
1446 chunk_appendf(msg, ", check duration: %ldms", duration);
1447 }
1448 else if (desc && *desc) {
1449 chunk_appendf(msg, ", %s", desc);
1450 }
1451 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001452 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001453 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001454
1455 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001456 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001457 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1458 " %d sessions active, %d requeued, %d remaining in queue",
1459 s->proxy->srv_act, s->proxy->srv_bck,
1460 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001461 s->cur_sess, xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001462 else
1463 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1464 " %d sessions requeued, %d total in queue",
1465 s->proxy->srv_act, s->proxy->srv_bck,
1466 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001467 xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001468 }
1469}
1470
Emeric Brun5a133512017-10-19 14:42:30 +02001471/* Marks server <s> down, regardless of its checks' statuses. The server is
1472 * registered in a list to postpone the counting of the remaining servers on
1473 * the proxy and transfers queued streams whenever possible to other servers at
1474 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1475 * non-null as the reason for going down or the available data from the check
1476 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001477 *
1478 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001479 */
Emeric Brun5a133512017-10-19 14:42:30 +02001480void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001481{
1482 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001483
Emeric Brun64cc49c2017-10-03 14:46:45 +02001484 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001485 return;
1486
Emeric Brun52a91d32017-08-31 14:41:55 +02001487 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001488 *s->op_st_chg.reason = 0;
1489 s->op_st_chg.status = -1;
1490 if (reason) {
1491 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1492 }
1493 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001494 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001495 s->op_st_chg.code = check->code;
1496 s->op_st_chg.status = check->status;
1497 s->op_st_chg.duration = check->duration;
1498 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001499
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001500 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001501 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001502
Emeric Brun9f0b4582017-10-23 14:39:51 +02001503 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001504 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001505 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001506 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001507 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001508}
1509
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001510/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001511 * in maintenance. The server is registered in a list to postpone the counting
1512 * of the remaining servers on the proxy and tries to grab requests from the
1513 * proxy at a sync point. Maintenance servers are ignored. It stores the
1514 * <reason> if non-null as the reason for going down or the available data
1515 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001516 *
1517 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001518 */
Emeric Brun5a133512017-10-19 14:42:30 +02001519void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001520{
1521 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001522
Emeric Brun64cc49c2017-10-03 14:46:45 +02001523 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001524 return;
1525
Emeric Brun52a91d32017-08-31 14:41:55 +02001526 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001527 return;
1528
Emeric Brun52a91d32017-08-31 14:41:55 +02001529 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001530 *s->op_st_chg.reason = 0;
1531 s->op_st_chg.status = -1;
1532 if (reason) {
1533 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1534 }
1535 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001536 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001537 s->op_st_chg.code = check->code;
1538 s->op_st_chg.status = check->status;
1539 s->op_st_chg.duration = check->duration;
1540 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001541
Emeric Brun64cc49c2017-10-03 14:46:45 +02001542 if (s->slowstart <= 0)
1543 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001544
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001545 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001546 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001547
Emeric Brun9f0b4582017-10-23 14:39:51 +02001548 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001549 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001550 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001551 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001552 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001553}
1554
Willy Tarreau8eb77842014-05-21 13:54:57 +02001555/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001556 * isn't in maintenance. The server is registered in a list to postpone the
1557 * counting of the remaining servers on the proxy and tries to grab requests
1558 * from the proxy. Maintenance servers are ignored. It stores the
1559 * <reason> if non-null as the reason for going down or the available data
1560 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001561 * up. Note that it makes use of the trash to build the log strings, so <reason>
1562 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001563 *
1564 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001565 */
Emeric Brun5a133512017-10-19 14:42:30 +02001566void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001567{
1568 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001569
Emeric Brun64cc49c2017-10-03 14:46:45 +02001570 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001571 return;
1572
Emeric Brun52a91d32017-08-31 14:41:55 +02001573 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001574 return;
1575
Emeric Brun52a91d32017-08-31 14:41:55 +02001576 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001577 *s->op_st_chg.reason = 0;
1578 s->op_st_chg.status = -1;
1579 if (reason) {
1580 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1581 }
1582 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001583 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001584 s->op_st_chg.code = check->code;
1585 s->op_st_chg.status = check->status;
1586 s->op_st_chg.duration = check->duration;
1587 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001588
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001589 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001590 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001591
Emeric Brun9f0b4582017-10-23 14:39:51 +02001592 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001593 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001594 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001595 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001596 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001597}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001598
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001599/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1600 * enforce either maint mode or drain mode. It is not allowed to set more than
1601 * one flag at once. The equivalent "inherited" flag is propagated to all
1602 * tracking servers. Maintenance mode disables health checks (but not agent
1603 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001604 * is done. If <cause> is non-null, it will be displayed at the end of the log
1605 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001606 *
1607 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001608 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001609void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001610{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001611 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001612
1613 if (!mode)
1614 return;
1615
1616 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001617 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001618 return;
1619
Emeric Brun52a91d32017-08-31 14:41:55 +02001620 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001621 if (cause)
1622 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1623
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001624 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001625 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001626
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001627 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001628 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1629 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001630 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001631
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001632 /* compute the inherited flag to propagate */
1633 if (mode & SRV_ADMF_MAINT)
1634 mode = SRV_ADMF_IMAINT;
1635 else if (mode & SRV_ADMF_DRAIN)
1636 mode = SRV_ADMF_IDRAIN;
1637
Emeric Brun9f0b4582017-10-23 14:39:51 +02001638 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001639 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001640 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001641 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001642 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001643}
1644
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001645/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1646 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1647 * than one flag at once. The equivalent "inherited" flag is propagated to all
1648 * tracking servers. Leaving maintenance mode re-enables health checks. When
1649 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001650 *
1651 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001652 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001653void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001654{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001655 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001656
1657 if (!mode)
1658 return;
1659
1660 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001661 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001662 return;
1663
Emeric Brun52a91d32017-08-31 14:41:55 +02001664 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001665
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001666 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001667 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001668
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001669 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001670 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1671 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001672 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001673
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001674 if (mode & SRV_ADMF_MAINT)
1675 mode = SRV_ADMF_IMAINT;
1676 else if (mode & SRV_ADMF_DRAIN)
1677 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001678
Emeric Brun9f0b4582017-10-23 14:39:51 +02001679 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001680 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001681 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001682 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001683 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001684}
1685
Willy Tarreau757478e2016-11-03 19:22:19 +01001686/* principle: propagate maint and drain to tracking servers. This is useful
1687 * upon startup so that inherited states are correct.
1688 */
1689static void srv_propagate_admin_state(struct server *srv)
1690{
1691 struct server *srv2;
1692
1693 if (!srv->trackers)
1694 return;
1695
1696 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001697 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001698 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001699 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001700
Emeric Brun52a91d32017-08-31 14:41:55 +02001701 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001702 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001703 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001704 }
1705}
1706
1707/* Compute and propagate the admin states for all servers in proxy <px>.
1708 * Only servers *not* tracking another one are considered, because other
1709 * ones will be handled when the server they track is visited.
1710 */
1711void srv_compute_all_admin_states(struct proxy *px)
1712{
1713 struct server *srv;
1714
1715 for (srv = px->srv; srv; srv = srv->next) {
1716 if (srv->track)
1717 continue;
1718 srv_propagate_admin_state(srv);
1719 }
1720}
1721
Willy Tarreaudff55432012-10-10 17:51:05 +02001722/* Note: must not be declared <const> as its list will be overwritten.
1723 * Please take care of keeping this list alphabetically sorted, doing so helps
1724 * all code contributors.
1725 * Optional keywords are also declared with a NULL ->parse() function so that
1726 * the config parser can report an appropriate error when a known keyword was
1727 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001728 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001729 */
1730static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001731 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001732 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001733 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1734 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001735 { "error-limit", srv_parse_error_limit, 1, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001736 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001737 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1738 { "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 +01001739 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1740 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001741 { "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 +01001742 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001743 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001744 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1745 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1746 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1747 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001748 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001749 { "observe", srv_parse_observe, 1, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
1750 { "on-error", srv_parse_on_error, 1, 1, 1 }, /* Configure the action on check failure */
1751 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 1 }, /* Configure the action when a server is marked down */
1752 { "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 +01001753 { "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 */
1754 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1755 { "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 +01001756 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001757 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001758 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001759 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001760 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001761 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001762 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001763 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1764 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02001765 { "slowstart", srv_parse_slowstart, 1, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001766 { "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 +01001767 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001768 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02001769 { "track", srv_parse_track, 1, 1, 1 }, /* Set the current state of the server, tracking another one */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001770 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001771 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1772 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001773 { NULL, NULL, 0 },
1774}};
1775
Willy Tarreau0108d902018-11-25 19:14:37 +01001776INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001777
Willy Tarreau004e0452013-11-21 11:22:01 +01001778/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001779 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001780 * state is automatically disabled if the time is elapsed. If <must_update> is
1781 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001782 *
1783 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001784 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001785void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001786{
1787 struct proxy *px = sv->proxy;
1788 unsigned w;
1789
1790 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1791 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001792 if (sv->next_state == SRV_ST_STARTING)
1793 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001794 }
1795
1796 /* We must take care of not pushing the server to full throttle during slow starts.
1797 * It must also start immediately, at least at the minimal step when leaving maintenance.
1798 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001799 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001800 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1801 else
1802 w = px->lbprm.wdiv;
1803
Emeric Brun52a91d32017-08-31 14:41:55 +02001804 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001805
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001806 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001807 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001808 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001809}
1810
Willy Tarreaubaaee002006-06-26 02:48:02 +02001811/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001812 * Parses weight_str and configures sv accordingly.
1813 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001814 *
1815 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001816 */
1817const char *server_parse_weight_change_request(struct server *sv,
1818 const char *weight_str)
1819{
1820 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001821 long int w;
1822 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001823
1824 px = sv->proxy;
1825
1826 /* if the weight is terminated with '%', it is set relative to
1827 * the initial weight, otherwise it is absolute.
1828 */
1829 if (!*weight_str)
1830 return "Require <weight> or <weight%>.\n";
1831
Simon Hormanb796afa2013-02-12 10:45:53 +09001832 w = strtol(weight_str, &end, 10);
1833 if (end == weight_str)
1834 return "Empty weight string empty or preceded by garbage";
1835 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001836 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001837 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001838 /* Avoid integer overflow */
1839 if (w > 25600)
1840 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001841 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001842 if (w > 256)
1843 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001844 }
1845 else if (w < 0 || w > 256)
1846 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001847 else if (end[0] != '\0')
1848 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001849
1850 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1851 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1852
1853 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001854 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001855
1856 return NULL;
1857}
1858
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001859/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001860 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1861 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001862 * Returns:
1863 * - error string on error
1864 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001865 *
1866 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001867 */
1868const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001869 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001870{
1871 unsigned char ip[INET6_ADDRSTRLEN];
1872
1873 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001874 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001875 return NULL;
1876 }
1877 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001878 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001879 return NULL;
1880 }
1881
1882 return "Could not understand IP address format.\n";
1883}
1884
Willy Tarreau46b7f532018-08-21 11:54:26 +02001885/*
1886 * Must be called with the server lock held.
1887 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001888const char *server_parse_maxconn_change_request(struct server *sv,
1889 const char *maxconn_str)
1890{
1891 long int v;
1892 char *end;
1893
1894 if (!*maxconn_str)
1895 return "Require <maxconn>.\n";
1896
1897 v = strtol(maxconn_str, &end, 10);
1898 if (end == maxconn_str)
1899 return "maxconn string empty or preceded by garbage";
1900 else if (end[0] != '\0')
1901 return "Trailing garbage in maxconn string";
1902
1903 if (sv->maxconn == sv->minconn) { // static maxconn
1904 sv->maxconn = sv->minconn = v;
1905 } else { // dynamic maxconn
1906 sv->maxconn = v;
1907 }
1908
1909 if (may_dequeue_tasks(sv, sv->proxy))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001910 process_srv_queue(sv);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001911
1912 return NULL;
1913}
1914
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001915static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1916 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001917{
1918 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001919 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001920 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001921 NULL,
1922 };
1923
1924 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001925 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001926
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001927 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001928}
1929
1930static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1931{
1932 struct sample_expr *expr;
1933
1934 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 +01001935 if (!expr) {
1936 memprintf(err, "error detected while parsing sni expression : %s", *err);
1937 return ERR_ALERT | ERR_FATAL;
1938 }
1939
1940 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1941 memprintf(err, "error detected while parsing sni expression : "
1942 " fetch method '%s' extracts information from '%s', "
Amaury Denoyellec008a632021-05-28 11:01:22 +02001943 "none of which is available here.",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001944 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001945 return ERR_ALERT | ERR_FATAL;
1946 }
1947
1948 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1949 release_sample_expr(newsrv->ssl_ctx.sni);
1950 newsrv->ssl_ctx.sni = expr;
1951
1952 return 0;
1953}
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001954
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001955static 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 +01001956{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001957 char *msg = "error encountered while processing ";
1958 char *quote = "'";
1959 char *token = args[cur_arg];
1960
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001961 if (err && *err) {
1962 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001963 msg = *err;
1964 quote = "";
1965 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001966 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001967
1968 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001969 ha_warning("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001970 else
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001971 ha_alert("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001972}
1973
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001974static void srv_conn_src_sport_range_cpy(struct server *srv,
1975 struct server *src)
1976{
1977 int range_sz;
1978
1979 range_sz = src->conn_src.sport_range->size;
1980 if (range_sz > 0) {
1981 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1982 if (srv->conn_src.sport_range != NULL) {
1983 int i;
1984
1985 for (i = 0; i < range_sz; i++) {
1986 srv->conn_src.sport_range->ports[i] =
1987 src->conn_src.sport_range->ports[i];
1988 }
1989 }
1990 }
1991}
1992
1993/*
1994 * Copy <src> server connection source settings to <srv> server everything needed.
1995 */
1996static void srv_conn_src_cpy(struct server *srv, struct server *src)
1997{
1998 srv->conn_src.opts = src->conn_src.opts;
1999 srv->conn_src.source_addr = src->conn_src.source_addr;
2000
2001 /* Source port range copy. */
2002 if (src->conn_src.sport_range != NULL)
2003 srv_conn_src_sport_range_cpy(srv, src);
2004
2005#ifdef CONFIG_HAP_TRANSPARENT
2006 if (src->conn_src.bind_hdr_name != NULL) {
2007 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2008 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2009 }
2010 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2011 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2012#endif
2013 if (src->conn_src.iface_name != NULL)
2014 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
2015}
2016
2017/*
2018 * Copy <src> server SSL settings to <srv> server allocating
2019 * everything needed.
2020 */
2021#if defined(USE_OPENSSL)
2022static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
2023{
2024 if (src->ssl_ctx.ca_file != NULL)
2025 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2026 if (src->ssl_ctx.crl_file != NULL)
2027 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002028
2029 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2030
Remi Tricot-Le Breton0498fa42021-07-13 18:28:22 +02002031 srv->ssl_ctx.ctx = src->ssl_ctx.ctx;
2032
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002033 if (src->ssl_ctx.verify_host != NULL)
2034 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2035 if (src->ssl_ctx.ciphers != NULL)
2036 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002037 if (src->ssl_ctx.options)
2038 srv->ssl_ctx.options = src->ssl_ctx.options;
2039 if (src->ssl_ctx.methods.flags)
2040 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2041 if (src->ssl_ctx.methods.min)
2042 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2043 if (src->ssl_ctx.methods.max)
2044 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2045
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002046 if (src->ssl_ctx.ciphersuites != NULL)
2047 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002048 if (src->sni_expr != NULL)
2049 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002050
Olivier Houchardc7566002018-11-20 23:33:50 +01002051 if (src->ssl_ctx.alpn_str) {
2052 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2053 if (srv->ssl_ctx.alpn_str) {
2054 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2055 src->ssl_ctx.alpn_len);
2056 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2057 }
2058 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002059
Olivier Houchardc7566002018-11-20 23:33:50 +01002060 if (src->ssl_ctx.npn_str) {
2061 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2062 if (srv->ssl_ctx.npn_str) {
2063 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2064 src->ssl_ctx.npn_len);
2065 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2066 }
2067 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002068}
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002069
2070/* Activate ssl on server <s>.
2071 * do nothing if there is no change to apply
2072 *
2073 * Must be called with the server lock held.
2074 */
2075void srv_set_ssl(struct server *s, int use_ssl)
2076{
2077 if (s->use_ssl == use_ssl)
2078 return;
2079
2080 s->use_ssl = use_ssl;
2081 if (s->use_ssl)
2082 s->xprt = xprt_get(XPRT_SSL);
2083 else
2084 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
2085}
2086
2087#endif /* USE_OPENSSL */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002088
2089/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002090 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002091 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002092 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002093 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002094int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002095{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002096 char *hostname_dn;
2097 int hostname_len, hostname_dn_len;
2098
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002099 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002100 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002101
Christopher Faulet67957bd2017-09-27 11:00:59 +02002102 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002103 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02002104 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002105 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002106 if (hostname_dn_len == -1)
2107 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002108
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002109
Christopher Faulet67957bd2017-09-27 11:00:59 +02002110 free(srv->hostname);
2111 free(srv->hostname_dn);
2112 srv->hostname = strdup(hostname);
2113 srv->hostname_dn = strdup(hostname_dn);
2114 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002115 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002116 goto err;
2117
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002118 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002119
2120 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002121 ha_free(&srv->hostname);
2122 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002123 return -1;
2124}
2125
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002126/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002127 * Copy <src> server settings to <srv> server allocating
2128 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002129 * This function is not supposed to be called at any time, but only
2130 * during server settings parsing or during server allocations from
2131 * a server template, and just after having calloc()'ed a new server.
2132 * So, <src> may only be a default server (when parsing server settings)
2133 * or a server template (during server allocations from a server template).
2134 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2135 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002136 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002137static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002138{
2139 /* Connection source settings copy */
2140 srv_conn_src_cpy(srv, src);
2141
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002142 if (srv_tmpl) {
2143 srv->addr = src->addr;
2144 srv->svc_port = src->svc_port;
2145 }
2146
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002147 srv->pp_opts = src->pp_opts;
2148 if (src->rdr_pfx != NULL) {
2149 srv->rdr_pfx = strdup(src->rdr_pfx);
2150 srv->rdr_len = src->rdr_len;
2151 }
2152 if (src->cookie != NULL) {
2153 srv->cookie = strdup(src->cookie);
2154 srv->cklen = src->cklen;
2155 }
2156 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002157 srv->check.addr = src->check.addr;
2158 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002159 srv->check.use_ssl = src->check.use_ssl;
2160 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002161 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002162 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002163 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002164 /* Note: 'flags' field has potentially been already initialized. */
2165 srv->flags |= src->flags;
2166 srv->do_check = src->do_check;
2167 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002168 srv->check.inter = src->check.inter;
2169 srv->check.fastinter = src->check.fastinter;
2170 srv->check.downinter = src->check.downinter;
2171 srv->agent.use_ssl = src->agent.use_ssl;
2172 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002173
2174 if (src->agent.tcpcheck_rules) {
2175 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2176 if (srv->agent.tcpcheck_rules) {
2177 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2178 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2179 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2180 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2181 &src->agent.tcpcheck_rules->preset_vars);
2182 }
2183 }
2184
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002185 srv->agent.inter = src->agent.inter;
2186 srv->agent.fastinter = src->agent.fastinter;
2187 srv->agent.downinter = src->agent.downinter;
2188 srv->maxqueue = src->maxqueue;
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02002189 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002190 srv->minconn = src->minconn;
2191 srv->maxconn = src->maxconn;
2192 srv->slowstart = src->slowstart;
2193 srv->observe = src->observe;
2194 srv->onerror = src->onerror;
2195 srv->onmarkeddown = src->onmarkeddown;
2196 srv->onmarkedup = src->onmarkedup;
2197 if (src->trackit != NULL)
2198 srv->trackit = strdup(src->trackit);
2199 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2200 srv->uweight = srv->iweight = src->iweight;
2201
2202 srv->check.send_proxy = src->check.send_proxy;
2203 /* health: up, but will fall down at first failure */
2204 srv->check.rise = srv->check.health = src->check.rise;
2205 srv->check.fall = src->check.fall;
2206
2207 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002208 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2209 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2210 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002211 srv->check.state |= CHK_ST_PAUSED;
2212 srv->check.health = 0;
2213 }
2214
2215 /* health: up but will fall down at first failure */
2216 srv->agent.rise = srv->agent.health = src->agent.rise;
2217 srv->agent.fall = src->agent.fall;
2218
2219 if (src->resolvers_id != NULL)
2220 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002221 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2222 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2223 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2224 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2225 srv->resolv_opts.family_prio = AF_INET6;
2226 memcpy(srv->resolv_opts.pref_net,
2227 src->resolv_opts.pref_net,
2228 sizeof srv->resolv_opts.pref_net);
2229 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002230
2231 srv->init_addr_methods = src->init_addr_methods;
2232 srv->init_addr = src->init_addr;
2233#if defined(USE_OPENSSL)
2234 srv_ssl_settings_cpy(srv, src);
2235#endif
2236#ifdef TCP_USER_TIMEOUT
2237 srv->tcp_ut = src->tcp_ut;
2238#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002239 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002240 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002241 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002242 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002243 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002244
Olivier Houchard8da5f982017-08-04 18:35:36 +02002245 if (srv_tmpl)
2246 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002247
2248 srv->check.via_socks4 = src->check.via_socks4;
2249 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002250}
2251
Willy Tarreau198e92a2021-03-05 10:23:32 +01002252/* allocate a server and attach it to the global servers_list. Returns
2253 * the server on success, otherwise NULL.
2254 */
William Lallemand313bfd12018-10-26 14:47:32 +02002255struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002256{
2257 struct server *srv;
2258
2259 srv = calloc(1, sizeof *srv);
2260 if (!srv)
2261 return NULL;
2262
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002263 srv_take(srv);
2264
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002265 srv->obj_type = OBJ_TYPE_SERVER;
2266 srv->proxy = proxy;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02002267 queue_init(&srv->queue, proxy, srv);
Willy Tarreau2b718102021-04-21 07:32:39 +02002268 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun34067662021-06-11 10:48:45 +02002269 LIST_INIT(&srv->srv_rec_item);
Emeric Brunbd78c912021-06-11 10:08:05 +02002270 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002271
Emeric Brun52a91d32017-08-31 14:41:55 +02002272 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002273 srv->last_change = now.tv_sec;
2274
Christopher Faulet38290462020-04-21 11:46:40 +02002275 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002276 srv->check.status = HCHK_STATUS_INI;
2277 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002278 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002279 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002280
Christopher Faulet38290462020-04-21 11:46:40 +02002281 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002282 srv->agent.status = HCHK_STATUS_INI;
2283 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002284 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002285 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002286#if defined(USE_QUIC)
2287 srv->cids = EB_ROOT_UNIQUE;
2288#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002289
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002290 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002291#ifdef USE_OPENSSL
2292 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2293#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002294
Willy Tarreau975b1552019-06-06 16:25:55 +02002295 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002296 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002297 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002298 return srv;
2299}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002300
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002301/* Increment the server refcount. */
2302void srv_take(struct server *srv)
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002303{
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002304 HA_ATOMIC_INC(&srv->refcount);
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002305}
2306
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002307/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2308 * dynamic servers, its refcount is decremented first. The free operations are
2309 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002310 *
2311 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002312 * when calling srv_drop on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002313 */
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002314struct server *srv_drop(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002315{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002316 struct server *next = NULL;
2317
William Lallemand4c395fc2021-08-20 10:10:15 +02002318 if (!srv)
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002319 goto end;
2320
2321 next = srv->next;
William Lallemand4c395fc2021-08-20 10:10:15 +02002322
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002323 /* For dynamic servers, decrement the reference counter. Only free the
2324 * server when reaching zero.
2325 */
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002326 if (likely(!(global.mode & MODE_STOPPING))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002327 if (HA_ATOMIC_SUB_FETCH(&srv->refcount, 1))
2328 goto end;
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002329 }
2330
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002331 task_destroy(srv->warmup);
Christopher Fauletdcac4182021-06-15 16:17:17 +02002332 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002333
2334 free(srv->id);
2335 free(srv->cookie);
2336 free(srv->hostname);
2337 free(srv->hostname_dn);
2338 free((char*)srv->conf.file);
2339 free(srv->per_thr);
2340 free(srv->curr_idle_thr);
2341 free(srv->resolvers_id);
2342 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002343 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002344
2345 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2346 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2347 xprt_get(XPRT_SSL)->destroy_srv(srv);
2348 }
2349 HA_SPIN_DESTROY(&srv->lock);
2350
Willy Tarreau2b718102021-04-21 07:32:39 +02002351 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002352
2353 EXTRA_COUNTERS_FREE(srv->extra_counters);
2354
2355 free(srv);
2356 srv = NULL;
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002357
2358 end:
2359 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002360}
2361
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02002362/* Remove a server <srv> from a tracking list if <srv> is tracking another
2363 * server. No special care is taken if <srv> is tracked itself by another one :
2364 * this situation should be avoided by the caller.
2365 *
2366 * Not thread-safe.
2367 */
2368static void release_server_track(struct server *srv)
2369{
2370 struct server *strack = srv->track;
2371 struct server **base;
2372
2373 if (!strack)
2374 return;
2375
2376 for (base = &strack->trackers; *base; base = &((*base)->tracknext)) {
2377 if (*base == srv) {
2378 *base = srv->tracknext;
2379 return;
2380 }
2381 }
2382
2383 /* srv not found on the tracking list, this should never happen */
2384 BUG_ON(!*base);
2385}
2386
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002387/*
2388 * Parse as much as possible such a range string argument: low[-high]
2389 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2390 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2391 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2392 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002393 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002394static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2395 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002396{
2397 char *nb_high_arg;
2398
2399 *nb_high = 0;
2400 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002401 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002402
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002403 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002404 *nb_high_arg++ = '\0';
2405 *nb_high = atoi(nb_high_arg);
2406 }
2407 else {
2408 *nb_high += *nb_low;
2409 *nb_low = 1;
2410 }
2411
2412 if (*nb_low < 0 || *nb_high < *nb_low)
2413 return -1;
2414
2415 return 0;
2416}
2417
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002418/* Parse as much as possible such a range string argument: low[-high]
2419 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2420 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2421 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002422 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002423 * initialize a new server on startup.
2424 *
2425 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2426 * Returns 0 if succeeded, -1 if not.
2427 */
2428static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2429 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002430{
2431 chunk_printf(&trash, "%s%d", prefix, nb);
2432 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002433 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002434}
2435
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002436/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002437 * Note that a server template is a special server with
2438 * a few different parameters than a server which has
2439 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002440 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002441 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002442 * initialize a new server on startup.
2443 *
Joseph Herlant44466822018-11-15 08:57:51 -08002444 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002445 * 'srv' template included.
2446 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002447static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002448{
2449 int i;
2450 struct server *newsrv;
2451
2452 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 +02002453 newsrv = new_server(px);
2454 if (!newsrv)
2455 goto err;
2456
Christopher Faulet75bef002020-11-02 22:04:55 +01002457 newsrv->conf.file = strdup(srv->conf.file);
2458 newsrv->conf.line = srv->conf.line;
2459
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002460 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002461 srv_prepare_for_resolution(newsrv, srv->hostname);
Willy Tarreau80527bc2021-10-06 14:48:37 +02002462
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002463 if (newsrv->sni_expr) {
2464 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2465 if (!newsrv->ssl_ctx.sni)
2466 goto err;
2467 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002468
Emeric Brun34067662021-06-11 10:48:45 +02002469 /* append to list of servers available to receive an hostname */
Emeric Bruncaef19e2021-06-14 10:02:18 +02002470 if (newsrv->srvrq)
2471 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun34067662021-06-11 10:48:45 +02002472
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002473 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002474 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002475
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002476 /* Linked backwards first. This will be restablished after parsing. */
2477 newsrv->next = px->srv;
2478 px->srv = newsrv;
2479 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002480 _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 +02002481
2482 return i - srv->tmpl_info.nb_low;
2483
2484 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002485 _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 +02002486 if (newsrv) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002487 release_sample_expr(newsrv->ssl_ctx.sni);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002488 free_check(&newsrv->agent);
2489 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002490 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002491 }
2492 free(newsrv);
2493 return i - srv->tmpl_info.nb_low;
2494}
2495
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002496/* Allocate a new server pointed by <srv> and try to parse the first arguments
2497 * in <args> as an address for a server or an address-range for a template or
2498 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2499 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002500 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002501 * initialize a new server on startup.
2502 *
2503 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2504 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2505 * <srv> will be set to NULL.
2506 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002507static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2508 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002509 int parse_flags)
Willy Tarreau272adea2014-03-31 10:39:59 +02002510{
2511 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002512 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002513 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002514 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002515 int tmpl_range_low = 0, tmpl_range_high = 0;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002516 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002517
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002518 *srv = NULL;
2519
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002520 /* There is no mandatory first arguments for default server. */
2521 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2522 if (parse_flags & SRV_PARSE_TEMPLATE) {
2523 if (!*args[3]) {
2524 /* 'server-template' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002525 ha_alert("'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
2526 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002527 err_code |= ERR_ALERT | ERR_FATAL;
2528 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002529 }
2530
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002531 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002532 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002533 else {
2534 if (!*args[2]) {
2535 /* 'server' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002536 ha_alert("'%s' expects <name> and <addr>[:<port>] as arguments.\n",
2537 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002538 err_code |= ERR_ALERT | ERR_FATAL;
2539 goto out;
2540 }
2541
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002542 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002543 }
2544
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002545 if (err) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002546 ha_alert("character '%c' is not permitted in %s %s '%s'.\n",
2547 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002548 err_code |= ERR_ALERT | ERR_FATAL;
2549 goto out;
2550 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002551 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002552
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002553 *cur_arg = 2;
2554 if (parse_flags & SRV_PARSE_TEMPLATE) {
2555 /* Parse server-template <nb | range> arg. */
2556 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002557 ha_alert("Wrong %s number or range arg '%s'.\n",
2558 args[0], args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002559 err_code |= ERR_ALERT | ERR_FATAL;
2560 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002561 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002562 (*cur_arg)++;
2563 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002564
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002565 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2566 struct sockaddr_storage *sk;
2567 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002568
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002569 *srv = newsrv = new_server(curproxy);
2570 if (!newsrv) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002571 ha_alert("out of memory.\n");
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002572 err_code |= ERR_ALERT | ERR_ABORT;
2573 goto out;
2574 }
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002575 register_parsing_obj(&newsrv->obj_type);
Willy Tarreau272adea2014-03-31 10:39:59 +02002576
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002577 if (parse_flags & SRV_PARSE_TEMPLATE) {
2578 newsrv->tmpl_info.nb_low = tmpl_range_low;
2579 newsrv->tmpl_info.nb_high = tmpl_range_high;
2580 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002581
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002582 if (parse_flags & SRV_PARSE_DYNAMIC)
2583 newsrv->flags |= SRV_F_DYNAMIC;
2584
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002585 /* Note: for a server template, its id is its prefix.
2586 * This is a temporary id which will be used for server allocations to come
2587 * after parsing.
2588 */
2589 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2590 newsrv->id = strdup(args[1]);
2591 else
2592 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002593
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002594 /* several ways to check the port component :
2595 * - IP => port=+0, relative (IPv4 only)
2596 * - IP: => port=+0, relative
2597 * - IP:N => port=N, absolute
2598 * - IP:+N => port=+N, relative
2599 * - IP:-N => port=-N, relative
2600 */
2601 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2602 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002603
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002604 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002605 &errmsg, NULL, &fqdn,
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002606 (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);
2607 if (!sk) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002608 ha_alert("%s\n", errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002609 err_code |= ERR_ALERT | ERR_FATAL;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002610 ha_free(&errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002611 goto out;
2612 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002613
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002614 if (!port1 || !port2) {
2615 /* no port specified, +offset, -offset */
2616 newsrv->flags |= SRV_F_MAPPORTS;
2617 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002618
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002619 /* save hostname and create associated name resolution */
2620 if (fqdn) {
2621 if (fqdn[0] == '_') { /* SRV record */
2622 /* Check if a SRV request already exists, and if not, create it */
2623 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2624 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2625 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002626 err_code |= ERR_ALERT | ERR_FATAL;
2627 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002628 }
Christopher Faulet81ba74a2021-06-29 20:52:35 +02002629 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002630 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002631 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002632 ha_alert("Can't create DNS resolution for server '%s'\n",
2633 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002634 err_code |= ERR_ALERT | ERR_FATAL;
2635 goto out;
2636 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002637 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002638
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002639 newsrv->addr = *sk;
2640 newsrv->svc_port = port;
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02002641 /*
2642 * we don't need to lock the server here, because
2643 * we are in the process of initializing.
2644 *
2645 * Note that the server is not attached into the proxy tree if
2646 * this is a dynamic server.
2647 */
2648 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002649
Willy Tarreau14e7f292021-10-27 17:41:07 +02002650 if (!newsrv->srvrq && !newsrv->hostname &&
2651 !protocol_lookup(newsrv->addr.ss_family, PROTO_TYPE_STREAM, 0)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002652 ha_alert("Unknown protocol family %d '%s'\n",
2653 newsrv->addr.ss_family, args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002654 err_code |= ERR_ALERT | ERR_FATAL;
2655 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002656 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002657
2658 (*cur_arg)++;
2659 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002660 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2661 /* Copy default server settings to new server */
2662 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2663 } else {
2664 /* Initialize dynamic server weight to 1 */
2665 newsrv->uweight = newsrv->iweight = 1;
2666
2667 /* A dynamic server is disabled on startup */
2668 newsrv->next_admin = SRV_ADMF_FMAINT;
2669 newsrv->next_state = SRV_ST_STOPPED;
2670 server_recalc_eweight(newsrv, 0);
Amaury Denoyellefca18172021-07-22 16:03:36 +02002671
2672 /* Set default values for checks */
2673 newsrv->check.inter = DEF_CHKINTR;
2674 newsrv->check.rise = DEF_RISETIME;
2675 newsrv->check.fall = DEF_FALLTIME;
2676
2677 newsrv->agent.inter = DEF_CHKINTR;
2678 newsrv->agent.rise = DEF_AGENT_RISETIME;
2679 newsrv->agent.fall = DEF_AGENT_FALLTIME;
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002680 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002681 HA_SPIN_INIT(&newsrv->lock);
2682 }
2683 else {
2684 *srv = newsrv = &curproxy->defsrv;
2685 *cur_arg = 1;
2686 newsrv->resolv_opts.family_prio = AF_INET6;
2687 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002688 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002689
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002690 free(fqdn);
2691 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002692
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002693out:
2694 free(fqdn);
2695 return err_code;
2696}
Willy Tarreau272adea2014-03-31 10:39:59 +02002697
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002698/* Parse the server keyword in <args>.
2699 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2700 * might not be the case if an error is reported.
2701 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002702 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002703 * initialize a new server on startup.
2704 *
2705 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2706 * interrupted.
2707 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002708static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2709 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002710 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002711{
2712 int err_code = 0;
2713 struct srv_kw *kw;
2714 const char *best;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002715 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002716
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002717 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002718 if (!kw) {
2719 best = srv_find_best_kw(args[*cur_arg]);
2720 if (best)
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002721 ha_alert("unknown keyword '%s'; did you mean '%s' maybe ?\n",
2722 args[*cur_arg], best);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002723 else
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002724 ha_alert("unknown keyword '%s'.\n", args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002725
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002726 return ERR_ALERT | ERR_FATAL;
2727 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002728
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002729 if (!kw->parse) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002730 ha_alert("'%s' option is not implemented in this version (check build options)\n",
2731 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002732 err_code = ERR_ALERT | ERR_FATAL;
2733 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002734 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002735
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002736 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002737 ha_alert("'%s' option is not accepted in default-server sections\n",
2738 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002739 err_code = ERR_ALERT;
2740 goto out;
2741 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002742 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002743 ha_alert("'%s' option is not accepted for dynamic server\n",
2744 args[*cur_arg]);
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002745 err_code |= ERR_ALERT;
2746 goto out;
2747 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002748
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002749 err_code = kw->parse(args, cur_arg, curproxy, srv, &errmsg);
2750 if (err_code) {
2751 display_parser_err(NULL, 0, args, *cur_arg, err_code, &errmsg);
2752 free(errmsg);
2753 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002754
2755out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002756 if (kw->skip != -1)
2757 *cur_arg += 1 + kw->skip;
2758
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002759 return err_code;
2760}
2761
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002762/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002763 * initialize a new server on startup.
2764 */
2765static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2766 struct server *srv, struct proxy *proxy,
2767 char **errmsg)
2768{
2769 int ret;
2770
2771 if (!srv->sni_expr)
2772 return 0;
2773
2774 ret = server_parse_sni_expr(srv, proxy, errmsg);
2775 if (!ret)
2776 return 0;
2777
2778 return ret;
2779}
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002780
2781/* Server initializations finalization.
2782 * Initialize health check, agent check and SNI expression if enabled.
2783 * Must not be called for a default server instance.
2784 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002785 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002786 * initialize a new server on startup.
2787 */
2788static int _srv_parse_finalize(char **args, int cur_arg,
2789 struct server *srv, struct proxy *px,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002790 int parse_flags)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002791{
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002792 int ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002793 char *errmsg = NULL;
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002794
2795 if (srv->do_check && srv->trackit) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002796 ha_alert("unable to enable checks and tracking at the same time!\n");
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002797 return ERR_ALERT | ERR_FATAL;
2798 }
2799
2800 if (srv->do_agent && !srv->agent.port) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002801 ha_alert("server %s does not have agent port. Agent check has been disabled.\n",
2802 srv->id);
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002803 return ERR_ALERT | ERR_FATAL;
2804 }
2805
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002806 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, &errmsg)) != 0) {
2807 if (errmsg) {
2808 ha_alert("%s\n", errmsg);
2809 free(errmsg);
2810 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002811 return ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002812 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002813
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002814 /* A dynamic server is disabled on startup. It must not be counted as
2815 * an active backend entry.
2816 */
2817 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2818 if (srv->flags & SRV_F_BACKUP)
2819 px->srv_bck++;
2820 else
2821 px->srv_act++;
2822 }
2823
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002824 srv_lb_commit_status(srv);
2825
2826 return 0;
2827}
2828
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002829int parse_server(const char *file, int linenum, char **args,
2830 struct proxy *curproxy, const struct proxy *defproxy,
2831 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002832{
2833 struct server *newsrv = NULL;
2834 int err_code = 0;
2835
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002836 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002837
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002838 set_usermsgs_ctx(file, linenum, NULL);
2839
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002840 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002841 ha_alert("'%s' not allowed in 'defaults' section.\n", args[0]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002842 err_code |= ERR_ALERT | ERR_FATAL;
2843 goto out;
2844 }
2845 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2846 err_code |= ERR_ALERT | ERR_FATAL;
2847 goto out;
2848 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002849
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002850 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2851 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2852 if (!*args[2])
2853 return 0;
2854 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002855
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002856 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002857 parse_flags);
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002858
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002859 /* the servers are linked backwards first */
2860 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2861 newsrv->next = curproxy->srv;
2862 curproxy->srv = newsrv;
2863 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002864
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002865 if (err_code & ERR_CODE)
2866 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002867
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002868 newsrv->conf.file = strdup(file);
2869 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002870
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002871 while (*args[cur_arg]) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002872 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002873 parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002874 if (err_code & ERR_FATAL)
2875 goto out;
2876 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002877
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002878 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002879 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002880 if (err_code & ERR_FATAL)
2881 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002882 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002883
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002884 if (parse_flags & SRV_PARSE_TEMPLATE)
2885 _srv_parse_tmpl_init(newsrv, curproxy);
2886
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02002887 /* If the server id is fixed, insert it in the proxy used_id tree.
2888 * This is needed to detect a later duplicate id via srv_parse_id.
2889 *
2890 * If no is specified, a dynamic one is generated in
2891 * check_config_validity.
2892 */
2893 if (newsrv->flags & SRV_F_FORCED_ID)
2894 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2895
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002896 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002897 "configured with weight of 0 will never be selected by load balancing algorithms\n");
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002898
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002899 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002900 return 0;
2901
2902 out:
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002903 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002904 return err_code;
2905}
2906
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002907/* Returns a pointer to the first server matching either id <id>.
2908 * NULL is returned if no match is found.
2909 * the lookup is performed in the backend <bk>
2910 */
2911struct server *server_find_by_id(struct proxy *bk, int id)
2912{
2913 struct eb32_node *eb32;
2914 struct server *curserver;
2915
2916 if (!bk || (id ==0))
2917 return NULL;
2918
2919 /* <bk> has no backend capabilities, so it can't have a server */
2920 if (!(bk->cap & PR_CAP_BE))
2921 return NULL;
2922
2923 curserver = NULL;
2924
2925 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2926 if (eb32)
2927 curserver = container_of(eb32, struct server, conf.id);
2928
2929 return curserver;
2930}
2931
2932/* Returns a pointer to the first server matching either name <name>, or id
2933 * if <name> starts with a '#'. NULL is returned if no match is found.
2934 * the lookup is performed in the backend <bk>
2935 */
2936struct server *server_find_by_name(struct proxy *bk, const char *name)
2937{
2938 struct server *curserver;
2939
2940 if (!bk || !name)
2941 return NULL;
2942
2943 /* <bk> has no backend capabilities, so it can't have a server */
2944 if (!(bk->cap & PR_CAP_BE))
2945 return NULL;
2946
2947 curserver = NULL;
2948 if (*name == '#') {
2949 curserver = server_find_by_id(bk, atoi(name + 1));
2950 if (curserver)
2951 return curserver;
2952 }
2953 else {
2954 curserver = bk->srv;
2955
2956 while (curserver && (strcmp(curserver->id, name) != 0))
2957 curserver = curserver->next;
2958
2959 if (curserver)
2960 return curserver;
2961 }
2962
2963 return NULL;
2964}
2965
2966struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2967{
2968 struct server *byname;
2969 struct server *byid;
2970
2971 if (!name && !id)
2972 return NULL;
2973
2974 if (diff)
2975 *diff = 0;
2976
2977 byname = byid = NULL;
2978
2979 if (name) {
2980 byname = server_find_by_name(bk, name);
2981 if (byname && (!id || byname->puid == id))
2982 return byname;
2983 }
2984
2985 /* remaining possibilities :
2986 * - name not set
2987 * - name set but not found
2988 * - name found but ID doesn't match
2989 */
2990 if (id) {
2991 byid = server_find_by_id(bk, id);
2992 if (byid) {
2993 if (byname) {
2994 /* use id only if forced by configuration */
2995 if (byid->flags & SRV_F_FORCED_ID) {
2996 if (diff)
2997 *diff |= 2;
2998 return byid;
2999 }
3000 else {
3001 if (diff)
3002 *diff |= 1;
3003 return byname;
3004 }
3005 }
3006
3007 /* remaining possibilities:
3008 * - name not set
3009 * - name set but not found
3010 */
3011 if (name && diff)
3012 *diff |= 2;
3013 return byid;
3014 }
3015
3016 /* id bot found */
3017 if (byname) {
3018 if (diff)
3019 *diff |= 1;
3020 return byname;
3021 }
3022 }
3023
3024 return NULL;
3025}
3026
Simon Horman7d09b9a2013-02-12 10:45:51 +09003027/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003028 * update a server's current IP address.
3029 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3030 * ip is in network format.
3031 * updater is a string which contains an information about the requester of the update.
3032 * updater is used if not NULL.
3033 *
3034 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003035 *
3036 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003037 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003038int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003039{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003040 /* save the new IP family & address if necessary */
3041 switch (ip_sin_family) {
3042 case AF_INET:
3043 if (s->addr.ss_family == ip_sin_family &&
3044 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3045 return 0;
3046 break;
3047 case AF_INET6:
3048 if (s->addr.ss_family == ip_sin_family &&
3049 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3050 return 0;
3051 break;
3052 };
3053
Baptiste Assmann14e40142015-04-14 01:13:07 +02003054 /* generates a log line and a warning on stderr */
3055 if (1) {
3056 /* book enough space for both IPv4 and IPv6 */
3057 char oldip[INET6_ADDRSTRLEN];
3058 char newip[INET6_ADDRSTRLEN];
3059
3060 memset(oldip, '\0', INET6_ADDRSTRLEN);
3061 memset(newip, '\0', INET6_ADDRSTRLEN);
3062
3063 /* copy old IP address in a string */
3064 switch (s->addr.ss_family) {
3065 case AF_INET:
3066 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3067 break;
3068 case AF_INET6:
3069 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3070 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003071 default:
3072 strcpy(oldip, "(none)");
3073 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003074 };
3075
3076 /* copy new IP address in a string */
3077 switch (ip_sin_family) {
3078 case AF_INET:
3079 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3080 break;
3081 case AF_INET6:
3082 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3083 break;
3084 };
3085
3086 /* save log line into a buffer */
3087 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3088 s->proxy->id, s->id, oldip, newip, updater);
3089
3090 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003091 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003092
3093 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003094 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003095 }
3096
3097 /* save the new IP family */
3098 s->addr.ss_family = ip_sin_family;
3099 /* save the new IP address */
3100 switch (ip_sin_family) {
3101 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003102 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003103 break;
3104 case AF_INET6:
3105 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3106 break;
3107 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003108 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003109 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003110
3111 return 0;
3112}
3113
William Dauchy7cabc062021-02-11 22:51:24 +01003114/* update agent health check address and port
3115 * addr can be ip4/ip6 or a hostname
3116 * if one error occurs, don't apply anything
3117 * must be called with the server lock held.
3118 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003119const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003120{
3121 struct sockaddr_storage sk;
3122 struct buffer *msg;
3123 int new_port;
3124
3125 msg = get_trash_chunk();
3126 chunk_reset(msg);
3127
3128 if (!(s->agent.state & CHK_ST_ENABLED)) {
3129 chunk_strcat(msg, "agent checks are not enabled on this server");
3130 goto out;
3131 }
3132 if (addr) {
3133 memset(&sk, 0, sizeof(struct sockaddr_storage));
3134 if (str2ip(addr, &sk) == NULL) {
3135 chunk_appendf(msg, "invalid addr '%s'", addr);
3136 goto out;
3137 }
3138 }
3139 if (port) {
3140 if (strl2irc(port, strlen(port), &new_port) != 0) {
3141 chunk_appendf(msg, "provided port is not an integer");
3142 goto out;
3143 }
3144 if (new_port < 0 || new_port > 65535) {
3145 chunk_appendf(msg, "provided port is invalid");
3146 goto out;
3147 }
3148 }
3149out:
3150 if (msg->data)
3151 return msg->area;
3152 else {
3153 if (addr)
3154 set_srv_agent_addr(s, &sk);
3155 if (port)
3156 set_srv_agent_port(s, new_port);
3157 }
3158 return NULL;
3159}
3160
William Dauchyb456e1f2021-02-11 22:51:23 +01003161/* update server health check address and port
3162 * addr must be ip4 or ip6, it won't be resolved
3163 * if one error occurs, don't apply anything
3164 * must be called with the server lock held.
3165 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003166const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003167{
3168 struct sockaddr_storage sk;
3169 struct buffer *msg;
3170 int new_port;
3171
3172 msg = get_trash_chunk();
3173 chunk_reset(msg);
3174
3175 if (!(s->check.state & CHK_ST_ENABLED)) {
3176 chunk_strcat(msg, "health checks are not enabled on this server");
3177 goto out;
3178 }
3179 if (addr) {
3180 memset(&sk, 0, sizeof(struct sockaddr_storage));
3181 if (str2ip2(addr, &sk, 0) == NULL) {
3182 chunk_appendf(msg, "invalid addr '%s'", addr);
3183 goto out;
3184 }
3185 }
3186 if (port) {
3187 if (strl2irc(port, strlen(port), &new_port) != 0) {
3188 chunk_appendf(msg, "provided port is not an integer");
3189 goto out;
3190 }
3191 if (new_port < 0 || new_port > 65535) {
3192 chunk_appendf(msg, "provided port is invalid");
3193 goto out;
3194 }
3195 /* prevent the update of port to 0 if MAPPORTS are in use */
3196 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3197 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3198 goto out;
3199 }
3200 }
3201out:
3202 if (msg->data)
3203 return msg->area;
3204 else {
3205 if (addr)
3206 s->check.addr = sk;
3207 if (port)
3208 s->check.port = new_port;
3209 }
3210 return NULL;
3211}
3212
Baptiste Assmann14e40142015-04-14 01:13:07 +02003213/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003214 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3215 *
3216 * Caller can pass its name through <updater> to get it integrated in the response message
3217 * returned by the function.
3218 *
3219 * The function first does the following, in that order:
3220 * - validates the new addr and/or port
3221 * - checks if an update is required (new IP or port is different than current ones)
3222 * - checks the update is allowed:
3223 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3224 * - allow all changes if no CHECKS are configured
3225 * - if CHECK is configured:
3226 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3227 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3228 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003229 *
3230 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003231 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003232const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003233{
3234 struct sockaddr_storage sa;
3235 int ret, port_change_required;
3236 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003237 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003238 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003239 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003240
3241 msg = get_trash_chunk();
3242 chunk_reset(msg);
3243
3244 if (addr) {
3245 memset(&sa, 0, sizeof(struct sockaddr_storage));
3246 if (str2ip2(addr, &sa, 0) == NULL) {
3247 chunk_printf(msg, "Invalid addr '%s'", addr);
3248 goto out;
3249 }
3250
3251 /* changes are allowed on AF_INET* families only */
3252 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3253 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3254 goto out;
3255 }
3256
3257 /* collecting data currently setup */
3258 memset(current_addr, '\0', sizeof(current_addr));
3259 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3260 /* changes are allowed on AF_INET* families only */
3261 if ((ret != AF_INET) && (ret != AF_INET6)) {
3262 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3263 goto out;
3264 }
3265
3266 /* applying ADDR changes if required and allowed
3267 * ipcmp returns 0 when both ADDR are the same
3268 */
3269 if (ipcmp(&s->addr, &sa) == 0) {
3270 chunk_appendf(msg, "no need to change the addr");
3271 goto port;
3272 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003273 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003274 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003275
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003276 /* update report for caller */
3277 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3278 }
3279
3280 port:
3281 if (port) {
3282 char sign = '\0';
3283 char *endptr;
3284
3285 if (addr)
3286 chunk_appendf(msg, ", ");
3287
3288 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003289 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003290
3291 /* check if PORT change is required */
3292 port_change_required = 0;
3293
3294 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003295 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003296 new_port = strtol(port, &endptr, 10);
3297 if ((errno != 0) || (port == endptr)) {
3298 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3299 goto out;
3300 }
3301
3302 /* check if caller triggers a port mapped or offset */
3303 if (sign == '-' || (sign == '+')) {
3304 /* check if server currently uses port map */
3305 if (!(s->flags & SRV_F_MAPPORTS)) {
3306 /* switch from fixed port to port map mandatorily triggers
3307 * a port change */
3308 port_change_required = 1;
3309 /* check is configured
3310 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3311 * prevent PORT change if check doesn't have it's dedicated port while switching
3312 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003313 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003314 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.");
3315 goto out;
3316 }
3317 }
3318 /* we're already using port maps */
3319 else {
3320 port_change_required = current_port != new_port;
3321 }
3322 }
3323 /* fixed port */
3324 else {
3325 port_change_required = current_port != new_port;
3326 }
3327
3328 /* applying PORT changes if required and update response message */
3329 if (port_change_required) {
3330 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003331 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003332 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003333
3334 /* prepare message */
3335 chunk_appendf(msg, "port changed from '");
3336 if (s->flags & SRV_F_MAPPORTS)
3337 chunk_appendf(msg, "+");
3338 chunk_appendf(msg, "%d' to '", current_port);
3339
3340 if (sign == '-') {
3341 s->flags |= SRV_F_MAPPORTS;
3342 chunk_appendf(msg, "%c", sign);
3343 /* just use for result output */
3344 new_port = -new_port;
3345 }
3346 else if (sign == '+') {
3347 s->flags |= SRV_F_MAPPORTS;
3348 chunk_appendf(msg, "%c", sign);
3349 }
3350 else {
3351 s->flags &= ~SRV_F_MAPPORTS;
3352 }
3353
3354 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003355 }
3356 else {
3357 chunk_appendf(msg, "no need to change the port");
3358 }
3359 }
3360
3361out:
William Dauchy6318d332020-05-02 21:52:36 +02003362 if (changed) {
3363 /* force connection cleanup on the given server */
3364 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003365 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003366 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003367 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003368 if (updater)
3369 chunk_appendf(msg, " by '%s'", updater);
3370 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003371 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003372}
3373
Christopher Faulet5efdef22021-03-11 18:03:21 +01003374/*
3375 * update server status based on result of SRV resolution
3376 * returns:
3377 * 0 if server status is updated
3378 * 1 if server status has not changed
3379 *
3380 * Must be called with the server lock held.
3381 */
3382int srvrq_update_srv_status(struct server *s, int has_no_ip)
3383{
3384 if (!s->srvrq)
3385 return 1;
3386
3387 /* since this server has an IP, it can go back in production */
3388 if (has_no_ip == 0) {
3389 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3390 return 1;
3391 }
3392
3393 if (s->next_admin & SRV_ADMF_RMAINT)
3394 return 1;
3395
3396 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3397 return 0;
3398}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003399
3400/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003401 * update server status based on result of name resolution
3402 * returns:
3403 * 0 if server status is updated
3404 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003405 *
3406 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003407 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003408int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003409{
Emeric Brun750fe792020-12-23 16:51:12 +01003410 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003411 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003412 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003413
Jerome Magnin012261a2020-07-28 13:38:22 +02003414 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003415 if (resolution == NULL)
3416 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003417
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003418 switch (resolution->status) {
3419 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003420 /* status when HAProxy has just (re)started.
3421 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003422 break;
3423
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003424 case RSLV_STATUS_VALID:
3425 /*
3426 * resume health checks
3427 * server will be turned back on if health check is safe
3428 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003429 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003430 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003431 return 1;
3432 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3433 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003434 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003435 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003436
Emeric Brun52a91d32017-08-31 14:41:55 +02003437 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003438 return 1;
3439 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3440 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3441 s->proxy->id, s->id);
3442
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003443 ha_warning("%s.\n", trash.area);
3444 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003445 return 0;
3446
3447 case RSLV_STATUS_NX:
3448 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003449 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3450 if (!tick_is_expired(exp, now_ms))
3451 break;
3452
3453 if (s->next_admin & SRV_ADMF_RMAINT)
3454 return 1;
3455 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3456 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003457
3458 case RSLV_STATUS_TIMEOUT:
3459 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003460 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3461 if (!tick_is_expired(exp, now_ms))
3462 break;
3463
3464 if (s->next_admin & SRV_ADMF_RMAINT)
3465 return 1;
3466 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3467 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003468
3469 case RSLV_STATUS_REFUSED:
3470 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003471 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3472 if (!tick_is_expired(exp, now_ms))
3473 break;
3474
3475 if (s->next_admin & SRV_ADMF_RMAINT)
3476 return 1;
3477 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3478 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003479
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003480 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003481 /* stop server if resolution failed for a long enough period */
3482 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3483 if (!tick_is_expired(exp, now_ms))
3484 break;
3485
3486 if (s->next_admin & SRV_ADMF_RMAINT)
3487 return 1;
3488 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3489 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003490 }
3491
3492 return 1;
3493}
3494
3495/*
3496 * Server Name Resolution valid response callback
3497 * It expects:
3498 * - <nameserver>: the name server which answered the valid response
3499 * - <response>: buffer containing a valid DNS response
3500 * - <response_len>: size of <response>
3501 * It performs the following actions:
3502 * - ignore response if current ip found and server family not met
3503 * - update with first new ip found if family is met and current IP is not found
3504 * returns:
3505 * 0 on error
3506 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003507 *
3508 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003509 */
Emeric Brun08622d32020-12-23 17:41:43 +01003510int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003511{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003512 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003513 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003514 void *serverip, *firstip;
3515 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003516 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003517 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003518 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003519
Christopher Faulet67957bd2017-09-27 11:00:59 +02003520 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003521 if (!s)
3522 return 1;
3523
Christopher Faulet49531e82021-03-10 15:07:27 +01003524 if (s->srvrq) {
Emeric Brun34067662021-06-11 10:48:45 +02003525 /* If DNS resolution is disabled ignore it.
3526 * This is the case if the server was associated to
3527 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003528 */
Emeric Brun34067662021-06-11 10:48:45 +02003529 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003530 return 1;
3531 }
3532
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003533 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003534 if (!resolution)
3535 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003536
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003537 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003538 firstip = NULL; /* pointer to the first valid response found */
3539 /* it will be used as the new IP if a change is required */
3540 firstip_sin_family = AF_UNSPEC;
3541 serverip = NULL; /* current server IP address */
3542
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003543 /* initializing server IP pointer */
3544 server_sin_family = s->addr.ss_family;
3545 switch (server_sin_family) {
3546 case AF_INET:
3547 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3548 break;
3549
3550 case AF_INET6:
3551 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3552 break;
3553
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003554 case AF_UNSPEC:
3555 break;
3556
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003557 default:
3558 goto invalid;
3559 }
3560
Emeric Brund30e9a12020-12-23 18:49:16 +01003561 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3562 serverip, server_sin_family, &firstip,
3563 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003564
3565 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003566 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003567 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003568
Emeric Brun456de772020-12-23 18:17:31 +01003569 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003570 goto save_ip;
3571
Emeric Brun456de772020-12-23 18:17:31 +01003572 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003573 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003574 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003575
Emeric Brun456de772020-12-23 18:17:31 +01003576 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003577 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003578 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet07ecff52021-06-24 15:33:52 +02003579 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003580 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003581
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003582 default:
Christopher Faulet07ecff52021-06-24 15:33:52 +02003583 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003584 goto invalid;
3585
3586 }
3587
3588 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003589 if (counters) {
3590 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003591 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003592 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003593 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003594 else
3595 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003596 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003597
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003598 update_status:
Christopher Fauleta8ce4972021-06-24 15:26:03 +02003599 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3600 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003601 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003602
3603 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003604 if (counters) {
3605 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003606 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003607 }
Christopher Faulet07ecff52021-06-24 15:33:52 +02003608 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3609 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003610 return 0;
3611}
3612
3613/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003614 * SRV record error management callback
3615 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003616 * 0 if we can trash answser items.
3617 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003618 *
3619 * Grabs the server's lock.
3620 */
3621int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3622{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003623 struct resolv_srvrq *srvrq;
3624 struct resolv_resolution *res;
3625 struct resolvers *resolvers;
3626 int exp;
3627
3628 /* SRV records */
3629 srvrq = objt_resolv_srvrq(requester->owner);
3630 if (!srvrq)
Emeric Brun12ca6582021-06-10 15:25:25 +02003631 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003632
3633 resolvers = srvrq->resolvers;
3634 res = requester->resolution;
3635
3636 switch (res->status) {
3637
3638 case RSLV_STATUS_NX:
3639 /* stop server if resolution is NX for a long enough period */
3640 exp = tick_add(res->last_valid, resolvers->hold.nx);
3641 if (!tick_is_expired(exp, now_ms))
3642 return 1;
3643 break;
3644
3645 case RSLV_STATUS_TIMEOUT:
3646 /* stop server if resolution is TIMEOUT for a long enough period */
3647 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3648 if (!tick_is_expired(exp, now_ms))
3649 return 1;
3650 break;
3651
3652 case RSLV_STATUS_REFUSED:
3653 /* stop server if resolution is REFUSED for a long enough period */
3654 exp = tick_add(res->last_valid, resolvers->hold.refused);
3655 if (!tick_is_expired(exp, now_ms))
3656 return 1;
3657 break;
3658
3659 default:
3660 /* stop server if resolution failed for a long enough period */
3661 exp = tick_add(res->last_valid, resolvers->hold.other);
3662 if (!tick_is_expired(exp, now_ms))
3663 return 1;
3664 }
3665
Emeric Brun34067662021-06-11 10:48:45 +02003666 /* Remove any associated server ref */
Willy Tarreau6878f802021-10-20 14:07:31 +02003667 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003668
Emeric Brun12ca6582021-06-10 15:25:25 +02003669 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003670}
3671
3672/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003673 * Server Name Resolution error management callback
3674 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003675 * 0 if we can trash answser items.
3676 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003677 *
3678 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003679 */
Emeric Brun08622d32020-12-23 17:41:43 +01003680int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003681{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003682 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003683
Christopher Faulet67957bd2017-09-27 11:00:59 +02003684 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003685 if (!s)
Emeric Brun12ca6582021-06-10 15:25:25 +02003686 return 0;
3687
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003688 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003689 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003690 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun12ca6582021-06-10 15:25:25 +02003691 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau6878f802021-10-20 14:07:31 +02003692 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun12ca6582021-06-10 15:25:25 +02003693 return 0;
3694 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003695 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003696
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003697 return 1;
3698}
3699
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003700/*
3701 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003702 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003703 * It returns a pointer to the first server found or NULL if <ip> is not yet
3704 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003705 *
3706 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003707 */
3708struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3709{
3710 struct server *tmpsrv;
3711 struct proxy *be;
3712
3713 if (!srv)
3714 return NULL;
3715
3716 be = srv->proxy;
3717 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003718 /* we found the current server is the same, ignore it */
3719 if (srv == tmpsrv)
3720 continue;
3721
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003722 /* We want to compare the IP in the record with the IP of the servers in the
3723 * same backend, only if:
3724 * * DNS resolution is enabled on the server
3725 * * the hostname used for the resolution by our server is the same than the
3726 * one used for the server found in the backend
3727 * * the server found in the backend is not our current server
3728 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003729 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003730 if ((tmpsrv->hostname_dn == NULL) ||
3731 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003732 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003733 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003734 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003735 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003736 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003737
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003738 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003739 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003740 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003741 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003742 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003743
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003744 /* At this point, we have 2 different servers using the same DNS hostname
3745 * for their respective resolution.
3746 */
3747 if (*ip_family == tmpsrv->addr.ss_family &&
3748 ((tmpsrv->addr.ss_family == AF_INET &&
3749 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3750 (tmpsrv->addr.ss_family == AF_INET6 &&
3751 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003752 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003753 return tmpsrv;
3754 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003755 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003756 }
3757
Emeric Brune9fd6b52017-11-02 17:20:39 +01003758
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003759 return NULL;
3760}
3761
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003762/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3763 * resolver. This is suited for initial address configuration. Returns 0 on
3764 * success otherwise a non-zero error code. In case of error, *err_code, if
3765 * not NULL, is filled up.
3766 */
3767int srv_set_addr_via_libc(struct server *srv, int *err_code)
3768{
3769 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003770 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003771 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003772 return 1;
3773 }
3774 return 0;
3775}
3776
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003777/* Set the server's FDQN (->hostname) from <hostname>.
3778 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003779 *
3780 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003781 */
Emeric Brun08622d32020-12-23 17:41:43 +01003782int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003783{
Emeric Brun08622d32020-12-23 17:41:43 +01003784 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003785 char *hostname_dn;
3786 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003787
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003788 /* Note that the server lock is already held. */
3789 if (!srv->resolvers)
3790 return -1;
3791
Emeric Brun08622d32020-12-23 17:41:43 +01003792 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003793 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003794 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003795 * and we can't enable it at run time for now.
3796 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003797 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003798 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003799
3800 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003801 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003802 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02003803 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003804 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003805 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003806 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003807
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003808 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003809 if (resolution &&
3810 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003811 resolution->hostname_dn_len == hostname_dn_len &&
3812 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003813 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003814
Willy Tarreau6878f802021-10-20 14:07:31 +02003815 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003816
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003817 free(srv->hostname);
3818 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003819 srv->hostname = strdup(hostname);
3820 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003821 srv->hostname_dn_len = hostname_dn_len;
3822 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003823 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003824
Baptiste Assmann13a92322019-06-07 09:40:55 +02003825 if (srv->flags & SRV_F_NO_RESOLUTION)
3826 goto end;
3827
Emeric Brund30e9a12020-12-23 18:49:16 +01003828 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003829 goto err;
3830
3831 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003832 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003833 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003834 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003835
3836 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003837 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003838 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003839 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003840}
3841
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003842/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3843 * from the state file. This is suited for initial address configuration.
3844 * Returns 0 on success otherwise a non-zero error code. In case of error,
3845 * *err_code, if not NULL, is filled up.
3846 */
3847static int srv_apply_lastaddr(struct server *srv, int *err_code)
3848{
3849 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3850 if (err_code)
3851 *err_code |= ERR_WARN;
3852 return 1;
3853 }
3854 return 0;
3855}
3856
Willy Tarreau25e51522016-11-04 15:10:17 +01003857/* returns 0 if no error, otherwise a combination of ERR_* flags */
3858static int srv_iterate_initaddr(struct server *srv)
3859{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003860 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003861 int return_code = 0;
3862 int err_code;
3863 unsigned int methods;
3864
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003865 /* If no addr and no hostname set, get the name from the DNS SRV request */
3866 if (!name && srv->srvrq)
3867 name = srv->srvrq->name;
3868
Willy Tarreau25e51522016-11-04 15:10:17 +01003869 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003870 if (!methods) {
3871 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003872 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3873 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003874 if (srv->resolvers_id) {
3875 /* dns resolution is configured, add "none" to not fail on startup */
3876 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3877 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003878 }
3879
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003880 /* "-dr" : always append "none" so that server addresses resolution
3881 * failures are silently ignored, this is convenient to validate some
3882 * configs out of their environment.
3883 */
3884 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3885 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3886
Willy Tarreau25e51522016-11-04 15:10:17 +01003887 while (methods) {
3888 err_code = 0;
3889 switch (srv_get_next_initaddr(&methods)) {
3890 case SRV_IADDR_LAST:
3891 if (!srv->lastaddr)
3892 continue;
3893 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003894 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003895 return_code |= err_code;
3896 break;
3897
3898 case SRV_IADDR_LIBC:
3899 if (!srv->hostname)
3900 continue;
3901 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003902 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003903 return_code |= err_code;
3904 break;
3905
Willy Tarreau37ebe122016-11-04 15:17:58 +01003906 case SRV_IADDR_NONE:
3907 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003908 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003909 ha_warning("could not resolve address '%s', disabling server.\n",
3910 name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003911 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003912 return return_code;
3913
Willy Tarreau4310d362016-11-02 15:05:56 +01003914 case SRV_IADDR_IP:
3915 ipcpy(&srv->init_addr, &srv->addr);
3916 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003917 ha_warning("could not resolve address '%s', falling back to configured address.\n",
3918 name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003919 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003920 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003921
Willy Tarreau25e51522016-11-04 15:10:17 +01003922 default: /* unhandled method */
3923 break;
3924 }
3925 }
3926
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003927 if (!return_code)
3928 ha_alert("no method found to resolve address '%s'.\n", name);
3929 else
3930 ha_alert("could not resolve address '%s'.\n", name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003931
3932 return_code |= ERR_ALERT | ERR_FATAL;
3933 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003934out:
3935 srv_set_dyncookie(srv);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003936 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003937 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003938}
3939
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003940/*
3941 * This function parses all backends and all servers within each backend
3942 * and performs servers' addr resolution based on information provided by:
3943 * - configuration file
3944 * - server-state file (states provided by an 'old' haproxy process)
3945 *
3946 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3947 */
3948int srv_init_addr(void)
3949{
3950 struct proxy *curproxy;
3951 int return_code = 0;
3952
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003953 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003954 while (curproxy) {
3955 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003956
3957 /* servers are in backend only */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003958 if (!(curproxy->cap & PR_CAP_BE) || (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003959 goto srv_init_addr_next;
3960
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003961 for (srv = curproxy->srv; srv; srv = srv->next) {
3962 set_usermsgs_ctx(srv->conf.file, srv->conf.line, &srv->obj_type);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003963 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003964 return_code |= srv_iterate_initaddr(srv);
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003965 reset_usermsgs_ctx();
3966 }
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003967
3968 srv_init_addr_next:
3969 curproxy = curproxy->next;
3970 }
3971
3972 return return_code;
3973}
3974
Willy Tarreau46b7f532018-08-21 11:54:26 +02003975/*
3976 * Must be called with the server lock held.
3977 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003978const 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 +02003979{
3980
Willy Tarreau83061a82018-07-13 11:56:34 +02003981 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003982
3983 msg = get_trash_chunk();
3984 chunk_reset(msg);
3985
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003986 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003987 chunk_appendf(msg, "no need to change the FDQN");
3988 goto out;
3989 }
3990
3991 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
3992 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
3993 goto out;
3994 }
3995
3996 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
3997 server->proxy->id, server->id, server->hostname, fqdn);
3998
Emeric Brun08622d32020-12-23 17:41:43 +01003999 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004000 chunk_reset(msg);
4001 chunk_appendf(msg, "could not update %s/%s FQDN",
4002 server->proxy->id, server->id);
4003 goto out;
4004 }
4005
4006 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004007 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004008
4009 out:
4010 if (updater)
4011 chunk_appendf(msg, " by '%s'", updater);
4012 chunk_appendf(msg, "\n");
4013
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004014 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004015}
4016
4017
Willy Tarreau21b069d2016-11-23 17:15:08 +01004018/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4019 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004020 * 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 +01004021 * used for CLI commands requiring a server name.
4022 * Important: the <arg> is modified to remove the '/'.
4023 */
4024struct server *cli_find_server(struct appctx *appctx, char *arg)
4025{
4026 struct proxy *px;
4027 struct server *sv;
4028 char *line;
4029
4030 /* split "backend/server" and make <line> point to server */
4031 for (line = arg; *line; line++)
4032 if (*line == '/') {
4033 *line++ = '\0';
4034 break;
4035 }
4036
4037 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004038 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004039 return NULL;
4040 }
4041
4042 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004043 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004044 return NULL;
4045 }
4046
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004047 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004048 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004049 return NULL;
4050 }
4051
4052 return sv;
4053}
4054
William Lallemand222baf22016-11-19 02:00:33 +01004055
Willy Tarreau46b7f532018-08-21 11:54:26 +02004056/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004057static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004058{
4059 struct server *sv;
4060 const char *warning;
4061
4062 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4063 return 1;
4064
4065 sv = cli_find_server(appctx, args[2]);
4066 if (!sv)
4067 return 1;
4068
4069 if (strcmp(args[3], "weight") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004070 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004071 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004072 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004073 if (warning)
4074 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004075 }
4076 else if (strcmp(args[3], "state") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004077 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004078 if (strcmp(args[4], "ready") == 0)
4079 srv_adm_set_ready(sv);
4080 else if (strcmp(args[4], "drain") == 0)
4081 srv_adm_set_drain(sv);
4082 else if (strcmp(args[4], "maint") == 0)
4083 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004084 else
4085 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004086 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004087 }
4088 else if (strcmp(args[3], "health") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004089 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004090 if (sv->track)
4091 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004092 else if (strcmp(args[4], "up") == 0) {
4093 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004094 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004095 }
4096 else if (strcmp(args[4], "stopping") == 0) {
4097 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004098 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004099 }
4100 else if (strcmp(args[4], "down") == 0) {
4101 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004102 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004103 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004104 else
4105 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004106 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004107 }
4108 else if (strcmp(args[3], "agent") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004109 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004110 if (!(sv->agent.state & CHK_ST_ENABLED))
4111 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004112 else if (strcmp(args[4], "up") == 0) {
4113 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004114 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004115 }
4116 else if (strcmp(args[4], "down") == 0) {
4117 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004118 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004119 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004120 else
4121 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004122 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004123 }
Misiek2da082d2017-01-09 09:40:42 +01004124 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004125 char *addr = NULL;
4126 char *port = NULL;
4127 if (strlen(args[4]) == 0) {
4128 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4129 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004130 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004131 }
4132 addr = args[4];
4133 if (strcmp(args[5], "port") == 0)
4134 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004135 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004136 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004137 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004138 if (warning)
4139 cli_msg(appctx, LOG_WARNING, warning);
4140 }
4141 else if (strcmp(args[3], "agent-port") == 0) {
4142 char *port = NULL;
4143 if (strlen(args[4]) == 0) {
4144 cli_err(appctx, "set server <b>/<s> agent-port requires"
4145 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004146 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004147 }
4148 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004149 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004150 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004151 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004152 if (warning)
4153 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004154 }
4155 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004156 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004157 if (!(sv->agent.state & CHK_ST_ENABLED))
4158 cli_err(appctx, "agent checks are not enabled on this server.\n");
4159 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004160 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004161 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004162 }
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004163 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004164 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004165 else if (strcmp(args[3], "check-addr") == 0) {
4166 char *addr = NULL;
4167 char *port = NULL;
4168 if (strlen(args[4]) == 0) {
4169 cli_err(appctx, "set server <b>/<s> check-addr requires"
4170 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004171 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004172 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004173 addr = args[4];
4174 if (strcmp(args[5], "port") == 0)
4175 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004176 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004177 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004178 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004179 if (warning)
4180 cli_msg(appctx, LOG_WARNING, warning);
4181 }
4182 else if (strcmp(args[3], "check-port") == 0) {
4183 char *port = NULL;
4184 if (strlen(args[4]) == 0) {
4185 cli_err(appctx, "set server <b>/<s> check-port requires"
4186 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004187 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004188 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004189 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004190 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004191 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004192 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004193 if (warning)
4194 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004195 }
4196 else if (strcmp(args[3], "addr") == 0) {
4197 char *addr = NULL;
4198 char *port = NULL;
4199 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004200 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004201 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004202 }
4203 else {
4204 addr = args[4];
4205 }
4206 if (strcmp(args[5], "port") == 0) {
4207 port = args[6];
4208 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004209 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004210 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004211 if (warning)
4212 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004213 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004214 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004215 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004216 else if (strcmp(args[3], "fqdn") == 0) {
4217 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004218 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004219 goto out;
4220 }
4221 if (!sv->resolvers) {
4222 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4223 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004224 }
Christopher Fauleta386e782021-06-15 11:37:40 +02004225 if (sv->srvrq) {
4226 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004227 goto out;
Christopher Fauleta386e782021-06-15 11:37:40 +02004228 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004229 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4230 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004231 /* ensure runtime resolver will process this new fqdn */
4232 if (sv->flags & SRV_F_NO_RESOLUTION) {
4233 sv->flags &= ~SRV_F_NO_RESOLUTION;
4234 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004235 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004236 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004237 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004238 if (warning)
4239 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004240 }
William Dauchyf6370442020-11-14 19:25:33 +01004241 else if (strcmp(args[3], "ssl") == 0) {
4242#ifdef USE_OPENSSL
Amaury Denoyelleb89d3d32021-05-19 15:00:54 +02004243 if (sv->flags & SRV_F_DYNAMIC) {
4244 cli_err(appctx, "'set server <srv> ssl' not supported on dynamic servers\n");
4245 goto out;
4246 }
4247
William Dauchyf6370442020-11-14 19:25:33 +01004248 if (sv->ssl_ctx.ctx == NULL) {
4249 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4250 " default-server should define ssl settings\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004251 goto out;
4252 }
4253
4254 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4255 if (strcmp(args[4], "on") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004256 srv_set_ssl(sv, 1);
William Dauchyf6370442020-11-14 19:25:33 +01004257 } else if (strcmp(args[4], "off") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004258 srv_set_ssl(sv, 0);
William Dauchyf6370442020-11-14 19:25:33 +01004259 } else {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004260 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004261 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004262 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004263 }
4264 srv_cleanup_connections(sv);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004265 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004266 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4267#else
4268 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4269#endif
4270 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004271 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004272 "usage: set server <backend>/<server> "
4273 "addr | agent | agent-addr | agent-port | agent-send | "
4274 "check-addr | check-port | fqdn | health | ssl | "
4275 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004276 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004277 out:
William Lallemand222baf22016-11-19 02:00:33 +01004278 return 1;
4279}
4280
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004281static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004282{
4283 struct stream_interface *si = appctx->owner;
4284 struct proxy *px;
4285 struct server *sv;
4286 char *line;
4287
4288
4289 /* split "backend/server" and make <line> point to server */
4290 for (line = args[2]; *line; line++)
4291 if (*line == '/') {
4292 *line++ = '\0';
4293 break;
4294 }
4295
Willy Tarreau9d008692019-08-09 11:21:01 +02004296 if (!*line)
4297 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004298
Willy Tarreau9d008692019-08-09 11:21:01 +02004299 if (!get_backend_server(args[2], line, &px, &sv))
4300 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004301
4302 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004303 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4304 sv->iweight);
4305 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004306 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004307 return 0;
4308 }
William Lallemand6b160942016-11-22 12:34:35 +01004309 return 1;
4310}
4311
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004312/* Parse a "set weight" command.
4313 *
4314 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004315 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004316static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004317{
4318 struct server *sv;
4319 const char *warning;
4320
4321 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4322 return 1;
4323
4324 sv = cli_find_server(appctx, args[2]);
4325 if (!sv)
4326 return 1;
4327
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004328 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4329
William Lallemand6b160942016-11-22 12:34:35 +01004330 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004331 if (warning)
4332 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004333
4334 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4335
William Lallemand6b160942016-11-22 12:34:35 +01004336 return 1;
4337}
4338
Willy Tarreau46b7f532018-08-21 11:54:26 +02004339/* parse a "set maxconn server" command. It always returns 1.
4340 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004341 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004342 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004343static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004344{
4345 struct server *sv;
4346 const char *warning;
4347
4348 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4349 return 1;
4350
4351 sv = cli_find_server(appctx, args[3]);
4352 if (!sv)
4353 return 1;
4354
Amaury Denoyelle02742862021-06-18 11:11:36 +02004355 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4356
Willy Tarreaub8026272016-11-23 11:26:56 +01004357 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004358 if (warning)
4359 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004360
Amaury Denoyelle02742862021-06-18 11:11:36 +02004361 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4362
Willy Tarreaub8026272016-11-23 11:26:56 +01004363 return 1;
4364}
William Lallemand6b160942016-11-22 12:34:35 +01004365
Willy Tarreau46b7f532018-08-21 11:54:26 +02004366/* parse a "disable agent" command. It always returns 1.
4367 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004368 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004369 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004370static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004371{
4372 struct server *sv;
4373
4374 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4375 return 1;
4376
4377 sv = cli_find_server(appctx, args[2]);
4378 if (!sv)
4379 return 1;
4380
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004381 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004382 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004383 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004384 return 1;
4385}
4386
Willy Tarreau46b7f532018-08-21 11:54:26 +02004387/* parse a "disable health" command. It always returns 1.
4388 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004389 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004390 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004391static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004392{
4393 struct server *sv;
4394
4395 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4396 return 1;
4397
4398 sv = cli_find_server(appctx, args[2]);
4399 if (!sv)
4400 return 1;
4401
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004402 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004403 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004404 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004405 return 1;
4406}
4407
Willy Tarreau46b7f532018-08-21 11:54:26 +02004408/* parse a "disable server" command. It always returns 1.
4409 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004410 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004411 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004412static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004413{
4414 struct server *sv;
4415
4416 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4417 return 1;
4418
4419 sv = cli_find_server(appctx, args[2]);
4420 if (!sv)
4421 return 1;
4422
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004423 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004424 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004425 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004426 return 1;
4427}
4428
Willy Tarreau46b7f532018-08-21 11:54:26 +02004429/* parse a "enable agent" command. It always returns 1.
4430 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004431 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004432 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004433static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004434{
4435 struct server *sv;
4436
4437 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4438 return 1;
4439
4440 sv = cli_find_server(appctx, args[2]);
4441 if (!sv)
4442 return 1;
4443
Willy Tarreau9d008692019-08-09 11:21:01 +02004444 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4445 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004446
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004447 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004448 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004449 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004450 return 1;
4451}
4452
Willy Tarreau46b7f532018-08-21 11:54:26 +02004453/* parse a "enable health" command. It always returns 1.
4454 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004455 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004456 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004457static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004458{
4459 struct server *sv;
4460
4461 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4462 return 1;
4463
4464 sv = cli_find_server(appctx, args[2]);
4465 if (!sv)
4466 return 1;
4467
Amaury Denoyelle0f456d52021-09-21 10:29:09 +02004468 if (!(sv->check.state & CHK_ST_CONFIGURED))
4469 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4470
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004471 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004472 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004473 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004474 return 1;
4475}
4476
Willy Tarreau46b7f532018-08-21 11:54:26 +02004477/* parse a "enable server" command. It always returns 1.
4478 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004479 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004480 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004481static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004482{
4483 struct server *sv;
4484
4485 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4486 return 1;
4487
4488 sv = cli_find_server(appctx, args[2]);
4489 if (!sv)
4490 return 1;
4491
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004492 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004493 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004494 if (!(sv->flags & SRV_F_COOKIESET)
4495 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4496 sv->cookie)
4497 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004498 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004499 return 1;
4500}
4501
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004502/* Allocates data structure related to load balancing for the server <sv>. It
4503 * is only required for dynamic servers.
4504 *
4505 * At the moment, the server lock is not used as this function is only called
4506 * for a dynamic server not yet registered.
4507 *
4508 * Returns 1 on success, 0 on allocation failure.
4509 */
4510static int srv_alloc_lb(struct server *sv, struct proxy *be)
4511{
4512 int node;
4513
4514 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4515 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4516 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4517 sv->lb_nodes_now = 0;
4518
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004519 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4520 ((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 +01004521 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4522
4523 if (!sv->lb_nodes)
4524 return 0;
4525
4526 for (node = 0; node < sv->lb_nodes_tot; node++) {
4527 sv->lb_nodes[node].server = sv;
4528 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4529 }
4530 }
4531
4532 return 1;
4533}
4534
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004535/* updates the server's weight during a warmup stage. Once the final weight is
4536 * reached, the task automatically stops. Note that any server status change
4537 * must have updated s->last_change accordingly.
4538 */
4539static struct task *server_warmup(struct task *t, void *context, unsigned int state)
4540{
4541 struct server *s = context;
4542
4543 /* by default, plan on stopping the task */
4544 t->expire = TICK_ETERNITY;
4545 if ((s->next_admin & SRV_ADMF_MAINT) ||
4546 (s->next_state != SRV_ST_STARTING))
4547 return t;
4548
4549 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4550
4551 /* recalculate the weights and update the state */
4552 server_recalc_eweight(s, 1);
4553
4554 /* probably that we can refill this server with a bit more connections */
4555 pendconn_grab_from_px(s);
4556
4557 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4558
4559 /* get back there in 1 second or 1/20th of the slowstart interval,
4560 * whichever is greater, resulting in small 5% steps.
4561 */
4562 if (s->next_state == SRV_ST_STARTING)
4563 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
4564 return t;
4565}
4566
4567/* Allocate the slowstart task if the server is configured with a slowstart
4568 * timer. If server next_state is SRV_ST_STARTING, the task is scheduled.
4569 *
4570 * Returns 0 on success else non-zero.
4571 */
4572static int init_srv_slowstart(struct server *srv)
4573{
4574 struct task *t;
4575
4576 if (srv->slowstart) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004577 if ((t = task_new_anywhere()) == NULL) {
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004578 ha_alert("Cannot activate slowstart for server %s/%s: out of memory.\n", srv->proxy->id, srv->id);
4579 return ERR_ALERT | ERR_FATAL;
4580 }
4581
4582 /* We need a warmup task that will be called when the server
4583 * state switches from down to up.
4584 */
4585 srv->warmup = t;
4586 t->process = server_warmup;
4587 t->context = srv;
4588
4589 /* server can be in this state only because of */
4590 if (srv->next_state == SRV_ST_STARTING) {
4591 task_schedule(srv->warmup,
4592 tick_add(now_ms,
4593 MS_TO_TICKS(MAX(1000, (now.tv_sec - srv->last_change)) / 20)));
4594 }
4595 }
4596
4597 return ERR_NONE;
4598}
4599REGISTER_POST_SERVER_CHECK(init_srv_slowstart);
4600
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004601/* Memory allocation and initialization of the per_thr field.
4602 * Returns 0 if the field has been successfully initialized, -1 on failure.
4603 */
4604int srv_init_per_thr(struct server *srv)
4605{
4606 int i;
4607
4608 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4609 if (!srv->per_thr)
4610 return -1;
4611
4612 for (i = 0; i < global.nbthread; i++) {
4613 srv->per_thr[i].idle_conns = EB_ROOT;
4614 srv->per_thr[i].safe_conns = EB_ROOT;
4615 srv->per_thr[i].avail_conns = EB_ROOT;
4616 MT_LIST_INIT(&srv->per_thr[i].streams);
4617 }
4618
4619 return 0;
4620}
4621
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004622/* Parse a "add server" command
4623 * Returns 0 if the server has been successfully initialized, 1 on failure.
4624 */
4625static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4626{
4627 struct proxy *be;
4628 struct server *srv;
4629 char *be_name, *sv_name;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004630 int errcode, argc;
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004631 int next_id;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004632 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4633
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004634 usermsgs_clr("CLI");
4635
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004636 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4637 return 1;
4638
4639 ++args;
4640
4641 sv_name = be_name = args[1];
4642 /* split backend/server arg */
4643 while (*sv_name && *(++sv_name)) {
4644 if (*sv_name == '/') {
4645 *sv_name = '\0';
4646 ++sv_name;
4647 break;
4648 }
4649 }
4650
4651 if (!*sv_name)
4652 return cli_err(appctx, "Require 'backend/server'.");
4653
Amaury Denoyellecece9182021-04-20 17:09:08 +02004654 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004655 if (!be)
4656 return cli_err(appctx, "No such backend.");
4657
4658 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004659 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004660 return 1;
4661 }
4662
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004663 /* At this point, some operations might not be thread-safe anymore. This
4664 * might be the case for parsing handlers which were designed to run
4665 * only at the starting stage on single-thread mode.
4666 *
4667 * Activate thread isolation to ensure thread-safety.
4668 */
4669 thread_isolate();
4670
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004671 args[1] = sv_name;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004672 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags);
4673 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004674 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004675
4676 while (*args[argc]) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004677 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004678
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004679 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004680 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004681 }
4682
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004683 errcode = _srv_parse_finalize(args, argc, srv, be, parse_flags);
4684 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004685 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004686
Amaury Denoyelleefbf35c2021-06-10 17:34:10 +02004687 /* A dynamic server does not currently support resolution.
4688 *
4689 * Initialize it explicitly to the "none" method to ensure no
4690 * resolution will ever be executed.
4691 */
4692 srv->init_addr_methods = SRV_IADDR_NONE;
4693
Amaury Denoyelle30467232021-03-12 18:03:27 +01004694 if (srv->mux_proto) {
4695 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004696 ha_alert("MUX protocol is not usable for server.\n");
Amaury Denoyelle30467232021-03-12 18:03:27 +01004697 goto out;
4698 }
4699 }
4700
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004701 if (srv_init_per_thr(srv) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004702 ha_alert("failed to allocate per-thread lists for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004703 goto out;
4704 }
4705
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004706 if (srv->max_idle_conns != 0) {
4707 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4708 if (!srv->curr_idle_thr) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004709 ha_alert("failed to allocate counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004710 goto out;
4711 }
4712 }
4713
4714 if (!srv_alloc_lb(srv, be)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004715 ha_alert("Failed to initialize load-balancing data.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004716 goto out;
4717 }
4718
4719 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4720 COUNTERS_SV,
4721 STATS_PX_CAP_SRV)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004722 ha_alert("failed to allocate extra counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004723 goto out;
4724 }
4725
Amaury Denoyelle79b90e82021-09-20 15:15:19 +02004726 if (srv->use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL) ||
4727 srv->check.use_ssl == 1) {
Amaury Denoyelle34897d22021-05-19 09:49:41 +02004728 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
4729 if (xprt_get(XPRT_SSL)->prepare_srv(srv))
4730 goto out;
4731 }
4732 }
4733
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004734 if (srv->trackit) {
4735 if (srv_apply_track(srv, be))
4736 goto out;
4737 }
4738
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004739 /* Init check/agent if configured. The check is manually disabled
4740 * because a dynamic server is started in a disable state. It must be
4741 * manually activated via a "enable health/agent" command.
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004742 */
4743 if (srv->do_check) {
4744 if (init_srv_check(srv))
4745 goto out;
4746
4747 srv->check.state &= ~CHK_ST_ENABLED;
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004748 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004749
4750 if (srv->do_agent) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004751 if (init_srv_agent_check(srv))
4752 goto out;
4753
4754 srv->agent.state &= ~CHK_ST_ENABLED;
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004755 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004756
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02004757 /* Init slowstart if needed. */
4758 if (init_srv_slowstart(srv))
4759 goto out;
4760
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004761 /* Attach the server to the end of the proxy linked list. Note that this
4762 * operation is not thread-safe so this is executed under thread
4763 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004764 *
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004765 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004766 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004767
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004768 /* TODO use a double-linked list for px->srv */
4769 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004770 struct server *next = be->srv;
4771
4772 while (1) {
4773 /* check for duplicate server */
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02004774 if (strcmp(srv->id, next->id) == 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004775 ha_alert("Already exists a server with the same name in backend.\n");
Amaury Denoyellecece9182021-04-20 17:09:08 +02004776 goto out;
4777 }
4778
4779 if (!next->next)
4780 break;
4781
4782 next = next->next;
4783 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004784
4785 next->next = srv;
4786 }
4787 else {
4788 srv->next = be->srv;
4789 be->srv = srv;
4790 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004791
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004792 /* generate the server id if not manually specified */
4793 if (!srv->puid) {
4794 next_id = get_next_id(&be->conf.used_server_id, 1);
4795 if (!next_id) {
4796 ha_alert("Cannot attach server : no id left in proxy\n");
4797 goto out;
4798 }
4799
4800 srv->conf.id.key = srv->puid = next_id;
4801 srv->conf.name.key = srv->id;
4802 }
4803
4804 /* insert the server in the backend trees */
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02004805 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4806 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02004807 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004808
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004809 thread_release();
4810
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004811 /* Start the check task. The server must be fully initialized.
4812 *
4813 * <srvpos> and <nbcheck> parameters are set to 1 as there should be no
4814 * need to randomly spread the task interval for dynamic servers.
4815 */
4816 if (srv->check.state & CHK_ST_CONFIGURED) {
4817 if (!start_check_task(&srv->check, 0, 1, 1))
4818 ha_alert("System might be unstable, consider to execute a reload");
4819 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004820 if (srv->agent.state & CHK_ST_CONFIGURED) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004821 if (!start_check_task(&srv->agent, 0, 1, 1))
4822 ha_alert("System might be unstable, consider to execute a reload");
4823 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004824
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004825 ha_notice("New server registered.\n");
4826 cli_msg(appctx, LOG_INFO, usermsgs_str());
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004827
4828 return 0;
4829
4830out:
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004831 if (srv) {
4832 if (srv->track)
4833 release_server_track(srv);
4834
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004835 if (srv->check.state & CHK_ST_CONFIGURED)
4836 free_check(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004837 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004838 free_check(&srv->agent);
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004839
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004840 /* remove the server from the proxy linked list */
4841 if (be->srv == srv) {
4842 be->srv = srv->next;
4843 }
4844 else {
4845 struct server *prev;
4846 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4847 ;
4848 if (prev)
4849 prev->next = srv->next;
4850 }
4851
4852 }
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004853
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004854 thread_release();
4855
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004856 if (!usermsgs_empty())
4857 cli_err(appctx, usermsgs_str());
4858
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004859 if (srv)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004860 srv_drop(srv);
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004861
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004862 return 1;
4863}
4864
Amaury Denoyellee5580432021-04-15 14:41:20 +02004865/* Parse a "del server" command
4866 * Returns 0 if the server has been successfully initialized, 1 on failure.
4867 */
4868static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4869{
4870 struct proxy *be;
4871 struct server *srv;
4872 char *be_name, *sv_name;
4873
4874 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4875 return 1;
4876
4877 ++args;
4878
4879 sv_name = be_name = args[1];
4880 /* split backend/server arg */
4881 while (*sv_name && *(++sv_name)) {
4882 if (*sv_name == '/') {
4883 *sv_name = '\0';
4884 ++sv_name;
4885 break;
4886 }
4887 }
4888
4889 if (!*sv_name)
4890 return cli_err(appctx, "Require 'backend/server'.");
4891
4892 /* The proxy servers list is currently not protected by a lock so this
Willy Tarreauba3ab792021-08-04 14:42:37 +02004893 * requires thread isolation. In addition, any place referencing the
4894 * server about to be deleted would be unsafe after our operation, so
4895 * we must be certain to be alone so that no other thread has even
4896 * started to grab a temporary reference to this server.
Amaury Denoyellee5580432021-04-15 14:41:20 +02004897 */
Willy Tarreauba3ab792021-08-04 14:42:37 +02004898 thread_isolate_full();
Amaury Denoyellee5580432021-04-15 14:41:20 +02004899
4900 get_backend_server(be_name, sv_name, &be, &srv);
4901 if (!be) {
4902 cli_err(appctx, "No such backend.");
4903 goto out;
4904 }
4905
4906 if (!srv) {
4907 cli_err(appctx, "No such server.");
4908 goto out;
4909 }
4910
Amaury Denoyelle14c3c5c2021-08-23 14:10:51 +02004911 if (srv->flags & SRV_F_NON_PURGEABLE) {
4912 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 +02004913 goto out;
4914 }
4915
4916 /* Only servers in maintenance can be deleted. This ensures that the
4917 * server is not present anymore in the lb structures (through
4918 * lbprm.set_server_status_down).
4919 */
4920 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4921 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4922 goto out;
4923 }
4924
4925 /* Ensure that there is no active/idle/pending connection on the server.
4926 *
4927 * TODO idle connections should not prevent server deletion. A proper
4928 * cleanup function should be implemented to be used here.
4929 */
4930 if (srv->cur_sess || srv->curr_idle_conns ||
Willy Tarreaua0570452021-06-18 09:30:30 +02004931 !eb_is_empty(&srv->queue.head)) {
Amaury Denoyellee5580432021-04-15 14:41:20 +02004932 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4933 goto out;
4934 }
4935
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004936 /* remove srv from tracking list */
4937 if (srv->track)
4938 release_server_track(srv);
4939
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004940 /* stop the check task if running */
4941 if (srv->check.state & CHK_ST_CONFIGURED)
4942 check_purge(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004943 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004944 check_purge(&srv->agent);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004945
4946 /* detach the server from the proxy linked list
4947 * The proxy servers list is currently not protected by a lock, so this
4948 * requires thread_isolate/release.
4949 */
4950
4951 /* be->srv cannot be empty since we have already found the server with
4952 * get_backend_server */
4953 BUG_ON(!be->srv);
4954 if (be->srv == srv) {
4955 be->srv = srv->next;
4956 }
4957 else {
4958 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004959 for (next = be->srv; srv != next->next; next = next->next) {
4960 /* srv cannot be not found since we have already found
4961 * it with get_backend_server */
4962 BUG_ON(!next);
4963 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004964
Amaury Denoyellee5580432021-04-15 14:41:20 +02004965 next->next = srv->next;
4966 }
4967
4968 /* remove srv from addr_node tree */
Amaury Denoyelle82d7f772021-06-09 16:00:43 +02004969 eb32_delete(&srv->conf.id);
4970 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004971 ebpt_delete(&srv->addr_node);
4972
4973 /* remove srv from idle_node tree for idle conn cleanup */
4974 eb32_delete(&srv->idle_node);
4975
4976 thread_release();
4977
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004978 ha_notice("Server deleted.\n");
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004979 srv_drop(srv);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004980
4981 cli_msg(appctx, LOG_INFO, "Server deleted.");
4982
4983 return 0;
4984
4985out:
4986 thread_release();
4987
4988 return 1;
4989}
4990
William Lallemand222baf22016-11-19 02:00:33 +01004991/* register cli keywords */
4992static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec755efd2021-08-03 18:05:37 +02004993 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
4994 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004995 { { "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 +02004996 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
4997 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004998 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4999 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
5000 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
5001 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
5002 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
5003 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
5004 { { "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 +01005005 {{},}
5006}};
5007
Willy Tarreau0108d902018-11-25 19:14:37 +01005008INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01005009
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005010/* Prepare a server <srv> to track check status of another one. <srv>.<trackit>
5011 * field is used to retrieve the identifier of the tracked server, either with
5012 * the format "proxy/server" or just "server". <curproxy> must point to the
5013 * backend owning <srv>; if no proxy is specified in <trackit>, it will be used
5014 * to find the tracked server.
5015 *
5016 * Returns 0 if the server track has been activated else non-zero.
5017 *
5018 * Not thread-safe.
5019 */
5020int srv_apply_track(struct server *srv, struct proxy *curproxy)
5021{
5022 struct proxy *px;
5023 struct server *strack, *loop;
5024 char *pname, *sname;
5025
5026 if (!srv->trackit)
5027 return 1;
5028
5029 pname = srv->trackit;
5030 sname = strrchr(pname, '/');
5031
5032 if (sname) {
5033 *sname++ = '\0';
5034 }
5035 else {
5036 sname = pname;
5037 pname = NULL;
5038 }
5039
5040 if (pname) {
5041 px = proxy_be_by_name(pname);
5042 if (!px) {
5043 ha_alert("unable to find required proxy '%s' for tracking.\n",
5044 pname);
5045 return 1;
5046 }
5047 }
5048 else {
5049 px = curproxy;
5050 }
5051
5052 strack = findserver(px, sname);
5053 if (!strack) {
5054 ha_alert("unable to find required server '%s' for tracking.\n",
5055 sname);
5056 return 1;
5057 }
5058
Amaury Denoyelle79f68be2021-07-13 10:35:50 +02005059 if (strack->flags & SRV_F_DYNAMIC) {
5060 ha_alert("unable to use %s/%s for tracking as it is a dynamic server.\n",
5061 px->id, strack->id);
5062 return 1;
5063 }
5064
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005065 if (!strack->do_check && !strack->do_agent && !strack->track &&
5066 !strack->trackit) {
5067 ha_alert("unable to use %s/%s for "
5068 "tracking as it does not have any check nor agent enabled.\n",
5069 px->id, strack->id);
5070 return 1;
5071 }
5072
5073 for (loop = strack->track; loop && loop != srv; loop = loop->track)
5074 ;
5075
5076 if (srv == strack || loop) {
5077 ha_alert("unable to track %s/%s as it "
5078 "belongs to a tracking chain looping back to %s/%s.\n",
5079 px->id, strack->id, px->id,
5080 srv == strack ? strack->id : loop->id);
5081 return 1;
5082 }
5083
5084 if (curproxy != px &&
5085 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
5086 ha_alert("unable to use %s/%s for"
5087 "tracking: disable-on-404 option inconsistency.\n",
5088 px->id, strack->id);
5089 return 1;
5090 }
5091
5092 srv->track = strack;
5093 srv->tracknext = strack->trackers;
5094 strack->trackers = srv;
Amaury Denoyelle06269612021-08-23 14:05:07 +02005095 strack->flags |= SRV_F_NON_PURGEABLE;
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005096
5097 ha_free(&srv->trackit);
5098
5099 return 0;
5100}
5101
Emeric Brun64cc49c2017-10-03 14:46:45 +02005102/*
5103 * This function applies server's status changes, it is
5104 * is designed to be called asynchronously.
5105 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005106 * Must be called with the server lock held. This may also be called at init
5107 * time as the result of parsing the state file, in which case no lock will be
5108 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005109 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005110static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005111{
5112 struct check *check = &s->check;
5113 int xferred;
5114 struct proxy *px = s->proxy;
5115 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
5116 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
5117 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02005118 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005119
Emeric Brun64cc49c2017-10-03 14:46:45 +02005120 /* If currently main is not set we try to apply pending state changes */
5121 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
5122 int next_admin;
5123
5124 /* Backup next admin */
5125 next_admin = s->next_admin;
5126
5127 /* restore current admin state */
5128 s->next_admin = s->cur_admin;
5129
5130 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
5131 s->last_change = now.tv_sec;
5132 if (s->proxy->lbprm.set_server_status_down)
5133 s->proxy->lbprm.set_server_status_down(s);
5134
5135 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5136 srv_shutdown_streams(s, SF_ERR_DOWN);
5137
5138 /* we might have streams queued on this server and waiting for
5139 * a connection. Those which are redispatchable will be queued
5140 * to another server or to the proxy itself.
5141 */
5142 xferred = pendconn_redistribute(s);
5143
5144 tmptrash = alloc_trash_chunk();
5145 if (tmptrash) {
5146 chunk_printf(tmptrash,
5147 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
5148 s->proxy->id, s->id);
5149
Emeric Brun5a133512017-10-19 14:42:30 +02005150 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005151 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005152
5153 /* we don't send an alert if the server was previously paused */
5154 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005155 send_log(s->proxy, log_level, "%s.\n",
5156 tmptrash->area);
5157 send_email_alert(s, log_level, "%s",
5158 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005159 free_trash_chunk(tmptrash);
5160 tmptrash = NULL;
5161 }
5162 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5163 set_backend_down(s->proxy);
5164
5165 s->counters.down_trans++;
5166 }
5167 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
5168 s->last_change = now.tv_sec;
5169 if (s->proxy->lbprm.set_server_status_down)
5170 s->proxy->lbprm.set_server_status_down(s);
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 stopping", 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);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005185
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005186 ha_warning("%s.\n", tmptrash->area);
5187 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5188 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005189 free_trash_chunk(tmptrash);
5190 tmptrash = NULL;
5191 }
5192
5193 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5194 set_backend_down(s->proxy);
5195 }
5196 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5197 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
5198 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5199 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5200 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5201 s->proxy->last_change = now.tv_sec;
5202 }
5203
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01005204 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02005205 s->down_time += now.tv_sec - s->last_change;
5206
5207 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005208 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005209 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5210
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005211 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005212 /* now propagate the status change to any LB algorithms */
5213 if (px->lbprm.update_server_eweight)
5214 px->lbprm.update_server_eweight(s);
5215 else if (srv_willbe_usable(s)) {
5216 if (px->lbprm.set_server_status_up)
5217 px->lbprm.set_server_status_up(s);
5218 }
5219 else {
5220 if (px->lbprm.set_server_status_down)
5221 px->lbprm.set_server_status_down(s);
5222 }
5223
5224 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5225 * and it's not a backup server and its effective weight is > 0,
5226 * then it can accept new connections, so we shut down all streams
5227 * on all backup servers.
5228 */
5229 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5230 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5231 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5232
5233 /* check if we can handle some connections queued at the proxy. We
5234 * will take as many as we can handle.
5235 */
5236 xferred = pendconn_grab_from_px(s);
5237
5238 tmptrash = alloc_trash_chunk();
5239 if (tmptrash) {
5240 chunk_printf(tmptrash,
5241 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5242 s->proxy->id, s->id);
5243
Emeric Brun5a133512017-10-19 14:42:30 +02005244 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005245 ha_warning("%s.\n", tmptrash->area);
5246 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5247 tmptrash->area);
5248 send_email_alert(s, LOG_NOTICE, "%s",
5249 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005250 free_trash_chunk(tmptrash);
5251 tmptrash = NULL;
5252 }
5253
5254 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5255 set_backend_down(s->proxy);
5256 }
5257 else if (s->cur_eweight != s->next_eweight) {
5258 /* now propagate the status change to any LB algorithms */
5259 if (px->lbprm.update_server_eweight)
5260 px->lbprm.update_server_eweight(s);
5261 else if (srv_willbe_usable(s)) {
5262 if (px->lbprm.set_server_status_up)
5263 px->lbprm.set_server_status_up(s);
5264 }
5265 else {
5266 if (px->lbprm.set_server_status_down)
5267 px->lbprm.set_server_status_down(s);
5268 }
5269
5270 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5271 set_backend_down(s->proxy);
5272 }
5273
5274 s->next_admin = next_admin;
5275 }
5276
Emeric Brun5a133512017-10-19 14:42:30 +02005277 /* reset operational state change */
5278 *s->op_st_chg.reason = 0;
5279 s->op_st_chg.status = s->op_st_chg.code = -1;
5280 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005281
5282 /* Now we try to apply pending admin changes */
5283
5284 /* Maintenance must also disable health checks */
5285 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5286 if (s->check.state & CHK_ST_ENABLED) {
5287 s->check.state |= CHK_ST_PAUSED;
5288 check->health = 0;
5289 }
5290
5291 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005292 tmptrash = alloc_trash_chunk();
5293 if (tmptrash) {
5294 chunk_printf(tmptrash,
5295 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5296 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5297 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005298
Olivier Houchard796a2b32017-10-24 17:42:47 +02005299 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005300
Olivier Houchard796a2b32017-10-24 17:42:47 +02005301 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005302 ha_warning("%s.\n", tmptrash->area);
5303 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5304 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005305 }
5306 free_trash_chunk(tmptrash);
5307 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005308 }
Emeric Brun8f298292017-12-06 16:47:17 +01005309 /* commit new admin status */
5310
5311 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005312 }
5313 else { /* server was still running */
5314 check->health = 0; /* failure */
5315 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005316
5317 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005318 if (s->proxy->lbprm.set_server_status_down)
5319 s->proxy->lbprm.set_server_status_down(s);
5320
Emeric Brun64cc49c2017-10-03 14:46:45 +02005321 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5322 srv_shutdown_streams(s, SF_ERR_DOWN);
5323
William Dauchy6318d332020-05-02 21:52:36 +02005324 /* force connection cleanup on the given server */
5325 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005326 /* we might have streams queued on this server and waiting for
5327 * a connection. Those which are redispatchable will be queued
5328 * to another server or to the proxy itself.
5329 */
5330 xferred = pendconn_redistribute(s);
5331
5332 tmptrash = alloc_trash_chunk();
5333 if (tmptrash) {
5334 chunk_printf(tmptrash,
5335 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5336 s->flags & SRV_F_BACKUP ? "Backup " : "",
5337 s->proxy->id, s->id,
5338 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5339
5340 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5341
5342 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005343 ha_warning("%s.\n", tmptrash->area);
5344 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5345 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005346 }
5347 free_trash_chunk(tmptrash);
5348 tmptrash = NULL;
5349 }
5350 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5351 set_backend_down(s->proxy);
5352
5353 s->counters.down_trans++;
5354 }
5355 }
5356 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5357 /* OK here we're leaving maintenance, we have many things to check,
5358 * because the server might possibly be coming back up depending on
5359 * its state. In practice, leaving maintenance means that we should
5360 * immediately turn to UP (more or less the slowstart) under the
5361 * following conditions :
5362 * - server is neither checked nor tracked
5363 * - server tracks another server which is not checked
5364 * - server tracks another server which is already up
5365 * Which sums up as something simpler :
5366 * "either the tracking server is up or the server's checks are disabled
5367 * or up". Otherwise we only re-enable health checks. There's a special
5368 * case associated to the stopping state which can be inherited. Note
5369 * that the server might still be in drain mode, which is naturally dealt
5370 * with by the lower level functions.
5371 */
5372
5373 if (s->check.state & CHK_ST_ENABLED) {
5374 s->check.state &= ~CHK_ST_PAUSED;
5375 check->health = check->rise; /* start OK but check immediately */
5376 }
5377
5378 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5379 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5380 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5381 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5382 s->next_state = SRV_ST_STOPPING;
5383 }
5384 else {
Willy Tarreaud332f132021-08-04 19:35:13 +02005385 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005386 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005387 if (s->slowstart > 0) {
5388 if (s->warmup)
5389 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5390 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005391 else
5392 s->next_state = SRV_ST_RUNNING;
5393 }
5394
5395 }
5396
5397 tmptrash = alloc_trash_chunk();
5398 if (tmptrash) {
5399 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5400 chunk_printf(tmptrash,
5401 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5402 s->flags & SRV_F_BACKUP ? "Backup " : "",
5403 s->proxy->id, s->id,
5404 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5405 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5406 }
5407 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5408 chunk_printf(tmptrash,
5409 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5410 s->flags & SRV_F_BACKUP ? "Backup " : "",
5411 s->proxy->id, s->id, s->hostname,
5412 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5413 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5414 }
5415 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5416 chunk_printf(tmptrash,
5417 "%sServer %s/%s is %s/%s (leaving maintenance)",
5418 s->flags & SRV_F_BACKUP ? "Backup " : "",
5419 s->proxy->id, s->id,
5420 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5421 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5422 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005423 ha_warning("%s.\n", tmptrash->area);
5424 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5425 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005426 free_trash_chunk(tmptrash);
5427 tmptrash = NULL;
5428 }
5429
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005430 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005431 /* now propagate the status change to any LB algorithms */
5432 if (px->lbprm.update_server_eweight)
5433 px->lbprm.update_server_eweight(s);
5434 else if (srv_willbe_usable(s)) {
5435 if (px->lbprm.set_server_status_up)
5436 px->lbprm.set_server_status_up(s);
5437 }
5438 else {
5439 if (px->lbprm.set_server_status_down)
5440 px->lbprm.set_server_status_down(s);
5441 }
5442
5443 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5444 set_backend_down(s->proxy);
Willy Tarreaud332f132021-08-04 19:35:13 +02005445 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5446 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005447
Willy Tarreau6a78e612018-08-07 10:14:53 +02005448 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5449 * and it's not a backup server and its effective weight is > 0,
5450 * then it can accept new connections, so we shut down all streams
5451 * on all backup servers.
5452 */
5453 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5454 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5455 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5456
5457 /* check if we can handle some connections queued at the proxy. We
5458 * will take as many as we can handle.
5459 */
5460 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005461 }
5462 else if (s->next_admin & SRV_ADMF_MAINT) {
5463 /* remaining in maintenance mode, let's inform precisely about the
5464 * situation.
5465 */
5466 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5467 tmptrash = alloc_trash_chunk();
5468 if (tmptrash) {
5469 chunk_printf(tmptrash,
5470 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5471 s->flags & SRV_F_BACKUP ? "Backup " : "",
5472 s->proxy->id, s->id);
5473
5474 if (s->track) /* normally it's mandatory here */
5475 chunk_appendf(tmptrash, " via %s/%s",
5476 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005477 ha_warning("%s.\n", tmptrash->area);
5478 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5479 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005480 free_trash_chunk(tmptrash);
5481 tmptrash = NULL;
5482 }
5483 }
5484 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5485 tmptrash = alloc_trash_chunk();
5486 if (tmptrash) {
5487 chunk_printf(tmptrash,
5488 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5489 s->flags & SRV_F_BACKUP ? "Backup " : "",
5490 s->proxy->id, s->id, s->hostname);
5491
5492 if (s->track) /* normally it's mandatory here */
5493 chunk_appendf(tmptrash, " via %s/%s",
5494 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005495 ha_warning("%s.\n", tmptrash->area);
5496 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5497 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005498 free_trash_chunk(tmptrash);
5499 tmptrash = NULL;
5500 }
5501 }
5502 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5503 tmptrash = alloc_trash_chunk();
5504 if (tmptrash) {
5505 chunk_printf(tmptrash,
5506 "%sServer %s/%s remains in forced maintenance",
5507 s->flags & SRV_F_BACKUP ? "Backup " : "",
5508 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005509 ha_warning("%s.\n", tmptrash->area);
5510 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5511 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005512 free_trash_chunk(tmptrash);
5513 tmptrash = NULL;
5514 }
5515 }
5516 /* don't report anything when leaving drain mode and remaining in maintenance */
5517
5518 s->cur_admin = s->next_admin;
5519 }
5520
5521 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5522 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5523 /* drain state is applied only if not yet in maint */
5524
5525 s->last_change = now.tv_sec;
5526 if (px->lbprm.set_server_status_down)
5527 px->lbprm.set_server_status_down(s);
5528
5529 /* we might have streams queued on this server and waiting for
5530 * a connection. Those which are redispatchable will be queued
5531 * to another server or to the proxy itself.
5532 */
5533 xferred = pendconn_redistribute(s);
5534
5535 tmptrash = alloc_trash_chunk();
5536 if (tmptrash) {
5537 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5538 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5539 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5540
5541 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5542
5543 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005544 ha_warning("%s.\n", tmptrash->area);
5545 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5546 tmptrash->area);
5547 send_email_alert(s, LOG_NOTICE, "%s",
5548 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005549 }
5550 free_trash_chunk(tmptrash);
5551 tmptrash = NULL;
5552 }
5553
5554 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5555 set_backend_down(s->proxy);
5556 }
5557 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5558 /* OK completely leaving drain mode */
5559 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5560 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5561 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5562 s->proxy->last_change = now.tv_sec;
5563 }
5564
5565 if (s->last_change < now.tv_sec) // ignore negative times
5566 s->down_time += now.tv_sec - s->last_change;
5567 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005568 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005569
5570 tmptrash = alloc_trash_chunk();
5571 if (tmptrash) {
5572 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5573 chunk_printf(tmptrash,
5574 "%sServer %s/%s is %s (leaving forced drain)",
5575 s->flags & SRV_F_BACKUP ? "Backup " : "",
5576 s->proxy->id, s->id,
5577 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5578 }
5579 else {
5580 chunk_printf(tmptrash,
5581 "%sServer %s/%s is %s (leaving drain)",
5582 s->flags & SRV_F_BACKUP ? "Backup " : "",
5583 s->proxy->id, s->id,
5584 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5585 if (s->track) /* normally it's mandatory here */
5586 chunk_appendf(tmptrash, " via %s/%s",
5587 s->track->proxy->id, s->track->id);
5588 }
5589
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005590 ha_warning("%s.\n", tmptrash->area);
5591 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5592 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005593 free_trash_chunk(tmptrash);
5594 tmptrash = NULL;
5595 }
5596
5597 /* now propagate the status change to any LB algorithms */
5598 if (px->lbprm.update_server_eweight)
5599 px->lbprm.update_server_eweight(s);
5600 else if (srv_willbe_usable(s)) {
5601 if (px->lbprm.set_server_status_up)
5602 px->lbprm.set_server_status_up(s);
5603 }
5604 else {
5605 if (px->lbprm.set_server_status_down)
5606 px->lbprm.set_server_status_down(s);
5607 }
5608 }
5609 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5610 /* remaining in drain mode after removing one of its flags */
5611
5612 tmptrash = alloc_trash_chunk();
5613 if (tmptrash) {
5614 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5615 chunk_printf(tmptrash,
5616 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5617 s->flags & SRV_F_BACKUP ? "Backup " : "",
5618 s->proxy->id, s->id);
5619
5620 if (s->track) /* normally it's mandatory here */
5621 chunk_appendf(tmptrash, " via %s/%s",
5622 s->track->proxy->id, s->track->id);
5623 }
5624 else {
5625 chunk_printf(tmptrash,
5626 "%sServer %s/%s remains in forced drain mode",
5627 s->flags & SRV_F_BACKUP ? "Backup " : "",
5628 s->proxy->id, s->id);
5629 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005630 ha_warning("%s.\n", tmptrash->area);
5631 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5632 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005633 free_trash_chunk(tmptrash);
5634 tmptrash = NULL;
5635 }
5636
5637 /* commit new admin status */
5638
5639 s->cur_admin = s->next_admin;
5640 }
5641 }
5642
5643 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005644 *s->adm_st_chg_cause = 0;
5645}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005646
Willy Tarreau144f84a2021-03-02 16:09:26 +01005647struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005648{
5649 struct connection *conn;
5650
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005651 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005652 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005653 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005654 }
5655
5656 return task;
5657}
5658
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005659/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005660 * moving them all.
5661 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005662 *
5663 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005664 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005665static 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 +02005666{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005667 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005668 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005669 int i = 0;
5670
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005671 node = eb_first(idle_tree);
5672 while (node) {
5673 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005674 if (toremove_nb != -1 && i >= toremove_nb)
5675 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005676
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005677 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005678 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005679 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005680 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005681
5682 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005683 }
5684 return i;
5685}
William Dauchy6318d332020-05-02 21:52:36 +02005686/* cleanup connections for a given server
5687 * might be useful when going on forced maintenance or live changing ip/port
5688 */
William Dauchy707ad322020-05-04 13:52:40 +02005689static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005690{
William Dauchy6318d332020-05-02 21:52:36 +02005691 int did_remove;
5692 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005693
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005694 /* nothing to do if pool-max-conn is null */
5695 if (!srv->max_idle_conns)
5696 return;
5697
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005698 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005699 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005700 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005701 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005702 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 +02005703 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005704 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 +02005705 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005706 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005707 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005708 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005709
5710 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5711 break;
William Dauchy6318d332020-05-02 21:52:36 +02005712 }
Willy Tarreau260f3242021-10-06 18:30:04 +02005713}
5714
5715/* removes an idle conn after updating the server idle conns counters */
5716void srv_release_conn(struct server *srv, struct connection *conn)
5717{
5718 if (conn->flags & CO_FL_LIST_MASK) {
5719 /* The connection is currently in the server's idle list, so tell it
5720 * there's one less connection available in that list.
5721 */
5722 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5723 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
5724 _HA_ATOMIC_DEC(&srv->curr_idle_thr[tid]);
5725 }
5726 else {
5727 /* The connection is not private and not in any server's idle
5728 * list, so decrement the current number of used connections
5729 */
5730 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5731 }
5732
5733 /* Remove the connection from any tree (safe, idle or available) */
5734 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5735 conn_delete_from_tree(&conn->hash_node->node);
5736 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5737}
5738
5739/* retrieve a connection from its <hash> in <tree>
5740 * returns NULL if no connection found
5741 */
5742struct connection *srv_lookup_conn(struct eb_root *tree, uint64_t hash)
5743{
5744 struct ebmb_node *node = NULL;
5745 struct connection *conn = NULL;
5746 struct conn_hash_node *hash_node = NULL;
5747
5748 node = ebmb_lookup(tree, &hash, sizeof(hash_node->hash));
5749 if (node) {
5750 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5751 conn = hash_node->conn;
5752 }
5753
5754 return conn;
5755}
5756
5757/* retrieve the next connection sharing the same hash as <conn>
5758 * returns NULL if no connection found
5759 */
5760struct connection *srv_lookup_conn_next(struct connection *conn)
5761{
5762 struct ebmb_node *node = NULL;
5763 struct connection *next_conn = NULL;
5764 struct conn_hash_node *hash_node = NULL;
5765
5766 node = ebmb_next_dup(&conn->hash_node->node);
5767 if (node) {
5768 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5769 next_conn = hash_node->conn;
5770 }
5771
5772 return next_conn;
5773}
5774
5775/* This adds an idle connection to the server's list if the connection is
5776 * reusable, not held by any owner anymore, but still has available streams.
5777 */
5778int srv_add_to_idle_list(struct server *srv, struct connection *conn, int is_safe)
5779{
5780 /* we try to keep the connection in the server's idle list
5781 * if we don't have too many FD in use, and if the number of
5782 * idle+current conns is lower than what was observed before
5783 * last purge, or if we already don't have idle conns for the
5784 * current thread and we don't exceed last count by global.nbthread.
5785 */
5786 if (!(conn->flags & CO_FL_PRIVATE) &&
5787 srv && srv->pool_purge_delay > 0 &&
5788 ((srv->proxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
5789 ha_used_fds < global.tune.pool_high_count &&
5790 (srv->max_idle_conns == -1 || srv->max_idle_conns > srv->curr_idle_conns) &&
5791 ((eb_is_empty(&srv->per_thr[tid].safe_conns) &&
5792 (is_safe || eb_is_empty(&srv->per_thr[tid].idle_conns))) ||
5793 (ha_used_fds < global.tune.pool_low_count &&
5794 (srv->curr_used_conns + srv->curr_idle_conns <=
5795 MAX(srv->curr_used_conns, srv->est_need_conns) + srv->low_idle_conns))) &&
5796 !conn->mux->used_streams(conn) && conn->mux->avail_streams(conn)) {
5797 int retadd;
5798
5799 retadd = _HA_ATOMIC_ADD_FETCH(&srv->curr_idle_conns, 1);
5800 if (retadd > srv->max_idle_conns) {
5801 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5802 return 0;
5803 }
5804 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5805
5806 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5807 conn_delete_from_tree(&conn->hash_node->node);
5808
5809 if (is_safe) {
5810 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_SAFE_LIST;
5811 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5812 _HA_ATOMIC_INC(&srv->curr_safe_nb);
5813 } else {
5814 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_IDLE_LIST;
5815 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5816 _HA_ATOMIC_INC(&srv->curr_idle_nb);
5817 }
5818 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5819 _HA_ATOMIC_INC(&srv->curr_idle_thr[tid]);
5820
5821 __ha_barrier_full();
5822 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5823 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5824 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5825 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5826 now_ms);
5827 eb32_insert(&idle_conn_srv, &srv->idle_node);
5828 if (!task_in_wq(idle_conn_task) && !
5829 task_in_rq(idle_conn_task)) {
5830 task_schedule(idle_conn_task,
5831 srv->idle_node.key);
5832 }
5833
5834 }
5835 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5836 }
5837 return 1;
5838 }
5839 return 0;
William Dauchy6318d332020-05-02 21:52:36 +02005840}
5841
Willy Tarreau144f84a2021-03-02 16:09:26 +01005842struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005843{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005844 struct server *srv;
5845 struct eb32_node *eb;
5846 int i;
5847 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005848
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005849 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005850 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5851 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005852 int exceed_conns;
5853 int to_kill;
5854 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005855
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005856 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5857 if (!eb) {
5858 /* we might have reached the end of the tree, typically because
5859 * <now_ms> is in the first half and we're first scanning the last
5860 * half. Let's loop back to the beginning of the tree now.
5861 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005862
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005863 eb = eb32_first(&idle_conn_srv);
5864 if (likely(!eb))
5865 break;
5866 }
5867 if (tick_is_lt(now_ms, eb->key)) {
5868 /* timer not expired yet, revisit it later */
5869 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005870 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005871 }
5872 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005873
5874 /* Calculate how many idle connections we want to kill :
5875 * we want to remove half the difference between the total
5876 * of established connections (used or idle) and the max
5877 * number of used connections.
5878 */
5879 curr_idle = srv->curr_idle_conns;
5880 if (curr_idle == 0)
5881 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005882 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005883 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005884
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005885 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005886 if (srv->est_need_conns < srv->max_used_conns)
5887 srv->est_need_conns = srv->max_used_conns;
5888
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005889 srv->max_used_conns = srv->curr_used_conns;
5890
Willy Tarreau18ed7892020-07-02 19:05:30 +02005891 if (exceed_conns <= 0)
5892 goto remove;
5893
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005894 /* check all threads starting with ours */
5895 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005896 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005897 int j;
5898 int did_remove = 0;
5899
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005900 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5901 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005902
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005903 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005904 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 +02005905 if (j > 0)
5906 did_remove = 1;
5907 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005908 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 +01005909 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005910 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005911
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005912 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005913 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005914
5915 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5916 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005917 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005918remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005919 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005920
5921 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005922 /* There are still more idle connections, add the
5923 * server back in the tree.
5924 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005925 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005926 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005927 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005928 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005929 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005930 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5931
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005932 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005933 return task;
5934}
Olivier Houchard88698d92019-04-16 19:07:22 +02005935
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005936/* Close remaining idle connections. This functions is designed to be run on
5937 * process shutdown. This guarantees a proper socket shutdown to avoid
5938 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5939 * bypassed.
5940 *
5941 * This function is not thread-safe so it must only be called via a global
5942 * deinit function.
5943 */
5944static void srv_close_idle_conns(struct server *srv)
5945{
5946 struct eb_root **cleaned_tree;
5947 int i;
5948
5949 for (i = 0; i < global.nbthread; ++i) {
5950 struct eb_root *conn_trees[] = {
5951 &srv->per_thr[i].idle_conns,
5952 &srv->per_thr[i].safe_conns,
5953 &srv->per_thr[i].avail_conns,
5954 NULL
5955 };
5956
5957 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5958 while (!eb_is_empty(*cleaned_tree)) {
5959 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5960 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5961 struct connection *conn = conn_hash_node->conn;
5962
5963 if (conn->ctrl->ctrl_close)
5964 conn->ctrl->ctrl_close(conn);
5965 ebmb_delete(node);
5966 }
5967 }
5968 }
5969}
5970
5971REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5972
Willy Tarreau76cc6992020-07-01 18:49:24 +02005973/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5974static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005975 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005976 char **err)
5977{
5978 if (too_many_args(1, args, err, NULL))
5979 return -1;
5980
5981 if (strcmp(args[1], "on") == 0)
5982 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5983 else if (strcmp(args[1], "off") == 0)
5984 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5985 else {
5986 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5987 return -1;
5988 }
5989 return 0;
5990}
5991
Olivier Houchard88698d92019-04-16 19:07:22 +02005992/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5993static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005994 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005995 char **err)
5996{
5997 int arg = -1;
5998
5999 if (too_many_args(1, args, err, NULL))
6000 return -1;
6001
6002 if (*(args[1]) != 0)
6003 arg = atoi(args[1]);
6004
6005 if (arg < 0 || arg > 100) {
6006 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
6007 return -1;
6008 }
6009
6010 if (args[0][10] == 'h')
6011 global.tune.pool_high_ratio = arg;
6012 else
6013 global.tune.pool_low_ratio = arg;
6014 return 0;
6015}
6016
6017/* config keyword parsers */
6018static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02006019 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02006020 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
6021 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
6022 { 0, NULL, NULL }
6023}};
6024
6025INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
6026
Baptiste Assmanna68ca962015-04-14 01:15:08 +02006027/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02006028 * Local variables:
6029 * c-indent-level: 8
6030 * c-basic-offset: 8
6031 * End:
6032 */