blob: 501657b47967bcefd7102ae4290441f48e900578 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreau260f3242021-10-06 18:30:04 +020019#include <import/ebmbtree.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020040#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020041#include <haproxy/server.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010042#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020043#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020044#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020046#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020047#include <haproxy/time.h>
Willy Tarreauba6300e2021-05-08 14:09:40 +020048#include <haproxy/tools.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020049#include <haproxy/xxhash.h>
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +010050#include <haproxy/event_hdl.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020051
Baptiste Assmannda29fe22019-06-13 13:24:29 +020052
Willy Tarreau3ff577e2018-08-02 11:48:52 +020053static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010054static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020055static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010057/* extra keywords used as value for other arguments. They are used as
58 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010059 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010060static const char *extra_kw_list[] = {
61 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010062 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010063 NULL /* must be last */
64};
65
Willy Tarreau21faa912012-10-10 08:27:36 +020066/* List head of all known server keywords */
Willy Tarreauca1acd62022-03-29 15:02:44 +020067struct srv_kw_list srv_keywords = {
Willy Tarreau21faa912012-10-10 08:27:36 +020068 .list = LIST_HEAD_INIT(srv_keywords.list)
69};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020070
Willy Tarreauaf613e82020-06-05 08:40:51 +020071__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010072struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020073struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010074struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010075
Aurelien DARRAGON61e38942022-11-17 16:10:35 +010076/* SERVER DELETE(n)->ADD global tracker:
77 * This is meant to provide srv->rid (revision id) value.
78 * Revision id allows to differentiate between a previously existing
79 * deleted server and a new server reusing deleted server name/id.
80 *
81 * start value is 0 (even value)
82 * LSB is used to specify that one or multiple srv delete in a row
83 * were performed.
84 * When adding a new server, increment by 1 if current
85 * value is odd (odd = LSB set),
86 * because adding a new server after one or
87 * multiple deletions means we could potentially be reusing old names:
88 * Increase the revision id to prevent mixups between old and new names.
89 *
90 * srv->rid is calculated from cnt even values only.
91 * sizeof(srv_id_reuse_cnt) must be twice sizeof(srv->rid)
92 *
93 * Wraparound is expected and should not cause issues
94 * (with current design we allow up to 4 billion unique revisions)
95 *
96 * Counter is only used under thread_isolate (cli_add/cli_del),
97 * no need for atomic ops.
98 */
99static uint64_t srv_id_reuse_cnt = 0;
100
Frédéric Lécaille7da71292019-05-20 09:47:07 +0200101/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -0700102struct dict server_key_dict = {
103 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +0200104 .values = EB_ROOT_UNIQUE,
105};
106
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +0200107static const char *srv_adm_st_chg_cause_str[] = {
108 [SRV_ADM_STCHGC_NONE] = "",
109 [SRV_ADM_STCHGC_DNS_NOENT] = "entry removed from SRV record",
110 [SRV_ADM_STCHGC_DNS_NOIP] = "No IP for server ",
111 [SRV_ADM_STCHGC_DNS_NX] = "DNS NX status",
112 [SRV_ADM_STCHGC_DNS_TIMEOUT] = "DNS timeout status",
113 [SRV_ADM_STCHGC_DNS_REFUSED] = "DNS refused status",
114 [SRV_ADM_STCHGC_DNS_UNSPEC] = "unspecified DNS error",
115 [SRV_ADM_STCHGC_STATS_DISABLE] = "'disable' on stats page",
116 [SRV_ADM_STCHGC_STATS_STOP] = "'stop' on stats page"
117};
118
119const char *srv_adm_st_chg_cause(enum srv_adm_st_chg_cause cause)
120{
121 return srv_adm_st_chg_cause_str[cause];
122}
123
Simon Hormana3608442013-11-01 16:46:15 +0900124int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +0200125{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +0100126 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200127 return s->down_time;
128
129 return now.tv_sec - s->last_change + s->down_time;
130}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500132int srv_lastsession(const struct server *s)
133{
134 if (s->counters.last_sess)
135 return now.tv_sec - s->counters.last_sess;
136
137 return -1;
138}
139
Simon Horman4a741432013-02-23 15:35:38 +0900140int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +0200141{
Simon Horman4a741432013-02-23 15:35:38 +0900142 const struct server *s = check->server;
143
Aurelien DARRAGON7d541a92022-12-07 12:17:24 +0100144 if ((check->state & (CHK_ST_CONFIGURED|CHK_ST_FASTINTER)) == CHK_ST_CONFIGURED &&
145 (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900146 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100147
Emeric Brun52a91d32017-08-31 14:41:55 +0200148 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900149 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100150
Simon Horman4a741432013-02-23 15:35:38 +0900151 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100152}
153
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100154/*
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +0100155 * Use this to publish EVENT_HDL_SUB_SERVER family type event
156 * from srv facility
157 * Event will be published in both global subscription list and
158 * server dedicated subscription list
159 * server ptr must be valid
Aurelien DARRAGON22f82f82022-11-25 18:07:49 +0100160 * must be called with srv lock or under thread_isolate
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +0100161 */
162static inline void srv_event_hdl_publish(struct event_hdl_sub_type event, struct server *srv, uint8_t thread_isolate)
163{
164 struct event_hdl_cb_data_server cb_data;
165
166 /* safe data assignments */
167 cb_data.safe.puid = srv->puid;
168 cb_data.safe.rid = srv->rid;
169 cb_data.safe.flags = srv->flags;
170 snprintf(cb_data.safe.name, sizeof(cb_data.safe.name), "%s", srv->id);
Aurelien DARRAGONd7142132023-03-22 17:35:47 +0100171 cb_data.safe.proxy_name[0] = '\0';
172 cb_data.safe.proxy_uuid = -1; /* default value */
173 if (srv->proxy) {
174 cb_data.safe.proxy_uuid = srv->proxy->uuid;
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +0100175 snprintf(cb_data.safe.proxy_name, sizeof(cb_data.safe.proxy_name), "%s", srv->proxy->id);
Aurelien DARRAGONd7142132023-03-22 17:35:47 +0100176 }
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +0100177 /* unsafe data assignments */
178 cb_data.unsafe.ptr = srv;
179 cb_data.unsafe.thread_isolate = thread_isolate;
Aurelien DARRAGON22f82f82022-11-25 18:07:49 +0100180 cb_data.unsafe.srv_lock = !thread_isolate;
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +0100181 /* publish in server dedicated sub list */
182 event_hdl_publish(&srv->e_subs, event, EVENT_HDL_CB_DATA(&cb_data));
183 /* publish in global subscription list */
184 event_hdl_publish(NULL, event, EVENT_HDL_CB_DATA(&cb_data));
185}
186
187/*
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100188 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200189 * Unlikely, but it can happen. The server's proxy must be at least
190 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100191 */
192static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100193{
194 struct proxy *p = s->proxy;
195 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100196
197 for (tmpserv = p->srv; tmpserv != NULL;
198 tmpserv = tmpserv->next) {
199 if (tmpserv == s)
200 continue;
201 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
202 continue;
203 if (tmpserv->cookie &&
204 strcmp(tmpserv->cookie, s->cookie) == 0) {
205 ha_warning("We generated two equal cookies for two different servers.\n"
206 "Please change the secret key for '%s'.\n",
207 s->proxy->id);
208 }
209 }
210
211}
212
Willy Tarreau46b7f532018-08-21 11:54:26 +0200213/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200214 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200215 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100216void srv_set_dyncookie(struct server *s)
217{
218 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100219 char *tmpbuf;
220 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100221 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100222 size_t buffer_len;
223 int addr_len;
224 int port;
225
Willy Tarreau595e7672020-10-20 17:30:08 +0200226 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200227
Olivier Houchard4e694042017-03-14 20:01:29 +0100228 if ((s->flags & SRV_F_COOKIESET) ||
229 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
230 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200231 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100232 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100233
234 if (s->addr.ss_family != AF_INET &&
235 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200236 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100237 /*
238 * Buffer to calculate the cookie value.
239 * The buffer contains the secret key + the server IP address
240 * + the TCP port.
241 */
242 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
243 /*
244 * The TCP port should use only 2 bytes, but is stored in
245 * an unsigned int in struct server, so let's use 4, to be
246 * on the safe side.
247 */
248 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200249 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100250 memcpy(tmpbuf, p->dyncookie_key, key_len);
251 memcpy(&(tmpbuf[key_len]),
252 s->addr.ss_family == AF_INET ?
253 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
254 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
255 addr_len);
256 /*
257 * Make sure it's the same across all the load balancers,
258 * no matter their endianness.
259 */
260 port = htonl(s->svc_port);
261 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
262 hash_value = XXH64(tmpbuf, buffer_len, 0);
263 memprintf(&s->cookie, "%016llx", hash_value);
264 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200265 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100266 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100267
268 /* Don't bother checking if the dyncookie is duplicated if
269 * the server is marked as "disabled", maybe it doesn't have
270 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100271 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100272 if (!(s->next_admin & SRV_ADMF_FMAINT))
273 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200274 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200275 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100276}
277
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +0200278/* Returns true if it's possible to reuse an idle connection from server <srv>
279 * for a websocket stream. This is the case if server is configured to use the
280 * same protocol for both HTTP and websocket streams. This depends on the value
281 * of "proto", "alpn" and "ws" keywords.
282 */
283int srv_check_reuse_ws(struct server *srv)
284{
285 if (srv->mux_proto || srv->use_ssl != 1 || !srv->ssl_ctx.alpn_str) {
286 /* explicit srv.mux_proto or no ALPN : srv.mux_proto is used
287 * for mux selection.
288 */
289 const struct ist srv_mux = srv->mux_proto ?
290 srv->mux_proto->token : IST_NULL;
291
292 switch (srv->ws) {
293 /* "auto" means use the same protocol : reuse is possible. */
294 case SRV_WS_AUTO:
295 return 1;
296
297 /* "h2" means use h2 for websocket : reuse is possible if
298 * server mux is h2.
299 */
300 case SRV_WS_H2:
301 if (srv->mux_proto && isteq(srv_mux, ist("h2")))
302 return 1;
303 break;
304
305 /* "h1" means use h1 for websocket : reuse is possible if
306 * server mux is h1.
307 */
308 case SRV_WS_H1:
309 if (!srv->mux_proto || isteq(srv_mux, ist("h1")))
310 return 1;
311 break;
312 }
313 }
314 else {
315 /* ALPN selection.
316 * Based on the assumption that only "h2" and "http/1.1" token
317 * are used on server ALPN.
318 */
319 const struct ist alpn = ist2(srv->ssl_ctx.alpn_str,
320 srv->ssl_ctx.alpn_len);
321
322 switch (srv->ws) {
323 case SRV_WS_AUTO:
324 /* for auto mode, consider reuse as possible if the
325 * server uses a single protocol ALPN
326 */
327 if (!istchr(alpn, ','))
328 return 1;
329 break;
330
331 case SRV_WS_H2:
332 return isteq(alpn, ist("\x02h2"));
333
334 case SRV_WS_H1:
335 return isteq(alpn, ist("\x08http/1.1"));
336 }
337 }
338
339 return 0;
340}
341
342/* Return the proto to used for a websocket stream on <srv> without ALPN. NULL
343 * is a valid value indicating to use the fallback mux.
344 */
345const struct mux_ops *srv_get_ws_proto(struct server *srv)
346{
347 const struct mux_proto_list *mux = NULL;
348
349 switch (srv->ws) {
350 case SRV_WS_AUTO:
351 mux = srv->mux_proto;
352 break;
353
354 case SRV_WS_H1:
355 mux = get_mux_proto(ist("h1"));
356 break;
357
358 case SRV_WS_H2:
359 mux = get_mux_proto(ist("h2"));
360 break;
361 }
362
363 return mux ? mux->mux : NULL;
364}
365
Willy Tarreau21faa912012-10-10 08:27:36 +0200366/*
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200367 * Must be called with the server lock held. The server is first removed from
368 * the proxy tree if it was already attached. If <reattach> is true, the server
369 * will then be attached in the proxy tree. The proxy lock is held to
370 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700371 */
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200372static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700373{
374 struct proxy *p = s->proxy;
375 char *key;
376
377 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
378
379 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700380 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700381 free(key);
382 return;
383 }
384
385 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
386 ebpt_delete(&s->addr_node);
387 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
388
389 free(s->addr_node.key);
390 }
391
392 s->addr_node.key = key;
393
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200394 if (reattach) {
395 if (s->addr_node.key) {
396 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
397 ebis_insert(&p->used_server_addr, &s->addr_node);
398 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
399 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700400 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700401}
402
403/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200404 * Registers the server keyword list <kwl> as a list of valid keywords for next
405 * parsing sessions.
406 */
407void srv_register_keywords(struct srv_kw_list *kwl)
408{
Willy Tarreau2b718102021-04-21 07:32:39 +0200409 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200410}
411
412/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
413 * keyword is found with a NULL ->parse() function, then an attempt is made to
414 * find one with a valid ->parse() function. This way it is possible to declare
415 * platform-dependant, known keywords as NULL, then only declare them as valid
416 * if some options are met. Note that if the requested keyword contains an
417 * opening parenthesis, everything from this point is ignored.
418 */
419struct srv_kw *srv_find_kw(const char *kw)
420{
421 int index;
422 const char *kwend;
423 struct srv_kw_list *kwl;
424 struct srv_kw *ret = NULL;
425
426 kwend = strchr(kw, '(');
427 if (!kwend)
428 kwend = kw + strlen(kw);
429
430 list_for_each_entry(kwl, &srv_keywords.list, list) {
431 for (index = 0; kwl->kw[index].kw != NULL; index++) {
432 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
433 kwl->kw[index].kw[kwend-kw] == 0) {
434 if (kwl->kw[index].parse)
435 return &kwl->kw[index]; /* found it !*/
436 else
437 ret = &kwl->kw[index]; /* may be OK */
438 }
439 }
440 }
441 return ret;
442}
443
444/* Dumps all registered "server" keywords to the <out> string pointer. The
445 * unsupported keywords are only dumped if their supported form was not
446 * found.
447 */
448void srv_dump_kws(char **out)
449{
450 struct srv_kw_list *kwl;
451 int index;
452
Christopher Faulet784063e2020-05-18 12:14:18 +0200453 if (!out)
454 return;
455
Willy Tarreau21faa912012-10-10 08:27:36 +0200456 *out = NULL;
457 list_for_each_entry(kwl, &srv_keywords.list, list) {
458 for (index = 0; kwl->kw[index].kw != NULL; index++) {
459 if (kwl->kw[index].parse ||
460 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
461 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
462 kwl->scope,
463 kwl->kw[index].kw,
464 kwl->kw[index].skip ? " <arg>" : "",
465 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
466 kwl->kw[index].parse ? "" : " (not supported)");
467 }
468 }
469 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100470}
471
472/* Try to find in srv_keyword the word that looks closest to <word> by counting
473 * transitions between letters, digits and other characters. Will return the
474 * best matching word if found, otherwise NULL. An optional array of extra
475 * words to compare may be passed in <extra>, but it must then be terminated
476 * by a NULL entry. If unused it may be NULL.
477 */
478static const char *srv_find_best_kw(const char *word)
479{
480 uint8_t word_sig[1024];
481 uint8_t list_sig[1024];
482 const struct srv_kw_list *kwl;
483 const char *best_ptr = NULL;
484 int dist, best_dist = INT_MAX;
485 const char **extra;
486 int index;
487
488 make_word_fingerprint(word_sig, word);
489 list_for_each_entry(kwl, &srv_keywords.list, list) {
490 for (index = 0; kwl->kw[index].kw != NULL; index++) {
491 make_word_fingerprint(list_sig, kwl->kw[index].kw);
492 dist = word_fingerprint_distance(word_sig, list_sig);
493 if (dist < best_dist) {
494 best_dist = dist;
495 best_ptr = kwl->kw[index].kw;
496 }
497 }
498 }
499
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100500 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100501 make_word_fingerprint(list_sig, *extra);
502 dist = word_fingerprint_distance(word_sig, list_sig);
503 if (dist < best_dist) {
504 best_dist = dist;
505 best_ptr = *extra;
506 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100507 }
508
509 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
510 best_ptr = NULL;
511
512 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200513}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100514
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100515/* Parse the "backup" server keyword */
516static int srv_parse_backup(char **args, int *cur_arg,
517 struct proxy *curproxy, struct server *newsrv, char **err)
518{
519 newsrv->flags |= SRV_F_BACKUP;
520 return 0;
521}
522
Alexander Liu2a54bb72019-05-22 19:44:48 +0800523
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100524/* Parse the "cookie" server keyword */
525static int srv_parse_cookie(char **args, int *cur_arg,
526 struct proxy *curproxy, struct server *newsrv, char **err)
527{
528 char *arg;
529
530 arg = args[*cur_arg + 1];
531 if (!*arg) {
532 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
533 return ERR_ALERT | ERR_FATAL;
534 }
535
536 free(newsrv->cookie);
537 newsrv->cookie = strdup(arg);
538 newsrv->cklen = strlen(arg);
539 newsrv->flags |= SRV_F_COOKIESET;
540 return 0;
541}
542
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100543/* Parse the "disabled" server keyword */
544static int srv_parse_disabled(char **args, int *cur_arg,
545 struct proxy *curproxy, struct server *newsrv, char **err)
546{
Emeric Brun52a91d32017-08-31 14:41:55 +0200547 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
548 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100549 newsrv->check.state |= CHK_ST_PAUSED;
550 newsrv->check.health = 0;
551 return 0;
552}
553
554/* Parse the "enabled" server keyword */
555static int srv_parse_enabled(char **args, int *cur_arg,
556 struct proxy *curproxy, struct server *newsrv, char **err)
557{
Emeric Brun52a91d32017-08-31 14:41:55 +0200558 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
559 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100560 newsrv->check.state &= ~CHK_ST_PAUSED;
561 newsrv->check.health = newsrv->check.rise;
562 return 0;
563}
564
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100565/* Parse the "error-limit" server keyword */
566static int srv_parse_error_limit(char **args, int *cur_arg,
567 struct proxy *curproxy, struct server *newsrv, char **err)
568{
569 if (!*args[*cur_arg + 1]) {
570 memprintf(err, "'%s' expects an integer argument.",
571 args[*cur_arg]);
572 return ERR_ALERT | ERR_FATAL;
573 }
574
575 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
576
577 if (newsrv->consecutive_errors_limit <= 0) {
578 memprintf(err, "%s has to be > 0.",
579 args[*cur_arg]);
580 return ERR_ALERT | ERR_FATAL;
581 }
582
583 return 0;
584}
585
Amaury Denoyellef9d59572021-10-18 14:40:29 +0200586/* Parse the "ws" keyword */
587static int srv_parse_ws(char **args, int *cur_arg,
588 struct proxy *curproxy, struct server *newsrv, char **err)
589{
590 if (!args[*cur_arg + 1]) {
591 memprintf(err, "'%s' expects 'auto', 'h1' or 'h2' value", args[*cur_arg]);
592 return ERR_ALERT | ERR_FATAL;
593 }
594
595 if (strcmp(args[*cur_arg + 1], "h1") == 0) {
596 newsrv->ws = SRV_WS_H1;
597 }
598 else if (strcmp(args[*cur_arg + 1], "h2") == 0) {
599 newsrv->ws = SRV_WS_H2;
600 }
601 else if (strcmp(args[*cur_arg + 1], "auto") == 0) {
602 newsrv->ws = SRV_WS_AUTO;
603 }
604 else {
605 memprintf(err, "'%s' has to be 'auto', 'h1' or 'h2'", args[*cur_arg]);
606 return ERR_ALERT | ERR_FATAL;
607 }
608
609
610 return 0;
611}
612
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100613/* Parse the "init-addr" server keyword */
614static int srv_parse_init_addr(char **args, int *cur_arg,
615 struct proxy *curproxy, struct server *newsrv, char **err)
616{
617 char *p, *end;
618 int done;
619 struct sockaddr_storage sa;
620
621 newsrv->init_addr_methods = 0;
622 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
623
624 for (p = args[*cur_arg + 1]; *p; p = end) {
625 /* cut on next comma */
626 for (end = p; *end && *end != ','; end++);
627 if (*end)
628 *(end++) = 0;
629
630 memset(&sa, 0, sizeof(sa));
631 if (strcmp(p, "libc") == 0) {
632 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
633 }
634 else if (strcmp(p, "last") == 0) {
635 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
636 }
637 else if (strcmp(p, "none") == 0) {
638 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
639 }
640 else if (str2ip2(p, &sa, 0)) {
641 if (is_addr(&newsrv->init_addr)) {
642 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
643 args[*cur_arg], p);
644 return ERR_ALERT | ERR_FATAL;
645 }
646 newsrv->init_addr = sa;
647 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
648 }
649 else {
650 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
651 args[*cur_arg], p);
652 return ERR_ALERT | ERR_FATAL;
653 }
654 if (!done) {
655 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
656 args[*cur_arg], p);
657 return ERR_ALERT | ERR_FATAL;
658 }
659 }
660
661 return 0;
662}
663
664/* Parse the "log-proto" server keyword */
665static int srv_parse_log_proto(char **args, int *cur_arg,
666 struct proxy *curproxy, struct server *newsrv, char **err)
667{
668 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
669 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
670 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
671 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
672 else {
673 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
674 args[*cur_arg], args[*cur_arg + 1]);
675 return ERR_ALERT | ERR_FATAL;
676 }
677
678 return 0;
679}
680
681/* Parse the "maxconn" server keyword */
682static int srv_parse_maxconn(char **args, int *cur_arg,
683 struct proxy *curproxy, struct server *newsrv, char **err)
684{
685 newsrv->maxconn = atol(args[*cur_arg + 1]);
686 return 0;
687}
688
689/* Parse the "maxqueue" server keyword */
690static int srv_parse_maxqueue(char **args, int *cur_arg,
691 struct proxy *curproxy, struct server *newsrv, char **err)
692{
693 newsrv->maxqueue = atol(args[*cur_arg + 1]);
694 return 0;
695}
696
697/* Parse the "minconn" server keyword */
698static int srv_parse_minconn(char **args, int *cur_arg,
699 struct proxy *curproxy, struct server *newsrv, char **err)
700{
701 newsrv->minconn = atol(args[*cur_arg + 1]);
702 return 0;
703}
704
Willy Tarreau9c538e02019-01-23 10:21:49 +0100705static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
706{
707 char *arg;
708
709 arg = args[*cur_arg + 1];
710 if (!*arg) {
711 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
712 return ERR_ALERT | ERR_FATAL;
713 }
714 newsrv->max_reuse = atoi(arg);
715
716 return 0;
717}
718
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100719static 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 +0100720{
721 const char *res;
722 char *arg;
723 unsigned int time;
724
725 arg = args[*cur_arg + 1];
726 if (!*arg) {
727 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
728 return ERR_ALERT | ERR_FATAL;
729 }
730 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200731 if (res == PARSE_TIME_OVER) {
732 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
733 args[*cur_arg+1], args[*cur_arg]);
734 return ERR_ALERT | ERR_FATAL;
735 }
736 else if (res == PARSE_TIME_UNDER) {
737 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
738 args[*cur_arg+1], args[*cur_arg]);
739 return ERR_ALERT | ERR_FATAL;
740 }
741 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100742 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
743 *res, args[*cur_arg]);
744 return ERR_ALERT | ERR_FATAL;
745 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100746 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100747
748 return 0;
749}
750
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200751static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
752{
753 char *arg;
754
755 arg = args[*cur_arg + 1];
756 if (!*arg) {
757 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
758 return ERR_ALERT | ERR_FATAL;
759 }
760
761 newsrv->low_idle_conns = atoi(arg);
762 return 0;
763}
764
Olivier Houchard006e3102018-12-10 18:30:32 +0100765static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
766{
767 char *arg;
768
769 arg = args[*cur_arg + 1];
770 if (!*arg) {
771 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
772 return ERR_ALERT | ERR_FATAL;
773 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100774
Olivier Houchard006e3102018-12-10 18:30:32 +0100775 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100776 if ((int)newsrv->max_idle_conns < -1) {
777 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
778 return ERR_ALERT | ERR_FATAL;
779 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100780
781 return 0;
782}
783
Willy Tarreaudff55432012-10-10 17:51:05 +0200784/* parse the "id" server keyword */
785static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
786{
787 struct eb32_node *node;
788
789 if (!*args[*cur_arg + 1]) {
790 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
791 return ERR_ALERT | ERR_FATAL;
792 }
793
794 newsrv->puid = atol(args[*cur_arg + 1]);
795 newsrv->conf.id.key = newsrv->puid;
796
797 if (newsrv->puid <= 0) {
798 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
799 return ERR_ALERT | ERR_FATAL;
800 }
801
802 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
803 if (node) {
804 struct server *target = container_of(node, struct server, conf.id);
805 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
806 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
807 target->id);
808 return ERR_ALERT | ERR_FATAL;
809 }
810
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200811 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200812 return 0;
813}
814
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100815/* Parse the "namespace" server keyword */
816static int srv_parse_namespace(char **args, int *cur_arg,
817 struct proxy *curproxy, struct server *newsrv, char **err)
818{
Willy Tarreaue5733232019-05-22 19:24:06 +0200819#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100820 char *arg;
821
822 arg = args[*cur_arg + 1];
823 if (!*arg) {
824 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
825 return ERR_ALERT | ERR_FATAL;
826 }
827
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100828 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100829 /* Use the namespace associated with the connection (if present). */
830 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
831 return 0;
832 }
833
834 /*
835 * As this parser may be called several times for the same 'default-server'
836 * object, or for a new 'server' instance deriving from a 'default-server'
837 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
838 */
839 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
840
841 newsrv->netns = netns_store_lookup(arg, strlen(arg));
842 if (!newsrv->netns)
843 newsrv->netns = netns_store_insert(arg);
844
845 if (!newsrv->netns) {
846 memprintf(err, "Cannot open namespace '%s'", arg);
847 return ERR_ALERT | ERR_FATAL;
848 }
849
850 return 0;
851#else
852 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
853 return ERR_ALERT | ERR_FATAL;
854#endif
855}
856
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100857/* Parse the "no-backup" server keyword */
858static int srv_parse_no_backup(char **args, int *cur_arg,
859 struct proxy *curproxy, struct server *newsrv, char **err)
860{
861 newsrv->flags &= ~SRV_F_BACKUP;
862 return 0;
863}
864
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100865
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100866/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200867static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100868{
869 srv->pp_opts &= ~flags;
870 return 0;
871}
872
873/* Parse the "no-send-proxy" server keyword */
874static int srv_parse_no_send_proxy(char **args, int *cur_arg,
875 struct proxy *curproxy, struct server *newsrv, char **err)
876{
877 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
878}
879
880/* Parse the "no-send-proxy-v2" server keyword */
881static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
882 struct proxy *curproxy, struct server *newsrv, char **err)
883{
884 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
885}
886
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200887/* Parse the "shard" server keyword */
888static int srv_parse_shard(char **args, int *cur_arg,
889 struct proxy *curproxy, struct server *newsrv, char **err)
890{
891 newsrv->shard = atol(args[*cur_arg + 1]);
892 return 0;
893}
894
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200895/* Parse the "no-tfo" server keyword */
896static int srv_parse_no_tfo(char **args, int *cur_arg,
897 struct proxy *curproxy, struct server *newsrv, char **err)
898{
899 newsrv->flags &= ~SRV_F_FASTOPEN;
900 return 0;
901}
902
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100903/* Parse the "non-stick" server keyword */
904static int srv_parse_non_stick(char **args, int *cur_arg,
905 struct proxy *curproxy, struct server *newsrv, char **err)
906{
907 newsrv->flags |= SRV_F_NON_STICK;
908 return 0;
909}
910
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100911/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200912static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100913{
914 srv->pp_opts |= flags;
915 return 0;
916}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200917/* parse the "proto" server keyword */
918static int srv_parse_proto(char **args, int *cur_arg,
919 struct proxy *px, struct server *newsrv, char **err)
920{
921 struct ist proto;
922
923 if (!*args[*cur_arg + 1]) {
924 memprintf(err, "'%s' : missing value", args[*cur_arg]);
925 return ERR_ALERT | ERR_FATAL;
926 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100927 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200928 newsrv->mux_proto = get_mux_proto(proto);
929 if (!newsrv->mux_proto) {
930 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
931 return ERR_ALERT | ERR_FATAL;
932 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200933 return 0;
934}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100935
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100936/* parse the "proxy-v2-options" */
937static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
938 struct proxy *px, struct server *newsrv, char **err)
939{
940 char *p, *n;
941 for (p = args[*cur_arg+1]; p; p = n) {
942 n = strchr(p, ',');
943 if (n)
944 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100945 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100946 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100947 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100948 newsrv->pp_opts |= SRV_PP_V2_SSL;
949 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100950 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100951 newsrv->pp_opts |= SRV_PP_V2_SSL;
952 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100953 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100954 newsrv->pp_opts |= SRV_PP_V2_SSL;
955 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100956 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100957 newsrv->pp_opts |= SRV_PP_V2_SSL;
958 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100959 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100960 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100961 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100962 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100963 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100964 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100965 } else
966 goto fail;
967 }
968 return 0;
969 fail:
970 if (err)
971 memprintf(err, "'%s' : proxy v2 option not implemented", p);
972 return ERR_ALERT | ERR_FATAL;
973}
974
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100975/* Parse the "observe" server keyword */
976static int srv_parse_observe(char **args, int *cur_arg,
977 struct proxy *curproxy, struct server *newsrv, char **err)
978{
979 char *arg;
980
981 arg = args[*cur_arg + 1];
982 if (!*arg) {
983 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
984 return ERR_ALERT | ERR_FATAL;
985 }
986
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100987 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100988 newsrv->observe = HANA_OBS_NONE;
989 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100990 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100991 newsrv->observe = HANA_OBS_LAYER4;
992 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100993 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100994 if (curproxy->mode != PR_MODE_HTTP) {
995 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
996 return ERR_ALERT;
997 }
998 newsrv->observe = HANA_OBS_LAYER7;
999 }
1000 else {
1001 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
1002 "but got '%s'\n", args[*cur_arg], arg);
1003 return ERR_ALERT | ERR_FATAL;
1004 }
1005
1006 return 0;
1007}
1008
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001009/* Parse the "on-error" server keyword */
1010static int srv_parse_on_error(char **args, int *cur_arg,
1011 struct proxy *curproxy, struct server *newsrv, char **err)
1012{
1013 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
1014 newsrv->onerror = HANA_ONERR_FASTINTER;
1015 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
1016 newsrv->onerror = HANA_ONERR_FAILCHK;
1017 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
1018 newsrv->onerror = HANA_ONERR_SUDDTH;
1019 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
1020 newsrv->onerror = HANA_ONERR_MARKDWN;
1021 else {
1022 memprintf(err, "'%s' expects one of 'fastinter', "
1023 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
1024 args[*cur_arg], args[*cur_arg + 1]);
1025 return ERR_ALERT | ERR_FATAL;
1026 }
1027
1028 return 0;
1029}
1030
1031/* Parse the "on-marked-down" server keyword */
1032static int srv_parse_on_marked_down(char **args, int *cur_arg,
1033 struct proxy *curproxy, struct server *newsrv, char **err)
1034{
1035 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
1036 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
1037 else {
1038 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
1039 args[*cur_arg], args[*cur_arg + 1]);
1040 return ERR_ALERT | ERR_FATAL;
1041 }
1042
1043 return 0;
1044}
1045
1046/* Parse the "on-marked-up" server keyword */
1047static int srv_parse_on_marked_up(char **args, int *cur_arg,
1048 struct proxy *curproxy, struct server *newsrv, char **err)
1049{
1050 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
1051 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
1052 else {
1053 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
1054 args[*cur_arg], args[*cur_arg + 1]);
1055 return ERR_ALERT | ERR_FATAL;
1056 }
1057
1058 return 0;
1059}
1060
Frédéric Lécaille16186232017-03-14 16:42:49 +01001061/* Parse the "redir" server keyword */
1062static int srv_parse_redir(char **args, int *cur_arg,
1063 struct proxy *curproxy, struct server *newsrv, char **err)
1064{
1065 char *arg;
1066
1067 arg = args[*cur_arg + 1];
1068 if (!*arg) {
1069 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
1070 return ERR_ALERT | ERR_FATAL;
1071 }
1072
1073 free(newsrv->rdr_pfx);
1074 newsrv->rdr_pfx = strdup(arg);
1075 newsrv->rdr_len = strlen(arg);
1076
1077 return 0;
1078}
1079
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001080/* Parse the "resolvers" server keyword */
1081static int srv_parse_resolvers(char **args, int *cur_arg,
1082 struct proxy *curproxy, struct server *newsrv, char **err)
1083{
1084 free(newsrv->resolvers_id);
1085 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
1086 return 0;
1087}
1088
1089/* Parse the "resolve-net" server keyword */
1090static int srv_parse_resolve_net(char **args, int *cur_arg,
1091 struct proxy *curproxy, struct server *newsrv, char **err)
1092{
1093 char *p, *e;
1094 unsigned char mask;
1095 struct resolv_options *opt;
1096
1097 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
1098 memprintf(err, "'%s' expects a list of networks.",
1099 args[*cur_arg]);
1100 return ERR_ALERT | ERR_FATAL;
1101 }
1102
1103 opt = &newsrv->resolv_opts;
1104
1105 /* Split arguments by comma, and convert it from ipv4 or ipv6
1106 * string network in in_addr or in6_addr.
1107 */
1108 p = args[*cur_arg + 1];
1109 e = p;
1110 while (*p != '\0') {
1111 /* If no room available, return error. */
1112 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1113 memprintf(err, "'%s' exceed %d networks.",
1114 args[*cur_arg], SRV_MAX_PREF_NET);
1115 return ERR_ALERT | ERR_FATAL;
1116 }
1117 /* look for end or comma. */
1118 while (*e != ',' && *e != '\0')
1119 e++;
1120 if (*e == ',') {
1121 *e = '\0';
1122 e++;
1123 }
1124 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1125 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1126 /* Try to convert input string from ipv4 or ipv6 network. */
1127 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1128 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1129 &mask)) {
1130 /* Try to convert input string from ipv6 network. */
1131 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1132 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1133 } else {
1134 /* All network conversions fail, return error. */
1135 memprintf(err, "'%s' invalid network '%s'.",
1136 args[*cur_arg], p);
1137 return ERR_ALERT | ERR_FATAL;
1138 }
1139 opt->pref_net_nb++;
1140 p = e;
1141 }
1142
1143 return 0;
1144}
1145
1146/* Parse the "resolve-opts" server keyword */
1147static int srv_parse_resolve_opts(char **args, int *cur_arg,
1148 struct proxy *curproxy, struct server *newsrv, char **err)
1149{
1150 char *p, *end;
1151
1152 for (p = args[*cur_arg + 1]; *p; p = end) {
1153 /* cut on next comma */
1154 for (end = p; *end && *end != ','; end++);
1155 if (*end)
1156 *(end++) = 0;
1157
1158 if (strcmp(p, "allow-dup-ip") == 0) {
1159 newsrv->resolv_opts.accept_duplicate_ip = 1;
1160 }
1161 else if (strcmp(p, "ignore-weight") == 0) {
1162 newsrv->resolv_opts.ignore_weight = 1;
1163 }
1164 else if (strcmp(p, "prevent-dup-ip") == 0) {
1165 newsrv->resolv_opts.accept_duplicate_ip = 0;
1166 }
1167 else {
1168 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1169 args[*cur_arg], p);
1170 return ERR_ALERT | ERR_FATAL;
1171 }
1172 }
1173
1174 return 0;
1175}
1176
1177/* Parse the "resolve-prefer" server keyword */
1178static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1179 struct proxy *curproxy, struct server *newsrv, char **err)
1180{
1181 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1182 newsrv->resolv_opts.family_prio = AF_INET;
1183 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1184 newsrv->resolv_opts.family_prio = AF_INET6;
1185 else {
1186 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1187 args[*cur_arg]);
1188 return ERR_ALERT | ERR_FATAL;
1189 }
1190
1191 return 0;
1192}
1193
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001194/* Parse the "send-proxy" server keyword */
1195static int srv_parse_send_proxy(char **args, int *cur_arg,
1196 struct proxy *curproxy, struct server *newsrv, char **err)
1197{
1198 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1199}
1200
1201/* Parse the "send-proxy-v2" server keyword */
1202static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1203 struct proxy *curproxy, struct server *newsrv, char **err)
1204{
1205 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1206}
1207
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001208/* Parse the "slowstart" server keyword */
1209static int srv_parse_slowstart(char **args, int *cur_arg,
1210 struct proxy *curproxy, struct server *newsrv, char **err)
1211{
1212 /* slowstart is stored in seconds */
1213 unsigned int val;
1214 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1215
1216 if (time_err == PARSE_TIME_OVER) {
1217 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1218 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1219 return ERR_ALERT | ERR_FATAL;
1220 }
1221 else if (time_err == PARSE_TIME_UNDER) {
1222 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1223 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1224 return ERR_ALERT | ERR_FATAL;
1225 }
1226 else if (time_err) {
1227 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1228 *time_err, newsrv->id);
1229 return ERR_ALERT | ERR_FATAL;
1230 }
1231 newsrv->slowstart = (val + 999) / 1000;
1232
1233 return 0;
1234}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001235
1236/* Parse the "source" server keyword */
1237static int srv_parse_source(char **args, int *cur_arg,
1238 struct proxy *curproxy, struct server *newsrv, char **err)
1239{
1240 char *errmsg;
1241 int port_low, port_high;
1242 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001243
1244 errmsg = NULL;
1245
1246 if (!*args[*cur_arg + 1]) {
1247 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1248 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1249 goto err;
1250 }
1251
1252 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001253 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1254 &errmsg, NULL, NULL,
1255 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 +01001256 if (!sk) {
1257 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1258 goto err;
1259 }
1260
Frédéric Lécailledba97072017-03-17 15:33:50 +01001261 newsrv->conn_src.opts |= CO_SRC_BIND;
1262 newsrv->conn_src.source_addr = *sk;
1263
1264 if (port_low != port_high) {
1265 int i;
1266
Frédéric Lécailledba97072017-03-17 15:33:50 +01001267 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001268 if (!newsrv->conn_src.sport_range) {
1269 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1270 goto err;
1271 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001272 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1273 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1274 }
1275
1276 *cur_arg += 2;
1277 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001278 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001279#if defined(CONFIG_HAP_TRANSPARENT)
1280 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001281 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1282 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001283 goto err;
1284 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001285 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001286 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1287 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1288 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001289 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001290 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1291 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1292 }
1293 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1294 char *name, *end;
1295
1296 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001297 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001298 name++;
1299
1300 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001301 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001302 end++;
1303
1304 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1305 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1306 free(newsrv->conn_src.bind_hdr_name);
1307 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001308 if (!newsrv->conn_src.bind_hdr_name) {
1309 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1310 goto err;
1311 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001312 newsrv->conn_src.bind_hdr_len = end - name;
1313 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1314 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1315 newsrv->conn_src.bind_hdr_occ = -1;
1316
1317 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001318 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001319 end++;
1320 if (*end == ',') {
1321 end++;
1322 name = end;
1323 if (*end == '-')
1324 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001325 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001326 end++;
1327 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1328 }
1329
1330 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001331 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1332 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001333 goto err;
1334 }
1335 }
1336 else {
1337 struct sockaddr_storage *sk;
1338 int port1, port2;
1339
1340 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001341 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1342 &errmsg, NULL, NULL,
1343 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001344 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001345 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001346 goto err;
1347 }
1348
Frédéric Lécailledba97072017-03-17 15:33:50 +01001349 newsrv->conn_src.tproxy_addr = *sk;
1350 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1351 }
1352 global.last_checks |= LSTCHK_NETADM;
1353 *cur_arg += 2;
1354 continue;
1355#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001356 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 +01001357 goto err;
1358#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1359 } /* "usesrc" */
1360
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001361 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001362#ifdef SO_BINDTODEVICE
1363 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001364 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001365 goto err;
1366 }
1367 free(newsrv->conn_src.iface_name);
1368 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1369 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1370 global.last_checks |= LSTCHK_NETADM;
1371#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001372 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001373 goto err;
1374#endif
1375 *cur_arg += 2;
1376 continue;
1377 }
1378 /* this keyword in not an option of "source" */
1379 break;
1380 } /* while */
1381
1382 return 0;
1383
1384 err:
1385 free(errmsg);
1386 return ERR_ALERT | ERR_FATAL;
1387}
1388
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001389/* Parse the "stick" server keyword */
1390static int srv_parse_stick(char **args, int *cur_arg,
1391 struct proxy *curproxy, struct server *newsrv, char **err)
1392{
1393 newsrv->flags &= ~SRV_F_NON_STICK;
1394 return 0;
1395}
1396
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001397/* Parse the "track" server keyword */
1398static int srv_parse_track(char **args, int *cur_arg,
1399 struct proxy *curproxy, struct server *newsrv, char **err)
1400{
1401 char *arg;
1402
1403 arg = args[*cur_arg + 1];
1404 if (!*arg) {
1405 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1406 return ERR_ALERT | ERR_FATAL;
1407 }
1408
1409 free(newsrv->trackit);
1410 newsrv->trackit = strdup(arg);
1411
1412 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001413}
1414
1415/* Parse the "socks4" server keyword */
1416static int srv_parse_socks4(char **args, int *cur_arg,
1417 struct proxy *curproxy, struct server *newsrv, char **err)
1418{
1419 char *errmsg;
1420 int port_low, port_high;
1421 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001422
1423 errmsg = NULL;
1424
1425 if (!*args[*cur_arg + 1]) {
1426 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1427 goto err;
1428 }
1429
1430 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001431 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1432 &errmsg, NULL, NULL,
1433 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001434 if (!sk) {
1435 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1436 goto err;
1437 }
1438
Alexander Liu2a54bb72019-05-22 19:44:48 +08001439 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1440 newsrv->socks4_addr = *sk;
1441
Alexander Liu2a54bb72019-05-22 19:44:48 +08001442 return 0;
1443
1444 err:
1445 free(errmsg);
1446 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001447}
1448
Frédéric Lécailledba97072017-03-17 15:33:50 +01001449
Willy Tarreau034c88c2017-01-23 23:36:45 +01001450/* parse the "tfo" server keyword */
1451static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1452{
1453 newsrv->flags |= SRV_F_FASTOPEN;
1454 return 0;
1455}
1456
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001457/* parse the "usesrc" server keyword */
1458static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1459{
1460 memprintf(err, "'%s' only allowed after a '%s' statement.",
1461 "usesrc", "source");
1462 return ERR_ALERT | ERR_FATAL;
1463}
1464
1465/* parse the "weight" server keyword */
1466static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1467{
1468 int w;
1469
1470 w = atol(args[*cur_arg + 1]);
1471 if (w < 0 || w > SRV_UWGHT_MAX) {
1472 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1473 newsrv->id, SRV_UWGHT_MAX, w);
1474 return ERR_ALERT | ERR_FATAL;
1475 }
1476 newsrv->uweight = newsrv->iweight = w;
1477
1478 return 0;
1479}
1480
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001481/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001482 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001483 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001484 *
1485 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001486 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001487void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001488{
Willy Tarreau751153e2021-02-17 13:33:24 +01001489 struct stream *stream;
1490 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001491 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001492
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001493 for (thr = 0; thr < global.nbthread; thr++)
1494 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1495 if (stream->srv_conn == srv)
1496 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001497}
1498
1499/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001500 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001501 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001502 *
1503 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001504 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001505void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001506{
1507 struct server *srv;
1508
1509 for (srv = px->srv; srv != NULL; srv = srv->next)
1510 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001511 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001512}
1513
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02001514static void srv_append_op_chg_cause(struct buffer *msg, struct server *s, struct check *check)
1515{
1516 if (check)
1517 check_append_info(msg, check);
1518 else if (s->op_st_chg.reason && *s->op_st_chg.reason)
1519 chunk_appendf(msg, ", %s", s->op_st_chg.reason);
1520}
1521
1522static void srv_append_adm_chg_cause(struct buffer *msg, struct server *s)
1523{
1524 if (s->adm_st_chg_cause)
1525 chunk_appendf(msg, " (%s)", srv_adm_st_chg_cause(s->adm_st_chg_cause));
1526}
1527
1528/* Appends some information to a message string related to a server tracking
1529 * or requeued connections info.
1530 *
1531 * If <forced> is null and the server tracks another one, a "via"
Emeric Brun5a133512017-10-19 14:42:30 +02001532 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001533 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001534 *
1535 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001536 */
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02001537static void srv_append_more(struct buffer *msg, struct server *s,
1538 int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001539{
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02001540 if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001541 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001542 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001543
1544 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001545 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001546 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1547 " %d sessions active, %d requeued, %d remaining in queue",
1548 s->proxy->srv_act, s->proxy->srv_bck,
1549 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001550 s->cur_sess, xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001551 else
1552 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1553 " %d sessions requeued, %d total in queue",
1554 s->proxy->srv_act, s->proxy->srv_bck,
1555 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001556 xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001557 }
1558}
1559
Emeric Brun5a133512017-10-19 14:42:30 +02001560/* Marks server <s> down, regardless of its checks' statuses. The server is
1561 * registered in a list to postpone the counting of the remaining servers on
1562 * the proxy and transfers queued streams whenever possible to other servers at
1563 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1564 * non-null as the reason for going down or the available data from the check
1565 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001566 *
1567 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001568 */
Emeric Brun5a133512017-10-19 14:42:30 +02001569void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001570{
1571 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001572
Emeric Brun64cc49c2017-10-03 14:46:45 +02001573 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001574 return;
1575
Emeric Brun52a91d32017-08-31 14:41:55 +02001576 s->next_state = SRV_ST_STOPPED;
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 Tarreaue7d1ef12014-05-20 22:25:12 +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_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001595 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001596 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001597}
1598
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001599/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001600 * in maintenance. The server is registered in a list to postpone the counting
1601 * of the remaining servers on the proxy and tries to grab requests from the
1602 * proxy at a sync point. Maintenance servers are ignored. It stores the
1603 * <reason> if non-null as the reason for going down or the available data
1604 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001605 *
1606 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001607 */
Emeric Brun5a133512017-10-19 14:42:30 +02001608void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001609{
1610 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001611
Emeric Brun64cc49c2017-10-03 14:46:45 +02001612 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001613 return;
1614
Emeric Brun52a91d32017-08-31 14:41:55 +02001615 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001616 return;
1617
Emeric Brun52a91d32017-08-31 14:41:55 +02001618 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001619 *s->op_st_chg.reason = 0;
1620 s->op_st_chg.status = -1;
1621 if (reason) {
1622 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1623 }
1624 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001625 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001626 s->op_st_chg.code = check->code;
1627 s->op_st_chg.status = check->status;
1628 s->op_st_chg.duration = check->duration;
1629 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001630
Emeric Brun64cc49c2017-10-03 14:46:45 +02001631 if (s->slowstart <= 0)
1632 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001633
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001634 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001635 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001636
Emeric Brun9f0b4582017-10-23 14:39:51 +02001637 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001638 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001639 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001640 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001641 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001642}
1643
Willy Tarreau8eb77842014-05-21 13:54:57 +02001644/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001645 * isn't in maintenance. The server is registered in a list to postpone the
1646 * counting of the remaining servers on the proxy and tries to grab requests
1647 * from the proxy. Maintenance servers are ignored. It stores the
1648 * <reason> if non-null as the reason for going down or the available data
1649 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001650 * up. Note that it makes use of the trash to build the log strings, so <reason>
1651 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001652 *
1653 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001654 */
Emeric Brun5a133512017-10-19 14:42:30 +02001655void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001656{
1657 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001658
Emeric Brun64cc49c2017-10-03 14:46:45 +02001659 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001660 return;
1661
Emeric Brun52a91d32017-08-31 14:41:55 +02001662 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001663 return;
1664
Emeric Brun52a91d32017-08-31 14:41:55 +02001665 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001666 *s->op_st_chg.reason = 0;
1667 s->op_st_chg.status = -1;
1668 if (reason) {
1669 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1670 }
1671 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001672 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001673 s->op_st_chg.code = check->code;
1674 s->op_st_chg.status = check->status;
1675 s->op_st_chg.duration = check->duration;
1676 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001677
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001678 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001679 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001680
Emeric Brun9f0b4582017-10-23 14:39:51 +02001681 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001682 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001683 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001684 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001685 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001686}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001687
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001688/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1689 * enforce either maint mode or drain mode. It is not allowed to set more than
1690 * one flag at once. The equivalent "inherited" flag is propagated to all
1691 * tracking servers. Maintenance mode disables health checks (but not agent
1692 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001693 * is done. If <cause> is non-null, it will be displayed at the end of the log
1694 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001695 *
1696 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001697 */
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02001698void srv_set_admin_flag(struct server *s, enum srv_admin mode, enum srv_adm_st_chg_cause cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001699{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001700 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001701
1702 if (!mode)
1703 return;
1704
1705 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001706 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001707 return;
1708
Emeric Brun52a91d32017-08-31 14:41:55 +02001709 s->next_admin |= mode;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02001710 s->adm_st_chg_cause = cause;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001711
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001712 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001713 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001714
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001715 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001716 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1717 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001718 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001719
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001720 /* compute the inherited flag to propagate */
1721 if (mode & SRV_ADMF_MAINT)
1722 mode = SRV_ADMF_IMAINT;
1723 else if (mode & SRV_ADMF_DRAIN)
1724 mode = SRV_ADMF_IDRAIN;
1725
Emeric Brun9f0b4582017-10-23 14:39:51 +02001726 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001727 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001728 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001729 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001730 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001731}
1732
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001733/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1734 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1735 * than one flag at once. The equivalent "inherited" flag is propagated to all
1736 * tracking servers. Leaving maintenance mode re-enables health checks. When
1737 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001738 *
1739 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001740 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001741void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001742{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001743 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001744
1745 if (!mode)
1746 return;
1747
1748 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001749 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001750 return;
1751
Emeric Brun52a91d32017-08-31 14:41:55 +02001752 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001753
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001754 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001755 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001756
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001757 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001758 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1759 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001760 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001761
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001762 if (mode & SRV_ADMF_MAINT)
1763 mode = SRV_ADMF_IMAINT;
1764 else if (mode & SRV_ADMF_DRAIN)
1765 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001766
Emeric Brun9f0b4582017-10-23 14:39:51 +02001767 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001768 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001769 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001770 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001771 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001772}
1773
Willy Tarreau757478e2016-11-03 19:22:19 +01001774/* principle: propagate maint and drain to tracking servers. This is useful
1775 * upon startup so that inherited states are correct.
1776 */
1777static void srv_propagate_admin_state(struct server *srv)
1778{
1779 struct server *srv2;
1780
1781 if (!srv->trackers)
1782 return;
1783
1784 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001785 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001786 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02001787 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, SRV_ADM_STCHGC_NONE);
Willy Tarreau757478e2016-11-03 19:22:19 +01001788
Emeric Brun52a91d32017-08-31 14:41:55 +02001789 if (srv->next_admin & SRV_ADMF_DRAIN)
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02001790 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, SRV_ADM_STCHGC_NONE);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001791 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001792 }
1793}
1794
1795/* Compute and propagate the admin states for all servers in proxy <px>.
1796 * Only servers *not* tracking another one are considered, because other
1797 * ones will be handled when the server they track is visited.
1798 */
1799void srv_compute_all_admin_states(struct proxy *px)
1800{
1801 struct server *srv;
1802
1803 for (srv = px->srv; srv; srv = srv->next) {
1804 if (srv->track)
1805 continue;
1806 srv_propagate_admin_state(srv);
1807 }
1808}
1809
Willy Tarreaudff55432012-10-10 17:51:05 +02001810/* Note: must not be declared <const> as its list will be overwritten.
1811 * Please take care of keeping this list alphabetically sorted, doing so helps
1812 * all code contributors.
1813 * Optional keywords are also declared with a NULL ->parse() function so that
1814 * the config parser can report an appropriate error when a known keyword was
1815 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001816 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001817 */
1818static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001819 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001820 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001821 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1822 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001823 { "error-limit", srv_parse_error_limit, 1, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellef9d59572021-10-18 14:40:29 +02001824 { "ws", srv_parse_ws, 1, 1, 1 }, /* websocket protocol */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001825 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001826 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1827 { "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 +01001828 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1829 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001830 { "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 +01001831 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001832 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001833 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1834 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1835 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1836 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001837 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001838 { "observe", srv_parse_observe, 1, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
1839 { "on-error", srv_parse_on_error, 1, 1, 1 }, /* Configure the action on check failure */
1840 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 1 }, /* Configure the action when a server is marked down */
1841 { "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 +01001842 { "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 */
1843 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1844 { "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 +01001845 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001846 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001847 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001848 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001849 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001850 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001851 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001852 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1853 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Frédéric Lécaille36d15652022-10-17 14:58:19 +02001854 { "shard", srv_parse_shard, 1, 1, 1 }, /* Server shard (only in peers protocol context) */
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02001855 { "slowstart", srv_parse_slowstart, 1, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001856 { "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 +01001857 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001858 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02001859 { "track", srv_parse_track, 1, 1, 1 }, /* Set the current state of the server, tracking another one */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001860 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001861 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1862 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001863 { NULL, NULL, 0 },
1864}};
1865
Willy Tarreau0108d902018-11-25 19:14:37 +01001866INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001867
Willy Tarreau004e0452013-11-21 11:22:01 +01001868/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001869 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001870 * state is automatically disabled if the time is elapsed. If <must_update> is
1871 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001872 *
1873 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001874 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001875void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001876{
1877 struct proxy *px = sv->proxy;
1878 unsigned w;
1879
1880 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1881 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001882 if (sv->next_state == SRV_ST_STARTING)
1883 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001884 }
1885
1886 /* We must take care of not pushing the server to full throttle during slow starts.
1887 * It must also start immediately, at least at the minimal step when leaving maintenance.
1888 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001889 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001890 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1891 else
1892 w = px->lbprm.wdiv;
1893
Emeric Brun52a91d32017-08-31 14:41:55 +02001894 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001895
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001896 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001897 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001898 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001899}
1900
Willy Tarreaubaaee002006-06-26 02:48:02 +02001901/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001902 * Parses weight_str and configures sv accordingly.
1903 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001904 *
1905 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001906 */
1907const char *server_parse_weight_change_request(struct server *sv,
1908 const char *weight_str)
1909{
1910 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001911 long int w;
1912 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001913
1914 px = sv->proxy;
1915
1916 /* if the weight is terminated with '%', it is set relative to
1917 * the initial weight, otherwise it is absolute.
1918 */
1919 if (!*weight_str)
1920 return "Require <weight> or <weight%>.\n";
1921
Simon Hormanb796afa2013-02-12 10:45:53 +09001922 w = strtol(weight_str, &end, 10);
1923 if (end == weight_str)
1924 return "Empty weight string empty or preceded by garbage";
1925 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001926 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001927 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001928 /* Avoid integer overflow */
1929 if (w > 25600)
1930 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001931 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001932 if (w > 256)
1933 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001934 }
1935 else if (w < 0 || w > 256)
1936 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001937 else if (end[0] != '\0')
1938 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001939
1940 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1941 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1942
1943 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001944 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001945
1946 return NULL;
1947}
1948
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001949/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001950 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1951 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001952 * Returns:
1953 * - error string on error
1954 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001955 *
1956 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001957 */
1958const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001959 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001960{
1961 unsigned char ip[INET6_ADDRSTRLEN];
1962
1963 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001964 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001965 return NULL;
1966 }
1967 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001968 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001969 return NULL;
1970 }
1971
1972 return "Could not understand IP address format.\n";
1973}
1974
Willy Tarreau46b7f532018-08-21 11:54:26 +02001975/*
1976 * Must be called with the server lock held.
1977 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001978const char *server_parse_maxconn_change_request(struct server *sv,
1979 const char *maxconn_str)
1980{
1981 long int v;
1982 char *end;
1983
1984 if (!*maxconn_str)
1985 return "Require <maxconn>.\n";
1986
1987 v = strtol(maxconn_str, &end, 10);
1988 if (end == maxconn_str)
1989 return "maxconn string empty or preceded by garbage";
1990 else if (end[0] != '\0')
1991 return "Trailing garbage in maxconn string";
1992
1993 if (sv->maxconn == sv->minconn) { // static maxconn
1994 sv->maxconn = sv->minconn = v;
1995 } else { // dynamic maxconn
1996 sv->maxconn = v;
1997 }
1998
1999 if (may_dequeue_tasks(sv, sv->proxy))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002000 process_srv_queue(sv);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02002001
2002 return NULL;
2003}
2004
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002005static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
2006 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002007{
2008 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002009 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002010 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002011 NULL,
2012 };
2013
2014 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02002015 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002016
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01002017 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002018}
2019
William Lallemand0d058672022-03-16 15:44:42 +01002020int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002021{
2022 struct sample_expr *expr;
2023
2024 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 +01002025 if (!expr) {
2026 memprintf(err, "error detected while parsing sni expression : %s", *err);
2027 return ERR_ALERT | ERR_FATAL;
2028 }
2029
2030 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
2031 memprintf(err, "error detected while parsing sni expression : "
2032 " fetch method '%s' extracts information from '%s', "
Amaury Denoyellec008a632021-05-28 11:01:22 +02002033 "none of which is available here.",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002034 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002035 return ERR_ALERT | ERR_FATAL;
2036 }
2037
2038 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
2039 release_sample_expr(newsrv->ssl_ctx.sni);
2040 newsrv->ssl_ctx.sni = expr;
2041
2042 return 0;
2043}
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002044
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002045static 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 +01002046{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002047 char *msg = "error encountered while processing ";
2048 char *quote = "'";
2049 char *token = args[cur_arg];
2050
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002051 if (err && *err) {
2052 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002053 msg = *err;
2054 quote = "";
2055 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002056 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002057
2058 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002059 ha_warning("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002060 else
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002061 ha_alert("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002062}
2063
Christopher Faulet0b365e32022-08-03 11:21:14 +02002064static void srv_conn_src_sport_range_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002065{
2066 int range_sz;
2067
2068 range_sz = src->conn_src.sport_range->size;
2069 if (range_sz > 0) {
2070 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
2071 if (srv->conn_src.sport_range != NULL) {
2072 int i;
2073
2074 for (i = 0; i < range_sz; i++) {
2075 srv->conn_src.sport_range->ports[i] =
2076 src->conn_src.sport_range->ports[i];
2077 }
2078 }
2079 }
2080}
2081
2082/*
2083 * Copy <src> server connection source settings to <srv> server everything needed.
2084 */
Christopher Faulet0b365e32022-08-03 11:21:14 +02002085static void srv_conn_src_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002086{
2087 srv->conn_src.opts = src->conn_src.opts;
2088 srv->conn_src.source_addr = src->conn_src.source_addr;
2089
2090 /* Source port range copy. */
2091 if (src->conn_src.sport_range != NULL)
2092 srv_conn_src_sport_range_cpy(srv, src);
2093
2094#ifdef CONFIG_HAP_TRANSPARENT
2095 if (src->conn_src.bind_hdr_name != NULL) {
2096 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2097 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2098 }
2099 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2100 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2101#endif
2102 if (src->conn_src.iface_name != NULL)
2103 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
2104}
2105
2106/*
2107 * Copy <src> server SSL settings to <srv> server allocating
2108 * everything needed.
2109 */
2110#if defined(USE_OPENSSL)
Christopher Faulet0b365e32022-08-03 11:21:14 +02002111static void srv_ssl_settings_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002112{
Christopher Faulet4ab26792021-12-01 09:50:41 +01002113 /* <src> is the current proxy's default server and SSL is enabled */
William Lallemand2c776f12021-12-28 18:47:17 +01002114 BUG_ON(src->ssl_ctx.ctx != NULL); /* the SSL_CTX must never be initialized in a default-server */
2115
Christopher Faulet4ab26792021-12-01 09:50:41 +01002116 if (src == &srv->proxy->defsrv && src->use_ssl == 1)
2117 srv->flags |= SRV_F_DEFSRV_USE_SSL;
2118
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002119 if (src->ssl_ctx.ca_file != NULL)
2120 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2121 if (src->ssl_ctx.crl_file != NULL)
2122 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
William Lallemand2c776f12021-12-28 18:47:17 +01002123 if (src->ssl_ctx.client_crt != NULL)
2124 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002125
2126 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2127
Remi Tricot-Le Breton0498fa42021-07-13 18:28:22 +02002128
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002129 if (src->ssl_ctx.verify_host != NULL)
2130 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2131 if (src->ssl_ctx.ciphers != NULL)
2132 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002133 if (src->ssl_ctx.options)
2134 srv->ssl_ctx.options = src->ssl_ctx.options;
2135 if (src->ssl_ctx.methods.flags)
2136 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2137 if (src->ssl_ctx.methods.min)
2138 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2139 if (src->ssl_ctx.methods.max)
2140 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2141
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002142 if (src->ssl_ctx.ciphersuites != NULL)
2143 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002144 if (src->sni_expr != NULL)
2145 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002146
Olivier Houchardc7566002018-11-20 23:33:50 +01002147 if (src->ssl_ctx.alpn_str) {
2148 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2149 if (srv->ssl_ctx.alpn_str) {
2150 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2151 src->ssl_ctx.alpn_len);
2152 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2153 }
2154 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002155
Olivier Houchardc7566002018-11-20 23:33:50 +01002156 if (src->ssl_ctx.npn_str) {
2157 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2158 if (srv->ssl_ctx.npn_str) {
2159 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2160 src->ssl_ctx.npn_len);
2161 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2162 }
2163 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002164}
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002165
2166/* Activate ssl on server <s>.
2167 * do nothing if there is no change to apply
2168 *
2169 * Must be called with the server lock held.
2170 */
2171void srv_set_ssl(struct server *s, int use_ssl)
2172{
2173 if (s->use_ssl == use_ssl)
2174 return;
2175
2176 s->use_ssl = use_ssl;
2177 if (s->use_ssl)
2178 s->xprt = xprt_get(XPRT_SSL);
2179 else
William Dauchya087f872022-01-06 16:57:15 +01002180 s->xprt = xprt_get(XPRT_RAW);
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002181}
2182
2183#endif /* USE_OPENSSL */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002184
2185/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002186 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002187 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002188 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002189 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002190int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002191{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002192 char *hostname_dn;
2193 int hostname_len, hostname_dn_len;
2194
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002195 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002196 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002197
Christopher Faulet67957bd2017-09-27 11:00:59 +02002198 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002199 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02002200 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002201 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002202 if (hostname_dn_len == -1)
2203 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002204
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002205
Christopher Faulet67957bd2017-09-27 11:00:59 +02002206 free(srv->hostname);
2207 free(srv->hostname_dn);
2208 srv->hostname = strdup(hostname);
2209 srv->hostname_dn = strdup(hostname_dn);
2210 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002211 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002212 goto err;
2213
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002214 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002215
2216 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002217 ha_free(&srv->hostname);
2218 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002219 return -1;
2220}
2221
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002222/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002223 * Copy <src> server settings to <srv> server allocating
2224 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002225 * This function is not supposed to be called at any time, but only
2226 * during server settings parsing or during server allocations from
2227 * a server template, and just after having calloc()'ed a new server.
2228 * So, <src> may only be a default server (when parsing server settings)
2229 * or a server template (during server allocations from a server template).
2230 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2231 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002232 */
Christopher Fauletb32cb9b2022-08-03 11:28:08 +02002233void srv_settings_cpy(struct server *srv, const struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002234{
2235 /* Connection source settings copy */
2236 srv_conn_src_cpy(srv, src);
2237
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002238 if (srv_tmpl) {
2239 srv->addr = src->addr;
2240 srv->svc_port = src->svc_port;
2241 }
2242
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002243 srv->pp_opts = src->pp_opts;
2244 if (src->rdr_pfx != NULL) {
2245 srv->rdr_pfx = strdup(src->rdr_pfx);
2246 srv->rdr_len = src->rdr_len;
2247 }
2248 if (src->cookie != NULL) {
2249 srv->cookie = strdup(src->cookie);
2250 srv->cklen = src->cklen;
2251 }
2252 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002253 srv->check.addr = src->check.addr;
2254 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002255 srv->check.use_ssl = src->check.use_ssl;
2256 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002257 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002258 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002259 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002260 /* Note: 'flags' field has potentially been already initialized. */
2261 srv->flags |= src->flags;
2262 srv->do_check = src->do_check;
2263 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002264 srv->check.inter = src->check.inter;
2265 srv->check.fastinter = src->check.fastinter;
2266 srv->check.downinter = src->check.downinter;
2267 srv->agent.use_ssl = src->agent.use_ssl;
2268 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002269
2270 if (src->agent.tcpcheck_rules) {
2271 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2272 if (srv->agent.tcpcheck_rules) {
2273 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2274 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2275 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2276 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2277 &src->agent.tcpcheck_rules->preset_vars);
2278 }
2279 }
2280
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002281 srv->agent.inter = src->agent.inter;
2282 srv->agent.fastinter = src->agent.fastinter;
2283 srv->agent.downinter = src->agent.downinter;
2284 srv->maxqueue = src->maxqueue;
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02002285 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002286 srv->minconn = src->minconn;
2287 srv->maxconn = src->maxconn;
2288 srv->slowstart = src->slowstart;
2289 srv->observe = src->observe;
2290 srv->onerror = src->onerror;
2291 srv->onmarkeddown = src->onmarkeddown;
2292 srv->onmarkedup = src->onmarkedup;
2293 if (src->trackit != NULL)
2294 srv->trackit = strdup(src->trackit);
2295 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2296 srv->uweight = srv->iweight = src->iweight;
2297
2298 srv->check.send_proxy = src->check.send_proxy;
2299 /* health: up, but will fall down at first failure */
2300 srv->check.rise = srv->check.health = src->check.rise;
2301 srv->check.fall = src->check.fall;
2302
2303 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002304 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2305 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2306 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002307 srv->check.state |= CHK_ST_PAUSED;
2308 srv->check.health = 0;
2309 }
2310
2311 /* health: up but will fall down at first failure */
2312 srv->agent.rise = srv->agent.health = src->agent.rise;
2313 srv->agent.fall = src->agent.fall;
2314
2315 if (src->resolvers_id != NULL)
2316 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002317 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2318 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2319 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2320 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2321 srv->resolv_opts.family_prio = AF_INET6;
2322 memcpy(srv->resolv_opts.pref_net,
2323 src->resolv_opts.pref_net,
2324 sizeof srv->resolv_opts.pref_net);
2325 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002326
2327 srv->init_addr_methods = src->init_addr_methods;
2328 srv->init_addr = src->init_addr;
2329#if defined(USE_OPENSSL)
2330 srv_ssl_settings_cpy(srv, src);
2331#endif
2332#ifdef TCP_USER_TIMEOUT
2333 srv->tcp_ut = src->tcp_ut;
2334#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002335 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002336 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002337 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002338 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002339 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002340
Olivier Houchard8da5f982017-08-04 18:35:36 +02002341 if (srv_tmpl)
2342 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002343
2344 srv->check.via_socks4 = src->check.via_socks4;
2345 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002346}
2347
Willy Tarreau198e92a2021-03-05 10:23:32 +01002348/* allocate a server and attach it to the global servers_list. Returns
2349 * the server on success, otherwise NULL.
2350 */
William Lallemand313bfd12018-10-26 14:47:32 +02002351struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002352{
2353 struct server *srv;
2354
2355 srv = calloc(1, sizeof *srv);
2356 if (!srv)
2357 return NULL;
2358
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002359 srv_take(srv);
2360
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002361 srv->obj_type = OBJ_TYPE_SERVER;
2362 srv->proxy = proxy;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02002363 queue_init(&srv->queue, proxy, srv);
Willy Tarreau2b718102021-04-21 07:32:39 +02002364 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun34067662021-06-11 10:48:45 +02002365 LIST_INIT(&srv->srv_rec_item);
Emeric Brunbd78c912021-06-11 10:08:05 +02002366 LIST_INIT(&srv->ip_rec_item);
Aurelien DARRAGONf175b082023-02-01 17:22:32 +01002367 MT_LIST_INIT(&srv->prev_deleted);
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +01002368 event_hdl_sub_list_init(&srv->e_subs);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002369
Emeric Brun52a91d32017-08-31 14:41:55 +02002370 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002371 srv->last_change = now.tv_sec;
2372
Christopher Faulet38290462020-04-21 11:46:40 +02002373 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002374 srv->check.status = HCHK_STATUS_INI;
2375 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002376 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002377 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002378
Christopher Faulet38290462020-04-21 11:46:40 +02002379 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002380 srv->agent.status = HCHK_STATUS_INI;
2381 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002382 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002383 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002384#if defined(USE_QUIC)
2385 srv->cids = EB_ROOT_UNIQUE;
2386#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002387
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002388 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002389#ifdef USE_OPENSSL
2390 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2391#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002392
Willy Tarreau975b1552019-06-06 16:25:55 +02002393 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002394 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002395 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002396 return srv;
2397}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002398
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002399/* Increment the server refcount. */
2400void srv_take(struct server *srv)
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002401{
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002402 HA_ATOMIC_INC(&srv->refcount);
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002403}
2404
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002405/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2406 * dynamic servers, its refcount is decremented first. The free operations are
Aurelien DARRAGON32483ec2023-03-09 11:56:14 +01002407 * conducted only if the refcount is nul.
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002408 *
2409 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002410 * when calling srv_drop on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002411 */
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002412struct server *srv_drop(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002413{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002414 struct server *next = NULL;
2415
William Lallemand4c395fc2021-08-20 10:10:15 +02002416 if (!srv)
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002417 goto end;
2418
2419 next = srv->next;
William Lallemand4c395fc2021-08-20 10:10:15 +02002420
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002421 /* For dynamic servers, decrement the reference counter. Only free the
2422 * server when reaching zero.
2423 */
Aurelien DARRAGON32483ec2023-03-09 11:56:14 +01002424 if (HA_ATOMIC_SUB_FETCH(&srv->refcount, 1))
2425 goto end;
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002426
Aurelien DARRAGONf175b082023-02-01 17:22:32 +01002427 /* make sure we are removed from our 'next->prev_deleted' list
2428 * This doesn't require full thread isolation as we're using mt lists
2429 * However this could easily be turned into regular list if required
2430 * (with the proper use of thread isolation)
2431 */
2432 MT_LIST_DELETE(&srv->prev_deleted);
2433
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002434 task_destroy(srv->warmup);
Christopher Fauletdcac4182021-06-15 16:17:17 +02002435 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002436
2437 free(srv->id);
2438 free(srv->cookie);
2439 free(srv->hostname);
2440 free(srv->hostname_dn);
2441 free((char*)srv->conf.file);
2442 free(srv->per_thr);
Willy Tarreauc21a1872022-11-21 14:14:06 +01002443 free(srv->per_tgrp);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002444 free(srv->curr_idle_thr);
2445 free(srv->resolvers_id);
2446 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002447 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002448
Aurelien DARRAGONb5ee8be2023-03-09 14:28:00 +01002449 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2450 xprt_get(XPRT_SSL)->destroy_srv(srv);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002451 HA_SPIN_DESTROY(&srv->lock);
2452
Willy Tarreau2b718102021-04-21 07:32:39 +02002453 LIST_DELETE(&srv->global_list);
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +01002454 event_hdl_sub_list_destroy(&srv->e_subs);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002455
2456 EXTRA_COUNTERS_FREE(srv->extra_counters);
2457
Tim Duesterhus025b93e2021-11-04 21:03:52 +01002458 ha_free(&srv);
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002459
2460 end:
2461 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002462}
2463
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02002464/* Remove a server <srv> from a tracking list if <srv> is tracking another
2465 * server. No special care is taken if <srv> is tracked itself by another one :
2466 * this situation should be avoided by the caller.
2467 *
2468 * Not thread-safe.
2469 */
2470static void release_server_track(struct server *srv)
2471{
2472 struct server *strack = srv->track;
2473 struct server **base;
2474
2475 if (!strack)
2476 return;
2477
2478 for (base = &strack->trackers; *base; base = &((*base)->tracknext)) {
2479 if (*base == srv) {
2480 *base = srv->tracknext;
2481 return;
2482 }
2483 }
2484
2485 /* srv not found on the tracking list, this should never happen */
2486 BUG_ON(!*base);
2487}
2488
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002489/*
2490 * Parse as much as possible such a range string argument: low[-high]
2491 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2492 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2493 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2494 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002495 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002496static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2497 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002498{
2499 char *nb_high_arg;
2500
2501 *nb_high = 0;
2502 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002503 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002504
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002505 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002506 *nb_high_arg++ = '\0';
2507 *nb_high = atoi(nb_high_arg);
2508 }
2509 else {
2510 *nb_high += *nb_low;
2511 *nb_low = 1;
2512 }
2513
2514 if (*nb_low < 0 || *nb_high < *nb_low)
2515 return -1;
2516
2517 return 0;
2518}
2519
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002520/* Parse as much as possible such a range string argument: low[-high]
2521 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2522 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2523 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002524 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002525 * initialize a new server on startup.
2526 *
2527 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2528 * Returns 0 if succeeded, -1 if not.
2529 */
2530static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2531 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002532{
2533 chunk_printf(&trash, "%s%d", prefix, nb);
2534 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002535 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002536}
2537
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002538/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002539 * Note that a server template is a special server with
2540 * a few different parameters than a server which has
2541 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002542 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002543 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002544 * initialize a new server on startup.
2545 *
Joseph Herlant44466822018-11-15 08:57:51 -08002546 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002547 * 'srv' template included.
2548 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002549static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002550{
2551 int i;
2552 struct server *newsrv;
2553
2554 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 +02002555 newsrv = new_server(px);
2556 if (!newsrv)
2557 goto err;
2558
Christopher Faulet75bef002020-11-02 22:04:55 +01002559 newsrv->conf.file = strdup(srv->conf.file);
2560 newsrv->conf.line = srv->conf.line;
2561
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002562 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002563 srv_prepare_for_resolution(newsrv, srv->hostname);
Willy Tarreau80527bc2021-10-06 14:48:37 +02002564
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002565 if (newsrv->sni_expr) {
2566 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2567 if (!newsrv->ssl_ctx.sni)
2568 goto err;
2569 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002570
Emeric Brun34067662021-06-11 10:48:45 +02002571 /* append to list of servers available to receive an hostname */
Emeric Bruncaef19e2021-06-14 10:02:18 +02002572 if (newsrv->srvrq)
2573 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun34067662021-06-11 10:48:45 +02002574
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002575 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002576 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002577
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002578 /* Linked backwards first. This will be restablished after parsing. */
2579 newsrv->next = px->srv;
2580 px->srv = newsrv;
2581 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002582 _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 +02002583
2584 return i - srv->tmpl_info.nb_low;
2585
2586 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002587 _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 +02002588 if (newsrv) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002589 release_sample_expr(newsrv->ssl_ctx.sni);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002590 free_check(&newsrv->agent);
2591 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002592 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002593 }
2594 free(newsrv);
2595 return i - srv->tmpl_info.nb_low;
2596}
2597
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002598/* Allocate a new server pointed by <srv> and try to parse the first arguments
2599 * in <args> as an address for a server or an address-range for a template or
2600 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2601 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002602 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002603 * initialize a new server on startup.
2604 *
2605 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2606 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2607 * <srv> will be set to NULL.
2608 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002609static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2610 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002611 int parse_flags)
Willy Tarreau272adea2014-03-31 10:39:59 +02002612{
2613 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002614 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002615 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002616 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002617 int tmpl_range_low = 0, tmpl_range_high = 0;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002618 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002619
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002620 *srv = NULL;
2621
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002622 /* There is no mandatory first arguments for default server. */
2623 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2624 if (parse_flags & SRV_PARSE_TEMPLATE) {
2625 if (!*args[3]) {
2626 /* 'server-template' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002627 ha_alert("'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
2628 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002629 err_code |= ERR_ALERT | ERR_FATAL;
2630 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002631 }
2632
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002633 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002634 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002635 else {
2636 if (!*args[2]) {
2637 /* 'server' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002638 ha_alert("'%s' expects <name> and <addr>[:<port>] as arguments.\n",
2639 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002640 err_code |= ERR_ALERT | ERR_FATAL;
2641 goto out;
2642 }
2643
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002644 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002645 }
2646
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002647 if (err) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002648 ha_alert("character '%c' is not permitted in %s %s '%s'.\n",
2649 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002650 err_code |= ERR_ALERT | ERR_FATAL;
2651 goto out;
2652 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002653 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002654
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002655 *cur_arg = 2;
2656 if (parse_flags & SRV_PARSE_TEMPLATE) {
2657 /* Parse server-template <nb | range> arg. */
2658 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002659 ha_alert("Wrong %s number or range arg '%s'.\n",
2660 args[0], args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002661 err_code |= ERR_ALERT | ERR_FATAL;
2662 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002663 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002664 (*cur_arg)++;
2665 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002666
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002667 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2668 struct sockaddr_storage *sk;
2669 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002670
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002671 *srv = newsrv = new_server(curproxy);
2672 if (!newsrv) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002673 ha_alert("out of memory.\n");
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002674 err_code |= ERR_ALERT | ERR_ABORT;
2675 goto out;
2676 }
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002677 register_parsing_obj(&newsrv->obj_type);
Willy Tarreau272adea2014-03-31 10:39:59 +02002678
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002679 if (parse_flags & SRV_PARSE_TEMPLATE) {
2680 newsrv->tmpl_info.nb_low = tmpl_range_low;
2681 newsrv->tmpl_info.nb_high = tmpl_range_high;
2682 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002683
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002684 if (parse_flags & SRV_PARSE_DYNAMIC)
2685 newsrv->flags |= SRV_F_DYNAMIC;
2686
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002687 /* Note: for a server template, its id is its prefix.
2688 * This is a temporary id which will be used for server allocations to come
2689 * after parsing.
2690 */
2691 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2692 newsrv->id = strdup(args[1]);
2693 else
2694 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002695
Aurelien DARRAGON61e38942022-11-17 16:10:35 +01002696 /* revision defaults to 0 */
2697 newsrv->rid = 0;
2698
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002699 /* several ways to check the port component :
2700 * - IP => port=+0, relative (IPv4 only)
2701 * - IP: => port=+0, relative
2702 * - IP:N => port=N, absolute
2703 * - IP:+N => port=+N, relative
2704 * - IP:-N => port=-N, relative
2705 */
2706 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2707 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002708
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002709 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002710 &errmsg, NULL, &fqdn,
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002711 (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);
2712 if (!sk) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002713 ha_alert("%s\n", errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002714 err_code |= ERR_ALERT | ERR_FATAL;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002715 ha_free(&errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002716 goto out;
2717 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002718
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002719 if (!port1 || !port2) {
2720 /* no port specified, +offset, -offset */
2721 newsrv->flags |= SRV_F_MAPPORTS;
2722 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002723
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002724 /* save hostname and create associated name resolution */
2725 if (fqdn) {
2726 if (fqdn[0] == '_') { /* SRV record */
2727 /* Check if a SRV request already exists, and if not, create it */
2728 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2729 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2730 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002731 err_code |= ERR_ALERT | ERR_FATAL;
2732 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002733 }
Christopher Faulet81ba74a2021-06-29 20:52:35 +02002734 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002735 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002736 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002737 ha_alert("Can't create DNS resolution for server '%s'\n",
2738 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002739 err_code |= ERR_ALERT | ERR_FATAL;
2740 goto out;
2741 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002742 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002743
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002744 newsrv->addr = *sk;
2745 newsrv->svc_port = port;
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02002746 /*
2747 * we don't need to lock the server here, because
2748 * we are in the process of initializing.
2749 *
2750 * Note that the server is not attached into the proxy tree if
2751 * this is a dynamic server.
2752 */
2753 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002754
Willy Tarreau14e7f292021-10-27 17:41:07 +02002755 if (!newsrv->srvrq && !newsrv->hostname &&
2756 !protocol_lookup(newsrv->addr.ss_family, PROTO_TYPE_STREAM, 0)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002757 ha_alert("Unknown protocol family %d '%s'\n",
2758 newsrv->addr.ss_family, args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002759 err_code |= ERR_ALERT | ERR_FATAL;
2760 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002761 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002762
2763 (*cur_arg)++;
2764 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002765 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2766 /* Copy default server settings to new server */
2767 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2768 } else {
2769 /* Initialize dynamic server weight to 1 */
2770 newsrv->uweight = newsrv->iweight = 1;
2771
2772 /* A dynamic server is disabled on startup */
2773 newsrv->next_admin = SRV_ADMF_FMAINT;
2774 newsrv->next_state = SRV_ST_STOPPED;
2775 server_recalc_eweight(newsrv, 0);
Amaury Denoyellefca18172021-07-22 16:03:36 +02002776
2777 /* Set default values for checks */
2778 newsrv->check.inter = DEF_CHKINTR;
2779 newsrv->check.rise = DEF_RISETIME;
2780 newsrv->check.fall = DEF_FALLTIME;
2781
2782 newsrv->agent.inter = DEF_CHKINTR;
2783 newsrv->agent.rise = DEF_AGENT_RISETIME;
2784 newsrv->agent.fall = DEF_AGENT_FALLTIME;
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002785 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002786 HA_SPIN_INIT(&newsrv->lock);
2787 }
2788 else {
2789 *srv = newsrv = &curproxy->defsrv;
2790 *cur_arg = 1;
2791 newsrv->resolv_opts.family_prio = AF_INET6;
2792 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002793 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002794
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002795 free(fqdn);
2796 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002797
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002798out:
2799 free(fqdn);
2800 return err_code;
2801}
Willy Tarreau272adea2014-03-31 10:39:59 +02002802
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002803/* Parse the server keyword in <args>.
2804 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2805 * might not be the case if an error is reported.
2806 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002807 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002808 * initialize a new server on startup.
2809 *
2810 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2811 * interrupted.
2812 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002813static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2814 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002815 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002816{
2817 int err_code = 0;
2818 struct srv_kw *kw;
2819 const char *best;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002820 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002821
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002822 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002823 if (!kw) {
2824 best = srv_find_best_kw(args[*cur_arg]);
2825 if (best)
Willy Tarreau245721b2022-05-31 09:25:34 +02002826 ha_alert("unknown keyword '%s'; did you mean '%s' maybe ?%s\n",
2827 args[*cur_arg], best,
2828 (parse_flags & SRV_PARSE_PARSE_ADDR) ? "" :
2829 " Hint: no address was expected for this server.");
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002830 else
Willy Tarreau245721b2022-05-31 09:25:34 +02002831 ha_alert("unknown keyword '%s'.%s\n", args[*cur_arg],
2832 (parse_flags & SRV_PARSE_PARSE_ADDR) ? "" :
2833 " Hint: no address was expected for this server.");
Willy Tarreau272adea2014-03-31 10:39:59 +02002834
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002835 return ERR_ALERT | ERR_FATAL;
2836 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002837
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002838 if (!kw->parse) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002839 ha_alert("'%s' option is not implemented in this version (check build options)\n",
2840 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002841 err_code = ERR_ALERT | ERR_FATAL;
2842 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002843 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002844
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002845 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002846 ha_alert("'%s' option is not accepted in default-server sections\n",
2847 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002848 err_code = ERR_ALERT;
2849 goto out;
2850 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002851 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002852 ha_alert("'%s' option is not accepted for dynamic server\n",
2853 args[*cur_arg]);
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002854 err_code |= ERR_ALERT;
2855 goto out;
2856 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002857
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002858 err_code = kw->parse(args, cur_arg, curproxy, srv, &errmsg);
2859 if (err_code) {
2860 display_parser_err(NULL, 0, args, *cur_arg, err_code, &errmsg);
2861 free(errmsg);
2862 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002863
2864out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002865 if (kw->skip != -1)
2866 *cur_arg += 1 + kw->skip;
2867
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002868 return err_code;
2869}
2870
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002871/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002872 * initialize a new server on startup.
2873 */
2874static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2875 struct server *srv, struct proxy *proxy,
2876 char **errmsg)
2877{
2878 int ret;
2879
2880 if (!srv->sni_expr)
2881 return 0;
2882
2883 ret = server_parse_sni_expr(srv, proxy, errmsg);
2884 if (!ret)
2885 return 0;
2886
2887 return ret;
2888}
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002889
2890/* Server initializations finalization.
2891 * Initialize health check, agent check and SNI expression if enabled.
2892 * Must not be called for a default server instance.
2893 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002894 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002895 * initialize a new server on startup.
2896 */
2897static int _srv_parse_finalize(char **args, int cur_arg,
2898 struct server *srv, struct proxy *px,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002899 int parse_flags)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002900{
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002901 int ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002902 char *errmsg = NULL;
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002903
2904 if (srv->do_check && srv->trackit) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002905 ha_alert("unable to enable checks and tracking at the same time!\n");
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002906 return ERR_ALERT | ERR_FATAL;
2907 }
2908
2909 if (srv->do_agent && !srv->agent.port) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002910 ha_alert("server %s does not have agent port. Agent check has been disabled.\n",
2911 srv->id);
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002912 return ERR_ALERT | ERR_FATAL;
2913 }
2914
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002915 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, &errmsg)) != 0) {
2916 if (errmsg) {
2917 ha_alert("%s\n", errmsg);
2918 free(errmsg);
2919 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002920 return ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002921 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002922
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002923 /* A dynamic server is disabled on startup. It must not be counted as
2924 * an active backend entry.
2925 */
2926 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2927 if (srv->flags & SRV_F_BACKUP)
2928 px->srv_bck++;
2929 else
2930 px->srv_act++;
2931 }
2932
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002933 srv_lb_commit_status(srv);
2934
2935 return 0;
2936}
2937
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002938int parse_server(const char *file, int linenum, char **args,
2939 struct proxy *curproxy, const struct proxy *defproxy,
2940 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002941{
2942 struct server *newsrv = NULL;
2943 int err_code = 0;
2944
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002945 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002946
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002947 set_usermsgs_ctx(file, linenum, NULL);
2948
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002949 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002950 ha_alert("'%s' not allowed in 'defaults' section.\n", args[0]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002951 err_code |= ERR_ALERT | ERR_FATAL;
2952 goto out;
2953 }
2954 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2955 err_code |= ERR_ALERT | ERR_FATAL;
2956 goto out;
2957 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002958
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002959 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2960 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2961 if (!*args[2])
2962 return 0;
2963 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002964
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002965 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002966 parse_flags);
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002967
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002968 /* the servers are linked backwards first */
2969 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2970 newsrv->next = curproxy->srv;
2971 curproxy->srv = newsrv;
2972 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002973
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002974 if (err_code & ERR_CODE)
2975 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002976
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002977 newsrv->conf.file = strdup(file);
2978 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002979
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002980 while (*args[cur_arg]) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002981 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002982 parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002983 if (err_code & ERR_FATAL)
2984 goto out;
2985 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002986
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002987 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002988 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002989 if (err_code & ERR_FATAL)
2990 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002991 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002992
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002993 if (parse_flags & SRV_PARSE_TEMPLATE)
2994 _srv_parse_tmpl_init(newsrv, curproxy);
2995
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02002996 /* If the server id is fixed, insert it in the proxy used_id tree.
2997 * This is needed to detect a later duplicate id via srv_parse_id.
2998 *
2999 * If no is specified, a dynamic one is generated in
3000 * check_config_validity.
3001 */
3002 if (newsrv->flags & SRV_F_FORCED_ID)
3003 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3004
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02003005 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02003006 "configured with weight of 0 will never be selected by load balancing algorithms\n");
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02003007
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02003008 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02003009 return 0;
3010
3011 out:
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02003012 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02003013 return err_code;
3014}
3015
Baptiste Assmann19a106d2015-07-08 22:03:56 +02003016/* Returns a pointer to the first server matching either id <id>.
3017 * NULL is returned if no match is found.
3018 * the lookup is performed in the backend <bk>
3019 */
3020struct server *server_find_by_id(struct proxy *bk, int id)
3021{
3022 struct eb32_node *eb32;
3023 struct server *curserver;
3024
3025 if (!bk || (id ==0))
3026 return NULL;
3027
3028 /* <bk> has no backend capabilities, so it can't have a server */
3029 if (!(bk->cap & PR_CAP_BE))
3030 return NULL;
3031
3032 curserver = NULL;
3033
3034 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
3035 if (eb32)
3036 curserver = container_of(eb32, struct server, conf.id);
3037
3038 return curserver;
3039}
3040
3041/* Returns a pointer to the first server matching either name <name>, or id
3042 * if <name> starts with a '#'. NULL is returned if no match is found.
3043 * the lookup is performed in the backend <bk>
3044 */
3045struct server *server_find_by_name(struct proxy *bk, const char *name)
3046{
3047 struct server *curserver;
3048
3049 if (!bk || !name)
3050 return NULL;
3051
3052 /* <bk> has no backend capabilities, so it can't have a server */
3053 if (!(bk->cap & PR_CAP_BE))
3054 return NULL;
3055
3056 curserver = NULL;
3057 if (*name == '#') {
3058 curserver = server_find_by_id(bk, atoi(name + 1));
3059 if (curserver)
3060 return curserver;
3061 }
3062 else {
3063 curserver = bk->srv;
3064
3065 while (curserver && (strcmp(curserver->id, name) != 0))
3066 curserver = curserver->next;
3067
3068 if (curserver)
3069 return curserver;
3070 }
3071
3072 return NULL;
3073}
3074
3075struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
3076{
3077 struct server *byname;
3078 struct server *byid;
3079
3080 if (!name && !id)
3081 return NULL;
3082
3083 if (diff)
3084 *diff = 0;
3085
3086 byname = byid = NULL;
3087
3088 if (name) {
3089 byname = server_find_by_name(bk, name);
3090 if (byname && (!id || byname->puid == id))
3091 return byname;
3092 }
3093
3094 /* remaining possibilities :
3095 * - name not set
3096 * - name set but not found
3097 * - name found but ID doesn't match
3098 */
3099 if (id) {
3100 byid = server_find_by_id(bk, id);
3101 if (byid) {
3102 if (byname) {
3103 /* use id only if forced by configuration */
3104 if (byid->flags & SRV_F_FORCED_ID) {
3105 if (diff)
3106 *diff |= 2;
3107 return byid;
3108 }
3109 else {
3110 if (diff)
3111 *diff |= 1;
3112 return byname;
3113 }
3114 }
3115
3116 /* remaining possibilities:
3117 * - name not set
3118 * - name set but not found
3119 */
3120 if (name && diff)
3121 *diff |= 2;
3122 return byid;
3123 }
3124
3125 /* id bot found */
3126 if (byname) {
3127 if (diff)
3128 *diff |= 1;
3129 return byname;
3130 }
3131 }
3132
3133 return NULL;
3134}
3135
Simon Horman7d09b9a2013-02-12 10:45:51 +09003136/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003137 * update a server's current IP address.
3138 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3139 * ip is in network format.
3140 * updater is a string which contains an information about the requester of the update.
3141 * updater is used if not NULL.
3142 *
3143 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003144 *
3145 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003146 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003147int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003148{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003149 /* save the new IP family & address if necessary */
3150 switch (ip_sin_family) {
3151 case AF_INET:
3152 if (s->addr.ss_family == ip_sin_family &&
3153 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3154 return 0;
3155 break;
3156 case AF_INET6:
3157 if (s->addr.ss_family == ip_sin_family &&
3158 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3159 return 0;
3160 break;
3161 };
3162
Baptiste Assmann14e40142015-04-14 01:13:07 +02003163 /* generates a log line and a warning on stderr */
3164 if (1) {
3165 /* book enough space for both IPv4 and IPv6 */
3166 char oldip[INET6_ADDRSTRLEN];
3167 char newip[INET6_ADDRSTRLEN];
3168
3169 memset(oldip, '\0', INET6_ADDRSTRLEN);
3170 memset(newip, '\0', INET6_ADDRSTRLEN);
3171
3172 /* copy old IP address in a string */
3173 switch (s->addr.ss_family) {
3174 case AF_INET:
3175 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3176 break;
3177 case AF_INET6:
3178 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3179 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003180 default:
Willy Tarreaufc458ec2023-04-07 18:11:39 +02003181 strlcpy2(oldip, "(none)", sizeof(oldip));
Christopher Fauletb0b76072020-09-08 10:38:40 +02003182 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003183 };
3184
3185 /* copy new IP address in a string */
3186 switch (ip_sin_family) {
3187 case AF_INET:
3188 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3189 break;
3190 case AF_INET6:
3191 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3192 break;
3193 };
3194
3195 /* save log line into a buffer */
3196 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3197 s->proxy->id, s->id, oldip, newip, updater);
3198
3199 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003200 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003201
3202 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003203 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003204 }
3205
3206 /* save the new IP family */
3207 s->addr.ss_family = ip_sin_family;
3208 /* save the new IP address */
3209 switch (ip_sin_family) {
3210 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003211 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003212 break;
3213 case AF_INET6:
3214 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3215 break;
3216 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003217 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003218 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003219
3220 return 0;
3221}
3222
William Dauchy7cabc062021-02-11 22:51:24 +01003223/* update agent health check address and port
3224 * addr can be ip4/ip6 or a hostname
3225 * if one error occurs, don't apply anything
3226 * must be called with the server lock held.
3227 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003228const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003229{
3230 struct sockaddr_storage sk;
3231 struct buffer *msg;
3232 int new_port;
3233
3234 msg = get_trash_chunk();
3235 chunk_reset(msg);
3236
3237 if (!(s->agent.state & CHK_ST_ENABLED)) {
3238 chunk_strcat(msg, "agent checks are not enabled on this server");
3239 goto out;
3240 }
3241 if (addr) {
3242 memset(&sk, 0, sizeof(struct sockaddr_storage));
3243 if (str2ip(addr, &sk) == NULL) {
3244 chunk_appendf(msg, "invalid addr '%s'", addr);
3245 goto out;
3246 }
3247 }
3248 if (port) {
3249 if (strl2irc(port, strlen(port), &new_port) != 0) {
3250 chunk_appendf(msg, "provided port is not an integer");
3251 goto out;
3252 }
3253 if (new_port < 0 || new_port > 65535) {
3254 chunk_appendf(msg, "provided port is invalid");
3255 goto out;
3256 }
3257 }
3258out:
3259 if (msg->data)
3260 return msg->area;
3261 else {
3262 if (addr)
3263 set_srv_agent_addr(s, &sk);
3264 if (port)
3265 set_srv_agent_port(s, new_port);
3266 }
3267 return NULL;
3268}
3269
William Dauchyb456e1f2021-02-11 22:51:23 +01003270/* update server health check address and port
3271 * addr must be ip4 or ip6, it won't be resolved
3272 * if one error occurs, don't apply anything
3273 * must be called with the server lock held.
3274 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003275const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003276{
3277 struct sockaddr_storage sk;
3278 struct buffer *msg;
3279 int new_port;
3280
3281 msg = get_trash_chunk();
3282 chunk_reset(msg);
3283
3284 if (!(s->check.state & CHK_ST_ENABLED)) {
3285 chunk_strcat(msg, "health checks are not enabled on this server");
3286 goto out;
3287 }
3288 if (addr) {
3289 memset(&sk, 0, sizeof(struct sockaddr_storage));
3290 if (str2ip2(addr, &sk, 0) == NULL) {
3291 chunk_appendf(msg, "invalid addr '%s'", addr);
3292 goto out;
3293 }
3294 }
3295 if (port) {
3296 if (strl2irc(port, strlen(port), &new_port) != 0) {
3297 chunk_appendf(msg, "provided port is not an integer");
3298 goto out;
3299 }
3300 if (new_port < 0 || new_port > 65535) {
3301 chunk_appendf(msg, "provided port is invalid");
3302 goto out;
3303 }
3304 /* prevent the update of port to 0 if MAPPORTS are in use */
3305 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3306 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3307 goto out;
3308 }
3309 }
3310out:
3311 if (msg->data)
3312 return msg->area;
3313 else {
3314 if (addr)
3315 s->check.addr = sk;
3316 if (port)
3317 s->check.port = new_port;
3318 }
3319 return NULL;
3320}
3321
Baptiste Assmann14e40142015-04-14 01:13:07 +02003322/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003323 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3324 *
3325 * Caller can pass its name through <updater> to get it integrated in the response message
3326 * returned by the function.
3327 *
3328 * The function first does the following, in that order:
3329 * - validates the new addr and/or port
3330 * - checks if an update is required (new IP or port is different than current ones)
3331 * - checks the update is allowed:
3332 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3333 * - allow all changes if no CHECKS are configured
3334 * - if CHECK is configured:
3335 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3336 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3337 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003338 *
3339 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003340 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003341const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003342{
3343 struct sockaddr_storage sa;
3344 int ret, port_change_required;
3345 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003346 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003347 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003348 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003349
3350 msg = get_trash_chunk();
3351 chunk_reset(msg);
3352
3353 if (addr) {
3354 memset(&sa, 0, sizeof(struct sockaddr_storage));
3355 if (str2ip2(addr, &sa, 0) == NULL) {
3356 chunk_printf(msg, "Invalid addr '%s'", addr);
3357 goto out;
3358 }
3359
3360 /* changes are allowed on AF_INET* families only */
3361 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3362 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3363 goto out;
3364 }
3365
3366 /* collecting data currently setup */
3367 memset(current_addr, '\0', sizeof(current_addr));
3368 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3369 /* changes are allowed on AF_INET* families only */
3370 if ((ret != AF_INET) && (ret != AF_INET6)) {
3371 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3372 goto out;
3373 }
3374
3375 /* applying ADDR changes if required and allowed
3376 * ipcmp returns 0 when both ADDR are the same
3377 */
Amaury Denoyelle21e611d2022-12-01 17:46:45 +01003378 if (ipcmp(&s->addr, &sa, 0) == 0) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003379 chunk_appendf(msg, "no need to change the addr");
3380 goto port;
3381 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003382 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003383 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003384
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003385 /* update report for caller */
3386 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3387 }
3388
3389 port:
3390 if (port) {
3391 char sign = '\0';
3392 char *endptr;
3393
3394 if (addr)
3395 chunk_appendf(msg, ", ");
3396
3397 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003398 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003399
3400 /* check if PORT change is required */
3401 port_change_required = 0;
3402
3403 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003404 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003405 new_port = strtol(port, &endptr, 10);
3406 if ((errno != 0) || (port == endptr)) {
3407 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3408 goto out;
3409 }
3410
3411 /* check if caller triggers a port mapped or offset */
3412 if (sign == '-' || (sign == '+')) {
3413 /* check if server currently uses port map */
3414 if (!(s->flags & SRV_F_MAPPORTS)) {
3415 /* switch from fixed port to port map mandatorily triggers
3416 * a port change */
3417 port_change_required = 1;
3418 /* check is configured
3419 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3420 * prevent PORT change if check doesn't have it's dedicated port while switching
3421 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003422 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003423 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.");
3424 goto out;
3425 }
3426 }
3427 /* we're already using port maps */
3428 else {
3429 port_change_required = current_port != new_port;
3430 }
3431 }
3432 /* fixed port */
3433 else {
3434 port_change_required = current_port != new_port;
3435 }
3436
3437 /* applying PORT changes if required and update response message */
3438 if (port_change_required) {
3439 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003440 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003441 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003442
3443 /* prepare message */
3444 chunk_appendf(msg, "port changed from '");
3445 if (s->flags & SRV_F_MAPPORTS)
3446 chunk_appendf(msg, "+");
3447 chunk_appendf(msg, "%d' to '", current_port);
3448
3449 if (sign == '-') {
3450 s->flags |= SRV_F_MAPPORTS;
3451 chunk_appendf(msg, "%c", sign);
3452 /* just use for result output */
3453 new_port = -new_port;
3454 }
3455 else if (sign == '+') {
3456 s->flags |= SRV_F_MAPPORTS;
3457 chunk_appendf(msg, "%c", sign);
3458 }
3459 else {
3460 s->flags &= ~SRV_F_MAPPORTS;
3461 }
3462
3463 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003464 }
3465 else {
3466 chunk_appendf(msg, "no need to change the port");
3467 }
3468 }
3469
3470out:
William Dauchy6318d332020-05-02 21:52:36 +02003471 if (changed) {
3472 /* force connection cleanup on the given server */
3473 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003474 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003475 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003476 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003477 if (updater)
3478 chunk_appendf(msg, " by '%s'", updater);
3479 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003480 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003481}
3482
Christopher Faulet5efdef22021-03-11 18:03:21 +01003483/*
3484 * update server status based on result of SRV resolution
3485 * returns:
3486 * 0 if server status is updated
3487 * 1 if server status has not changed
3488 *
3489 * Must be called with the server lock held.
3490 */
3491int srvrq_update_srv_status(struct server *s, int has_no_ip)
3492{
3493 if (!s->srvrq)
3494 return 1;
3495
3496 /* since this server has an IP, it can go back in production */
3497 if (has_no_ip == 0) {
3498 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3499 return 1;
3500 }
3501
3502 if (s->next_admin & SRV_ADMF_RMAINT)
3503 return 1;
3504
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003505 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_NOENT);
Christopher Faulet5efdef22021-03-11 18:03:21 +01003506 return 0;
3507}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003508
3509/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003510 * update server status based on result of name resolution
3511 * returns:
3512 * 0 if server status is updated
3513 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003514 *
3515 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003516 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003517int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003518{
Emeric Brun750fe792020-12-23 16:51:12 +01003519 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003520 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003521 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003522
Jerome Magnin012261a2020-07-28 13:38:22 +02003523 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003524 if (resolution == NULL)
3525 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003526
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003527 switch (resolution->status) {
3528 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003529 /* status when HAProxy has just (re)started.
3530 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003531 break;
3532
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003533 case RSLV_STATUS_VALID:
3534 /*
3535 * resume health checks
3536 * server will be turned back on if health check is safe
3537 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003538 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003539 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003540 return 1;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003541 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_NOIP);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003542 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003543 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003544
Emeric Brun52a91d32017-08-31 14:41:55 +02003545 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003546 return 1;
3547 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3548 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3549 s->proxy->id, s->id);
3550
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003551 ha_warning("%s.\n", trash.area);
3552 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003553 return 0;
3554
3555 case RSLV_STATUS_NX:
3556 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003557 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3558 if (!tick_is_expired(exp, now_ms))
3559 break;
3560
3561 if (s->next_admin & SRV_ADMF_RMAINT)
3562 return 1;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003563 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_NX);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003564 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003565
3566 case RSLV_STATUS_TIMEOUT:
3567 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003568 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3569 if (!tick_is_expired(exp, now_ms))
3570 break;
3571
3572 if (s->next_admin & SRV_ADMF_RMAINT)
3573 return 1;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003574 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_TIMEOUT);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003575 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003576
3577 case RSLV_STATUS_REFUSED:
3578 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003579 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3580 if (!tick_is_expired(exp, now_ms))
3581 break;
3582
3583 if (s->next_admin & SRV_ADMF_RMAINT)
3584 return 1;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003585 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_REFUSED);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003586 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003587
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003588 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003589 /* stop server if resolution failed for a long enough period */
3590 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3591 if (!tick_is_expired(exp, now_ms))
3592 break;
3593
3594 if (s->next_admin & SRV_ADMF_RMAINT)
3595 return 1;
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02003596 srv_set_admin_flag(s, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_DNS_UNSPEC);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003597 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003598 }
3599
3600 return 1;
3601}
3602
3603/*
3604 * Server Name Resolution valid response callback
3605 * It expects:
3606 * - <nameserver>: the name server which answered the valid response
3607 * - <response>: buffer containing a valid DNS response
3608 * - <response_len>: size of <response>
3609 * It performs the following actions:
3610 * - ignore response if current ip found and server family not met
3611 * - update with first new ip found if family is met and current IP is not found
3612 * returns:
3613 * 0 on error
3614 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003615 *
3616 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003617 */
Emeric Brun08622d32020-12-23 17:41:43 +01003618int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003619{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003620 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003621 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003622 void *serverip, *firstip;
3623 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003624 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003625 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003626 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003627
Christopher Faulet67957bd2017-09-27 11:00:59 +02003628 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003629 if (!s)
3630 return 1;
3631
Christopher Faulet49531e82021-03-10 15:07:27 +01003632 if (s->srvrq) {
Emeric Brun34067662021-06-11 10:48:45 +02003633 /* If DNS resolution is disabled ignore it.
3634 * This is the case if the server was associated to
3635 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003636 */
Emeric Brun34067662021-06-11 10:48:45 +02003637 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003638 return 1;
3639 }
3640
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003641 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003642 if (!resolution)
3643 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003644
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003645 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003646 firstip = NULL; /* pointer to the first valid response found */
3647 /* it will be used as the new IP if a change is required */
3648 firstip_sin_family = AF_UNSPEC;
3649 serverip = NULL; /* current server IP address */
3650
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003651 /* initializing server IP pointer */
3652 server_sin_family = s->addr.ss_family;
3653 switch (server_sin_family) {
3654 case AF_INET:
3655 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3656 break;
3657
3658 case AF_INET6:
3659 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3660 break;
3661
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003662 case AF_UNSPEC:
3663 break;
3664
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003665 default:
3666 goto invalid;
3667 }
3668
Emeric Brund30e9a12020-12-23 18:49:16 +01003669 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3670 serverip, server_sin_family, &firstip,
3671 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003672
3673 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003674 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003675 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003676
Emeric Brun456de772020-12-23 18:17:31 +01003677 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003678 goto save_ip;
3679
Emeric Brun456de772020-12-23 18:17:31 +01003680 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003681 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003682 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003683
Emeric Brun456de772020-12-23 18:17:31 +01003684 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003685 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003686 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet07ecff52021-06-24 15:33:52 +02003687 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003688 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003689
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003690 default:
Christopher Faulet07ecff52021-06-24 15:33:52 +02003691 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003692 goto invalid;
3693
3694 }
3695
3696 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003697 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003698 counters->app.resolver.update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003699 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003700 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003701 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003702 else
3703 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003704 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003705
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003706 update_status:
Christopher Fauleta8ce4972021-06-24 15:26:03 +02003707 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3708 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003709 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003710
3711 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003712 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003713 counters->app.resolver.invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003714 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003715 }
Christopher Faulet07ecff52021-06-24 15:33:52 +02003716 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3717 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003718 return 0;
3719}
3720
3721/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003722 * SRV record error management callback
3723 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003724 * 0 if we can trash answser items.
3725 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003726 *
3727 * Grabs the server's lock.
3728 */
3729int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3730{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003731 struct resolv_srvrq *srvrq;
3732 struct resolv_resolution *res;
3733 struct resolvers *resolvers;
3734 int exp;
3735
3736 /* SRV records */
3737 srvrq = objt_resolv_srvrq(requester->owner);
3738 if (!srvrq)
Emeric Brun12ca6582021-06-10 15:25:25 +02003739 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003740
3741 resolvers = srvrq->resolvers;
3742 res = requester->resolution;
3743
3744 switch (res->status) {
3745
3746 case RSLV_STATUS_NX:
3747 /* stop server if resolution is NX for a long enough period */
3748 exp = tick_add(res->last_valid, resolvers->hold.nx);
3749 if (!tick_is_expired(exp, now_ms))
3750 return 1;
3751 break;
3752
3753 case RSLV_STATUS_TIMEOUT:
3754 /* stop server if resolution is TIMEOUT for a long enough period */
3755 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3756 if (!tick_is_expired(exp, now_ms))
3757 return 1;
3758 break;
3759
3760 case RSLV_STATUS_REFUSED:
3761 /* stop server if resolution is REFUSED for a long enough period */
3762 exp = tick_add(res->last_valid, resolvers->hold.refused);
3763 if (!tick_is_expired(exp, now_ms))
3764 return 1;
3765 break;
3766
3767 default:
3768 /* stop server if resolution failed for a long enough period */
3769 exp = tick_add(res->last_valid, resolvers->hold.other);
3770 if (!tick_is_expired(exp, now_ms))
3771 return 1;
3772 }
3773
Emeric Brun34067662021-06-11 10:48:45 +02003774 /* Remove any associated server ref */
Willy Tarreau6878f802021-10-20 14:07:31 +02003775 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003776
Emeric Brun12ca6582021-06-10 15:25:25 +02003777 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003778}
3779
3780/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003781 * Server Name Resolution error management callback
3782 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003783 * 0 if we can trash answser items.
3784 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003785 *
3786 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003787 */
Emeric Brun08622d32020-12-23 17:41:43 +01003788int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003790 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003791
Christopher Faulet67957bd2017-09-27 11:00:59 +02003792 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003793 if (!s)
Emeric Brun12ca6582021-06-10 15:25:25 +02003794 return 0;
3795
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003796 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003797 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003798 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun12ca6582021-06-10 15:25:25 +02003799 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau6878f802021-10-20 14:07:31 +02003800 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun12ca6582021-06-10 15:25:25 +02003801 return 0;
3802 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003803 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003804
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003805 return 1;
3806}
3807
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003808/*
3809 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003810 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003811 * It returns a pointer to the first server found or NULL if <ip> is not yet
3812 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003813 *
3814 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003815 */
3816struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3817{
3818 struct server *tmpsrv;
3819 struct proxy *be;
3820
3821 if (!srv)
3822 return NULL;
3823
3824 be = srv->proxy;
3825 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003826 /* we found the current server is the same, ignore it */
3827 if (srv == tmpsrv)
3828 continue;
3829
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003830 /* We want to compare the IP in the record with the IP of the servers in the
3831 * same backend, only if:
3832 * * DNS resolution is enabled on the server
3833 * * the hostname used for the resolution by our server is the same than the
3834 * one used for the server found in the backend
3835 * * the server found in the backend is not our current server
3836 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003837 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003838 if ((tmpsrv->hostname_dn == NULL) ||
3839 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003840 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003841 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003842 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003843 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003844 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003845
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003846 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003847 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003848 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003849 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003850 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003851
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003852 /* At this point, we have 2 different servers using the same DNS hostname
3853 * for their respective resolution.
3854 */
3855 if (*ip_family == tmpsrv->addr.ss_family &&
3856 ((tmpsrv->addr.ss_family == AF_INET &&
3857 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3858 (tmpsrv->addr.ss_family == AF_INET6 &&
3859 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003860 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003861 return tmpsrv;
3862 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003863 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003864 }
3865
Emeric Brune9fd6b52017-11-02 17:20:39 +01003866
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003867 return NULL;
3868}
3869
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003870/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3871 * resolver. This is suited for initial address configuration. Returns 0 on
3872 * success otherwise a non-zero error code. In case of error, *err_code, if
3873 * not NULL, is filled up.
3874 */
3875int srv_set_addr_via_libc(struct server *srv, int *err_code)
3876{
3877 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003878 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003879 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003880 return 1;
3881 }
3882 return 0;
3883}
3884
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003885/* Set the server's FDQN (->hostname) from <hostname>.
3886 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003887 *
3888 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003889 */
Emeric Brun08622d32020-12-23 17:41:43 +01003890int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003891{
Emeric Brun08622d32020-12-23 17:41:43 +01003892 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003893 char *hostname_dn;
3894 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003895
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003896 /* Note that the server lock is already held. */
3897 if (!srv->resolvers)
3898 return -1;
3899
Emeric Brun08622d32020-12-23 17:41:43 +01003900 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003901 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003902 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003903 * and we can't enable it at run time for now.
3904 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003905 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003906 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003907
3908 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003909 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003910 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02003911 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003912 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003913 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003914 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003915
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003916 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003917 if (resolution &&
3918 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003919 resolution->hostname_dn_len == hostname_dn_len &&
3920 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003921 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003922
Willy Tarreau6878f802021-10-20 14:07:31 +02003923 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003924
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003925 free(srv->hostname);
3926 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003927 srv->hostname = strdup(hostname);
3928 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003929 srv->hostname_dn_len = hostname_dn_len;
3930 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003931 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003932
Baptiste Assmann13a92322019-06-07 09:40:55 +02003933 if (srv->flags & SRV_F_NO_RESOLUTION)
3934 goto end;
3935
Emeric Brund30e9a12020-12-23 18:49:16 +01003936 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003937 goto err;
3938
3939 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003940 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003941 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003942 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003943
3944 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003945 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003946 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003947 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003948}
3949
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003950/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3951 * from the state file. This is suited for initial address configuration.
3952 * Returns 0 on success otherwise a non-zero error code. In case of error,
3953 * *err_code, if not NULL, is filled up.
3954 */
3955static int srv_apply_lastaddr(struct server *srv, int *err_code)
3956{
3957 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3958 if (err_code)
3959 *err_code |= ERR_WARN;
3960 return 1;
3961 }
3962 return 0;
3963}
3964
Willy Tarreau25e51522016-11-04 15:10:17 +01003965/* returns 0 if no error, otherwise a combination of ERR_* flags */
3966static int srv_iterate_initaddr(struct server *srv)
3967{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003968 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003969 int return_code = 0;
3970 int err_code;
3971 unsigned int methods;
3972
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003973 /* If no addr and no hostname set, get the name from the DNS SRV request */
3974 if (!name && srv->srvrq)
3975 name = srv->srvrq->name;
3976
Willy Tarreau25e51522016-11-04 15:10:17 +01003977 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003978 if (!methods) {
3979 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003980 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3981 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003982 if (srv->resolvers_id) {
3983 /* dns resolution is configured, add "none" to not fail on startup */
3984 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3985 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003986 }
3987
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003988 /* "-dr" : always append "none" so that server addresses resolution
3989 * failures are silently ignored, this is convenient to validate some
3990 * configs out of their environment.
3991 */
3992 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3993 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3994
Willy Tarreau25e51522016-11-04 15:10:17 +01003995 while (methods) {
3996 err_code = 0;
3997 switch (srv_get_next_initaddr(&methods)) {
3998 case SRV_IADDR_LAST:
3999 if (!srv->lastaddr)
4000 continue;
4001 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004002 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004003 return_code |= err_code;
4004 break;
4005
4006 case SRV_IADDR_LIBC:
4007 if (!srv->hostname)
4008 continue;
4009 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004010 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004011 return_code |= err_code;
4012 break;
4013
Willy Tarreau37ebe122016-11-04 15:17:58 +01004014 case SRV_IADDR_NONE:
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02004015 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, SRV_ADM_STCHGC_NONE);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004016 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004017 ha_warning("could not resolve address '%s', disabling server.\n",
4018 name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004019 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004020 return return_code;
4021
Willy Tarreau4310d362016-11-02 15:05:56 +01004022 case SRV_IADDR_IP:
4023 ipcpy(&srv->init_addr, &srv->addr);
4024 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004025 ha_warning("could not resolve address '%s', falling back to configured address.\n",
4026 name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004027 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004028 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004029
Willy Tarreau25e51522016-11-04 15:10:17 +01004030 default: /* unhandled method */
4031 break;
4032 }
4033 }
4034
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004035 if (!return_code)
4036 ha_alert("no method found to resolve address '%s'.\n", name);
4037 else
4038 ha_alert("could not resolve address '%s'.\n", name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004039
4040 return_code |= ERR_ALERT | ERR_FATAL;
4041 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004042out:
4043 srv_set_dyncookie(srv);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02004044 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01004045 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004046}
4047
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004048/*
4049 * This function parses all backends and all servers within each backend
4050 * and performs servers' addr resolution based on information provided by:
4051 * - configuration file
4052 * - server-state file (states provided by an 'old' haproxy process)
4053 *
4054 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4055 */
4056int srv_init_addr(void)
4057{
4058 struct proxy *curproxy;
4059 int return_code = 0;
4060
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004061 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004062 while (curproxy) {
4063 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004064
4065 /* servers are in backend only */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004066 if (!(curproxy->cap & PR_CAP_BE) || (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004067 goto srv_init_addr_next;
4068
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004069 for (srv = curproxy->srv; srv; srv = srv->next) {
4070 set_usermsgs_ctx(srv->conf.file, srv->conf.line, &srv->obj_type);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004071 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004072 return_code |= srv_iterate_initaddr(srv);
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004073 reset_usermsgs_ctx();
4074 }
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004075
4076 srv_init_addr_next:
4077 curproxy = curproxy->next;
4078 }
4079
4080 return return_code;
4081}
4082
Willy Tarreau46b7f532018-08-21 11:54:26 +02004083/*
4084 * Must be called with the server lock held.
4085 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01004086const 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 +02004087{
4088
Willy Tarreau83061a82018-07-13 11:56:34 +02004089 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004090
4091 msg = get_trash_chunk();
4092 chunk_reset(msg);
4093
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004094 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004095 chunk_appendf(msg, "no need to change the FDQN");
4096 goto out;
4097 }
4098
4099 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4100 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4101 goto out;
4102 }
4103
4104 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4105 server->proxy->id, server->id, server->hostname, fqdn);
4106
Emeric Brun08622d32020-12-23 17:41:43 +01004107 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004108 chunk_reset(msg);
4109 chunk_appendf(msg, "could not update %s/%s FQDN",
4110 server->proxy->id, server->id);
4111 goto out;
4112 }
4113
4114 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004115 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004116
4117 out:
4118 if (updater)
4119 chunk_appendf(msg, " by '%s'", updater);
4120 chunk_appendf(msg, "\n");
4121
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004122 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004123}
4124
4125
Willy Tarreau21b069d2016-11-23 17:15:08 +01004126/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4127 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004128 * 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 +01004129 * used for CLI commands requiring a server name.
4130 * Important: the <arg> is modified to remove the '/'.
4131 */
4132struct server *cli_find_server(struct appctx *appctx, char *arg)
4133{
4134 struct proxy *px;
4135 struct server *sv;
4136 char *line;
4137
4138 /* split "backend/server" and make <line> point to server */
4139 for (line = arg; *line; line++)
4140 if (*line == '/') {
4141 *line++ = '\0';
4142 break;
4143 }
4144
4145 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004146 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004147 return NULL;
4148 }
4149
4150 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004151 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004152 return NULL;
4153 }
4154
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004155 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004156 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004157 return NULL;
4158 }
4159
4160 return sv;
4161}
4162
William Lallemand222baf22016-11-19 02:00:33 +01004163
Willy Tarreau46b7f532018-08-21 11:54:26 +02004164/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004165static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004166{
4167 struct server *sv;
4168 const char *warning;
4169
4170 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4171 return 1;
4172
4173 sv = cli_find_server(appctx, args[2]);
4174 if (!sv)
4175 return 1;
4176
4177 if (strcmp(args[3], "weight") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004178 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004179 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004180 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004181 if (warning)
4182 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004183 }
4184 else if (strcmp(args[3], "state") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004185 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004186 if (strcmp(args[4], "ready") == 0)
4187 srv_adm_set_ready(sv);
4188 else if (strcmp(args[4], "drain") == 0)
4189 srv_adm_set_drain(sv);
4190 else if (strcmp(args[4], "maint") == 0)
4191 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004192 else
4193 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004194 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004195 }
4196 else if (strcmp(args[3], "health") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004197 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004198 if (sv->track)
4199 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004200 else if (strcmp(args[4], "up") == 0) {
4201 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004202 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004203 }
4204 else if (strcmp(args[4], "stopping") == 0) {
4205 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004206 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004207 }
4208 else if (strcmp(args[4], "down") == 0) {
4209 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004210 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004211 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004212 else
4213 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004214 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004215 }
4216 else if (strcmp(args[3], "agent") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004217 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004218 if (!(sv->agent.state & CHK_ST_ENABLED))
4219 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004220 else if (strcmp(args[4], "up") == 0) {
4221 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004222 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004223 }
4224 else if (strcmp(args[4], "down") == 0) {
4225 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004226 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004227 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004228 else
4229 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004230 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004231 }
Misiek2da082d2017-01-09 09:40:42 +01004232 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004233 char *addr = NULL;
4234 char *port = NULL;
4235 if (strlen(args[4]) == 0) {
4236 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4237 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004238 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004239 }
4240 addr = args[4];
4241 if (strcmp(args[5], "port") == 0)
4242 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004243 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004244 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004245 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004246 if (warning)
4247 cli_msg(appctx, LOG_WARNING, warning);
4248 }
4249 else if (strcmp(args[3], "agent-port") == 0) {
4250 char *port = NULL;
4251 if (strlen(args[4]) == 0) {
4252 cli_err(appctx, "set server <b>/<s> agent-port requires"
4253 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004254 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004255 }
4256 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004257 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004258 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004259 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004260 if (warning)
4261 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004262 }
4263 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004264 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004265 if (!(sv->agent.state & CHK_ST_ENABLED))
4266 cli_err(appctx, "agent checks are not enabled on this server.\n");
4267 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004268 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004269 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004270 }
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004271 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004272 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004273 else if (strcmp(args[3], "check-addr") == 0) {
4274 char *addr = NULL;
4275 char *port = NULL;
4276 if (strlen(args[4]) == 0) {
4277 cli_err(appctx, "set server <b>/<s> check-addr requires"
4278 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004279 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004280 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004281 addr = args[4];
4282 if (strcmp(args[5], "port") == 0)
4283 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004284 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004285 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004286 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004287 if (warning)
4288 cli_msg(appctx, LOG_WARNING, warning);
4289 }
4290 else if (strcmp(args[3], "check-port") == 0) {
4291 char *port = NULL;
4292 if (strlen(args[4]) == 0) {
4293 cli_err(appctx, "set server <b>/<s> check-port requires"
4294 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004295 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004296 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004297 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004298 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004299 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004300 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004301 if (warning)
4302 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004303 }
4304 else if (strcmp(args[3], "addr") == 0) {
4305 char *addr = NULL;
4306 char *port = NULL;
4307 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004308 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004309 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004310 }
4311 else {
4312 addr = args[4];
4313 }
4314 if (strcmp(args[5], "port") == 0) {
4315 port = args[6];
4316 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004317 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004318 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004319 if (warning)
4320 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004321 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004322 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004323 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004324 else if (strcmp(args[3], "fqdn") == 0) {
4325 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004326 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004327 goto out;
4328 }
4329 if (!sv->resolvers) {
4330 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4331 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004332 }
Christopher Fauleta386e782021-06-15 11:37:40 +02004333 if (sv->srvrq) {
4334 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004335 goto out;
Christopher Fauleta386e782021-06-15 11:37:40 +02004336 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004337 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4338 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004339 /* ensure runtime resolver will process this new fqdn */
4340 if (sv->flags & SRV_F_NO_RESOLUTION) {
4341 sv->flags &= ~SRV_F_NO_RESOLUTION;
4342 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004343 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004344 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004345 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004346 if (warning)
4347 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004348 }
William Dauchyf6370442020-11-14 19:25:33 +01004349 else if (strcmp(args[3], "ssl") == 0) {
4350#ifdef USE_OPENSSL
Amaury Denoyelleb89d3d32021-05-19 15:00:54 +02004351 if (sv->flags & SRV_F_DYNAMIC) {
4352 cli_err(appctx, "'set server <srv> ssl' not supported on dynamic servers\n");
4353 goto out;
4354 }
4355
William Dauchyf6370442020-11-14 19:25:33 +01004356 if (sv->ssl_ctx.ctx == NULL) {
4357 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4358 " default-server should define ssl settings\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004359 goto out;
4360 }
4361
4362 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4363 if (strcmp(args[4], "on") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004364 srv_set_ssl(sv, 1);
William Dauchyf6370442020-11-14 19:25:33 +01004365 } else if (strcmp(args[4], "off") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004366 srv_set_ssl(sv, 0);
William Dauchyf6370442020-11-14 19:25:33 +01004367 } else {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004368 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004369 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004370 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004371 }
4372 srv_cleanup_connections(sv);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004373 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004374 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4375#else
4376 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4377#endif
4378 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004379 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004380 "usage: set server <backend>/<server> "
4381 "addr | agent | agent-addr | agent-port | agent-send | "
4382 "check-addr | check-port | fqdn | health | ssl | "
4383 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004384 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004385 out:
William Lallemand222baf22016-11-19 02:00:33 +01004386 return 1;
4387}
4388
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004389static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004390{
William Lallemand6b160942016-11-22 12:34:35 +01004391 struct proxy *px;
4392 struct server *sv;
4393 char *line;
4394
4395
4396 /* split "backend/server" and make <line> point to server */
4397 for (line = args[2]; *line; line++)
4398 if (*line == '/') {
4399 *line++ = '\0';
4400 break;
4401 }
4402
Willy Tarreau9d008692019-08-09 11:21:01 +02004403 if (!*line)
4404 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004405
Willy Tarreau9d008692019-08-09 11:21:01 +02004406 if (!get_backend_server(args[2], line, &px, &sv))
4407 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004408
4409 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004410 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4411 sv->iweight);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02004412 if (applet_putstr(appctx, trash.area) == -1)
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004413 return 0;
William Lallemand6b160942016-11-22 12:34:35 +01004414 return 1;
4415}
4416
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004417/* Parse a "set weight" command.
4418 *
4419 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004420 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004421static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004422{
4423 struct server *sv;
4424 const char *warning;
4425
4426 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4427 return 1;
4428
4429 sv = cli_find_server(appctx, args[2]);
4430 if (!sv)
4431 return 1;
4432
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004433 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4434
William Lallemand6b160942016-11-22 12:34:35 +01004435 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004436 if (warning)
4437 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004438
4439 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4440
William Lallemand6b160942016-11-22 12:34:35 +01004441 return 1;
4442}
4443
Willy Tarreau46b7f532018-08-21 11:54:26 +02004444/* parse a "set maxconn server" command. It always returns 1.
4445 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004446 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004447 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004448static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004449{
4450 struct server *sv;
4451 const char *warning;
4452
4453 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4454 return 1;
4455
4456 sv = cli_find_server(appctx, args[3]);
4457 if (!sv)
4458 return 1;
4459
Amaury Denoyelle02742862021-06-18 11:11:36 +02004460 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4461
Willy Tarreaub8026272016-11-23 11:26:56 +01004462 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004463 if (warning)
4464 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004465
Amaury Denoyelle02742862021-06-18 11:11:36 +02004466 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4467
Willy Tarreaub8026272016-11-23 11:26:56 +01004468 return 1;
4469}
William Lallemand6b160942016-11-22 12:34:35 +01004470
Willy Tarreau46b7f532018-08-21 11:54:26 +02004471/* parse a "disable agent" command. It always returns 1.
4472 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004473 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004474 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004475static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004476{
4477 struct server *sv;
4478
4479 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4480 return 1;
4481
4482 sv = cli_find_server(appctx, args[2]);
4483 if (!sv)
4484 return 1;
4485
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004486 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004487 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004488 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004489 return 1;
4490}
4491
Willy Tarreau46b7f532018-08-21 11:54:26 +02004492/* parse a "disable health" command. It always returns 1.
4493 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004494 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004495 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004496static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004497{
4498 struct server *sv;
4499
4500 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4501 return 1;
4502
4503 sv = cli_find_server(appctx, args[2]);
4504 if (!sv)
4505 return 1;
4506
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004507 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004508 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004509 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004510 return 1;
4511}
4512
Willy Tarreau46b7f532018-08-21 11:54:26 +02004513/* parse a "disable server" command. It always returns 1.
4514 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004515 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004516 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004517static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004518{
4519 struct server *sv;
4520
4521 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4522 return 1;
4523
4524 sv = cli_find_server(appctx, args[2]);
4525 if (!sv)
4526 return 1;
4527
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004528 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004529 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004530 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004531 return 1;
4532}
4533
Willy Tarreau46b7f532018-08-21 11:54:26 +02004534/* parse a "enable agent" command. It always returns 1.
4535 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004536 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004537 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004538static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004539{
4540 struct server *sv;
4541
4542 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4543 return 1;
4544
4545 sv = cli_find_server(appctx, args[2]);
4546 if (!sv)
4547 return 1;
4548
Willy Tarreau9d008692019-08-09 11:21:01 +02004549 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4550 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004551
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004552 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004553 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004554 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004555 return 1;
4556}
4557
Willy Tarreau46b7f532018-08-21 11:54:26 +02004558/* parse a "enable health" command. It always returns 1.
4559 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004560 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004561 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004562static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004563{
4564 struct server *sv;
4565
4566 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4567 return 1;
4568
4569 sv = cli_find_server(appctx, args[2]);
4570 if (!sv)
4571 return 1;
4572
Amaury Denoyelle0f456d52021-09-21 10:29:09 +02004573 if (!(sv->check.state & CHK_ST_CONFIGURED))
4574 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4575
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004576 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004577 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004578 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004579 return 1;
4580}
4581
Willy Tarreau46b7f532018-08-21 11:54:26 +02004582/* parse a "enable server" command. It always returns 1.
4583 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004584 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004585 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004586static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004587{
4588 struct server *sv;
4589
4590 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4591 return 1;
4592
4593 sv = cli_find_server(appctx, args[2]);
4594 if (!sv)
4595 return 1;
4596
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004597 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004598 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004599 if (!(sv->flags & SRV_F_COOKIESET)
4600 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4601 sv->cookie)
4602 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004603 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004604 return 1;
4605}
4606
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004607/* Allocates data structure related to load balancing for the server <sv>. It
4608 * is only required for dynamic servers.
4609 *
4610 * At the moment, the server lock is not used as this function is only called
4611 * for a dynamic server not yet registered.
4612 *
4613 * Returns 1 on success, 0 on allocation failure.
4614 */
4615static int srv_alloc_lb(struct server *sv, struct proxy *be)
4616{
4617 int node;
4618
4619 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4620 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4621 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4622 sv->lb_nodes_now = 0;
4623
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004624 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4625 ((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 +01004626 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4627
4628 if (!sv->lb_nodes)
4629 return 0;
4630
4631 for (node = 0; node < sv->lb_nodes_tot; node++) {
4632 sv->lb_nodes[node].server = sv;
4633 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4634 }
4635 }
4636
4637 return 1;
4638}
4639
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004640/* updates the server's weight during a warmup stage. Once the final weight is
4641 * reached, the task automatically stops. Note that any server status change
4642 * must have updated s->last_change accordingly.
4643 */
4644static struct task *server_warmup(struct task *t, void *context, unsigned int state)
4645{
4646 struct server *s = context;
4647
4648 /* by default, plan on stopping the task */
4649 t->expire = TICK_ETERNITY;
4650 if ((s->next_admin & SRV_ADMF_MAINT) ||
4651 (s->next_state != SRV_ST_STARTING))
4652 return t;
4653
4654 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4655
4656 /* recalculate the weights and update the state */
4657 server_recalc_eweight(s, 1);
4658
4659 /* probably that we can refill this server with a bit more connections */
4660 pendconn_grab_from_px(s);
4661
4662 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4663
4664 /* get back there in 1 second or 1/20th of the slowstart interval,
4665 * whichever is greater, resulting in small 5% steps.
4666 */
4667 if (s->next_state == SRV_ST_STARTING)
4668 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
4669 return t;
4670}
4671
4672/* Allocate the slowstart task if the server is configured with a slowstart
4673 * timer. If server next_state is SRV_ST_STARTING, the task is scheduled.
4674 *
4675 * Returns 0 on success else non-zero.
4676 */
4677static int init_srv_slowstart(struct server *srv)
4678{
4679 struct task *t;
4680
4681 if (srv->slowstart) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004682 if ((t = task_new_anywhere()) == NULL) {
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004683 ha_alert("Cannot activate slowstart for server %s/%s: out of memory.\n", srv->proxy->id, srv->id);
4684 return ERR_ALERT | ERR_FATAL;
4685 }
4686
4687 /* We need a warmup task that will be called when the server
4688 * state switches from down to up.
4689 */
4690 srv->warmup = t;
4691 t->process = server_warmup;
4692 t->context = srv;
4693
4694 /* server can be in this state only because of */
4695 if (srv->next_state == SRV_ST_STARTING) {
4696 task_schedule(srv->warmup,
4697 tick_add(now_ms,
4698 MS_TO_TICKS(MAX(1000, (now.tv_sec - srv->last_change)) / 20)));
4699 }
4700 }
4701
4702 return ERR_NONE;
4703}
4704REGISTER_POST_SERVER_CHECK(init_srv_slowstart);
4705
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004706/* Memory allocation and initialization of the per_thr field.
4707 * Returns 0 if the field has been successfully initialized, -1 on failure.
4708 */
4709int srv_init_per_thr(struct server *srv)
4710{
4711 int i;
4712
4713 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
Willy Tarreauc21a1872022-11-21 14:14:06 +01004714 srv->per_tgrp = calloc(global.nbtgroups, sizeof(*srv->per_tgrp));
4715 if (!srv->per_thr || !srv->per_tgrp)
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004716 return -1;
4717
4718 for (i = 0; i < global.nbthread; i++) {
4719 srv->per_thr[i].idle_conns = EB_ROOT;
4720 srv->per_thr[i].safe_conns = EB_ROOT;
4721 srv->per_thr[i].avail_conns = EB_ROOT;
4722 MT_LIST_INIT(&srv->per_thr[i].streams);
4723 }
4724
4725 return 0;
4726}
4727
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004728/* Parse a "add server" command
4729 * Returns 0 if the server has been successfully initialized, 1 on failure.
4730 */
4731static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4732{
4733 struct proxy *be;
4734 struct server *srv;
4735 char *be_name, *sv_name;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004736 int errcode, argc;
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004737 int next_id;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004738 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4739
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004740 usermsgs_clr("CLI");
4741
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004742 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4743 return 1;
4744
4745 ++args;
4746
4747 sv_name = be_name = args[1];
4748 /* split backend/server arg */
4749 while (*sv_name && *(++sv_name)) {
4750 if (*sv_name == '/') {
4751 *sv_name = '\0';
4752 ++sv_name;
4753 break;
4754 }
4755 }
4756
4757 if (!*sv_name)
4758 return cli_err(appctx, "Require 'backend/server'.");
4759
Amaury Denoyellecece9182021-04-20 17:09:08 +02004760 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004761 if (!be)
4762 return cli_err(appctx, "No such backend.");
4763
4764 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004765 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004766 return 1;
4767 }
4768
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004769 /* At this point, some operations might not be thread-safe anymore. This
4770 * might be the case for parsing handlers which were designed to run
4771 * only at the starting stage on single-thread mode.
4772 *
4773 * Activate thread isolation to ensure thread-safety.
4774 */
4775 thread_isolate();
4776
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004777 args[1] = sv_name;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004778 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags);
4779 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004780 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004781
4782 while (*args[argc]) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004783 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004784
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004785 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004786 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004787 }
4788
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004789 errcode = _srv_parse_finalize(args, argc, srv, be, parse_flags);
4790 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004791 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004792
Amaury Denoyelleefbf35c2021-06-10 17:34:10 +02004793 /* A dynamic server does not currently support resolution.
4794 *
4795 * Initialize it explicitly to the "none" method to ensure no
4796 * resolution will ever be executed.
4797 */
4798 srv->init_addr_methods = SRV_IADDR_NONE;
4799
Amaury Denoyelle30467232021-03-12 18:03:27 +01004800 if (srv->mux_proto) {
4801 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004802 ha_alert("MUX protocol is not usable for server.\n");
Amaury Denoyelle30467232021-03-12 18:03:27 +01004803 goto out;
4804 }
4805 }
4806
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004807 if (srv_init_per_thr(srv) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004808 ha_alert("failed to allocate per-thread lists for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004809 goto out;
4810 }
4811
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004812 if (srv->max_idle_conns != 0) {
4813 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4814 if (!srv->curr_idle_thr) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004815 ha_alert("failed to allocate counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004816 goto out;
4817 }
4818 }
4819
4820 if (!srv_alloc_lb(srv, be)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004821 ha_alert("Failed to initialize load-balancing data.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004822 goto out;
4823 }
4824
4825 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4826 COUNTERS_SV,
4827 STATS_PX_CAP_SRV)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004828 ha_alert("failed to allocate extra counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004829 goto out;
4830 }
4831
Aurelien DARRAGON86207e72023-02-08 11:55:08 +01004832 /* ensure minconn/maxconn consistency */
4833 srv_minmax_conn_apply(srv);
4834
Amaury Denoyelle79b90e82021-09-20 15:15:19 +02004835 if (srv->use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL) ||
4836 srv->check.use_ssl == 1) {
Amaury Denoyelle34897d22021-05-19 09:49:41 +02004837 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
4838 if (xprt_get(XPRT_SSL)->prepare_srv(srv))
4839 goto out;
4840 }
4841 }
4842
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004843 if (srv->trackit) {
4844 if (srv_apply_track(srv, be))
4845 goto out;
4846 }
4847
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004848 /* Init check/agent if configured. The check is manually disabled
4849 * because a dynamic server is started in a disable state. It must be
4850 * manually activated via a "enable health/agent" command.
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004851 */
4852 if (srv->do_check) {
4853 if (init_srv_check(srv))
4854 goto out;
4855
4856 srv->check.state &= ~CHK_ST_ENABLED;
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004857 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004858
4859 if (srv->do_agent) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004860 if (init_srv_agent_check(srv))
4861 goto out;
4862
4863 srv->agent.state &= ~CHK_ST_ENABLED;
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004864 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004865
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02004866 /* Init slowstart if needed. */
4867 if (init_srv_slowstart(srv))
4868 goto out;
4869
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004870 /* Attach the server to the end of the proxy linked list. Note that this
4871 * operation is not thread-safe so this is executed under thread
4872 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004873 *
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004874 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004875 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004876
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004877 /* TODO use a double-linked list for px->srv */
4878 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004879 struct server *next = be->srv;
4880
4881 while (1) {
4882 /* check for duplicate server */
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02004883 if (strcmp(srv->id, next->id) == 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004884 ha_alert("Already exists a server with the same name in backend.\n");
Amaury Denoyellecece9182021-04-20 17:09:08 +02004885 goto out;
4886 }
4887
4888 if (!next->next)
4889 break;
4890
4891 next = next->next;
4892 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004893
4894 next->next = srv;
4895 }
4896 else {
4897 srv->next = be->srv;
4898 be->srv = srv;
4899 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004900
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004901 /* generate the server id if not manually specified */
4902 if (!srv->puid) {
4903 next_id = get_next_id(&be->conf.used_server_id, 1);
4904 if (!next_id) {
4905 ha_alert("Cannot attach server : no id left in proxy\n");
4906 goto out;
4907 }
4908
4909 srv->conf.id.key = srv->puid = next_id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004910 }
Christopher Faulet70f89482021-12-07 18:49:44 +01004911 srv->conf.name.key = srv->id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004912
4913 /* insert the server in the backend trees */
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02004914 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4915 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Aurelien DARRAGON8d0ff282022-09-16 14:27:53 +02004916 /* addr_node.key could be NULL if FQDN resolution is postponed (ie: add server from cli) */
4917 if (srv->addr_node.key)
4918 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004919
Aurelien DARRAGON61e38942022-11-17 16:10:35 +01004920 /* check if LSB bit (odd bit) is set for reuse_cnt */
4921 if (srv_id_reuse_cnt & 1) {
4922 /* cnt must be increased */
4923 srv_id_reuse_cnt++;
4924 }
4925 /* srv_id_reuse_cnt is always even at this stage, divide by 2 to
4926 * save some space
4927 * (sizeof(srv->rid) is half of sizeof(srv_id_reuse_cnt))
4928 */
4929 srv->rid = (srv_id_reuse_cnt) ? (srv_id_reuse_cnt / 2) : 0;
4930
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +01004931 /* adding server cannot fail when we reach this:
4932 * publishing EVENT_HDL_SUB_SERVER_ADD
4933 */
4934 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_ADD, srv, 1);
4935
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004936 thread_release();
4937
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004938 /* Start the check task. The server must be fully initialized.
4939 *
4940 * <srvpos> and <nbcheck> parameters are set to 1 as there should be no
4941 * need to randomly spread the task interval for dynamic servers.
4942 */
4943 if (srv->check.state & CHK_ST_CONFIGURED) {
4944 if (!start_check_task(&srv->check, 0, 1, 1))
4945 ha_alert("System might be unstable, consider to execute a reload");
4946 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004947 if (srv->agent.state & CHK_ST_CONFIGURED) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004948 if (!start_check_task(&srv->agent, 0, 1, 1))
4949 ha_alert("System might be unstable, consider to execute a reload");
4950 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004951
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004952 ha_notice("New server registered.\n");
Amaury Denoyelle30fc6da2022-11-10 15:16:49 +01004953 cli_umsg(appctx, LOG_INFO);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004954
4955 return 0;
4956
4957out:
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004958 if (srv) {
4959 if (srv->track)
4960 release_server_track(srv);
4961
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004962 if (srv->check.state & CHK_ST_CONFIGURED)
4963 free_check(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004964 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004965 free_check(&srv->agent);
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004966
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004967 /* remove the server from the proxy linked list */
4968 if (be->srv == srv) {
4969 be->srv = srv->next;
4970 }
4971 else {
4972 struct server *prev;
4973 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4974 ;
4975 if (prev)
4976 prev->next = srv->next;
4977 }
4978
4979 }
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004980
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004981 thread_release();
4982
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004983 if (!usermsgs_empty())
Amaury Denoyelle30fc6da2022-11-10 15:16:49 +01004984 cli_umsgerr(appctx);
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004985
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004986 if (srv)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004987 srv_drop(srv);
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004988
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004989 return 1;
4990}
4991
Amaury Denoyellee5580432021-04-15 14:41:20 +02004992/* Parse a "del server" command
4993 * Returns 0 if the server has been successfully initialized, 1 on failure.
4994 */
4995static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4996{
4997 struct proxy *be;
4998 struct server *srv;
4999 char *be_name, *sv_name;
Aurelien DARRAGONf175b082023-02-01 17:22:32 +01005000 struct server *prev_del;
Amaury Denoyellee5580432021-04-15 14:41:20 +02005001
5002 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
5003 return 1;
5004
5005 ++args;
5006
5007 sv_name = be_name = args[1];
5008 /* split backend/server arg */
5009 while (*sv_name && *(++sv_name)) {
5010 if (*sv_name == '/') {
5011 *sv_name = '\0';
5012 ++sv_name;
5013 break;
5014 }
5015 }
5016
5017 if (!*sv_name)
5018 return cli_err(appctx, "Require 'backend/server'.");
5019
5020 /* The proxy servers list is currently not protected by a lock so this
Willy Tarreauba3ab792021-08-04 14:42:37 +02005021 * requires thread isolation. In addition, any place referencing the
5022 * server about to be deleted would be unsafe after our operation, so
5023 * we must be certain to be alone so that no other thread has even
5024 * started to grab a temporary reference to this server.
Amaury Denoyellee5580432021-04-15 14:41:20 +02005025 */
Willy Tarreauba3ab792021-08-04 14:42:37 +02005026 thread_isolate_full();
Amaury Denoyellee5580432021-04-15 14:41:20 +02005027
5028 get_backend_server(be_name, sv_name, &be, &srv);
5029 if (!be) {
5030 cli_err(appctx, "No such backend.");
5031 goto out;
5032 }
5033
5034 if (!srv) {
5035 cli_err(appctx, "No such server.");
5036 goto out;
5037 }
5038
Amaury Denoyelle14c3c5c2021-08-23 14:10:51 +02005039 if (srv->flags & SRV_F_NON_PURGEABLE) {
5040 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 +02005041 goto out;
5042 }
5043
5044 /* Only servers in maintenance can be deleted. This ensures that the
5045 * server is not present anymore in the lb structures (through
5046 * lbprm.set_server_status_down).
5047 */
5048 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
5049 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
5050 goto out;
5051 }
5052
5053 /* Ensure that there is no active/idle/pending connection on the server.
5054 *
5055 * TODO idle connections should not prevent server deletion. A proper
5056 * cleanup function should be implemented to be used here.
5057 */
5058 if (srv->cur_sess || srv->curr_idle_conns ||
Willy Tarreaua0570452021-06-18 09:30:30 +02005059 !eb_is_empty(&srv->queue.head)) {
Amaury Denoyellee5580432021-04-15 14:41:20 +02005060 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
5061 goto out;
5062 }
5063
Aurelien DARRAGON129ecf42022-11-17 10:37:58 +01005064 /* removing cannot fail anymore when we reach this:
5065 * publishing EVENT_HDL_SUB_SERVER_DEL
5066 */
5067 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_DEL, srv, 1);
5068
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02005069 /* remove srv from tracking list */
5070 if (srv->track)
5071 release_server_track(srv);
5072
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02005073 /* stop the check task if running */
5074 if (srv->check.state & CHK_ST_CONFIGURED)
5075 check_purge(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02005076 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02005077 check_purge(&srv->agent);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005078
5079 /* detach the server from the proxy linked list
5080 * The proxy servers list is currently not protected by a lock, so this
5081 * requires thread_isolate/release.
5082 */
5083
5084 /* be->srv cannot be empty since we have already found the server with
5085 * get_backend_server */
5086 BUG_ON(!be->srv);
5087 if (be->srv == srv) {
5088 be->srv = srv->next;
5089 }
5090 else {
5091 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02005092 for (next = be->srv; srv != next->next; next = next->next) {
5093 /* srv cannot be not found since we have already found
5094 * it with get_backend_server */
5095 BUG_ON(!next);
5096 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02005097
Amaury Denoyellee5580432021-04-15 14:41:20 +02005098 next->next = srv->next;
5099 }
5100
Aurelien DARRAGONf175b082023-02-01 17:22:32 +01005101 /* Some deleted servers could still point to us using their 'next',
5102 * update them as needed
5103 * Please note the small race between the POP and APPEND, although in
5104 * this situation this is not an issue as we are under full thread
5105 * isolation
5106 */
5107 while ((prev_del = MT_LIST_POP(&srv->prev_deleted, struct server *, prev_deleted))) {
5108 /* update its 'next' ptr */
5109 prev_del->next = srv->next;
5110 if (srv->next) {
5111 /* now it is our 'next' responsibility */
5112 MT_LIST_APPEND(&srv->next->prev_deleted, &prev_del->prev_deleted);
5113 }
5114 }
5115
5116 /* we ourselves need to inform our 'next' that we will still point it */
5117 if (srv->next)
5118 MT_LIST_APPEND(&srv->next->prev_deleted, &srv->prev_deleted);
5119
Amaury Denoyellee5580432021-04-15 14:41:20 +02005120 /* remove srv from addr_node tree */
Amaury Denoyelle82d7f772021-06-09 16:00:43 +02005121 eb32_delete(&srv->conf.id);
5122 ebpt_delete(&srv->conf.name);
Aurelien DARRAGON8d0ff282022-09-16 14:27:53 +02005123 if (srv->addr_node.key)
5124 ebpt_delete(&srv->addr_node);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005125
5126 /* remove srv from idle_node tree for idle conn cleanup */
5127 eb32_delete(&srv->idle_node);
5128
Aurelien DARRAGON75b9d1c2023-01-24 14:40:01 +01005129 /* flag the server as deleted
5130 * (despite the server being removed from primary server list,
5131 * one could still access the server data from a valid ptr)
5132 * Deleted flag helps detecting when a server is in transient removal
5133 * state.
5134 * ie: removed from the list but not yet freed/purged from memory.
5135 */
5136 srv->flags |= SRV_F_DELETED;
5137
Aurelien DARRAGON61e38942022-11-17 16:10:35 +01005138 /* set LSB bit (odd bit) for reuse_cnt */
5139 srv_id_reuse_cnt |= 1;
5140
Amaury Denoyellee5580432021-04-15 14:41:20 +02005141 thread_release();
5142
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02005143 ha_notice("Server deleted.\n");
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02005144 srv_drop(srv);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005145
5146 cli_msg(appctx, LOG_INFO, "Server deleted.");
5147
5148 return 0;
5149
5150out:
5151 thread_release();
5152
5153 return 1;
5154}
5155
William Lallemand222baf22016-11-19 02:00:33 +01005156/* register cli keywords */
5157static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec755efd2021-08-03 18:05:37 +02005158 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
5159 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005160 { { "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 +02005161 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
5162 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005163 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
5164 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
5165 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
5166 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
5167 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
Amaury Denoyelle76e8b702022-03-09 15:07:31 +01005168 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server", cli_parse_add_server, NULL },
5169 { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server", cli_parse_delete_server, NULL },
William Lallemand222baf22016-11-19 02:00:33 +01005170 {{},}
5171}};
5172
Willy Tarreau0108d902018-11-25 19:14:37 +01005173INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01005174
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005175/* Prepare a server <srv> to track check status of another one. <srv>.<trackit>
5176 * field is used to retrieve the identifier of the tracked server, either with
5177 * the format "proxy/server" or just "server". <curproxy> must point to the
5178 * backend owning <srv>; if no proxy is specified in <trackit>, it will be used
5179 * to find the tracked server.
5180 *
5181 * Returns 0 if the server track has been activated else non-zero.
5182 *
5183 * Not thread-safe.
5184 */
5185int srv_apply_track(struct server *srv, struct proxy *curproxy)
5186{
5187 struct proxy *px;
5188 struct server *strack, *loop;
5189 char *pname, *sname;
5190
5191 if (!srv->trackit)
5192 return 1;
5193
5194 pname = srv->trackit;
5195 sname = strrchr(pname, '/');
5196
5197 if (sname) {
5198 *sname++ = '\0';
5199 }
5200 else {
5201 sname = pname;
5202 pname = NULL;
5203 }
5204
5205 if (pname) {
5206 px = proxy_be_by_name(pname);
5207 if (!px) {
5208 ha_alert("unable to find required proxy '%s' for tracking.\n",
5209 pname);
5210 return 1;
5211 }
5212 }
5213 else {
5214 px = curproxy;
5215 }
5216
5217 strack = findserver(px, sname);
5218 if (!strack) {
5219 ha_alert("unable to find required server '%s' for tracking.\n",
5220 sname);
5221 return 1;
5222 }
5223
Amaury Denoyelle79f68be2021-07-13 10:35:50 +02005224 if (strack->flags & SRV_F_DYNAMIC) {
5225 ha_alert("unable to use %s/%s for tracking as it is a dynamic server.\n",
5226 px->id, strack->id);
5227 return 1;
5228 }
5229
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005230 if (!strack->do_check && !strack->do_agent && !strack->track &&
5231 !strack->trackit) {
5232 ha_alert("unable to use %s/%s for "
5233 "tracking as it does not have any check nor agent enabled.\n",
5234 px->id, strack->id);
5235 return 1;
5236 }
5237
5238 for (loop = strack->track; loop && loop != srv; loop = loop->track)
5239 ;
5240
5241 if (srv == strack || loop) {
5242 ha_alert("unable to track %s/%s as it "
5243 "belongs to a tracking chain looping back to %s/%s.\n",
5244 px->id, strack->id, px->id,
5245 srv == strack ? strack->id : loop->id);
5246 return 1;
5247 }
5248
5249 if (curproxy != px &&
5250 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
5251 ha_alert("unable to use %s/%s for"
5252 "tracking: disable-on-404 option inconsistency.\n",
5253 px->id, strack->id);
5254 return 1;
5255 }
5256
5257 srv->track = strack;
5258 srv->tracknext = strack->trackers;
5259 strack->trackers = srv;
Amaury Denoyelle06269612021-08-23 14:05:07 +02005260 strack->flags |= SRV_F_NON_PURGEABLE;
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005261
5262 ha_free(&srv->trackit);
5263
5264 return 0;
5265}
5266
Aurelien DARRAGON8bbe6432023-04-17 13:53:56 +02005267/* This function propagates srv state change to lb algorithms */
5268static void srv_lb_propagate(struct server *s)
5269{
5270 struct proxy *px = s->proxy;
5271
5272 if (px->lbprm.update_server_eweight)
5273 px->lbprm.update_server_eweight(s);
5274 else if (srv_willbe_usable(s)) {
5275 if (px->lbprm.set_server_status_up)
5276 px->lbprm.set_server_status_up(s);
5277 }
5278 else {
5279 if (px->lbprm.set_server_status_down)
5280 px->lbprm.set_server_status_down(s);
5281 }
5282}
5283
Emeric Brun64cc49c2017-10-03 14:46:45 +02005284/*
Aurelien DARRAGON0ddf0522023-03-27 11:57:28 +02005285 * This function applies server's status changes.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005286 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005287 * Must be called with the server lock held. This may also be called at init
5288 * time as the result of parsing the state file, in which case no lock will be
5289 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005290 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005291static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005292{
5293 struct check *check = &s->check;
5294 int xferred;
5295 struct proxy *px = s->proxy;
5296 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
5297 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
Aurelien DARRAGON9f5853f2023-04-18 13:52:27 +02005298 enum srv_state srv_prev_state = s->cur_state;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005299 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02005300 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005301
Emeric Brun64cc49c2017-10-03 14:46:45 +02005302 /* If currently main is not set we try to apply pending state changes */
5303 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
5304 int next_admin;
5305
5306 /* Backup next admin */
5307 next_admin = s->next_admin;
5308
5309 /* restore current admin state */
5310 s->next_admin = s->cur_admin;
5311
5312 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
Aurelien DARRAGON85b91372023-04-18 12:02:48 +02005313 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005314
5315 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5316 srv_shutdown_streams(s, SF_ERR_DOWN);
5317
5318 /* we might have streams queued on this server and waiting for
5319 * a connection. Those which are redispatchable will be queued
5320 * to another server or to the proxy itself.
5321 */
5322 xferred = pendconn_redistribute(s);
5323
Aurelien DARRAGONa63f4902023-03-23 14:39:51 +01005324 /* no maintenance + server DOWN: publish event SERVER DOWN */
5325 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_DOWN, s, 0);
5326
Emeric Brun64cc49c2017-10-03 14:46:45 +02005327 tmptrash = alloc_trash_chunk();
5328 if (tmptrash) {
5329 chunk_printf(tmptrash,
5330 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
5331 s->proxy->id, s->id);
5332
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005333 srv_append_op_chg_cause(tmptrash, s, NULL);
5334 srv_append_more(tmptrash, s, xferred, 0);
5335
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005336 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005337
5338 /* we don't send an alert if the server was previously paused */
5339 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005340 send_log(s->proxy, log_level, "%s.\n",
5341 tmptrash->area);
5342 send_email_alert(s, log_level, "%s",
5343 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005344 free_trash_chunk(tmptrash);
5345 tmptrash = NULL;
5346 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005347 }
5348 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
Aurelien DARRAGON85b91372023-04-18 12:02:48 +02005349 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005350
5351 /* we might have streams queued on this server and waiting for
5352 * a connection. Those which are redispatchable will be queued
5353 * to another server or to the proxy itself.
5354 */
5355 xferred = pendconn_redistribute(s);
5356
5357 tmptrash = alloc_trash_chunk();
5358 if (tmptrash) {
5359 chunk_printf(tmptrash,
5360 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
5361 s->proxy->id, s->id);
5362
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005363 srv_append_op_chg_cause(tmptrash, s, NULL);
5364 srv_append_more(tmptrash, s, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005365
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005366 ha_warning("%s.\n", tmptrash->area);
5367 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5368 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005369 free_trash_chunk(tmptrash);
5370 tmptrash = NULL;
5371 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005372 }
5373 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5374 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02005375
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005376 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005377 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5378
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005379 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005380 /* now propagate the status change to any LB algorithms */
Aurelien DARRAGON8bbe6432023-04-17 13:53:56 +02005381 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005382
5383 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5384 * and it's not a backup server and its effective weight is > 0,
5385 * then it can accept new connections, so we shut down all streams
5386 * on all backup servers.
5387 */
5388 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5389 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5390 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5391
5392 /* check if we can handle some connections queued at the proxy. We
5393 * will take as many as we can handle.
5394 */
5395 xferred = pendconn_grab_from_px(s);
5396
Aurelien DARRAGONa63f4902023-03-23 14:39:51 +01005397 /* no maintenance + server going UP: publish event SERVER UP */
5398 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_UP, s, 0);
5399
Emeric Brun64cc49c2017-10-03 14:46:45 +02005400 tmptrash = alloc_trash_chunk();
5401 if (tmptrash) {
5402 chunk_printf(tmptrash,
5403 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5404 s->proxy->id, s->id);
5405
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005406 srv_append_op_chg_cause(tmptrash, s, NULL);
5407 srv_append_more(tmptrash, s, xferred, 0);
5408
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005409 ha_warning("%s.\n", tmptrash->area);
5410 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5411 tmptrash->area);
5412 send_email_alert(s, LOG_NOTICE, "%s",
5413 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005414 free_trash_chunk(tmptrash);
5415 tmptrash = NULL;
5416 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005417 }
5418 else if (s->cur_eweight != s->next_eweight) {
5419 /* now propagate the status change to any LB algorithms */
Aurelien DARRAGON8bbe6432023-04-17 13:53:56 +02005420 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005421 }
5422
5423 s->next_admin = next_admin;
5424 }
5425
Emeric Brun5a133512017-10-19 14:42:30 +02005426 /* reset operational state change */
5427 *s->op_st_chg.reason = 0;
5428 s->op_st_chg.status = s->op_st_chg.code = -1;
5429 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005430
5431 /* Now we try to apply pending admin changes */
5432
5433 /* Maintenance must also disable health checks */
5434 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5435 if (s->check.state & CHK_ST_ENABLED) {
5436 s->check.state |= CHK_ST_PAUSED;
5437 check->health = 0;
5438 }
5439
5440 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005441 tmptrash = alloc_trash_chunk();
5442 if (tmptrash) {
5443 chunk_printf(tmptrash,
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005444 "%sServer %s/%s was DOWN and now enters maintenance",
5445 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
5446 srv_append_adm_chg_cause(tmptrash, s);
5447 srv_append_more(tmptrash, s, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005448
Olivier Houchard796a2b32017-10-24 17:42:47 +02005449 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005450 ha_warning("%s.\n", tmptrash->area);
5451 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5452 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005453 }
5454 free_trash_chunk(tmptrash);
5455 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005456 }
5457 }
5458 else { /* server was still running */
5459 check->health = 0; /* failure */
Emeric Brune3114802017-12-21 14:42:26 +01005460
5461 s->next_state = SRV_ST_STOPPED;
Aurelien DARRAGON85b91372023-04-18 12:02:48 +02005462 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005463
Emeric Brun64cc49c2017-10-03 14:46:45 +02005464 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5465 srv_shutdown_streams(s, SF_ERR_DOWN);
5466
William Dauchy6318d332020-05-02 21:52:36 +02005467 /* force connection cleanup on the given server */
5468 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005469 /* we might have streams queued on this server and waiting for
5470 * a connection. Those which are redispatchable will be queued
5471 * to another server or to the proxy itself.
5472 */
5473 xferred = pendconn_redistribute(s);
5474
Aurelien DARRAGONa63f4902023-03-23 14:39:51 +01005475 /* maintenance on previously running server: publish event SERVER DOWN */
5476 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_DOWN, s, 0);
5477
Emeric Brun64cc49c2017-10-03 14:46:45 +02005478 tmptrash = alloc_trash_chunk();
5479 if (tmptrash) {
5480 chunk_printf(tmptrash,
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005481 "%sServer %s/%s is going DOWN for maintenance",
Emeric Brun64cc49c2017-10-03 14:46:45 +02005482 s->flags & SRV_F_BACKUP ? "Backup " : "",
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005483 s->proxy->id, s->id);
5484 srv_append_adm_chg_cause(tmptrash, s);
5485 srv_append_more(tmptrash, s, xferred, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005486
5487 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005488 ha_warning("%s.\n", tmptrash->area);
5489 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5490 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005491 }
5492 free_trash_chunk(tmptrash);
5493 tmptrash = NULL;
5494 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005495 }
5496 }
5497 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5498 /* OK here we're leaving maintenance, we have many things to check,
5499 * because the server might possibly be coming back up depending on
5500 * its state. In practice, leaving maintenance means that we should
5501 * immediately turn to UP (more or less the slowstart) under the
5502 * following conditions :
5503 * - server is neither checked nor tracked
5504 * - server tracks another server which is not checked
5505 * - server tracks another server which is already up
5506 * Which sums up as something simpler :
5507 * "either the tracking server is up or the server's checks are disabled
5508 * or up". Otherwise we only re-enable health checks. There's a special
5509 * case associated to the stopping state which can be inherited. Note
5510 * that the server might still be in drain mode, which is naturally dealt
5511 * with by the lower level functions.
5512 */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005513 if (s->check.state & CHK_ST_ENABLED) {
5514 s->check.state &= ~CHK_ST_PAUSED;
5515 check->health = check->rise; /* start OK but check immediately */
5516 }
5517
5518 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5519 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5520 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5521 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5522 s->next_state = SRV_ST_STOPPING;
5523 }
5524 else {
5525 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005526 if (s->slowstart > 0) {
5527 if (s->warmup)
5528 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5529 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005530 else
5531 s->next_state = SRV_ST_RUNNING;
5532 }
5533
5534 }
5535
Aurelien DARRAGON22f82f82022-11-25 18:07:49 +01005536 /* ignore if server stays down when leaving maintenance mode */
5537 if (s->next_state != SRV_ST_STOPPED) {
5538 /* leaving maintenance + server UP: publish event SERVER UP */
5539 srv_event_hdl_publish(EVENT_HDL_SUB_SERVER_UP, s, 0);
5540 }
5541
Emeric Brun64cc49c2017-10-03 14:46:45 +02005542 tmptrash = alloc_trash_chunk();
5543 if (tmptrash) {
5544 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5545 chunk_printf(tmptrash,
5546 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5547 s->flags & SRV_F_BACKUP ? "Backup " : "",
5548 s->proxy->id, s->id,
5549 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5550 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5551 }
5552 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5553 chunk_printf(tmptrash,
5554 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5555 s->flags & SRV_F_BACKUP ? "Backup " : "",
5556 s->proxy->id, s->id, s->hostname,
5557 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5558 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5559 }
5560 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5561 chunk_printf(tmptrash,
5562 "%sServer %s/%s is %s/%s (leaving maintenance)",
5563 s->flags & SRV_F_BACKUP ? "Backup " : "",
5564 s->proxy->id, s->id,
5565 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5566 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5567 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005568 ha_warning("%s.\n", tmptrash->area);
5569 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5570 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005571 free_trash_chunk(tmptrash);
5572 tmptrash = NULL;
5573 }
5574
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005575 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005576 /* now propagate the status change to any LB algorithms */
Aurelien DARRAGON8bbe6432023-04-17 13:53:56 +02005577 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005578
Willy Tarreau6a78e612018-08-07 10:14:53 +02005579 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5580 * and it's not a backup server and its effective weight is > 0,
5581 * then it can accept new connections, so we shut down all streams
5582 * on all backup servers.
5583 */
5584 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5585 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5586 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5587
5588 /* check if we can handle some connections queued at the proxy. We
5589 * will take as many as we can handle.
5590 */
5591 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005592 }
5593 else if (s->next_admin & SRV_ADMF_MAINT) {
5594 /* remaining in maintenance mode, let's inform precisely about the
5595 * situation.
5596 */
5597 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5598 tmptrash = alloc_trash_chunk();
5599 if (tmptrash) {
5600 chunk_printf(tmptrash,
5601 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5602 s->flags & SRV_F_BACKUP ? "Backup " : "",
5603 s->proxy->id, s->id);
5604
5605 if (s->track) /* normally it's mandatory here */
5606 chunk_appendf(tmptrash, " via %s/%s",
5607 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005608 ha_warning("%s.\n", tmptrash->area);
5609 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5610 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005611 free_trash_chunk(tmptrash);
5612 tmptrash = NULL;
5613 }
5614 }
5615 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5616 tmptrash = alloc_trash_chunk();
5617 if (tmptrash) {
5618 chunk_printf(tmptrash,
5619 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5620 s->flags & SRV_F_BACKUP ? "Backup " : "",
5621 s->proxy->id, s->id, s->hostname);
5622
5623 if (s->track) /* normally it's mandatory here */
5624 chunk_appendf(tmptrash, " via %s/%s",
5625 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005626 ha_warning("%s.\n", tmptrash->area);
5627 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5628 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005629 free_trash_chunk(tmptrash);
5630 tmptrash = NULL;
5631 }
5632 }
5633 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5634 tmptrash = alloc_trash_chunk();
5635 if (tmptrash) {
5636 chunk_printf(tmptrash,
5637 "%sServer %s/%s remains in forced maintenance",
5638 s->flags & SRV_F_BACKUP ? "Backup " : "",
5639 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005640 ha_warning("%s.\n", tmptrash->area);
5641 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5642 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005643 free_trash_chunk(tmptrash);
5644 tmptrash = NULL;
5645 }
5646 }
5647 /* don't report anything when leaving drain mode and remaining in maintenance */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005648 }
5649
5650 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5651 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5652 /* drain state is applied only if not yet in maint */
5653
Aurelien DARRAGON85b91372023-04-18 12:02:48 +02005654 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005655
5656 /* we might have streams queued on this server and waiting for
5657 * a connection. Those which are redispatchable will be queued
5658 * to another server or to the proxy itself.
5659 */
5660 xferred = pendconn_redistribute(s);
5661
5662 tmptrash = alloc_trash_chunk();
5663 if (tmptrash) {
Aurelien DARRAGONf3b48a82023-04-14 18:07:09 +02005664 chunk_printf(tmptrash, "%sServer %s/%s enters drain state",
5665 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
5666 srv_append_adm_chg_cause(tmptrash, s);
5667 srv_append_more(tmptrash, s, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005668
5669 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005670 ha_warning("%s.\n", tmptrash->area);
5671 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5672 tmptrash->area);
5673 send_email_alert(s, LOG_NOTICE, "%s",
5674 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005675 }
5676 free_trash_chunk(tmptrash);
5677 tmptrash = NULL;
5678 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005679 }
5680 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5681 /* OK completely leaving drain mode */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005682 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005683
5684 tmptrash = alloc_trash_chunk();
5685 if (tmptrash) {
Aurelien DARRAGON9a1df022023-03-27 10:17:31 +02005686 if (s->cur_admin & SRV_ADMF_FDRAIN) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02005687 chunk_printf(tmptrash,
5688 "%sServer %s/%s is %s (leaving forced drain)",
5689 s->flags & SRV_F_BACKUP ? "Backup " : "",
5690 s->proxy->id, s->id,
5691 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5692 }
5693 else {
5694 chunk_printf(tmptrash,
5695 "%sServer %s/%s is %s (leaving drain)",
5696 s->flags & SRV_F_BACKUP ? "Backup " : "",
5697 s->proxy->id, s->id,
5698 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5699 if (s->track) /* normally it's mandatory here */
5700 chunk_appendf(tmptrash, " via %s/%s",
5701 s->track->proxy->id, s->track->id);
5702 }
5703
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005704 ha_warning("%s.\n", tmptrash->area);
5705 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5706 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005707 free_trash_chunk(tmptrash);
5708 tmptrash = NULL;
5709 }
5710
5711 /* now propagate the status change to any LB algorithms */
Aurelien DARRAGON8bbe6432023-04-17 13:53:56 +02005712 srv_lb_propagate(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005713 }
5714 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5715 /* remaining in drain mode after removing one of its flags */
5716
5717 tmptrash = alloc_trash_chunk();
5718 if (tmptrash) {
5719 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5720 chunk_printf(tmptrash,
5721 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5722 s->flags & SRV_F_BACKUP ? "Backup " : "",
5723 s->proxy->id, s->id);
5724
5725 if (s->track) /* normally it's mandatory here */
5726 chunk_appendf(tmptrash, " via %s/%s",
5727 s->track->proxy->id, s->track->id);
5728 }
5729 else {
5730 chunk_printf(tmptrash,
5731 "%sServer %s/%s remains in forced drain mode",
5732 s->flags & SRV_F_BACKUP ? "Backup " : "",
5733 s->proxy->id, s->id);
5734 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005735 ha_warning("%s.\n", tmptrash->area);
5736 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5737 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005738 free_trash_chunk(tmptrash);
5739 tmptrash = NULL;
5740 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005741 }
5742 }
5743
Aurelien DARRAGON9b1ccd72023-04-03 17:40:28 +02005744 /* Re-set adm st change to none */
5745 s->adm_st_chg_cause = SRV_ADM_STCHGC_NONE;
Aurelien DARRAGON22151c72023-04-17 17:45:58 +02005746
5747 /* explicitly commit state changes (even if it was already applied implicitly
5748 * by some lb state change function), so we don't miss anything
5749 */
5750 srv_lb_commit_status(s);
Aurelien DARRAGONe80ddb12023-04-17 15:30:11 +02005751
Aurelien DARRAGON9f5853f2023-04-18 13:52:27 +02005752 /* check if server stats must be updated due the the server state change */
5753 if (srv_prev_state != s->cur_state) {
5754 if (srv_prev_state == SRV_ST_STOPPED) {
5755 /* server was down and no longer is */
5756 if (s->last_change < now.tv_sec) // ignore negative times
5757 s->down_time += now.tv_sec - s->last_change;
5758 }
Aurelien DARRAGON5f80f8b2023-04-19 18:22:21 +02005759 else if (s->cur_state == SRV_ST_STOPPED) {
5760 /* server was up and is currently down */
5761 s->counters.down_trans++;
5762 }
Aurelien DARRAGON9f5853f2023-04-18 13:52:27 +02005763 s->last_change = now.tv_sec;
5764 }
5765
Aurelien DARRAGONe80ddb12023-04-17 15:30:11 +02005766 /* check if backend stats must be updated due to the server state change */
5767 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5768 set_backend_down(s->proxy); /* backend going down */
5769 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act)) {
5770 /* backend was down and is back up again:
5771 * no helper function, updating last_change and backend downtime stats
5772 */
5773 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5774 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5775 s->proxy->last_change = now.tv_sec;
5776 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005777}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005778
Willy Tarreau144f84a2021-03-02 16:09:26 +01005779struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005780{
5781 struct connection *conn;
5782
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005783 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005784 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005785 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005786 }
5787
5788 return task;
5789}
5790
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005791/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005792 * moving them all.
5793 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005794 *
5795 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005796 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005797static 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 +02005798{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005799 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005800 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005801 int i = 0;
5802
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005803 node = eb_first(idle_tree);
5804 while (node) {
5805 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005806 if (toremove_nb != -1 && i >= toremove_nb)
5807 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005808
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005809 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005810 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005811 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005812 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005813
5814 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005815 }
5816 return i;
5817}
William Dauchy6318d332020-05-02 21:52:36 +02005818/* cleanup connections for a given server
5819 * might be useful when going on forced maintenance or live changing ip/port
5820 */
William Dauchy707ad322020-05-04 13:52:40 +02005821static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005822{
William Dauchy6318d332020-05-02 21:52:36 +02005823 int did_remove;
5824 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005825
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005826 /* nothing to do if pool-max-conn is null */
5827 if (!srv->max_idle_conns)
5828 return;
5829
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005830 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005831 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005832 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005833 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005834 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 +02005835 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005836 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 +02005837 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005838 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005839 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005840 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005841
5842 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5843 break;
William Dauchy6318d332020-05-02 21:52:36 +02005844 }
Willy Tarreau260f3242021-10-06 18:30:04 +02005845}
5846
5847/* removes an idle conn after updating the server idle conns counters */
5848void srv_release_conn(struct server *srv, struct connection *conn)
5849{
5850 if (conn->flags & CO_FL_LIST_MASK) {
5851 /* The connection is currently in the server's idle list, so tell it
5852 * there's one less connection available in that list.
5853 */
5854 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5855 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
5856 _HA_ATOMIC_DEC(&srv->curr_idle_thr[tid]);
5857 }
5858 else {
5859 /* The connection is not private and not in any server's idle
5860 * list, so decrement the current number of used connections
5861 */
5862 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5863 }
5864
5865 /* Remove the connection from any tree (safe, idle or available) */
5866 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5867 conn_delete_from_tree(&conn->hash_node->node);
Christopher Faulet5e1b0e72023-02-28 15:39:38 +01005868 conn->flags &= ~CO_FL_LIST_MASK;
Willy Tarreau260f3242021-10-06 18:30:04 +02005869 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5870}
5871
5872/* retrieve a connection from its <hash> in <tree>
5873 * returns NULL if no connection found
5874 */
5875struct connection *srv_lookup_conn(struct eb_root *tree, uint64_t hash)
5876{
Willy Tarreau85223482022-09-29 20:32:43 +02005877 struct eb64_node *node = NULL;
Willy Tarreau260f3242021-10-06 18:30:04 +02005878 struct connection *conn = NULL;
5879 struct conn_hash_node *hash_node = NULL;
5880
Willy Tarreau85223482022-09-29 20:32:43 +02005881 node = eb64_lookup(tree, hash);
Willy Tarreau260f3242021-10-06 18:30:04 +02005882 if (node) {
5883 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5884 conn = hash_node->conn;
5885 }
5886
5887 return conn;
5888}
5889
5890/* retrieve the next connection sharing the same hash as <conn>
5891 * returns NULL if no connection found
5892 */
5893struct connection *srv_lookup_conn_next(struct connection *conn)
5894{
Willy Tarreau85223482022-09-29 20:32:43 +02005895 struct eb64_node *node = NULL;
Willy Tarreau260f3242021-10-06 18:30:04 +02005896 struct connection *next_conn = NULL;
5897 struct conn_hash_node *hash_node = NULL;
5898
Willy Tarreau85223482022-09-29 20:32:43 +02005899 node = eb64_next_dup(&conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005900 if (node) {
Willy Tarreau85223482022-09-29 20:32:43 +02005901 hash_node = eb64_entry(node, struct conn_hash_node, node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005902 next_conn = hash_node->conn;
5903 }
5904
5905 return next_conn;
5906}
5907
5908/* This adds an idle connection to the server's list if the connection is
5909 * reusable, not held by any owner anymore, but still has available streams.
5910 */
5911int srv_add_to_idle_list(struct server *srv, struct connection *conn, int is_safe)
5912{
5913 /* we try to keep the connection in the server's idle list
5914 * if we don't have too many FD in use, and if the number of
5915 * idle+current conns is lower than what was observed before
5916 * last purge, or if we already don't have idle conns for the
5917 * current thread and we don't exceed last count by global.nbthread.
5918 */
5919 if (!(conn->flags & CO_FL_PRIVATE) &&
5920 srv && srv->pool_purge_delay > 0 &&
5921 ((srv->proxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
5922 ha_used_fds < global.tune.pool_high_count &&
5923 (srv->max_idle_conns == -1 || srv->max_idle_conns > srv->curr_idle_conns) &&
5924 ((eb_is_empty(&srv->per_thr[tid].safe_conns) &&
5925 (is_safe || eb_is_empty(&srv->per_thr[tid].idle_conns))) ||
5926 (ha_used_fds < global.tune.pool_low_count &&
5927 (srv->curr_used_conns + srv->curr_idle_conns <=
5928 MAX(srv->curr_used_conns, srv->est_need_conns) + srv->low_idle_conns))) &&
5929 !conn->mux->used_streams(conn) && conn->mux->avail_streams(conn)) {
5930 int retadd;
5931
5932 retadd = _HA_ATOMIC_ADD_FETCH(&srv->curr_idle_conns, 1);
5933 if (retadd > srv->max_idle_conns) {
5934 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5935 return 0;
5936 }
5937 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5938
5939 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5940 conn_delete_from_tree(&conn->hash_node->node);
5941
5942 if (is_safe) {
5943 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_SAFE_LIST;
Willy Tarreau85223482022-09-29 20:32:43 +02005944 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005945 _HA_ATOMIC_INC(&srv->curr_safe_nb);
5946 } else {
5947 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_IDLE_LIST;
Willy Tarreau85223482022-09-29 20:32:43 +02005948 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005949 _HA_ATOMIC_INC(&srv->curr_idle_nb);
5950 }
5951 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5952 _HA_ATOMIC_INC(&srv->curr_idle_thr[tid]);
5953
5954 __ha_barrier_full();
5955 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5956 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5957 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5958 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5959 now_ms);
5960 eb32_insert(&idle_conn_srv, &srv->idle_node);
5961 if (!task_in_wq(idle_conn_task) && !
5962 task_in_rq(idle_conn_task)) {
5963 task_schedule(idle_conn_task,
5964 srv->idle_node.key);
5965 }
5966
5967 }
5968 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5969 }
5970 return 1;
5971 }
5972 return 0;
William Dauchy6318d332020-05-02 21:52:36 +02005973}
5974
Willy Tarreau144f84a2021-03-02 16:09:26 +01005975struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005976{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005977 struct server *srv;
5978 struct eb32_node *eb;
5979 int i;
5980 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005981
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005982 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005983 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5984 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005985 int exceed_conns;
5986 int to_kill;
5987 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005988
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005989 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5990 if (!eb) {
5991 /* we might have reached the end of the tree, typically because
5992 * <now_ms> is in the first half and we're first scanning the last
5993 * half. Let's loop back to the beginning of the tree now.
5994 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005995
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005996 eb = eb32_first(&idle_conn_srv);
5997 if (likely(!eb))
5998 break;
5999 }
6000 if (tick_is_lt(now_ms, eb->key)) {
6001 /* timer not expired yet, revisit it later */
6002 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01006003 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006004 }
6005 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006006
6007 /* Calculate how many idle connections we want to kill :
6008 * we want to remove half the difference between the total
6009 * of established connections (used or idle) and the max
6010 * number of used connections.
6011 */
6012 curr_idle = srv->curr_idle_conns;
6013 if (curr_idle == 0)
6014 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02006015 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006016 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02006017
Willy Tarreau21b9ff52020-11-05 09:12:20 +01006018 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02006019 if (srv->est_need_conns < srv->max_used_conns)
6020 srv->est_need_conns = srv->max_used_conns;
6021
Willy Tarreau9dc231a2022-11-21 14:32:33 +01006022 HA_ATOMIC_STORE(&srv->max_used_conns, srv->curr_used_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006023
Willy Tarreau18ed7892020-07-02 19:05:30 +02006024 if (exceed_conns <= 0)
6025 goto remove;
6026
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02006027 /* check all threads starting with ours */
6028 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006029 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006030 int j;
6031 int did_remove = 0;
6032
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006033 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
6034 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02006035
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006036 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006037 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 +02006038 if (j > 0)
6039 did_remove = 1;
6040 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006041 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 +01006042 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006043 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02006044
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006045 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02006046 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02006047
6048 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
6049 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006050 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02006051remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006052 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01006053
6054 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006055 /* There are still more idle connections, add the
6056 * server back in the tree.
6057 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01006058 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006059 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01006060 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006061 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01006062 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01006063 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
6064
Willy Tarreau21b9ff52020-11-05 09:12:20 +01006065 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01006066 return task;
6067}
Olivier Houchard88698d92019-04-16 19:07:22 +02006068
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02006069/* Close remaining idle connections. This functions is designed to be run on
6070 * process shutdown. This guarantees a proper socket shutdown to avoid
6071 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
6072 * bypassed.
6073 *
6074 * This function is not thread-safe so it must only be called via a global
6075 * deinit function.
6076 */
6077static void srv_close_idle_conns(struct server *srv)
6078{
6079 struct eb_root **cleaned_tree;
6080 int i;
6081
6082 for (i = 0; i < global.nbthread; ++i) {
6083 struct eb_root *conn_trees[] = {
6084 &srv->per_thr[i].idle_conns,
6085 &srv->per_thr[i].safe_conns,
6086 &srv->per_thr[i].avail_conns,
6087 NULL
6088 };
6089
6090 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
6091 while (!eb_is_empty(*cleaned_tree)) {
6092 struct ebmb_node *node = ebmb_first(*cleaned_tree);
6093 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
6094 struct connection *conn = conn_hash_node->conn;
6095
6096 if (conn->ctrl->ctrl_close)
6097 conn->ctrl->ctrl_close(conn);
6098 ebmb_delete(node);
6099 }
6100 }
6101 }
6102}
6103
6104REGISTER_SERVER_DEINIT(srv_close_idle_conns);
6105
Willy Tarreau76cc6992020-07-01 18:49:24 +02006106/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
6107static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006108 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02006109 char **err)
6110{
6111 if (too_many_args(1, args, err, NULL))
6112 return -1;
6113
6114 if (strcmp(args[1], "on") == 0)
6115 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
6116 else if (strcmp(args[1], "off") == 0)
6117 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
6118 else {
6119 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
6120 return -1;
6121 }
6122 return 0;
6123}
6124
Olivier Houchard88698d92019-04-16 19:07:22 +02006125/* config parser for global "tune.pool-{low,high}-fd-ratio" */
6126static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006127 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02006128 char **err)
6129{
6130 int arg = -1;
6131
6132 if (too_many_args(1, args, err, NULL))
6133 return -1;
6134
6135 if (*(args[1]) != 0)
6136 arg = atoi(args[1]);
6137
6138 if (arg < 0 || arg > 100) {
6139 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
6140 return -1;
6141 }
6142
6143 if (args[0][10] == 'h')
6144 global.tune.pool_high_ratio = arg;
6145 else
6146 global.tune.pool_low_ratio = arg;
6147 return 0;
6148}
6149
6150/* config keyword parsers */
6151static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02006152 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02006153 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
6154 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
6155 { 0, NULL, NULL }
6156}};
6157
6158INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
6159
Baptiste Assmanna68ca962015-04-14 01:15:08 +02006160/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02006161 * Local variables:
6162 * c-indent-level: 8
6163 * c-basic-offset: 8
6164 * End:
6165 */