blob: 3fa384584f2e4f25ff8e67322298edcdbfa7494f [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 Tarreaua55c4542020-06-04 22:59:39 +020036#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010037#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020038#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020039#include <haproxy/server.h>
William Dauchyf6370442020-11-14 19:25:33 +010040#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020041#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047
Baptiste Assmannda29fe22019-06-13 13:24:29 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010050static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020051static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020052
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010053/* extra keywords used as value for other arguments. They are used as
54 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010055 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010056static const char *extra_kw_list[] = {
57 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010058 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010059 NULL /* must be last */
60};
61
Willy Tarreau21faa912012-10-10 08:27:36 +020062/* List head of all known server keywords */
63static struct srv_kw_list srv_keywords = {
64 .list = LIST_HEAD_INIT(srv_keywords.list)
65};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020066
Willy Tarreauaf613e82020-06-05 08:40:51 +020067__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010068struct eb_root idle_conn_srv = EB_ROOT;
69struct task *idle_conn_task = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010070struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010071
Frédéric Lécaille7da71292019-05-20 09:47:07 +020072/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070073struct dict server_key_dict = {
74 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020075 .values = EB_ROOT_UNIQUE,
76};
77
Simon Hormana3608442013-11-01 16:46:15 +090078int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020079{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010080 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020081 return s->down_time;
82
83 return now.tv_sec - s->last_change + s->down_time;
84}
Willy Tarreaubaaee002006-06-26 02:48:02 +020085
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050086int srv_lastsession(const struct server *s)
87{
88 if (s->counters.last_sess)
89 return now.tv_sec - s->counters.last_sess;
90
91 return -1;
92}
93
Simon Horman4a741432013-02-23 15:35:38 +090094int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020095{
Simon Horman4a741432013-02-23 15:35:38 +090096 const struct server *s = check->server;
97
Willy Tarreauff5ae352013-12-11 20:36:34 +010098 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090099 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Emeric Brun52a91d32017-08-31 14:41:55 +0200101 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900102 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100103
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105}
106
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100107/*
108 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200109 * Unlikely, but it can happen. The server's proxy must be at least
110 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100111 */
112static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100113{
114 struct proxy *p = s->proxy;
115 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100116
117 for (tmpserv = p->srv; tmpserv != NULL;
118 tmpserv = tmpserv->next) {
119 if (tmpserv == s)
120 continue;
121 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
122 continue;
123 if (tmpserv->cookie &&
124 strcmp(tmpserv->cookie, s->cookie) == 0) {
125 ha_warning("We generated two equal cookies for two different servers.\n"
126 "Please change the secret key for '%s'.\n",
127 s->proxy->id);
128 }
129 }
130
131}
132
Willy Tarreau46b7f532018-08-21 11:54:26 +0200133/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200134 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100136void srv_set_dyncookie(struct server *s)
137{
138 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100139 char *tmpbuf;
140 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100141 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100142 size_t buffer_len;
143 int addr_len;
144 int port;
145
Willy Tarreau595e7672020-10-20 17:30:08 +0200146 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200147
Olivier Houchard4e694042017-03-14 20:01:29 +0100148 if ((s->flags & SRV_F_COOKIESET) ||
149 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
150 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200151 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100152 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100153
154 if (s->addr.ss_family != AF_INET &&
155 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200156 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100157 /*
158 * Buffer to calculate the cookie value.
159 * The buffer contains the secret key + the server IP address
160 * + the TCP port.
161 */
162 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
163 /*
164 * The TCP port should use only 2 bytes, but is stored in
165 * an unsigned int in struct server, so let's use 4, to be
166 * on the safe side.
167 */
168 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200169 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100170 memcpy(tmpbuf, p->dyncookie_key, key_len);
171 memcpy(&(tmpbuf[key_len]),
172 s->addr.ss_family == AF_INET ?
173 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
174 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
175 addr_len);
176 /*
177 * Make sure it's the same across all the load balancers,
178 * no matter their endianness.
179 */
180 port = htonl(s->svc_port);
181 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
182 hash_value = XXH64(tmpbuf, buffer_len, 0);
183 memprintf(&s->cookie, "%016llx", hash_value);
184 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200185 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100186 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100187
188 /* Don't bother checking if the dyncookie is duplicated if
189 * the server is marked as "disabled", maybe it doesn't have
190 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100191 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100192 if (!(s->next_admin & SRV_ADMF_FMAINT))
193 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200194 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200195 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100196}
197
Willy Tarreau21faa912012-10-10 08:27:36 +0200198/*
Thayne McCombs92149f92020-11-20 01:28:26 -0700199 * Must be called with the server lock held, and will write-lock the proxy.
200 */
201static void srv_set_addr_desc(struct server *s)
202{
203 struct proxy *p = s->proxy;
204 char *key;
205
206 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
207
208 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700209 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700210 free(key);
211 return;
212 }
213
214 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
215 ebpt_delete(&s->addr_node);
216 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
217
218 free(s->addr_node.key);
219 }
220
221 s->addr_node.key = key;
222
Thayne McCombs24da7e12021-01-05 23:10:09 -0700223 if (s->addr_node.key) {
224 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
225 ebis_insert(&p->used_server_addr, &s->addr_node);
226 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
227 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700228}
229
230/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200231 * Registers the server keyword list <kwl> as a list of valid keywords for next
232 * parsing sessions.
233 */
234void srv_register_keywords(struct srv_kw_list *kwl)
235{
236 LIST_ADDQ(&srv_keywords.list, &kwl->list);
237}
238
239/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
240 * keyword is found with a NULL ->parse() function, then an attempt is made to
241 * find one with a valid ->parse() function. This way it is possible to declare
242 * platform-dependant, known keywords as NULL, then only declare them as valid
243 * if some options are met. Note that if the requested keyword contains an
244 * opening parenthesis, everything from this point is ignored.
245 */
246struct srv_kw *srv_find_kw(const char *kw)
247{
248 int index;
249 const char *kwend;
250 struct srv_kw_list *kwl;
251 struct srv_kw *ret = NULL;
252
253 kwend = strchr(kw, '(');
254 if (!kwend)
255 kwend = kw + strlen(kw);
256
257 list_for_each_entry(kwl, &srv_keywords.list, list) {
258 for (index = 0; kwl->kw[index].kw != NULL; index++) {
259 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
260 kwl->kw[index].kw[kwend-kw] == 0) {
261 if (kwl->kw[index].parse)
262 return &kwl->kw[index]; /* found it !*/
263 else
264 ret = &kwl->kw[index]; /* may be OK */
265 }
266 }
267 }
268 return ret;
269}
270
271/* Dumps all registered "server" keywords to the <out> string pointer. The
272 * unsupported keywords are only dumped if their supported form was not
273 * found.
274 */
275void srv_dump_kws(char **out)
276{
277 struct srv_kw_list *kwl;
278 int index;
279
Christopher Faulet784063e2020-05-18 12:14:18 +0200280 if (!out)
281 return;
282
Willy Tarreau21faa912012-10-10 08:27:36 +0200283 *out = NULL;
284 list_for_each_entry(kwl, &srv_keywords.list, list) {
285 for (index = 0; kwl->kw[index].kw != NULL; index++) {
286 if (kwl->kw[index].parse ||
287 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
288 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
289 kwl->scope,
290 kwl->kw[index].kw,
291 kwl->kw[index].skip ? " <arg>" : "",
292 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
293 kwl->kw[index].parse ? "" : " (not supported)");
294 }
295 }
296 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100297}
298
299/* Try to find in srv_keyword the word that looks closest to <word> by counting
300 * transitions between letters, digits and other characters. Will return the
301 * best matching word if found, otherwise NULL. An optional array of extra
302 * words to compare may be passed in <extra>, but it must then be terminated
303 * by a NULL entry. If unused it may be NULL.
304 */
305static const char *srv_find_best_kw(const char *word)
306{
307 uint8_t word_sig[1024];
308 uint8_t list_sig[1024];
309 const struct srv_kw_list *kwl;
310 const char *best_ptr = NULL;
311 int dist, best_dist = INT_MAX;
312 const char **extra;
313 int index;
314
315 make_word_fingerprint(word_sig, word);
316 list_for_each_entry(kwl, &srv_keywords.list, list) {
317 for (index = 0; kwl->kw[index].kw != NULL; index++) {
318 make_word_fingerprint(list_sig, kwl->kw[index].kw);
319 dist = word_fingerprint_distance(word_sig, list_sig);
320 if (dist < best_dist) {
321 best_dist = dist;
322 best_ptr = kwl->kw[index].kw;
323 }
324 }
325 }
326
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100327 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100328 make_word_fingerprint(list_sig, *extra);
329 dist = word_fingerprint_distance(word_sig, list_sig);
330 if (dist < best_dist) {
331 best_dist = dist;
332 best_ptr = *extra;
333 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100334 }
335
336 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
337 best_ptr = NULL;
338
339 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200340}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100341
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100342/* Parse the "backup" server keyword */
343static int srv_parse_backup(char **args, int *cur_arg,
344 struct proxy *curproxy, struct server *newsrv, char **err)
345{
346 newsrv->flags |= SRV_F_BACKUP;
347 return 0;
348}
349
Alexander Liu2a54bb72019-05-22 19:44:48 +0800350
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100351/* Parse the "cookie" server keyword */
352static int srv_parse_cookie(char **args, int *cur_arg,
353 struct proxy *curproxy, struct server *newsrv, char **err)
354{
355 char *arg;
356
357 arg = args[*cur_arg + 1];
358 if (!*arg) {
359 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
360 return ERR_ALERT | ERR_FATAL;
361 }
362
363 free(newsrv->cookie);
364 newsrv->cookie = strdup(arg);
365 newsrv->cklen = strlen(arg);
366 newsrv->flags |= SRV_F_COOKIESET;
367 return 0;
368}
369
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100370/* Parse the "disabled" server keyword */
371static int srv_parse_disabled(char **args, int *cur_arg,
372 struct proxy *curproxy, struct server *newsrv, char **err)
373{
Emeric Brun52a91d32017-08-31 14:41:55 +0200374 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
375 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100376 newsrv->check.state |= CHK_ST_PAUSED;
377 newsrv->check.health = 0;
378 return 0;
379}
380
381/* Parse the "enabled" server keyword */
382static int srv_parse_enabled(char **args, int *cur_arg,
383 struct proxy *curproxy, struct server *newsrv, char **err)
384{
Emeric Brun52a91d32017-08-31 14:41:55 +0200385 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
386 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100387 newsrv->check.state &= ~CHK_ST_PAUSED;
388 newsrv->check.health = newsrv->check.rise;
389 return 0;
390}
391
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100392/* Parse the "error-limit" server keyword */
393static int srv_parse_error_limit(char **args, int *cur_arg,
394 struct proxy *curproxy, struct server *newsrv, char **err)
395{
396 if (!*args[*cur_arg + 1]) {
397 memprintf(err, "'%s' expects an integer argument.",
398 args[*cur_arg]);
399 return ERR_ALERT | ERR_FATAL;
400 }
401
402 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
403
404 if (newsrv->consecutive_errors_limit <= 0) {
405 memprintf(err, "%s has to be > 0.",
406 args[*cur_arg]);
407 return ERR_ALERT | ERR_FATAL;
408 }
409
410 return 0;
411}
412
413/* Parse the "init-addr" server keyword */
414static int srv_parse_init_addr(char **args, int *cur_arg,
415 struct proxy *curproxy, struct server *newsrv, char **err)
416{
417 char *p, *end;
418 int done;
419 struct sockaddr_storage sa;
420
421 newsrv->init_addr_methods = 0;
422 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
423
424 for (p = args[*cur_arg + 1]; *p; p = end) {
425 /* cut on next comma */
426 for (end = p; *end && *end != ','; end++);
427 if (*end)
428 *(end++) = 0;
429
430 memset(&sa, 0, sizeof(sa));
431 if (strcmp(p, "libc") == 0) {
432 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
433 }
434 else if (strcmp(p, "last") == 0) {
435 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
436 }
437 else if (strcmp(p, "none") == 0) {
438 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
439 }
440 else if (str2ip2(p, &sa, 0)) {
441 if (is_addr(&newsrv->init_addr)) {
442 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
443 args[*cur_arg], p);
444 return ERR_ALERT | ERR_FATAL;
445 }
446 newsrv->init_addr = sa;
447 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
448 }
449 else {
450 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
451 args[*cur_arg], p);
452 return ERR_ALERT | ERR_FATAL;
453 }
454 if (!done) {
455 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
456 args[*cur_arg], p);
457 return ERR_ALERT | ERR_FATAL;
458 }
459 }
460
461 return 0;
462}
463
464/* Parse the "log-proto" server keyword */
465static int srv_parse_log_proto(char **args, int *cur_arg,
466 struct proxy *curproxy, struct server *newsrv, char **err)
467{
468 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
469 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
470 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
471 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
472 else {
473 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
474 args[*cur_arg], args[*cur_arg + 1]);
475 return ERR_ALERT | ERR_FATAL;
476 }
477
478 return 0;
479}
480
481/* Parse the "maxconn" server keyword */
482static int srv_parse_maxconn(char **args, int *cur_arg,
483 struct proxy *curproxy, struct server *newsrv, char **err)
484{
485 newsrv->maxconn = atol(args[*cur_arg + 1]);
486 return 0;
487}
488
489/* Parse the "maxqueue" server keyword */
490static int srv_parse_maxqueue(char **args, int *cur_arg,
491 struct proxy *curproxy, struct server *newsrv, char **err)
492{
493 newsrv->maxqueue = atol(args[*cur_arg + 1]);
494 return 0;
495}
496
497/* Parse the "minconn" server keyword */
498static int srv_parse_minconn(char **args, int *cur_arg,
499 struct proxy *curproxy, struct server *newsrv, char **err)
500{
501 newsrv->minconn = atol(args[*cur_arg + 1]);
502 return 0;
503}
504
Willy Tarreau9c538e02019-01-23 10:21:49 +0100505static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
506{
507 char *arg;
508
509 arg = args[*cur_arg + 1];
510 if (!*arg) {
511 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
512 return ERR_ALERT | ERR_FATAL;
513 }
514 newsrv->max_reuse = atoi(arg);
515
516 return 0;
517}
518
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100519static 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 +0100520{
521 const char *res;
522 char *arg;
523 unsigned int time;
524
525 arg = args[*cur_arg + 1];
526 if (!*arg) {
527 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
528 return ERR_ALERT | ERR_FATAL;
529 }
530 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200531 if (res == PARSE_TIME_OVER) {
532 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
533 args[*cur_arg+1], args[*cur_arg]);
534 return ERR_ALERT | ERR_FATAL;
535 }
536 else if (res == PARSE_TIME_UNDER) {
537 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
538 args[*cur_arg+1], args[*cur_arg]);
539 return ERR_ALERT | ERR_FATAL;
540 }
541 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100542 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
543 *res, args[*cur_arg]);
544 return ERR_ALERT | ERR_FATAL;
545 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100546 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100547
548 return 0;
549}
550
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200551static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
552{
553 char *arg;
554
555 arg = args[*cur_arg + 1];
556 if (!*arg) {
557 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
558 return ERR_ALERT | ERR_FATAL;
559 }
560
561 newsrv->low_idle_conns = atoi(arg);
562 return 0;
563}
564
Olivier Houchard006e3102018-12-10 18:30:32 +0100565static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
566{
567 char *arg;
568
569 arg = args[*cur_arg + 1];
570 if (!*arg) {
571 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
572 return ERR_ALERT | ERR_FATAL;
573 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100574
Olivier Houchard006e3102018-12-10 18:30:32 +0100575 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100576 if ((int)newsrv->max_idle_conns < -1) {
577 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
578 return ERR_ALERT | ERR_FATAL;
579 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100580
581 return 0;
582}
583
Willy Tarreaudff55432012-10-10 17:51:05 +0200584/* parse the "id" server keyword */
585static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
586{
587 struct eb32_node *node;
588
589 if (!*args[*cur_arg + 1]) {
590 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
591 return ERR_ALERT | ERR_FATAL;
592 }
593
594 newsrv->puid = atol(args[*cur_arg + 1]);
595 newsrv->conf.id.key = newsrv->puid;
596
597 if (newsrv->puid <= 0) {
598 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
599 return ERR_ALERT | ERR_FATAL;
600 }
601
602 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
603 if (node) {
604 struct server *target = container_of(node, struct server, conf.id);
605 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
606 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
607 target->id);
608 return ERR_ALERT | ERR_FATAL;
609 }
610
611 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200612 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200613 return 0;
614}
615
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100616/* Parse the "namespace" server keyword */
617static int srv_parse_namespace(char **args, int *cur_arg,
618 struct proxy *curproxy, struct server *newsrv, char **err)
619{
Willy Tarreaue5733232019-05-22 19:24:06 +0200620#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100621 char *arg;
622
623 arg = args[*cur_arg + 1];
624 if (!*arg) {
625 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
626 return ERR_ALERT | ERR_FATAL;
627 }
628
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100629 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100630 /* Use the namespace associated with the connection (if present). */
631 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
632 return 0;
633 }
634
635 /*
636 * As this parser may be called several times for the same 'default-server'
637 * object, or for a new 'server' instance deriving from a 'default-server'
638 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
639 */
640 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
641
642 newsrv->netns = netns_store_lookup(arg, strlen(arg));
643 if (!newsrv->netns)
644 newsrv->netns = netns_store_insert(arg);
645
646 if (!newsrv->netns) {
647 memprintf(err, "Cannot open namespace '%s'", arg);
648 return ERR_ALERT | ERR_FATAL;
649 }
650
651 return 0;
652#else
653 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
654 return ERR_ALERT | ERR_FATAL;
655#endif
656}
657
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100658/* Parse the "no-backup" server keyword */
659static int srv_parse_no_backup(char **args, int *cur_arg,
660 struct proxy *curproxy, struct server *newsrv, char **err)
661{
662 newsrv->flags &= ~SRV_F_BACKUP;
663 return 0;
664}
665
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100666
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100667/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200668static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100669{
670 srv->pp_opts &= ~flags;
671 return 0;
672}
673
674/* Parse the "no-send-proxy" server keyword */
675static int srv_parse_no_send_proxy(char **args, int *cur_arg,
676 struct proxy *curproxy, struct server *newsrv, char **err)
677{
678 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
679}
680
681/* Parse the "no-send-proxy-v2" server keyword */
682static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
683 struct proxy *curproxy, struct server *newsrv, char **err)
684{
685 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
686}
687
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200688/* Parse the "no-tfo" server keyword */
689static int srv_parse_no_tfo(char **args, int *cur_arg,
690 struct proxy *curproxy, struct server *newsrv, char **err)
691{
692 newsrv->flags &= ~SRV_F_FASTOPEN;
693 return 0;
694}
695
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100696/* Parse the "non-stick" server keyword */
697static int srv_parse_non_stick(char **args, int *cur_arg,
698 struct proxy *curproxy, struct server *newsrv, char **err)
699{
700 newsrv->flags |= SRV_F_NON_STICK;
701 return 0;
702}
703
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100704/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200705static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100706{
707 srv->pp_opts |= flags;
708 return 0;
709}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200710/* parse the "proto" server keyword */
711static int srv_parse_proto(char **args, int *cur_arg,
712 struct proxy *px, struct server *newsrv, char **err)
713{
714 struct ist proto;
715
716 if (!*args[*cur_arg + 1]) {
717 memprintf(err, "'%s' : missing value", args[*cur_arg]);
718 return ERR_ALERT | ERR_FATAL;
719 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100720 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200721 newsrv->mux_proto = get_mux_proto(proto);
722 if (!newsrv->mux_proto) {
723 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
724 return ERR_ALERT | ERR_FATAL;
725 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200726 return 0;
727}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100728
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100729/* parse the "proxy-v2-options" */
730static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
731 struct proxy *px, struct server *newsrv, char **err)
732{
733 char *p, *n;
734 for (p = args[*cur_arg+1]; p; p = n) {
735 n = strchr(p, ',');
736 if (n)
737 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100738 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100739 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100740 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100741 newsrv->pp_opts |= SRV_PP_V2_SSL;
742 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100743 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100744 newsrv->pp_opts |= SRV_PP_V2_SSL;
745 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100746 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100747 newsrv->pp_opts |= SRV_PP_V2_SSL;
748 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100749 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100750 newsrv->pp_opts |= SRV_PP_V2_SSL;
751 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100752 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100753 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100754 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100755 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100756 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100757 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100758 } else
759 goto fail;
760 }
761 return 0;
762 fail:
763 if (err)
764 memprintf(err, "'%s' : proxy v2 option not implemented", p);
765 return ERR_ALERT | ERR_FATAL;
766}
767
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100768/* Parse the "observe" server keyword */
769static int srv_parse_observe(char **args, int *cur_arg,
770 struct proxy *curproxy, struct server *newsrv, char **err)
771{
772 char *arg;
773
774 arg = args[*cur_arg + 1];
775 if (!*arg) {
776 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
777 return ERR_ALERT | ERR_FATAL;
778 }
779
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100780 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100781 newsrv->observe = HANA_OBS_NONE;
782 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100783 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100784 newsrv->observe = HANA_OBS_LAYER4;
785 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100786 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100787 if (curproxy->mode != PR_MODE_HTTP) {
788 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
789 return ERR_ALERT;
790 }
791 newsrv->observe = HANA_OBS_LAYER7;
792 }
793 else {
794 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
795 "but got '%s'\n", args[*cur_arg], arg);
796 return ERR_ALERT | ERR_FATAL;
797 }
798
799 return 0;
800}
801
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100802/* Parse the "on-error" server keyword */
803static int srv_parse_on_error(char **args, int *cur_arg,
804 struct proxy *curproxy, struct server *newsrv, char **err)
805{
806 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
807 newsrv->onerror = HANA_ONERR_FASTINTER;
808 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
809 newsrv->onerror = HANA_ONERR_FAILCHK;
810 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
811 newsrv->onerror = HANA_ONERR_SUDDTH;
812 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
813 newsrv->onerror = HANA_ONERR_MARKDWN;
814 else {
815 memprintf(err, "'%s' expects one of 'fastinter', "
816 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
817 args[*cur_arg], args[*cur_arg + 1]);
818 return ERR_ALERT | ERR_FATAL;
819 }
820
821 return 0;
822}
823
824/* Parse the "on-marked-down" server keyword */
825static int srv_parse_on_marked_down(char **args, int *cur_arg,
826 struct proxy *curproxy, struct server *newsrv, char **err)
827{
828 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
829 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
830 else {
831 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
832 args[*cur_arg], args[*cur_arg + 1]);
833 return ERR_ALERT | ERR_FATAL;
834 }
835
836 return 0;
837}
838
839/* Parse the "on-marked-up" server keyword */
840static int srv_parse_on_marked_up(char **args, int *cur_arg,
841 struct proxy *curproxy, struct server *newsrv, char **err)
842{
843 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
844 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
845 else {
846 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
847 args[*cur_arg], args[*cur_arg + 1]);
848 return ERR_ALERT | ERR_FATAL;
849 }
850
851 return 0;
852}
853
Frédéric Lécaille16186232017-03-14 16:42:49 +0100854/* Parse the "redir" server keyword */
855static int srv_parse_redir(char **args, int *cur_arg,
856 struct proxy *curproxy, struct server *newsrv, char **err)
857{
858 char *arg;
859
860 arg = args[*cur_arg + 1];
861 if (!*arg) {
862 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
863 return ERR_ALERT | ERR_FATAL;
864 }
865
866 free(newsrv->rdr_pfx);
867 newsrv->rdr_pfx = strdup(arg);
868 newsrv->rdr_len = strlen(arg);
869
870 return 0;
871}
872
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100873/* Parse the "resolvers" server keyword */
874static int srv_parse_resolvers(char **args, int *cur_arg,
875 struct proxy *curproxy, struct server *newsrv, char **err)
876{
877 free(newsrv->resolvers_id);
878 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
879 return 0;
880}
881
882/* Parse the "resolve-net" server keyword */
883static int srv_parse_resolve_net(char **args, int *cur_arg,
884 struct proxy *curproxy, struct server *newsrv, char **err)
885{
886 char *p, *e;
887 unsigned char mask;
888 struct resolv_options *opt;
889
890 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
891 memprintf(err, "'%s' expects a list of networks.",
892 args[*cur_arg]);
893 return ERR_ALERT | ERR_FATAL;
894 }
895
896 opt = &newsrv->resolv_opts;
897
898 /* Split arguments by comma, and convert it from ipv4 or ipv6
899 * string network in in_addr or in6_addr.
900 */
901 p = args[*cur_arg + 1];
902 e = p;
903 while (*p != '\0') {
904 /* If no room available, return error. */
905 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
906 memprintf(err, "'%s' exceed %d networks.",
907 args[*cur_arg], SRV_MAX_PREF_NET);
908 return ERR_ALERT | ERR_FATAL;
909 }
910 /* look for end or comma. */
911 while (*e != ',' && *e != '\0')
912 e++;
913 if (*e == ',') {
914 *e = '\0';
915 e++;
916 }
917 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
918 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
919 /* Try to convert input string from ipv4 or ipv6 network. */
920 opt->pref_net[opt->pref_net_nb].family = AF_INET;
921 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
922 &mask)) {
923 /* Try to convert input string from ipv6 network. */
924 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
925 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
926 } else {
927 /* All network conversions fail, return error. */
928 memprintf(err, "'%s' invalid network '%s'.",
929 args[*cur_arg], p);
930 return ERR_ALERT | ERR_FATAL;
931 }
932 opt->pref_net_nb++;
933 p = e;
934 }
935
936 return 0;
937}
938
939/* Parse the "resolve-opts" server keyword */
940static int srv_parse_resolve_opts(char **args, int *cur_arg,
941 struct proxy *curproxy, struct server *newsrv, char **err)
942{
943 char *p, *end;
944
945 for (p = args[*cur_arg + 1]; *p; p = end) {
946 /* cut on next comma */
947 for (end = p; *end && *end != ','; end++);
948 if (*end)
949 *(end++) = 0;
950
951 if (strcmp(p, "allow-dup-ip") == 0) {
952 newsrv->resolv_opts.accept_duplicate_ip = 1;
953 }
954 else if (strcmp(p, "ignore-weight") == 0) {
955 newsrv->resolv_opts.ignore_weight = 1;
956 }
957 else if (strcmp(p, "prevent-dup-ip") == 0) {
958 newsrv->resolv_opts.accept_duplicate_ip = 0;
959 }
960 else {
961 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
962 args[*cur_arg], p);
963 return ERR_ALERT | ERR_FATAL;
964 }
965 }
966
967 return 0;
968}
969
970/* Parse the "resolve-prefer" server keyword */
971static int srv_parse_resolve_prefer(char **args, int *cur_arg,
972 struct proxy *curproxy, struct server *newsrv, char **err)
973{
974 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
975 newsrv->resolv_opts.family_prio = AF_INET;
976 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
977 newsrv->resolv_opts.family_prio = AF_INET6;
978 else {
979 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
980 args[*cur_arg]);
981 return ERR_ALERT | ERR_FATAL;
982 }
983
984 return 0;
985}
986
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100987/* Parse the "send-proxy" server keyword */
988static int srv_parse_send_proxy(char **args, int *cur_arg,
989 struct proxy *curproxy, struct server *newsrv, char **err)
990{
991 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
992}
993
994/* Parse the "send-proxy-v2" server keyword */
995static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
996 struct proxy *curproxy, struct server *newsrv, char **err)
997{
998 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
999}
1000
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001001/* Parse the "slowstart" server keyword */
1002static int srv_parse_slowstart(char **args, int *cur_arg,
1003 struct proxy *curproxy, struct server *newsrv, char **err)
1004{
1005 /* slowstart is stored in seconds */
1006 unsigned int val;
1007 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1008
1009 if (time_err == PARSE_TIME_OVER) {
1010 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1011 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1012 return ERR_ALERT | ERR_FATAL;
1013 }
1014 else if (time_err == PARSE_TIME_UNDER) {
1015 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1016 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1017 return ERR_ALERT | ERR_FATAL;
1018 }
1019 else if (time_err) {
1020 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1021 *time_err, newsrv->id);
1022 return ERR_ALERT | ERR_FATAL;
1023 }
1024 newsrv->slowstart = (val + 999) / 1000;
1025
1026 return 0;
1027}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001028
1029/* Parse the "source" server keyword */
1030static int srv_parse_source(char **args, int *cur_arg,
1031 struct proxy *curproxy, struct server *newsrv, char **err)
1032{
1033 char *errmsg;
1034 int port_low, port_high;
1035 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001036
1037 errmsg = NULL;
1038
1039 if (!*args[*cur_arg + 1]) {
1040 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1041 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1042 goto err;
1043 }
1044
1045 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001046 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1047 &errmsg, NULL, NULL,
1048 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 +01001049 if (!sk) {
1050 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1051 goto err;
1052 }
1053
Frédéric Lécailledba97072017-03-17 15:33:50 +01001054 newsrv->conn_src.opts |= CO_SRC_BIND;
1055 newsrv->conn_src.source_addr = *sk;
1056
1057 if (port_low != port_high) {
1058 int i;
1059
Frédéric Lécailledba97072017-03-17 15:33:50 +01001060 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1061 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1062 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1063 }
1064
1065 *cur_arg += 2;
1066 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001067 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001068#if defined(CONFIG_HAP_TRANSPARENT)
1069 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001070 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1071 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001072 goto err;
1073 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001074 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001075 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1076 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1077 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001078 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001079 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1080 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1081 }
1082 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1083 char *name, *end;
1084
1085 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001086 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001087 name++;
1088
1089 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001090 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001091 end++;
1092
1093 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1094 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1095 free(newsrv->conn_src.bind_hdr_name);
1096 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1097 newsrv->conn_src.bind_hdr_len = end - name;
1098 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1099 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1100 newsrv->conn_src.bind_hdr_occ = -1;
1101
1102 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001103 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001104 end++;
1105 if (*end == ',') {
1106 end++;
1107 name = end;
1108 if (*end == '-')
1109 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001110 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001111 end++;
1112 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1113 }
1114
1115 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001116 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1117 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001118 goto err;
1119 }
1120 }
1121 else {
1122 struct sockaddr_storage *sk;
1123 int port1, port2;
1124
1125 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001126 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1127 &errmsg, NULL, NULL,
1128 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001129 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001131 goto err;
1132 }
1133
Frédéric Lécailledba97072017-03-17 15:33:50 +01001134 newsrv->conn_src.tproxy_addr = *sk;
1135 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1136 }
1137 global.last_checks |= LSTCHK_NETADM;
1138 *cur_arg += 2;
1139 continue;
1140#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001141 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 +01001142 goto err;
1143#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1144 } /* "usesrc" */
1145
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001146 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001147#ifdef SO_BINDTODEVICE
1148 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001149 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001150 goto err;
1151 }
1152 free(newsrv->conn_src.iface_name);
1153 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1154 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1155 global.last_checks |= LSTCHK_NETADM;
1156#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001157 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001158 goto err;
1159#endif
1160 *cur_arg += 2;
1161 continue;
1162 }
1163 /* this keyword in not an option of "source" */
1164 break;
1165 } /* while */
1166
1167 return 0;
1168
1169 err:
1170 free(errmsg);
1171 return ERR_ALERT | ERR_FATAL;
1172}
1173
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001174/* Parse the "stick" server keyword */
1175static int srv_parse_stick(char **args, int *cur_arg,
1176 struct proxy *curproxy, struct server *newsrv, char **err)
1177{
1178 newsrv->flags &= ~SRV_F_NON_STICK;
1179 return 0;
1180}
1181
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001182/* Parse the "track" server keyword */
1183static int srv_parse_track(char **args, int *cur_arg,
1184 struct proxy *curproxy, struct server *newsrv, char **err)
1185{
1186 char *arg;
1187
1188 arg = args[*cur_arg + 1];
1189 if (!*arg) {
1190 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1191 return ERR_ALERT | ERR_FATAL;
1192 }
1193
1194 free(newsrv->trackit);
1195 newsrv->trackit = strdup(arg);
1196
1197 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001198}
1199
1200/* Parse the "socks4" server keyword */
1201static int srv_parse_socks4(char **args, int *cur_arg,
1202 struct proxy *curproxy, struct server *newsrv, char **err)
1203{
1204 char *errmsg;
1205 int port_low, port_high;
1206 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001207
1208 errmsg = NULL;
1209
1210 if (!*args[*cur_arg + 1]) {
1211 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1212 goto err;
1213 }
1214
1215 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001216 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1217 &errmsg, NULL, NULL,
1218 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001219 if (!sk) {
1220 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1221 goto err;
1222 }
1223
Alexander Liu2a54bb72019-05-22 19:44:48 +08001224 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1225 newsrv->socks4_addr = *sk;
1226
Alexander Liu2a54bb72019-05-22 19:44:48 +08001227 return 0;
1228
1229 err:
1230 free(errmsg);
1231 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001232}
1233
Frédéric Lécailledba97072017-03-17 15:33:50 +01001234
Willy Tarreau034c88c2017-01-23 23:36:45 +01001235/* parse the "tfo" server keyword */
1236static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1237{
1238 newsrv->flags |= SRV_F_FASTOPEN;
1239 return 0;
1240}
1241
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001242/* parse the "usesrc" server keyword */
1243static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1244{
1245 memprintf(err, "'%s' only allowed after a '%s' statement.",
1246 "usesrc", "source");
1247 return ERR_ALERT | ERR_FATAL;
1248}
1249
1250/* parse the "weight" server keyword */
1251static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1252{
1253 int w;
1254
1255 w = atol(args[*cur_arg + 1]);
1256 if (w < 0 || w > SRV_UWGHT_MAX) {
1257 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1258 newsrv->id, SRV_UWGHT_MAX, w);
1259 return ERR_ALERT | ERR_FATAL;
1260 }
1261 newsrv->uweight = newsrv->iweight = w;
1262
1263 return 0;
1264}
1265
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001266/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001267 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001268 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001269 *
1270 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001271 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001272void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001273{
Willy Tarreau751153e2021-02-17 13:33:24 +01001274 struct stream *stream;
1275 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001276 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001277
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001278 for (thr = 0; thr < global.nbthread; thr++)
1279 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1280 if (stream->srv_conn == srv)
1281 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001282}
1283
1284/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001285 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001286 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001287 *
1288 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001289 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001290void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001291{
1292 struct server *srv;
1293
1294 for (srv = px->srv; srv != NULL; srv = srv->next)
1295 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001296 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001297}
1298
Willy Tarreaubda92272014-05-20 21:55:30 +02001299/* Appends some information to a message string related to a server going UP or
1300 * DOWN. If both <forced> and <reason> are null and the server tracks another
1301 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001302 * If <check> is non-null, an entire string describing the check result will be
1303 * appended after a comma and a space (eg: to report some information from the
1304 * check that changed the state). In the other case, the string will be built
1305 * using the check results stored into the struct server if present.
1306 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001307 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001308 *
1309 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001310 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001311void srv_append_status(struct buffer *msg, struct server *s,
1312 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001313{
Emeric Brun5a133512017-10-19 14:42:30 +02001314 short status = s->op_st_chg.status;
1315 short code = s->op_st_chg.code;
1316 long duration = s->op_st_chg.duration;
1317 char *desc = s->op_st_chg.reason;
1318
1319 if (check) {
1320 status = check->status;
1321 code = check->code;
1322 duration = check->duration;
1323 desc = check->desc;
1324 }
1325
1326 if (status != -1) {
1327 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1328
1329 if (status >= HCHK_STATUS_L57DATA)
1330 chunk_appendf(msg, ", code: %d", code);
1331
1332 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001333 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001334
1335 chunk_appendf(msg, ", info: \"");
1336
1337 chunk_initlen(&src, desc, 0, strlen(desc));
1338 chunk_asciiencode(msg, &src, '"');
1339
1340 chunk_appendf(msg, "\"");
1341 }
1342
1343 if (duration >= 0)
1344 chunk_appendf(msg, ", check duration: %ldms", duration);
1345 }
1346 else if (desc && *desc) {
1347 chunk_appendf(msg, ", %s", desc);
1348 }
1349 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001350 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001351 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001352
1353 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001354 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001355 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1356 " %d sessions active, %d requeued, %d remaining in queue",
1357 s->proxy->srv_act, s->proxy->srv_bck,
1358 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1359 s->cur_sess, xferred, s->nbpend);
1360 else
1361 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1362 " %d sessions requeued, %d total in queue",
1363 s->proxy->srv_act, s->proxy->srv_bck,
1364 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1365 xferred, s->nbpend);
1366 }
1367}
1368
Emeric Brun5a133512017-10-19 14:42:30 +02001369/* Marks server <s> down, regardless of its checks' statuses. The server is
1370 * registered in a list to postpone the counting of the remaining servers on
1371 * the proxy and transfers queued streams whenever possible to other servers at
1372 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1373 * non-null as the reason for going down or the available data from the check
1374 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001375 *
1376 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001377 */
Emeric Brun5a133512017-10-19 14:42:30 +02001378void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001379{
1380 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001381
Emeric Brun64cc49c2017-10-03 14:46:45 +02001382 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001383 return;
1384
Emeric Brun52a91d32017-08-31 14:41:55 +02001385 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001386 *s->op_st_chg.reason = 0;
1387 s->op_st_chg.status = -1;
1388 if (reason) {
1389 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1390 }
1391 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001392 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001393 s->op_st_chg.code = check->code;
1394 s->op_st_chg.status = check->status;
1395 s->op_st_chg.duration = check->duration;
1396 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001397
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001398 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001399 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001400
Emeric Brun9f0b4582017-10-23 14:39:51 +02001401 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001402 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001403 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001404 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001405 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001406}
1407
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001408/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001409 * in maintenance. The server is registered in a list to postpone the counting
1410 * of the remaining servers on the proxy and tries to grab requests from the
1411 * proxy at a sync point. Maintenance servers are ignored. It stores the
1412 * <reason> if non-null as the reason for going down or the available data
1413 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001414 *
1415 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001416 */
Emeric Brun5a133512017-10-19 14:42:30 +02001417void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001418{
1419 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001420
Emeric Brun64cc49c2017-10-03 14:46:45 +02001421 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001422 return;
1423
Emeric Brun52a91d32017-08-31 14:41:55 +02001424 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001425 return;
1426
Emeric Brun52a91d32017-08-31 14:41:55 +02001427 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001428 *s->op_st_chg.reason = 0;
1429 s->op_st_chg.status = -1;
1430 if (reason) {
1431 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1432 }
1433 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001434 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001435 s->op_st_chg.code = check->code;
1436 s->op_st_chg.status = check->status;
1437 s->op_st_chg.duration = check->duration;
1438 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001439
Emeric Brun64cc49c2017-10-03 14:46:45 +02001440 if (s->slowstart <= 0)
1441 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001442
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001443 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001444 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001445
Emeric Brun9f0b4582017-10-23 14:39:51 +02001446 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001447 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001448 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001449 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001450 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001451}
1452
Willy Tarreau8eb77842014-05-21 13:54:57 +02001453/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001454 * isn't in maintenance. The server is registered in a list to postpone the
1455 * counting of the remaining servers on the proxy and tries to grab requests
1456 * from the proxy. Maintenance servers are ignored. It stores the
1457 * <reason> if non-null as the reason for going down or the available data
1458 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001459 * up. Note that it makes use of the trash to build the log strings, so <reason>
1460 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001461 *
1462 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001463 */
Emeric Brun5a133512017-10-19 14:42:30 +02001464void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001465{
1466 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001467
Emeric Brun64cc49c2017-10-03 14:46:45 +02001468 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001469 return;
1470
Emeric Brun52a91d32017-08-31 14:41:55 +02001471 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001472 return;
1473
Emeric Brun52a91d32017-08-31 14:41:55 +02001474 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001475 *s->op_st_chg.reason = 0;
1476 s->op_st_chg.status = -1;
1477 if (reason) {
1478 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1479 }
1480 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001481 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001482 s->op_st_chg.code = check->code;
1483 s->op_st_chg.status = check->status;
1484 s->op_st_chg.duration = check->duration;
1485 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001486
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001487 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001488 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001489
Emeric Brun9f0b4582017-10-23 14:39:51 +02001490 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001491 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001492 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001493 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001494 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001495}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001496
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001497/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1498 * enforce either maint mode or drain mode. It is not allowed to set more than
1499 * one flag at once. The equivalent "inherited" flag is propagated to all
1500 * tracking servers. Maintenance mode disables health checks (but not agent
1501 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001502 * is done. If <cause> is non-null, it will be displayed at the end of the log
1503 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001504 *
1505 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001506 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001507void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001508{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001509 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001510
1511 if (!mode)
1512 return;
1513
1514 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001515 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001516 return;
1517
Emeric Brun52a91d32017-08-31 14:41:55 +02001518 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001519 if (cause)
1520 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1521
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001522 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001523 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001524
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001525 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001526 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1527 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001528 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001529
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001530 /* compute the inherited flag to propagate */
1531 if (mode & SRV_ADMF_MAINT)
1532 mode = SRV_ADMF_IMAINT;
1533 else if (mode & SRV_ADMF_DRAIN)
1534 mode = SRV_ADMF_IDRAIN;
1535
Emeric Brun9f0b4582017-10-23 14:39:51 +02001536 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001537 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001538 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001539 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001540 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001541}
1542
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001543/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1544 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1545 * than one flag at once. The equivalent "inherited" flag is propagated to all
1546 * tracking servers. Leaving maintenance mode re-enables health checks. When
1547 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001548 *
1549 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001550 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001551void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001552{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001553 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001554
1555 if (!mode)
1556 return;
1557
1558 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001559 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001560 return;
1561
Emeric Brun52a91d32017-08-31 14:41:55 +02001562 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001563
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001564 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001565 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001566
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001567 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001568 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1569 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001570 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001571
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001572 if (mode & SRV_ADMF_MAINT)
1573 mode = SRV_ADMF_IMAINT;
1574 else if (mode & SRV_ADMF_DRAIN)
1575 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001576
Emeric Brun9f0b4582017-10-23 14:39:51 +02001577 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001578 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001579 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001580 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001581 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001582}
1583
Willy Tarreau757478e2016-11-03 19:22:19 +01001584/* principle: propagate maint and drain to tracking servers. This is useful
1585 * upon startup so that inherited states are correct.
1586 */
1587static void srv_propagate_admin_state(struct server *srv)
1588{
1589 struct server *srv2;
1590
1591 if (!srv->trackers)
1592 return;
1593
1594 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001595 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001596 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001597 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001598
Emeric Brun52a91d32017-08-31 14:41:55 +02001599 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001600 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001601 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001602 }
1603}
1604
1605/* Compute and propagate the admin states for all servers in proxy <px>.
1606 * Only servers *not* tracking another one are considered, because other
1607 * ones will be handled when the server they track is visited.
1608 */
1609void srv_compute_all_admin_states(struct proxy *px)
1610{
1611 struct server *srv;
1612
1613 for (srv = px->srv; srv; srv = srv->next) {
1614 if (srv->track)
1615 continue;
1616 srv_propagate_admin_state(srv);
1617 }
1618}
1619
Willy Tarreaudff55432012-10-10 17:51:05 +02001620/* Note: must not be declared <const> as its list will be overwritten.
1621 * Please take care of keeping this list alphabetically sorted, doing so helps
1622 * all code contributors.
1623 * Optional keywords are also declared with a NULL ->parse() function so that
1624 * the config parser can report an appropriate error when a known keyword was
1625 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001626 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001627 */
1628static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001629 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001630 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001631 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1632 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001633 { "error-limit", srv_parse_error_limit, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001634 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001635 { "init-addr", srv_parse_init_addr, 1, 1 }, /* */
1636 { "log-proto", srv_parse_log_proto, 1, 1 }, /* Set the protocol for event messages, only relevant in a ring section */
1637 { "maxconn", srv_parse_maxconn, 1, 1 }, /* Set the max number of concurrent connection */
1638 { "maxqueue", srv_parse_maxqueue, 1, 1 }, /* Set the max number of connection to put in queue */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001639 { "max-reuse", srv_parse_max_reuse, 1, 1 }, /* Set the max number of requests on a connection, -1 means unlimited */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001640 { "minconn", srv_parse_minconn, 1, 1 }, /* Enable a dynamic maxconn limit */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001641 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001642 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001643 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1644 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +02001645 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001646 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001647 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001648 { "on-error", srv_parse_on_error, 1, 1 }, /* Configure the action on check failure */
1649 { "on-marked-down", srv_parse_on_marked_down, 1, 1 }, /* Configure the action when a server is marked down */
1650 { "on-marked-up", srv_parse_on_marked_up, 1, 1 }, /* Configure the action when a server is marked up */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001651 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
Amaury Denoyelle18c68df2021-01-26 14:35:24 +01001652 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001653 { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001654 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001655 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1 }, /* options for send-proxy-v2 */
Frédéric Lécaille16186232017-03-14 16:42:49 +01001656 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001657 { "resolve-net", srv_parse_resolve_net, 1, 1 }, /* Set the prefered network range for name resolution */
1658 { "resolve-opts", srv_parse_resolve_opts, 1, 1 }, /* Set options for name resolution */
1659 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1 }, /* Set the prefered family for name resolution */
1660 { "resolvers", srv_parse_resolvers, 1, 1 }, /* Configure the resolver to use for name resolution */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001661 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1662 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001663 { "slowstart", srv_parse_slowstart, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001664 { "source", srv_parse_source, -1, 1 }, /* Set the source address to be used to connect to the server */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001665 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001666 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001667 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001668 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001669 { "usesrc", srv_parse_usesrc, 0, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1670 { "weight", srv_parse_weight, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001671 { NULL, NULL, 0 },
1672}};
1673
Willy Tarreau0108d902018-11-25 19:14:37 +01001674INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001675
Willy Tarreau004e0452013-11-21 11:22:01 +01001676/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001677 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001678 * state is automatically disabled if the time is elapsed. If <must_update> is
1679 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001680 *
1681 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001682 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001683void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001684{
1685 struct proxy *px = sv->proxy;
1686 unsigned w;
1687
1688 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1689 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001690 if (sv->next_state == SRV_ST_STARTING)
1691 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001692 }
1693
1694 /* We must take care of not pushing the server to full throttle during slow starts.
1695 * It must also start immediately, at least at the minimal step when leaving maintenance.
1696 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001697 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001698 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1699 else
1700 w = px->lbprm.wdiv;
1701
Emeric Brun52a91d32017-08-31 14:41:55 +02001702 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001703
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001704 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001705 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001706 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001707}
1708
Willy Tarreaubaaee002006-06-26 02:48:02 +02001709/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001710 * Parses weight_str and configures sv accordingly.
1711 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001712 *
1713 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001714 */
1715const char *server_parse_weight_change_request(struct server *sv,
1716 const char *weight_str)
1717{
1718 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001719 long int w;
1720 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001721
1722 px = sv->proxy;
1723
1724 /* if the weight is terminated with '%', it is set relative to
1725 * the initial weight, otherwise it is absolute.
1726 */
1727 if (!*weight_str)
1728 return "Require <weight> or <weight%>.\n";
1729
Simon Hormanb796afa2013-02-12 10:45:53 +09001730 w = strtol(weight_str, &end, 10);
1731 if (end == weight_str)
1732 return "Empty weight string empty or preceded by garbage";
1733 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001734 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001735 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001736 /* Avoid integer overflow */
1737 if (w > 25600)
1738 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001739 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001740 if (w > 256)
1741 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001742 }
1743 else if (w < 0 || w > 256)
1744 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001745 else if (end[0] != '\0')
1746 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001747
1748 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1749 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1750
1751 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001752 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001753
1754 return NULL;
1755}
1756
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001757/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001758 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1759 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001760 * Returns:
1761 * - error string on error
1762 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001763 *
1764 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001765 */
1766const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001767 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001768{
1769 unsigned char ip[INET6_ADDRSTRLEN];
1770
1771 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001772 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001773 return NULL;
1774 }
1775 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001776 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001777 return NULL;
1778 }
1779
1780 return "Could not understand IP address format.\n";
1781}
1782
Willy Tarreau46b7f532018-08-21 11:54:26 +02001783/*
1784 * Must be called with the server lock held.
1785 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001786const char *server_parse_maxconn_change_request(struct server *sv,
1787 const char *maxconn_str)
1788{
1789 long int v;
1790 char *end;
1791
1792 if (!*maxconn_str)
1793 return "Require <maxconn>.\n";
1794
1795 v = strtol(maxconn_str, &end, 10);
1796 if (end == maxconn_str)
1797 return "maxconn string empty or preceded by garbage";
1798 else if (end[0] != '\0')
1799 return "Trailing garbage in maxconn string";
1800
1801 if (sv->maxconn == sv->minconn) { // static maxconn
1802 sv->maxconn = sv->minconn = v;
1803 } else { // dynamic maxconn
1804 sv->maxconn = v;
1805 }
1806
1807 if (may_dequeue_tasks(sv, sv->proxy))
1808 process_srv_queue(sv);
1809
1810 return NULL;
1811}
1812
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001813#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001814static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1815 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001816{
1817 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001818 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001819 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001820 NULL,
1821 };
1822
1823 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001824 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001825
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001826 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001827}
1828
1829static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1830{
1831 struct sample_expr *expr;
1832
1833 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 +01001834 if (!expr) {
1835 memprintf(err, "error detected while parsing sni expression : %s", *err);
1836 return ERR_ALERT | ERR_FATAL;
1837 }
1838
1839 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1840 memprintf(err, "error detected while parsing sni expression : "
1841 " fetch method '%s' extracts information from '%s', "
1842 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001843 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001844 return ERR_ALERT | ERR_FATAL;
1845 }
1846
1847 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1848 release_sample_expr(newsrv->ssl_ctx.sni);
1849 newsrv->ssl_ctx.sni = expr;
1850
1851 return 0;
1852}
1853#endif
1854
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001855static 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 +01001856{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001857 char *msg = "error encountered while processing ";
1858 char *quote = "'";
1859 char *token = args[cur_arg];
1860
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001861 if (err && *err) {
1862 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001863 msg = *err;
1864 quote = "";
1865 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001866 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001867
1868 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1869 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1870 file, linenum, args[0], args[1],
1871 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001872 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001873 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1874 file, linenum, args[0], args[1],
1875 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001876}
1877
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001878static void srv_conn_src_sport_range_cpy(struct server *srv,
1879 struct server *src)
1880{
1881 int range_sz;
1882
1883 range_sz = src->conn_src.sport_range->size;
1884 if (range_sz > 0) {
1885 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1886 if (srv->conn_src.sport_range != NULL) {
1887 int i;
1888
1889 for (i = 0; i < range_sz; i++) {
1890 srv->conn_src.sport_range->ports[i] =
1891 src->conn_src.sport_range->ports[i];
1892 }
1893 }
1894 }
1895}
1896
1897/*
1898 * Copy <src> server connection source settings to <srv> server everything needed.
1899 */
1900static void srv_conn_src_cpy(struct server *srv, struct server *src)
1901{
1902 srv->conn_src.opts = src->conn_src.opts;
1903 srv->conn_src.source_addr = src->conn_src.source_addr;
1904
1905 /* Source port range copy. */
1906 if (src->conn_src.sport_range != NULL)
1907 srv_conn_src_sport_range_cpy(srv, src);
1908
1909#ifdef CONFIG_HAP_TRANSPARENT
1910 if (src->conn_src.bind_hdr_name != NULL) {
1911 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1912 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1913 }
1914 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1915 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1916#endif
1917 if (src->conn_src.iface_name != NULL)
1918 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1919}
1920
1921/*
1922 * Copy <src> server SSL settings to <srv> server allocating
1923 * everything needed.
1924 */
1925#if defined(USE_OPENSSL)
1926static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1927{
1928 if (src->ssl_ctx.ca_file != NULL)
1929 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1930 if (src->ssl_ctx.crl_file != NULL)
1931 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001932
1933 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1934
1935 if (src->ssl_ctx.verify_host != NULL)
1936 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1937 if (src->ssl_ctx.ciphers != NULL)
1938 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001939 if (src->ssl_ctx.options)
1940 srv->ssl_ctx.options = src->ssl_ctx.options;
1941 if (src->ssl_ctx.methods.flags)
1942 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1943 if (src->ssl_ctx.methods.min)
1944 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1945 if (src->ssl_ctx.methods.max)
1946 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1947
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001948#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001949 if (src->ssl_ctx.ciphersuites != NULL)
1950 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1951#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001952 if (src->sni_expr != NULL)
1953 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001954
1955#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1956 if (src->ssl_ctx.alpn_str) {
1957 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1958 if (srv->ssl_ctx.alpn_str) {
1959 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1960 src->ssl_ctx.alpn_len);
1961 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1962 }
1963 }
1964#endif
1965#ifdef OPENSSL_NPN_NEGOTIATED
1966 if (src->ssl_ctx.npn_str) {
1967 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1968 if (srv->ssl_ctx.npn_str) {
1969 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1970 src->ssl_ctx.npn_len);
1971 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1972 }
1973 }
1974#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001975}
1976#endif
1977
1978/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001979 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001980 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001981 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001982 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01001983int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001984{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001985 char *hostname_dn;
1986 int hostname_len, hostname_dn_len;
1987
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001988 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001989 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001990
Christopher Faulet67957bd2017-09-27 11:00:59 +02001991 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001992 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01001993 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
1994 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001995 if (hostname_dn_len == -1)
1996 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001997
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001998
Christopher Faulet67957bd2017-09-27 11:00:59 +02001999 free(srv->hostname);
2000 free(srv->hostname_dn);
2001 srv->hostname = strdup(hostname);
2002 srv->hostname_dn = strdup(hostname_dn);
2003 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002004 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002005 goto err;
2006
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002007 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002008
2009 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002010 ha_free(&srv->hostname);
2011 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002012 return -1;
2013}
2014
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002015/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002016 * Copy <src> server settings to <srv> server allocating
2017 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002018 * This function is not supposed to be called at any time, but only
2019 * during server settings parsing or during server allocations from
2020 * a server template, and just after having calloc()'ed a new server.
2021 * So, <src> may only be a default server (when parsing server settings)
2022 * or a server template (during server allocations from a server template).
2023 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2024 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002025 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002026static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002027{
2028 /* Connection source settings copy */
2029 srv_conn_src_cpy(srv, src);
2030
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002031 if (srv_tmpl) {
2032 srv->addr = src->addr;
2033 srv->svc_port = src->svc_port;
2034 }
2035
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002036 srv->pp_opts = src->pp_opts;
2037 if (src->rdr_pfx != NULL) {
2038 srv->rdr_pfx = strdup(src->rdr_pfx);
2039 srv->rdr_len = src->rdr_len;
2040 }
2041 if (src->cookie != NULL) {
2042 srv->cookie = strdup(src->cookie);
2043 srv->cklen = src->cklen;
2044 }
2045 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002046 srv->check.addr = src->check.addr;
2047 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002048 srv->check.use_ssl = src->check.use_ssl;
2049 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002050 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002051 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002052 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002053 /* Note: 'flags' field has potentially been already initialized. */
2054 srv->flags |= src->flags;
2055 srv->do_check = src->do_check;
2056 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002057 srv->check.inter = src->check.inter;
2058 srv->check.fastinter = src->check.fastinter;
2059 srv->check.downinter = src->check.downinter;
2060 srv->agent.use_ssl = src->agent.use_ssl;
2061 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002062
2063 if (src->agent.tcpcheck_rules) {
2064 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2065 if (srv->agent.tcpcheck_rules) {
2066 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2067 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2068 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2069 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2070 &src->agent.tcpcheck_rules->preset_vars);
2071 }
2072 }
2073
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002074 srv->agent.inter = src->agent.inter;
2075 srv->agent.fastinter = src->agent.fastinter;
2076 srv->agent.downinter = src->agent.downinter;
2077 srv->maxqueue = src->maxqueue;
2078 srv->minconn = src->minconn;
2079 srv->maxconn = src->maxconn;
2080 srv->slowstart = src->slowstart;
2081 srv->observe = src->observe;
2082 srv->onerror = src->onerror;
2083 srv->onmarkeddown = src->onmarkeddown;
2084 srv->onmarkedup = src->onmarkedup;
2085 if (src->trackit != NULL)
2086 srv->trackit = strdup(src->trackit);
2087 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2088 srv->uweight = srv->iweight = src->iweight;
2089
2090 srv->check.send_proxy = src->check.send_proxy;
2091 /* health: up, but will fall down at first failure */
2092 srv->check.rise = srv->check.health = src->check.rise;
2093 srv->check.fall = src->check.fall;
2094
2095 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002096 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2097 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2098 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002099 srv->check.state |= CHK_ST_PAUSED;
2100 srv->check.health = 0;
2101 }
2102
2103 /* health: up but will fall down at first failure */
2104 srv->agent.rise = srv->agent.health = src->agent.rise;
2105 srv->agent.fall = src->agent.fall;
2106
2107 if (src->resolvers_id != NULL)
2108 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002109 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2110 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2111 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2112 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2113 srv->resolv_opts.family_prio = AF_INET6;
2114 memcpy(srv->resolv_opts.pref_net,
2115 src->resolv_opts.pref_net,
2116 sizeof srv->resolv_opts.pref_net);
2117 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002118
2119 srv->init_addr_methods = src->init_addr_methods;
2120 srv->init_addr = src->init_addr;
2121#if defined(USE_OPENSSL)
2122 srv_ssl_settings_cpy(srv, src);
2123#endif
2124#ifdef TCP_USER_TIMEOUT
2125 srv->tcp_ut = src->tcp_ut;
2126#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002127 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002128 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002129 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002130 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002131 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002132
Olivier Houchard8da5f982017-08-04 18:35:36 +02002133 if (srv_tmpl)
2134 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002135
2136 srv->check.via_socks4 = src->check.via_socks4;
2137 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002138}
2139
Willy Tarreau198e92a2021-03-05 10:23:32 +01002140/* allocate a server and attach it to the global servers_list. Returns
2141 * the server on success, otherwise NULL.
2142 */
William Lallemand313bfd12018-10-26 14:47:32 +02002143struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002144{
2145 struct server *srv;
2146
2147 srv = calloc(1, sizeof *srv);
2148 if (!srv)
2149 return NULL;
2150
2151 srv->obj_type = OBJ_TYPE_SERVER;
2152 srv->proxy = proxy;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04002153 srv->pendconns = EB_ROOT;
Willy Tarreau198e92a2021-03-05 10:23:32 +01002154 LIST_ADDQ(&servers_list, &srv->global_list);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002155
Emeric Brun52a91d32017-08-31 14:41:55 +02002156 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002157 srv->last_change = now.tv_sec;
2158
Christopher Faulet38290462020-04-21 11:46:40 +02002159 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002160 srv->check.status = HCHK_STATUS_INI;
2161 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002162 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002163 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002164
Christopher Faulet38290462020-04-21 11:46:40 +02002165 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002166 srv->agent.status = HCHK_STATUS_INI;
2167 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002168 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002169 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002170#if defined(USE_QUIC)
2171 srv->cids = EB_ROOT_UNIQUE;
2172#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002173
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002174 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002175#ifdef USE_OPENSSL
2176 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2177#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002178
Willy Tarreau975b1552019-06-06 16:25:55 +02002179 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002180 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002181 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002182 return srv;
2183}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002184
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002185/* Deallocate a server <srv> and its member. <srv> must be allocated.
2186 */
2187void free_server(struct server *srv)
2188{
2189 task_destroy(srv->warmup);
2190
2191 free(srv->id);
2192 free(srv->cookie);
2193 free(srv->hostname);
2194 free(srv->hostname_dn);
2195 free((char*)srv->conf.file);
2196 free(srv->per_thr);
2197 free(srv->curr_idle_thr);
2198 free(srv->resolvers_id);
2199 free(srv->addr_node.key);
2200
2201 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2202 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2203 xprt_get(XPRT_SSL)->destroy_srv(srv);
2204 }
2205 HA_SPIN_DESTROY(&srv->lock);
2206
2207 LIST_DEL(&srv->global_list);
2208
2209 EXTRA_COUNTERS_FREE(srv->extra_counters);
2210
2211 free(srv);
2212 srv = NULL;
2213}
2214
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002215/* This function is first intented to be used through parse_server to
2216 * initialize a new server on startup.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002217 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002218static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2219 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002220{
2221 char *nb_high_arg;
2222
2223 *nb_high = 0;
2224 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002225 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002226
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002227 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002228 *nb_high_arg++ = '\0';
2229 *nb_high = atoi(nb_high_arg);
2230 }
2231 else {
2232 *nb_high += *nb_low;
2233 *nb_low = 1;
2234 }
2235
2236 if (*nb_low < 0 || *nb_high < *nb_low)
2237 return -1;
2238
2239 return 0;
2240}
2241
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002242/* Parse as much as possible such a range string argument: low[-high]
2243 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2244 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2245 *
2246 * This function is first intented to be used through parse_server to
2247 * initialize a new server on startup.
2248 *
2249 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2250 * Returns 0 if succeeded, -1 if not.
2251 */
2252static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2253 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002254{
2255 chunk_printf(&trash, "%s%d", prefix, nb);
2256 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002257 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002258}
2259
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002260/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002261 * Note that a server template is a special server with
2262 * a few different parameters than a server which has
2263 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002264 *
2265 * This function is first intented to be used through parse_server to
2266 * initialize a new server on startup.
2267 *
Joseph Herlant44466822018-11-15 08:57:51 -08002268 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002269 * 'srv' template included.
2270 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002271static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002272{
2273 int i;
2274 struct server *newsrv;
2275
2276 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 +02002277 newsrv = new_server(px);
2278 if (!newsrv)
2279 goto err;
2280
Christopher Faulet75bef002020-11-02 22:04:55 +01002281 newsrv->conf.file = strdup(srv->conf.file);
2282 newsrv->conf.line = srv->conf.line;
2283
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002284 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002285 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002286#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2287 if (newsrv->sni_expr) {
2288 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2289 if (!newsrv->ssl_ctx.sni)
2290 goto err;
2291 }
2292#endif
2293 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002294 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002295
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002296 /* Linked backwards first. This will be restablished after parsing. */
2297 newsrv->next = px->srv;
2298 px->srv = newsrv;
2299 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002300 _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 +02002301
2302 return i - srv->tmpl_info.nb_low;
2303
2304 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002305 _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 +02002306 if (newsrv) {
2307#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2308 release_sample_expr(newsrv->ssl_ctx.sni);
2309#endif
2310 free_check(&newsrv->agent);
2311 free_check(&newsrv->check);
Willy Tarreau198e92a2021-03-05 10:23:32 +01002312 LIST_DEL(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002313 }
2314 free(newsrv);
2315 return i - srv->tmpl_info.nb_low;
2316}
2317
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002318/* Allocate a new server pointed by <srv> and try to parse the first arguments
2319 * in <args> as an address for a server or an address-range for a template or
2320 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2321 *
2322 * This function is first intented to be used through parse_server to
2323 * initialize a new server on startup.
2324 *
2325 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2326 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2327 * <srv> will be set to NULL.
2328 */
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002329static int _srv_parse_init(struct server **srv, char **args, int *cur_arg, struct proxy *curproxy,
2330 int parse_addr, int in_peers_section, int initial_resolve,
2331 char **errmsg)
Willy Tarreau272adea2014-03-31 10:39:59 +02002332{
2333 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002334 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002335 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002336 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002337
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002338 *srv = NULL;
2339
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002340 if (strcmp(args[0], "server") == 0 ||
2341 strcmp(args[0], "peer") == 0 ||
2342 strcmp(args[0], "default-server") == 0 ||
2343 strcmp(args[0], "server-template") == 0) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002344 int defsrv = (*args[0] == 'd');
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002345 int srv_kw = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
2346 int srv_tmpl = !defsrv && !srv_kw;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002347 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002348
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002349 /* There is no mandatory first arguments for default server. */
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002350 if (srv_kw && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002351 if (!*args[2]) {
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002352 /* 'server' line number of argument check. */
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002353 memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.",
2354 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
2359 err = invalid_char(args[1]);
2360 }
2361 else if (srv_tmpl) {
2362 if (!*args[3]) {
2363 /* 'server-template' line number of argument check. */
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002364 memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.",
2365 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369
2370 err = invalid_prefix_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'.",
2375 *err, args[0], srv_kw ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
2378 }
2379
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002380 *cur_arg = 2;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002381 if (srv_tmpl) {
2382 /* Parse server-template <nb | range> arg. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002383 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002384 memprintf(errmsg, "Wrong %s number or range arg '%s'.",
2385 args[0], args[*cur_arg]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002386 err_code |= ERR_ALERT | ERR_FATAL;
2387 goto out;
2388 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002389 (*cur_arg)++;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002390 }
2391
Willy Tarreau272adea2014-03-31 10:39:59 +02002392 if (!defsrv) {
2393 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002394 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002395
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002396 *srv = newsrv = new_server(curproxy);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002397 if (!newsrv) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002398 memprintf(errmsg, "out of memory.");
Willy Tarreau272adea2014-03-31 10:39:59 +02002399 err_code |= ERR_ALERT | ERR_ABORT;
2400 goto out;
2401 }
2402
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002403 if (srv_tmpl) {
2404 newsrv->tmpl_info.nb_low = tmpl_range_low;
2405 newsrv->tmpl_info.nb_high = tmpl_range_high;
2406 }
2407
Willy Tarreau272adea2014-03-31 10:39:59 +02002408 /* the servers are linked backwards first */
2409 newsrv->next = curproxy->srv;
2410 curproxy->srv = newsrv;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002411 /* Note: for a server template, its id is its prefix.
2412 * This is a temporary id which will be used for server allocations to come
2413 * after parsing.
2414 */
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002415 if (srv_kw)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002416 newsrv->id = strdup(args[1]);
2417 else
2418 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002419
2420 /* several ways to check the port component :
2421 * - IP => port=+0, relative (IPv4 only)
2422 * - IP: => port=+0, relative
2423 * - IP:N => port=N, absolute
2424 * - IP:+N => port=+N, relative
2425 * - IP:-N => port=-N, relative
2426 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002427 if (!parse_addr)
2428 goto skip_addr;
2429
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002430 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002431 errmsg, NULL, &fqdn,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002432 (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002433 if (!sk) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002434 memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002435 err_code |= ERR_ALERT | ERR_FATAL;
2436 goto out;
2437 }
2438
Willy Tarreau272adea2014-03-31 10:39:59 +02002439 if (!port1 || !port2) {
2440 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002441 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002442 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002443
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002444 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002445 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002446 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002447 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002448 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
Emeric Brun08622d32020-12-23 17:41:43 +01002449 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002450 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002451 err_code |= ERR_ALERT | ERR_FATAL;
2452 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002453 }
2454 }
2455 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002456 memprintf(errmsg, "Can't create DNS resolution for server '%s'",
2457 newsrv->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002458 err_code |= ERR_ALERT | ERR_FATAL;
2459 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002460 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002461 }
2462
Willy Tarreau272adea2014-03-31 10:39:59 +02002463 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002464 newsrv->svc_port = port;
Thayne McCombs92149f92020-11-20 01:28:26 -07002465 // we don't need to lock the server here, because
2466 // we are in the process of initializing
2467 srv_set_addr_desc(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02002468
Olivier Houchard8da5f982017-08-04 18:35:36 +02002469 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002470 memprintf(errmsg, "Unknown protocol family %d '%s'",
2471 newsrv->addr.ss_family, args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002472 err_code |= ERR_ALERT | ERR_FATAL;
2473 goto out;
2474 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002475
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002476 (*cur_arg)++;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002477 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002478 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002479 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002480 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002481 } else {
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002482 *srv = newsrv = &curproxy->defsrv;
2483 *cur_arg = 1;
Emeric Brun21fbeed2020-12-23 18:01:04 +01002484 newsrv->resolv_opts.family_prio = AF_INET6;
2485 newsrv->resolv_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002486 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002487 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002488
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002489 free(fqdn);
2490 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002491
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002492out:
2493 free(fqdn);
2494 return err_code;
2495}
Willy Tarreau272adea2014-03-31 10:39:59 +02002496
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002497/* Parse the server keyword in <args>.
2498 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2499 * might not be the case if an error is reported.
2500 *
2501 * This function is first intented to be used through parse_server to
2502 * initialize a new server on startup.
2503 *
2504 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2505 * interrupted.
2506 */
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002507static int _srv_parse_kw(struct server *srv, int defsrv, char **args, int *cur_arg, struct proxy *curproxy,
2508 int parse_addr, int in_peers_section, int initial_resolve,
2509 char **errmsg)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002510{
2511 int err_code = 0;
2512 struct srv_kw *kw;
2513 const char *best;
Willy Tarreau272adea2014-03-31 10:39:59 +02002514
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002515 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002516 if (!kw) {
2517 best = srv_find_best_kw(args[*cur_arg]);
2518 if (best)
2519 memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?",
2520 args[*cur_arg], best);
2521 else
2522 memprintf(errmsg, "unknown keyword '%s'.",
2523 args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002524
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002525 return ERR_ALERT | ERR_FATAL;
2526 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002527
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002528 if (!kw->parse) {
2529 memprintf(errmsg, "'%s' option is not implemented in this version (check build options)",
2530 args[*cur_arg]);
2531 err_code = ERR_ALERT | ERR_FATAL;
2532 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002533 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002534
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002535 if (defsrv && !kw->default_ok) {
2536 memprintf(errmsg, "'%s' option is not accepted in default-server sections",
2537 args[*cur_arg]);
2538 err_code = ERR_ALERT;
2539 goto out;
2540 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002541
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002542 err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002543
2544out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002545 if (kw->skip != -1)
2546 *cur_arg += 1 + kw->skip;
2547
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002548 return err_code;
2549}
2550
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002551#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2552/* This function is first intented to be used through parse_server to
2553 * initialize a new server on startup.
2554 */
2555static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2556 struct server *srv, struct proxy *proxy,
2557 char **errmsg)
2558{
2559 int ret;
2560
2561 if (!srv->sni_expr)
2562 return 0;
2563
2564 ret = server_parse_sni_expr(srv, proxy, errmsg);
2565 if (!ret)
2566 return 0;
2567
2568 return ret;
2569}
2570#endif
2571
2572/* Server initializations finalization.
2573 * Initialize health check, agent check and SNI expression if enabled.
2574 * Must not be called for a default server instance.
2575 *
2576 * This function is first intented to be used through parse_server to
2577 * initialize a new server on startup.
2578 */
2579static int _srv_parse_finalize(char **args, int cur_arg,
2580 struct server *srv, struct proxy *px,
2581 char **errmsg)
2582{
2583#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2584 int ret;
2585#endif
2586
2587 if (srv->do_check && srv->trackit) {
2588 memprintf(errmsg, "unable to enable checks and tracking at the same time!");
2589 return ERR_ALERT | ERR_FATAL;
2590 }
2591
2592 if (srv->do_agent && !srv->agent.port) {
2593 memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.",
2594 srv->id);
2595 return ERR_ALERT | ERR_FATAL;
2596 }
2597
2598#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2599 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0)
2600 return ret;
2601#endif
2602
2603 if (srv->flags & SRV_F_BACKUP)
2604 px->srv_bck++;
2605 else
2606 px->srv_act++;
2607 srv_lb_commit_status(srv);
2608
2609 return 0;
2610}
2611
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002612int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
2613 const struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
2614{
2615 struct server *newsrv = NULL;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002616 char *errmsg = NULL;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002617 int err_code = 0;
2618
2619 if (strcmp(args[0], "server") == 0 ||
2620 strcmp(args[0], "peer") == 0 ||
2621 strcmp(args[0], "default-server") == 0 ||
2622 strcmp(args[0], "server-template") == 0) {
2623 int cur_arg;
2624 int defsrv = (*args[0] == 'd');
2625 int srv = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
2626 int srv_tmpl = !defsrv && !srv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002627
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002628 if (!defsrv && curproxy == defproxy) {
2629 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01002630 err_code |= ERR_ALERT | ERR_FATAL;
2631 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002632 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002633 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2634 err_code |= ERR_ALERT | ERR_FATAL;
2635 goto out;
2636 }
2637
2638 if (srv && parse_addr) {
2639 if (!*args[2]) {
2640 if (in_peers_section)
2641 return 0;
2642 }
2643 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002644 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
2645 parse_addr, in_peers_section, initial_resolve, &errmsg);
2646 if (errmsg) {
2647 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
2648 free(errmsg);
2649 }
2650
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002651 if (err_code & ERR_CODE)
2652 goto out;
2653
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002654 newsrv->conf.file = strdup(file);
2655 newsrv->conf.line = linenum;
2656
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002657 while (*args[cur_arg]) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002658 errmsg = NULL;
2659 err_code |= _srv_parse_kw(newsrv, defsrv, args, &cur_arg,
2660 curproxy,
2661 parse_addr, in_peers_section, initial_resolve, &errmsg);
2662
2663 if (err_code & ERR_ALERT) {
2664 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2665 free(errmsg);
2666 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002667
2668 if (err_code & ERR_FATAL)
2669 goto out;
2670 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002671
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002672 if (!defsrv) {
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002673 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, &errmsg);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002674 if (err_code) {
2675 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2676 free(errmsg);
2677 }
2678
2679 if (err_code & ERR_FATAL)
2680 goto out;
2681 }
2682
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002683 if (srv_tmpl)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002684 _srv_parse_tmpl_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002685 }
2686 return 0;
2687
2688 out:
Willy Tarreau272adea2014-03-31 10:39:59 +02002689 return err_code;
2690}
2691
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002692/* Returns a pointer to the first server matching either id <id>.
2693 * NULL is returned if no match is found.
2694 * the lookup is performed in the backend <bk>
2695 */
2696struct server *server_find_by_id(struct proxy *bk, int id)
2697{
2698 struct eb32_node *eb32;
2699 struct server *curserver;
2700
2701 if (!bk || (id ==0))
2702 return NULL;
2703
2704 /* <bk> has no backend capabilities, so it can't have a server */
2705 if (!(bk->cap & PR_CAP_BE))
2706 return NULL;
2707
2708 curserver = NULL;
2709
2710 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2711 if (eb32)
2712 curserver = container_of(eb32, struct server, conf.id);
2713
2714 return curserver;
2715}
2716
2717/* Returns a pointer to the first server matching either name <name>, or id
2718 * if <name> starts with a '#'. NULL is returned if no match is found.
2719 * the lookup is performed in the backend <bk>
2720 */
2721struct server *server_find_by_name(struct proxy *bk, const char *name)
2722{
2723 struct server *curserver;
2724
2725 if (!bk || !name)
2726 return NULL;
2727
2728 /* <bk> has no backend capabilities, so it can't have a server */
2729 if (!(bk->cap & PR_CAP_BE))
2730 return NULL;
2731
2732 curserver = NULL;
2733 if (*name == '#') {
2734 curserver = server_find_by_id(bk, atoi(name + 1));
2735 if (curserver)
2736 return curserver;
2737 }
2738 else {
2739 curserver = bk->srv;
2740
2741 while (curserver && (strcmp(curserver->id, name) != 0))
2742 curserver = curserver->next;
2743
2744 if (curserver)
2745 return curserver;
2746 }
2747
2748 return NULL;
2749}
2750
2751struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2752{
2753 struct server *byname;
2754 struct server *byid;
2755
2756 if (!name && !id)
2757 return NULL;
2758
2759 if (diff)
2760 *diff = 0;
2761
2762 byname = byid = NULL;
2763
2764 if (name) {
2765 byname = server_find_by_name(bk, name);
2766 if (byname && (!id || byname->puid == id))
2767 return byname;
2768 }
2769
2770 /* remaining possibilities :
2771 * - name not set
2772 * - name set but not found
2773 * - name found but ID doesn't match
2774 */
2775 if (id) {
2776 byid = server_find_by_id(bk, id);
2777 if (byid) {
2778 if (byname) {
2779 /* use id only if forced by configuration */
2780 if (byid->flags & SRV_F_FORCED_ID) {
2781 if (diff)
2782 *diff |= 2;
2783 return byid;
2784 }
2785 else {
2786 if (diff)
2787 *diff |= 1;
2788 return byname;
2789 }
2790 }
2791
2792 /* remaining possibilities:
2793 * - name not set
2794 * - name set but not found
2795 */
2796 if (name && diff)
2797 *diff |= 2;
2798 return byid;
2799 }
2800
2801 /* id bot found */
2802 if (byname) {
2803 if (diff)
2804 *diff |= 1;
2805 return byname;
2806 }
2807 }
2808
2809 return NULL;
2810}
2811
Simon Horman7d09b9a2013-02-12 10:45:51 +09002812/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002813 * update a server's current IP address.
2814 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2815 * ip is in network format.
2816 * updater is a string which contains an information about the requester of the update.
2817 * updater is used if not NULL.
2818 *
2819 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02002820 *
2821 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02002822 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002823int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02002824{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02002825 /* save the new IP family & address if necessary */
2826 switch (ip_sin_family) {
2827 case AF_INET:
2828 if (s->addr.ss_family == ip_sin_family &&
2829 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
2830 return 0;
2831 break;
2832 case AF_INET6:
2833 if (s->addr.ss_family == ip_sin_family &&
2834 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
2835 return 0;
2836 break;
2837 };
2838
Baptiste Assmann14e40142015-04-14 01:13:07 +02002839 /* generates a log line and a warning on stderr */
2840 if (1) {
2841 /* book enough space for both IPv4 and IPv6 */
2842 char oldip[INET6_ADDRSTRLEN];
2843 char newip[INET6_ADDRSTRLEN];
2844
2845 memset(oldip, '\0', INET6_ADDRSTRLEN);
2846 memset(newip, '\0', INET6_ADDRSTRLEN);
2847
2848 /* copy old IP address in a string */
2849 switch (s->addr.ss_family) {
2850 case AF_INET:
2851 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2852 break;
2853 case AF_INET6:
2854 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2855 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02002856 default:
2857 strcpy(oldip, "(none)");
2858 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02002859 };
2860
2861 /* copy new IP address in a string */
2862 switch (ip_sin_family) {
2863 case AF_INET:
2864 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2865 break;
2866 case AF_INET6:
2867 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2868 break;
2869 };
2870
2871 /* save log line into a buffer */
2872 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2873 s->proxy->id, s->id, oldip, newip, updater);
2874
2875 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002876 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002877
2878 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002879 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002880 }
2881
2882 /* save the new IP family */
2883 s->addr.ss_family = ip_sin_family;
2884 /* save the new IP address */
2885 switch (ip_sin_family) {
2886 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02002887 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002888 break;
2889 case AF_INET6:
2890 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
2891 break;
2892 };
Olivier Houchard4e694042017-03-14 20:01:29 +01002893 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07002894 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002895
2896 return 0;
2897}
2898
William Dauchy7cabc062021-02-11 22:51:24 +01002899/* update agent health check address and port
2900 * addr can be ip4/ip6 or a hostname
2901 * if one error occurs, don't apply anything
2902 * must be called with the server lock held.
2903 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002904const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01002905{
2906 struct sockaddr_storage sk;
2907 struct buffer *msg;
2908 int new_port;
2909
2910 msg = get_trash_chunk();
2911 chunk_reset(msg);
2912
2913 if (!(s->agent.state & CHK_ST_ENABLED)) {
2914 chunk_strcat(msg, "agent checks are not enabled on this server");
2915 goto out;
2916 }
2917 if (addr) {
2918 memset(&sk, 0, sizeof(struct sockaddr_storage));
2919 if (str2ip(addr, &sk) == NULL) {
2920 chunk_appendf(msg, "invalid addr '%s'", addr);
2921 goto out;
2922 }
2923 }
2924 if (port) {
2925 if (strl2irc(port, strlen(port), &new_port) != 0) {
2926 chunk_appendf(msg, "provided port is not an integer");
2927 goto out;
2928 }
2929 if (new_port < 0 || new_port > 65535) {
2930 chunk_appendf(msg, "provided port is invalid");
2931 goto out;
2932 }
2933 }
2934out:
2935 if (msg->data)
2936 return msg->area;
2937 else {
2938 if (addr)
2939 set_srv_agent_addr(s, &sk);
2940 if (port)
2941 set_srv_agent_port(s, new_port);
2942 }
2943 return NULL;
2944}
2945
William Dauchyb456e1f2021-02-11 22:51:23 +01002946/* update server health check address and port
2947 * addr must be ip4 or ip6, it won't be resolved
2948 * if one error occurs, don't apply anything
2949 * must be called with the server lock held.
2950 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002951const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01002952{
2953 struct sockaddr_storage sk;
2954 struct buffer *msg;
2955 int new_port;
2956
2957 msg = get_trash_chunk();
2958 chunk_reset(msg);
2959
2960 if (!(s->check.state & CHK_ST_ENABLED)) {
2961 chunk_strcat(msg, "health checks are not enabled on this server");
2962 goto out;
2963 }
2964 if (addr) {
2965 memset(&sk, 0, sizeof(struct sockaddr_storage));
2966 if (str2ip2(addr, &sk, 0) == NULL) {
2967 chunk_appendf(msg, "invalid addr '%s'", addr);
2968 goto out;
2969 }
2970 }
2971 if (port) {
2972 if (strl2irc(port, strlen(port), &new_port) != 0) {
2973 chunk_appendf(msg, "provided port is not an integer");
2974 goto out;
2975 }
2976 if (new_port < 0 || new_port > 65535) {
2977 chunk_appendf(msg, "provided port is invalid");
2978 goto out;
2979 }
2980 /* prevent the update of port to 0 if MAPPORTS are in use */
2981 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
2982 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
2983 goto out;
2984 }
2985 }
2986out:
2987 if (msg->data)
2988 return msg->area;
2989 else {
2990 if (addr)
2991 s->check.addr = sk;
2992 if (port)
2993 s->check.port = new_port;
2994 }
2995 return NULL;
2996}
2997
Baptiste Assmann14e40142015-04-14 01:13:07 +02002998/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02002999 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3000 *
3001 * Caller can pass its name through <updater> to get it integrated in the response message
3002 * returned by the function.
3003 *
3004 * The function first does the following, in that order:
3005 * - validates the new addr and/or port
3006 * - checks if an update is required (new IP or port is different than current ones)
3007 * - checks the update is allowed:
3008 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3009 * - allow all changes if no CHECKS are configured
3010 * - if CHECK is configured:
3011 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3012 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3013 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003014 *
3015 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003016 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003017const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003018{
3019 struct sockaddr_storage sa;
3020 int ret, port_change_required;
3021 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003022 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003023 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003024 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003025
3026 msg = get_trash_chunk();
3027 chunk_reset(msg);
3028
3029 if (addr) {
3030 memset(&sa, 0, sizeof(struct sockaddr_storage));
3031 if (str2ip2(addr, &sa, 0) == NULL) {
3032 chunk_printf(msg, "Invalid addr '%s'", addr);
3033 goto out;
3034 }
3035
3036 /* changes are allowed on AF_INET* families only */
3037 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3038 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3039 goto out;
3040 }
3041
3042 /* collecting data currently setup */
3043 memset(current_addr, '\0', sizeof(current_addr));
3044 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3045 /* changes are allowed on AF_INET* families only */
3046 if ((ret != AF_INET) && (ret != AF_INET6)) {
3047 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3048 goto out;
3049 }
3050
3051 /* applying ADDR changes if required and allowed
3052 * ipcmp returns 0 when both ADDR are the same
3053 */
3054 if (ipcmp(&s->addr, &sa) == 0) {
3055 chunk_appendf(msg, "no need to change the addr");
3056 goto port;
3057 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003058 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003059 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003060
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003061 /* update report for caller */
3062 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3063 }
3064
3065 port:
3066 if (port) {
3067 char sign = '\0';
3068 char *endptr;
3069
3070 if (addr)
3071 chunk_appendf(msg, ", ");
3072
3073 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003074 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003075
3076 /* check if PORT change is required */
3077 port_change_required = 0;
3078
3079 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003080 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003081 new_port = strtol(port, &endptr, 10);
3082 if ((errno != 0) || (port == endptr)) {
3083 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3084 goto out;
3085 }
3086
3087 /* check if caller triggers a port mapped or offset */
3088 if (sign == '-' || (sign == '+')) {
3089 /* check if server currently uses port map */
3090 if (!(s->flags & SRV_F_MAPPORTS)) {
3091 /* switch from fixed port to port map mandatorily triggers
3092 * a port change */
3093 port_change_required = 1;
3094 /* check is configured
3095 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3096 * prevent PORT change if check doesn't have it's dedicated port while switching
3097 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003098 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003099 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.");
3100 goto out;
3101 }
3102 }
3103 /* we're already using port maps */
3104 else {
3105 port_change_required = current_port != new_port;
3106 }
3107 }
3108 /* fixed port */
3109 else {
3110 port_change_required = current_port != new_port;
3111 }
3112
3113 /* applying PORT changes if required and update response message */
3114 if (port_change_required) {
3115 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003116 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003117 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003118
3119 /* prepare message */
3120 chunk_appendf(msg, "port changed from '");
3121 if (s->flags & SRV_F_MAPPORTS)
3122 chunk_appendf(msg, "+");
3123 chunk_appendf(msg, "%d' to '", current_port);
3124
3125 if (sign == '-') {
3126 s->flags |= SRV_F_MAPPORTS;
3127 chunk_appendf(msg, "%c", sign);
3128 /* just use for result output */
3129 new_port = -new_port;
3130 }
3131 else if (sign == '+') {
3132 s->flags |= SRV_F_MAPPORTS;
3133 chunk_appendf(msg, "%c", sign);
3134 }
3135 else {
3136 s->flags &= ~SRV_F_MAPPORTS;
3137 }
3138
3139 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003140 }
3141 else {
3142 chunk_appendf(msg, "no need to change the port");
3143 }
3144 }
3145
3146out:
William Dauchy6318d332020-05-02 21:52:36 +02003147 if (changed) {
3148 /* force connection cleanup on the given server */
3149 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003150 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003151 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003152 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003153 if (updater)
3154 chunk_appendf(msg, " by '%s'", updater);
3155 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003156 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003157}
3158
Christopher Faulet5efdef22021-03-11 18:03:21 +01003159/*
3160 * update server status based on result of SRV resolution
3161 * returns:
3162 * 0 if server status is updated
3163 * 1 if server status has not changed
3164 *
3165 * Must be called with the server lock held.
3166 */
3167int srvrq_update_srv_status(struct server *s, int has_no_ip)
3168{
3169 if (!s->srvrq)
3170 return 1;
3171
3172 /* since this server has an IP, it can go back in production */
3173 if (has_no_ip == 0) {
3174 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3175 return 1;
3176 }
3177
3178 if (s->next_admin & SRV_ADMF_RMAINT)
3179 return 1;
3180
3181 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3182 return 0;
3183}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003184
3185/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003186 * update server status based on result of name resolution
3187 * returns:
3188 * 0 if server status is updated
3189 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003190 *
3191 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003192 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003193int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003194{
Emeric Brun750fe792020-12-23 16:51:12 +01003195 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003196 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003197 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003198
Jerome Magnin012261a2020-07-28 13:38:22 +02003199 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003200 if (resolution == NULL)
3201 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003202
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003203 switch (resolution->status) {
3204 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003205 /* status when HAProxy has just (re)started.
3206 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003207 break;
3208
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003209 case RSLV_STATUS_VALID:
3210 /*
3211 * resume health checks
3212 * server will be turned back on if health check is safe
3213 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003214 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003215 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003216 return 1;
3217 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3218 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003219 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003220 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003221
Emeric Brun52a91d32017-08-31 14:41:55 +02003222 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003223 return 1;
3224 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3225 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3226 s->proxy->id, s->id);
3227
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003228 ha_warning("%s.\n", trash.area);
3229 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003230 return 0;
3231
3232 case RSLV_STATUS_NX:
3233 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003234 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3235 if (!tick_is_expired(exp, now_ms))
3236 break;
3237
3238 if (s->next_admin & SRV_ADMF_RMAINT)
3239 return 1;
3240 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3241 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003242
3243 case RSLV_STATUS_TIMEOUT:
3244 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003245 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3246 if (!tick_is_expired(exp, now_ms))
3247 break;
3248
3249 if (s->next_admin & SRV_ADMF_RMAINT)
3250 return 1;
3251 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3252 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003253
3254 case RSLV_STATUS_REFUSED:
3255 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003256 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3257 if (!tick_is_expired(exp, now_ms))
3258 break;
3259
3260 if (s->next_admin & SRV_ADMF_RMAINT)
3261 return 1;
3262 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3263 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003264
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003265 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003266 /* stop server if resolution failed for a long enough period */
3267 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3268 if (!tick_is_expired(exp, now_ms))
3269 break;
3270
3271 if (s->next_admin & SRV_ADMF_RMAINT)
3272 return 1;
3273 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3274 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003275 }
3276
3277 return 1;
3278}
3279
3280/*
3281 * Server Name Resolution valid response callback
3282 * It expects:
3283 * - <nameserver>: the name server which answered the valid response
3284 * - <response>: buffer containing a valid DNS response
3285 * - <response_len>: size of <response>
3286 * It performs the following actions:
3287 * - ignore response if current ip found and server family not met
3288 * - update with first new ip found if family is met and current IP is not found
3289 * returns:
3290 * 0 on error
3291 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003292 *
3293 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003294 */
Emeric Brun08622d32020-12-23 17:41:43 +01003295int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003296{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003297 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003298 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003299 void *serverip, *firstip;
3300 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003301 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003302 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003303 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003304
Christopher Faulet67957bd2017-09-27 11:00:59 +02003305 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003306 if (!s)
3307 return 1;
3308
Christopher Faulet49531e82021-03-10 15:07:27 +01003309 if (s->srvrq) {
3310 struct resolv_answer_item *srv_item;
3311
3312 /* If DNS resolution is disabled ignore it. */
3313 if (s->flags & SRV_F_NO_RESOLUTION)
3314 return 1;
3315
3316 /* The server is based on a SRV record, thus, find the
3317 * associated answer record. If not found, it means the SRV item
3318 * has expired and this resolution must be ignored.
3319 */
3320 srv_item = find_srvrq_answer_record(requester);
3321 if (!srv_item)
3322 return 1;
3323 }
3324
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003325 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003326 if (!resolution)
3327 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003328
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003329 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003330 firstip = NULL; /* pointer to the first valid response found */
3331 /* it will be used as the new IP if a change is required */
3332 firstip_sin_family = AF_UNSPEC;
3333 serverip = NULL; /* current server IP address */
3334
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003335 /* initializing server IP pointer */
3336 server_sin_family = s->addr.ss_family;
3337 switch (server_sin_family) {
3338 case AF_INET:
3339 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3340 break;
3341
3342 case AF_INET6:
3343 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3344 break;
3345
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003346 case AF_UNSPEC:
3347 break;
3348
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003349 default:
3350 goto invalid;
3351 }
3352
Emeric Brund30e9a12020-12-23 18:49:16 +01003353 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3354 serverip, server_sin_family, &firstip,
3355 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003356
3357 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003358 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003359 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003360
Emeric Brun456de772020-12-23 18:17:31 +01003361 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003362 goto save_ip;
3363
Emeric Brun456de772020-12-23 18:17:31 +01003364 case RSLV_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003365 goto invalid;
3366
Emeric Brun456de772020-12-23 18:17:31 +01003367 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003368 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003369 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003370
Emeric Brun456de772020-12-23 18:17:31 +01003371 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003372 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003373 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003374 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003375
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003376 default:
3377 goto invalid;
3378
3379 }
3380
3381 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003382 if (counters) {
3383 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003384 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003385 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003386 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003387 else
3388 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003389 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003390
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003391 update_status:
Christopher Faulet49531e82021-03-10 15:07:27 +01003392
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003393 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003394 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003395
3396 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003397 if (counters) {
3398 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003399 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003400 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003401 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003402 return 0;
3403}
3404
3405/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003406 * SRV record error management callback
3407 * returns:
3408 * 0 on error
3409 * 1 when no error or safe ignore
3410 *
3411 * Grabs the server's lock.
3412 */
3413int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3414{
3415 struct server *s;
3416 struct resolv_srvrq *srvrq;
3417 struct resolv_resolution *res;
3418 struct resolvers *resolvers;
3419 int exp;
3420
3421 /* SRV records */
3422 srvrq = objt_resolv_srvrq(requester->owner);
3423 if (!srvrq)
3424 return 1;
3425
3426 resolvers = srvrq->resolvers;
3427 res = requester->resolution;
3428
3429 switch (res->status) {
3430
3431 case RSLV_STATUS_NX:
3432 /* stop server if resolution is NX for a long enough period */
3433 exp = tick_add(res->last_valid, resolvers->hold.nx);
3434 if (!tick_is_expired(exp, now_ms))
3435 return 1;
3436 break;
3437
3438 case RSLV_STATUS_TIMEOUT:
3439 /* stop server if resolution is TIMEOUT for a long enough period */
3440 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3441 if (!tick_is_expired(exp, now_ms))
3442 return 1;
3443 break;
3444
3445 case RSLV_STATUS_REFUSED:
3446 /* stop server if resolution is REFUSED for a long enough period */
3447 exp = tick_add(res->last_valid, resolvers->hold.refused);
3448 if (!tick_is_expired(exp, now_ms))
3449 return 1;
3450 break;
3451
3452 default:
3453 /* stop server if resolution failed for a long enough period */
3454 exp = tick_add(res->last_valid, resolvers->hold.other);
3455 if (!tick_is_expired(exp, now_ms))
3456 return 1;
3457 }
3458
3459 /* Remove any associated server */
3460 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
3461 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
3462 if (s->srvrq == srvrq) {
Christopher Faulet0efc0992021-03-11 18:09:53 +01003463 resolv_unlink_resolution(s->resolv_requester, 1);
Christopher Faulet6b117ae2021-03-11 18:06:23 +01003464 srvrq_update_srv_status(s, 1);
Christopher Faulet52d4d302021-02-23 12:24:09 +01003465 memset(&s->addr, 0, sizeof(s->addr));
Christopher Fauletc392d462021-03-10 15:51:13 +01003466 ha_free(&s->hostname);
3467 ha_free(&s->hostname_dn);
3468 s->hostname_dn_len = 0;
Christopher Faulet52d4d302021-02-23 12:24:09 +01003469 s->svc_port = 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003470 }
3471 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
3472 }
3473
Christopher Faulet51d5e3b2021-03-10 15:46:46 +01003474 resolv_purge_resolution_answer_records(res);
3475
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003476 return 1;
3477}
3478
3479/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003480 * Server Name Resolution error management callback
3481 * returns:
3482 * 0 on error
3483 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003484 *
3485 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003486 */
Emeric Brun08622d32020-12-23 17:41:43 +01003487int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003488{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003489 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003490
Christopher Faulet67957bd2017-09-27 11:00:59 +02003491 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003492 if (!s)
3493 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003494 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet5130c212021-03-10 20:31:40 +01003495 if (!snr_update_srv_status(s, 1))
3496 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003497 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003498 return 1;
3499}
3500
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003501/*
3502 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003503 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003504 * It returns a pointer to the first server found or NULL if <ip> is not yet
3505 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003506 *
3507 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003508 */
3509struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3510{
3511 struct server *tmpsrv;
3512 struct proxy *be;
3513
3514 if (!srv)
3515 return NULL;
3516
3517 be = srv->proxy;
3518 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003519 /* we found the current server is the same, ignore it */
3520 if (srv == tmpsrv)
3521 continue;
3522
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003523 /* We want to compare the IP in the record with the IP of the servers in the
3524 * same backend, only if:
3525 * * DNS resolution is enabled on the server
3526 * * the hostname used for the resolution by our server is the same than the
3527 * one used for the server found in the backend
3528 * * the server found in the backend is not our current server
3529 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003530 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003531 if ((tmpsrv->hostname_dn == NULL) ||
3532 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003533 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003534 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003535 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003536 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003537 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003538
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003539 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003540 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003541 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003542 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003543 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003544
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003545 /* At this point, we have 2 different servers using the same DNS hostname
3546 * for their respective resolution.
3547 */
3548 if (*ip_family == tmpsrv->addr.ss_family &&
3549 ((tmpsrv->addr.ss_family == AF_INET &&
3550 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3551 (tmpsrv->addr.ss_family == AF_INET6 &&
3552 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003553 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003554 return tmpsrv;
3555 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003556 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003557 }
3558
Emeric Brune9fd6b52017-11-02 17:20:39 +01003559
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003560 return NULL;
3561}
3562
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003563/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3564 * resolver. This is suited for initial address configuration. Returns 0 on
3565 * success otherwise a non-zero error code. In case of error, *err_code, if
3566 * not NULL, is filled up.
3567 */
3568int srv_set_addr_via_libc(struct server *srv, int *err_code)
3569{
3570 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003571 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003572 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003573 return 1;
3574 }
3575 return 0;
3576}
3577
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003578/* Set the server's FDQN (->hostname) from <hostname>.
3579 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003580 *
3581 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003582 */
Emeric Brun08622d32020-12-23 17:41:43 +01003583int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003584{
Emeric Brun08622d32020-12-23 17:41:43 +01003585 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003586 char *hostname_dn;
3587 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003588
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003589 /* Note that the server lock is already held. */
3590 if (!srv->resolvers)
3591 return -1;
3592
Emeric Brun08622d32020-12-23 17:41:43 +01003593 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003594 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003595 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003596 * and we can't enable it at run time for now.
3597 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003598 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003599 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003600
3601 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003602 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003603 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01003604 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
3605 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003606 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003607 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003608
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003609 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003610 if (resolution &&
3611 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003612 resolution->hostname_dn_len == hostname_dn_len &&
3613 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003614 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003615
Christopher Faulet0efc0992021-03-11 18:09:53 +01003616 resolv_unlink_resolution(srv->resolv_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003617
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003618 free(srv->hostname);
3619 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003620 srv->hostname = strdup(hostname);
3621 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003622 srv->hostname_dn_len = hostname_dn_len;
3623 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003624 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003625
Baptiste Assmann13a92322019-06-07 09:40:55 +02003626 if (srv->flags & SRV_F_NO_RESOLUTION)
3627 goto end;
3628
Emeric Brund30e9a12020-12-23 18:49:16 +01003629 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003630 goto err;
3631
3632 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003633 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003634 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003635 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003636
3637 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003638 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003639 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003640 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003641}
3642
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003643/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3644 * from the state file. This is suited for initial address configuration.
3645 * Returns 0 on success otherwise a non-zero error code. In case of error,
3646 * *err_code, if not NULL, is filled up.
3647 */
3648static int srv_apply_lastaddr(struct server *srv, int *err_code)
3649{
3650 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3651 if (err_code)
3652 *err_code |= ERR_WARN;
3653 return 1;
3654 }
3655 return 0;
3656}
3657
Willy Tarreau25e51522016-11-04 15:10:17 +01003658/* returns 0 if no error, otherwise a combination of ERR_* flags */
3659static int srv_iterate_initaddr(struct server *srv)
3660{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003661 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003662 int return_code = 0;
3663 int err_code;
3664 unsigned int methods;
3665
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003666 /* If no addr and no hostname set, get the name from the DNS SRV request */
3667 if (!name && srv->srvrq)
3668 name = srv->srvrq->name;
3669
Willy Tarreau25e51522016-11-04 15:10:17 +01003670 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003671 if (!methods) {
3672 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003673 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3674 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003675 if (srv->resolvers_id) {
3676 /* dns resolution is configured, add "none" to not fail on startup */
3677 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3678 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003679 }
3680
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003681 /* "-dr" : always append "none" so that server addresses resolution
3682 * failures are silently ignored, this is convenient to validate some
3683 * configs out of their environment.
3684 */
3685 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3686 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3687
Willy Tarreau25e51522016-11-04 15:10:17 +01003688 while (methods) {
3689 err_code = 0;
3690 switch (srv_get_next_initaddr(&methods)) {
3691 case SRV_IADDR_LAST:
3692 if (!srv->lastaddr)
3693 continue;
3694 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003695 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003696 return_code |= err_code;
3697 break;
3698
3699 case SRV_IADDR_LIBC:
3700 if (!srv->hostname)
3701 continue;
3702 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003703 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003704 return_code |= err_code;
3705 break;
3706
Willy Tarreau37ebe122016-11-04 15:17:58 +01003707 case SRV_IADDR_NONE:
3708 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003709 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003710 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003711 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003712 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003713 return return_code;
3714
Willy Tarreau4310d362016-11-02 15:05:56 +01003715 case SRV_IADDR_IP:
3716 ipcpy(&srv->init_addr, &srv->addr);
3717 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003718 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 +01003719 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003720 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003721 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003722
Willy Tarreau25e51522016-11-04 15:10:17 +01003723 default: /* unhandled method */
3724 break;
3725 }
3726 }
3727
3728 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003729 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003730 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003731 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003732 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003733 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003734 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003735 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003736
3737 return_code |= ERR_ALERT | ERR_FATAL;
3738 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003739out:
3740 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07003741 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01003742 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003743}
3744
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003745/*
3746 * This function parses all backends and all servers within each backend
3747 * and performs servers' addr resolution based on information provided by:
3748 * - configuration file
3749 * - server-state file (states provided by an 'old' haproxy process)
3750 *
3751 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3752 */
3753int srv_init_addr(void)
3754{
3755 struct proxy *curproxy;
3756 int return_code = 0;
3757
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003758 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003759 while (curproxy) {
3760 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003761
3762 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01003763 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003764 goto srv_init_addr_next;
3765
Willy Tarreau25e51522016-11-04 15:10:17 +01003766 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003767 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003768 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003769
3770 srv_init_addr_next:
3771 curproxy = curproxy->next;
3772 }
3773
3774 return return_code;
3775}
3776
Willy Tarreau46b7f532018-08-21 11:54:26 +02003777/*
3778 * Must be called with the server lock held.
3779 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003780const 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 +02003781{
3782
Willy Tarreau83061a82018-07-13 11:56:34 +02003783 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003784
3785 msg = get_trash_chunk();
3786 chunk_reset(msg);
3787
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003788 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003789 chunk_appendf(msg, "no need to change the FDQN");
3790 goto out;
3791 }
3792
3793 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
3794 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
3795 goto out;
3796 }
3797
3798 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
3799 server->proxy->id, server->id, server->hostname, fqdn);
3800
Emeric Brun08622d32020-12-23 17:41:43 +01003801 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003802 chunk_reset(msg);
3803 chunk_appendf(msg, "could not update %s/%s FQDN",
3804 server->proxy->id, server->id);
3805 goto out;
3806 }
3807
3808 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02003809 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003810
3811 out:
3812 if (updater)
3813 chunk_appendf(msg, " by '%s'", updater);
3814 chunk_appendf(msg, "\n");
3815
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003816 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003817}
3818
3819
Willy Tarreau21b069d2016-11-23 17:15:08 +01003820/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
3821 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003822 * 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 +01003823 * used for CLI commands requiring a server name.
3824 * Important: the <arg> is modified to remove the '/'.
3825 */
3826struct server *cli_find_server(struct appctx *appctx, char *arg)
3827{
3828 struct proxy *px;
3829 struct server *sv;
3830 char *line;
3831
3832 /* split "backend/server" and make <line> point to server */
3833 for (line = arg; *line; line++)
3834 if (*line == '/') {
3835 *line++ = '\0';
3836 break;
3837 }
3838
3839 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003840 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003841 return NULL;
3842 }
3843
3844 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003845 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003846 return NULL;
3847 }
3848
Willy Tarreauc3914d42020-09-24 08:39:22 +02003849 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003850 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003851 return NULL;
3852 }
3853
3854 return sv;
3855}
3856
William Lallemand222baf22016-11-19 02:00:33 +01003857
Willy Tarreau46b7f532018-08-21 11:54:26 +02003858/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003859static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01003860{
3861 struct server *sv;
3862 const char *warning;
3863
3864 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3865 return 1;
3866
3867 sv = cli_find_server(appctx, args[2]);
3868 if (!sv)
3869 return 1;
3870
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003871 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02003872
William Lallemand222baf22016-11-19 02:00:33 +01003873 if (strcmp(args[3], "weight") == 0) {
3874 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02003875 if (warning)
3876 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003877 }
3878 else if (strcmp(args[3], "state") == 0) {
3879 if (strcmp(args[4], "ready") == 0)
3880 srv_adm_set_ready(sv);
3881 else if (strcmp(args[4], "drain") == 0)
3882 srv_adm_set_drain(sv);
3883 else if (strcmp(args[4], "maint") == 0)
3884 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02003885 else
3886 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003887 }
3888 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003889 if (sv->track)
3890 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003891 else if (strcmp(args[4], "up") == 0) {
3892 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003893 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003894 }
3895 else if (strcmp(args[4], "stopping") == 0) {
3896 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003897 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003898 }
3899 else if (strcmp(args[4], "down") == 0) {
3900 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003901 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003902 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003903 else
3904 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003905 }
3906 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003907 if (!(sv->agent.state & CHK_ST_ENABLED))
3908 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003909 else if (strcmp(args[4], "up") == 0) {
3910 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003911 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003912 }
3913 else if (strcmp(args[4], "down") == 0) {
3914 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003915 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003916 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003917 else
3918 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003919 }
Misiek2da082d2017-01-09 09:40:42 +01003920 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01003921 char *addr = NULL;
3922 char *port = NULL;
3923 if (strlen(args[4]) == 0) {
3924 cli_err(appctx, "set server <b>/<s> agent-addr requires"
3925 " an address and optionally a port.\n");
3926 goto out_unlock;
3927 }
3928 addr = args[4];
3929 if (strcmp(args[5], "port") == 0)
3930 port = args[6];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003931 warning = srv_update_agent_addr_port(sv, addr, port);
William Dauchy7cabc062021-02-11 22:51:24 +01003932 if (warning)
3933 cli_msg(appctx, LOG_WARNING, warning);
3934 }
3935 else if (strcmp(args[3], "agent-port") == 0) {
3936 char *port = NULL;
3937 if (strlen(args[4]) == 0) {
3938 cli_err(appctx, "set server <b>/<s> agent-port requires"
3939 " a port.\n");
3940 goto out_unlock;
3941 }
3942 port = args[4];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003943 warning = srv_update_agent_addr_port(sv, NULL, port);
William Dauchy7cabc062021-02-11 22:51:24 +01003944 if (warning)
3945 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01003946 }
3947 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003948 if (!(sv->agent.state & CHK_ST_ENABLED))
3949 cli_err(appctx, "agent checks are not enabled on this server.\n");
3950 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02003951 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02003952 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01003953 }
3954 }
William Dauchyb456e1f2021-02-11 22:51:23 +01003955 else if (strcmp(args[3], "check-addr") == 0) {
3956 char *addr = NULL;
3957 char *port = NULL;
3958 if (strlen(args[4]) == 0) {
3959 cli_err(appctx, "set server <b>/<s> check-addr requires"
3960 " an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01003961 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01003962 }
William Dauchyb456e1f2021-02-11 22:51:23 +01003963 addr = args[4];
3964 if (strcmp(args[5], "port") == 0)
3965 port = args[6];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003966 warning = srv_update_check_addr_port(sv, addr, port);
William Dauchyb456e1f2021-02-11 22:51:23 +01003967 if (warning)
3968 cli_msg(appctx, LOG_WARNING, warning);
3969 }
3970 else if (strcmp(args[3], "check-port") == 0) {
3971 char *port = NULL;
3972 if (strlen(args[4]) == 0) {
3973 cli_err(appctx, "set server <b>/<s> check-port requires"
3974 " a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01003975 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01003976 }
William Dauchyb456e1f2021-02-11 22:51:23 +01003977 port = args[4];
Christopher Faulet69beaa92021-02-16 12:07:47 +01003978 warning = srv_update_check_addr_port(sv, NULL, port);
William Dauchyb456e1f2021-02-11 22:51:23 +01003979 if (warning)
3980 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003981 }
3982 else if (strcmp(args[3], "addr") == 0) {
3983 char *addr = NULL;
3984 char *port = NULL;
3985 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003986 cli_err(appctx, "set server <b>/<s> addr requires 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 }
3989 else {
3990 addr = args[4];
3991 }
3992 if (strcmp(args[5], "port") == 0) {
3993 port = args[6];
3994 }
Christopher Faulet69beaa92021-02-16 12:07:47 +01003995 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02003996 if (warning)
3997 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003998 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
3999 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004000 else if (strcmp(args[3], "fqdn") == 0) {
4001 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004002 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004003 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004004 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004005 /* ensure runtime resolver will process this new fqdn */
4006 if (sv->flags & SRV_F_NO_RESOLUTION) {
4007 sv->flags &= ~SRV_F_NO_RESOLUTION;
4008 }
Christopher Faulet69beaa92021-02-16 12:07:47 +01004009 warning = srv_update_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004010 if (warning)
4011 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004012 }
William Dauchyf6370442020-11-14 19:25:33 +01004013 else if (strcmp(args[3], "ssl") == 0) {
4014#ifdef USE_OPENSSL
4015 if (sv->ssl_ctx.ctx == NULL) {
4016 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4017 " default-server should define ssl settings\n");
4018 goto out_unlock;
4019 } else if (strcmp(args[4], "on") == 0) {
4020 ssl_sock_set_srv(sv, 1);
4021 } else if (strcmp(args[4], "off") == 0) {
4022 ssl_sock_set_srv(sv, 0);
4023 } else {
4024 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4025 goto out_unlock;
4026 }
4027 srv_cleanup_connections(sv);
4028 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4029#else
4030 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4031#endif
4032 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004033 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004034 "usage: set server <backend>/<server> "
4035 "addr | agent | agent-addr | agent-port | agent-send | "
4036 "check-addr | check-port | fqdn | health | ssl | "
4037 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004038 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004039 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004040 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004041 return 1;
4042}
4043
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004044static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004045{
4046 struct stream_interface *si = appctx->owner;
4047 struct proxy *px;
4048 struct server *sv;
4049 char *line;
4050
4051
4052 /* split "backend/server" and make <line> point to server */
4053 for (line = args[2]; *line; line++)
4054 if (*line == '/') {
4055 *line++ = '\0';
4056 break;
4057 }
4058
Willy Tarreau9d008692019-08-09 11:21:01 +02004059 if (!*line)
4060 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004061
Willy Tarreau9d008692019-08-09 11:21:01 +02004062 if (!get_backend_server(args[2], line, &px, &sv))
4063 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004064
4065 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004066 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4067 sv->iweight);
4068 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004069 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004070 return 0;
4071 }
William Lallemand6b160942016-11-22 12:34:35 +01004072 return 1;
4073}
4074
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004075/* Parse a "set weight" command.
4076 *
4077 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004078 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004079static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004080{
4081 struct server *sv;
4082 const char *warning;
4083
4084 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4085 return 1;
4086
4087 sv = cli_find_server(appctx, args[2]);
4088 if (!sv)
4089 return 1;
4090
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004091 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4092
William Lallemand6b160942016-11-22 12:34:35 +01004093 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004094 if (warning)
4095 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004096
4097 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4098
William Lallemand6b160942016-11-22 12:34:35 +01004099 return 1;
4100}
4101
Willy Tarreau46b7f532018-08-21 11:54:26 +02004102/* parse a "set maxconn server" command. It always returns 1.
4103 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004104 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004105 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004106static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004107{
4108 struct server *sv;
4109 const char *warning;
4110
4111 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4112 return 1;
4113
4114 sv = cli_find_server(appctx, args[3]);
4115 if (!sv)
4116 return 1;
4117
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004118 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4119
Willy Tarreaub8026272016-11-23 11:26:56 +01004120 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004121 if (warning)
4122 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004123
4124 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4125
Willy Tarreaub8026272016-11-23 11:26:56 +01004126 return 1;
4127}
William Lallemand6b160942016-11-22 12:34:35 +01004128
Willy Tarreau46b7f532018-08-21 11:54:26 +02004129/* parse a "disable agent" command. It always returns 1.
4130 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004131 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004132 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004133static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004134{
4135 struct server *sv;
4136
4137 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4138 return 1;
4139
4140 sv = cli_find_server(appctx, args[2]);
4141 if (!sv)
4142 return 1;
4143
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004144 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004145 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004146 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004147 return 1;
4148}
4149
Willy Tarreau46b7f532018-08-21 11:54:26 +02004150/* parse a "disable health" command. It always returns 1.
4151 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004152 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004153 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004154static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004155{
4156 struct server *sv;
4157
4158 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4159 return 1;
4160
4161 sv = cli_find_server(appctx, args[2]);
4162 if (!sv)
4163 return 1;
4164
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004165 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004166 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004167 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004168 return 1;
4169}
4170
Willy Tarreau46b7f532018-08-21 11:54:26 +02004171/* parse a "disable server" command. It always returns 1.
4172 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004173 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004174 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004175static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004176{
4177 struct server *sv;
4178
4179 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4180 return 1;
4181
4182 sv = cli_find_server(appctx, args[2]);
4183 if (!sv)
4184 return 1;
4185
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004186 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004187 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004188 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004189 return 1;
4190}
4191
Willy Tarreau46b7f532018-08-21 11:54:26 +02004192/* parse a "enable agent" command. It always returns 1.
4193 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004194 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004195 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004196static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004197{
4198 struct server *sv;
4199
4200 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4201 return 1;
4202
4203 sv = cli_find_server(appctx, args[2]);
4204 if (!sv)
4205 return 1;
4206
Willy Tarreau9d008692019-08-09 11:21:01 +02004207 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4208 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004209
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004210 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004211 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004212 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004213 return 1;
4214}
4215
Willy Tarreau46b7f532018-08-21 11:54:26 +02004216/* parse a "enable health" command. It always returns 1.
4217 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004218 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004219 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004220static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004221{
4222 struct server *sv;
4223
4224 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4225 return 1;
4226
4227 sv = cli_find_server(appctx, args[2]);
4228 if (!sv)
4229 return 1;
4230
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004231 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004232 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004233 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004234 return 1;
4235}
4236
Willy Tarreau46b7f532018-08-21 11:54:26 +02004237/* parse a "enable server" command. It always returns 1.
4238 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004239 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004240 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004241static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004242{
4243 struct server *sv;
4244
4245 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4246 return 1;
4247
4248 sv = cli_find_server(appctx, args[2]);
4249 if (!sv)
4250 return 1;
4251
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004252 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004253 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004254 if (!(sv->flags & SRV_F_COOKIESET)
4255 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4256 sv->cookie)
4257 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004258 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004259 return 1;
4260}
4261
William Lallemand222baf22016-11-19 02:00:33 +01004262/* register cli keywords */
4263static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004264 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004265 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004266 { { "disable", "server", NULL }, "disable server : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004267 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004268 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004269 { { "enable", "server", NULL }, "enable server : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
Willy Tarreaub8026272016-11-23 11:26:56 +01004270 { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
William Dauchyf6370442020-11-14 19:25:33 +01004271 { { "set", "server", NULL }, "set server : change a server's state, weight, address or ssl", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004272 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4273 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4274
William Lallemand222baf22016-11-19 02:00:33 +01004275 {{},}
4276}};
4277
Willy Tarreau0108d902018-11-25 19:14:37 +01004278INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004279
Emeric Brun64cc49c2017-10-03 14:46:45 +02004280/*
4281 * This function applies server's status changes, it is
4282 * is designed to be called asynchronously.
4283 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004284 * Must be called with the server lock held. This may also be called at init
4285 * time as the result of parsing the state file, in which case no lock will be
4286 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004287 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004288static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004289{
4290 struct check *check = &s->check;
4291 int xferred;
4292 struct proxy *px = s->proxy;
4293 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4294 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4295 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004296 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004297
Emeric Brun64cc49c2017-10-03 14:46:45 +02004298 /* If currently main is not set we try to apply pending state changes */
4299 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4300 int next_admin;
4301
4302 /* Backup next admin */
4303 next_admin = s->next_admin;
4304
4305 /* restore current admin state */
4306 s->next_admin = s->cur_admin;
4307
4308 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4309 s->last_change = now.tv_sec;
4310 if (s->proxy->lbprm.set_server_status_down)
4311 s->proxy->lbprm.set_server_status_down(s);
4312
4313 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4314 srv_shutdown_streams(s, SF_ERR_DOWN);
4315
4316 /* we might have streams queued on this server and waiting for
4317 * a connection. Those which are redispatchable will be queued
4318 * to another server or to the proxy itself.
4319 */
4320 xferred = pendconn_redistribute(s);
4321
4322 tmptrash = alloc_trash_chunk();
4323 if (tmptrash) {
4324 chunk_printf(tmptrash,
4325 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4326 s->proxy->id, s->id);
4327
Emeric Brun5a133512017-10-19 14:42:30 +02004328 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004329 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004330
4331 /* we don't send an alert if the server was previously paused */
4332 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004333 send_log(s->proxy, log_level, "%s.\n",
4334 tmptrash->area);
4335 send_email_alert(s, log_level, "%s",
4336 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004337 free_trash_chunk(tmptrash);
4338 tmptrash = NULL;
4339 }
4340 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4341 set_backend_down(s->proxy);
4342
4343 s->counters.down_trans++;
4344 }
4345 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4346 s->last_change = now.tv_sec;
4347 if (s->proxy->lbprm.set_server_status_down)
4348 s->proxy->lbprm.set_server_status_down(s);
4349
4350 /* we might have streams queued on this server and waiting for
4351 * a connection. Those which are redispatchable will be queued
4352 * to another server or to the proxy itself.
4353 */
4354 xferred = pendconn_redistribute(s);
4355
4356 tmptrash = alloc_trash_chunk();
4357 if (tmptrash) {
4358 chunk_printf(tmptrash,
4359 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4360 s->proxy->id, s->id);
4361
Emeric Brun5a133512017-10-19 14:42:30 +02004362 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004363
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004364 ha_warning("%s.\n", tmptrash->area);
4365 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4366 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004367 free_trash_chunk(tmptrash);
4368 tmptrash = NULL;
4369 }
4370
4371 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4372 set_backend_down(s->proxy);
4373 }
4374 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4375 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4376 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4377 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4378 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4379 s->proxy->last_change = now.tv_sec;
4380 }
4381
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004382 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004383 s->down_time += now.tv_sec - s->last_change;
4384
4385 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004386 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004387 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4388
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004389 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004390 /* now propagate the status change to any LB algorithms */
4391 if (px->lbprm.update_server_eweight)
4392 px->lbprm.update_server_eweight(s);
4393 else if (srv_willbe_usable(s)) {
4394 if (px->lbprm.set_server_status_up)
4395 px->lbprm.set_server_status_up(s);
4396 }
4397 else {
4398 if (px->lbprm.set_server_status_down)
4399 px->lbprm.set_server_status_down(s);
4400 }
4401
4402 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4403 * and it's not a backup server and its effective weight is > 0,
4404 * then it can accept new connections, so we shut down all streams
4405 * on all backup servers.
4406 */
4407 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4408 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4409 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4410
4411 /* check if we can handle some connections queued at the proxy. We
4412 * will take as many as we can handle.
4413 */
4414 xferred = pendconn_grab_from_px(s);
4415
4416 tmptrash = alloc_trash_chunk();
4417 if (tmptrash) {
4418 chunk_printf(tmptrash,
4419 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4420 s->proxy->id, s->id);
4421
Emeric Brun5a133512017-10-19 14:42:30 +02004422 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004423 ha_warning("%s.\n", tmptrash->area);
4424 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4425 tmptrash->area);
4426 send_email_alert(s, LOG_NOTICE, "%s",
4427 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004428 free_trash_chunk(tmptrash);
4429 tmptrash = NULL;
4430 }
4431
4432 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4433 set_backend_down(s->proxy);
4434 }
4435 else if (s->cur_eweight != s->next_eweight) {
4436 /* now propagate the status change to any LB algorithms */
4437 if (px->lbprm.update_server_eweight)
4438 px->lbprm.update_server_eweight(s);
4439 else if (srv_willbe_usable(s)) {
4440 if (px->lbprm.set_server_status_up)
4441 px->lbprm.set_server_status_up(s);
4442 }
4443 else {
4444 if (px->lbprm.set_server_status_down)
4445 px->lbprm.set_server_status_down(s);
4446 }
4447
4448 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4449 set_backend_down(s->proxy);
4450 }
4451
4452 s->next_admin = next_admin;
4453 }
4454
Emeric Brun5a133512017-10-19 14:42:30 +02004455 /* reset operational state change */
4456 *s->op_st_chg.reason = 0;
4457 s->op_st_chg.status = s->op_st_chg.code = -1;
4458 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004459
4460 /* Now we try to apply pending admin changes */
4461
4462 /* Maintenance must also disable health checks */
4463 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4464 if (s->check.state & CHK_ST_ENABLED) {
4465 s->check.state |= CHK_ST_PAUSED;
4466 check->health = 0;
4467 }
4468
4469 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004470 tmptrash = alloc_trash_chunk();
4471 if (tmptrash) {
4472 chunk_printf(tmptrash,
4473 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4474 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4475 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004476
Olivier Houchard796a2b32017-10-24 17:42:47 +02004477 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004478
Olivier Houchard796a2b32017-10-24 17:42:47 +02004479 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004480 ha_warning("%s.\n", tmptrash->area);
4481 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4482 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004483 }
4484 free_trash_chunk(tmptrash);
4485 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004486 }
Emeric Brun8f298292017-12-06 16:47:17 +01004487 /* commit new admin status */
4488
4489 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004490 }
4491 else { /* server was still running */
4492 check->health = 0; /* failure */
4493 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004494
4495 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004496 if (s->proxy->lbprm.set_server_status_down)
4497 s->proxy->lbprm.set_server_status_down(s);
4498
Emeric Brun64cc49c2017-10-03 14:46:45 +02004499 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4500 srv_shutdown_streams(s, SF_ERR_DOWN);
4501
William Dauchy6318d332020-05-02 21:52:36 +02004502 /* force connection cleanup on the given server */
4503 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004504 /* we might have streams queued on this server and waiting for
4505 * a connection. Those which are redispatchable will be queued
4506 * to another server or to the proxy itself.
4507 */
4508 xferred = pendconn_redistribute(s);
4509
4510 tmptrash = alloc_trash_chunk();
4511 if (tmptrash) {
4512 chunk_printf(tmptrash,
4513 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4514 s->flags & SRV_F_BACKUP ? "Backup " : "",
4515 s->proxy->id, s->id,
4516 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4517
4518 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4519
4520 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004521 ha_warning("%s.\n", tmptrash->area);
4522 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4523 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004524 }
4525 free_trash_chunk(tmptrash);
4526 tmptrash = NULL;
4527 }
4528 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4529 set_backend_down(s->proxy);
4530
4531 s->counters.down_trans++;
4532 }
4533 }
4534 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4535 /* OK here we're leaving maintenance, we have many things to check,
4536 * because the server might possibly be coming back up depending on
4537 * its state. In practice, leaving maintenance means that we should
4538 * immediately turn to UP (more or less the slowstart) under the
4539 * following conditions :
4540 * - server is neither checked nor tracked
4541 * - server tracks another server which is not checked
4542 * - server tracks another server which is already up
4543 * Which sums up as something simpler :
4544 * "either the tracking server is up or the server's checks are disabled
4545 * or up". Otherwise we only re-enable health checks. There's a special
4546 * case associated to the stopping state which can be inherited. Note
4547 * that the server might still be in drain mode, which is naturally dealt
4548 * with by the lower level functions.
4549 */
4550
4551 if (s->check.state & CHK_ST_ENABLED) {
4552 s->check.state &= ~CHK_ST_PAUSED;
4553 check->health = check->rise; /* start OK but check immediately */
4554 }
4555
4556 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4557 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4558 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4559 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4560 s->next_state = SRV_ST_STOPPING;
4561 }
4562 else {
4563 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004564 if (s->slowstart > 0) {
4565 if (s->warmup)
4566 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4567 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004568 else
4569 s->next_state = SRV_ST_RUNNING;
4570 }
4571
4572 }
4573
4574 tmptrash = alloc_trash_chunk();
4575 if (tmptrash) {
4576 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4577 chunk_printf(tmptrash,
4578 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4579 s->flags & SRV_F_BACKUP ? "Backup " : "",
4580 s->proxy->id, s->id,
4581 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4582 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4583 }
4584 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4585 chunk_printf(tmptrash,
4586 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4587 s->flags & SRV_F_BACKUP ? "Backup " : "",
4588 s->proxy->id, s->id, s->hostname,
4589 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4590 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4591 }
4592 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4593 chunk_printf(tmptrash,
4594 "%sServer %s/%s is %s/%s (leaving maintenance)",
4595 s->flags & SRV_F_BACKUP ? "Backup " : "",
4596 s->proxy->id, s->id,
4597 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4598 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4599 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004600 ha_warning("%s.\n", tmptrash->area);
4601 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4602 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004603 free_trash_chunk(tmptrash);
4604 tmptrash = NULL;
4605 }
4606
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004607 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004608 /* now propagate the status change to any LB algorithms */
4609 if (px->lbprm.update_server_eweight)
4610 px->lbprm.update_server_eweight(s);
4611 else if (srv_willbe_usable(s)) {
4612 if (px->lbprm.set_server_status_up)
4613 px->lbprm.set_server_status_up(s);
4614 }
4615 else {
4616 if (px->lbprm.set_server_status_down)
4617 px->lbprm.set_server_status_down(s);
4618 }
4619
4620 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4621 set_backend_down(s->proxy);
4622
Willy Tarreau6a78e612018-08-07 10:14:53 +02004623 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4624 * and it's not a backup server and its effective weight is > 0,
4625 * then it can accept new connections, so we shut down all streams
4626 * on all backup servers.
4627 */
4628 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4629 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4630 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4631
4632 /* check if we can handle some connections queued at the proxy. We
4633 * will take as many as we can handle.
4634 */
4635 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004636 }
4637 else if (s->next_admin & SRV_ADMF_MAINT) {
4638 /* remaining in maintenance mode, let's inform precisely about the
4639 * situation.
4640 */
4641 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4642 tmptrash = alloc_trash_chunk();
4643 if (tmptrash) {
4644 chunk_printf(tmptrash,
4645 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4646 s->flags & SRV_F_BACKUP ? "Backup " : "",
4647 s->proxy->id, s->id);
4648
4649 if (s->track) /* normally it's mandatory here */
4650 chunk_appendf(tmptrash, " via %s/%s",
4651 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004652 ha_warning("%s.\n", tmptrash->area);
4653 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4654 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004655 free_trash_chunk(tmptrash);
4656 tmptrash = NULL;
4657 }
4658 }
4659 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4660 tmptrash = alloc_trash_chunk();
4661 if (tmptrash) {
4662 chunk_printf(tmptrash,
4663 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
4664 s->flags & SRV_F_BACKUP ? "Backup " : "",
4665 s->proxy->id, s->id, s->hostname);
4666
4667 if (s->track) /* normally it's mandatory here */
4668 chunk_appendf(tmptrash, " via %s/%s",
4669 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004670 ha_warning("%s.\n", tmptrash->area);
4671 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4672 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004673 free_trash_chunk(tmptrash);
4674 tmptrash = NULL;
4675 }
4676 }
4677 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4678 tmptrash = alloc_trash_chunk();
4679 if (tmptrash) {
4680 chunk_printf(tmptrash,
4681 "%sServer %s/%s remains in forced maintenance",
4682 s->flags & SRV_F_BACKUP ? "Backup " : "",
4683 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004684 ha_warning("%s.\n", tmptrash->area);
4685 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4686 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004687 free_trash_chunk(tmptrash);
4688 tmptrash = NULL;
4689 }
4690 }
4691 /* don't report anything when leaving drain mode and remaining in maintenance */
4692
4693 s->cur_admin = s->next_admin;
4694 }
4695
4696 if (!(s->next_admin & SRV_ADMF_MAINT)) {
4697 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
4698 /* drain state is applied only if not yet in maint */
4699
4700 s->last_change = now.tv_sec;
4701 if (px->lbprm.set_server_status_down)
4702 px->lbprm.set_server_status_down(s);
4703
4704 /* we might have streams queued on this server and waiting for
4705 * a connection. Those which are redispatchable will be queued
4706 * to another server or to the proxy itself.
4707 */
4708 xferred = pendconn_redistribute(s);
4709
4710 tmptrash = alloc_trash_chunk();
4711 if (tmptrash) {
4712 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
4713 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4714 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4715
4716 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
4717
4718 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004719 ha_warning("%s.\n", tmptrash->area);
4720 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4721 tmptrash->area);
4722 send_email_alert(s, LOG_NOTICE, "%s",
4723 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004724 }
4725 free_trash_chunk(tmptrash);
4726 tmptrash = NULL;
4727 }
4728
4729 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4730 set_backend_down(s->proxy);
4731 }
4732 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
4733 /* OK completely leaving drain mode */
4734 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4735 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4736 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4737 s->proxy->last_change = now.tv_sec;
4738 }
4739
4740 if (s->last_change < now.tv_sec) // ignore negative times
4741 s->down_time += now.tv_sec - s->last_change;
4742 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004743 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004744
4745 tmptrash = alloc_trash_chunk();
4746 if (tmptrash) {
4747 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
4748 chunk_printf(tmptrash,
4749 "%sServer %s/%s is %s (leaving forced drain)",
4750 s->flags & SRV_F_BACKUP ? "Backup " : "",
4751 s->proxy->id, s->id,
4752 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4753 }
4754 else {
4755 chunk_printf(tmptrash,
4756 "%sServer %s/%s is %s (leaving drain)",
4757 s->flags & SRV_F_BACKUP ? "Backup " : "",
4758 s->proxy->id, s->id,
4759 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4760 if (s->track) /* normally it's mandatory here */
4761 chunk_appendf(tmptrash, " via %s/%s",
4762 s->track->proxy->id, s->track->id);
4763 }
4764
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004765 ha_warning("%s.\n", tmptrash->area);
4766 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4767 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004768 free_trash_chunk(tmptrash);
4769 tmptrash = NULL;
4770 }
4771
4772 /* now propagate the status change to any LB algorithms */
4773 if (px->lbprm.update_server_eweight)
4774 px->lbprm.update_server_eweight(s);
4775 else if (srv_willbe_usable(s)) {
4776 if (px->lbprm.set_server_status_up)
4777 px->lbprm.set_server_status_up(s);
4778 }
4779 else {
4780 if (px->lbprm.set_server_status_down)
4781 px->lbprm.set_server_status_down(s);
4782 }
4783 }
4784 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
4785 /* remaining in drain mode after removing one of its flags */
4786
4787 tmptrash = alloc_trash_chunk();
4788 if (tmptrash) {
4789 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
4790 chunk_printf(tmptrash,
4791 "%sServer %s/%s is leaving forced drain but remains in drain mode",
4792 s->flags & SRV_F_BACKUP ? "Backup " : "",
4793 s->proxy->id, s->id);
4794
4795 if (s->track) /* normally it's mandatory here */
4796 chunk_appendf(tmptrash, " via %s/%s",
4797 s->track->proxy->id, s->track->id);
4798 }
4799 else {
4800 chunk_printf(tmptrash,
4801 "%sServer %s/%s remains in forced drain mode",
4802 s->flags & SRV_F_BACKUP ? "Backup " : "",
4803 s->proxy->id, s->id);
4804 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004805 ha_warning("%s.\n", tmptrash->area);
4806 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4807 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004808 free_trash_chunk(tmptrash);
4809 tmptrash = NULL;
4810 }
4811
4812 /* commit new admin status */
4813
4814 s->cur_admin = s->next_admin;
4815 }
4816 }
4817
4818 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02004819 *s->adm_st_chg_cause = 0;
4820}
Emeric Brun64cc49c2017-10-03 14:46:45 +02004821
Willy Tarreau144f84a2021-03-02 16:09:26 +01004822struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004823{
4824 struct connection *conn;
4825
Willy Tarreau4d82bf52020-06-28 00:19:17 +02004826 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004827 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02004828 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004829 }
4830
4831 return task;
4832}
4833
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004834/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02004835 * moving them all.
4836 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004837 *
4838 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02004839 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004840static 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 +02004841{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004842 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004843 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02004844 int i = 0;
4845
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004846 node = eb_first(idle_tree);
4847 while (node) {
4848 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02004849 if (toremove_nb != -1 && i >= toremove_nb)
4850 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004851
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004852 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004853 eb_delete(node);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004854 MT_LIST_ADDQ(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02004855 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01004856
4857 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02004858 }
4859 return i;
4860}
William Dauchy6318d332020-05-02 21:52:36 +02004861/* cleanup connections for a given server
4862 * might be useful when going on forced maintenance or live changing ip/port
4863 */
William Dauchy707ad322020-05-04 13:52:40 +02004864static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02004865{
William Dauchy6318d332020-05-02 21:52:36 +02004866 int did_remove;
4867 int i;
William Dauchy6318d332020-05-02 21:52:36 +02004868
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01004869 /* nothing to do if pool-max-conn is null */
4870 if (!srv->max_idle_conns)
4871 return;
4872
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02004873 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02004874 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02004875 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004876 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004877 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 +02004878 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004879 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 +02004880 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004881 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02004882 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02004883 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02004884
4885 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
4886 break;
William Dauchy6318d332020-05-02 21:52:36 +02004887 }
William Dauchy6318d332020-05-02 21:52:36 +02004888}
4889
Willy Tarreau144f84a2021-03-02 16:09:26 +01004890struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01004891{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004892 struct server *srv;
4893 struct eb32_node *eb;
4894 int i;
4895 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01004896
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004897 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004898 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
4899 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004900 int exceed_conns;
4901 int to_kill;
4902 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01004903
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004904 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
4905 if (!eb) {
4906 /* we might have reached the end of the tree, typically because
4907 * <now_ms> is in the first half and we're first scanning the last
4908 * half. Let's loop back to the beginning of the tree now.
4909 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01004910
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004911 eb = eb32_first(&idle_conn_srv);
4912 if (likely(!eb))
4913 break;
4914 }
4915 if (tick_is_lt(now_ms, eb->key)) {
4916 /* timer not expired yet, revisit it later */
4917 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01004918 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004919 }
4920 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004921
4922 /* Calculate how many idle connections we want to kill :
4923 * we want to remove half the difference between the total
4924 * of established connections (used or idle) and the max
4925 * number of used connections.
4926 */
4927 curr_idle = srv->curr_idle_conns;
4928 if (curr_idle == 0)
4929 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02004930 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004931 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02004932
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004933 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02004934 if (srv->est_need_conns < srv->max_used_conns)
4935 srv->est_need_conns = srv->max_used_conns;
4936
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004937 srv->max_used_conns = srv->curr_used_conns;
4938
Willy Tarreau18ed7892020-07-02 19:05:30 +02004939 if (exceed_conns <= 0)
4940 goto remove;
4941
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02004942 /* check all threads starting with ours */
4943 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004944 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004945 int j;
4946 int did_remove = 0;
4947
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004948 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
4949 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02004950
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004951 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004952 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 +02004953 if (j > 0)
4954 did_remove = 1;
4955 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004956 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 +01004957 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004958 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02004959
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004960 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02004961 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02004962
4963 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
4964 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004965 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02004966remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004967 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004968
4969 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004970 /* There are still more idle connections, add the
4971 * server back in the tree.
4972 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004973 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004974 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004975 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004976 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01004977 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01004978 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
4979
Willy Tarreau21b9ff52020-11-05 09:12:20 +01004980 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01004981 return task;
4982}
Olivier Houchard88698d92019-04-16 19:07:22 +02004983
Willy Tarreau76cc6992020-07-01 18:49:24 +02004984/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
4985static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004986 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02004987 char **err)
4988{
4989 if (too_many_args(1, args, err, NULL))
4990 return -1;
4991
4992 if (strcmp(args[1], "on") == 0)
4993 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
4994 else if (strcmp(args[1], "off") == 0)
4995 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
4996 else {
4997 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
4998 return -1;
4999 }
5000 return 0;
5001}
5002
Olivier Houchard88698d92019-04-16 19:07:22 +02005003/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5004static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005005 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005006 char **err)
5007{
5008 int arg = -1;
5009
5010 if (too_many_args(1, args, err, NULL))
5011 return -1;
5012
5013 if (*(args[1]) != 0)
5014 arg = atoi(args[1]);
5015
5016 if (arg < 0 || arg > 100) {
5017 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5018 return -1;
5019 }
5020
5021 if (args[0][10] == 'h')
5022 global.tune.pool_high_ratio = arg;
5023 else
5024 global.tune.pool_low_ratio = arg;
5025 return 0;
5026}
5027
5028/* config keyword parsers */
5029static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005030 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005031 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5032 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5033 { 0, NULL, NULL }
5034}};
5035
5036INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5037
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005038/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005039 * Local variables:
5040 * c-indent-level: 8
5041 * c-basic-offset: 8
5042 * End:
5043 */