blob: f74bb5cb7f1e70503c278167f74904fb1190c7f8 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreau260f3242021-10-06 18:30:04 +020019#include <import/ebmbtree.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010041#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Willy Tarreauba6300e2021-05-08 14:09:40 +020047#include <haproxy/tools.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020048#include <haproxy/xxhash.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020049
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050
Willy Tarreau3ff577e2018-08-02 11:48:52 +020051static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020053static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010055/* extra keywords used as value for other arguments. They are used as
56 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010057 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010058static const char *extra_kw_list[] = {
59 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010060 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010061 NULL /* must be last */
62};
63
Willy Tarreau21faa912012-10-10 08:27:36 +020064/* List head of all known server keywords */
65static struct srv_kw_list srv_keywords = {
66 .list = LIST_HEAD_INIT(srv_keywords.list)
67};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020068
Willy Tarreauaf613e82020-06-05 08:40:51 +020069__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020071struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010072struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010073
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070075struct dict server_key_dict = {
76 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020077 .values = EB_ROOT_UNIQUE,
78};
79
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010082 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200111 * Unlikely, but it can happen. The server's proxy must be at least
112 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200136 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau595e7672020-10-20 17:30:08 +0200148 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200197 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Willy Tarreau21faa912012-10-10 08:27:36 +0200200/*
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200201 * Must be called with the server lock held. The server is first removed from
202 * the proxy tree if it was already attached. If <reattach> is true, the server
203 * will then be attached in the proxy tree. The proxy lock is held to
204 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700205 */
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200206static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700207{
208 struct proxy *p = s->proxy;
209 char *key;
210
211 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
212
213 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700214 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700215 free(key);
216 return;
217 }
218
219 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
220 ebpt_delete(&s->addr_node);
221 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
222
223 free(s->addr_node.key);
224 }
225
226 s->addr_node.key = key;
227
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200228 if (reattach) {
229 if (s->addr_node.key) {
230 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
231 ebis_insert(&p->used_server_addr, &s->addr_node);
232 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
233 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700234 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700235}
236
237/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200238 * Registers the server keyword list <kwl> as a list of valid keywords for next
239 * parsing sessions.
240 */
241void srv_register_keywords(struct srv_kw_list *kwl)
242{
Willy Tarreau2b718102021-04-21 07:32:39 +0200243 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200244}
245
246/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
247 * keyword is found with a NULL ->parse() function, then an attempt is made to
248 * find one with a valid ->parse() function. This way it is possible to declare
249 * platform-dependant, known keywords as NULL, then only declare them as valid
250 * if some options are met. Note that if the requested keyword contains an
251 * opening parenthesis, everything from this point is ignored.
252 */
253struct srv_kw *srv_find_kw(const char *kw)
254{
255 int index;
256 const char *kwend;
257 struct srv_kw_list *kwl;
258 struct srv_kw *ret = NULL;
259
260 kwend = strchr(kw, '(');
261 if (!kwend)
262 kwend = kw + strlen(kw);
263
264 list_for_each_entry(kwl, &srv_keywords.list, list) {
265 for (index = 0; kwl->kw[index].kw != NULL; index++) {
266 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
267 kwl->kw[index].kw[kwend-kw] == 0) {
268 if (kwl->kw[index].parse)
269 return &kwl->kw[index]; /* found it !*/
270 else
271 ret = &kwl->kw[index]; /* may be OK */
272 }
273 }
274 }
275 return ret;
276}
277
278/* Dumps all registered "server" keywords to the <out> string pointer. The
279 * unsupported keywords are only dumped if their supported form was not
280 * found.
281 */
282void srv_dump_kws(char **out)
283{
284 struct srv_kw_list *kwl;
285 int index;
286
Christopher Faulet784063e2020-05-18 12:14:18 +0200287 if (!out)
288 return;
289
Willy Tarreau21faa912012-10-10 08:27:36 +0200290 *out = NULL;
291 list_for_each_entry(kwl, &srv_keywords.list, list) {
292 for (index = 0; kwl->kw[index].kw != NULL; index++) {
293 if (kwl->kw[index].parse ||
294 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
295 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
296 kwl->scope,
297 kwl->kw[index].kw,
298 kwl->kw[index].skip ? " <arg>" : "",
299 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
300 kwl->kw[index].parse ? "" : " (not supported)");
301 }
302 }
303 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100304}
305
306/* Try to find in srv_keyword the word that looks closest to <word> by counting
307 * transitions between letters, digits and other characters. Will return the
308 * best matching word if found, otherwise NULL. An optional array of extra
309 * words to compare may be passed in <extra>, but it must then be terminated
310 * by a NULL entry. If unused it may be NULL.
311 */
312static const char *srv_find_best_kw(const char *word)
313{
314 uint8_t word_sig[1024];
315 uint8_t list_sig[1024];
316 const struct srv_kw_list *kwl;
317 const char *best_ptr = NULL;
318 int dist, best_dist = INT_MAX;
319 const char **extra;
320 int index;
321
322 make_word_fingerprint(word_sig, word);
323 list_for_each_entry(kwl, &srv_keywords.list, list) {
324 for (index = 0; kwl->kw[index].kw != NULL; index++) {
325 make_word_fingerprint(list_sig, kwl->kw[index].kw);
326 dist = word_fingerprint_distance(word_sig, list_sig);
327 if (dist < best_dist) {
328 best_dist = dist;
329 best_ptr = kwl->kw[index].kw;
330 }
331 }
332 }
333
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100334 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100335 make_word_fingerprint(list_sig, *extra);
336 dist = word_fingerprint_distance(word_sig, list_sig);
337 if (dist < best_dist) {
338 best_dist = dist;
339 best_ptr = *extra;
340 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100341 }
342
343 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
344 best_ptr = NULL;
345
346 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200347}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100348
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100349/* Parse the "backup" server keyword */
350static int srv_parse_backup(char **args, int *cur_arg,
351 struct proxy *curproxy, struct server *newsrv, char **err)
352{
353 newsrv->flags |= SRV_F_BACKUP;
354 return 0;
355}
356
Alexander Liu2a54bb72019-05-22 19:44:48 +0800357
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100358/* Parse the "cookie" server keyword */
359static int srv_parse_cookie(char **args, int *cur_arg,
360 struct proxy *curproxy, struct server *newsrv, char **err)
361{
362 char *arg;
363
364 arg = args[*cur_arg + 1];
365 if (!*arg) {
366 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
367 return ERR_ALERT | ERR_FATAL;
368 }
369
370 free(newsrv->cookie);
371 newsrv->cookie = strdup(arg);
372 newsrv->cklen = strlen(arg);
373 newsrv->flags |= SRV_F_COOKIESET;
374 return 0;
375}
376
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100377/* Parse the "disabled" server keyword */
378static int srv_parse_disabled(char **args, int *cur_arg,
379 struct proxy *curproxy, struct server *newsrv, char **err)
380{
Emeric Brun52a91d32017-08-31 14:41:55 +0200381 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
382 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100383 newsrv->check.state |= CHK_ST_PAUSED;
384 newsrv->check.health = 0;
385 return 0;
386}
387
388/* Parse the "enabled" server keyword */
389static int srv_parse_enabled(char **args, int *cur_arg,
390 struct proxy *curproxy, struct server *newsrv, char **err)
391{
Emeric Brun52a91d32017-08-31 14:41:55 +0200392 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
393 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100394 newsrv->check.state &= ~CHK_ST_PAUSED;
395 newsrv->check.health = newsrv->check.rise;
396 return 0;
397}
398
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100399/* Parse the "error-limit" server keyword */
400static int srv_parse_error_limit(char **args, int *cur_arg,
401 struct proxy *curproxy, struct server *newsrv, char **err)
402{
403 if (!*args[*cur_arg + 1]) {
404 memprintf(err, "'%s' expects an integer argument.",
405 args[*cur_arg]);
406 return ERR_ALERT | ERR_FATAL;
407 }
408
409 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
410
411 if (newsrv->consecutive_errors_limit <= 0) {
412 memprintf(err, "%s has to be > 0.",
413 args[*cur_arg]);
414 return ERR_ALERT | ERR_FATAL;
415 }
416
417 return 0;
418}
419
420/* Parse the "init-addr" server keyword */
421static int srv_parse_init_addr(char **args, int *cur_arg,
422 struct proxy *curproxy, struct server *newsrv, char **err)
423{
424 char *p, *end;
425 int done;
426 struct sockaddr_storage sa;
427
428 newsrv->init_addr_methods = 0;
429 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
430
431 for (p = args[*cur_arg + 1]; *p; p = end) {
432 /* cut on next comma */
433 for (end = p; *end && *end != ','; end++);
434 if (*end)
435 *(end++) = 0;
436
437 memset(&sa, 0, sizeof(sa));
438 if (strcmp(p, "libc") == 0) {
439 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
440 }
441 else if (strcmp(p, "last") == 0) {
442 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
443 }
444 else if (strcmp(p, "none") == 0) {
445 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
446 }
447 else if (str2ip2(p, &sa, 0)) {
448 if (is_addr(&newsrv->init_addr)) {
449 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
450 args[*cur_arg], p);
451 return ERR_ALERT | ERR_FATAL;
452 }
453 newsrv->init_addr = sa;
454 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
455 }
456 else {
457 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
458 args[*cur_arg], p);
459 return ERR_ALERT | ERR_FATAL;
460 }
461 if (!done) {
462 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
463 args[*cur_arg], p);
464 return ERR_ALERT | ERR_FATAL;
465 }
466 }
467
468 return 0;
469}
470
471/* Parse the "log-proto" server keyword */
472static int srv_parse_log_proto(char **args, int *cur_arg,
473 struct proxy *curproxy, struct server *newsrv, char **err)
474{
475 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
476 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
477 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
478 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
479 else {
480 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
481 args[*cur_arg], args[*cur_arg + 1]);
482 return ERR_ALERT | ERR_FATAL;
483 }
484
485 return 0;
486}
487
488/* Parse the "maxconn" server keyword */
489static int srv_parse_maxconn(char **args, int *cur_arg,
490 struct proxy *curproxy, struct server *newsrv, char **err)
491{
492 newsrv->maxconn = atol(args[*cur_arg + 1]);
493 return 0;
494}
495
496/* Parse the "maxqueue" server keyword */
497static int srv_parse_maxqueue(char **args, int *cur_arg,
498 struct proxy *curproxy, struct server *newsrv, char **err)
499{
500 newsrv->maxqueue = atol(args[*cur_arg + 1]);
501 return 0;
502}
503
504/* Parse the "minconn" server keyword */
505static int srv_parse_minconn(char **args, int *cur_arg,
506 struct proxy *curproxy, struct server *newsrv, char **err)
507{
508 newsrv->minconn = atol(args[*cur_arg + 1]);
509 return 0;
510}
511
Willy Tarreau9c538e02019-01-23 10:21:49 +0100512static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
513{
514 char *arg;
515
516 arg = args[*cur_arg + 1];
517 if (!*arg) {
518 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
519 return ERR_ALERT | ERR_FATAL;
520 }
521 newsrv->max_reuse = atoi(arg);
522
523 return 0;
524}
525
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100526static 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 +0100527{
528 const char *res;
529 char *arg;
530 unsigned int time;
531
532 arg = args[*cur_arg + 1];
533 if (!*arg) {
534 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
535 return ERR_ALERT | ERR_FATAL;
536 }
537 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200538 if (res == PARSE_TIME_OVER) {
539 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
540 args[*cur_arg+1], args[*cur_arg]);
541 return ERR_ALERT | ERR_FATAL;
542 }
543 else if (res == PARSE_TIME_UNDER) {
544 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
545 args[*cur_arg+1], args[*cur_arg]);
546 return ERR_ALERT | ERR_FATAL;
547 }
548 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100549 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
550 *res, args[*cur_arg]);
551 return ERR_ALERT | ERR_FATAL;
552 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100553 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100554
555 return 0;
556}
557
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200558static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
559{
560 char *arg;
561
562 arg = args[*cur_arg + 1];
563 if (!*arg) {
564 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
565 return ERR_ALERT | ERR_FATAL;
566 }
567
568 newsrv->low_idle_conns = atoi(arg);
569 return 0;
570}
571
Olivier Houchard006e3102018-12-10 18:30:32 +0100572static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
573{
574 char *arg;
575
576 arg = args[*cur_arg + 1];
577 if (!*arg) {
578 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
579 return ERR_ALERT | ERR_FATAL;
580 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100581
Olivier Houchard006e3102018-12-10 18:30:32 +0100582 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100583 if ((int)newsrv->max_idle_conns < -1) {
584 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
585 return ERR_ALERT | ERR_FATAL;
586 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100587
588 return 0;
589}
590
Willy Tarreaudff55432012-10-10 17:51:05 +0200591/* parse the "id" server keyword */
592static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
593{
594 struct eb32_node *node;
595
596 if (!*args[*cur_arg + 1]) {
597 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
598 return ERR_ALERT | ERR_FATAL;
599 }
600
601 newsrv->puid = atol(args[*cur_arg + 1]);
602 newsrv->conf.id.key = newsrv->puid;
603
604 if (newsrv->puid <= 0) {
605 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
606 return ERR_ALERT | ERR_FATAL;
607 }
608
609 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
610 if (node) {
611 struct server *target = container_of(node, struct server, conf.id);
612 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
613 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
614 target->id);
615 return ERR_ALERT | ERR_FATAL;
616 }
617
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200618 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200619 return 0;
620}
621
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100622/* Parse the "namespace" server keyword */
623static int srv_parse_namespace(char **args, int *cur_arg,
624 struct proxy *curproxy, struct server *newsrv, char **err)
625{
Willy Tarreaue5733232019-05-22 19:24:06 +0200626#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100627 char *arg;
628
629 arg = args[*cur_arg + 1];
630 if (!*arg) {
631 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
632 return ERR_ALERT | ERR_FATAL;
633 }
634
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100635 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100636 /* Use the namespace associated with the connection (if present). */
637 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
638 return 0;
639 }
640
641 /*
642 * As this parser may be called several times for the same 'default-server'
643 * object, or for a new 'server' instance deriving from a 'default-server'
644 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
645 */
646 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
647
648 newsrv->netns = netns_store_lookup(arg, strlen(arg));
649 if (!newsrv->netns)
650 newsrv->netns = netns_store_insert(arg);
651
652 if (!newsrv->netns) {
653 memprintf(err, "Cannot open namespace '%s'", arg);
654 return ERR_ALERT | ERR_FATAL;
655 }
656
657 return 0;
658#else
659 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
660 return ERR_ALERT | ERR_FATAL;
661#endif
662}
663
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100664/* Parse the "no-backup" server keyword */
665static int srv_parse_no_backup(char **args, int *cur_arg,
666 struct proxy *curproxy, struct server *newsrv, char **err)
667{
668 newsrv->flags &= ~SRV_F_BACKUP;
669 return 0;
670}
671
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100672
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100673/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200674static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100675{
676 srv->pp_opts &= ~flags;
677 return 0;
678}
679
680/* Parse the "no-send-proxy" server keyword */
681static int srv_parse_no_send_proxy(char **args, int *cur_arg,
682 struct proxy *curproxy, struct server *newsrv, char **err)
683{
684 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
685}
686
687/* Parse the "no-send-proxy-v2" server keyword */
688static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
689 struct proxy *curproxy, struct server *newsrv, char **err)
690{
691 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
692}
693
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200694/* Parse the "no-tfo" server keyword */
695static int srv_parse_no_tfo(char **args, int *cur_arg,
696 struct proxy *curproxy, struct server *newsrv, char **err)
697{
698 newsrv->flags &= ~SRV_F_FASTOPEN;
699 return 0;
700}
701
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100702/* Parse the "non-stick" server keyword */
703static int srv_parse_non_stick(char **args, int *cur_arg,
704 struct proxy *curproxy, struct server *newsrv, char **err)
705{
706 newsrv->flags |= SRV_F_NON_STICK;
707 return 0;
708}
709
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100710/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200711static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100712{
713 srv->pp_opts |= flags;
714 return 0;
715}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200716/* parse the "proto" server keyword */
717static int srv_parse_proto(char **args, int *cur_arg,
718 struct proxy *px, struct server *newsrv, char **err)
719{
720 struct ist proto;
721
722 if (!*args[*cur_arg + 1]) {
723 memprintf(err, "'%s' : missing value", args[*cur_arg]);
724 return ERR_ALERT | ERR_FATAL;
725 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100726 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200727 newsrv->mux_proto = get_mux_proto(proto);
728 if (!newsrv->mux_proto) {
729 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
730 return ERR_ALERT | ERR_FATAL;
731 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200732 return 0;
733}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100734
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100735/* parse the "proxy-v2-options" */
736static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
737 struct proxy *px, struct server *newsrv, char **err)
738{
739 char *p, *n;
740 for (p = args[*cur_arg+1]; p; p = n) {
741 n = strchr(p, ',');
742 if (n)
743 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100744 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100745 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100746 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100747 newsrv->pp_opts |= SRV_PP_V2_SSL;
748 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100749 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100750 newsrv->pp_opts |= SRV_PP_V2_SSL;
751 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100752 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100753 newsrv->pp_opts |= SRV_PP_V2_SSL;
754 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100755 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100756 newsrv->pp_opts |= SRV_PP_V2_SSL;
757 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100758 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100759 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100760 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100761 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100762 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100763 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100764 } else
765 goto fail;
766 }
767 return 0;
768 fail:
769 if (err)
770 memprintf(err, "'%s' : proxy v2 option not implemented", p);
771 return ERR_ALERT | ERR_FATAL;
772}
773
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100774/* Parse the "observe" server keyword */
775static int srv_parse_observe(char **args, int *cur_arg,
776 struct proxy *curproxy, struct server *newsrv, char **err)
777{
778 char *arg;
779
780 arg = args[*cur_arg + 1];
781 if (!*arg) {
782 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
783 return ERR_ALERT | ERR_FATAL;
784 }
785
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100786 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100787 newsrv->observe = HANA_OBS_NONE;
788 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100789 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100790 newsrv->observe = HANA_OBS_LAYER4;
791 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100792 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100793 if (curproxy->mode != PR_MODE_HTTP) {
794 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
795 return ERR_ALERT;
796 }
797 newsrv->observe = HANA_OBS_LAYER7;
798 }
799 else {
800 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
801 "but got '%s'\n", args[*cur_arg], arg);
802 return ERR_ALERT | ERR_FATAL;
803 }
804
805 return 0;
806}
807
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100808/* Parse the "on-error" server keyword */
809static int srv_parse_on_error(char **args, int *cur_arg,
810 struct proxy *curproxy, struct server *newsrv, char **err)
811{
812 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
813 newsrv->onerror = HANA_ONERR_FASTINTER;
814 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
815 newsrv->onerror = HANA_ONERR_FAILCHK;
816 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
817 newsrv->onerror = HANA_ONERR_SUDDTH;
818 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
819 newsrv->onerror = HANA_ONERR_MARKDWN;
820 else {
821 memprintf(err, "'%s' expects one of 'fastinter', "
822 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
823 args[*cur_arg], args[*cur_arg + 1]);
824 return ERR_ALERT | ERR_FATAL;
825 }
826
827 return 0;
828}
829
830/* Parse the "on-marked-down" server keyword */
831static int srv_parse_on_marked_down(char **args, int *cur_arg,
832 struct proxy *curproxy, struct server *newsrv, char **err)
833{
834 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
835 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
836 else {
837 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
838 args[*cur_arg], args[*cur_arg + 1]);
839 return ERR_ALERT | ERR_FATAL;
840 }
841
842 return 0;
843}
844
845/* Parse the "on-marked-up" server keyword */
846static int srv_parse_on_marked_up(char **args, int *cur_arg,
847 struct proxy *curproxy, struct server *newsrv, char **err)
848{
849 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
850 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
851 else {
852 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
853 args[*cur_arg], args[*cur_arg + 1]);
854 return ERR_ALERT | ERR_FATAL;
855 }
856
857 return 0;
858}
859
Frédéric Lécaille16186232017-03-14 16:42:49 +0100860/* Parse the "redir" server keyword */
861static int srv_parse_redir(char **args, int *cur_arg,
862 struct proxy *curproxy, struct server *newsrv, char **err)
863{
864 char *arg;
865
866 arg = args[*cur_arg + 1];
867 if (!*arg) {
868 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
869 return ERR_ALERT | ERR_FATAL;
870 }
871
872 free(newsrv->rdr_pfx);
873 newsrv->rdr_pfx = strdup(arg);
874 newsrv->rdr_len = strlen(arg);
875
876 return 0;
877}
878
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100879/* Parse the "resolvers" server keyword */
880static int srv_parse_resolvers(char **args, int *cur_arg,
881 struct proxy *curproxy, struct server *newsrv, char **err)
882{
883 free(newsrv->resolvers_id);
884 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
885 return 0;
886}
887
888/* Parse the "resolve-net" server keyword */
889static int srv_parse_resolve_net(char **args, int *cur_arg,
890 struct proxy *curproxy, struct server *newsrv, char **err)
891{
892 char *p, *e;
893 unsigned char mask;
894 struct resolv_options *opt;
895
896 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
897 memprintf(err, "'%s' expects a list of networks.",
898 args[*cur_arg]);
899 return ERR_ALERT | ERR_FATAL;
900 }
901
902 opt = &newsrv->resolv_opts;
903
904 /* Split arguments by comma, and convert it from ipv4 or ipv6
905 * string network in in_addr or in6_addr.
906 */
907 p = args[*cur_arg + 1];
908 e = p;
909 while (*p != '\0') {
910 /* If no room available, return error. */
911 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
912 memprintf(err, "'%s' exceed %d networks.",
913 args[*cur_arg], SRV_MAX_PREF_NET);
914 return ERR_ALERT | ERR_FATAL;
915 }
916 /* look for end or comma. */
917 while (*e != ',' && *e != '\0')
918 e++;
919 if (*e == ',') {
920 *e = '\0';
921 e++;
922 }
923 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
924 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
925 /* Try to convert input string from ipv4 or ipv6 network. */
926 opt->pref_net[opt->pref_net_nb].family = AF_INET;
927 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
928 &mask)) {
929 /* Try to convert input string from ipv6 network. */
930 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
931 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
932 } else {
933 /* All network conversions fail, return error. */
934 memprintf(err, "'%s' invalid network '%s'.",
935 args[*cur_arg], p);
936 return ERR_ALERT | ERR_FATAL;
937 }
938 opt->pref_net_nb++;
939 p = e;
940 }
941
942 return 0;
943}
944
945/* Parse the "resolve-opts" server keyword */
946static int srv_parse_resolve_opts(char **args, int *cur_arg,
947 struct proxy *curproxy, struct server *newsrv, char **err)
948{
949 char *p, *end;
950
951 for (p = args[*cur_arg + 1]; *p; p = end) {
952 /* cut on next comma */
953 for (end = p; *end && *end != ','; end++);
954 if (*end)
955 *(end++) = 0;
956
957 if (strcmp(p, "allow-dup-ip") == 0) {
958 newsrv->resolv_opts.accept_duplicate_ip = 1;
959 }
960 else if (strcmp(p, "ignore-weight") == 0) {
961 newsrv->resolv_opts.ignore_weight = 1;
962 }
963 else if (strcmp(p, "prevent-dup-ip") == 0) {
964 newsrv->resolv_opts.accept_duplicate_ip = 0;
965 }
966 else {
967 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
968 args[*cur_arg], p);
969 return ERR_ALERT | ERR_FATAL;
970 }
971 }
972
973 return 0;
974}
975
976/* Parse the "resolve-prefer" server keyword */
977static int srv_parse_resolve_prefer(char **args, int *cur_arg,
978 struct proxy *curproxy, struct server *newsrv, char **err)
979{
980 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
981 newsrv->resolv_opts.family_prio = AF_INET;
982 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
983 newsrv->resolv_opts.family_prio = AF_INET6;
984 else {
985 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
986 args[*cur_arg]);
987 return ERR_ALERT | ERR_FATAL;
988 }
989
990 return 0;
991}
992
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100993/* Parse the "send-proxy" server keyword */
994static int srv_parse_send_proxy(char **args, int *cur_arg,
995 struct proxy *curproxy, struct server *newsrv, char **err)
996{
997 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
998}
999
1000/* Parse the "send-proxy-v2" server keyword */
1001static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1002 struct proxy *curproxy, struct server *newsrv, char **err)
1003{
1004 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1005}
1006
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001007/* Parse the "slowstart" server keyword */
1008static int srv_parse_slowstart(char **args, int *cur_arg,
1009 struct proxy *curproxy, struct server *newsrv, char **err)
1010{
1011 /* slowstart is stored in seconds */
1012 unsigned int val;
1013 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1014
1015 if (time_err == PARSE_TIME_OVER) {
1016 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1017 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1018 return ERR_ALERT | ERR_FATAL;
1019 }
1020 else if (time_err == PARSE_TIME_UNDER) {
1021 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1022 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1023 return ERR_ALERT | ERR_FATAL;
1024 }
1025 else if (time_err) {
1026 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1027 *time_err, newsrv->id);
1028 return ERR_ALERT | ERR_FATAL;
1029 }
1030 newsrv->slowstart = (val + 999) / 1000;
1031
1032 return 0;
1033}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001034
1035/* Parse the "source" server keyword */
1036static int srv_parse_source(char **args, int *cur_arg,
1037 struct proxy *curproxy, struct server *newsrv, char **err)
1038{
1039 char *errmsg;
1040 int port_low, port_high;
1041 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001042
1043 errmsg = NULL;
1044
1045 if (!*args[*cur_arg + 1]) {
1046 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1047 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1048 goto err;
1049 }
1050
1051 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001052 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1053 &errmsg, NULL, NULL,
1054 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 +01001055 if (!sk) {
1056 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1057 goto err;
1058 }
1059
Frédéric Lécailledba97072017-03-17 15:33:50 +01001060 newsrv->conn_src.opts |= CO_SRC_BIND;
1061 newsrv->conn_src.source_addr = *sk;
1062
1063 if (port_low != port_high) {
1064 int i;
1065
Frédéric Lécailledba97072017-03-17 15:33:50 +01001066 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001067 if (!newsrv->conn_src.sport_range) {
1068 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1069 goto err;
1070 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001071 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1072 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1073 }
1074
1075 *cur_arg += 2;
1076 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001077 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001078#if defined(CONFIG_HAP_TRANSPARENT)
1079 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001080 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1081 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001082 goto err;
1083 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001084 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001085 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1086 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1087 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001088 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001089 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1090 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1091 }
1092 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1093 char *name, *end;
1094
1095 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001096 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001097 name++;
1098
1099 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001100 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001101 end++;
1102
1103 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1104 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1105 free(newsrv->conn_src.bind_hdr_name);
1106 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001107 if (!newsrv->conn_src.bind_hdr_name) {
1108 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1109 goto err;
1110 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001111 newsrv->conn_src.bind_hdr_len = end - name;
1112 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1113 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1114 newsrv->conn_src.bind_hdr_occ = -1;
1115
1116 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001117 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001118 end++;
1119 if (*end == ',') {
1120 end++;
1121 name = end;
1122 if (*end == '-')
1123 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001124 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001125 end++;
1126 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1127 }
1128
1129 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1131 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001132 goto err;
1133 }
1134 }
1135 else {
1136 struct sockaddr_storage *sk;
1137 int port1, port2;
1138
1139 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001140 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1141 &errmsg, NULL, NULL,
1142 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001143 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001145 goto err;
1146 }
1147
Frédéric Lécailledba97072017-03-17 15:33:50 +01001148 newsrv->conn_src.tproxy_addr = *sk;
1149 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1150 }
1151 global.last_checks |= LSTCHK_NETADM;
1152 *cur_arg += 2;
1153 continue;
1154#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 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 +01001156 goto err;
1157#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1158 } /* "usesrc" */
1159
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001160 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001161#ifdef SO_BINDTODEVICE
1162 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001163 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001164 goto err;
1165 }
1166 free(newsrv->conn_src.iface_name);
1167 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1168 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1169 global.last_checks |= LSTCHK_NETADM;
1170#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001171 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001172 goto err;
1173#endif
1174 *cur_arg += 2;
1175 continue;
1176 }
1177 /* this keyword in not an option of "source" */
1178 break;
1179 } /* while */
1180
1181 return 0;
1182
1183 err:
1184 free(errmsg);
1185 return ERR_ALERT | ERR_FATAL;
1186}
1187
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001188/* Parse the "stick" server keyword */
1189static int srv_parse_stick(char **args, int *cur_arg,
1190 struct proxy *curproxy, struct server *newsrv, char **err)
1191{
1192 newsrv->flags &= ~SRV_F_NON_STICK;
1193 return 0;
1194}
1195
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001196/* Parse the "track" server keyword */
1197static int srv_parse_track(char **args, int *cur_arg,
1198 struct proxy *curproxy, struct server *newsrv, char **err)
1199{
1200 char *arg;
1201
1202 arg = args[*cur_arg + 1];
1203 if (!*arg) {
1204 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1205 return ERR_ALERT | ERR_FATAL;
1206 }
1207
1208 free(newsrv->trackit);
1209 newsrv->trackit = strdup(arg);
1210
1211 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001212}
1213
1214/* Parse the "socks4" server keyword */
1215static int srv_parse_socks4(char **args, int *cur_arg,
1216 struct proxy *curproxy, struct server *newsrv, char **err)
1217{
1218 char *errmsg;
1219 int port_low, port_high;
1220 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001221
1222 errmsg = NULL;
1223
1224 if (!*args[*cur_arg + 1]) {
1225 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1226 goto err;
1227 }
1228
1229 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001230 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1231 &errmsg, NULL, NULL,
1232 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001233 if (!sk) {
1234 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1235 goto err;
1236 }
1237
Alexander Liu2a54bb72019-05-22 19:44:48 +08001238 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1239 newsrv->socks4_addr = *sk;
1240
Alexander Liu2a54bb72019-05-22 19:44:48 +08001241 return 0;
1242
1243 err:
1244 free(errmsg);
1245 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001246}
1247
Frédéric Lécailledba97072017-03-17 15:33:50 +01001248
Willy Tarreau034c88c2017-01-23 23:36:45 +01001249/* parse the "tfo" server keyword */
1250static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1251{
1252 newsrv->flags |= SRV_F_FASTOPEN;
1253 return 0;
1254}
1255
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001256/* parse the "usesrc" server keyword */
1257static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1258{
1259 memprintf(err, "'%s' only allowed after a '%s' statement.",
1260 "usesrc", "source");
1261 return ERR_ALERT | ERR_FATAL;
1262}
1263
1264/* parse the "weight" server keyword */
1265static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1266{
1267 int w;
1268
1269 w = atol(args[*cur_arg + 1]);
1270 if (w < 0 || w > SRV_UWGHT_MAX) {
1271 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1272 newsrv->id, SRV_UWGHT_MAX, w);
1273 return ERR_ALERT | ERR_FATAL;
1274 }
1275 newsrv->uweight = newsrv->iweight = w;
1276
1277 return 0;
1278}
1279
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001280/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001281 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001282 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001283 *
1284 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001285 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001286void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001287{
Willy Tarreau751153e2021-02-17 13:33:24 +01001288 struct stream *stream;
1289 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001290 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001291
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001292 for (thr = 0; thr < global.nbthread; thr++)
1293 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1294 if (stream->srv_conn == srv)
1295 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001296}
1297
1298/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001299 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001300 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001301 *
1302 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001303 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001304void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001305{
1306 struct server *srv;
1307
1308 for (srv = px->srv; srv != NULL; srv = srv->next)
1309 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001310 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001311}
1312
Willy Tarreaubda92272014-05-20 21:55:30 +02001313/* Appends some information to a message string related to a server going UP or
1314 * DOWN. If both <forced> and <reason> are null and the server tracks another
1315 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001316 * If <check> is non-null, an entire string describing the check result will be
1317 * appended after a comma and a space (eg: to report some information from the
1318 * check that changed the state). In the other case, the string will be built
1319 * using the check results stored into the struct server if present.
1320 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001321 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001322 *
1323 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001324 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001325void srv_append_status(struct buffer *msg, struct server *s,
1326 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001327{
Emeric Brun5a133512017-10-19 14:42:30 +02001328 short status = s->op_st_chg.status;
1329 short code = s->op_st_chg.code;
1330 long duration = s->op_st_chg.duration;
1331 char *desc = s->op_st_chg.reason;
1332
1333 if (check) {
1334 status = check->status;
1335 code = check->code;
1336 duration = check->duration;
1337 desc = check->desc;
1338 }
1339
1340 if (status != -1) {
1341 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1342
1343 if (status >= HCHK_STATUS_L57DATA)
1344 chunk_appendf(msg, ", code: %d", code);
1345
1346 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001347 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001348
1349 chunk_appendf(msg, ", info: \"");
1350
1351 chunk_initlen(&src, desc, 0, strlen(desc));
1352 chunk_asciiencode(msg, &src, '"');
1353
1354 chunk_appendf(msg, "\"");
1355 }
1356
1357 if (duration >= 0)
1358 chunk_appendf(msg, ", check duration: %ldms", duration);
1359 }
1360 else if (desc && *desc) {
1361 chunk_appendf(msg, ", %s", desc);
1362 }
1363 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001364 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001365 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001366
1367 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001368 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001369 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1370 " %d sessions active, %d requeued, %d remaining in queue",
1371 s->proxy->srv_act, s->proxy->srv_bck,
1372 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001373 s->cur_sess, xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001374 else
1375 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1376 " %d sessions requeued, %d total in queue",
1377 s->proxy->srv_act, s->proxy->srv_bck,
1378 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001379 xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001380 }
1381}
1382
Emeric Brun5a133512017-10-19 14:42:30 +02001383/* Marks server <s> down, regardless of its checks' statuses. The server is
1384 * registered in a list to postpone the counting of the remaining servers on
1385 * the proxy and transfers queued streams whenever possible to other servers at
1386 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1387 * non-null as the reason for going down or the available data from the check
1388 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001389 *
1390 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001391 */
Emeric Brun5a133512017-10-19 14:42:30 +02001392void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001393{
1394 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001395
Emeric Brun64cc49c2017-10-03 14:46:45 +02001396 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001397 return;
1398
Emeric Brun52a91d32017-08-31 14:41:55 +02001399 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001400 *s->op_st_chg.reason = 0;
1401 s->op_st_chg.status = -1;
1402 if (reason) {
1403 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1404 }
1405 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001406 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001407 s->op_st_chg.code = check->code;
1408 s->op_st_chg.status = check->status;
1409 s->op_st_chg.duration = check->duration;
1410 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001411
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001412 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001413 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001414
Emeric Brun9f0b4582017-10-23 14:39:51 +02001415 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001416 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001417 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001418 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001419 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001420}
1421
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001422/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001423 * in maintenance. The server is registered in a list to postpone the counting
1424 * of the remaining servers on the proxy and tries to grab requests from the
1425 * proxy at a sync point. Maintenance servers are ignored. It stores the
1426 * <reason> if non-null as the reason for going down or the available data
1427 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001428 *
1429 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001430 */
Emeric Brun5a133512017-10-19 14:42:30 +02001431void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001432{
1433 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001434
Emeric Brun64cc49c2017-10-03 14:46:45 +02001435 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001436 return;
1437
Emeric Brun52a91d32017-08-31 14:41:55 +02001438 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001439 return;
1440
Emeric Brun52a91d32017-08-31 14:41:55 +02001441 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001442 *s->op_st_chg.reason = 0;
1443 s->op_st_chg.status = -1;
1444 if (reason) {
1445 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1446 }
1447 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001448 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001449 s->op_st_chg.code = check->code;
1450 s->op_st_chg.status = check->status;
1451 s->op_st_chg.duration = check->duration;
1452 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001453
Emeric Brun64cc49c2017-10-03 14:46:45 +02001454 if (s->slowstart <= 0)
1455 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001456
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001457 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001458 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001459
Emeric Brun9f0b4582017-10-23 14:39:51 +02001460 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001461 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001462 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001463 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001464 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001465}
1466
Willy Tarreau8eb77842014-05-21 13:54:57 +02001467/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001468 * isn't in maintenance. The server is registered in a list to postpone the
1469 * counting of the remaining servers on the proxy and tries to grab requests
1470 * from the proxy. Maintenance servers are ignored. It stores the
1471 * <reason> if non-null as the reason for going down or the available data
1472 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001473 * up. Note that it makes use of the trash to build the log strings, so <reason>
1474 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001475 *
1476 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001477 */
Emeric Brun5a133512017-10-19 14:42:30 +02001478void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001479{
1480 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001481
Emeric Brun64cc49c2017-10-03 14:46:45 +02001482 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001483 return;
1484
Emeric Brun52a91d32017-08-31 14:41:55 +02001485 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001486 return;
1487
Emeric Brun52a91d32017-08-31 14:41:55 +02001488 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001489 *s->op_st_chg.reason = 0;
1490 s->op_st_chg.status = -1;
1491 if (reason) {
1492 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1493 }
1494 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001495 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001496 s->op_st_chg.code = check->code;
1497 s->op_st_chg.status = check->status;
1498 s->op_st_chg.duration = check->duration;
1499 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001500
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001501 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001502 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001503
Emeric Brun9f0b4582017-10-23 14:39:51 +02001504 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001505 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001506 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001507 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001508 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001509}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001510
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001511/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1512 * enforce either maint mode or drain mode. It is not allowed to set more than
1513 * one flag at once. The equivalent "inherited" flag is propagated to all
1514 * tracking servers. Maintenance mode disables health checks (but not agent
1515 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001516 * is done. If <cause> is non-null, it will be displayed at the end of the log
1517 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001518 *
1519 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001520 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001521void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001522{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001523 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001524
1525 if (!mode)
1526 return;
1527
1528 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001529 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001530 return;
1531
Emeric Brun52a91d32017-08-31 14:41:55 +02001532 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001533 if (cause)
1534 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1535
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001536 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001537 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001538
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001539 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001540 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1541 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001542 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001543
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001544 /* compute the inherited flag to propagate */
1545 if (mode & SRV_ADMF_MAINT)
1546 mode = SRV_ADMF_IMAINT;
1547 else if (mode & SRV_ADMF_DRAIN)
1548 mode = SRV_ADMF_IDRAIN;
1549
Emeric Brun9f0b4582017-10-23 14:39:51 +02001550 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001551 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001552 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001553 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001554 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001555}
1556
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001557/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1558 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1559 * than one flag at once. The equivalent "inherited" flag is propagated to all
1560 * tracking servers. Leaving maintenance mode re-enables health checks. When
1561 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001562 *
1563 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001564 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001565void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001566{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001567 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001568
1569 if (!mode)
1570 return;
1571
1572 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001573 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001574 return;
1575
Emeric Brun52a91d32017-08-31 14:41:55 +02001576 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001577
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001578 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001579 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001580
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001581 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001582 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1583 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001584 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001585
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001586 if (mode & SRV_ADMF_MAINT)
1587 mode = SRV_ADMF_IMAINT;
1588 else if (mode & SRV_ADMF_DRAIN)
1589 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001590
Emeric Brun9f0b4582017-10-23 14:39:51 +02001591 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001592 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001593 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001594 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001595 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001596}
1597
Willy Tarreau757478e2016-11-03 19:22:19 +01001598/* principle: propagate maint and drain to tracking servers. This is useful
1599 * upon startup so that inherited states are correct.
1600 */
1601static void srv_propagate_admin_state(struct server *srv)
1602{
1603 struct server *srv2;
1604
1605 if (!srv->trackers)
1606 return;
1607
1608 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001609 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001610 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001611 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001612
Emeric Brun52a91d32017-08-31 14:41:55 +02001613 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001614 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001615 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001616 }
1617}
1618
1619/* Compute and propagate the admin states for all servers in proxy <px>.
1620 * Only servers *not* tracking another one are considered, because other
1621 * ones will be handled when the server they track is visited.
1622 */
1623void srv_compute_all_admin_states(struct proxy *px)
1624{
1625 struct server *srv;
1626
1627 for (srv = px->srv; srv; srv = srv->next) {
1628 if (srv->track)
1629 continue;
1630 srv_propagate_admin_state(srv);
1631 }
1632}
1633
Willy Tarreaudff55432012-10-10 17:51:05 +02001634/* Note: must not be declared <const> as its list will be overwritten.
1635 * Please take care of keeping this list alphabetically sorted, doing so helps
1636 * all code contributors.
1637 * Optional keywords are also declared with a NULL ->parse() function so that
1638 * the config parser can report an appropriate error when a known keyword was
1639 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001640 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001641 */
1642static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001643 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001644 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001645 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1646 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001647 { "error-limit", srv_parse_error_limit, 1, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001648 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001649 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1650 { "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 +01001651 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1652 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001653 { "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 +01001654 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001655 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001656 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1657 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1658 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1659 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001660 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001661 { "observe", srv_parse_observe, 1, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
1662 { "on-error", srv_parse_on_error, 1, 1, 1 }, /* Configure the action on check failure */
1663 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 1 }, /* Configure the action when a server is marked down */
1664 { "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 +01001665 { "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 */
1666 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1667 { "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 +01001668 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001669 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001670 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001671 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001672 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001673 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001674 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001675 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1676 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02001677 { "slowstart", srv_parse_slowstart, 1, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001678 { "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 +01001679 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001680 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02001681 { "track", srv_parse_track, 1, 1, 1 }, /* Set the current state of the server, tracking another one */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001682 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001683 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1684 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001685 { NULL, NULL, 0 },
1686}};
1687
Willy Tarreau0108d902018-11-25 19:14:37 +01001688INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001689
Willy Tarreau004e0452013-11-21 11:22:01 +01001690/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001691 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001692 * state is automatically disabled if the time is elapsed. If <must_update> is
1693 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001694 *
1695 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001696 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001697void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001698{
1699 struct proxy *px = sv->proxy;
1700 unsigned w;
1701
1702 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1703 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001704 if (sv->next_state == SRV_ST_STARTING)
1705 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001706 }
1707
1708 /* We must take care of not pushing the server to full throttle during slow starts.
1709 * It must also start immediately, at least at the minimal step when leaving maintenance.
1710 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001711 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001712 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1713 else
1714 w = px->lbprm.wdiv;
1715
Emeric Brun52a91d32017-08-31 14:41:55 +02001716 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001717
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001718 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001719 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001720 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001721}
1722
Willy Tarreaubaaee002006-06-26 02:48:02 +02001723/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001724 * Parses weight_str and configures sv accordingly.
1725 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001726 *
1727 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001728 */
1729const char *server_parse_weight_change_request(struct server *sv,
1730 const char *weight_str)
1731{
1732 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001733 long int w;
1734 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001735
1736 px = sv->proxy;
1737
1738 /* if the weight is terminated with '%', it is set relative to
1739 * the initial weight, otherwise it is absolute.
1740 */
1741 if (!*weight_str)
1742 return "Require <weight> or <weight%>.\n";
1743
Simon Hormanb796afa2013-02-12 10:45:53 +09001744 w = strtol(weight_str, &end, 10);
1745 if (end == weight_str)
1746 return "Empty weight string empty or preceded by garbage";
1747 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001748 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001749 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001750 /* Avoid integer overflow */
1751 if (w > 25600)
1752 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001753 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001754 if (w > 256)
1755 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001756 }
1757 else if (w < 0 || w > 256)
1758 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001759 else if (end[0] != '\0')
1760 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001761
1762 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1763 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1764
1765 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001766 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001767
1768 return NULL;
1769}
1770
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001771/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001772 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1773 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001774 * Returns:
1775 * - error string on error
1776 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001777 *
1778 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001779 */
1780const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001781 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001782{
1783 unsigned char ip[INET6_ADDRSTRLEN];
1784
1785 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001786 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001787 return NULL;
1788 }
1789 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001790 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001791 return NULL;
1792 }
1793
1794 return "Could not understand IP address format.\n";
1795}
1796
Willy Tarreau46b7f532018-08-21 11:54:26 +02001797/*
1798 * Must be called with the server lock held.
1799 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001800const char *server_parse_maxconn_change_request(struct server *sv,
1801 const char *maxconn_str)
1802{
1803 long int v;
1804 char *end;
1805
1806 if (!*maxconn_str)
1807 return "Require <maxconn>.\n";
1808
1809 v = strtol(maxconn_str, &end, 10);
1810 if (end == maxconn_str)
1811 return "maxconn string empty or preceded by garbage";
1812 else if (end[0] != '\0')
1813 return "Trailing garbage in maxconn string";
1814
1815 if (sv->maxconn == sv->minconn) { // static maxconn
1816 sv->maxconn = sv->minconn = v;
1817 } else { // dynamic maxconn
1818 sv->maxconn = v;
1819 }
1820
1821 if (may_dequeue_tasks(sv, sv->proxy))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001822 process_srv_queue(sv);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001823
1824 return NULL;
1825}
1826
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001827static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1828 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001829{
1830 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001831 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001832 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001833 NULL,
1834 };
1835
1836 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001837 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001838
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001839 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001840}
1841
1842static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1843{
1844 struct sample_expr *expr;
1845
1846 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 +01001847 if (!expr) {
1848 memprintf(err, "error detected while parsing sni expression : %s", *err);
1849 return ERR_ALERT | ERR_FATAL;
1850 }
1851
1852 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1853 memprintf(err, "error detected while parsing sni expression : "
1854 " fetch method '%s' extracts information from '%s', "
Amaury Denoyellec008a632021-05-28 11:01:22 +02001855 "none of which is available here.",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001856 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001857 return ERR_ALERT | ERR_FATAL;
1858 }
1859
1860 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1861 release_sample_expr(newsrv->ssl_ctx.sni);
1862 newsrv->ssl_ctx.sni = expr;
1863
1864 return 0;
1865}
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001866
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001867static 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 +01001868{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001869 char *msg = "error encountered while processing ";
1870 char *quote = "'";
1871 char *token = args[cur_arg];
1872
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001873 if (err && *err) {
1874 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001875 msg = *err;
1876 quote = "";
1877 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001878 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001879
1880 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001881 ha_warning("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001882 else
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02001883 ha_alert("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001884}
1885
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001886static void srv_conn_src_sport_range_cpy(struct server *srv,
1887 struct server *src)
1888{
1889 int range_sz;
1890
1891 range_sz = src->conn_src.sport_range->size;
1892 if (range_sz > 0) {
1893 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1894 if (srv->conn_src.sport_range != NULL) {
1895 int i;
1896
1897 for (i = 0; i < range_sz; i++) {
1898 srv->conn_src.sport_range->ports[i] =
1899 src->conn_src.sport_range->ports[i];
1900 }
1901 }
1902 }
1903}
1904
1905/*
1906 * Copy <src> server connection source settings to <srv> server everything needed.
1907 */
1908static void srv_conn_src_cpy(struct server *srv, struct server *src)
1909{
1910 srv->conn_src.opts = src->conn_src.opts;
1911 srv->conn_src.source_addr = src->conn_src.source_addr;
1912
1913 /* Source port range copy. */
1914 if (src->conn_src.sport_range != NULL)
1915 srv_conn_src_sport_range_cpy(srv, src);
1916
1917#ifdef CONFIG_HAP_TRANSPARENT
1918 if (src->conn_src.bind_hdr_name != NULL) {
1919 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1920 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1921 }
1922 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1923 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1924#endif
1925 if (src->conn_src.iface_name != NULL)
1926 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1927}
1928
1929/*
1930 * Copy <src> server SSL settings to <srv> server allocating
1931 * everything needed.
1932 */
1933#if defined(USE_OPENSSL)
1934static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1935{
1936 if (src->ssl_ctx.ca_file != NULL)
1937 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1938 if (src->ssl_ctx.crl_file != NULL)
1939 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001940
1941 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1942
Remi Tricot-Le Breton0498fa42021-07-13 18:28:22 +02001943 srv->ssl_ctx.ctx = src->ssl_ctx.ctx;
1944
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001945 if (src->ssl_ctx.verify_host != NULL)
1946 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1947 if (src->ssl_ctx.ciphers != NULL)
1948 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001949 if (src->ssl_ctx.options)
1950 srv->ssl_ctx.options = src->ssl_ctx.options;
1951 if (src->ssl_ctx.methods.flags)
1952 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1953 if (src->ssl_ctx.methods.min)
1954 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1955 if (src->ssl_ctx.methods.max)
1956 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1957
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001958 if (src->ssl_ctx.ciphersuites != NULL)
1959 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001960 if (src->sni_expr != NULL)
1961 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001962
Olivier Houchardc7566002018-11-20 23:33:50 +01001963 if (src->ssl_ctx.alpn_str) {
1964 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1965 if (srv->ssl_ctx.alpn_str) {
1966 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1967 src->ssl_ctx.alpn_len);
1968 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1969 }
1970 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02001971
Olivier Houchardc7566002018-11-20 23:33:50 +01001972 if (src->ssl_ctx.npn_str) {
1973 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1974 if (srv->ssl_ctx.npn_str) {
1975 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1976 src->ssl_ctx.npn_len);
1977 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1978 }
1979 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001980}
Willy Tarreaua8a72c62021-10-06 11:48:34 +02001981
1982/* Activate ssl on server <s>.
1983 * do nothing if there is no change to apply
1984 *
1985 * Must be called with the server lock held.
1986 */
1987void srv_set_ssl(struct server *s, int use_ssl)
1988{
1989 if (s->use_ssl == use_ssl)
1990 return;
1991
1992 s->use_ssl = use_ssl;
1993 if (s->use_ssl)
1994 s->xprt = xprt_get(XPRT_SSL);
1995 else
1996 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
1997}
1998
1999#endif /* USE_OPENSSL */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002000
2001/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002002 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002003 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002004 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002005 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002006int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002007{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002008 char *hostname_dn;
2009 int hostname_len, hostname_dn_len;
2010
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002011 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002012 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002013
Christopher Faulet67957bd2017-09-27 11:00:59 +02002014 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002015 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02002016 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002017 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002018 if (hostname_dn_len == -1)
2019 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002020
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002021
Christopher Faulet67957bd2017-09-27 11:00:59 +02002022 free(srv->hostname);
2023 free(srv->hostname_dn);
2024 srv->hostname = strdup(hostname);
2025 srv->hostname_dn = strdup(hostname_dn);
2026 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002027 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002028 goto err;
2029
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002030 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002031
2032 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002033 ha_free(&srv->hostname);
2034 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002035 return -1;
2036}
2037
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002038/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002039 * Copy <src> server settings to <srv> server allocating
2040 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002041 * This function is not supposed to be called at any time, but only
2042 * during server settings parsing or during server allocations from
2043 * a server template, and just after having calloc()'ed a new server.
2044 * So, <src> may only be a default server (when parsing server settings)
2045 * or a server template (during server allocations from a server template).
2046 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2047 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002048 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002049static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002050{
2051 /* Connection source settings copy */
2052 srv_conn_src_cpy(srv, src);
2053
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002054 if (srv_tmpl) {
2055 srv->addr = src->addr;
2056 srv->svc_port = src->svc_port;
2057 }
2058
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002059 srv->pp_opts = src->pp_opts;
2060 if (src->rdr_pfx != NULL) {
2061 srv->rdr_pfx = strdup(src->rdr_pfx);
2062 srv->rdr_len = src->rdr_len;
2063 }
2064 if (src->cookie != NULL) {
2065 srv->cookie = strdup(src->cookie);
2066 srv->cklen = src->cklen;
2067 }
2068 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002069 srv->check.addr = src->check.addr;
2070 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002071 srv->check.use_ssl = src->check.use_ssl;
2072 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002073 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002074 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002075 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002076 /* Note: 'flags' field has potentially been already initialized. */
2077 srv->flags |= src->flags;
2078 srv->do_check = src->do_check;
2079 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002080 srv->check.inter = src->check.inter;
2081 srv->check.fastinter = src->check.fastinter;
2082 srv->check.downinter = src->check.downinter;
2083 srv->agent.use_ssl = src->agent.use_ssl;
2084 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002085
2086 if (src->agent.tcpcheck_rules) {
2087 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2088 if (srv->agent.tcpcheck_rules) {
2089 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2090 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2091 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2092 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2093 &src->agent.tcpcheck_rules->preset_vars);
2094 }
2095 }
2096
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002097 srv->agent.inter = src->agent.inter;
2098 srv->agent.fastinter = src->agent.fastinter;
2099 srv->agent.downinter = src->agent.downinter;
2100 srv->maxqueue = src->maxqueue;
2101 srv->minconn = src->minconn;
2102 srv->maxconn = src->maxconn;
2103 srv->slowstart = src->slowstart;
2104 srv->observe = src->observe;
2105 srv->onerror = src->onerror;
2106 srv->onmarkeddown = src->onmarkeddown;
2107 srv->onmarkedup = src->onmarkedup;
2108 if (src->trackit != NULL)
2109 srv->trackit = strdup(src->trackit);
2110 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2111 srv->uweight = srv->iweight = src->iweight;
2112
2113 srv->check.send_proxy = src->check.send_proxy;
2114 /* health: up, but will fall down at first failure */
2115 srv->check.rise = srv->check.health = src->check.rise;
2116 srv->check.fall = src->check.fall;
2117
2118 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002119 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2120 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2121 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002122 srv->check.state |= CHK_ST_PAUSED;
2123 srv->check.health = 0;
2124 }
2125
2126 /* health: up but will fall down at first failure */
2127 srv->agent.rise = srv->agent.health = src->agent.rise;
2128 srv->agent.fall = src->agent.fall;
2129
2130 if (src->resolvers_id != NULL)
2131 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002132 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2133 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2134 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2135 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2136 srv->resolv_opts.family_prio = AF_INET6;
2137 memcpy(srv->resolv_opts.pref_net,
2138 src->resolv_opts.pref_net,
2139 sizeof srv->resolv_opts.pref_net);
2140 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002141
2142 srv->init_addr_methods = src->init_addr_methods;
2143 srv->init_addr = src->init_addr;
2144#if defined(USE_OPENSSL)
2145 srv_ssl_settings_cpy(srv, src);
2146#endif
2147#ifdef TCP_USER_TIMEOUT
2148 srv->tcp_ut = src->tcp_ut;
2149#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002150 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002151 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002152 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002153 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002154 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002155
Olivier Houchard8da5f982017-08-04 18:35:36 +02002156 if (srv_tmpl)
2157 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002158
2159 srv->check.via_socks4 = src->check.via_socks4;
2160 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002161}
2162
Willy Tarreau198e92a2021-03-05 10:23:32 +01002163/* allocate a server and attach it to the global servers_list. Returns
2164 * the server on success, otherwise NULL.
2165 */
William Lallemand313bfd12018-10-26 14:47:32 +02002166struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002167{
2168 struct server *srv;
2169
2170 srv = calloc(1, sizeof *srv);
2171 if (!srv)
2172 return NULL;
2173
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002174 srv_take(srv);
2175
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002176 srv->obj_type = OBJ_TYPE_SERVER;
2177 srv->proxy = proxy;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02002178 queue_init(&srv->queue, proxy, srv);
Willy Tarreau2b718102021-04-21 07:32:39 +02002179 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun34067662021-06-11 10:48:45 +02002180 LIST_INIT(&srv->srv_rec_item);
Emeric Brunbd78c912021-06-11 10:08:05 +02002181 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002182
Emeric Brun52a91d32017-08-31 14:41:55 +02002183 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002184 srv->last_change = now.tv_sec;
2185
Christopher Faulet38290462020-04-21 11:46:40 +02002186 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002187 srv->check.status = HCHK_STATUS_INI;
2188 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002189 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002190 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002191
Christopher Faulet38290462020-04-21 11:46:40 +02002192 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002193 srv->agent.status = HCHK_STATUS_INI;
2194 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002195 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002196 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002197#if defined(USE_QUIC)
2198 srv->cids = EB_ROOT_UNIQUE;
2199#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002200
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002201 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002202#ifdef USE_OPENSSL
2203 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2204#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002205
Willy Tarreau975b1552019-06-06 16:25:55 +02002206 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002207 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002208 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002209 return srv;
2210}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002211
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002212/* Increment the server refcount. */
2213void srv_take(struct server *srv)
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002214{
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002215 HA_ATOMIC_INC(&srv->refcount);
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002216}
2217
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002218/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2219 * dynamic servers, its refcount is decremented first. The free operations are
2220 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002221 *
2222 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002223 * when calling srv_drop on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002224 */
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002225struct server *srv_drop(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002226{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002227 struct server *next = NULL;
2228
William Lallemand4c395fc2021-08-20 10:10:15 +02002229 if (!srv)
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002230 goto end;
2231
2232 next = srv->next;
William Lallemand4c395fc2021-08-20 10:10:15 +02002233
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002234 /* For dynamic servers, decrement the reference counter. Only free the
2235 * server when reaching zero.
2236 */
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002237 if (likely(!(global.mode & MODE_STOPPING))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002238 if (HA_ATOMIC_SUB_FETCH(&srv->refcount, 1))
2239 goto end;
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002240 }
2241
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002242 task_destroy(srv->warmup);
Christopher Fauletdcac4182021-06-15 16:17:17 +02002243 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002244
2245 free(srv->id);
2246 free(srv->cookie);
2247 free(srv->hostname);
2248 free(srv->hostname_dn);
2249 free((char*)srv->conf.file);
2250 free(srv->per_thr);
2251 free(srv->curr_idle_thr);
2252 free(srv->resolvers_id);
2253 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002254 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002255
2256 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2257 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2258 xprt_get(XPRT_SSL)->destroy_srv(srv);
2259 }
2260 HA_SPIN_DESTROY(&srv->lock);
2261
Willy Tarreau2b718102021-04-21 07:32:39 +02002262 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002263
2264 EXTRA_COUNTERS_FREE(srv->extra_counters);
2265
2266 free(srv);
2267 srv = NULL;
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002268
2269 end:
2270 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002271}
2272
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02002273/* Remove a server <srv> from a tracking list if <srv> is tracking another
2274 * server. No special care is taken if <srv> is tracked itself by another one :
2275 * this situation should be avoided by the caller.
2276 *
2277 * Not thread-safe.
2278 */
2279static void release_server_track(struct server *srv)
2280{
2281 struct server *strack = srv->track;
2282 struct server **base;
2283
2284 if (!strack)
2285 return;
2286
2287 for (base = &strack->trackers; *base; base = &((*base)->tracknext)) {
2288 if (*base == srv) {
2289 *base = srv->tracknext;
2290 return;
2291 }
2292 }
2293
2294 /* srv not found on the tracking list, this should never happen */
2295 BUG_ON(!*base);
2296}
2297
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002298/*
2299 * Parse as much as possible such a range string argument: low[-high]
2300 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2301 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2302 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2303 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002304 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002305static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2306 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002307{
2308 char *nb_high_arg;
2309
2310 *nb_high = 0;
2311 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002312 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002313
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002314 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002315 *nb_high_arg++ = '\0';
2316 *nb_high = atoi(nb_high_arg);
2317 }
2318 else {
2319 *nb_high += *nb_low;
2320 *nb_low = 1;
2321 }
2322
2323 if (*nb_low < 0 || *nb_high < *nb_low)
2324 return -1;
2325
2326 return 0;
2327}
2328
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002329/* Parse as much as possible such a range string argument: low[-high]
2330 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2331 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2332 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002333 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002334 * initialize a new server on startup.
2335 *
2336 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2337 * Returns 0 if succeeded, -1 if not.
2338 */
2339static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2340 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002341{
2342 chunk_printf(&trash, "%s%d", prefix, nb);
2343 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002344 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002345}
2346
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002347/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002348 * Note that a server template is a special server with
2349 * a few different parameters than a server which has
2350 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002351 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002352 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002353 * initialize a new server on startup.
2354 *
Joseph Herlant44466822018-11-15 08:57:51 -08002355 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002356 * 'srv' template included.
2357 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002358static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002359{
2360 int i;
2361 struct server *newsrv;
2362
2363 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 +02002364 newsrv = new_server(px);
2365 if (!newsrv)
2366 goto err;
2367
Christopher Faulet75bef002020-11-02 22:04:55 +01002368 newsrv->conf.file = strdup(srv->conf.file);
2369 newsrv->conf.line = srv->conf.line;
2370
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002371 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002372 srv_prepare_for_resolution(newsrv, srv->hostname);
Willy Tarreau80527bc2021-10-06 14:48:37 +02002373
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002374 if (newsrv->sni_expr) {
2375 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2376 if (!newsrv->ssl_ctx.sni)
2377 goto err;
2378 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002379
Emeric Brun34067662021-06-11 10:48:45 +02002380 /* append to list of servers available to receive an hostname */
Emeric Bruncaef19e2021-06-14 10:02:18 +02002381 if (newsrv->srvrq)
2382 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun34067662021-06-11 10:48:45 +02002383
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002384 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002385 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002386
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002387 /* Linked backwards first. This will be restablished after parsing. */
2388 newsrv->next = px->srv;
2389 px->srv = newsrv;
2390 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002391 _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 +02002392
2393 return i - srv->tmpl_info.nb_low;
2394
2395 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002396 _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 +02002397 if (newsrv) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002398 release_sample_expr(newsrv->ssl_ctx.sni);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002399 free_check(&newsrv->agent);
2400 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002401 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002402 }
2403 free(newsrv);
2404 return i - srv->tmpl_info.nb_low;
2405}
2406
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002407/* Allocate a new server pointed by <srv> and try to parse the first arguments
2408 * in <args> as an address for a server or an address-range for a template or
2409 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2410 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002411 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002412 * initialize a new server on startup.
2413 *
2414 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2415 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2416 * <srv> will be set to NULL.
2417 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002418static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2419 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002420 int parse_flags)
Willy Tarreau272adea2014-03-31 10:39:59 +02002421{
2422 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002423 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002424 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002425 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002426 int tmpl_range_low = 0, tmpl_range_high = 0;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002427 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002428
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002429 *srv = NULL;
2430
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002431 /* There is no mandatory first arguments for default server. */
2432 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2433 if (parse_flags & SRV_PARSE_TEMPLATE) {
2434 if (!*args[3]) {
2435 /* 'server-template' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002436 ha_alert("'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
2437 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002438 err_code |= ERR_ALERT | ERR_FATAL;
2439 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002440 }
2441
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002442 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002443 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002444 else {
2445 if (!*args[2]) {
2446 /* 'server' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002447 ha_alert("'%s' expects <name> and <addr>[:<port>] as arguments.\n",
2448 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002449 err_code |= ERR_ALERT | ERR_FATAL;
2450 goto out;
2451 }
2452
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002453 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002454 }
2455
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002456 if (err) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002457 ha_alert("character '%c' is not permitted in %s %s '%s'.\n",
2458 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002459 err_code |= ERR_ALERT | ERR_FATAL;
2460 goto out;
2461 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002462 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002463
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002464 *cur_arg = 2;
2465 if (parse_flags & SRV_PARSE_TEMPLATE) {
2466 /* Parse server-template <nb | range> arg. */
2467 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002468 ha_alert("Wrong %s number or range arg '%s'.\n",
2469 args[0], args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002470 err_code |= ERR_ALERT | ERR_FATAL;
2471 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002472 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002473 (*cur_arg)++;
2474 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002475
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002476 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2477 struct sockaddr_storage *sk;
2478 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002479
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002480 *srv = newsrv = new_server(curproxy);
2481 if (!newsrv) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002482 ha_alert("out of memory.\n");
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002483 err_code |= ERR_ALERT | ERR_ABORT;
2484 goto out;
2485 }
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002486 register_parsing_obj(&newsrv->obj_type);
Willy Tarreau272adea2014-03-31 10:39:59 +02002487
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002488 if (parse_flags & SRV_PARSE_TEMPLATE) {
2489 newsrv->tmpl_info.nb_low = tmpl_range_low;
2490 newsrv->tmpl_info.nb_high = tmpl_range_high;
2491 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002492
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002493 if (parse_flags & SRV_PARSE_DYNAMIC)
2494 newsrv->flags |= SRV_F_DYNAMIC;
2495
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002496 /* Note: for a server template, its id is its prefix.
2497 * This is a temporary id which will be used for server allocations to come
2498 * after parsing.
2499 */
2500 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2501 newsrv->id = strdup(args[1]);
2502 else
2503 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002504
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002505 /* several ways to check the port component :
2506 * - IP => port=+0, relative (IPv4 only)
2507 * - IP: => port=+0, relative
2508 * - IP:N => port=N, absolute
2509 * - IP:+N => port=+N, relative
2510 * - IP:-N => port=-N, relative
2511 */
2512 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2513 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002514
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002515 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002516 &errmsg, NULL, &fqdn,
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002517 (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);
2518 if (!sk) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002519 ha_alert("%s\n", errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002520 err_code |= ERR_ALERT | ERR_FATAL;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002521 ha_free(&errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002522 goto out;
2523 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002524
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002525 if (!port1 || !port2) {
2526 /* no port specified, +offset, -offset */
2527 newsrv->flags |= SRV_F_MAPPORTS;
2528 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002529
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002530 /* save hostname and create associated name resolution */
2531 if (fqdn) {
2532 if (fqdn[0] == '_') { /* SRV record */
2533 /* Check if a SRV request already exists, and if not, create it */
2534 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2535 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2536 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002537 err_code |= ERR_ALERT | ERR_FATAL;
2538 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002539 }
Christopher Faulet81ba74a2021-06-29 20:52:35 +02002540 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002541 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002542 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002543 ha_alert("Can't create DNS resolution for server '%s'\n",
2544 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002545 err_code |= ERR_ALERT | ERR_FATAL;
2546 goto out;
2547 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002548 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002549
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002550 newsrv->addr = *sk;
2551 newsrv->svc_port = port;
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02002552 /*
2553 * we don't need to lock the server here, because
2554 * we are in the process of initializing.
2555 *
2556 * Note that the server is not attached into the proxy tree if
2557 * this is a dynamic server.
2558 */
2559 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002560
2561 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002562 ha_alert("Unknown protocol family %d '%s'\n",
2563 newsrv->addr.ss_family, args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002564 err_code |= ERR_ALERT | ERR_FATAL;
2565 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002566 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002567
2568 (*cur_arg)++;
2569 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002570 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2571 /* Copy default server settings to new server */
2572 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2573 } else {
2574 /* Initialize dynamic server weight to 1 */
2575 newsrv->uweight = newsrv->iweight = 1;
2576
2577 /* A dynamic server is disabled on startup */
2578 newsrv->next_admin = SRV_ADMF_FMAINT;
2579 newsrv->next_state = SRV_ST_STOPPED;
2580 server_recalc_eweight(newsrv, 0);
Amaury Denoyellefca18172021-07-22 16:03:36 +02002581
2582 /* Set default values for checks */
2583 newsrv->check.inter = DEF_CHKINTR;
2584 newsrv->check.rise = DEF_RISETIME;
2585 newsrv->check.fall = DEF_FALLTIME;
2586
2587 newsrv->agent.inter = DEF_CHKINTR;
2588 newsrv->agent.rise = DEF_AGENT_RISETIME;
2589 newsrv->agent.fall = DEF_AGENT_FALLTIME;
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002590 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002591 HA_SPIN_INIT(&newsrv->lock);
2592 }
2593 else {
2594 *srv = newsrv = &curproxy->defsrv;
2595 *cur_arg = 1;
2596 newsrv->resolv_opts.family_prio = AF_INET6;
2597 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002598 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002599
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002600 free(fqdn);
2601 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002602
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002603out:
2604 free(fqdn);
2605 return err_code;
2606}
Willy Tarreau272adea2014-03-31 10:39:59 +02002607
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002608/* Parse the server keyword in <args>.
2609 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2610 * might not be the case if an error is reported.
2611 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002612 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002613 * initialize a new server on startup.
2614 *
2615 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2616 * interrupted.
2617 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002618static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2619 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002620 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002621{
2622 int err_code = 0;
2623 struct srv_kw *kw;
2624 const char *best;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002625 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002626
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002627 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002628 if (!kw) {
2629 best = srv_find_best_kw(args[*cur_arg]);
2630 if (best)
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002631 ha_alert("unknown keyword '%s'; did you mean '%s' maybe ?\n",
2632 args[*cur_arg], best);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002633 else
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002634 ha_alert("unknown keyword '%s'.\n", args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002635
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002636 return ERR_ALERT | ERR_FATAL;
2637 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002638
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002639 if (!kw->parse) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002640 ha_alert("'%s' option is not implemented in this version (check build options)\n",
2641 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002642 err_code = ERR_ALERT | ERR_FATAL;
2643 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002644 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002645
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002646 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002647 ha_alert("'%s' option is not accepted in default-server sections\n",
2648 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002649 err_code = ERR_ALERT;
2650 goto out;
2651 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002652 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002653 ha_alert("'%s' option is not accepted for dynamic server\n",
2654 args[*cur_arg]);
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002655 err_code |= ERR_ALERT;
2656 goto out;
2657 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002658
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002659 err_code = kw->parse(args, cur_arg, curproxy, srv, &errmsg);
2660 if (err_code) {
2661 display_parser_err(NULL, 0, args, *cur_arg, err_code, &errmsg);
2662 free(errmsg);
2663 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002664
2665out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002666 if (kw->skip != -1)
2667 *cur_arg += 1 + kw->skip;
2668
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002669 return err_code;
2670}
2671
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002672/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002673 * initialize a new server on startup.
2674 */
2675static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2676 struct server *srv, struct proxy *proxy,
2677 char **errmsg)
2678{
2679 int ret;
2680
2681 if (!srv->sni_expr)
2682 return 0;
2683
2684 ret = server_parse_sni_expr(srv, proxy, errmsg);
2685 if (!ret)
2686 return 0;
2687
2688 return ret;
2689}
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002690
2691/* Server initializations finalization.
2692 * Initialize health check, agent check and SNI expression if enabled.
2693 * Must not be called for a default server instance.
2694 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002695 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002696 * initialize a new server on startup.
2697 */
2698static int _srv_parse_finalize(char **args, int cur_arg,
2699 struct server *srv, struct proxy *px,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002700 int parse_flags)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002701{
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002702 int ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002703 char *errmsg = NULL;
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002704
2705 if (srv->do_check && srv->trackit) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002706 ha_alert("unable to enable checks and tracking at the same time!\n");
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002707 return ERR_ALERT | ERR_FATAL;
2708 }
2709
2710 if (srv->do_agent && !srv->agent.port) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002711 ha_alert("server %s does not have agent port. Agent check has been disabled.\n",
2712 srv->id);
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002713 return ERR_ALERT | ERR_FATAL;
2714 }
2715
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002716 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, &errmsg)) != 0) {
2717 if (errmsg) {
2718 ha_alert("%s\n", errmsg);
2719 free(errmsg);
2720 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002721 return ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002722 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002723
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002724 /* A dynamic server is disabled on startup. It must not be counted as
2725 * an active backend entry.
2726 */
2727 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2728 if (srv->flags & SRV_F_BACKUP)
2729 px->srv_bck++;
2730 else
2731 px->srv_act++;
2732 }
2733
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002734 srv_lb_commit_status(srv);
2735
2736 return 0;
2737}
2738
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002739int parse_server(const char *file, int linenum, char **args,
2740 struct proxy *curproxy, const struct proxy *defproxy,
2741 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002742{
2743 struct server *newsrv = NULL;
2744 int err_code = 0;
2745
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002746 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002747
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002748 set_usermsgs_ctx(file, linenum, NULL);
2749
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002750 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002751 ha_alert("'%s' not allowed in 'defaults' section.\n", args[0]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002752 err_code |= ERR_ALERT | ERR_FATAL;
2753 goto out;
2754 }
2755 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2756 err_code |= ERR_ALERT | ERR_FATAL;
2757 goto out;
2758 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002759
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002760 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2761 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2762 if (!*args[2])
2763 return 0;
2764 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002765
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002766 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002767 parse_flags);
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002768
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002769 /* the servers are linked backwards first */
2770 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2771 newsrv->next = curproxy->srv;
2772 curproxy->srv = newsrv;
2773 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002774
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002775 if (err_code & ERR_CODE)
2776 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002777
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002778 newsrv->conf.file = strdup(file);
2779 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002780
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002781 while (*args[cur_arg]) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002782 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002783 parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002784 if (err_code & ERR_FATAL)
2785 goto out;
2786 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002787
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002788 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002789 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002790 if (err_code & ERR_FATAL)
2791 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002792 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002793
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002794 if (parse_flags & SRV_PARSE_TEMPLATE)
2795 _srv_parse_tmpl_init(newsrv, curproxy);
2796
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02002797 /* If the server id is fixed, insert it in the proxy used_id tree.
2798 * This is needed to detect a later duplicate id via srv_parse_id.
2799 *
2800 * If no is specified, a dynamic one is generated in
2801 * check_config_validity.
2802 */
2803 if (newsrv->flags & SRV_F_FORCED_ID)
2804 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2805
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002806 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002807 "configured with weight of 0 will never be selected by load balancing algorithms\n");
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002808
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002809 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002810 return 0;
2811
2812 out:
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002813 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002814 return err_code;
2815}
2816
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002817/* Returns a pointer to the first server matching either id <id>.
2818 * NULL is returned if no match is found.
2819 * the lookup is performed in the backend <bk>
2820 */
2821struct server *server_find_by_id(struct proxy *bk, int id)
2822{
2823 struct eb32_node *eb32;
2824 struct server *curserver;
2825
2826 if (!bk || (id ==0))
2827 return NULL;
2828
2829 /* <bk> has no backend capabilities, so it can't have a server */
2830 if (!(bk->cap & PR_CAP_BE))
2831 return NULL;
2832
2833 curserver = NULL;
2834
2835 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2836 if (eb32)
2837 curserver = container_of(eb32, struct server, conf.id);
2838
2839 return curserver;
2840}
2841
2842/* Returns a pointer to the first server matching either name <name>, or id
2843 * if <name> starts with a '#'. NULL is returned if no match is found.
2844 * the lookup is performed in the backend <bk>
2845 */
2846struct server *server_find_by_name(struct proxy *bk, const char *name)
2847{
2848 struct server *curserver;
2849
2850 if (!bk || !name)
2851 return NULL;
2852
2853 /* <bk> has no backend capabilities, so it can't have a server */
2854 if (!(bk->cap & PR_CAP_BE))
2855 return NULL;
2856
2857 curserver = NULL;
2858 if (*name == '#') {
2859 curserver = server_find_by_id(bk, atoi(name + 1));
2860 if (curserver)
2861 return curserver;
2862 }
2863 else {
2864 curserver = bk->srv;
2865
2866 while (curserver && (strcmp(curserver->id, name) != 0))
2867 curserver = curserver->next;
2868
2869 if (curserver)
2870 return curserver;
2871 }
2872
2873 return NULL;
2874}
2875
2876struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2877{
2878 struct server *byname;
2879 struct server *byid;
2880
2881 if (!name && !id)
2882 return NULL;
2883
2884 if (diff)
2885 *diff = 0;
2886
2887 byname = byid = NULL;
2888
2889 if (name) {
2890 byname = server_find_by_name(bk, name);
2891 if (byname && (!id || byname->puid == id))
2892 return byname;
2893 }
2894
2895 /* remaining possibilities :
2896 * - name not set
2897 * - name set but not found
2898 * - name found but ID doesn't match
2899 */
2900 if (id) {
2901 byid = server_find_by_id(bk, id);
2902 if (byid) {
2903 if (byname) {
2904 /* use id only if forced by configuration */
2905 if (byid->flags & SRV_F_FORCED_ID) {
2906 if (diff)
2907 *diff |= 2;
2908 return byid;
2909 }
2910 else {
2911 if (diff)
2912 *diff |= 1;
2913 return byname;
2914 }
2915 }
2916
2917 /* remaining possibilities:
2918 * - name not set
2919 * - name set but not found
2920 */
2921 if (name && diff)
2922 *diff |= 2;
2923 return byid;
2924 }
2925
2926 /* id bot found */
2927 if (byname) {
2928 if (diff)
2929 *diff |= 1;
2930 return byname;
2931 }
2932 }
2933
2934 return NULL;
2935}
2936
Simon Horman7d09b9a2013-02-12 10:45:51 +09002937/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002938 * update a server's current IP address.
2939 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2940 * ip is in network format.
2941 * updater is a string which contains an information about the requester of the update.
2942 * updater is used if not NULL.
2943 *
2944 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02002945 *
2946 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02002947 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002948int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02002949{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02002950 /* save the new IP family & address if necessary */
2951 switch (ip_sin_family) {
2952 case AF_INET:
2953 if (s->addr.ss_family == ip_sin_family &&
2954 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
2955 return 0;
2956 break;
2957 case AF_INET6:
2958 if (s->addr.ss_family == ip_sin_family &&
2959 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
2960 return 0;
2961 break;
2962 };
2963
Baptiste Assmann14e40142015-04-14 01:13:07 +02002964 /* generates a log line and a warning on stderr */
2965 if (1) {
2966 /* book enough space for both IPv4 and IPv6 */
2967 char oldip[INET6_ADDRSTRLEN];
2968 char newip[INET6_ADDRSTRLEN];
2969
2970 memset(oldip, '\0', INET6_ADDRSTRLEN);
2971 memset(newip, '\0', INET6_ADDRSTRLEN);
2972
2973 /* copy old IP address in a string */
2974 switch (s->addr.ss_family) {
2975 case AF_INET:
2976 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2977 break;
2978 case AF_INET6:
2979 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2980 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02002981 default:
2982 strcpy(oldip, "(none)");
2983 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02002984 };
2985
2986 /* copy new IP address in a string */
2987 switch (ip_sin_family) {
2988 case AF_INET:
2989 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2990 break;
2991 case AF_INET6:
2992 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2993 break;
2994 };
2995
2996 /* save log line into a buffer */
2997 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2998 s->proxy->id, s->id, oldip, newip, updater);
2999
3000 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003001 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003002
3003 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003004 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003005 }
3006
3007 /* save the new IP family */
3008 s->addr.ss_family = ip_sin_family;
3009 /* save the new IP address */
3010 switch (ip_sin_family) {
3011 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003012 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003013 break;
3014 case AF_INET6:
3015 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3016 break;
3017 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003018 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003019 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003020
3021 return 0;
3022}
3023
William Dauchy7cabc062021-02-11 22:51:24 +01003024/* update agent health check address and port
3025 * addr can be ip4/ip6 or a hostname
3026 * if one error occurs, don't apply anything
3027 * must be called with the server lock held.
3028 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003029const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003030{
3031 struct sockaddr_storage sk;
3032 struct buffer *msg;
3033 int new_port;
3034
3035 msg = get_trash_chunk();
3036 chunk_reset(msg);
3037
3038 if (!(s->agent.state & CHK_ST_ENABLED)) {
3039 chunk_strcat(msg, "agent checks are not enabled on this server");
3040 goto out;
3041 }
3042 if (addr) {
3043 memset(&sk, 0, sizeof(struct sockaddr_storage));
3044 if (str2ip(addr, &sk) == NULL) {
3045 chunk_appendf(msg, "invalid addr '%s'", addr);
3046 goto out;
3047 }
3048 }
3049 if (port) {
3050 if (strl2irc(port, strlen(port), &new_port) != 0) {
3051 chunk_appendf(msg, "provided port is not an integer");
3052 goto out;
3053 }
3054 if (new_port < 0 || new_port > 65535) {
3055 chunk_appendf(msg, "provided port is invalid");
3056 goto out;
3057 }
3058 }
3059out:
3060 if (msg->data)
3061 return msg->area;
3062 else {
3063 if (addr)
3064 set_srv_agent_addr(s, &sk);
3065 if (port)
3066 set_srv_agent_port(s, new_port);
3067 }
3068 return NULL;
3069}
3070
William Dauchyb456e1f2021-02-11 22:51:23 +01003071/* update server health check address and port
3072 * addr must be ip4 or ip6, it won't be resolved
3073 * if one error occurs, don't apply anything
3074 * must be called with the server lock held.
3075 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003076const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003077{
3078 struct sockaddr_storage sk;
3079 struct buffer *msg;
3080 int new_port;
3081
3082 msg = get_trash_chunk();
3083 chunk_reset(msg);
3084
3085 if (!(s->check.state & CHK_ST_ENABLED)) {
3086 chunk_strcat(msg, "health checks are not enabled on this server");
3087 goto out;
3088 }
3089 if (addr) {
3090 memset(&sk, 0, sizeof(struct sockaddr_storage));
3091 if (str2ip2(addr, &sk, 0) == NULL) {
3092 chunk_appendf(msg, "invalid addr '%s'", addr);
3093 goto out;
3094 }
3095 }
3096 if (port) {
3097 if (strl2irc(port, strlen(port), &new_port) != 0) {
3098 chunk_appendf(msg, "provided port is not an integer");
3099 goto out;
3100 }
3101 if (new_port < 0 || new_port > 65535) {
3102 chunk_appendf(msg, "provided port is invalid");
3103 goto out;
3104 }
3105 /* prevent the update of port to 0 if MAPPORTS are in use */
3106 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3107 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3108 goto out;
3109 }
3110 }
3111out:
3112 if (msg->data)
3113 return msg->area;
3114 else {
3115 if (addr)
3116 s->check.addr = sk;
3117 if (port)
3118 s->check.port = new_port;
3119 }
3120 return NULL;
3121}
3122
Baptiste Assmann14e40142015-04-14 01:13:07 +02003123/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003124 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3125 *
3126 * Caller can pass its name through <updater> to get it integrated in the response message
3127 * returned by the function.
3128 *
3129 * The function first does the following, in that order:
3130 * - validates the new addr and/or port
3131 * - checks if an update is required (new IP or port is different than current ones)
3132 * - checks the update is allowed:
3133 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3134 * - allow all changes if no CHECKS are configured
3135 * - if CHECK is configured:
3136 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3137 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3138 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003139 *
3140 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003141 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003142const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003143{
3144 struct sockaddr_storage sa;
3145 int ret, port_change_required;
3146 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003147 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003148 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003149 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003150
3151 msg = get_trash_chunk();
3152 chunk_reset(msg);
3153
3154 if (addr) {
3155 memset(&sa, 0, sizeof(struct sockaddr_storage));
3156 if (str2ip2(addr, &sa, 0) == NULL) {
3157 chunk_printf(msg, "Invalid addr '%s'", addr);
3158 goto out;
3159 }
3160
3161 /* changes are allowed on AF_INET* families only */
3162 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3163 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3164 goto out;
3165 }
3166
3167 /* collecting data currently setup */
3168 memset(current_addr, '\0', sizeof(current_addr));
3169 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3170 /* changes are allowed on AF_INET* families only */
3171 if ((ret != AF_INET) && (ret != AF_INET6)) {
3172 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3173 goto out;
3174 }
3175
3176 /* applying ADDR changes if required and allowed
3177 * ipcmp returns 0 when both ADDR are the same
3178 */
3179 if (ipcmp(&s->addr, &sa) == 0) {
3180 chunk_appendf(msg, "no need to change the addr");
3181 goto port;
3182 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003183 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003184 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003185
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003186 /* update report for caller */
3187 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3188 }
3189
3190 port:
3191 if (port) {
3192 char sign = '\0';
3193 char *endptr;
3194
3195 if (addr)
3196 chunk_appendf(msg, ", ");
3197
3198 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003199 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003200
3201 /* check if PORT change is required */
3202 port_change_required = 0;
3203
3204 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003205 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003206 new_port = strtol(port, &endptr, 10);
3207 if ((errno != 0) || (port == endptr)) {
3208 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3209 goto out;
3210 }
3211
3212 /* check if caller triggers a port mapped or offset */
3213 if (sign == '-' || (sign == '+')) {
3214 /* check if server currently uses port map */
3215 if (!(s->flags & SRV_F_MAPPORTS)) {
3216 /* switch from fixed port to port map mandatorily triggers
3217 * a port change */
3218 port_change_required = 1;
3219 /* check is configured
3220 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3221 * prevent PORT change if check doesn't have it's dedicated port while switching
3222 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003223 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003224 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.");
3225 goto out;
3226 }
3227 }
3228 /* we're already using port maps */
3229 else {
3230 port_change_required = current_port != new_port;
3231 }
3232 }
3233 /* fixed port */
3234 else {
3235 port_change_required = current_port != new_port;
3236 }
3237
3238 /* applying PORT changes if required and update response message */
3239 if (port_change_required) {
3240 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003241 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003242 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003243
3244 /* prepare message */
3245 chunk_appendf(msg, "port changed from '");
3246 if (s->flags & SRV_F_MAPPORTS)
3247 chunk_appendf(msg, "+");
3248 chunk_appendf(msg, "%d' to '", current_port);
3249
3250 if (sign == '-') {
3251 s->flags |= SRV_F_MAPPORTS;
3252 chunk_appendf(msg, "%c", sign);
3253 /* just use for result output */
3254 new_port = -new_port;
3255 }
3256 else if (sign == '+') {
3257 s->flags |= SRV_F_MAPPORTS;
3258 chunk_appendf(msg, "%c", sign);
3259 }
3260 else {
3261 s->flags &= ~SRV_F_MAPPORTS;
3262 }
3263
3264 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003265 }
3266 else {
3267 chunk_appendf(msg, "no need to change the port");
3268 }
3269 }
3270
3271out:
William Dauchy6318d332020-05-02 21:52:36 +02003272 if (changed) {
3273 /* force connection cleanup on the given server */
3274 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003275 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003276 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003277 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003278 if (updater)
3279 chunk_appendf(msg, " by '%s'", updater);
3280 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003281 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003282}
3283
Christopher Faulet5efdef22021-03-11 18:03:21 +01003284/*
3285 * update server status based on result of SRV resolution
3286 * returns:
3287 * 0 if server status is updated
3288 * 1 if server status has not changed
3289 *
3290 * Must be called with the server lock held.
3291 */
3292int srvrq_update_srv_status(struct server *s, int has_no_ip)
3293{
3294 if (!s->srvrq)
3295 return 1;
3296
3297 /* since this server has an IP, it can go back in production */
3298 if (has_no_ip == 0) {
3299 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3300 return 1;
3301 }
3302
3303 if (s->next_admin & SRV_ADMF_RMAINT)
3304 return 1;
3305
3306 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3307 return 0;
3308}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003309
3310/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003311 * update server status based on result of name resolution
3312 * returns:
3313 * 0 if server status is updated
3314 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003315 *
3316 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003317 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003318int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003319{
Emeric Brun750fe792020-12-23 16:51:12 +01003320 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003321 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003322 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003323
Jerome Magnin012261a2020-07-28 13:38:22 +02003324 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003325 if (resolution == NULL)
3326 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003327
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003328 switch (resolution->status) {
3329 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003330 /* status when HAProxy has just (re)started.
3331 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003332 break;
3333
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003334 case RSLV_STATUS_VALID:
3335 /*
3336 * resume health checks
3337 * server will be turned back on if health check is safe
3338 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003339 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003340 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003341 return 1;
3342 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3343 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003344 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003345 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003346
Emeric Brun52a91d32017-08-31 14:41:55 +02003347 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003348 return 1;
3349 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3350 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3351 s->proxy->id, s->id);
3352
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003353 ha_warning("%s.\n", trash.area);
3354 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003355 return 0;
3356
3357 case RSLV_STATUS_NX:
3358 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003359 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3360 if (!tick_is_expired(exp, now_ms))
3361 break;
3362
3363 if (s->next_admin & SRV_ADMF_RMAINT)
3364 return 1;
3365 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3366 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003367
3368 case RSLV_STATUS_TIMEOUT:
3369 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003370 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3371 if (!tick_is_expired(exp, now_ms))
3372 break;
3373
3374 if (s->next_admin & SRV_ADMF_RMAINT)
3375 return 1;
3376 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3377 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003378
3379 case RSLV_STATUS_REFUSED:
3380 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003381 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3382 if (!tick_is_expired(exp, now_ms))
3383 break;
3384
3385 if (s->next_admin & SRV_ADMF_RMAINT)
3386 return 1;
3387 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3388 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003389
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003390 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003391 /* stop server if resolution failed for a long enough period */
3392 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3393 if (!tick_is_expired(exp, now_ms))
3394 break;
3395
3396 if (s->next_admin & SRV_ADMF_RMAINT)
3397 return 1;
3398 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3399 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003400 }
3401
3402 return 1;
3403}
3404
3405/*
3406 * Server Name Resolution valid response callback
3407 * It expects:
3408 * - <nameserver>: the name server which answered the valid response
3409 * - <response>: buffer containing a valid DNS response
3410 * - <response_len>: size of <response>
3411 * It performs the following actions:
3412 * - ignore response if current ip found and server family not met
3413 * - update with first new ip found if family is met and current IP is not found
3414 * returns:
3415 * 0 on error
3416 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003417 *
3418 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003419 */
Emeric Brun08622d32020-12-23 17:41:43 +01003420int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003421{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003422 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003423 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003424 void *serverip, *firstip;
3425 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003426 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003427 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003428 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003429
Christopher Faulet67957bd2017-09-27 11:00:59 +02003430 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003431 if (!s)
3432 return 1;
3433
Christopher Faulet49531e82021-03-10 15:07:27 +01003434 if (s->srvrq) {
Emeric Brun34067662021-06-11 10:48:45 +02003435 /* If DNS resolution is disabled ignore it.
3436 * This is the case if the server was associated to
3437 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003438 */
Emeric Brun34067662021-06-11 10:48:45 +02003439 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003440 return 1;
3441 }
3442
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003443 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003444 if (!resolution)
3445 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003446
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003447 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003448 firstip = NULL; /* pointer to the first valid response found */
3449 /* it will be used as the new IP if a change is required */
3450 firstip_sin_family = AF_UNSPEC;
3451 serverip = NULL; /* current server IP address */
3452
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003453 /* initializing server IP pointer */
3454 server_sin_family = s->addr.ss_family;
3455 switch (server_sin_family) {
3456 case AF_INET:
3457 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3458 break;
3459
3460 case AF_INET6:
3461 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3462 break;
3463
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003464 case AF_UNSPEC:
3465 break;
3466
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003467 default:
3468 goto invalid;
3469 }
3470
Emeric Brund30e9a12020-12-23 18:49:16 +01003471 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3472 serverip, server_sin_family, &firstip,
3473 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003474
3475 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003476 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003477 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003478
Emeric Brun456de772020-12-23 18:17:31 +01003479 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003480 goto save_ip;
3481
Emeric Brun456de772020-12-23 18:17:31 +01003482 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003483 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003484 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003485
Emeric Brun456de772020-12-23 18:17:31 +01003486 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003487 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003488 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet07ecff52021-06-24 15:33:52 +02003489 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003490 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003491
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003492 default:
Christopher Faulet07ecff52021-06-24 15:33:52 +02003493 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003494 goto invalid;
3495
3496 }
3497
3498 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003499 if (counters) {
3500 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003501 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003502 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003503 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003504 else
3505 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003506 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003507
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003508 update_status:
Christopher Fauleta8ce4972021-06-24 15:26:03 +02003509 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3510 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003511 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003512
3513 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003514 if (counters) {
3515 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003516 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003517 }
Christopher Faulet07ecff52021-06-24 15:33:52 +02003518 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3519 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003520 return 0;
3521}
3522
3523/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003524 * SRV record error management callback
3525 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003526 * 0 if we can trash answser items.
3527 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003528 *
3529 * Grabs the server's lock.
3530 */
3531int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3532{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003533 struct resolv_srvrq *srvrq;
3534 struct resolv_resolution *res;
3535 struct resolvers *resolvers;
3536 int exp;
3537
3538 /* SRV records */
3539 srvrq = objt_resolv_srvrq(requester->owner);
3540 if (!srvrq)
Emeric Brun12ca6582021-06-10 15:25:25 +02003541 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003542
3543 resolvers = srvrq->resolvers;
3544 res = requester->resolution;
3545
3546 switch (res->status) {
3547
3548 case RSLV_STATUS_NX:
3549 /* stop server if resolution is NX for a long enough period */
3550 exp = tick_add(res->last_valid, resolvers->hold.nx);
3551 if (!tick_is_expired(exp, now_ms))
3552 return 1;
3553 break;
3554
3555 case RSLV_STATUS_TIMEOUT:
3556 /* stop server if resolution is TIMEOUT for a long enough period */
3557 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3558 if (!tick_is_expired(exp, now_ms))
3559 return 1;
3560 break;
3561
3562 case RSLV_STATUS_REFUSED:
3563 /* stop server if resolution is REFUSED for a long enough period */
3564 exp = tick_add(res->last_valid, resolvers->hold.refused);
3565 if (!tick_is_expired(exp, now_ms))
3566 return 1;
3567 break;
3568
3569 default:
3570 /* stop server if resolution failed for a long enough period */
3571 exp = tick_add(res->last_valid, resolvers->hold.other);
3572 if (!tick_is_expired(exp, now_ms))
3573 return 1;
3574 }
3575
Emeric Brun34067662021-06-11 10:48:45 +02003576 /* Remove any associated server ref */
Willy Tarreau6878f802021-10-20 14:07:31 +02003577 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003578
Emeric Brun12ca6582021-06-10 15:25:25 +02003579 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003580}
3581
3582/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003583 * Server Name Resolution error management callback
3584 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003585 * 0 if we can trash answser items.
3586 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003587 *
3588 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003589 */
Emeric Brun08622d32020-12-23 17:41:43 +01003590int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003591{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003592 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003593
Christopher Faulet67957bd2017-09-27 11:00:59 +02003594 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003595 if (!s)
Emeric Brun12ca6582021-06-10 15:25:25 +02003596 return 0;
3597
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003598 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003599 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003600 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun12ca6582021-06-10 15:25:25 +02003601 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau6878f802021-10-20 14:07:31 +02003602 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun12ca6582021-06-10 15:25:25 +02003603 return 0;
3604 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003605 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003606
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003607 return 1;
3608}
3609
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003610/*
3611 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003612 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003613 * It returns a pointer to the first server found or NULL if <ip> is not yet
3614 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003615 *
3616 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003617 */
3618struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3619{
3620 struct server *tmpsrv;
3621 struct proxy *be;
3622
3623 if (!srv)
3624 return NULL;
3625
3626 be = srv->proxy;
3627 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003628 /* we found the current server is the same, ignore it */
3629 if (srv == tmpsrv)
3630 continue;
3631
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003632 /* We want to compare the IP in the record with the IP of the servers in the
3633 * same backend, only if:
3634 * * DNS resolution is enabled on the server
3635 * * the hostname used for the resolution by our server is the same than the
3636 * one used for the server found in the backend
3637 * * the server found in the backend is not our current server
3638 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003639 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003640 if ((tmpsrv->hostname_dn == NULL) ||
3641 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003642 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003643 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003644 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003645 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003646 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003647
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003648 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003649 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003650 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003651 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003652 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003653
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003654 /* At this point, we have 2 different servers using the same DNS hostname
3655 * for their respective resolution.
3656 */
3657 if (*ip_family == tmpsrv->addr.ss_family &&
3658 ((tmpsrv->addr.ss_family == AF_INET &&
3659 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3660 (tmpsrv->addr.ss_family == AF_INET6 &&
3661 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003662 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003663 return tmpsrv;
3664 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003665 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003666 }
3667
Emeric Brune9fd6b52017-11-02 17:20:39 +01003668
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003669 return NULL;
3670}
3671
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003672/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3673 * resolver. This is suited for initial address configuration. Returns 0 on
3674 * success otherwise a non-zero error code. In case of error, *err_code, if
3675 * not NULL, is filled up.
3676 */
3677int srv_set_addr_via_libc(struct server *srv, int *err_code)
3678{
3679 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003680 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003681 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003682 return 1;
3683 }
3684 return 0;
3685}
3686
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003687/* Set the server's FDQN (->hostname) from <hostname>.
3688 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003689 *
3690 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003691 */
Emeric Brun08622d32020-12-23 17:41:43 +01003692int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003693{
Emeric Brun08622d32020-12-23 17:41:43 +01003694 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003695 char *hostname_dn;
3696 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003697
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003698 /* Note that the server lock is already held. */
3699 if (!srv->resolvers)
3700 return -1;
3701
Emeric Brun08622d32020-12-23 17:41:43 +01003702 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003703 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003704 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003705 * and we can't enable it at run time for now.
3706 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003707 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003708 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003709
3710 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003711 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003712 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02003713 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003714 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003715 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003716 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003717
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003718 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003719 if (resolution &&
3720 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003721 resolution->hostname_dn_len == hostname_dn_len &&
3722 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003723 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003724
Willy Tarreau6878f802021-10-20 14:07:31 +02003725 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003726
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003727 free(srv->hostname);
3728 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003729 srv->hostname = strdup(hostname);
3730 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003731 srv->hostname_dn_len = hostname_dn_len;
3732 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003733 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003734
Baptiste Assmann13a92322019-06-07 09:40:55 +02003735 if (srv->flags & SRV_F_NO_RESOLUTION)
3736 goto end;
3737
Emeric Brund30e9a12020-12-23 18:49:16 +01003738 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003739 goto err;
3740
3741 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003742 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003743 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003744 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003745
3746 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003747 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003748 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003749 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003750}
3751
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003752/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3753 * from the state file. This is suited for initial address configuration.
3754 * Returns 0 on success otherwise a non-zero error code. In case of error,
3755 * *err_code, if not NULL, is filled up.
3756 */
3757static int srv_apply_lastaddr(struct server *srv, int *err_code)
3758{
3759 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3760 if (err_code)
3761 *err_code |= ERR_WARN;
3762 return 1;
3763 }
3764 return 0;
3765}
3766
Willy Tarreau25e51522016-11-04 15:10:17 +01003767/* returns 0 if no error, otherwise a combination of ERR_* flags */
3768static int srv_iterate_initaddr(struct server *srv)
3769{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003770 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003771 int return_code = 0;
3772 int err_code;
3773 unsigned int methods;
3774
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003775 /* If no addr and no hostname set, get the name from the DNS SRV request */
3776 if (!name && srv->srvrq)
3777 name = srv->srvrq->name;
3778
Willy Tarreau25e51522016-11-04 15:10:17 +01003779 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003780 if (!methods) {
3781 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003782 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3783 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003784 if (srv->resolvers_id) {
3785 /* dns resolution is configured, add "none" to not fail on startup */
3786 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3787 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003788 }
3789
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003790 /* "-dr" : always append "none" so that server addresses resolution
3791 * failures are silently ignored, this is convenient to validate some
3792 * configs out of their environment.
3793 */
3794 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3795 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3796
Willy Tarreau25e51522016-11-04 15:10:17 +01003797 while (methods) {
3798 err_code = 0;
3799 switch (srv_get_next_initaddr(&methods)) {
3800 case SRV_IADDR_LAST:
3801 if (!srv->lastaddr)
3802 continue;
3803 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003804 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003805 return_code |= err_code;
3806 break;
3807
3808 case SRV_IADDR_LIBC:
3809 if (!srv->hostname)
3810 continue;
3811 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003812 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003813 return_code |= err_code;
3814 break;
3815
Willy Tarreau37ebe122016-11-04 15:17:58 +01003816 case SRV_IADDR_NONE:
3817 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003818 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003819 ha_warning("could not resolve address '%s', disabling server.\n",
3820 name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003821 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003822 return return_code;
3823
Willy Tarreau4310d362016-11-02 15:05:56 +01003824 case SRV_IADDR_IP:
3825 ipcpy(&srv->init_addr, &srv->addr);
3826 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003827 ha_warning("could not resolve address '%s', falling back to configured address.\n",
3828 name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003829 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003830 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003831
Willy Tarreau25e51522016-11-04 15:10:17 +01003832 default: /* unhandled method */
3833 break;
3834 }
3835 }
3836
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003837 if (!return_code)
3838 ha_alert("no method found to resolve address '%s'.\n", name);
3839 else
3840 ha_alert("could not resolve address '%s'.\n", name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003841
3842 return_code |= ERR_ALERT | ERR_FATAL;
3843 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003844out:
3845 srv_set_dyncookie(srv);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003846 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003847 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003848}
3849
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003850/*
3851 * This function parses all backends and all servers within each backend
3852 * and performs servers' addr resolution based on information provided by:
3853 * - configuration file
3854 * - server-state file (states provided by an 'old' haproxy process)
3855 *
3856 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3857 */
3858int srv_init_addr(void)
3859{
3860 struct proxy *curproxy;
3861 int return_code = 0;
3862
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003863 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003864 while (curproxy) {
3865 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003866
3867 /* servers are in backend only */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003868 if (!(curproxy->cap & PR_CAP_BE) || (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003869 goto srv_init_addr_next;
3870
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003871 for (srv = curproxy->srv; srv; srv = srv->next) {
3872 set_usermsgs_ctx(srv->conf.file, srv->conf.line, &srv->obj_type);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003873 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003874 return_code |= srv_iterate_initaddr(srv);
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003875 reset_usermsgs_ctx();
3876 }
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003877
3878 srv_init_addr_next:
3879 curproxy = curproxy->next;
3880 }
3881
3882 return return_code;
3883}
3884
Willy Tarreau46b7f532018-08-21 11:54:26 +02003885/*
3886 * Must be called with the server lock held.
3887 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003888const 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 +02003889{
3890
Willy Tarreau83061a82018-07-13 11:56:34 +02003891 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003892
3893 msg = get_trash_chunk();
3894 chunk_reset(msg);
3895
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003896 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003897 chunk_appendf(msg, "no need to change the FDQN");
3898 goto out;
3899 }
3900
3901 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
3902 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
3903 goto out;
3904 }
3905
3906 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
3907 server->proxy->id, server->id, server->hostname, fqdn);
3908
Emeric Brun08622d32020-12-23 17:41:43 +01003909 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003910 chunk_reset(msg);
3911 chunk_appendf(msg, "could not update %s/%s FQDN",
3912 server->proxy->id, server->id);
3913 goto out;
3914 }
3915
3916 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02003917 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003918
3919 out:
3920 if (updater)
3921 chunk_appendf(msg, " by '%s'", updater);
3922 chunk_appendf(msg, "\n");
3923
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003924 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003925}
3926
3927
Willy Tarreau21b069d2016-11-23 17:15:08 +01003928/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
3929 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003930 * 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 +01003931 * used for CLI commands requiring a server name.
3932 * Important: the <arg> is modified to remove the '/'.
3933 */
3934struct server *cli_find_server(struct appctx *appctx, char *arg)
3935{
3936 struct proxy *px;
3937 struct server *sv;
3938 char *line;
3939
3940 /* split "backend/server" and make <line> point to server */
3941 for (line = arg; *line; line++)
3942 if (*line == '/') {
3943 *line++ = '\0';
3944 break;
3945 }
3946
3947 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003948 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003949 return NULL;
3950 }
3951
3952 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003953 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003954 return NULL;
3955 }
3956
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003957 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003958 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003959 return NULL;
3960 }
3961
3962 return sv;
3963}
3964
William Lallemand222baf22016-11-19 02:00:33 +01003965
Willy Tarreau46b7f532018-08-21 11:54:26 +02003966/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003967static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01003968{
3969 struct server *sv;
3970 const char *warning;
3971
3972 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3973 return 1;
3974
3975 sv = cli_find_server(appctx, args[2]);
3976 if (!sv)
3977 return 1;
3978
3979 if (strcmp(args[3], "weight") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02003980 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003981 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02003982 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02003983 if (warning)
3984 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003985 }
3986 else if (strcmp(args[3], "state") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02003987 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003988 if (strcmp(args[4], "ready") == 0)
3989 srv_adm_set_ready(sv);
3990 else if (strcmp(args[4], "drain") == 0)
3991 srv_adm_set_drain(sv);
3992 else if (strcmp(args[4], "maint") == 0)
3993 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02003994 else
3995 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02003996 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003997 }
3998 else if (strcmp(args[3], "health") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02003999 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004000 if (sv->track)
4001 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004002 else if (strcmp(args[4], "up") == 0) {
4003 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004004 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004005 }
4006 else if (strcmp(args[4], "stopping") == 0) {
4007 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004008 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004009 }
4010 else if (strcmp(args[4], "down") == 0) {
4011 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004012 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004013 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004014 else
4015 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004016 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004017 }
4018 else if (strcmp(args[3], "agent") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004019 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004020 if (!(sv->agent.state & CHK_ST_ENABLED))
4021 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004022 else if (strcmp(args[4], "up") == 0) {
4023 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004024 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004025 }
4026 else if (strcmp(args[4], "down") == 0) {
4027 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004028 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004029 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004030 else
4031 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004032 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004033 }
Misiek2da082d2017-01-09 09:40:42 +01004034 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004035 char *addr = NULL;
4036 char *port = NULL;
4037 if (strlen(args[4]) == 0) {
4038 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4039 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004040 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004041 }
4042 addr = args[4];
4043 if (strcmp(args[5], "port") == 0)
4044 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004045 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004046 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004047 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004048 if (warning)
4049 cli_msg(appctx, LOG_WARNING, warning);
4050 }
4051 else if (strcmp(args[3], "agent-port") == 0) {
4052 char *port = NULL;
4053 if (strlen(args[4]) == 0) {
4054 cli_err(appctx, "set server <b>/<s> agent-port requires"
4055 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004056 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004057 }
4058 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004059 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004060 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004061 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004062 if (warning)
4063 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004064 }
4065 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004066 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004067 if (!(sv->agent.state & CHK_ST_ENABLED))
4068 cli_err(appctx, "agent checks are not enabled on this server.\n");
4069 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004070 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004071 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004072 }
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004073 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004074 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004075 else if (strcmp(args[3], "check-addr") == 0) {
4076 char *addr = NULL;
4077 char *port = NULL;
4078 if (strlen(args[4]) == 0) {
4079 cli_err(appctx, "set server <b>/<s> check-addr requires"
4080 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004081 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004082 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004083 addr = args[4];
4084 if (strcmp(args[5], "port") == 0)
4085 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004086 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004087 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004088 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004089 if (warning)
4090 cli_msg(appctx, LOG_WARNING, warning);
4091 }
4092 else if (strcmp(args[3], "check-port") == 0) {
4093 char *port = NULL;
4094 if (strlen(args[4]) == 0) {
4095 cli_err(appctx, "set server <b>/<s> check-port requires"
4096 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004097 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004098 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004099 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004100 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004101 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004102 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004103 if (warning)
4104 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004105 }
4106 else if (strcmp(args[3], "addr") == 0) {
4107 char *addr = NULL;
4108 char *port = NULL;
4109 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004110 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004111 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004112 }
4113 else {
4114 addr = args[4];
4115 }
4116 if (strcmp(args[5], "port") == 0) {
4117 port = args[6];
4118 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004119 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004120 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004121 if (warning)
4122 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004123 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004124 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004125 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004126 else if (strcmp(args[3], "fqdn") == 0) {
4127 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004128 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004129 goto out;
4130 }
4131 if (!sv->resolvers) {
4132 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4133 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004134 }
Christopher Fauleta386e782021-06-15 11:37:40 +02004135 if (sv->srvrq) {
4136 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004137 goto out;
Christopher Fauleta386e782021-06-15 11:37:40 +02004138 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004139 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4140 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004141 /* ensure runtime resolver will process this new fqdn */
4142 if (sv->flags & SRV_F_NO_RESOLUTION) {
4143 sv->flags &= ~SRV_F_NO_RESOLUTION;
4144 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004145 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004146 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004147 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004148 if (warning)
4149 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004150 }
William Dauchyf6370442020-11-14 19:25:33 +01004151 else if (strcmp(args[3], "ssl") == 0) {
4152#ifdef USE_OPENSSL
Amaury Denoyelleb89d3d32021-05-19 15:00:54 +02004153 if (sv->flags & SRV_F_DYNAMIC) {
4154 cli_err(appctx, "'set server <srv> ssl' not supported on dynamic servers\n");
4155 goto out;
4156 }
4157
William Dauchyf6370442020-11-14 19:25:33 +01004158 if (sv->ssl_ctx.ctx == NULL) {
4159 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4160 " default-server should define ssl settings\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004161 goto out;
4162 }
4163
4164 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4165 if (strcmp(args[4], "on") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004166 srv_set_ssl(sv, 1);
William Dauchyf6370442020-11-14 19:25:33 +01004167 } else if (strcmp(args[4], "off") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004168 srv_set_ssl(sv, 0);
William Dauchyf6370442020-11-14 19:25:33 +01004169 } else {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004170 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004171 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004172 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004173 }
4174 srv_cleanup_connections(sv);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004175 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004176 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4177#else
4178 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4179#endif
4180 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004181 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004182 "usage: set server <backend>/<server> "
4183 "addr | agent | agent-addr | agent-port | agent-send | "
4184 "check-addr | check-port | fqdn | health | ssl | "
4185 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004186 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004187 out:
William Lallemand222baf22016-11-19 02:00:33 +01004188 return 1;
4189}
4190
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004191static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004192{
4193 struct stream_interface *si = appctx->owner;
4194 struct proxy *px;
4195 struct server *sv;
4196 char *line;
4197
4198
4199 /* split "backend/server" and make <line> point to server */
4200 for (line = args[2]; *line; line++)
4201 if (*line == '/') {
4202 *line++ = '\0';
4203 break;
4204 }
4205
Willy Tarreau9d008692019-08-09 11:21:01 +02004206 if (!*line)
4207 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004208
Willy Tarreau9d008692019-08-09 11:21:01 +02004209 if (!get_backend_server(args[2], line, &px, &sv))
4210 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004211
4212 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004213 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4214 sv->iweight);
4215 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004216 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004217 return 0;
4218 }
William Lallemand6b160942016-11-22 12:34:35 +01004219 return 1;
4220}
4221
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004222/* Parse a "set weight" command.
4223 *
4224 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004225 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004226static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004227{
4228 struct server *sv;
4229 const char *warning;
4230
4231 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4232 return 1;
4233
4234 sv = cli_find_server(appctx, args[2]);
4235 if (!sv)
4236 return 1;
4237
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004238 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4239
William Lallemand6b160942016-11-22 12:34:35 +01004240 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004241 if (warning)
4242 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004243
4244 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4245
William Lallemand6b160942016-11-22 12:34:35 +01004246 return 1;
4247}
4248
Willy Tarreau46b7f532018-08-21 11:54:26 +02004249/* parse a "set maxconn server" command. It always returns 1.
4250 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004251 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004252 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004253static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004254{
4255 struct server *sv;
4256 const char *warning;
4257
4258 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4259 return 1;
4260
4261 sv = cli_find_server(appctx, args[3]);
4262 if (!sv)
4263 return 1;
4264
Amaury Denoyelle02742862021-06-18 11:11:36 +02004265 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4266
Willy Tarreaub8026272016-11-23 11:26:56 +01004267 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004268 if (warning)
4269 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004270
Amaury Denoyelle02742862021-06-18 11:11:36 +02004271 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4272
Willy Tarreaub8026272016-11-23 11:26:56 +01004273 return 1;
4274}
William Lallemand6b160942016-11-22 12:34:35 +01004275
Willy Tarreau46b7f532018-08-21 11:54:26 +02004276/* parse a "disable agent" command. It always returns 1.
4277 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004278 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004279 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004280static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004281{
4282 struct server *sv;
4283
4284 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4285 return 1;
4286
4287 sv = cli_find_server(appctx, args[2]);
4288 if (!sv)
4289 return 1;
4290
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004291 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004292 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004293 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004294 return 1;
4295}
4296
Willy Tarreau46b7f532018-08-21 11:54:26 +02004297/* parse a "disable health" command. It always returns 1.
4298 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004299 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004300 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004301static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004302{
4303 struct server *sv;
4304
4305 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4306 return 1;
4307
4308 sv = cli_find_server(appctx, args[2]);
4309 if (!sv)
4310 return 1;
4311
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004312 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004313 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004314 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004315 return 1;
4316}
4317
Willy Tarreau46b7f532018-08-21 11:54:26 +02004318/* parse a "disable server" command. It always returns 1.
4319 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004320 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004321 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004322static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004323{
4324 struct server *sv;
4325
4326 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4327 return 1;
4328
4329 sv = cli_find_server(appctx, args[2]);
4330 if (!sv)
4331 return 1;
4332
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004333 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004334 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004335 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004336 return 1;
4337}
4338
Willy Tarreau46b7f532018-08-21 11:54:26 +02004339/* parse a "enable agent" command. It always returns 1.
4340 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004341 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004342 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004343static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004344{
4345 struct server *sv;
4346
4347 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4348 return 1;
4349
4350 sv = cli_find_server(appctx, args[2]);
4351 if (!sv)
4352 return 1;
4353
Willy Tarreau9d008692019-08-09 11:21:01 +02004354 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4355 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004356
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004357 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004358 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004359 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004360 return 1;
4361}
4362
Willy Tarreau46b7f532018-08-21 11:54:26 +02004363/* parse a "enable health" command. It always returns 1.
4364 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004365 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004366 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004367static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004368{
4369 struct server *sv;
4370
4371 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4372 return 1;
4373
4374 sv = cli_find_server(appctx, args[2]);
4375 if (!sv)
4376 return 1;
4377
Amaury Denoyelle0f456d52021-09-21 10:29:09 +02004378 if (!(sv->check.state & CHK_ST_CONFIGURED))
4379 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4380
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004381 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004382 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004383 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004384 return 1;
4385}
4386
Willy Tarreau46b7f532018-08-21 11:54:26 +02004387/* parse a "enable server" command. It always returns 1.
4388 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004389 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004390 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004391static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004392{
4393 struct server *sv;
4394
4395 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4396 return 1;
4397
4398 sv = cli_find_server(appctx, args[2]);
4399 if (!sv)
4400 return 1;
4401
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004402 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004403 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004404 if (!(sv->flags & SRV_F_COOKIESET)
4405 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4406 sv->cookie)
4407 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004408 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004409 return 1;
4410}
4411
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004412/* Allocates data structure related to load balancing for the server <sv>. It
4413 * is only required for dynamic servers.
4414 *
4415 * At the moment, the server lock is not used as this function is only called
4416 * for a dynamic server not yet registered.
4417 *
4418 * Returns 1 on success, 0 on allocation failure.
4419 */
4420static int srv_alloc_lb(struct server *sv, struct proxy *be)
4421{
4422 int node;
4423
4424 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4425 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4426 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4427 sv->lb_nodes_now = 0;
4428
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004429 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4430 ((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 +01004431 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4432
4433 if (!sv->lb_nodes)
4434 return 0;
4435
4436 for (node = 0; node < sv->lb_nodes_tot; node++) {
4437 sv->lb_nodes[node].server = sv;
4438 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4439 }
4440 }
4441
4442 return 1;
4443}
4444
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004445/* updates the server's weight during a warmup stage. Once the final weight is
4446 * reached, the task automatically stops. Note that any server status change
4447 * must have updated s->last_change accordingly.
4448 */
4449static struct task *server_warmup(struct task *t, void *context, unsigned int state)
4450{
4451 struct server *s = context;
4452
4453 /* by default, plan on stopping the task */
4454 t->expire = TICK_ETERNITY;
4455 if ((s->next_admin & SRV_ADMF_MAINT) ||
4456 (s->next_state != SRV_ST_STARTING))
4457 return t;
4458
4459 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4460
4461 /* recalculate the weights and update the state */
4462 server_recalc_eweight(s, 1);
4463
4464 /* probably that we can refill this server with a bit more connections */
4465 pendconn_grab_from_px(s);
4466
4467 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4468
4469 /* get back there in 1 second or 1/20th of the slowstart interval,
4470 * whichever is greater, resulting in small 5% steps.
4471 */
4472 if (s->next_state == SRV_ST_STARTING)
4473 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
4474 return t;
4475}
4476
4477/* Allocate the slowstart task if the server is configured with a slowstart
4478 * timer. If server next_state is SRV_ST_STARTING, the task is scheduled.
4479 *
4480 * Returns 0 on success else non-zero.
4481 */
4482static int init_srv_slowstart(struct server *srv)
4483{
4484 struct task *t;
4485
4486 if (srv->slowstart) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004487 if ((t = task_new_anywhere()) == NULL) {
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004488 ha_alert("Cannot activate slowstart for server %s/%s: out of memory.\n", srv->proxy->id, srv->id);
4489 return ERR_ALERT | ERR_FATAL;
4490 }
4491
4492 /* We need a warmup task that will be called when the server
4493 * state switches from down to up.
4494 */
4495 srv->warmup = t;
4496 t->process = server_warmup;
4497 t->context = srv;
4498
4499 /* server can be in this state only because of */
4500 if (srv->next_state == SRV_ST_STARTING) {
4501 task_schedule(srv->warmup,
4502 tick_add(now_ms,
4503 MS_TO_TICKS(MAX(1000, (now.tv_sec - srv->last_change)) / 20)));
4504 }
4505 }
4506
4507 return ERR_NONE;
4508}
4509REGISTER_POST_SERVER_CHECK(init_srv_slowstart);
4510
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004511/* Memory allocation and initialization of the per_thr field.
4512 * Returns 0 if the field has been successfully initialized, -1 on failure.
4513 */
4514int srv_init_per_thr(struct server *srv)
4515{
4516 int i;
4517
4518 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4519 if (!srv->per_thr)
4520 return -1;
4521
4522 for (i = 0; i < global.nbthread; i++) {
4523 srv->per_thr[i].idle_conns = EB_ROOT;
4524 srv->per_thr[i].safe_conns = EB_ROOT;
4525 srv->per_thr[i].avail_conns = EB_ROOT;
4526 MT_LIST_INIT(&srv->per_thr[i].streams);
4527 }
4528
4529 return 0;
4530}
4531
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004532/* Parse a "add server" command
4533 * Returns 0 if the server has been successfully initialized, 1 on failure.
4534 */
4535static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4536{
4537 struct proxy *be;
4538 struct server *srv;
4539 char *be_name, *sv_name;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004540 int errcode, argc;
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004541 int next_id;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004542 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4543
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004544 usermsgs_clr("CLI");
4545
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004546 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4547 return 1;
4548
4549 ++args;
4550
4551 sv_name = be_name = args[1];
4552 /* split backend/server arg */
4553 while (*sv_name && *(++sv_name)) {
4554 if (*sv_name == '/') {
4555 *sv_name = '\0';
4556 ++sv_name;
4557 break;
4558 }
4559 }
4560
4561 if (!*sv_name)
4562 return cli_err(appctx, "Require 'backend/server'.");
4563
Amaury Denoyellecece9182021-04-20 17:09:08 +02004564 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004565 if (!be)
4566 return cli_err(appctx, "No such backend.");
4567
4568 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004569 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004570 return 1;
4571 }
4572
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004573 /* At this point, some operations might not be thread-safe anymore. This
4574 * might be the case for parsing handlers which were designed to run
4575 * only at the starting stage on single-thread mode.
4576 *
4577 * Activate thread isolation to ensure thread-safety.
4578 */
4579 thread_isolate();
4580
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004581 args[1] = sv_name;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004582 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags);
4583 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004584 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004585
4586 while (*args[argc]) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004587 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004588
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004589 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004590 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004591 }
4592
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004593 errcode = _srv_parse_finalize(args, argc, srv, be, parse_flags);
4594 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004595 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004596
Amaury Denoyelleefbf35c2021-06-10 17:34:10 +02004597 /* A dynamic server does not currently support resolution.
4598 *
4599 * Initialize it explicitly to the "none" method to ensure no
4600 * resolution will ever be executed.
4601 */
4602 srv->init_addr_methods = SRV_IADDR_NONE;
4603
Amaury Denoyelle30467232021-03-12 18:03:27 +01004604 if (srv->mux_proto) {
4605 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004606 ha_alert("MUX protocol is not usable for server.\n");
Amaury Denoyelle30467232021-03-12 18:03:27 +01004607 goto out;
4608 }
4609 }
4610
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004611 if (srv_init_per_thr(srv) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004612 ha_alert("failed to allocate per-thread lists for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004613 goto out;
4614 }
4615
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004616 if (srv->max_idle_conns != 0) {
4617 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4618 if (!srv->curr_idle_thr) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004619 ha_alert("failed to allocate counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004620 goto out;
4621 }
4622 }
4623
4624 if (!srv_alloc_lb(srv, be)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004625 ha_alert("Failed to initialize load-balancing data.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004626 goto out;
4627 }
4628
4629 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4630 COUNTERS_SV,
4631 STATS_PX_CAP_SRV)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004632 ha_alert("failed to allocate extra counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004633 goto out;
4634 }
4635
Amaury Denoyelle79b90e82021-09-20 15:15:19 +02004636 if (srv->use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL) ||
4637 srv->check.use_ssl == 1) {
Amaury Denoyelle34897d22021-05-19 09:49:41 +02004638 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
4639 if (xprt_get(XPRT_SSL)->prepare_srv(srv))
4640 goto out;
4641 }
4642 }
4643
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004644 if (srv->trackit) {
4645 if (srv_apply_track(srv, be))
4646 goto out;
4647 }
4648
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004649 /* Init check/agent if configured. The check is manually disabled
4650 * because a dynamic server is started in a disable state. It must be
4651 * manually activated via a "enable health/agent" command.
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004652 */
4653 if (srv->do_check) {
4654 if (init_srv_check(srv))
4655 goto out;
4656
4657 srv->check.state &= ~CHK_ST_ENABLED;
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004658 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004659
4660 if (srv->do_agent) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004661 if (init_srv_agent_check(srv))
4662 goto out;
4663
4664 srv->agent.state &= ~CHK_ST_ENABLED;
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004665 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004666
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02004667 /* Init slowstart if needed. */
4668 if (init_srv_slowstart(srv))
4669 goto out;
4670
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004671 /* Attach the server to the end of the proxy linked list. Note that this
4672 * operation is not thread-safe so this is executed under thread
4673 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004674 *
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004675 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004676 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004677
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004678 /* TODO use a double-linked list for px->srv */
4679 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004680 struct server *next = be->srv;
4681
4682 while (1) {
4683 /* check for duplicate server */
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02004684 if (strcmp(srv->id, next->id) == 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004685 ha_alert("Already exists a server with the same name in backend.\n");
Amaury Denoyellecece9182021-04-20 17:09:08 +02004686 goto out;
4687 }
4688
4689 if (!next->next)
4690 break;
4691
4692 next = next->next;
4693 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004694
4695 next->next = srv;
4696 }
4697 else {
4698 srv->next = be->srv;
4699 be->srv = srv;
4700 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004701
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004702 /* generate the server id if not manually specified */
4703 if (!srv->puid) {
4704 next_id = get_next_id(&be->conf.used_server_id, 1);
4705 if (!next_id) {
4706 ha_alert("Cannot attach server : no id left in proxy\n");
4707 goto out;
4708 }
4709
4710 srv->conf.id.key = srv->puid = next_id;
4711 srv->conf.name.key = srv->id;
4712 }
4713
4714 /* insert the server in the backend trees */
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02004715 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4716 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02004717 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004718
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004719 thread_release();
4720
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004721 /* Start the check task. The server must be fully initialized.
4722 *
4723 * <srvpos> and <nbcheck> parameters are set to 1 as there should be no
4724 * need to randomly spread the task interval for dynamic servers.
4725 */
4726 if (srv->check.state & CHK_ST_CONFIGURED) {
4727 if (!start_check_task(&srv->check, 0, 1, 1))
4728 ha_alert("System might be unstable, consider to execute a reload");
4729 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004730 if (srv->agent.state & CHK_ST_CONFIGURED) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004731 if (!start_check_task(&srv->agent, 0, 1, 1))
4732 ha_alert("System might be unstable, consider to execute a reload");
4733 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004734
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004735 ha_notice("New server registered.\n");
4736 cli_msg(appctx, LOG_INFO, usermsgs_str());
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004737
4738 return 0;
4739
4740out:
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004741 if (srv) {
4742 if (srv->track)
4743 release_server_track(srv);
4744
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004745 if (srv->check.state & CHK_ST_CONFIGURED)
4746 free_check(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004747 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004748 free_check(&srv->agent);
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004749
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004750 /* remove the server from the proxy linked list */
4751 if (be->srv == srv) {
4752 be->srv = srv->next;
4753 }
4754 else {
4755 struct server *prev;
4756 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4757 ;
4758 if (prev)
4759 prev->next = srv->next;
4760 }
4761
4762 }
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004763
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004764 thread_release();
4765
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004766 if (!usermsgs_empty())
4767 cli_err(appctx, usermsgs_str());
4768
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004769 if (srv)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004770 srv_drop(srv);
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004771
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004772 return 1;
4773}
4774
Amaury Denoyellee5580432021-04-15 14:41:20 +02004775/* Parse a "del server" command
4776 * Returns 0 if the server has been successfully initialized, 1 on failure.
4777 */
4778static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4779{
4780 struct proxy *be;
4781 struct server *srv;
4782 char *be_name, *sv_name;
4783
4784 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4785 return 1;
4786
4787 ++args;
4788
4789 sv_name = be_name = args[1];
4790 /* split backend/server arg */
4791 while (*sv_name && *(++sv_name)) {
4792 if (*sv_name == '/') {
4793 *sv_name = '\0';
4794 ++sv_name;
4795 break;
4796 }
4797 }
4798
4799 if (!*sv_name)
4800 return cli_err(appctx, "Require 'backend/server'.");
4801
4802 /* The proxy servers list is currently not protected by a lock so this
Willy Tarreauba3ab792021-08-04 14:42:37 +02004803 * requires thread isolation. In addition, any place referencing the
4804 * server about to be deleted would be unsafe after our operation, so
4805 * we must be certain to be alone so that no other thread has even
4806 * started to grab a temporary reference to this server.
Amaury Denoyellee5580432021-04-15 14:41:20 +02004807 */
Willy Tarreauba3ab792021-08-04 14:42:37 +02004808 thread_isolate_full();
Amaury Denoyellee5580432021-04-15 14:41:20 +02004809
4810 get_backend_server(be_name, sv_name, &be, &srv);
4811 if (!be) {
4812 cli_err(appctx, "No such backend.");
4813 goto out;
4814 }
4815
4816 if (!srv) {
4817 cli_err(appctx, "No such server.");
4818 goto out;
4819 }
4820
Amaury Denoyelle14c3c5c2021-08-23 14:10:51 +02004821 if (srv->flags & SRV_F_NON_PURGEABLE) {
4822 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 +02004823 goto out;
4824 }
4825
4826 /* Only servers in maintenance can be deleted. This ensures that the
4827 * server is not present anymore in the lb structures (through
4828 * lbprm.set_server_status_down).
4829 */
4830 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4831 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4832 goto out;
4833 }
4834
4835 /* Ensure that there is no active/idle/pending connection on the server.
4836 *
4837 * TODO idle connections should not prevent server deletion. A proper
4838 * cleanup function should be implemented to be used here.
4839 */
4840 if (srv->cur_sess || srv->curr_idle_conns ||
Willy Tarreaua0570452021-06-18 09:30:30 +02004841 !eb_is_empty(&srv->queue.head)) {
Amaury Denoyellee5580432021-04-15 14:41:20 +02004842 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4843 goto out;
4844 }
4845
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004846 /* remove srv from tracking list */
4847 if (srv->track)
4848 release_server_track(srv);
4849
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004850 /* stop the check task if running */
4851 if (srv->check.state & CHK_ST_CONFIGURED)
4852 check_purge(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004853 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004854 check_purge(&srv->agent);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004855
4856 /* detach the server from the proxy linked list
4857 * The proxy servers list is currently not protected by a lock, so this
4858 * requires thread_isolate/release.
4859 */
4860
4861 /* be->srv cannot be empty since we have already found the server with
4862 * get_backend_server */
4863 BUG_ON(!be->srv);
4864 if (be->srv == srv) {
4865 be->srv = srv->next;
4866 }
4867 else {
4868 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004869 for (next = be->srv; srv != next->next; next = next->next) {
4870 /* srv cannot be not found since we have already found
4871 * it with get_backend_server */
4872 BUG_ON(!next);
4873 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004874
Amaury Denoyellee5580432021-04-15 14:41:20 +02004875 next->next = srv->next;
4876 }
4877
4878 /* remove srv from addr_node tree */
Amaury Denoyelle82d7f772021-06-09 16:00:43 +02004879 eb32_delete(&srv->conf.id);
4880 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004881 ebpt_delete(&srv->addr_node);
4882
4883 /* remove srv from idle_node tree for idle conn cleanup */
4884 eb32_delete(&srv->idle_node);
4885
4886 thread_release();
4887
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004888 ha_notice("Server deleted.\n");
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004889 srv_drop(srv);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004890
4891 cli_msg(appctx, LOG_INFO, "Server deleted.");
4892
4893 return 0;
4894
4895out:
4896 thread_release();
4897
4898 return 1;
4899}
4900
William Lallemand222baf22016-11-19 02:00:33 +01004901/* register cli keywords */
4902static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec755efd2021-08-03 18:05:37 +02004903 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
4904 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004905 { { "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 +02004906 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
4907 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004908 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4909 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
4910 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
4911 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
4912 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
4913 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
4914 { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server (EXPERIMENTAL)", cli_parse_delete_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
William Lallemand222baf22016-11-19 02:00:33 +01004915 {{},}
4916}};
4917
Willy Tarreau0108d902018-11-25 19:14:37 +01004918INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004919
Amaury Denoyelle669b6202021-07-13 10:35:23 +02004920/* Prepare a server <srv> to track check status of another one. <srv>.<trackit>
4921 * field is used to retrieve the identifier of the tracked server, either with
4922 * the format "proxy/server" or just "server". <curproxy> must point to the
4923 * backend owning <srv>; if no proxy is specified in <trackit>, it will be used
4924 * to find the tracked server.
4925 *
4926 * Returns 0 if the server track has been activated else non-zero.
4927 *
4928 * Not thread-safe.
4929 */
4930int srv_apply_track(struct server *srv, struct proxy *curproxy)
4931{
4932 struct proxy *px;
4933 struct server *strack, *loop;
4934 char *pname, *sname;
4935
4936 if (!srv->trackit)
4937 return 1;
4938
4939 pname = srv->trackit;
4940 sname = strrchr(pname, '/');
4941
4942 if (sname) {
4943 *sname++ = '\0';
4944 }
4945 else {
4946 sname = pname;
4947 pname = NULL;
4948 }
4949
4950 if (pname) {
4951 px = proxy_be_by_name(pname);
4952 if (!px) {
4953 ha_alert("unable to find required proxy '%s' for tracking.\n",
4954 pname);
4955 return 1;
4956 }
4957 }
4958 else {
4959 px = curproxy;
4960 }
4961
4962 strack = findserver(px, sname);
4963 if (!strack) {
4964 ha_alert("unable to find required server '%s' for tracking.\n",
4965 sname);
4966 return 1;
4967 }
4968
Amaury Denoyelle79f68be2021-07-13 10:35:50 +02004969 if (strack->flags & SRV_F_DYNAMIC) {
4970 ha_alert("unable to use %s/%s for tracking as it is a dynamic server.\n",
4971 px->id, strack->id);
4972 return 1;
4973 }
4974
Amaury Denoyelle669b6202021-07-13 10:35:23 +02004975 if (!strack->do_check && !strack->do_agent && !strack->track &&
4976 !strack->trackit) {
4977 ha_alert("unable to use %s/%s for "
4978 "tracking as it does not have any check nor agent enabled.\n",
4979 px->id, strack->id);
4980 return 1;
4981 }
4982
4983 for (loop = strack->track; loop && loop != srv; loop = loop->track)
4984 ;
4985
4986 if (srv == strack || loop) {
4987 ha_alert("unable to track %s/%s as it "
4988 "belongs to a tracking chain looping back to %s/%s.\n",
4989 px->id, strack->id, px->id,
4990 srv == strack ? strack->id : loop->id);
4991 return 1;
4992 }
4993
4994 if (curproxy != px &&
4995 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
4996 ha_alert("unable to use %s/%s for"
4997 "tracking: disable-on-404 option inconsistency.\n",
4998 px->id, strack->id);
4999 return 1;
5000 }
5001
5002 srv->track = strack;
5003 srv->tracknext = strack->trackers;
5004 strack->trackers = srv;
Amaury Denoyelle06269612021-08-23 14:05:07 +02005005 strack->flags |= SRV_F_NON_PURGEABLE;
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005006
5007 ha_free(&srv->trackit);
5008
5009 return 0;
5010}
5011
Emeric Brun64cc49c2017-10-03 14:46:45 +02005012/*
5013 * This function applies server's status changes, it is
5014 * is designed to be called asynchronously.
5015 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005016 * Must be called with the server lock held. This may also be called at init
5017 * time as the result of parsing the state file, in which case no lock will be
5018 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005019 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005020static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005021{
5022 struct check *check = &s->check;
5023 int xferred;
5024 struct proxy *px = s->proxy;
5025 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
5026 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
5027 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02005028 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005029
Emeric Brun64cc49c2017-10-03 14:46:45 +02005030 /* If currently main is not set we try to apply pending state changes */
5031 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
5032 int next_admin;
5033
5034 /* Backup next admin */
5035 next_admin = s->next_admin;
5036
5037 /* restore current admin state */
5038 s->next_admin = s->cur_admin;
5039
5040 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
5041 s->last_change = now.tv_sec;
5042 if (s->proxy->lbprm.set_server_status_down)
5043 s->proxy->lbprm.set_server_status_down(s);
5044
5045 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5046 srv_shutdown_streams(s, SF_ERR_DOWN);
5047
5048 /* we might have streams queued on this server and waiting for
5049 * a connection. Those which are redispatchable will be queued
5050 * to another server or to the proxy itself.
5051 */
5052 xferred = pendconn_redistribute(s);
5053
5054 tmptrash = alloc_trash_chunk();
5055 if (tmptrash) {
5056 chunk_printf(tmptrash,
5057 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
5058 s->proxy->id, s->id);
5059
Emeric Brun5a133512017-10-19 14:42:30 +02005060 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005061 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005062
5063 /* we don't send an alert if the server was previously paused */
5064 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005065 send_log(s->proxy, log_level, "%s.\n",
5066 tmptrash->area);
5067 send_email_alert(s, log_level, "%s",
5068 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005069 free_trash_chunk(tmptrash);
5070 tmptrash = NULL;
5071 }
5072 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5073 set_backend_down(s->proxy);
5074
5075 s->counters.down_trans++;
5076 }
5077 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
5078 s->last_change = now.tv_sec;
5079 if (s->proxy->lbprm.set_server_status_down)
5080 s->proxy->lbprm.set_server_status_down(s);
5081
5082 /* we might have streams queued on this server and waiting for
5083 * a connection. Those which are redispatchable will be queued
5084 * to another server or to the proxy itself.
5085 */
5086 xferred = pendconn_redistribute(s);
5087
5088 tmptrash = alloc_trash_chunk();
5089 if (tmptrash) {
5090 chunk_printf(tmptrash,
5091 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
5092 s->proxy->id, s->id);
5093
Emeric Brun5a133512017-10-19 14:42:30 +02005094 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005095
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005096 ha_warning("%s.\n", tmptrash->area);
5097 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5098 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005099 free_trash_chunk(tmptrash);
5100 tmptrash = NULL;
5101 }
5102
5103 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5104 set_backend_down(s->proxy);
5105 }
5106 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5107 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
5108 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5109 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5110 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5111 s->proxy->last_change = now.tv_sec;
5112 }
5113
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01005114 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02005115 s->down_time += now.tv_sec - s->last_change;
5116
5117 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005118 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005119 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5120
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005121 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005122 /* now propagate the status change to any LB algorithms */
5123 if (px->lbprm.update_server_eweight)
5124 px->lbprm.update_server_eweight(s);
5125 else if (srv_willbe_usable(s)) {
5126 if (px->lbprm.set_server_status_up)
5127 px->lbprm.set_server_status_up(s);
5128 }
5129 else {
5130 if (px->lbprm.set_server_status_down)
5131 px->lbprm.set_server_status_down(s);
5132 }
5133
5134 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5135 * and it's not a backup server and its effective weight is > 0,
5136 * then it can accept new connections, so we shut down all streams
5137 * on all backup servers.
5138 */
5139 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5140 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5141 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5142
5143 /* check if we can handle some connections queued at the proxy. We
5144 * will take as many as we can handle.
5145 */
5146 xferred = pendconn_grab_from_px(s);
5147
5148 tmptrash = alloc_trash_chunk();
5149 if (tmptrash) {
5150 chunk_printf(tmptrash,
5151 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5152 s->proxy->id, s->id);
5153
Emeric Brun5a133512017-10-19 14:42:30 +02005154 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005155 ha_warning("%s.\n", tmptrash->area);
5156 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5157 tmptrash->area);
5158 send_email_alert(s, LOG_NOTICE, "%s",
5159 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005160 free_trash_chunk(tmptrash);
5161 tmptrash = NULL;
5162 }
5163
5164 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5165 set_backend_down(s->proxy);
5166 }
5167 else if (s->cur_eweight != s->next_eweight) {
5168 /* now propagate the status change to any LB algorithms */
5169 if (px->lbprm.update_server_eweight)
5170 px->lbprm.update_server_eweight(s);
5171 else if (srv_willbe_usable(s)) {
5172 if (px->lbprm.set_server_status_up)
5173 px->lbprm.set_server_status_up(s);
5174 }
5175 else {
5176 if (px->lbprm.set_server_status_down)
5177 px->lbprm.set_server_status_down(s);
5178 }
5179
5180 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5181 set_backend_down(s->proxy);
5182 }
5183
5184 s->next_admin = next_admin;
5185 }
5186
Emeric Brun5a133512017-10-19 14:42:30 +02005187 /* reset operational state change */
5188 *s->op_st_chg.reason = 0;
5189 s->op_st_chg.status = s->op_st_chg.code = -1;
5190 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005191
5192 /* Now we try to apply pending admin changes */
5193
5194 /* Maintenance must also disable health checks */
5195 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5196 if (s->check.state & CHK_ST_ENABLED) {
5197 s->check.state |= CHK_ST_PAUSED;
5198 check->health = 0;
5199 }
5200
5201 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005202 tmptrash = alloc_trash_chunk();
5203 if (tmptrash) {
5204 chunk_printf(tmptrash,
5205 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5206 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5207 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005208
Olivier Houchard796a2b32017-10-24 17:42:47 +02005209 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005210
Olivier Houchard796a2b32017-10-24 17:42:47 +02005211 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005212 ha_warning("%s.\n", tmptrash->area);
5213 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5214 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005215 }
5216 free_trash_chunk(tmptrash);
5217 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005218 }
Emeric Brun8f298292017-12-06 16:47:17 +01005219 /* commit new admin status */
5220
5221 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005222 }
5223 else { /* server was still running */
5224 check->health = 0; /* failure */
5225 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005226
5227 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005228 if (s->proxy->lbprm.set_server_status_down)
5229 s->proxy->lbprm.set_server_status_down(s);
5230
Emeric Brun64cc49c2017-10-03 14:46:45 +02005231 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5232 srv_shutdown_streams(s, SF_ERR_DOWN);
5233
William Dauchy6318d332020-05-02 21:52:36 +02005234 /* force connection cleanup on the given server */
5235 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005236 /* we might have streams queued on this server and waiting for
5237 * a connection. Those which are redispatchable will be queued
5238 * to another server or to the proxy itself.
5239 */
5240 xferred = pendconn_redistribute(s);
5241
5242 tmptrash = alloc_trash_chunk();
5243 if (tmptrash) {
5244 chunk_printf(tmptrash,
5245 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5246 s->flags & SRV_F_BACKUP ? "Backup " : "",
5247 s->proxy->id, s->id,
5248 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5249
5250 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5251
5252 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005253 ha_warning("%s.\n", tmptrash->area);
5254 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5255 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005256 }
5257 free_trash_chunk(tmptrash);
5258 tmptrash = NULL;
5259 }
5260 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5261 set_backend_down(s->proxy);
5262
5263 s->counters.down_trans++;
5264 }
5265 }
5266 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5267 /* OK here we're leaving maintenance, we have many things to check,
5268 * because the server might possibly be coming back up depending on
5269 * its state. In practice, leaving maintenance means that we should
5270 * immediately turn to UP (more or less the slowstart) under the
5271 * following conditions :
5272 * - server is neither checked nor tracked
5273 * - server tracks another server which is not checked
5274 * - server tracks another server which is already up
5275 * Which sums up as something simpler :
5276 * "either the tracking server is up or the server's checks are disabled
5277 * or up". Otherwise we only re-enable health checks. There's a special
5278 * case associated to the stopping state which can be inherited. Note
5279 * that the server might still be in drain mode, which is naturally dealt
5280 * with by the lower level functions.
5281 */
5282
5283 if (s->check.state & CHK_ST_ENABLED) {
5284 s->check.state &= ~CHK_ST_PAUSED;
5285 check->health = check->rise; /* start OK but check immediately */
5286 }
5287
5288 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5289 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5290 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5291 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5292 s->next_state = SRV_ST_STOPPING;
5293 }
5294 else {
Willy Tarreaud332f132021-08-04 19:35:13 +02005295 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005296 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005297 if (s->slowstart > 0) {
5298 if (s->warmup)
5299 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5300 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005301 else
5302 s->next_state = SRV_ST_RUNNING;
5303 }
5304
5305 }
5306
5307 tmptrash = alloc_trash_chunk();
5308 if (tmptrash) {
5309 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5310 chunk_printf(tmptrash,
5311 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5312 s->flags & SRV_F_BACKUP ? "Backup " : "",
5313 s->proxy->id, s->id,
5314 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5315 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5316 }
5317 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5318 chunk_printf(tmptrash,
5319 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5320 s->flags & SRV_F_BACKUP ? "Backup " : "",
5321 s->proxy->id, s->id, s->hostname,
5322 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5323 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5324 }
5325 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5326 chunk_printf(tmptrash,
5327 "%sServer %s/%s is %s/%s (leaving maintenance)",
5328 s->flags & SRV_F_BACKUP ? "Backup " : "",
5329 s->proxy->id, s->id,
5330 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5331 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5332 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005333 ha_warning("%s.\n", tmptrash->area);
5334 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5335 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005336 free_trash_chunk(tmptrash);
5337 tmptrash = NULL;
5338 }
5339
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005340 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005341 /* now propagate the status change to any LB algorithms */
5342 if (px->lbprm.update_server_eweight)
5343 px->lbprm.update_server_eweight(s);
5344 else if (srv_willbe_usable(s)) {
5345 if (px->lbprm.set_server_status_up)
5346 px->lbprm.set_server_status_up(s);
5347 }
5348 else {
5349 if (px->lbprm.set_server_status_down)
5350 px->lbprm.set_server_status_down(s);
5351 }
5352
5353 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5354 set_backend_down(s->proxy);
Willy Tarreaud332f132021-08-04 19:35:13 +02005355 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5356 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005357
Willy Tarreau6a78e612018-08-07 10:14:53 +02005358 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5359 * and it's not a backup server and its effective weight is > 0,
5360 * then it can accept new connections, so we shut down all streams
5361 * on all backup servers.
5362 */
5363 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5364 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5365 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5366
5367 /* check if we can handle some connections queued at the proxy. We
5368 * will take as many as we can handle.
5369 */
5370 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005371 }
5372 else if (s->next_admin & SRV_ADMF_MAINT) {
5373 /* remaining in maintenance mode, let's inform precisely about the
5374 * situation.
5375 */
5376 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5377 tmptrash = alloc_trash_chunk();
5378 if (tmptrash) {
5379 chunk_printf(tmptrash,
5380 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5381 s->flags & SRV_F_BACKUP ? "Backup " : "",
5382 s->proxy->id, s->id);
5383
5384 if (s->track) /* normally it's mandatory here */
5385 chunk_appendf(tmptrash, " via %s/%s",
5386 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005387 ha_warning("%s.\n", tmptrash->area);
5388 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5389 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005390 free_trash_chunk(tmptrash);
5391 tmptrash = NULL;
5392 }
5393 }
5394 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5395 tmptrash = alloc_trash_chunk();
5396 if (tmptrash) {
5397 chunk_printf(tmptrash,
5398 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5399 s->flags & SRV_F_BACKUP ? "Backup " : "",
5400 s->proxy->id, s->id, s->hostname);
5401
5402 if (s->track) /* normally it's mandatory here */
5403 chunk_appendf(tmptrash, " via %s/%s",
5404 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005405 ha_warning("%s.\n", tmptrash->area);
5406 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5407 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005408 free_trash_chunk(tmptrash);
5409 tmptrash = NULL;
5410 }
5411 }
5412 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5413 tmptrash = alloc_trash_chunk();
5414 if (tmptrash) {
5415 chunk_printf(tmptrash,
5416 "%sServer %s/%s remains in forced maintenance",
5417 s->flags & SRV_F_BACKUP ? "Backup " : "",
5418 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005419 ha_warning("%s.\n", tmptrash->area);
5420 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5421 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005422 free_trash_chunk(tmptrash);
5423 tmptrash = NULL;
5424 }
5425 }
5426 /* don't report anything when leaving drain mode and remaining in maintenance */
5427
5428 s->cur_admin = s->next_admin;
5429 }
5430
5431 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5432 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5433 /* drain state is applied only if not yet in maint */
5434
5435 s->last_change = now.tv_sec;
5436 if (px->lbprm.set_server_status_down)
5437 px->lbprm.set_server_status_down(s);
5438
5439 /* we might have streams queued on this server and waiting for
5440 * a connection. Those which are redispatchable will be queued
5441 * to another server or to the proxy itself.
5442 */
5443 xferred = pendconn_redistribute(s);
5444
5445 tmptrash = alloc_trash_chunk();
5446 if (tmptrash) {
5447 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5448 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5449 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5450
5451 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5452
5453 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005454 ha_warning("%s.\n", tmptrash->area);
5455 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5456 tmptrash->area);
5457 send_email_alert(s, LOG_NOTICE, "%s",
5458 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005459 }
5460 free_trash_chunk(tmptrash);
5461 tmptrash = NULL;
5462 }
5463
5464 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5465 set_backend_down(s->proxy);
5466 }
5467 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5468 /* OK completely leaving drain mode */
5469 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5470 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5471 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5472 s->proxy->last_change = now.tv_sec;
5473 }
5474
5475 if (s->last_change < now.tv_sec) // ignore negative times
5476 s->down_time += now.tv_sec - s->last_change;
5477 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005478 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005479
5480 tmptrash = alloc_trash_chunk();
5481 if (tmptrash) {
5482 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5483 chunk_printf(tmptrash,
5484 "%sServer %s/%s is %s (leaving forced drain)",
5485 s->flags & SRV_F_BACKUP ? "Backup " : "",
5486 s->proxy->id, s->id,
5487 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5488 }
5489 else {
5490 chunk_printf(tmptrash,
5491 "%sServer %s/%s is %s (leaving drain)",
5492 s->flags & SRV_F_BACKUP ? "Backup " : "",
5493 s->proxy->id, s->id,
5494 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5495 if (s->track) /* normally it's mandatory here */
5496 chunk_appendf(tmptrash, " via %s/%s",
5497 s->track->proxy->id, s->track->id);
5498 }
5499
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005500 ha_warning("%s.\n", tmptrash->area);
5501 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5502 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005503 free_trash_chunk(tmptrash);
5504 tmptrash = NULL;
5505 }
5506
5507 /* now propagate the status change to any LB algorithms */
5508 if (px->lbprm.update_server_eweight)
5509 px->lbprm.update_server_eweight(s);
5510 else if (srv_willbe_usable(s)) {
5511 if (px->lbprm.set_server_status_up)
5512 px->lbprm.set_server_status_up(s);
5513 }
5514 else {
5515 if (px->lbprm.set_server_status_down)
5516 px->lbprm.set_server_status_down(s);
5517 }
5518 }
5519 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5520 /* remaining in drain mode after removing one of its flags */
5521
5522 tmptrash = alloc_trash_chunk();
5523 if (tmptrash) {
5524 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5525 chunk_printf(tmptrash,
5526 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5527 s->flags & SRV_F_BACKUP ? "Backup " : "",
5528 s->proxy->id, s->id);
5529
5530 if (s->track) /* normally it's mandatory here */
5531 chunk_appendf(tmptrash, " via %s/%s",
5532 s->track->proxy->id, s->track->id);
5533 }
5534 else {
5535 chunk_printf(tmptrash,
5536 "%sServer %s/%s remains in forced drain mode",
5537 s->flags & SRV_F_BACKUP ? "Backup " : "",
5538 s->proxy->id, s->id);
5539 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005540 ha_warning("%s.\n", tmptrash->area);
5541 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5542 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005543 free_trash_chunk(tmptrash);
5544 tmptrash = NULL;
5545 }
5546
5547 /* commit new admin status */
5548
5549 s->cur_admin = s->next_admin;
5550 }
5551 }
5552
5553 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005554 *s->adm_st_chg_cause = 0;
5555}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005556
Willy Tarreau144f84a2021-03-02 16:09:26 +01005557struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005558{
5559 struct connection *conn;
5560
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005561 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005562 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005563 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005564 }
5565
5566 return task;
5567}
5568
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005569/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005570 * moving them all.
5571 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005572 *
5573 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005574 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005575static 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 +02005576{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005577 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005578 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005579 int i = 0;
5580
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005581 node = eb_first(idle_tree);
5582 while (node) {
5583 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005584 if (toremove_nb != -1 && i >= toremove_nb)
5585 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005586
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005587 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005588 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005589 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005590 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005591
5592 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005593 }
5594 return i;
5595}
William Dauchy6318d332020-05-02 21:52:36 +02005596/* cleanup connections for a given server
5597 * might be useful when going on forced maintenance or live changing ip/port
5598 */
William Dauchy707ad322020-05-04 13:52:40 +02005599static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005600{
William Dauchy6318d332020-05-02 21:52:36 +02005601 int did_remove;
5602 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005603
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005604 /* nothing to do if pool-max-conn is null */
5605 if (!srv->max_idle_conns)
5606 return;
5607
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005608 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005609 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005610 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005611 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005612 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 +02005613 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005614 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 +02005615 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005616 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005617 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005618 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005619
5620 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5621 break;
William Dauchy6318d332020-05-02 21:52:36 +02005622 }
Willy Tarreau260f3242021-10-06 18:30:04 +02005623}
5624
5625/* removes an idle conn after updating the server idle conns counters */
5626void srv_release_conn(struct server *srv, struct connection *conn)
5627{
5628 if (conn->flags & CO_FL_LIST_MASK) {
5629 /* The connection is currently in the server's idle list, so tell it
5630 * there's one less connection available in that list.
5631 */
5632 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5633 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
5634 _HA_ATOMIC_DEC(&srv->curr_idle_thr[tid]);
5635 }
5636 else {
5637 /* The connection is not private and not in any server's idle
5638 * list, so decrement the current number of used connections
5639 */
5640 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5641 }
5642
5643 /* Remove the connection from any tree (safe, idle or available) */
5644 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5645 conn_delete_from_tree(&conn->hash_node->node);
5646 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5647}
5648
5649/* retrieve a connection from its <hash> in <tree>
5650 * returns NULL if no connection found
5651 */
5652struct connection *srv_lookup_conn(struct eb_root *tree, uint64_t hash)
5653{
5654 struct ebmb_node *node = NULL;
5655 struct connection *conn = NULL;
5656 struct conn_hash_node *hash_node = NULL;
5657
5658 node = ebmb_lookup(tree, &hash, sizeof(hash_node->hash));
5659 if (node) {
5660 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5661 conn = hash_node->conn;
5662 }
5663
5664 return conn;
5665}
5666
5667/* retrieve the next connection sharing the same hash as <conn>
5668 * returns NULL if no connection found
5669 */
5670struct connection *srv_lookup_conn_next(struct connection *conn)
5671{
5672 struct ebmb_node *node = NULL;
5673 struct connection *next_conn = NULL;
5674 struct conn_hash_node *hash_node = NULL;
5675
5676 node = ebmb_next_dup(&conn->hash_node->node);
5677 if (node) {
5678 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5679 next_conn = hash_node->conn;
5680 }
5681
5682 return next_conn;
5683}
5684
5685/* This adds an idle connection to the server's list if the connection is
5686 * reusable, not held by any owner anymore, but still has available streams.
5687 */
5688int srv_add_to_idle_list(struct server *srv, struct connection *conn, int is_safe)
5689{
5690 /* we try to keep the connection in the server's idle list
5691 * if we don't have too many FD in use, and if the number of
5692 * idle+current conns is lower than what was observed before
5693 * last purge, or if we already don't have idle conns for the
5694 * current thread and we don't exceed last count by global.nbthread.
5695 */
5696 if (!(conn->flags & CO_FL_PRIVATE) &&
5697 srv && srv->pool_purge_delay > 0 &&
5698 ((srv->proxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
5699 ha_used_fds < global.tune.pool_high_count &&
5700 (srv->max_idle_conns == -1 || srv->max_idle_conns > srv->curr_idle_conns) &&
5701 ((eb_is_empty(&srv->per_thr[tid].safe_conns) &&
5702 (is_safe || eb_is_empty(&srv->per_thr[tid].idle_conns))) ||
5703 (ha_used_fds < global.tune.pool_low_count &&
5704 (srv->curr_used_conns + srv->curr_idle_conns <=
5705 MAX(srv->curr_used_conns, srv->est_need_conns) + srv->low_idle_conns))) &&
5706 !conn->mux->used_streams(conn) && conn->mux->avail_streams(conn)) {
5707 int retadd;
5708
5709 retadd = _HA_ATOMIC_ADD_FETCH(&srv->curr_idle_conns, 1);
5710 if (retadd > srv->max_idle_conns) {
5711 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5712 return 0;
5713 }
5714 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5715
5716 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5717 conn_delete_from_tree(&conn->hash_node->node);
5718
5719 if (is_safe) {
5720 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_SAFE_LIST;
5721 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5722 _HA_ATOMIC_INC(&srv->curr_safe_nb);
5723 } else {
5724 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_IDLE_LIST;
5725 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
5726 _HA_ATOMIC_INC(&srv->curr_idle_nb);
5727 }
5728 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5729 _HA_ATOMIC_INC(&srv->curr_idle_thr[tid]);
5730
5731 __ha_barrier_full();
5732 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5733 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5734 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5735 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5736 now_ms);
5737 eb32_insert(&idle_conn_srv, &srv->idle_node);
5738 if (!task_in_wq(idle_conn_task) && !
5739 task_in_rq(idle_conn_task)) {
5740 task_schedule(idle_conn_task,
5741 srv->idle_node.key);
5742 }
5743
5744 }
5745 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5746 }
5747 return 1;
5748 }
5749 return 0;
William Dauchy6318d332020-05-02 21:52:36 +02005750}
5751
Willy Tarreau144f84a2021-03-02 16:09:26 +01005752struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005753{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005754 struct server *srv;
5755 struct eb32_node *eb;
5756 int i;
5757 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005758
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005759 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005760 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5761 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005762 int exceed_conns;
5763 int to_kill;
5764 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005765
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005766 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5767 if (!eb) {
5768 /* we might have reached the end of the tree, typically because
5769 * <now_ms> is in the first half and we're first scanning the last
5770 * half. Let's loop back to the beginning of the tree now.
5771 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005772
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005773 eb = eb32_first(&idle_conn_srv);
5774 if (likely(!eb))
5775 break;
5776 }
5777 if (tick_is_lt(now_ms, eb->key)) {
5778 /* timer not expired yet, revisit it later */
5779 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005780 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005781 }
5782 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005783
5784 /* Calculate how many idle connections we want to kill :
5785 * we want to remove half the difference between the total
5786 * of established connections (used or idle) and the max
5787 * number of used connections.
5788 */
5789 curr_idle = srv->curr_idle_conns;
5790 if (curr_idle == 0)
5791 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005792 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005793 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005794
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005795 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005796 if (srv->est_need_conns < srv->max_used_conns)
5797 srv->est_need_conns = srv->max_used_conns;
5798
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005799 srv->max_used_conns = srv->curr_used_conns;
5800
Willy Tarreau18ed7892020-07-02 19:05:30 +02005801 if (exceed_conns <= 0)
5802 goto remove;
5803
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005804 /* check all threads starting with ours */
5805 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005806 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005807 int j;
5808 int did_remove = 0;
5809
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005810 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5811 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005812
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005813 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005814 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 +02005815 if (j > 0)
5816 did_remove = 1;
5817 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005818 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 +01005819 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005820 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005821
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005822 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005823 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005824
5825 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5826 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005827 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005828remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005829 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005830
5831 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005832 /* There are still more idle connections, add the
5833 * server back in the tree.
5834 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005835 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005836 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005837 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005838 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005839 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005840 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5841
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005842 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005843 return task;
5844}
Olivier Houchard88698d92019-04-16 19:07:22 +02005845
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005846/* Close remaining idle connections. This functions is designed to be run on
5847 * process shutdown. This guarantees a proper socket shutdown to avoid
5848 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5849 * bypassed.
5850 *
5851 * This function is not thread-safe so it must only be called via a global
5852 * deinit function.
5853 */
5854static void srv_close_idle_conns(struct server *srv)
5855{
5856 struct eb_root **cleaned_tree;
5857 int i;
5858
5859 for (i = 0; i < global.nbthread; ++i) {
5860 struct eb_root *conn_trees[] = {
5861 &srv->per_thr[i].idle_conns,
5862 &srv->per_thr[i].safe_conns,
5863 &srv->per_thr[i].avail_conns,
5864 NULL
5865 };
5866
5867 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5868 while (!eb_is_empty(*cleaned_tree)) {
5869 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5870 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5871 struct connection *conn = conn_hash_node->conn;
5872
5873 if (conn->ctrl->ctrl_close)
5874 conn->ctrl->ctrl_close(conn);
5875 ebmb_delete(node);
5876 }
5877 }
5878 }
5879}
5880
5881REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5882
Willy Tarreau76cc6992020-07-01 18:49:24 +02005883/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5884static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005885 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005886 char **err)
5887{
5888 if (too_many_args(1, args, err, NULL))
5889 return -1;
5890
5891 if (strcmp(args[1], "on") == 0)
5892 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5893 else if (strcmp(args[1], "off") == 0)
5894 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5895 else {
5896 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5897 return -1;
5898 }
5899 return 0;
5900}
5901
Olivier Houchard88698d92019-04-16 19:07:22 +02005902/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5903static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005904 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005905 char **err)
5906{
5907 int arg = -1;
5908
5909 if (too_many_args(1, args, err, NULL))
5910 return -1;
5911
5912 if (*(args[1]) != 0)
5913 arg = atoi(args[1]);
5914
5915 if (arg < 0 || arg > 100) {
5916 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5917 return -1;
5918 }
5919
5920 if (args[0][10] == 'h')
5921 global.tune.pool_high_ratio = arg;
5922 else
5923 global.tune.pool_low_ratio = arg;
5924 return 0;
5925}
5926
5927/* config keyword parsers */
5928static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005929 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005930 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5931 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5932 { 0, NULL, NULL }
5933}};
5934
5935INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5936
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005937/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005938 * Local variables:
5939 * c-indent-level: 8
5940 * c-basic-offset: 8
5941 * End:
5942 */