blob: fa1d9d6c6e8e873e1316a535bf5aa876fb285bf1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreau6be78492020-06-05 00:00:29 +020019#include <import/xxhash.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
William Dauchyf6370442020-11-14 19:25:33 +010041#include <haproxy/ssl_sock.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010042#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020043#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020044#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020046#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020047#include <haproxy/time.h>
Willy Tarreauba6300e2021-05-08 14:09:40 +020048#include <haproxy/tools.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020049
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050
Willy Tarreau3ff577e2018-08-02 11:48:52 +020051static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020053static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010055/* extra keywords used as value for other arguments. They are used as
56 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010057 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010058static const char *extra_kw_list[] = {
59 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010060 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010061 NULL /* must be last */
62};
63
Willy Tarreau21faa912012-10-10 08:27:36 +020064/* List head of all known server keywords */
65static struct srv_kw_list srv_keywords = {
66 .list = LIST_HEAD_INIT(srv_keywords.list)
67};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020068
Willy Tarreauaf613e82020-06-05 08:40:51 +020069__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020071struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010072struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010073
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070075struct dict server_key_dict = {
76 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020077 .values = EB_ROOT_UNIQUE,
78};
79
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010082 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200111 * Unlikely, but it can happen. The server's proxy must be at least
112 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200136 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau595e7672020-10-20 17:30:08 +0200148 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200197 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Willy Tarreau21faa912012-10-10 08:27:36 +0200200/*
Thayne McCombs92149f92020-11-20 01:28:26 -0700201 * Must be called with the server lock held, and will write-lock the proxy.
202 */
203static void srv_set_addr_desc(struct server *s)
204{
205 struct proxy *p = s->proxy;
206 char *key;
207
208 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
209
210 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700211 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700212 free(key);
213 return;
214 }
215
216 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
217 ebpt_delete(&s->addr_node);
218 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
219
220 free(s->addr_node.key);
221 }
222
223 s->addr_node.key = key;
224
Thayne McCombs24da7e12021-01-05 23:10:09 -0700225 if (s->addr_node.key) {
226 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
227 ebis_insert(&p->used_server_addr, &s->addr_node);
228 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
229 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700230}
231
232/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200233 * Registers the server keyword list <kwl> as a list of valid keywords for next
234 * parsing sessions.
235 */
236void srv_register_keywords(struct srv_kw_list *kwl)
237{
Willy Tarreau2b718102021-04-21 07:32:39 +0200238 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200239}
240
241/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
242 * keyword is found with a NULL ->parse() function, then an attempt is made to
243 * find one with a valid ->parse() function. This way it is possible to declare
244 * platform-dependant, known keywords as NULL, then only declare them as valid
245 * if some options are met. Note that if the requested keyword contains an
246 * opening parenthesis, everything from this point is ignored.
247 */
248struct srv_kw *srv_find_kw(const char *kw)
249{
250 int index;
251 const char *kwend;
252 struct srv_kw_list *kwl;
253 struct srv_kw *ret = NULL;
254
255 kwend = strchr(kw, '(');
256 if (!kwend)
257 kwend = kw + strlen(kw);
258
259 list_for_each_entry(kwl, &srv_keywords.list, list) {
260 for (index = 0; kwl->kw[index].kw != NULL; index++) {
261 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
262 kwl->kw[index].kw[kwend-kw] == 0) {
263 if (kwl->kw[index].parse)
264 return &kwl->kw[index]; /* found it !*/
265 else
266 ret = &kwl->kw[index]; /* may be OK */
267 }
268 }
269 }
270 return ret;
271}
272
273/* Dumps all registered "server" keywords to the <out> string pointer. The
274 * unsupported keywords are only dumped if their supported form was not
275 * found.
276 */
277void srv_dump_kws(char **out)
278{
279 struct srv_kw_list *kwl;
280 int index;
281
Christopher Faulet784063e2020-05-18 12:14:18 +0200282 if (!out)
283 return;
284
Willy Tarreau21faa912012-10-10 08:27:36 +0200285 *out = NULL;
286 list_for_each_entry(kwl, &srv_keywords.list, list) {
287 for (index = 0; kwl->kw[index].kw != NULL; index++) {
288 if (kwl->kw[index].parse ||
289 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
290 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
291 kwl->scope,
292 kwl->kw[index].kw,
293 kwl->kw[index].skip ? " <arg>" : "",
294 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
295 kwl->kw[index].parse ? "" : " (not supported)");
296 }
297 }
298 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100299}
300
301/* Try to find in srv_keyword the word that looks closest to <word> by counting
302 * transitions between letters, digits and other characters. Will return the
303 * best matching word if found, otherwise NULL. An optional array of extra
304 * words to compare may be passed in <extra>, but it must then be terminated
305 * by a NULL entry. If unused it may be NULL.
306 */
307static const char *srv_find_best_kw(const char *word)
308{
309 uint8_t word_sig[1024];
310 uint8_t list_sig[1024];
311 const struct srv_kw_list *kwl;
312 const char *best_ptr = NULL;
313 int dist, best_dist = INT_MAX;
314 const char **extra;
315 int index;
316
317 make_word_fingerprint(word_sig, word);
318 list_for_each_entry(kwl, &srv_keywords.list, list) {
319 for (index = 0; kwl->kw[index].kw != NULL; index++) {
320 make_word_fingerprint(list_sig, kwl->kw[index].kw);
321 dist = word_fingerprint_distance(word_sig, list_sig);
322 if (dist < best_dist) {
323 best_dist = dist;
324 best_ptr = kwl->kw[index].kw;
325 }
326 }
327 }
328
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100329 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100330 make_word_fingerprint(list_sig, *extra);
331 dist = word_fingerprint_distance(word_sig, list_sig);
332 if (dist < best_dist) {
333 best_dist = dist;
334 best_ptr = *extra;
335 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100336 }
337
338 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
339 best_ptr = NULL;
340
341 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200342}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100343
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100344/* Parse the "backup" server keyword */
345static int srv_parse_backup(char **args, int *cur_arg,
346 struct proxy *curproxy, struct server *newsrv, char **err)
347{
348 newsrv->flags |= SRV_F_BACKUP;
349 return 0;
350}
351
Alexander Liu2a54bb72019-05-22 19:44:48 +0800352
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100353/* Parse the "cookie" server keyword */
354static int srv_parse_cookie(char **args, int *cur_arg,
355 struct proxy *curproxy, struct server *newsrv, char **err)
356{
357 char *arg;
358
359 arg = args[*cur_arg + 1];
360 if (!*arg) {
361 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
362 return ERR_ALERT | ERR_FATAL;
363 }
364
365 free(newsrv->cookie);
366 newsrv->cookie = strdup(arg);
367 newsrv->cklen = strlen(arg);
368 newsrv->flags |= SRV_F_COOKIESET;
369 return 0;
370}
371
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100372/* Parse the "disabled" server keyword */
373static int srv_parse_disabled(char **args, int *cur_arg,
374 struct proxy *curproxy, struct server *newsrv, char **err)
375{
Emeric Brun52a91d32017-08-31 14:41:55 +0200376 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
377 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100378 newsrv->check.state |= CHK_ST_PAUSED;
379 newsrv->check.health = 0;
380 return 0;
381}
382
383/* Parse the "enabled" server keyword */
384static int srv_parse_enabled(char **args, int *cur_arg,
385 struct proxy *curproxy, struct server *newsrv, char **err)
386{
Emeric Brun52a91d32017-08-31 14:41:55 +0200387 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
388 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100389 newsrv->check.state &= ~CHK_ST_PAUSED;
390 newsrv->check.health = newsrv->check.rise;
391 return 0;
392}
393
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100394/* Parse the "error-limit" server keyword */
395static int srv_parse_error_limit(char **args, int *cur_arg,
396 struct proxy *curproxy, struct server *newsrv, char **err)
397{
398 if (!*args[*cur_arg + 1]) {
399 memprintf(err, "'%s' expects an integer argument.",
400 args[*cur_arg]);
401 return ERR_ALERT | ERR_FATAL;
402 }
403
404 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
405
406 if (newsrv->consecutive_errors_limit <= 0) {
407 memprintf(err, "%s has to be > 0.",
408 args[*cur_arg]);
409 return ERR_ALERT | ERR_FATAL;
410 }
411
412 return 0;
413}
414
415/* Parse the "init-addr" server keyword */
416static int srv_parse_init_addr(char **args, int *cur_arg,
417 struct proxy *curproxy, struct server *newsrv, char **err)
418{
419 char *p, *end;
420 int done;
421 struct sockaddr_storage sa;
422
423 newsrv->init_addr_methods = 0;
424 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
425
426 for (p = args[*cur_arg + 1]; *p; p = end) {
427 /* cut on next comma */
428 for (end = p; *end && *end != ','; end++);
429 if (*end)
430 *(end++) = 0;
431
432 memset(&sa, 0, sizeof(sa));
433 if (strcmp(p, "libc") == 0) {
434 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
435 }
436 else if (strcmp(p, "last") == 0) {
437 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
438 }
439 else if (strcmp(p, "none") == 0) {
440 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
441 }
442 else if (str2ip2(p, &sa, 0)) {
443 if (is_addr(&newsrv->init_addr)) {
444 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
445 args[*cur_arg], p);
446 return ERR_ALERT | ERR_FATAL;
447 }
448 newsrv->init_addr = sa;
449 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
450 }
451 else {
452 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
453 args[*cur_arg], p);
454 return ERR_ALERT | ERR_FATAL;
455 }
456 if (!done) {
457 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
458 args[*cur_arg], p);
459 return ERR_ALERT | ERR_FATAL;
460 }
461 }
462
463 return 0;
464}
465
466/* Parse the "log-proto" server keyword */
467static int srv_parse_log_proto(char **args, int *cur_arg,
468 struct proxy *curproxy, struct server *newsrv, char **err)
469{
470 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
471 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
472 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
473 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
474 else {
475 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
476 args[*cur_arg], args[*cur_arg + 1]);
477 return ERR_ALERT | ERR_FATAL;
478 }
479
480 return 0;
481}
482
483/* Parse the "maxconn" server keyword */
484static int srv_parse_maxconn(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
487 newsrv->maxconn = atol(args[*cur_arg + 1]);
488 return 0;
489}
490
491/* Parse the "maxqueue" server keyword */
492static int srv_parse_maxqueue(char **args, int *cur_arg,
493 struct proxy *curproxy, struct server *newsrv, char **err)
494{
495 newsrv->maxqueue = atol(args[*cur_arg + 1]);
496 return 0;
497}
498
499/* Parse the "minconn" server keyword */
500static int srv_parse_minconn(char **args, int *cur_arg,
501 struct proxy *curproxy, struct server *newsrv, char **err)
502{
503 newsrv->minconn = atol(args[*cur_arg + 1]);
504 return 0;
505}
506
Willy Tarreau9c538e02019-01-23 10:21:49 +0100507static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
508{
509 char *arg;
510
511 arg = args[*cur_arg + 1];
512 if (!*arg) {
513 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
514 return ERR_ALERT | ERR_FATAL;
515 }
516 newsrv->max_reuse = atoi(arg);
517
518 return 0;
519}
520
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100521static 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 +0100522{
523 const char *res;
524 char *arg;
525 unsigned int time;
526
527 arg = args[*cur_arg + 1];
528 if (!*arg) {
529 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
530 return ERR_ALERT | ERR_FATAL;
531 }
532 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200533 if (res == PARSE_TIME_OVER) {
534 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
535 args[*cur_arg+1], args[*cur_arg]);
536 return ERR_ALERT | ERR_FATAL;
537 }
538 else if (res == PARSE_TIME_UNDER) {
539 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
540 args[*cur_arg+1], args[*cur_arg]);
541 return ERR_ALERT | ERR_FATAL;
542 }
543 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100544 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
545 *res, args[*cur_arg]);
546 return ERR_ALERT | ERR_FATAL;
547 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100548 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100549
550 return 0;
551}
552
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200553static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
554{
555 char *arg;
556
557 arg = args[*cur_arg + 1];
558 if (!*arg) {
559 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
560 return ERR_ALERT | ERR_FATAL;
561 }
562
563 newsrv->low_idle_conns = atoi(arg);
564 return 0;
565}
566
Olivier Houchard006e3102018-12-10 18:30:32 +0100567static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
568{
569 char *arg;
570
571 arg = args[*cur_arg + 1];
572 if (!*arg) {
573 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
574 return ERR_ALERT | ERR_FATAL;
575 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100576
Olivier Houchard006e3102018-12-10 18:30:32 +0100577 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100578 if ((int)newsrv->max_idle_conns < -1) {
579 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
580 return ERR_ALERT | ERR_FATAL;
581 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100582
583 return 0;
584}
585
Willy Tarreaudff55432012-10-10 17:51:05 +0200586/* parse the "id" server keyword */
587static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
588{
589 struct eb32_node *node;
590
591 if (!*args[*cur_arg + 1]) {
592 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
593 return ERR_ALERT | ERR_FATAL;
594 }
595
596 newsrv->puid = atol(args[*cur_arg + 1]);
597 newsrv->conf.id.key = newsrv->puid;
598
599 if (newsrv->puid <= 0) {
600 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
601 return ERR_ALERT | ERR_FATAL;
602 }
603
604 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
605 if (node) {
606 struct server *target = container_of(node, struct server, conf.id);
607 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
608 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
609 target->id);
610 return ERR_ALERT | ERR_FATAL;
611 }
612
613 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200614 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200615 return 0;
616}
617
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100618/* Parse the "namespace" server keyword */
619static int srv_parse_namespace(char **args, int *cur_arg,
620 struct proxy *curproxy, struct server *newsrv, char **err)
621{
Willy Tarreaue5733232019-05-22 19:24:06 +0200622#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100623 char *arg;
624
625 arg = args[*cur_arg + 1];
626 if (!*arg) {
627 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
628 return ERR_ALERT | ERR_FATAL;
629 }
630
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100631 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100632 /* Use the namespace associated with the connection (if present). */
633 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
634 return 0;
635 }
636
637 /*
638 * As this parser may be called several times for the same 'default-server'
639 * object, or for a new 'server' instance deriving from a 'default-server'
640 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
641 */
642 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
643
644 newsrv->netns = netns_store_lookup(arg, strlen(arg));
645 if (!newsrv->netns)
646 newsrv->netns = netns_store_insert(arg);
647
648 if (!newsrv->netns) {
649 memprintf(err, "Cannot open namespace '%s'", arg);
650 return ERR_ALERT | ERR_FATAL;
651 }
652
653 return 0;
654#else
655 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
656 return ERR_ALERT | ERR_FATAL;
657#endif
658}
659
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100660/* Parse the "no-backup" server keyword */
661static int srv_parse_no_backup(char **args, int *cur_arg,
662 struct proxy *curproxy, struct server *newsrv, char **err)
663{
664 newsrv->flags &= ~SRV_F_BACKUP;
665 return 0;
666}
667
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100668
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100669/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200670static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100671{
672 srv->pp_opts &= ~flags;
673 return 0;
674}
675
676/* Parse the "no-send-proxy" server keyword */
677static int srv_parse_no_send_proxy(char **args, int *cur_arg,
678 struct proxy *curproxy, struct server *newsrv, char **err)
679{
680 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
681}
682
683/* Parse the "no-send-proxy-v2" server keyword */
684static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
685 struct proxy *curproxy, struct server *newsrv, char **err)
686{
687 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
688}
689
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200690/* Parse the "no-tfo" server keyword */
691static int srv_parse_no_tfo(char **args, int *cur_arg,
692 struct proxy *curproxy, struct server *newsrv, char **err)
693{
694 newsrv->flags &= ~SRV_F_FASTOPEN;
695 return 0;
696}
697
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100698/* Parse the "non-stick" server keyword */
699static int srv_parse_non_stick(char **args, int *cur_arg,
700 struct proxy *curproxy, struct server *newsrv, char **err)
701{
702 newsrv->flags |= SRV_F_NON_STICK;
703 return 0;
704}
705
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100706/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200707static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100708{
709 srv->pp_opts |= flags;
710 return 0;
711}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200712/* parse the "proto" server keyword */
713static int srv_parse_proto(char **args, int *cur_arg,
714 struct proxy *px, struct server *newsrv, char **err)
715{
716 struct ist proto;
717
718 if (!*args[*cur_arg + 1]) {
719 memprintf(err, "'%s' : missing value", args[*cur_arg]);
720 return ERR_ALERT | ERR_FATAL;
721 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100722 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200723 newsrv->mux_proto = get_mux_proto(proto);
724 if (!newsrv->mux_proto) {
725 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
726 return ERR_ALERT | ERR_FATAL;
727 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200728 return 0;
729}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100730
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100731/* parse the "proxy-v2-options" */
732static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
733 struct proxy *px, struct server *newsrv, char **err)
734{
735 char *p, *n;
736 for (p = args[*cur_arg+1]; p; p = n) {
737 n = strchr(p, ',');
738 if (n)
739 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100740 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100741 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100742 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100743 newsrv->pp_opts |= SRV_PP_V2_SSL;
744 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100745 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100746 newsrv->pp_opts |= SRV_PP_V2_SSL;
747 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100748 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100749 newsrv->pp_opts |= SRV_PP_V2_SSL;
750 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100751 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100752 newsrv->pp_opts |= SRV_PP_V2_SSL;
753 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100754 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100755 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100756 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100757 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100758 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100759 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100760 } else
761 goto fail;
762 }
763 return 0;
764 fail:
765 if (err)
766 memprintf(err, "'%s' : proxy v2 option not implemented", p);
767 return ERR_ALERT | ERR_FATAL;
768}
769
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100770/* Parse the "observe" server keyword */
771static int srv_parse_observe(char **args, int *cur_arg,
772 struct proxy *curproxy, struct server *newsrv, char **err)
773{
774 char *arg;
775
776 arg = args[*cur_arg + 1];
777 if (!*arg) {
778 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
779 return ERR_ALERT | ERR_FATAL;
780 }
781
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100782 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100783 newsrv->observe = HANA_OBS_NONE;
784 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100785 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100786 newsrv->observe = HANA_OBS_LAYER4;
787 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100788 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100789 if (curproxy->mode != PR_MODE_HTTP) {
790 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
791 return ERR_ALERT;
792 }
793 newsrv->observe = HANA_OBS_LAYER7;
794 }
795 else {
796 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
797 "but got '%s'\n", args[*cur_arg], arg);
798 return ERR_ALERT | ERR_FATAL;
799 }
800
801 return 0;
802}
803
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100804/* Parse the "on-error" server keyword */
805static int srv_parse_on_error(char **args, int *cur_arg,
806 struct proxy *curproxy, struct server *newsrv, char **err)
807{
808 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
809 newsrv->onerror = HANA_ONERR_FASTINTER;
810 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
811 newsrv->onerror = HANA_ONERR_FAILCHK;
812 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
813 newsrv->onerror = HANA_ONERR_SUDDTH;
814 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
815 newsrv->onerror = HANA_ONERR_MARKDWN;
816 else {
817 memprintf(err, "'%s' expects one of 'fastinter', "
818 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
819 args[*cur_arg], args[*cur_arg + 1]);
820 return ERR_ALERT | ERR_FATAL;
821 }
822
823 return 0;
824}
825
826/* Parse the "on-marked-down" server keyword */
827static int srv_parse_on_marked_down(char **args, int *cur_arg,
828 struct proxy *curproxy, struct server *newsrv, char **err)
829{
830 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
831 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
832 else {
833 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
834 args[*cur_arg], args[*cur_arg + 1]);
835 return ERR_ALERT | ERR_FATAL;
836 }
837
838 return 0;
839}
840
841/* Parse the "on-marked-up" server keyword */
842static int srv_parse_on_marked_up(char **args, int *cur_arg,
843 struct proxy *curproxy, struct server *newsrv, char **err)
844{
845 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
846 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
847 else {
848 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
849 args[*cur_arg], args[*cur_arg + 1]);
850 return ERR_ALERT | ERR_FATAL;
851 }
852
853 return 0;
854}
855
Frédéric Lécaille16186232017-03-14 16:42:49 +0100856/* Parse the "redir" server keyword */
857static int srv_parse_redir(char **args, int *cur_arg,
858 struct proxy *curproxy, struct server *newsrv, char **err)
859{
860 char *arg;
861
862 arg = args[*cur_arg + 1];
863 if (!*arg) {
864 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
865 return ERR_ALERT | ERR_FATAL;
866 }
867
868 free(newsrv->rdr_pfx);
869 newsrv->rdr_pfx = strdup(arg);
870 newsrv->rdr_len = strlen(arg);
871
872 return 0;
873}
874
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100875/* Parse the "resolvers" server keyword */
876static int srv_parse_resolvers(char **args, int *cur_arg,
877 struct proxy *curproxy, struct server *newsrv, char **err)
878{
879 free(newsrv->resolvers_id);
880 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
881 return 0;
882}
883
884/* Parse the "resolve-net" server keyword */
885static int srv_parse_resolve_net(char **args, int *cur_arg,
886 struct proxy *curproxy, struct server *newsrv, char **err)
887{
888 char *p, *e;
889 unsigned char mask;
890 struct resolv_options *opt;
891
892 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
893 memprintf(err, "'%s' expects a list of networks.",
894 args[*cur_arg]);
895 return ERR_ALERT | ERR_FATAL;
896 }
897
898 opt = &newsrv->resolv_opts;
899
900 /* Split arguments by comma, and convert it from ipv4 or ipv6
901 * string network in in_addr or in6_addr.
902 */
903 p = args[*cur_arg + 1];
904 e = p;
905 while (*p != '\0') {
906 /* If no room available, return error. */
907 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
908 memprintf(err, "'%s' exceed %d networks.",
909 args[*cur_arg], SRV_MAX_PREF_NET);
910 return ERR_ALERT | ERR_FATAL;
911 }
912 /* look for end or comma. */
913 while (*e != ',' && *e != '\0')
914 e++;
915 if (*e == ',') {
916 *e = '\0';
917 e++;
918 }
919 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
920 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
921 /* Try to convert input string from ipv4 or ipv6 network. */
922 opt->pref_net[opt->pref_net_nb].family = AF_INET;
923 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
924 &mask)) {
925 /* Try to convert input string from ipv6 network. */
926 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
927 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
928 } else {
929 /* All network conversions fail, return error. */
930 memprintf(err, "'%s' invalid network '%s'.",
931 args[*cur_arg], p);
932 return ERR_ALERT | ERR_FATAL;
933 }
934 opt->pref_net_nb++;
935 p = e;
936 }
937
938 return 0;
939}
940
941/* Parse the "resolve-opts" server keyword */
942static int srv_parse_resolve_opts(char **args, int *cur_arg,
943 struct proxy *curproxy, struct server *newsrv, char **err)
944{
945 char *p, *end;
946
947 for (p = args[*cur_arg + 1]; *p; p = end) {
948 /* cut on next comma */
949 for (end = p; *end && *end != ','; end++);
950 if (*end)
951 *(end++) = 0;
952
953 if (strcmp(p, "allow-dup-ip") == 0) {
954 newsrv->resolv_opts.accept_duplicate_ip = 1;
955 }
956 else if (strcmp(p, "ignore-weight") == 0) {
957 newsrv->resolv_opts.ignore_weight = 1;
958 }
959 else if (strcmp(p, "prevent-dup-ip") == 0) {
960 newsrv->resolv_opts.accept_duplicate_ip = 0;
961 }
962 else {
963 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
964 args[*cur_arg], p);
965 return ERR_ALERT | ERR_FATAL;
966 }
967 }
968
969 return 0;
970}
971
972/* Parse the "resolve-prefer" server keyword */
973static int srv_parse_resolve_prefer(char **args, int *cur_arg,
974 struct proxy *curproxy, struct server *newsrv, char **err)
975{
976 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
977 newsrv->resolv_opts.family_prio = AF_INET;
978 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
979 newsrv->resolv_opts.family_prio = AF_INET6;
980 else {
981 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
982 args[*cur_arg]);
983 return ERR_ALERT | ERR_FATAL;
984 }
985
986 return 0;
987}
988
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100989/* Parse the "send-proxy" server keyword */
990static int srv_parse_send_proxy(char **args, int *cur_arg,
991 struct proxy *curproxy, struct server *newsrv, char **err)
992{
993 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
994}
995
996/* Parse the "send-proxy-v2" server keyword */
997static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
998 struct proxy *curproxy, struct server *newsrv, char **err)
999{
1000 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1001}
1002
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001003/* Parse the "slowstart" server keyword */
1004static int srv_parse_slowstart(char **args, int *cur_arg,
1005 struct proxy *curproxy, struct server *newsrv, char **err)
1006{
1007 /* slowstart is stored in seconds */
1008 unsigned int val;
1009 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1010
1011 if (time_err == PARSE_TIME_OVER) {
1012 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1013 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1014 return ERR_ALERT | ERR_FATAL;
1015 }
1016 else if (time_err == PARSE_TIME_UNDER) {
1017 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1018 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1019 return ERR_ALERT | ERR_FATAL;
1020 }
1021 else if (time_err) {
1022 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1023 *time_err, newsrv->id);
1024 return ERR_ALERT | ERR_FATAL;
1025 }
1026 newsrv->slowstart = (val + 999) / 1000;
1027
1028 return 0;
1029}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001030
1031/* Parse the "source" server keyword */
1032static int srv_parse_source(char **args, int *cur_arg,
1033 struct proxy *curproxy, struct server *newsrv, char **err)
1034{
1035 char *errmsg;
1036 int port_low, port_high;
1037 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001038
1039 errmsg = NULL;
1040
1041 if (!*args[*cur_arg + 1]) {
1042 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1043 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1044 goto err;
1045 }
1046
1047 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001048 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1049 &errmsg, NULL, NULL,
1050 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 +01001051 if (!sk) {
1052 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1053 goto err;
1054 }
1055
Frédéric Lécailledba97072017-03-17 15:33:50 +01001056 newsrv->conn_src.opts |= CO_SRC_BIND;
1057 newsrv->conn_src.source_addr = *sk;
1058
1059 if (port_low != port_high) {
1060 int i;
1061
Frédéric Lécailledba97072017-03-17 15:33:50 +01001062 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1063 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1064 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1065 }
1066
1067 *cur_arg += 2;
1068 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001069 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001070#if defined(CONFIG_HAP_TRANSPARENT)
1071 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001072 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1073 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001074 goto err;
1075 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001076 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001077 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1078 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1079 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001080 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001081 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1082 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1083 }
1084 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1085 char *name, *end;
1086
1087 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001088 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001089 name++;
1090
1091 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001092 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001093 end++;
1094
1095 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1096 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1097 free(newsrv->conn_src.bind_hdr_name);
1098 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1099 newsrv->conn_src.bind_hdr_len = end - name;
1100 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1101 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1102 newsrv->conn_src.bind_hdr_occ = -1;
1103
1104 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001105 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001106 end++;
1107 if (*end == ',') {
1108 end++;
1109 name = end;
1110 if (*end == '-')
1111 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001112 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001113 end++;
1114 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1115 }
1116
1117 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001118 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1119 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001120 goto err;
1121 }
1122 }
1123 else {
1124 struct sockaddr_storage *sk;
1125 int port1, port2;
1126
1127 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001128 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1129 &errmsg, NULL, NULL,
1130 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001131 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001132 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001133 goto err;
1134 }
1135
Frédéric Lécailledba97072017-03-17 15:33:50 +01001136 newsrv->conn_src.tproxy_addr = *sk;
1137 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1138 }
1139 global.last_checks |= LSTCHK_NETADM;
1140 *cur_arg += 2;
1141 continue;
1142#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001143 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 +01001144 goto err;
1145#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1146 } /* "usesrc" */
1147
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001148 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001149#ifdef SO_BINDTODEVICE
1150 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001151 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001152 goto err;
1153 }
1154 free(newsrv->conn_src.iface_name);
1155 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1156 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1157 global.last_checks |= LSTCHK_NETADM;
1158#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001159 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001160 goto err;
1161#endif
1162 *cur_arg += 2;
1163 continue;
1164 }
1165 /* this keyword in not an option of "source" */
1166 break;
1167 } /* while */
1168
1169 return 0;
1170
1171 err:
1172 free(errmsg);
1173 return ERR_ALERT | ERR_FATAL;
1174}
1175
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001176/* Parse the "stick" server keyword */
1177static int srv_parse_stick(char **args, int *cur_arg,
1178 struct proxy *curproxy, struct server *newsrv, char **err)
1179{
1180 newsrv->flags &= ~SRV_F_NON_STICK;
1181 return 0;
1182}
1183
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001184/* Parse the "track" server keyword */
1185static int srv_parse_track(char **args, int *cur_arg,
1186 struct proxy *curproxy, struct server *newsrv, char **err)
1187{
1188 char *arg;
1189
1190 arg = args[*cur_arg + 1];
1191 if (!*arg) {
1192 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1193 return ERR_ALERT | ERR_FATAL;
1194 }
1195
1196 free(newsrv->trackit);
1197 newsrv->trackit = strdup(arg);
1198
1199 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001200}
1201
1202/* Parse the "socks4" server keyword */
1203static int srv_parse_socks4(char **args, int *cur_arg,
1204 struct proxy *curproxy, struct server *newsrv, char **err)
1205{
1206 char *errmsg;
1207 int port_low, port_high;
1208 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001209
1210 errmsg = NULL;
1211
1212 if (!*args[*cur_arg + 1]) {
1213 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1214 goto err;
1215 }
1216
1217 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001218 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1219 &errmsg, NULL, NULL,
1220 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001221 if (!sk) {
1222 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1223 goto err;
1224 }
1225
Alexander Liu2a54bb72019-05-22 19:44:48 +08001226 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1227 newsrv->socks4_addr = *sk;
1228
Alexander Liu2a54bb72019-05-22 19:44:48 +08001229 return 0;
1230
1231 err:
1232 free(errmsg);
1233 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001234}
1235
Frédéric Lécailledba97072017-03-17 15:33:50 +01001236
Willy Tarreau034c88c2017-01-23 23:36:45 +01001237/* parse the "tfo" server keyword */
1238static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1239{
1240 newsrv->flags |= SRV_F_FASTOPEN;
1241 return 0;
1242}
1243
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001244/* parse the "usesrc" server keyword */
1245static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1246{
1247 memprintf(err, "'%s' only allowed after a '%s' statement.",
1248 "usesrc", "source");
1249 return ERR_ALERT | ERR_FATAL;
1250}
1251
1252/* parse the "weight" server keyword */
1253static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1254{
1255 int w;
1256
1257 w = atol(args[*cur_arg + 1]);
1258 if (w < 0 || w > SRV_UWGHT_MAX) {
1259 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1260 newsrv->id, SRV_UWGHT_MAX, w);
1261 return ERR_ALERT | ERR_FATAL;
1262 }
1263 newsrv->uweight = newsrv->iweight = w;
1264
1265 return 0;
1266}
1267
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001268/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001269 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001270 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001271 *
1272 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001273 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001274void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001275{
Willy Tarreau751153e2021-02-17 13:33:24 +01001276 struct stream *stream;
1277 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001278 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001279
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001280 for (thr = 0; thr < global.nbthread; thr++)
1281 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1282 if (stream->srv_conn == srv)
1283 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001284}
1285
1286/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001287 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001288 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001289 *
1290 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001291 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001292void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001293{
1294 struct server *srv;
1295
1296 for (srv = px->srv; srv != NULL; srv = srv->next)
1297 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001298 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001299}
1300
Willy Tarreaubda92272014-05-20 21:55:30 +02001301/* Appends some information to a message string related to a server going UP or
1302 * DOWN. If both <forced> and <reason> are null and the server tracks another
1303 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001304 * If <check> is non-null, an entire string describing the check result will be
1305 * appended after a comma and a space (eg: to report some information from the
1306 * check that changed the state). In the other case, the string will be built
1307 * using the check results stored into the struct server if present.
1308 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001309 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001310 *
1311 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001312 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001313void srv_append_status(struct buffer *msg, struct server *s,
1314 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001315{
Emeric Brun5a133512017-10-19 14:42:30 +02001316 short status = s->op_st_chg.status;
1317 short code = s->op_st_chg.code;
1318 long duration = s->op_st_chg.duration;
1319 char *desc = s->op_st_chg.reason;
1320
1321 if (check) {
1322 status = check->status;
1323 code = check->code;
1324 duration = check->duration;
1325 desc = check->desc;
1326 }
1327
1328 if (status != -1) {
1329 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1330
1331 if (status >= HCHK_STATUS_L57DATA)
1332 chunk_appendf(msg, ", code: %d", code);
1333
1334 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001335 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001336
1337 chunk_appendf(msg, ", info: \"");
1338
1339 chunk_initlen(&src, desc, 0, strlen(desc));
1340 chunk_asciiencode(msg, &src, '"');
1341
1342 chunk_appendf(msg, "\"");
1343 }
1344
1345 if (duration >= 0)
1346 chunk_appendf(msg, ", check duration: %ldms", duration);
1347 }
1348 else if (desc && *desc) {
1349 chunk_appendf(msg, ", %s", desc);
1350 }
1351 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001352 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001353 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001354
1355 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001356 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001357 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1358 " %d sessions active, %d requeued, %d remaining in queue",
1359 s->proxy->srv_act, s->proxy->srv_bck,
1360 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1361 s->cur_sess, xferred, s->nbpend);
1362 else
1363 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1364 " %d sessions requeued, %d total in queue",
1365 s->proxy->srv_act, s->proxy->srv_bck,
1366 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1367 xferred, s->nbpend);
1368 }
1369}
1370
Emeric Brun5a133512017-10-19 14:42:30 +02001371/* Marks server <s> down, regardless of its checks' statuses. The server is
1372 * registered in a list to postpone the counting of the remaining servers on
1373 * the proxy and transfers queued streams whenever possible to other servers at
1374 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1375 * non-null as the reason for going down or the available data from the check
1376 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001377 *
1378 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001379 */
Emeric Brun5a133512017-10-19 14:42:30 +02001380void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001381{
1382 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001383
Emeric Brun64cc49c2017-10-03 14:46:45 +02001384 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001385 return;
1386
Emeric Brun52a91d32017-08-31 14:41:55 +02001387 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001388 *s->op_st_chg.reason = 0;
1389 s->op_st_chg.status = -1;
1390 if (reason) {
1391 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1392 }
1393 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001394 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001395 s->op_st_chg.code = check->code;
1396 s->op_st_chg.status = check->status;
1397 s->op_st_chg.duration = check->duration;
1398 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001399
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001400 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001401 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001402
Emeric Brun9f0b4582017-10-23 14:39:51 +02001403 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001404 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001405 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001406 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001407 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001408}
1409
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001410/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001411 * in maintenance. The server is registered in a list to postpone the counting
1412 * of the remaining servers on the proxy and tries to grab requests from the
1413 * proxy at a sync point. Maintenance servers are ignored. It stores the
1414 * <reason> if non-null as the reason for going down or the available data
1415 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001416 *
1417 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001418 */
Emeric Brun5a133512017-10-19 14:42:30 +02001419void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001420{
1421 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001422
Emeric Brun64cc49c2017-10-03 14:46:45 +02001423 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001424 return;
1425
Emeric Brun52a91d32017-08-31 14:41:55 +02001426 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001427 return;
1428
Emeric Brun52a91d32017-08-31 14:41:55 +02001429 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001430 *s->op_st_chg.reason = 0;
1431 s->op_st_chg.status = -1;
1432 if (reason) {
1433 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1434 }
1435 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001436 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001437 s->op_st_chg.code = check->code;
1438 s->op_st_chg.status = check->status;
1439 s->op_st_chg.duration = check->duration;
1440 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001441
Emeric Brun64cc49c2017-10-03 14:46:45 +02001442 if (s->slowstart <= 0)
1443 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001444
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001445 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001446 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001447
Emeric Brun9f0b4582017-10-23 14:39:51 +02001448 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001449 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001450 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001451 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001452 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001453}
1454
Willy Tarreau8eb77842014-05-21 13:54:57 +02001455/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001456 * isn't in maintenance. The server is registered in a list to postpone the
1457 * counting of the remaining servers on the proxy and tries to grab requests
1458 * from the proxy. Maintenance servers are ignored. It stores the
1459 * <reason> if non-null as the reason for going down or the available data
1460 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001461 * up. Note that it makes use of the trash to build the log strings, so <reason>
1462 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001463 *
1464 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001465 */
Emeric Brun5a133512017-10-19 14:42:30 +02001466void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001467{
1468 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001469
Emeric Brun64cc49c2017-10-03 14:46:45 +02001470 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001471 return;
1472
Emeric Brun52a91d32017-08-31 14:41:55 +02001473 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001474 return;
1475
Emeric Brun52a91d32017-08-31 14:41:55 +02001476 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001477 *s->op_st_chg.reason = 0;
1478 s->op_st_chg.status = -1;
1479 if (reason) {
1480 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1481 }
1482 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001483 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001484 s->op_st_chg.code = check->code;
1485 s->op_st_chg.status = check->status;
1486 s->op_st_chg.duration = check->duration;
1487 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001488
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001489 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001490 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001491
Emeric Brun9f0b4582017-10-23 14:39:51 +02001492 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001493 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001494 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001495 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001496 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001497}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001498
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001499/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1500 * enforce either maint mode or drain mode. It is not allowed to set more than
1501 * one flag at once. The equivalent "inherited" flag is propagated to all
1502 * tracking servers. Maintenance mode disables health checks (but not agent
1503 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001504 * is done. If <cause> is non-null, it will be displayed at the end of the log
1505 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001506 *
1507 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001508 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001509void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001510{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001511 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001512
1513 if (!mode)
1514 return;
1515
1516 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001517 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001518 return;
1519
Emeric Brun52a91d32017-08-31 14:41:55 +02001520 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001521 if (cause)
1522 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1523
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001524 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001525 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001526
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001527 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001528 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1529 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001530 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001531
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001532 /* compute the inherited flag to propagate */
1533 if (mode & SRV_ADMF_MAINT)
1534 mode = SRV_ADMF_IMAINT;
1535 else if (mode & SRV_ADMF_DRAIN)
1536 mode = SRV_ADMF_IDRAIN;
1537
Emeric Brun9f0b4582017-10-23 14:39:51 +02001538 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001539 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001540 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001541 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001542 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001543}
1544
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001545/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1546 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1547 * than one flag at once. The equivalent "inherited" flag is propagated to all
1548 * tracking servers. Leaving maintenance mode re-enables health checks. When
1549 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001550 *
1551 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001552 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001553void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001554{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001555 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001556
1557 if (!mode)
1558 return;
1559
1560 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001561 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001562 return;
1563
Emeric Brun52a91d32017-08-31 14:41:55 +02001564 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001565
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001566 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001567 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001568
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001569 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001570 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1571 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001572 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001573
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001574 if (mode & SRV_ADMF_MAINT)
1575 mode = SRV_ADMF_IMAINT;
1576 else if (mode & SRV_ADMF_DRAIN)
1577 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001578
Emeric Brun9f0b4582017-10-23 14:39:51 +02001579 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001580 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001581 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001582 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001583 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001584}
1585
Willy Tarreau757478e2016-11-03 19:22:19 +01001586/* principle: propagate maint and drain to tracking servers. This is useful
1587 * upon startup so that inherited states are correct.
1588 */
1589static void srv_propagate_admin_state(struct server *srv)
1590{
1591 struct server *srv2;
1592
1593 if (!srv->trackers)
1594 return;
1595
1596 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001597 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001598 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001599 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001600
Emeric Brun52a91d32017-08-31 14:41:55 +02001601 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001602 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001603 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001604 }
1605}
1606
1607/* Compute and propagate the admin states for all servers in proxy <px>.
1608 * Only servers *not* tracking another one are considered, because other
1609 * ones will be handled when the server they track is visited.
1610 */
1611void srv_compute_all_admin_states(struct proxy *px)
1612{
1613 struct server *srv;
1614
1615 for (srv = px->srv; srv; srv = srv->next) {
1616 if (srv->track)
1617 continue;
1618 srv_propagate_admin_state(srv);
1619 }
1620}
1621
Willy Tarreaudff55432012-10-10 17:51:05 +02001622/* Note: must not be declared <const> as its list will be overwritten.
1623 * Please take care of keeping this list alphabetically sorted, doing so helps
1624 * all code contributors.
1625 * Optional keywords are also declared with a NULL ->parse() function so that
1626 * the config parser can report an appropriate error when a known keyword was
1627 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001628 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001629 */
1630static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001631 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001632 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001633 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1634 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001635 { "error-limit", srv_parse_error_limit, 1, 1, 0 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001636 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001637 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1638 { "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 +01001639 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1640 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001641 { "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 +01001642 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001643 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001644 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1645 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1646 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1647 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001648 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
1649 { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */
1650 { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */
1651 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */
1652 { "on-marked-up", srv_parse_on_marked_up, 1, 1, 0 }, /* Configure the action when a server is marked up */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001653 { "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 */
1654 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1655 { "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 +01001656 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001657 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001658 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001659 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001660 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001661 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001662 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001663 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1664 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001665 { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001666 { "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 +01001667 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001668 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001669 { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */
1670 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001671 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1672 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001673 { NULL, NULL, 0 },
1674}};
1675
Willy Tarreau0108d902018-11-25 19:14:37 +01001676INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001677
Willy Tarreau004e0452013-11-21 11:22:01 +01001678/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001679 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001680 * state is automatically disabled if the time is elapsed. If <must_update> is
1681 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001682 *
1683 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001684 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001685void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001686{
1687 struct proxy *px = sv->proxy;
1688 unsigned w;
1689
1690 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1691 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001692 if (sv->next_state == SRV_ST_STARTING)
1693 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001694 }
1695
1696 /* We must take care of not pushing the server to full throttle during slow starts.
1697 * It must also start immediately, at least at the minimal step when leaving maintenance.
1698 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001699 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001700 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1701 else
1702 w = px->lbprm.wdiv;
1703
Emeric Brun52a91d32017-08-31 14:41:55 +02001704 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001705
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001706 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001707 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001708 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001709}
1710
Willy Tarreaubaaee002006-06-26 02:48:02 +02001711/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001712 * Parses weight_str and configures sv accordingly.
1713 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001714 *
1715 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001716 */
1717const char *server_parse_weight_change_request(struct server *sv,
1718 const char *weight_str)
1719{
1720 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001721 long int w;
1722 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001723
1724 px = sv->proxy;
1725
1726 /* if the weight is terminated with '%', it is set relative to
1727 * the initial weight, otherwise it is absolute.
1728 */
1729 if (!*weight_str)
1730 return "Require <weight> or <weight%>.\n";
1731
Simon Hormanb796afa2013-02-12 10:45:53 +09001732 w = strtol(weight_str, &end, 10);
1733 if (end == weight_str)
1734 return "Empty weight string empty or preceded by garbage";
1735 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001736 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001737 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001738 /* Avoid integer overflow */
1739 if (w > 25600)
1740 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001741 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001742 if (w > 256)
1743 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001744 }
1745 else if (w < 0 || w > 256)
1746 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001747 else if (end[0] != '\0')
1748 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001749
1750 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1751 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1752
1753 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001754 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001755
1756 return NULL;
1757}
1758
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001759/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001760 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1761 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001762 * Returns:
1763 * - error string on error
1764 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001765 *
1766 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001767 */
1768const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001769 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001770{
1771 unsigned char ip[INET6_ADDRSTRLEN];
1772
1773 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001774 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001775 return NULL;
1776 }
1777 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001778 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001779 return NULL;
1780 }
1781
1782 return "Could not understand IP address format.\n";
1783}
1784
Willy Tarreau46b7f532018-08-21 11:54:26 +02001785/*
1786 * Must be called with the server lock held.
1787 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001788const char *server_parse_maxconn_change_request(struct server *sv,
1789 const char *maxconn_str)
1790{
1791 long int v;
1792 char *end;
1793
1794 if (!*maxconn_str)
1795 return "Require <maxconn>.\n";
1796
1797 v = strtol(maxconn_str, &end, 10);
1798 if (end == maxconn_str)
1799 return "maxconn string empty or preceded by garbage";
1800 else if (end[0] != '\0')
1801 return "Trailing garbage in maxconn string";
1802
1803 if (sv->maxconn == sv->minconn) { // static maxconn
1804 sv->maxconn = sv->minconn = v;
1805 } else { // dynamic maxconn
1806 sv->maxconn = v;
1807 }
1808
1809 if (may_dequeue_tasks(sv, sv->proxy))
1810 process_srv_queue(sv);
1811
1812 return NULL;
1813}
1814
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001815#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001816static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1817 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001818{
1819 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001820 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001821 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001822 NULL,
1823 };
1824
1825 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001826 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001827
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001828 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001829}
1830
1831static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1832{
1833 struct sample_expr *expr;
1834
1835 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 +01001836 if (!expr) {
1837 memprintf(err, "error detected while parsing sni expression : %s", *err);
1838 return ERR_ALERT | ERR_FATAL;
1839 }
1840
1841 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1842 memprintf(err, "error detected while parsing sni expression : "
1843 " fetch method '%s' extracts information from '%s', "
1844 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001845 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001846 return ERR_ALERT | ERR_FATAL;
1847 }
1848
1849 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1850 release_sample_expr(newsrv->ssl_ctx.sni);
1851 newsrv->ssl_ctx.sni = expr;
1852
1853 return 0;
1854}
1855#endif
1856
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001857static 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 +01001858{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001859 char *msg = "error encountered while processing ";
1860 char *quote = "'";
1861 char *token = args[cur_arg];
1862
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001863 if (err && *err) {
1864 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001865 msg = *err;
1866 quote = "";
1867 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001868 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001869
1870 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1871 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1872 file, linenum, args[0], args[1],
1873 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001874 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001875 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1876 file, linenum, args[0], args[1],
1877 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001878}
1879
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001880static void srv_conn_src_sport_range_cpy(struct server *srv,
1881 struct server *src)
1882{
1883 int range_sz;
1884
1885 range_sz = src->conn_src.sport_range->size;
1886 if (range_sz > 0) {
1887 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1888 if (srv->conn_src.sport_range != NULL) {
1889 int i;
1890
1891 for (i = 0; i < range_sz; i++) {
1892 srv->conn_src.sport_range->ports[i] =
1893 src->conn_src.sport_range->ports[i];
1894 }
1895 }
1896 }
1897}
1898
1899/*
1900 * Copy <src> server connection source settings to <srv> server everything needed.
1901 */
1902static void srv_conn_src_cpy(struct server *srv, struct server *src)
1903{
1904 srv->conn_src.opts = src->conn_src.opts;
1905 srv->conn_src.source_addr = src->conn_src.source_addr;
1906
1907 /* Source port range copy. */
1908 if (src->conn_src.sport_range != NULL)
1909 srv_conn_src_sport_range_cpy(srv, src);
1910
1911#ifdef CONFIG_HAP_TRANSPARENT
1912 if (src->conn_src.bind_hdr_name != NULL) {
1913 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1914 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1915 }
1916 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1917 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1918#endif
1919 if (src->conn_src.iface_name != NULL)
1920 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1921}
1922
1923/*
1924 * Copy <src> server SSL settings to <srv> server allocating
1925 * everything needed.
1926 */
1927#if defined(USE_OPENSSL)
1928static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1929{
1930 if (src->ssl_ctx.ca_file != NULL)
1931 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1932 if (src->ssl_ctx.crl_file != NULL)
1933 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001934
1935 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1936
1937 if (src->ssl_ctx.verify_host != NULL)
1938 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1939 if (src->ssl_ctx.ciphers != NULL)
1940 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001941 if (src->ssl_ctx.options)
1942 srv->ssl_ctx.options = src->ssl_ctx.options;
1943 if (src->ssl_ctx.methods.flags)
1944 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1945 if (src->ssl_ctx.methods.min)
1946 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1947 if (src->ssl_ctx.methods.max)
1948 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1949
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001950#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001951 if (src->ssl_ctx.ciphersuites != NULL)
1952 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1953#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001954 if (src->sni_expr != NULL)
1955 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001956
1957#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1958 if (src->ssl_ctx.alpn_str) {
1959 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1960 if (srv->ssl_ctx.alpn_str) {
1961 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1962 src->ssl_ctx.alpn_len);
1963 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1964 }
1965 }
1966#endif
1967#ifdef OPENSSL_NPN_NEGOTIATED
1968 if (src->ssl_ctx.npn_str) {
1969 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1970 if (srv->ssl_ctx.npn_str) {
1971 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1972 src->ssl_ctx.npn_len);
1973 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1974 }
1975 }
1976#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001977}
1978#endif
1979
1980/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001981 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001982 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001983 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001984 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01001985int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001986{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001987 char *hostname_dn;
1988 int hostname_len, hostname_dn_len;
1989
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001990 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001991 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001992
Christopher Faulet67957bd2017-09-27 11:00:59 +02001993 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001994 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01001995 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
1996 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001997 if (hostname_dn_len == -1)
1998 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001999
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002000
Christopher Faulet67957bd2017-09-27 11:00:59 +02002001 free(srv->hostname);
2002 free(srv->hostname_dn);
2003 srv->hostname = strdup(hostname);
2004 srv->hostname_dn = strdup(hostname_dn);
2005 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002006 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002007 goto err;
2008
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002009 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002010
2011 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002012 ha_free(&srv->hostname);
2013 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002014 return -1;
2015}
2016
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002017/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002018 * Copy <src> server settings to <srv> server allocating
2019 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002020 * This function is not supposed to be called at any time, but only
2021 * during server settings parsing or during server allocations from
2022 * a server template, and just after having calloc()'ed a new server.
2023 * So, <src> may only be a default server (when parsing server settings)
2024 * or a server template (during server allocations from a server template).
2025 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2026 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002027 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002028static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002029{
2030 /* Connection source settings copy */
2031 srv_conn_src_cpy(srv, src);
2032
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002033 if (srv_tmpl) {
2034 srv->addr = src->addr;
2035 srv->svc_port = src->svc_port;
2036 }
2037
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002038 srv->pp_opts = src->pp_opts;
2039 if (src->rdr_pfx != NULL) {
2040 srv->rdr_pfx = strdup(src->rdr_pfx);
2041 srv->rdr_len = src->rdr_len;
2042 }
2043 if (src->cookie != NULL) {
2044 srv->cookie = strdup(src->cookie);
2045 srv->cklen = src->cklen;
2046 }
2047 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002048 srv->check.addr = src->check.addr;
2049 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002050 srv->check.use_ssl = src->check.use_ssl;
2051 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002052 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002053 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002054 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002055 /* Note: 'flags' field has potentially been already initialized. */
2056 srv->flags |= src->flags;
2057 srv->do_check = src->do_check;
2058 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002059 srv->check.inter = src->check.inter;
2060 srv->check.fastinter = src->check.fastinter;
2061 srv->check.downinter = src->check.downinter;
2062 srv->agent.use_ssl = src->agent.use_ssl;
2063 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002064
2065 if (src->agent.tcpcheck_rules) {
2066 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2067 if (srv->agent.tcpcheck_rules) {
2068 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2069 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2070 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2071 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2072 &src->agent.tcpcheck_rules->preset_vars);
2073 }
2074 }
2075
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002076 srv->agent.inter = src->agent.inter;
2077 srv->agent.fastinter = src->agent.fastinter;
2078 srv->agent.downinter = src->agent.downinter;
2079 srv->maxqueue = src->maxqueue;
2080 srv->minconn = src->minconn;
2081 srv->maxconn = src->maxconn;
2082 srv->slowstart = src->slowstart;
2083 srv->observe = src->observe;
2084 srv->onerror = src->onerror;
2085 srv->onmarkeddown = src->onmarkeddown;
2086 srv->onmarkedup = src->onmarkedup;
2087 if (src->trackit != NULL)
2088 srv->trackit = strdup(src->trackit);
2089 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2090 srv->uweight = srv->iweight = src->iweight;
2091
2092 srv->check.send_proxy = src->check.send_proxy;
2093 /* health: up, but will fall down at first failure */
2094 srv->check.rise = srv->check.health = src->check.rise;
2095 srv->check.fall = src->check.fall;
2096
2097 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002098 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2099 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2100 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002101 srv->check.state |= CHK_ST_PAUSED;
2102 srv->check.health = 0;
2103 }
2104
2105 /* health: up but will fall down at first failure */
2106 srv->agent.rise = srv->agent.health = src->agent.rise;
2107 srv->agent.fall = src->agent.fall;
2108
2109 if (src->resolvers_id != NULL)
2110 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002111 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2112 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2113 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2114 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2115 srv->resolv_opts.family_prio = AF_INET6;
2116 memcpy(srv->resolv_opts.pref_net,
2117 src->resolv_opts.pref_net,
2118 sizeof srv->resolv_opts.pref_net);
2119 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002120
2121 srv->init_addr_methods = src->init_addr_methods;
2122 srv->init_addr = src->init_addr;
2123#if defined(USE_OPENSSL)
2124 srv_ssl_settings_cpy(srv, src);
2125#endif
2126#ifdef TCP_USER_TIMEOUT
2127 srv->tcp_ut = src->tcp_ut;
2128#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002129 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002130 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002131 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002132 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002133 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002134
Olivier Houchard8da5f982017-08-04 18:35:36 +02002135 if (srv_tmpl)
2136 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002137
2138 srv->check.via_socks4 = src->check.via_socks4;
2139 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002140}
2141
Willy Tarreau198e92a2021-03-05 10:23:32 +01002142/* allocate a server and attach it to the global servers_list. Returns
2143 * the server on success, otherwise NULL.
2144 */
William Lallemand313bfd12018-10-26 14:47:32 +02002145struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002146{
2147 struct server *srv;
2148
2149 srv = calloc(1, sizeof *srv);
2150 if (!srv)
2151 return NULL;
2152
2153 srv->obj_type = OBJ_TYPE_SERVER;
2154 srv->proxy = proxy;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04002155 srv->pendconns = EB_ROOT;
Willy Tarreau2b718102021-04-21 07:32:39 +02002156 LIST_APPEND(&servers_list, &srv->global_list);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002157
Emeric Brun52a91d32017-08-31 14:41:55 +02002158 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002159 srv->last_change = now.tv_sec;
2160
Christopher Faulet38290462020-04-21 11:46:40 +02002161 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002162 srv->check.status = HCHK_STATUS_INI;
2163 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002164 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002165 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002166
Christopher Faulet38290462020-04-21 11:46:40 +02002167 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002168 srv->agent.status = HCHK_STATUS_INI;
2169 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002170 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002171 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002172#if defined(USE_QUIC)
2173 srv->cids = EB_ROOT_UNIQUE;
2174#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002175
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002176 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002177#ifdef USE_OPENSSL
2178 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2179#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002180
Willy Tarreau975b1552019-06-06 16:25:55 +02002181 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002182 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002183 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002184 return srv;
2185}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002186
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002187/* Deallocate a server <srv> and its member. <srv> must be allocated.
2188 */
2189void free_server(struct server *srv)
2190{
2191 task_destroy(srv->warmup);
2192
2193 free(srv->id);
2194 free(srv->cookie);
2195 free(srv->hostname);
2196 free(srv->hostname_dn);
2197 free((char*)srv->conf.file);
2198 free(srv->per_thr);
2199 free(srv->curr_idle_thr);
2200 free(srv->resolvers_id);
2201 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002202 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002203
2204 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2205 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2206 xprt_get(XPRT_SSL)->destroy_srv(srv);
2207 }
2208 HA_SPIN_DESTROY(&srv->lock);
2209
Willy Tarreau2b718102021-04-21 07:32:39 +02002210 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002211
2212 EXTRA_COUNTERS_FREE(srv->extra_counters);
2213
2214 free(srv);
2215 srv = NULL;
2216}
2217
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002218/*
2219 * Parse as much as possible such a range string argument: low[-high]
2220 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2221 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2222 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2223 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002224 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002225static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2226 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002227{
2228 char *nb_high_arg;
2229
2230 *nb_high = 0;
2231 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002232 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002233
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002234 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002235 *nb_high_arg++ = '\0';
2236 *nb_high = atoi(nb_high_arg);
2237 }
2238 else {
2239 *nb_high += *nb_low;
2240 *nb_low = 1;
2241 }
2242
2243 if (*nb_low < 0 || *nb_high < *nb_low)
2244 return -1;
2245
2246 return 0;
2247}
2248
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002249/* Parse as much as possible such a range string argument: low[-high]
2250 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2251 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2252 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002253 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002254 * initialize a new server on startup.
2255 *
2256 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2257 * Returns 0 if succeeded, -1 if not.
2258 */
2259static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2260 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002261{
2262 chunk_printf(&trash, "%s%d", prefix, nb);
2263 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002264 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002265}
2266
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002267/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002268 * Note that a server template is a special server with
2269 * a few different parameters than a server which has
2270 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002271 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002272 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002273 * initialize a new server on startup.
2274 *
Joseph Herlant44466822018-11-15 08:57:51 -08002275 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002276 * 'srv' template included.
2277 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002278static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002279{
2280 int i;
2281 struct server *newsrv;
2282
2283 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 +02002284 newsrv = new_server(px);
2285 if (!newsrv)
2286 goto err;
2287
Christopher Faulet75bef002020-11-02 22:04:55 +01002288 newsrv->conf.file = strdup(srv->conf.file);
2289 newsrv->conf.line = srv->conf.line;
2290
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002291 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002292 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002293#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2294 if (newsrv->sni_expr) {
2295 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2296 if (!newsrv->ssl_ctx.sni)
2297 goto err;
2298 }
2299#endif
2300 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002301 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002302
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002303 /* Linked backwards first. This will be restablished after parsing. */
2304 newsrv->next = px->srv;
2305 px->srv = newsrv;
2306 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002307 _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 +02002308
2309 return i - srv->tmpl_info.nb_low;
2310
2311 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002312 _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 +02002313 if (newsrv) {
2314#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2315 release_sample_expr(newsrv->ssl_ctx.sni);
2316#endif
2317 free_check(&newsrv->agent);
2318 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002319 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002320 }
2321 free(newsrv);
2322 return i - srv->tmpl_info.nb_low;
2323}
2324
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002325/* Allocate a new server pointed by <srv> and try to parse the first arguments
2326 * in <args> as an address for a server or an address-range for a template or
2327 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2328 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002329 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002330 * initialize a new server on startup.
2331 *
2332 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2333 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2334 * <srv> will be set to NULL.
2335 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002336static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2337 struct proxy *curproxy,
2338 int parse_flags, char **errmsg)
Willy Tarreau272adea2014-03-31 10:39:59 +02002339{
2340 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002341 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002342 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002343 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002344 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002345
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002346 *srv = NULL;
2347
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002348 /* There is no mandatory first arguments for default server. */
2349 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2350 if (parse_flags & SRV_PARSE_TEMPLATE) {
2351 if (!*args[3]) {
2352 /* 'server-template' line number of argument check. */
2353 memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002354 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002355 err_code |= ERR_ALERT | ERR_FATAL;
2356 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002357 }
2358
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002359 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002360 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002361 else {
2362 if (!*args[2]) {
2363 /* 'server' line number of argument check. */
2364 memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002365 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002370 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002371 }
2372
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002373 if (err) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002374 memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.",
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002375 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
2378 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002379 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002380
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002381 *cur_arg = 2;
2382 if (parse_flags & SRV_PARSE_TEMPLATE) {
2383 /* Parse server-template <nb | range> arg. */
2384 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
2385 memprintf(errmsg, "Wrong %s number or range arg '%s'.",
2386 args[0], args[*cur_arg]);
2387 err_code |= ERR_ALERT | ERR_FATAL;
2388 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002389 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002390 (*cur_arg)++;
2391 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002392
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002393 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2394 struct sockaddr_storage *sk;
2395 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002396
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002397 *srv = newsrv = new_server(curproxy);
2398 if (!newsrv) {
2399 memprintf(errmsg, "out of memory.");
2400 err_code |= ERR_ALERT | ERR_ABORT;
2401 goto out;
2402 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002403
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002404 if (parse_flags & SRV_PARSE_TEMPLATE) {
2405 newsrv->tmpl_info.nb_low = tmpl_range_low;
2406 newsrv->tmpl_info.nb_high = tmpl_range_high;
2407 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002408
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002409 if (parse_flags & SRV_PARSE_DYNAMIC)
2410 newsrv->flags |= SRV_F_DYNAMIC;
2411
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002412 /* Note: for a server template, its id is its prefix.
2413 * This is a temporary id which will be used for server allocations to come
2414 * after parsing.
2415 */
2416 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2417 newsrv->id = strdup(args[1]);
2418 else
2419 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002420
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002421 /* several ways to check the port component :
2422 * - IP => port=+0, relative (IPv4 only)
2423 * - IP: => port=+0, relative
2424 * - IP:N => port=N, absolute
2425 * - IP:+N => port=+N, relative
2426 * - IP:-N => port=-N, relative
2427 */
2428 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2429 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002430
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002431 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
2432 errmsg, NULL, &fqdn,
2433 (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);
2434 if (!sk) {
2435 memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg);
2436 err_code |= ERR_ALERT | ERR_FATAL;
2437 goto out;
2438 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002439
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002440 if (!port1 || !port2) {
2441 /* no port specified, +offset, -offset */
2442 newsrv->flags |= SRV_F_MAPPORTS;
2443 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002444
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002445 /* save hostname and create associated name resolution */
2446 if (fqdn) {
2447 if (fqdn[0] == '_') { /* SRV record */
2448 /* Check if a SRV request already exists, and if not, create it */
2449 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2450 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2451 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002452 err_code |= ERR_ALERT | ERR_FATAL;
2453 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002454 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002455 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002456 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
2457 memprintf(errmsg, "Can't create DNS resolution for server '%s'",
2458 newsrv->id);
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 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002463
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002464 newsrv->addr = *sk;
2465 newsrv->svc_port = port;
2466 // we don't need to lock the server here, because
2467 // we are in the process of initializing
2468 srv_set_addr_desc(newsrv);
2469
2470 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
2471 memprintf(errmsg, "Unknown protocol family %d '%s'",
2472 newsrv->addr.ss_family, args[*cur_arg]);
2473 err_code |= ERR_ALERT | ERR_FATAL;
2474 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002475 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002476
2477 (*cur_arg)++;
2478 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002479 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2480 /* Copy default server settings to new server */
2481 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2482 } else {
2483 /* Initialize dynamic server weight to 1 */
2484 newsrv->uweight = newsrv->iweight = 1;
2485
2486 /* A dynamic server is disabled on startup */
2487 newsrv->next_admin = SRV_ADMF_FMAINT;
2488 newsrv->next_state = SRV_ST_STOPPED;
2489 server_recalc_eweight(newsrv, 0);
2490 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002491 HA_SPIN_INIT(&newsrv->lock);
2492 }
2493 else {
2494 *srv = newsrv = &curproxy->defsrv;
2495 *cur_arg = 1;
2496 newsrv->resolv_opts.family_prio = AF_INET6;
2497 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002498 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002499
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002500 free(fqdn);
2501 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002502
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002503out:
2504 free(fqdn);
2505 return err_code;
2506}
Willy Tarreau272adea2014-03-31 10:39:59 +02002507
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002508/* Parse the server keyword in <args>.
2509 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2510 * might not be the case if an error is reported.
2511 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002512 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002513 * initialize a new server on startup.
2514 *
2515 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2516 * interrupted.
2517 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002518static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2519 struct proxy *curproxy,
2520 int parse_flags, char **errmsg)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002521{
2522 int err_code = 0;
2523 struct srv_kw *kw;
2524 const char *best;
Willy Tarreau272adea2014-03-31 10:39:59 +02002525
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002526 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002527 if (!kw) {
2528 best = srv_find_best_kw(args[*cur_arg]);
2529 if (best)
2530 memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?",
2531 args[*cur_arg], best);
2532 else
2533 memprintf(errmsg, "unknown keyword '%s'.",
2534 args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002535
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002536 return ERR_ALERT | ERR_FATAL;
2537 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002538
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002539 if (!kw->parse) {
2540 memprintf(errmsg, "'%s' option is not implemented in this version (check build options)",
2541 args[*cur_arg]);
2542 err_code = ERR_ALERT | ERR_FATAL;
2543 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002544 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002545
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002546 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002547 memprintf(errmsg, "'%s' option is not accepted in default-server sections",
2548 args[*cur_arg]);
2549 err_code = ERR_ALERT;
2550 goto out;
2551 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002552 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
2553 memprintf(errmsg, "'%s' option is not accepted for dynamic server",
2554 args[*cur_arg]);
2555 err_code |= ERR_ALERT;
2556 goto out;
2557 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002558
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002559 err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002560
2561out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002562 if (kw->skip != -1)
2563 *cur_arg += 1 + kw->skip;
2564
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002565 return err_code;
2566}
2567
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002568#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002569/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002570 * initialize a new server on startup.
2571 */
2572static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2573 struct server *srv, struct proxy *proxy,
2574 char **errmsg)
2575{
2576 int ret;
2577
2578 if (!srv->sni_expr)
2579 return 0;
2580
2581 ret = server_parse_sni_expr(srv, proxy, errmsg);
2582 if (!ret)
2583 return 0;
2584
2585 return ret;
2586}
2587#endif
2588
2589/* Server initializations finalization.
2590 * Initialize health check, agent check and SNI expression if enabled.
2591 * Must not be called for a default server instance.
2592 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002593 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002594 * initialize a new server on startup.
2595 */
2596static int _srv_parse_finalize(char **args, int cur_arg,
2597 struct server *srv, struct proxy *px,
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002598 int parse_flags, char **errmsg)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002599{
2600#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2601 int ret;
2602#endif
2603
2604 if (srv->do_check && srv->trackit) {
2605 memprintf(errmsg, "unable to enable checks and tracking at the same time!");
2606 return ERR_ALERT | ERR_FATAL;
2607 }
2608
2609 if (srv->do_agent && !srv->agent.port) {
2610 memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.",
2611 srv->id);
2612 return ERR_ALERT | ERR_FATAL;
2613 }
2614
2615#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2616 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0)
2617 return ret;
2618#endif
2619
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002620 /* A dynamic server is disabled on startup. It must not be counted as
2621 * an active backend entry.
2622 */
2623 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2624 if (srv->flags & SRV_F_BACKUP)
2625 px->srv_bck++;
2626 else
2627 px->srv_act++;
2628 }
2629
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002630 srv_lb_commit_status(srv);
2631
2632 return 0;
2633}
2634
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002635int parse_server(const char *file, int linenum, char **args,
2636 struct proxy *curproxy, const struct proxy *defproxy,
2637 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002638{
2639 struct server *newsrv = NULL;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002640 char *errmsg = NULL;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002641 int err_code = 0;
2642
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002643 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002644
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002645 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
2646 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
2647 err_code |= ERR_ALERT | ERR_FATAL;
2648 goto out;
2649 }
2650 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2651 err_code |= ERR_ALERT | ERR_FATAL;
2652 goto out;
2653 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002654
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002655 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2656 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2657 if (!*args[2])
2658 return 0;
2659 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002660
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002661 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
2662 parse_flags, &errmsg);
2663 if (errmsg) {
2664 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
2665 free(errmsg);
2666 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002667
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002668 /* the servers are linked backwards first */
2669 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2670 newsrv->next = curproxy->srv;
2671 curproxy->srv = newsrv;
2672 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002673
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002674 if (err_code & ERR_CODE)
2675 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002676
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002677 newsrv->conf.file = strdup(file);
2678 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002679
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002680 while (*args[cur_arg]) {
2681 errmsg = NULL;
2682 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
2683 parse_flags, &errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002684
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002685 if (err_code & ERR_ALERT) {
2686 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2687 free(errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002688 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002689
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002690 if (err_code & ERR_FATAL)
2691 goto out;
2692 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002693
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002694 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002695 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags, &errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002696 if (err_code) {
2697 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2698 free(errmsg);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002699 }
2700
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002701 if (err_code & ERR_FATAL)
2702 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002703 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002704
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002705 if (parse_flags & SRV_PARSE_TEMPLATE)
2706 _srv_parse_tmpl_init(newsrv, curproxy);
2707
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002708 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002709 "parsing [%s:%d] : 'server %s' : configured with weight of 0 will never be selected by load balancing algorithms\n",
2710 file, linenum, newsrv->id);
2711
Willy Tarreau272adea2014-03-31 10:39:59 +02002712 return 0;
2713
2714 out:
Willy Tarreau272adea2014-03-31 10:39:59 +02002715 return err_code;
2716}
2717
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002718/* Returns a pointer to the first server matching either id <id>.
2719 * NULL is returned if no match is found.
2720 * the lookup is performed in the backend <bk>
2721 */
2722struct server *server_find_by_id(struct proxy *bk, int id)
2723{
2724 struct eb32_node *eb32;
2725 struct server *curserver;
2726
2727 if (!bk || (id ==0))
2728 return NULL;
2729
2730 /* <bk> has no backend capabilities, so it can't have a server */
2731 if (!(bk->cap & PR_CAP_BE))
2732 return NULL;
2733
2734 curserver = NULL;
2735
2736 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2737 if (eb32)
2738 curserver = container_of(eb32, struct server, conf.id);
2739
2740 return curserver;
2741}
2742
2743/* Returns a pointer to the first server matching either name <name>, or id
2744 * if <name> starts with a '#'. NULL is returned if no match is found.
2745 * the lookup is performed in the backend <bk>
2746 */
2747struct server *server_find_by_name(struct proxy *bk, const char *name)
2748{
2749 struct server *curserver;
2750
2751 if (!bk || !name)
2752 return NULL;
2753
2754 /* <bk> has no backend capabilities, so it can't have a server */
2755 if (!(bk->cap & PR_CAP_BE))
2756 return NULL;
2757
2758 curserver = NULL;
2759 if (*name == '#') {
2760 curserver = server_find_by_id(bk, atoi(name + 1));
2761 if (curserver)
2762 return curserver;
2763 }
2764 else {
2765 curserver = bk->srv;
2766
2767 while (curserver && (strcmp(curserver->id, name) != 0))
2768 curserver = curserver->next;
2769
2770 if (curserver)
2771 return curserver;
2772 }
2773
2774 return NULL;
2775}
2776
2777struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2778{
2779 struct server *byname;
2780 struct server *byid;
2781
2782 if (!name && !id)
2783 return NULL;
2784
2785 if (diff)
2786 *diff = 0;
2787
2788 byname = byid = NULL;
2789
2790 if (name) {
2791 byname = server_find_by_name(bk, name);
2792 if (byname && (!id || byname->puid == id))
2793 return byname;
2794 }
2795
2796 /* remaining possibilities :
2797 * - name not set
2798 * - name set but not found
2799 * - name found but ID doesn't match
2800 */
2801 if (id) {
2802 byid = server_find_by_id(bk, id);
2803 if (byid) {
2804 if (byname) {
2805 /* use id only if forced by configuration */
2806 if (byid->flags & SRV_F_FORCED_ID) {
2807 if (diff)
2808 *diff |= 2;
2809 return byid;
2810 }
2811 else {
2812 if (diff)
2813 *diff |= 1;
2814 return byname;
2815 }
2816 }
2817
2818 /* remaining possibilities:
2819 * - name not set
2820 * - name set but not found
2821 */
2822 if (name && diff)
2823 *diff |= 2;
2824 return byid;
2825 }
2826
2827 /* id bot found */
2828 if (byname) {
2829 if (diff)
2830 *diff |= 1;
2831 return byname;
2832 }
2833 }
2834
2835 return NULL;
2836}
2837
Simon Horman7d09b9a2013-02-12 10:45:51 +09002838/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002839 * update a server's current IP address.
2840 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2841 * ip is in network format.
2842 * updater is a string which contains an information about the requester of the update.
2843 * updater is used if not NULL.
2844 *
2845 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02002846 *
2847 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02002848 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002849int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02002850{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02002851 /* save the new IP family & address if necessary */
2852 switch (ip_sin_family) {
2853 case AF_INET:
2854 if (s->addr.ss_family == ip_sin_family &&
2855 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
2856 return 0;
2857 break;
2858 case AF_INET6:
2859 if (s->addr.ss_family == ip_sin_family &&
2860 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
2861 return 0;
2862 break;
2863 };
2864
Baptiste Assmann14e40142015-04-14 01:13:07 +02002865 /* generates a log line and a warning on stderr */
2866 if (1) {
2867 /* book enough space for both IPv4 and IPv6 */
2868 char oldip[INET6_ADDRSTRLEN];
2869 char newip[INET6_ADDRSTRLEN];
2870
2871 memset(oldip, '\0', INET6_ADDRSTRLEN);
2872 memset(newip, '\0', INET6_ADDRSTRLEN);
2873
2874 /* copy old IP address in a string */
2875 switch (s->addr.ss_family) {
2876 case AF_INET:
2877 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2878 break;
2879 case AF_INET6:
2880 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2881 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02002882 default:
2883 strcpy(oldip, "(none)");
2884 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02002885 };
2886
2887 /* copy new IP address in a string */
2888 switch (ip_sin_family) {
2889 case AF_INET:
2890 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2891 break;
2892 case AF_INET6:
2893 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2894 break;
2895 };
2896
2897 /* save log line into a buffer */
2898 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2899 s->proxy->id, s->id, oldip, newip, updater);
2900
2901 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002902 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002903
2904 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002905 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002906 }
2907
2908 /* save the new IP family */
2909 s->addr.ss_family = ip_sin_family;
2910 /* save the new IP address */
2911 switch (ip_sin_family) {
2912 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02002913 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002914 break;
2915 case AF_INET6:
2916 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
2917 break;
2918 };
Olivier Houchard4e694042017-03-14 20:01:29 +01002919 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07002920 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002921
2922 return 0;
2923}
2924
William Dauchy7cabc062021-02-11 22:51:24 +01002925/* update agent health check address and port
2926 * addr can be ip4/ip6 or a hostname
2927 * if one error occurs, don't apply anything
2928 * must be called with the server lock held.
2929 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002930const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01002931{
2932 struct sockaddr_storage sk;
2933 struct buffer *msg;
2934 int new_port;
2935
2936 msg = get_trash_chunk();
2937 chunk_reset(msg);
2938
2939 if (!(s->agent.state & CHK_ST_ENABLED)) {
2940 chunk_strcat(msg, "agent checks are not enabled on this server");
2941 goto out;
2942 }
2943 if (addr) {
2944 memset(&sk, 0, sizeof(struct sockaddr_storage));
2945 if (str2ip(addr, &sk) == NULL) {
2946 chunk_appendf(msg, "invalid addr '%s'", addr);
2947 goto out;
2948 }
2949 }
2950 if (port) {
2951 if (strl2irc(port, strlen(port), &new_port) != 0) {
2952 chunk_appendf(msg, "provided port is not an integer");
2953 goto out;
2954 }
2955 if (new_port < 0 || new_port > 65535) {
2956 chunk_appendf(msg, "provided port is invalid");
2957 goto out;
2958 }
2959 }
2960out:
2961 if (msg->data)
2962 return msg->area;
2963 else {
2964 if (addr)
2965 set_srv_agent_addr(s, &sk);
2966 if (port)
2967 set_srv_agent_port(s, new_port);
2968 }
2969 return NULL;
2970}
2971
William Dauchyb456e1f2021-02-11 22:51:23 +01002972/* update server health check address and port
2973 * addr must be ip4 or ip6, it won't be resolved
2974 * if one error occurs, don't apply anything
2975 * must be called with the server lock held.
2976 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002977const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01002978{
2979 struct sockaddr_storage sk;
2980 struct buffer *msg;
2981 int new_port;
2982
2983 msg = get_trash_chunk();
2984 chunk_reset(msg);
2985
2986 if (!(s->check.state & CHK_ST_ENABLED)) {
2987 chunk_strcat(msg, "health checks are not enabled on this server");
2988 goto out;
2989 }
2990 if (addr) {
2991 memset(&sk, 0, sizeof(struct sockaddr_storage));
2992 if (str2ip2(addr, &sk, 0) == NULL) {
2993 chunk_appendf(msg, "invalid addr '%s'", addr);
2994 goto out;
2995 }
2996 }
2997 if (port) {
2998 if (strl2irc(port, strlen(port), &new_port) != 0) {
2999 chunk_appendf(msg, "provided port is not an integer");
3000 goto out;
3001 }
3002 if (new_port < 0 || new_port > 65535) {
3003 chunk_appendf(msg, "provided port is invalid");
3004 goto out;
3005 }
3006 /* prevent the update of port to 0 if MAPPORTS are in use */
3007 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3008 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3009 goto out;
3010 }
3011 }
3012out:
3013 if (msg->data)
3014 return msg->area;
3015 else {
3016 if (addr)
3017 s->check.addr = sk;
3018 if (port)
3019 s->check.port = new_port;
3020 }
3021 return NULL;
3022}
3023
Baptiste Assmann14e40142015-04-14 01:13:07 +02003024/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003025 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3026 *
3027 * Caller can pass its name through <updater> to get it integrated in the response message
3028 * returned by the function.
3029 *
3030 * The function first does the following, in that order:
3031 * - validates the new addr and/or port
3032 * - checks if an update is required (new IP or port is different than current ones)
3033 * - checks the update is allowed:
3034 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3035 * - allow all changes if no CHECKS are configured
3036 * - if CHECK is configured:
3037 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3038 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3039 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003040 *
3041 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003042 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003043const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003044{
3045 struct sockaddr_storage sa;
3046 int ret, port_change_required;
3047 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003048 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003049 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003050 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003051
3052 msg = get_trash_chunk();
3053 chunk_reset(msg);
3054
3055 if (addr) {
3056 memset(&sa, 0, sizeof(struct sockaddr_storage));
3057 if (str2ip2(addr, &sa, 0) == NULL) {
3058 chunk_printf(msg, "Invalid addr '%s'", addr);
3059 goto out;
3060 }
3061
3062 /* changes are allowed on AF_INET* families only */
3063 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3064 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3065 goto out;
3066 }
3067
3068 /* collecting data currently setup */
3069 memset(current_addr, '\0', sizeof(current_addr));
3070 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3071 /* changes are allowed on AF_INET* families only */
3072 if ((ret != AF_INET) && (ret != AF_INET6)) {
3073 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3074 goto out;
3075 }
3076
3077 /* applying ADDR changes if required and allowed
3078 * ipcmp returns 0 when both ADDR are the same
3079 */
3080 if (ipcmp(&s->addr, &sa) == 0) {
3081 chunk_appendf(msg, "no need to change the addr");
3082 goto port;
3083 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003084 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003085 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003086
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003087 /* update report for caller */
3088 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3089 }
3090
3091 port:
3092 if (port) {
3093 char sign = '\0';
3094 char *endptr;
3095
3096 if (addr)
3097 chunk_appendf(msg, ", ");
3098
3099 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003100 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003101
3102 /* check if PORT change is required */
3103 port_change_required = 0;
3104
3105 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003106 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003107 new_port = strtol(port, &endptr, 10);
3108 if ((errno != 0) || (port == endptr)) {
3109 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3110 goto out;
3111 }
3112
3113 /* check if caller triggers a port mapped or offset */
3114 if (sign == '-' || (sign == '+')) {
3115 /* check if server currently uses port map */
3116 if (!(s->flags & SRV_F_MAPPORTS)) {
3117 /* switch from fixed port to port map mandatorily triggers
3118 * a port change */
3119 port_change_required = 1;
3120 /* check is configured
3121 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3122 * prevent PORT change if check doesn't have it's dedicated port while switching
3123 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003124 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003125 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.");
3126 goto out;
3127 }
3128 }
3129 /* we're already using port maps */
3130 else {
3131 port_change_required = current_port != new_port;
3132 }
3133 }
3134 /* fixed port */
3135 else {
3136 port_change_required = current_port != new_port;
3137 }
3138
3139 /* applying PORT changes if required and update response message */
3140 if (port_change_required) {
3141 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003142 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003143 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003144
3145 /* prepare message */
3146 chunk_appendf(msg, "port changed from '");
3147 if (s->flags & SRV_F_MAPPORTS)
3148 chunk_appendf(msg, "+");
3149 chunk_appendf(msg, "%d' to '", current_port);
3150
3151 if (sign == '-') {
3152 s->flags |= SRV_F_MAPPORTS;
3153 chunk_appendf(msg, "%c", sign);
3154 /* just use for result output */
3155 new_port = -new_port;
3156 }
3157 else if (sign == '+') {
3158 s->flags |= SRV_F_MAPPORTS;
3159 chunk_appendf(msg, "%c", sign);
3160 }
3161 else {
3162 s->flags &= ~SRV_F_MAPPORTS;
3163 }
3164
3165 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003166 }
3167 else {
3168 chunk_appendf(msg, "no need to change the port");
3169 }
3170 }
3171
3172out:
William Dauchy6318d332020-05-02 21:52:36 +02003173 if (changed) {
3174 /* force connection cleanup on the given server */
3175 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003176 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003177 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003178 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003179 if (updater)
3180 chunk_appendf(msg, " by '%s'", updater);
3181 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003182 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003183}
3184
Christopher Faulet5efdef22021-03-11 18:03:21 +01003185/*
3186 * update server status based on result of SRV resolution
3187 * returns:
3188 * 0 if server status is updated
3189 * 1 if server status has not changed
3190 *
3191 * Must be called with the server lock held.
3192 */
3193int srvrq_update_srv_status(struct server *s, int has_no_ip)
3194{
3195 if (!s->srvrq)
3196 return 1;
3197
3198 /* since this server has an IP, it can go back in production */
3199 if (has_no_ip == 0) {
3200 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3201 return 1;
3202 }
3203
3204 if (s->next_admin & SRV_ADMF_RMAINT)
3205 return 1;
3206
3207 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3208 return 0;
3209}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003210
3211/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003212 * update server status based on result of name resolution
3213 * returns:
3214 * 0 if server status is updated
3215 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003216 *
3217 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003218 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003219int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003220{
Emeric Brun750fe792020-12-23 16:51:12 +01003221 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003222 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003223 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003224
Jerome Magnin012261a2020-07-28 13:38:22 +02003225 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003226 if (resolution == NULL)
3227 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003228
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003229 switch (resolution->status) {
3230 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003231 /* status when HAProxy has just (re)started.
3232 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003233 break;
3234
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003235 case RSLV_STATUS_VALID:
3236 /*
3237 * resume health checks
3238 * server will be turned back on if health check is safe
3239 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003240 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003241 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003242 return 1;
3243 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3244 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003245 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003246 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003247
Emeric Brun52a91d32017-08-31 14:41:55 +02003248 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003249 return 1;
3250 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3251 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3252 s->proxy->id, s->id);
3253
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003254 ha_warning("%s.\n", trash.area);
3255 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003256 return 0;
3257
3258 case RSLV_STATUS_NX:
3259 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003260 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3261 if (!tick_is_expired(exp, now_ms))
3262 break;
3263
3264 if (s->next_admin & SRV_ADMF_RMAINT)
3265 return 1;
3266 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3267 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003268
3269 case RSLV_STATUS_TIMEOUT:
3270 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003271 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3272 if (!tick_is_expired(exp, now_ms))
3273 break;
3274
3275 if (s->next_admin & SRV_ADMF_RMAINT)
3276 return 1;
3277 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3278 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003279
3280 case RSLV_STATUS_REFUSED:
3281 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003282 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3283 if (!tick_is_expired(exp, now_ms))
3284 break;
3285
3286 if (s->next_admin & SRV_ADMF_RMAINT)
3287 return 1;
3288 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3289 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003290
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003291 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003292 /* stop server if resolution failed for a long enough period */
3293 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3294 if (!tick_is_expired(exp, now_ms))
3295 break;
3296
3297 if (s->next_admin & SRV_ADMF_RMAINT)
3298 return 1;
3299 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3300 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003301 }
3302
3303 return 1;
3304}
3305
3306/*
3307 * Server Name Resolution valid response callback
3308 * It expects:
3309 * - <nameserver>: the name server which answered the valid response
3310 * - <response>: buffer containing a valid DNS response
3311 * - <response_len>: size of <response>
3312 * It performs the following actions:
3313 * - ignore response if current ip found and server family not met
3314 * - update with first new ip found if family is met and current IP is not found
3315 * returns:
3316 * 0 on error
3317 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003318 *
3319 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003320 */
Emeric Brun08622d32020-12-23 17:41:43 +01003321int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003322{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003323 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003324 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003325 void *serverip, *firstip;
3326 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003327 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003328 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003329 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003330
Christopher Faulet67957bd2017-09-27 11:00:59 +02003331 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003332 if (!s)
3333 return 1;
3334
Christopher Faulet49531e82021-03-10 15:07:27 +01003335 if (s->srvrq) {
3336 struct resolv_answer_item *srv_item;
3337
3338 /* If DNS resolution is disabled ignore it. */
3339 if (s->flags & SRV_F_NO_RESOLUTION)
3340 return 1;
3341
3342 /* The server is based on a SRV record, thus, find the
3343 * associated answer record. If not found, it means the SRV item
3344 * has expired and this resolution must be ignored.
3345 */
3346 srv_item = find_srvrq_answer_record(requester);
3347 if (!srv_item)
3348 return 1;
3349 }
3350
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003351 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003352 if (!resolution)
3353 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003354
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003355 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003356 firstip = NULL; /* pointer to the first valid response found */
3357 /* it will be used as the new IP if a change is required */
3358 firstip_sin_family = AF_UNSPEC;
3359 serverip = NULL; /* current server IP address */
3360
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003361 /* initializing server IP pointer */
3362 server_sin_family = s->addr.ss_family;
3363 switch (server_sin_family) {
3364 case AF_INET:
3365 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3366 break;
3367
3368 case AF_INET6:
3369 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3370 break;
3371
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003372 case AF_UNSPEC:
3373 break;
3374
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003375 default:
3376 goto invalid;
3377 }
3378
Emeric Brund30e9a12020-12-23 18:49:16 +01003379 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3380 serverip, server_sin_family, &firstip,
3381 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003382
3383 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003384 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003385 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003386
Emeric Brun456de772020-12-23 18:17:31 +01003387 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003388 goto save_ip;
3389
Emeric Brun456de772020-12-23 18:17:31 +01003390 case RSLV_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003391 goto invalid;
3392
Emeric Brun456de772020-12-23 18:17:31 +01003393 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003394 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003395 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003396
Emeric Brun456de772020-12-23 18:17:31 +01003397 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003398 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003399 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003400 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003401
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003402 default:
3403 goto invalid;
3404
3405 }
3406
3407 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003408 if (counters) {
3409 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003410 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003411 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003412 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003413 else
3414 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003415 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003416
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003417 update_status:
Christopher Faulet49531e82021-03-10 15:07:27 +01003418
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003419 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003420 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003421
3422 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003423 if (counters) {
3424 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003425 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003426 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003427 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003428 return 0;
3429}
3430
3431/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003432 * SRV record error management callback
3433 * returns:
3434 * 0 on error
3435 * 1 when no error or safe ignore
3436 *
3437 * Grabs the server's lock.
3438 */
3439int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3440{
3441 struct server *s;
3442 struct resolv_srvrq *srvrq;
3443 struct resolv_resolution *res;
3444 struct resolvers *resolvers;
3445 int exp;
3446
3447 /* SRV records */
3448 srvrq = objt_resolv_srvrq(requester->owner);
3449 if (!srvrq)
3450 return 1;
3451
3452 resolvers = srvrq->resolvers;
3453 res = requester->resolution;
3454
3455 switch (res->status) {
3456
3457 case RSLV_STATUS_NX:
3458 /* stop server if resolution is NX for a long enough period */
3459 exp = tick_add(res->last_valid, resolvers->hold.nx);
3460 if (!tick_is_expired(exp, now_ms))
3461 return 1;
3462 break;
3463
3464 case RSLV_STATUS_TIMEOUT:
3465 /* stop server if resolution is TIMEOUT for a long enough period */
3466 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3467 if (!tick_is_expired(exp, now_ms))
3468 return 1;
3469 break;
3470
3471 case RSLV_STATUS_REFUSED:
3472 /* stop server if resolution is REFUSED for a long enough period */
3473 exp = tick_add(res->last_valid, resolvers->hold.refused);
3474 if (!tick_is_expired(exp, now_ms))
3475 return 1;
3476 break;
3477
3478 default:
3479 /* stop server if resolution failed for a long enough period */
3480 exp = tick_add(res->last_valid, resolvers->hold.other);
3481 if (!tick_is_expired(exp, now_ms))
3482 return 1;
3483 }
3484
3485 /* Remove any associated server */
3486 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
3487 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
3488 if (s->srvrq == srvrq) {
Christopher Faulet0efc0992021-03-11 18:09:53 +01003489 resolv_unlink_resolution(s->resolv_requester, 1);
Christopher Faulet6b117ae2021-03-11 18:06:23 +01003490 srvrq_update_srv_status(s, 1);
Christopher Faulet52d4d302021-02-23 12:24:09 +01003491 memset(&s->addr, 0, sizeof(s->addr));
Christopher Fauletc392d462021-03-10 15:51:13 +01003492 ha_free(&s->hostname);
3493 ha_free(&s->hostname_dn);
3494 s->hostname_dn_len = 0;
Christopher Faulet52d4d302021-02-23 12:24:09 +01003495 s->svc_port = 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003496 }
3497 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
3498 }
3499
Christopher Faulet51d5e3b2021-03-10 15:46:46 +01003500 resolv_purge_resolution_answer_records(res);
3501
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003502 return 1;
3503}
3504
3505/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003506 * Server Name Resolution error management callback
3507 * returns:
3508 * 0 on error
3509 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003510 *
3511 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003512 */
Emeric Brun08622d32020-12-23 17:41:43 +01003513int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003514{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003515 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003516
Christopher Faulet67957bd2017-09-27 11:00:59 +02003517 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003518 if (!s)
3519 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003520 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet5130c212021-03-10 20:31:40 +01003521 if (!snr_update_srv_status(s, 1))
3522 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003523 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003524 return 1;
3525}
3526
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003527/*
3528 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003529 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003530 * It returns a pointer to the first server found or NULL if <ip> is not yet
3531 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003532 *
3533 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003534 */
3535struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3536{
3537 struct server *tmpsrv;
3538 struct proxy *be;
3539
3540 if (!srv)
3541 return NULL;
3542
3543 be = srv->proxy;
3544 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003545 /* we found the current server is the same, ignore it */
3546 if (srv == tmpsrv)
3547 continue;
3548
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003549 /* We want to compare the IP in the record with the IP of the servers in the
3550 * same backend, only if:
3551 * * DNS resolution is enabled on the server
3552 * * the hostname used for the resolution by our server is the same than the
3553 * one used for the server found in the backend
3554 * * the server found in the backend is not our current server
3555 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003556 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003557 if ((tmpsrv->hostname_dn == NULL) ||
3558 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003559 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003560 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003561 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003562 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003563 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003564
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003565 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003566 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003567 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003568 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003569 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003570
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003571 /* At this point, we have 2 different servers using the same DNS hostname
3572 * for their respective resolution.
3573 */
3574 if (*ip_family == tmpsrv->addr.ss_family &&
3575 ((tmpsrv->addr.ss_family == AF_INET &&
3576 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3577 (tmpsrv->addr.ss_family == AF_INET6 &&
3578 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003579 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003580 return tmpsrv;
3581 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003582 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003583 }
3584
Emeric Brune9fd6b52017-11-02 17:20:39 +01003585
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003586 return NULL;
3587}
3588
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003589/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3590 * resolver. This is suited for initial address configuration. Returns 0 on
3591 * success otherwise a non-zero error code. In case of error, *err_code, if
3592 * not NULL, is filled up.
3593 */
3594int srv_set_addr_via_libc(struct server *srv, int *err_code)
3595{
3596 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003597 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003598 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003599 return 1;
3600 }
3601 return 0;
3602}
3603
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003604/* Set the server's FDQN (->hostname) from <hostname>.
3605 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003606 *
3607 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003608 */
Emeric Brun08622d32020-12-23 17:41:43 +01003609int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003610{
Emeric Brun08622d32020-12-23 17:41:43 +01003611 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003612 char *hostname_dn;
3613 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003614
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003615 /* Note that the server lock is already held. */
3616 if (!srv->resolvers)
3617 return -1;
3618
Emeric Brun08622d32020-12-23 17:41:43 +01003619 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003620 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003621 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003622 * and we can't enable it at run time for now.
3623 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003624 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003625 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003626
3627 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003628 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003629 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01003630 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
3631 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003632 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003633 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003634
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003635 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003636 if (resolution &&
3637 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003638 resolution->hostname_dn_len == hostname_dn_len &&
3639 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003640 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003641
Christopher Faulet0efc0992021-03-11 18:09:53 +01003642 resolv_unlink_resolution(srv->resolv_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003643
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003644 free(srv->hostname);
3645 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003646 srv->hostname = strdup(hostname);
3647 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003648 srv->hostname_dn_len = hostname_dn_len;
3649 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003650 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003651
Baptiste Assmann13a92322019-06-07 09:40:55 +02003652 if (srv->flags & SRV_F_NO_RESOLUTION)
3653 goto end;
3654
Emeric Brund30e9a12020-12-23 18:49:16 +01003655 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003656 goto err;
3657
3658 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003659 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003660 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003661 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003662
3663 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003664 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003665 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003666 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003667}
3668
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003669/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3670 * from the state file. This is suited for initial address configuration.
3671 * Returns 0 on success otherwise a non-zero error code. In case of error,
3672 * *err_code, if not NULL, is filled up.
3673 */
3674static int srv_apply_lastaddr(struct server *srv, int *err_code)
3675{
3676 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3677 if (err_code)
3678 *err_code |= ERR_WARN;
3679 return 1;
3680 }
3681 return 0;
3682}
3683
Willy Tarreau25e51522016-11-04 15:10:17 +01003684/* returns 0 if no error, otherwise a combination of ERR_* flags */
3685static int srv_iterate_initaddr(struct server *srv)
3686{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003687 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003688 int return_code = 0;
3689 int err_code;
3690 unsigned int methods;
3691
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003692 /* If no addr and no hostname set, get the name from the DNS SRV request */
3693 if (!name && srv->srvrq)
3694 name = srv->srvrq->name;
3695
Willy Tarreau25e51522016-11-04 15:10:17 +01003696 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003697 if (!methods) {
3698 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003699 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3700 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003701 if (srv->resolvers_id) {
3702 /* dns resolution is configured, add "none" to not fail on startup */
3703 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3704 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003705 }
3706
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003707 /* "-dr" : always append "none" so that server addresses resolution
3708 * failures are silently ignored, this is convenient to validate some
3709 * configs out of their environment.
3710 */
3711 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3712 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3713
Willy Tarreau25e51522016-11-04 15:10:17 +01003714 while (methods) {
3715 err_code = 0;
3716 switch (srv_get_next_initaddr(&methods)) {
3717 case SRV_IADDR_LAST:
3718 if (!srv->lastaddr)
3719 continue;
3720 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003721 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003722 return_code |= err_code;
3723 break;
3724
3725 case SRV_IADDR_LIBC:
3726 if (!srv->hostname)
3727 continue;
3728 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003729 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003730 return_code |= err_code;
3731 break;
3732
Willy Tarreau37ebe122016-11-04 15:17:58 +01003733 case SRV_IADDR_NONE:
3734 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003735 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003736 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003737 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003738 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003739 return return_code;
3740
Willy Tarreau4310d362016-11-02 15:05:56 +01003741 case SRV_IADDR_IP:
3742 ipcpy(&srv->init_addr, &srv->addr);
3743 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003744 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003745 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003746 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003747 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003748
Willy Tarreau25e51522016-11-04 15:10:17 +01003749 default: /* unhandled method */
3750 break;
3751 }
3752 }
3753
3754 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003755 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003756 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003757 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003758 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003759 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003760 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003761 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003762
3763 return_code |= ERR_ALERT | ERR_FATAL;
3764 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003765out:
3766 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07003767 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01003768 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003769}
3770
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003771/*
3772 * This function parses all backends and all servers within each backend
3773 * and performs servers' addr resolution based on information provided by:
3774 * - configuration file
3775 * - server-state file (states provided by an 'old' haproxy process)
3776 *
3777 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3778 */
3779int srv_init_addr(void)
3780{
3781 struct proxy *curproxy;
3782 int return_code = 0;
3783
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003784 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003785 while (curproxy) {
3786 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003787
3788 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01003789 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003790 goto srv_init_addr_next;
3791
Willy Tarreau25e51522016-11-04 15:10:17 +01003792 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003793 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003794 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003795
3796 srv_init_addr_next:
3797 curproxy = curproxy->next;
3798 }
3799
3800 return return_code;
3801}
3802
Willy Tarreau46b7f532018-08-21 11:54:26 +02003803/*
3804 * Must be called with the server lock held.
3805 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003806const 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 +02003807{
3808
Willy Tarreau83061a82018-07-13 11:56:34 +02003809 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003810
3811 msg = get_trash_chunk();
3812 chunk_reset(msg);
3813
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003814 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003815 chunk_appendf(msg, "no need to change the FDQN");
3816 goto out;
3817 }
3818
3819 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
3820 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
3821 goto out;
3822 }
3823
3824 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
3825 server->proxy->id, server->id, server->hostname, fqdn);
3826
Emeric Brun08622d32020-12-23 17:41:43 +01003827 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003828 chunk_reset(msg);
3829 chunk_appendf(msg, "could not update %s/%s FQDN",
3830 server->proxy->id, server->id);
3831 goto out;
3832 }
3833
3834 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02003835 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003836
3837 out:
3838 if (updater)
3839 chunk_appendf(msg, " by '%s'", updater);
3840 chunk_appendf(msg, "\n");
3841
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003842 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003843}
3844
3845
Willy Tarreau21b069d2016-11-23 17:15:08 +01003846/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
3847 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003848 * 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 +01003849 * used for CLI commands requiring a server name.
3850 * Important: the <arg> is modified to remove the '/'.
3851 */
3852struct server *cli_find_server(struct appctx *appctx, char *arg)
3853{
3854 struct proxy *px;
3855 struct server *sv;
3856 char *line;
3857
3858 /* split "backend/server" and make <line> point to server */
3859 for (line = arg; *line; line++)
3860 if (*line == '/') {
3861 *line++ = '\0';
3862 break;
3863 }
3864
3865 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003866 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003867 return NULL;
3868 }
3869
3870 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003871 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003872 return NULL;
3873 }
3874
Willy Tarreauc3914d42020-09-24 08:39:22 +02003875 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003876 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003877 return NULL;
3878 }
3879
3880 return sv;
3881}
3882
William Lallemand222baf22016-11-19 02:00:33 +01003883
Willy Tarreau46b7f532018-08-21 11:54:26 +02003884/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003885static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01003886{
3887 struct server *sv;
3888 const char *warning;
3889
3890 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3891 return 1;
3892
3893 sv = cli_find_server(appctx, args[2]);
3894 if (!sv)
3895 return 1;
3896
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003897 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02003898
William Lallemand222baf22016-11-19 02:00:33 +01003899 if (strcmp(args[3], "weight") == 0) {
3900 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02003901 if (warning)
3902 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003903 }
3904 else if (strcmp(args[3], "state") == 0) {
3905 if (strcmp(args[4], "ready") == 0)
3906 srv_adm_set_ready(sv);
3907 else if (strcmp(args[4], "drain") == 0)
3908 srv_adm_set_drain(sv);
3909 else if (strcmp(args[4], "maint") == 0)
3910 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02003911 else
3912 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003913 }
3914 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003915 if (sv->track)
3916 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003917 else if (strcmp(args[4], "up") == 0) {
3918 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003919 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003920 }
3921 else if (strcmp(args[4], "stopping") == 0) {
3922 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003923 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003924 }
3925 else if (strcmp(args[4], "down") == 0) {
3926 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003927 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003928 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003929 else
3930 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003931 }
3932 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003933 if (!(sv->agent.state & CHK_ST_ENABLED))
3934 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003935 else if (strcmp(args[4], "up") == 0) {
3936 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003937 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003938 }
3939 else if (strcmp(args[4], "down") == 0) {
3940 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003941 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003942 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003943 else
3944 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003945 }
Misiek2da082d2017-01-09 09:40:42 +01003946 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01003947 char *addr = NULL;
3948 char *port = NULL;
3949 if (strlen(args[4]) == 0) {
3950 cli_err(appctx, "set server <b>/<s> agent-addr requires"
3951 " an address and optionally a port.\n");
3952 goto out_unlock;
3953 }
3954 addr = args[4];
3955 if (strcmp(args[5], "port") == 0)
3956 port = args[6];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003957 warning = srv_update_agent_addr_port(sv, addr, port);
William Dauchy7cabc062021-02-11 22:51:24 +01003958 if (warning)
3959 cli_msg(appctx, LOG_WARNING, warning);
3960 }
3961 else if (strcmp(args[3], "agent-port") == 0) {
3962 char *port = NULL;
3963 if (strlen(args[4]) == 0) {
3964 cli_err(appctx, "set server <b>/<s> agent-port requires"
3965 " a port.\n");
3966 goto out_unlock;
3967 }
3968 port = args[4];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003969 warning = srv_update_agent_addr_port(sv, NULL, port);
William Dauchy7cabc062021-02-11 22:51:24 +01003970 if (warning)
3971 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01003972 }
3973 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003974 if (!(sv->agent.state & CHK_ST_ENABLED))
3975 cli_err(appctx, "agent checks are not enabled on this server.\n");
3976 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02003977 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02003978 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01003979 }
3980 }
William Dauchyb456e1f2021-02-11 22:51:23 +01003981 else if (strcmp(args[3], "check-addr") == 0) {
3982 char *addr = NULL;
3983 char *port = NULL;
3984 if (strlen(args[4]) == 0) {
3985 cli_err(appctx, "set server <b>/<s> check-addr requires"
3986 " an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01003987 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01003988 }
William Dauchyb456e1f2021-02-11 22:51:23 +01003989 addr = args[4];
3990 if (strcmp(args[5], "port") == 0)
3991 port = args[6];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003992 warning = srv_update_check_addr_port(sv, addr, port);
William Dauchyb456e1f2021-02-11 22:51:23 +01003993 if (warning)
3994 cli_msg(appctx, LOG_WARNING, warning);
3995 }
3996 else if (strcmp(args[3], "check-port") == 0) {
3997 char *port = NULL;
3998 if (strlen(args[4]) == 0) {
3999 cli_err(appctx, "set server <b>/<s> check-port requires"
4000 " a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004001 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004002 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004003 port = args[4];
Christopher Faulet69beaa92021-02-16 12:07:47 +01004004 warning = srv_update_check_addr_port(sv, NULL, port);
William Dauchyb456e1f2021-02-11 22:51:23 +01004005 if (warning)
4006 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004007 }
4008 else if (strcmp(args[3], "addr") == 0) {
4009 char *addr = NULL;
4010 char *port = NULL;
4011 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004012 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004013 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004014 }
4015 else {
4016 addr = args[4];
4017 }
4018 if (strcmp(args[5], "port") == 0) {
4019 port = args[6];
4020 }
Christopher Faulet69beaa92021-02-16 12:07:47 +01004021 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004022 if (warning)
4023 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004024 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4025 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004026 else if (strcmp(args[3], "fqdn") == 0) {
4027 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004028 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004029 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004030 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004031 /* ensure runtime resolver will process this new fqdn */
4032 if (sv->flags & SRV_F_NO_RESOLUTION) {
4033 sv->flags &= ~SRV_F_NO_RESOLUTION;
4034 }
Christopher Faulet69beaa92021-02-16 12:07:47 +01004035 warning = srv_update_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004036 if (warning)
4037 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004038 }
William Dauchyf6370442020-11-14 19:25:33 +01004039 else if (strcmp(args[3], "ssl") == 0) {
4040#ifdef USE_OPENSSL
4041 if (sv->ssl_ctx.ctx == NULL) {
4042 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4043 " default-server should define ssl settings\n");
4044 goto out_unlock;
4045 } else if (strcmp(args[4], "on") == 0) {
4046 ssl_sock_set_srv(sv, 1);
4047 } else if (strcmp(args[4], "off") == 0) {
4048 ssl_sock_set_srv(sv, 0);
4049 } else {
4050 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4051 goto out_unlock;
4052 }
4053 srv_cleanup_connections(sv);
4054 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4055#else
4056 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4057#endif
4058 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004059 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004060 "usage: set server <backend>/<server> "
4061 "addr | agent | agent-addr | agent-port | agent-send | "
4062 "check-addr | check-port | fqdn | health | ssl | "
4063 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004064 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004065 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004066 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004067 return 1;
4068}
4069
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004070static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004071{
4072 struct stream_interface *si = appctx->owner;
4073 struct proxy *px;
4074 struct server *sv;
4075 char *line;
4076
4077
4078 /* split "backend/server" and make <line> point to server */
4079 for (line = args[2]; *line; line++)
4080 if (*line == '/') {
4081 *line++ = '\0';
4082 break;
4083 }
4084
Willy Tarreau9d008692019-08-09 11:21:01 +02004085 if (!*line)
4086 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004087
Willy Tarreau9d008692019-08-09 11:21:01 +02004088 if (!get_backend_server(args[2], line, &px, &sv))
4089 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004090
4091 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004092 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4093 sv->iweight);
4094 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004095 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004096 return 0;
4097 }
William Lallemand6b160942016-11-22 12:34:35 +01004098 return 1;
4099}
4100
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004101/* Parse a "set weight" command.
4102 *
4103 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004104 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004105static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004106{
4107 struct server *sv;
4108 const char *warning;
4109
4110 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4111 return 1;
4112
4113 sv = cli_find_server(appctx, args[2]);
4114 if (!sv)
4115 return 1;
4116
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004117 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4118
William Lallemand6b160942016-11-22 12:34:35 +01004119 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004120 if (warning)
4121 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004122
4123 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4124
William Lallemand6b160942016-11-22 12:34:35 +01004125 return 1;
4126}
4127
Willy Tarreau46b7f532018-08-21 11:54:26 +02004128/* parse a "set maxconn server" command. It always returns 1.
4129 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004130 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004131 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004132static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004133{
4134 struct server *sv;
4135 const char *warning;
4136
4137 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4138 return 1;
4139
4140 sv = cli_find_server(appctx, args[3]);
4141 if (!sv)
4142 return 1;
4143
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004144 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4145
Willy Tarreaub8026272016-11-23 11:26:56 +01004146 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004147 if (warning)
4148 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004149
4150 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4151
Willy Tarreaub8026272016-11-23 11:26:56 +01004152 return 1;
4153}
William Lallemand6b160942016-11-22 12:34:35 +01004154
Willy Tarreau46b7f532018-08-21 11:54:26 +02004155/* parse a "disable agent" command. It always returns 1.
4156 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004157 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004158 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004159static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004160{
4161 struct server *sv;
4162
4163 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4164 return 1;
4165
4166 sv = cli_find_server(appctx, args[2]);
4167 if (!sv)
4168 return 1;
4169
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004170 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004171 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004172 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004173 return 1;
4174}
4175
Willy Tarreau46b7f532018-08-21 11:54:26 +02004176/* parse a "disable health" command. It always returns 1.
4177 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004178 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004179 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004180static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004181{
4182 struct server *sv;
4183
4184 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4185 return 1;
4186
4187 sv = cli_find_server(appctx, args[2]);
4188 if (!sv)
4189 return 1;
4190
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004191 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004192 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004193 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004194 return 1;
4195}
4196
Willy Tarreau46b7f532018-08-21 11:54:26 +02004197/* parse a "disable server" command. It always returns 1.
4198 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004199 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004200 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004201static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004202{
4203 struct server *sv;
4204
4205 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4206 return 1;
4207
4208 sv = cli_find_server(appctx, args[2]);
4209 if (!sv)
4210 return 1;
4211
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004212 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004213 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004214 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004215 return 1;
4216}
4217
Willy Tarreau46b7f532018-08-21 11:54:26 +02004218/* parse a "enable agent" command. It always returns 1.
4219 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004220 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004221 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004222static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004223{
4224 struct server *sv;
4225
4226 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4227 return 1;
4228
4229 sv = cli_find_server(appctx, args[2]);
4230 if (!sv)
4231 return 1;
4232
Willy Tarreau9d008692019-08-09 11:21:01 +02004233 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4234 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004235
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004236 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004237 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004238 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004239 return 1;
4240}
4241
Willy Tarreau46b7f532018-08-21 11:54:26 +02004242/* parse a "enable health" command. It always returns 1.
4243 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004244 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004245 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004246static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004247{
4248 struct server *sv;
4249
4250 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4251 return 1;
4252
4253 sv = cli_find_server(appctx, args[2]);
4254 if (!sv)
4255 return 1;
4256
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004257 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004258 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004259 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004260 return 1;
4261}
4262
Willy Tarreau46b7f532018-08-21 11:54:26 +02004263/* parse a "enable server" command. It always returns 1.
4264 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004265 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004266 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004267static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004268{
4269 struct server *sv;
4270
4271 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4272 return 1;
4273
4274 sv = cli_find_server(appctx, args[2]);
4275 if (!sv)
4276 return 1;
4277
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004278 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004279 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004280 if (!(sv->flags & SRV_F_COOKIESET)
4281 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4282 sv->cookie)
4283 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004284 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004285 return 1;
4286}
4287
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004288/* Allocates data structure related to load balancing for the server <sv>. It
4289 * is only required for dynamic servers.
4290 *
4291 * At the moment, the server lock is not used as this function is only called
4292 * for a dynamic server not yet registered.
4293 *
4294 * Returns 1 on success, 0 on allocation failure.
4295 */
4296static int srv_alloc_lb(struct server *sv, struct proxy *be)
4297{
4298 int node;
4299
4300 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4301 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4302 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4303 sv->lb_nodes_now = 0;
4304
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004305 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4306 ((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 +01004307 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4308
4309 if (!sv->lb_nodes)
4310 return 0;
4311
4312 for (node = 0; node < sv->lb_nodes_tot; node++) {
4313 sv->lb_nodes[node].server = sv;
4314 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4315 }
4316 }
4317
4318 return 1;
4319}
4320
4321/* Parse a "add server" command
4322 * Returns 0 if the server has been successfully initialized, 1 on failure.
4323 */
4324static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4325{
4326 struct proxy *be;
4327 struct server *srv;
4328 char *be_name, *sv_name;
4329 char *errmsg = NULL;
4330 int errcode, argc;
4331 int i;
4332 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4333
4334 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4335 return 1;
4336
4337 ++args;
4338
4339 sv_name = be_name = args[1];
4340 /* split backend/server arg */
4341 while (*sv_name && *(++sv_name)) {
4342 if (*sv_name == '/') {
4343 *sv_name = '\0';
4344 ++sv_name;
4345 break;
4346 }
4347 }
4348
4349 if (!*sv_name)
4350 return cli_err(appctx, "Require 'backend/server'.");
4351
Amaury Denoyellecece9182021-04-20 17:09:08 +02004352 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004353 if (!be)
4354 return cli_err(appctx, "No such backend.");
4355
4356 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004357 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004358 return 1;
4359 }
4360
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004361 args[1] = sv_name;
4362 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg);
4363 if (errcode) {
4364 if (errmsg)
4365 cli_dynerr(appctx, errmsg);
4366 goto out;
4367 }
4368
4369 while (*args[argc]) {
4370 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg);
4371
4372 if (errcode) {
4373 if (errmsg)
4374 cli_dynerr(appctx, errmsg);
4375 goto out;
4376 }
4377 }
4378
4379 _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg);
4380 if (errmsg) {
4381 cli_dynerr(appctx, errmsg);
4382 goto out;
4383 }
4384
Amaury Denoyelle30467232021-03-12 18:03:27 +01004385 if (srv->mux_proto) {
4386 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
4387 cli_err(appctx, "MUX protocol is not usable for server.");
4388 goto out;
4389 }
4390 }
4391
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004392 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4393 if (!srv->per_thr) {
4394 cli_err(appctx, "failed to allocate per-thread lists for server.");
4395 goto out;
4396 }
4397
4398 for (i = 0; i < global.nbthread; i++) {
4399 srv->per_thr[i].idle_conns = EB_ROOT;
4400 srv->per_thr[i].safe_conns = EB_ROOT;
4401 srv->per_thr[i].avail_conns = EB_ROOT;
4402 MT_LIST_INIT(&srv->per_thr[i].streams);
4403 }
4404
4405 if (srv->max_idle_conns != 0) {
4406 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4407 if (!srv->curr_idle_thr) {
4408 cli_err(appctx, "failed to allocate counters for server.");
4409 goto out;
4410 }
4411 }
4412
4413 if (!srv_alloc_lb(srv, be)) {
4414 cli_err(appctx, "Failed to initialize load-balancing data.");
4415 goto out;
4416 }
4417
4418 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4419 COUNTERS_SV,
4420 STATS_PX_CAP_SRV)) {
4421 cli_err(appctx, "failed to allocate extra counters for server.");
4422 goto out;
4423 }
4424
Amaury Denoyellecece9182021-04-20 17:09:08 +02004425 /* Attach the server to the end of the proxy linked list. The proxy
4426 * servers list is currently not protected by a lock, so this requires
4427 * thread_isolate/release.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004428 *
Amaury Denoyellecece9182021-04-20 17:09:08 +02004429 * If a server with the same name is found, reject the new one. This
4430 * operation requires thread-safety and thus cannot be executed at the
4431 * beginning without having server allocation under locks/isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004432 */
4433 thread_isolate();
Amaury Denoyellecece9182021-04-20 17:09:08 +02004434
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004435 /* TODO use a double-linked list for px->srv */
4436 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004437 struct server *next = be->srv;
4438
4439 while (1) {
4440 /* check for duplicate server */
4441 if (!strcmp(srv->id, next->id)) {
4442 thread_release();
4443 cli_err(appctx, "Already exists a server with the same name in backend.");
4444 goto out;
4445 }
4446
4447 if (!next->next)
4448 break;
4449
4450 next = next->next;
4451 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004452
4453 next->next = srv;
4454 }
4455 else {
4456 srv->next = be->srv;
4457 be->srv = srv;
4458 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004459
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004460 thread_release();
4461
Amaury Denoyelled38e7fa2021-04-20 18:35:19 +02004462 ha_notice("New server %s/%s registered.\n", be->id, srv->id);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004463 cli_msg(appctx, LOG_INFO, "New server registered.");
4464
4465 return 0;
4466
4467out:
4468 if (srv)
4469 free_server(srv);
4470 return 1;
4471}
4472
Amaury Denoyellee5580432021-04-15 14:41:20 +02004473/* Parse a "del server" command
4474 * Returns 0 if the server has been successfully initialized, 1 on failure.
4475 */
4476static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4477{
4478 struct proxy *be;
4479 struct server *srv;
4480 char *be_name, *sv_name;
4481
4482 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4483 return 1;
4484
4485 ++args;
4486
4487 sv_name = be_name = args[1];
4488 /* split backend/server arg */
4489 while (*sv_name && *(++sv_name)) {
4490 if (*sv_name == '/') {
4491 *sv_name = '\0';
4492 ++sv_name;
4493 break;
4494 }
4495 }
4496
4497 if (!*sv_name)
4498 return cli_err(appctx, "Require 'backend/server'.");
4499
4500 /* The proxy servers list is currently not protected by a lock so this
4501 * requires thread isolation.
4502 */
4503
4504 /* WARNING there is maybe a potential violation of the thread isolation
4505 * mechanism by the pool allocator. The allocator marks the thread as
4506 * harmless before the allocation, but a processing outside of it could
4507 * relies on a particular server triggered at the same time by a
4508 * 'delete server'. Currently, it is unknown if such case is present in
4509 * the current code. If it happens to be, the thread isolation
4510 * mechanism should be improved, maybe with a differentiation between
4511 * read and read+write safe sections.
4512 */
4513 thread_isolate();
4514
4515 get_backend_server(be_name, sv_name, &be, &srv);
4516 if (!be) {
4517 cli_err(appctx, "No such backend.");
4518 goto out;
4519 }
4520
4521 if (!srv) {
4522 cli_err(appctx, "No such server.");
4523 goto out;
4524 }
4525
4526 if (!(srv->flags & SRV_F_DYNAMIC)) {
4527 cli_err(appctx, "Only servers added at runtime via <add server> CLI cmd can be deleted.");
4528 goto out;
4529 }
4530
4531 /* Only servers in maintenance can be deleted. This ensures that the
4532 * server is not present anymore in the lb structures (through
4533 * lbprm.set_server_status_down).
4534 */
4535 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4536 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4537 goto out;
4538 }
4539
4540 /* Ensure that there is no active/idle/pending connection on the server.
4541 *
4542 * TODO idle connections should not prevent server deletion. A proper
4543 * cleanup function should be implemented to be used here.
4544 */
4545 if (srv->cur_sess || srv->curr_idle_conns ||
4546 !eb_is_empty(&srv->pendconns)) {
4547 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4548 goto out;
4549 }
4550
4551 /* TODO remove server for check list once 'check' will be implemented for
4552 * dynamic servers
4553 */
4554
4555 /* detach the server from the proxy linked list
4556 * The proxy servers list is currently not protected by a lock, so this
4557 * requires thread_isolate/release.
4558 */
4559
4560 /* be->srv cannot be empty since we have already found the server with
4561 * get_backend_server */
4562 BUG_ON(!be->srv);
4563 if (be->srv == srv) {
4564 be->srv = srv->next;
4565 }
4566 else {
4567 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004568 for (next = be->srv; srv != next->next; next = next->next) {
4569 /* srv cannot be not found since we have already found
4570 * it with get_backend_server */
4571 BUG_ON(!next);
4572 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004573
Amaury Denoyellee5580432021-04-15 14:41:20 +02004574 next->next = srv->next;
4575 }
4576
4577 /* remove srv from addr_node tree */
4578 ebpt_delete(&srv->addr_node);
4579
4580 /* remove srv from idle_node tree for idle conn cleanup */
4581 eb32_delete(&srv->idle_node);
4582
4583 thread_release();
4584
4585 ha_notice("Server %s/%s deleted.\n", be->id, srv->id);
4586 free_server(srv);
4587
4588 cli_msg(appctx, LOG_INFO, "Server deleted.");
4589
4590 return 0;
4591
4592out:
4593 thread_release();
4594
4595 return 1;
4596}
4597
William Lallemand222baf22016-11-19 02:00:33 +01004598/* register cli keywords */
4599static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004600 { { "disable", "agent", NULL }, "disable agent (DEPRECATED) : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
4601 { { "disable", "health", NULL }, "disable health (DEPRECATED) : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
4602 { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
4603 { { "enable", "agent", NULL }, "enable agent (DEPRECATED) : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
4604 { { "enable", "health", NULL }, "enable health (DEPRECATED) : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
4605 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4606 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
4607 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
4608 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
4609 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
4610 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
4611 { { "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 +01004612 {{},}
4613}};
4614
Willy Tarreau0108d902018-11-25 19:14:37 +01004615INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004616
Emeric Brun64cc49c2017-10-03 14:46:45 +02004617/*
4618 * This function applies server's status changes, it is
4619 * is designed to be called asynchronously.
4620 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004621 * Must be called with the server lock held. This may also be called at init
4622 * time as the result of parsing the state file, in which case no lock will be
4623 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004624 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004625static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004626{
4627 struct check *check = &s->check;
4628 int xferred;
4629 struct proxy *px = s->proxy;
4630 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4631 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4632 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004633 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004634
Emeric Brun64cc49c2017-10-03 14:46:45 +02004635 /* If currently main is not set we try to apply pending state changes */
4636 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4637 int next_admin;
4638
4639 /* Backup next admin */
4640 next_admin = s->next_admin;
4641
4642 /* restore current admin state */
4643 s->next_admin = s->cur_admin;
4644
4645 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4646 s->last_change = now.tv_sec;
4647 if (s->proxy->lbprm.set_server_status_down)
4648 s->proxy->lbprm.set_server_status_down(s);
4649
4650 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4651 srv_shutdown_streams(s, SF_ERR_DOWN);
4652
4653 /* we might have streams queued on this server and waiting for
4654 * a connection. Those which are redispatchable will be queued
4655 * to another server or to the proxy itself.
4656 */
4657 xferred = pendconn_redistribute(s);
4658
4659 tmptrash = alloc_trash_chunk();
4660 if (tmptrash) {
4661 chunk_printf(tmptrash,
4662 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4663 s->proxy->id, s->id);
4664
Emeric Brun5a133512017-10-19 14:42:30 +02004665 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004666 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004667
4668 /* we don't send an alert if the server was previously paused */
4669 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004670 send_log(s->proxy, log_level, "%s.\n",
4671 tmptrash->area);
4672 send_email_alert(s, log_level, "%s",
4673 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004674 free_trash_chunk(tmptrash);
4675 tmptrash = NULL;
4676 }
4677 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4678 set_backend_down(s->proxy);
4679
4680 s->counters.down_trans++;
4681 }
4682 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4683 s->last_change = now.tv_sec;
4684 if (s->proxy->lbprm.set_server_status_down)
4685 s->proxy->lbprm.set_server_status_down(s);
4686
4687 /* we might have streams queued on this server and waiting for
4688 * a connection. Those which are redispatchable will be queued
4689 * to another server or to the proxy itself.
4690 */
4691 xferred = pendconn_redistribute(s);
4692
4693 tmptrash = alloc_trash_chunk();
4694 if (tmptrash) {
4695 chunk_printf(tmptrash,
4696 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4697 s->proxy->id, s->id);
4698
Emeric Brun5a133512017-10-19 14:42:30 +02004699 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004700
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004701 ha_warning("%s.\n", tmptrash->area);
4702 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4703 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004704 free_trash_chunk(tmptrash);
4705 tmptrash = NULL;
4706 }
4707
4708 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4709 set_backend_down(s->proxy);
4710 }
4711 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4712 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4713 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4714 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4715 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4716 s->proxy->last_change = now.tv_sec;
4717 }
4718
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004719 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004720 s->down_time += now.tv_sec - s->last_change;
4721
4722 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004723 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004724 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4725
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004726 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004727 /* now propagate the status change to any LB algorithms */
4728 if (px->lbprm.update_server_eweight)
4729 px->lbprm.update_server_eweight(s);
4730 else if (srv_willbe_usable(s)) {
4731 if (px->lbprm.set_server_status_up)
4732 px->lbprm.set_server_status_up(s);
4733 }
4734 else {
4735 if (px->lbprm.set_server_status_down)
4736 px->lbprm.set_server_status_down(s);
4737 }
4738
4739 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4740 * and it's not a backup server and its effective weight is > 0,
4741 * then it can accept new connections, so we shut down all streams
4742 * on all backup servers.
4743 */
4744 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4745 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4746 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4747
4748 /* check if we can handle some connections queued at the proxy. We
4749 * will take as many as we can handle.
4750 */
4751 xferred = pendconn_grab_from_px(s);
4752
4753 tmptrash = alloc_trash_chunk();
4754 if (tmptrash) {
4755 chunk_printf(tmptrash,
4756 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4757 s->proxy->id, s->id);
4758
Emeric Brun5a133512017-10-19 14:42:30 +02004759 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004760 ha_warning("%s.\n", tmptrash->area);
4761 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4762 tmptrash->area);
4763 send_email_alert(s, LOG_NOTICE, "%s",
4764 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004765 free_trash_chunk(tmptrash);
4766 tmptrash = NULL;
4767 }
4768
4769 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4770 set_backend_down(s->proxy);
4771 }
4772 else if (s->cur_eweight != s->next_eweight) {
4773 /* now propagate the status change to any LB algorithms */
4774 if (px->lbprm.update_server_eweight)
4775 px->lbprm.update_server_eweight(s);
4776 else if (srv_willbe_usable(s)) {
4777 if (px->lbprm.set_server_status_up)
4778 px->lbprm.set_server_status_up(s);
4779 }
4780 else {
4781 if (px->lbprm.set_server_status_down)
4782 px->lbprm.set_server_status_down(s);
4783 }
4784
4785 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4786 set_backend_down(s->proxy);
4787 }
4788
4789 s->next_admin = next_admin;
4790 }
4791
Emeric Brun5a133512017-10-19 14:42:30 +02004792 /* reset operational state change */
4793 *s->op_st_chg.reason = 0;
4794 s->op_st_chg.status = s->op_st_chg.code = -1;
4795 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004796
4797 /* Now we try to apply pending admin changes */
4798
4799 /* Maintenance must also disable health checks */
4800 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4801 if (s->check.state & CHK_ST_ENABLED) {
4802 s->check.state |= CHK_ST_PAUSED;
4803 check->health = 0;
4804 }
4805
4806 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004807 tmptrash = alloc_trash_chunk();
4808 if (tmptrash) {
4809 chunk_printf(tmptrash,
4810 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4811 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4812 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004813
Olivier Houchard796a2b32017-10-24 17:42:47 +02004814 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004815
Olivier Houchard796a2b32017-10-24 17:42:47 +02004816 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004817 ha_warning("%s.\n", tmptrash->area);
4818 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4819 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004820 }
4821 free_trash_chunk(tmptrash);
4822 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004823 }
Emeric Brun8f298292017-12-06 16:47:17 +01004824 /* commit new admin status */
4825
4826 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004827 }
4828 else { /* server was still running */
4829 check->health = 0; /* failure */
4830 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004831
4832 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004833 if (s->proxy->lbprm.set_server_status_down)
4834 s->proxy->lbprm.set_server_status_down(s);
4835
Emeric Brun64cc49c2017-10-03 14:46:45 +02004836 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4837 srv_shutdown_streams(s, SF_ERR_DOWN);
4838
William Dauchy6318d332020-05-02 21:52:36 +02004839 /* force connection cleanup on the given server */
4840 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004841 /* we might have streams queued on this server and waiting for
4842 * a connection. Those which are redispatchable will be queued
4843 * to another server or to the proxy itself.
4844 */
4845 xferred = pendconn_redistribute(s);
4846
4847 tmptrash = alloc_trash_chunk();
4848 if (tmptrash) {
4849 chunk_printf(tmptrash,
4850 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4851 s->flags & SRV_F_BACKUP ? "Backup " : "",
4852 s->proxy->id, s->id,
4853 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4854
4855 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4856
4857 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004858 ha_warning("%s.\n", tmptrash->area);
4859 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4860 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004861 }
4862 free_trash_chunk(tmptrash);
4863 tmptrash = NULL;
4864 }
4865 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4866 set_backend_down(s->proxy);
4867
4868 s->counters.down_trans++;
4869 }
4870 }
4871 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4872 /* OK here we're leaving maintenance, we have many things to check,
4873 * because the server might possibly be coming back up depending on
4874 * its state. In practice, leaving maintenance means that we should
4875 * immediately turn to UP (more or less the slowstart) under the
4876 * following conditions :
4877 * - server is neither checked nor tracked
4878 * - server tracks another server which is not checked
4879 * - server tracks another server which is already up
4880 * Which sums up as something simpler :
4881 * "either the tracking server is up or the server's checks are disabled
4882 * or up". Otherwise we only re-enable health checks. There's a special
4883 * case associated to the stopping state which can be inherited. Note
4884 * that the server might still be in drain mode, which is naturally dealt
4885 * with by the lower level functions.
4886 */
4887
4888 if (s->check.state & CHK_ST_ENABLED) {
4889 s->check.state &= ~CHK_ST_PAUSED;
4890 check->health = check->rise; /* start OK but check immediately */
4891 }
4892
4893 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4894 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4895 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4896 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4897 s->next_state = SRV_ST_STOPPING;
4898 }
4899 else {
4900 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004901 if (s->slowstart > 0) {
4902 if (s->warmup)
4903 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4904 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004905 else
4906 s->next_state = SRV_ST_RUNNING;
4907 }
4908
4909 }
4910
4911 tmptrash = alloc_trash_chunk();
4912 if (tmptrash) {
4913 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4914 chunk_printf(tmptrash,
4915 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4916 s->flags & SRV_F_BACKUP ? "Backup " : "",
4917 s->proxy->id, s->id,
4918 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4919 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4920 }
4921 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4922 chunk_printf(tmptrash,
4923 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4924 s->flags & SRV_F_BACKUP ? "Backup " : "",
4925 s->proxy->id, s->id, s->hostname,
4926 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4927 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4928 }
4929 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4930 chunk_printf(tmptrash,
4931 "%sServer %s/%s is %s/%s (leaving maintenance)",
4932 s->flags & SRV_F_BACKUP ? "Backup " : "",
4933 s->proxy->id, s->id,
4934 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4935 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4936 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004937 ha_warning("%s.\n", tmptrash->area);
4938 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4939 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004940 free_trash_chunk(tmptrash);
4941 tmptrash = NULL;
4942 }
4943
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004944 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004945 /* now propagate the status change to any LB algorithms */
4946 if (px->lbprm.update_server_eweight)
4947 px->lbprm.update_server_eweight(s);
4948 else if (srv_willbe_usable(s)) {
4949 if (px->lbprm.set_server_status_up)
4950 px->lbprm.set_server_status_up(s);
4951 }
4952 else {
4953 if (px->lbprm.set_server_status_down)
4954 px->lbprm.set_server_status_down(s);
4955 }
4956
4957 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4958 set_backend_down(s->proxy);
4959
Willy Tarreau6a78e612018-08-07 10:14:53 +02004960 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4961 * and it's not a backup server and its effective weight is > 0,
4962 * then it can accept new connections, so we shut down all streams
4963 * on all backup servers.
4964 */
4965 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4966 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4967 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4968
4969 /* check if we can handle some connections queued at the proxy. We
4970 * will take as many as we can handle.
4971 */
4972 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004973 }
4974 else if (s->next_admin & SRV_ADMF_MAINT) {
4975 /* remaining in maintenance mode, let's inform precisely about the
4976 * situation.
4977 */
4978 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4979 tmptrash = alloc_trash_chunk();
4980 if (tmptrash) {
4981 chunk_printf(tmptrash,
4982 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4983 s->flags & SRV_F_BACKUP ? "Backup " : "",
4984 s->proxy->id, s->id);
4985
4986 if (s->track) /* normally it's mandatory here */
4987 chunk_appendf(tmptrash, " via %s/%s",
4988 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004989 ha_warning("%s.\n", tmptrash->area);
4990 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4991 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004992 free_trash_chunk(tmptrash);
4993 tmptrash = NULL;
4994 }
4995 }
4996 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4997 tmptrash = alloc_trash_chunk();
4998 if (tmptrash) {
4999 chunk_printf(tmptrash,
5000 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5001 s->flags & SRV_F_BACKUP ? "Backup " : "",
5002 s->proxy->id, s->id, s->hostname);
5003
5004 if (s->track) /* normally it's mandatory here */
5005 chunk_appendf(tmptrash, " via %s/%s",
5006 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005007 ha_warning("%s.\n", tmptrash->area);
5008 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5009 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005010 free_trash_chunk(tmptrash);
5011 tmptrash = NULL;
5012 }
5013 }
5014 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5015 tmptrash = alloc_trash_chunk();
5016 if (tmptrash) {
5017 chunk_printf(tmptrash,
5018 "%sServer %s/%s remains in forced maintenance",
5019 s->flags & SRV_F_BACKUP ? "Backup " : "",
5020 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005021 ha_warning("%s.\n", tmptrash->area);
5022 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5023 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005024 free_trash_chunk(tmptrash);
5025 tmptrash = NULL;
5026 }
5027 }
5028 /* don't report anything when leaving drain mode and remaining in maintenance */
5029
5030 s->cur_admin = s->next_admin;
5031 }
5032
5033 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5034 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5035 /* drain state is applied only if not yet in maint */
5036
5037 s->last_change = now.tv_sec;
5038 if (px->lbprm.set_server_status_down)
5039 px->lbprm.set_server_status_down(s);
5040
5041 /* we might have streams queued on this server and waiting for
5042 * a connection. Those which are redispatchable will be queued
5043 * to another server or to the proxy itself.
5044 */
5045 xferred = pendconn_redistribute(s);
5046
5047 tmptrash = alloc_trash_chunk();
5048 if (tmptrash) {
5049 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5050 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5051 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5052
5053 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5054
5055 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005056 ha_warning("%s.\n", tmptrash->area);
5057 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5058 tmptrash->area);
5059 send_email_alert(s, LOG_NOTICE, "%s",
5060 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005061 }
5062 free_trash_chunk(tmptrash);
5063 tmptrash = NULL;
5064 }
5065
5066 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5067 set_backend_down(s->proxy);
5068 }
5069 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5070 /* OK completely leaving drain mode */
5071 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5072 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5073 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5074 s->proxy->last_change = now.tv_sec;
5075 }
5076
5077 if (s->last_change < now.tv_sec) // ignore negative times
5078 s->down_time += now.tv_sec - s->last_change;
5079 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005080 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005081
5082 tmptrash = alloc_trash_chunk();
5083 if (tmptrash) {
5084 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5085 chunk_printf(tmptrash,
5086 "%sServer %s/%s is %s (leaving forced drain)",
5087 s->flags & SRV_F_BACKUP ? "Backup " : "",
5088 s->proxy->id, s->id,
5089 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5090 }
5091 else {
5092 chunk_printf(tmptrash,
5093 "%sServer %s/%s is %s (leaving drain)",
5094 s->flags & SRV_F_BACKUP ? "Backup " : "",
5095 s->proxy->id, s->id,
5096 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5097 if (s->track) /* normally it's mandatory here */
5098 chunk_appendf(tmptrash, " via %s/%s",
5099 s->track->proxy->id, s->track->id);
5100 }
5101
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005102 ha_warning("%s.\n", tmptrash->area);
5103 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5104 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005105 free_trash_chunk(tmptrash);
5106 tmptrash = NULL;
5107 }
5108
5109 /* now propagate the status change to any LB algorithms */
5110 if (px->lbprm.update_server_eweight)
5111 px->lbprm.update_server_eweight(s);
5112 else if (srv_willbe_usable(s)) {
5113 if (px->lbprm.set_server_status_up)
5114 px->lbprm.set_server_status_up(s);
5115 }
5116 else {
5117 if (px->lbprm.set_server_status_down)
5118 px->lbprm.set_server_status_down(s);
5119 }
5120 }
5121 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5122 /* remaining in drain mode after removing one of its flags */
5123
5124 tmptrash = alloc_trash_chunk();
5125 if (tmptrash) {
5126 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5127 chunk_printf(tmptrash,
5128 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5129 s->flags & SRV_F_BACKUP ? "Backup " : "",
5130 s->proxy->id, s->id);
5131
5132 if (s->track) /* normally it's mandatory here */
5133 chunk_appendf(tmptrash, " via %s/%s",
5134 s->track->proxy->id, s->track->id);
5135 }
5136 else {
5137 chunk_printf(tmptrash,
5138 "%sServer %s/%s remains in forced drain mode",
5139 s->flags & SRV_F_BACKUP ? "Backup " : "",
5140 s->proxy->id, s->id);
5141 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005142 ha_warning("%s.\n", tmptrash->area);
5143 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5144 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005145 free_trash_chunk(tmptrash);
5146 tmptrash = NULL;
5147 }
5148
5149 /* commit new admin status */
5150
5151 s->cur_admin = s->next_admin;
5152 }
5153 }
5154
5155 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005156 *s->adm_st_chg_cause = 0;
5157}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005158
Willy Tarreau144f84a2021-03-02 16:09:26 +01005159struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005160{
5161 struct connection *conn;
5162
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005163 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005164 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005165 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005166 }
5167
5168 return task;
5169}
5170
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005171/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005172 * moving them all.
5173 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005174 *
5175 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005176 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005177static 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 +02005178{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005179 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005180 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005181 int i = 0;
5182
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005183 node = eb_first(idle_tree);
5184 while (node) {
5185 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005186 if (toremove_nb != -1 && i >= toremove_nb)
5187 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005188
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005189 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005190 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005191 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005192 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005193
5194 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005195 }
5196 return i;
5197}
William Dauchy6318d332020-05-02 21:52:36 +02005198/* cleanup connections for a given server
5199 * might be useful when going on forced maintenance or live changing ip/port
5200 */
William Dauchy707ad322020-05-04 13:52:40 +02005201static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005202{
William Dauchy6318d332020-05-02 21:52:36 +02005203 int did_remove;
5204 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005205
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005206 /* nothing to do if pool-max-conn is null */
5207 if (!srv->max_idle_conns)
5208 return;
5209
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005210 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005211 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005212 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005213 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005214 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 +02005215 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005216 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 +02005217 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005218 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005219 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005220 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005221
5222 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5223 break;
William Dauchy6318d332020-05-02 21:52:36 +02005224 }
William Dauchy6318d332020-05-02 21:52:36 +02005225}
5226
Willy Tarreau144f84a2021-03-02 16:09:26 +01005227struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005228{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005229 struct server *srv;
5230 struct eb32_node *eb;
5231 int i;
5232 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005233
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005234 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005235 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5236 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005237 int exceed_conns;
5238 int to_kill;
5239 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005240
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005241 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5242 if (!eb) {
5243 /* we might have reached the end of the tree, typically because
5244 * <now_ms> is in the first half and we're first scanning the last
5245 * half. Let's loop back to the beginning of the tree now.
5246 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005247
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005248 eb = eb32_first(&idle_conn_srv);
5249 if (likely(!eb))
5250 break;
5251 }
5252 if (tick_is_lt(now_ms, eb->key)) {
5253 /* timer not expired yet, revisit it later */
5254 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005255 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005256 }
5257 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005258
5259 /* Calculate how many idle connections we want to kill :
5260 * we want to remove half the difference between the total
5261 * of established connections (used or idle) and the max
5262 * number of used connections.
5263 */
5264 curr_idle = srv->curr_idle_conns;
5265 if (curr_idle == 0)
5266 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005267 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005268 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005269
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005270 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005271 if (srv->est_need_conns < srv->max_used_conns)
5272 srv->est_need_conns = srv->max_used_conns;
5273
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005274 srv->max_used_conns = srv->curr_used_conns;
5275
Willy Tarreau18ed7892020-07-02 19:05:30 +02005276 if (exceed_conns <= 0)
5277 goto remove;
5278
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005279 /* check all threads starting with ours */
5280 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005281 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005282 int j;
5283 int did_remove = 0;
5284
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005285 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5286 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005287
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005288 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005289 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 +02005290 if (j > 0)
5291 did_remove = 1;
5292 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005293 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 +01005294 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005295 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005296
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005297 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005298 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005299
5300 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5301 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005302 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005303remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005304 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005305
5306 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005307 /* There are still more idle connections, add the
5308 * server back in the tree.
5309 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005310 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005311 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005312 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005313 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005314 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005315 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5316
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005317 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005318 return task;
5319}
Olivier Houchard88698d92019-04-16 19:07:22 +02005320
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005321/* Close remaining idle connections. This functions is designed to be run on
5322 * process shutdown. This guarantees a proper socket shutdown to avoid
5323 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5324 * bypassed.
5325 *
5326 * This function is not thread-safe so it must only be called via a global
5327 * deinit function.
5328 */
5329static void srv_close_idle_conns(struct server *srv)
5330{
5331 struct eb_root **cleaned_tree;
5332 int i;
5333
5334 for (i = 0; i < global.nbthread; ++i) {
5335 struct eb_root *conn_trees[] = {
5336 &srv->per_thr[i].idle_conns,
5337 &srv->per_thr[i].safe_conns,
5338 &srv->per_thr[i].avail_conns,
5339 NULL
5340 };
5341
5342 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5343 while (!eb_is_empty(*cleaned_tree)) {
5344 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5345 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5346 struct connection *conn = conn_hash_node->conn;
5347
5348 if (conn->ctrl->ctrl_close)
5349 conn->ctrl->ctrl_close(conn);
5350 ebmb_delete(node);
5351 }
5352 }
5353 }
5354}
5355
5356REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5357
Willy Tarreau76cc6992020-07-01 18:49:24 +02005358/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5359static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005360 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005361 char **err)
5362{
5363 if (too_many_args(1, args, err, NULL))
5364 return -1;
5365
5366 if (strcmp(args[1], "on") == 0)
5367 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5368 else if (strcmp(args[1], "off") == 0)
5369 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5370 else {
5371 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5372 return -1;
5373 }
5374 return 0;
5375}
5376
Olivier Houchard88698d92019-04-16 19:07:22 +02005377/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5378static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005379 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005380 char **err)
5381{
5382 int arg = -1;
5383
5384 if (too_many_args(1, args, err, NULL))
5385 return -1;
5386
5387 if (*(args[1]) != 0)
5388 arg = atoi(args[1]);
5389
5390 if (arg < 0 || arg > 100) {
5391 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5392 return -1;
5393 }
5394
5395 if (args[0][10] == 'h')
5396 global.tune.pool_high_ratio = arg;
5397 else
5398 global.tune.pool_low_ratio = arg;
5399 return 0;
5400}
5401
5402/* config keyword parsers */
5403static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005404 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005405 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5406 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5407 { 0, NULL, NULL }
5408}};
5409
5410INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5411
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005412/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005413 * Local variables:
5414 * c-indent-level: 8
5415 * c-basic-offset: 8
5416 * End:
5417 */