Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Server management functions. |
| 3 | * |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 4 | * Copyright 2000-2012 Willy Tarreau <w@1wt.eu> |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 5 | * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6 | * |
| 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 Tarreau | 0a4b0ab | 2020-06-11 11:22:44 +0200 | [diff] [blame] | 14 | #include <sys/types.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 15 | #include <netinet/tcp.h> |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 16 | #include <ctype.h> |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 17 | #include <errno.h> |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 18 | |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 19 | #include <import/xxhash.h> |
| 20 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 21 | #include <haproxy/api.h> |
Willy Tarreau | 3f0f82e | 2020-06-04 19:42:41 +0200 | [diff] [blame] | 22 | #include <haproxy/applet-t.h> |
Willy Tarreau | 4980160 | 2020-06-04 22:50:02 +0200 | [diff] [blame] | 23 | #include <haproxy/backend.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 24 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 25 | #include <haproxy/check.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 26 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 27 | #include <haproxy/connection.h> |
Willy Tarreau | 3afc4c4 | 2020-06-03 18:23:19 +0200 | [diff] [blame] | 28 | #include <haproxy/dict-t.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 29 | #include <haproxy/errors.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 30 | #include <haproxy/global.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 31 | #include <haproxy/log.h> |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 32 | #include <haproxy/mailers.h> |
Willy Tarreau | 7a00efb | 2020-06-02 17:02:59 +0200 | [diff] [blame] | 33 | #include <haproxy/namespace.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 34 | #include <haproxy/port_range.h> |
| 35 | #include <haproxy/protocol.h> |
Willy Tarreau | b00a8e3 | 2021-05-08 20:18:59 +0200 | [diff] [blame] | 36 | #include <haproxy/proxy.h> |
Willy Tarreau | a55c454 | 2020-06-04 22:59:39 +0200 | [diff] [blame] | 37 | #include <haproxy/queue.h> |
Emeric Brun | c943799 | 2021-02-12 19:42:55 +0100 | [diff] [blame] | 38 | #include <haproxy/resolvers.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 39 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 40 | #include <haproxy/server.h> |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 41 | #include <haproxy/ssl_sock.h> |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 42 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 43 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 44 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 45 | #include <haproxy/task.h> |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 46 | #include <haproxy/tcpcheck.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 47 | #include <haproxy/time.h> |
Willy Tarreau | ba6300e | 2021-05-08 14:09:40 +0200 | [diff] [blame] | 48 | #include <haproxy/tools.h> |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 49 | |
Baptiste Assmann | da29fe2 | 2019-06-13 13:24:29 +0200 | [diff] [blame] | 50 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 51 | static void srv_update_status(struct server *s); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 52 | static int srv_apply_lastaddr(struct server *srv, int *err_code); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 53 | static void srv_cleanup_connections(struct server *srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 55 | /* extra keywords used as value for other arguments. They are used as |
| 56 | * suggestions for mistyped words. |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 57 | */ |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 58 | static const char *extra_kw_list[] = { |
| 59 | "ipv4", "ipv6", "legacy", "octet-count", |
Amaury Denoyelle | 3b89c11 | 2021-03-12 16:04:00 +0100 | [diff] [blame] | 60 | "fail-check", "sudden-death", "mark-down", |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 61 | NULL /* must be last */ |
| 62 | }; |
| 63 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 64 | /* List head of all known server keywords */ |
| 65 | static struct srv_kw_list srv_keywords = { |
| 66 | .list = LIST_HEAD_INIT(srv_keywords.list) |
| 67 | }; |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 68 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 69 | __decl_thread(HA_SPINLOCK_T idle_conn_srv_lock); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 70 | struct eb_root idle_conn_srv = EB_ROOT; |
Willy Tarreau | 14015b8 | 2021-04-10 17:33:15 +0200 | [diff] [blame] | 71 | struct task *idle_conn_task __read_mostly = NULL; |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 72 | struct list servers_list = LIST_HEAD_INIT(servers_list); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 73 | |
Frédéric Lécaille | 7da7129 | 2019-05-20 09:47:07 +0200 | [diff] [blame] | 74 | /* The server names dictionary */ |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 75 | struct dict server_key_dict = { |
| 76 | .name = "server keys", |
Frédéric Lécaille | 7da7129 | 2019-05-20 09:47:07 +0200 | [diff] [blame] | 77 | .values = EB_ROOT_UNIQUE, |
| 78 | }; |
| 79 | |
Simon Horman | a360844 | 2013-11-01 16:46:15 +0900 | [diff] [blame] | 80 | int srv_downtime(const struct server *s) |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 81 | { |
Amaury Denoyelle | e6ba791 | 2020-10-29 15:59:05 +0100 | [diff] [blame] | 82 | if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 83 | return s->down_time; |
| 84 | |
| 85 | return now.tv_sec - s->last_change + s->down_time; |
| 86 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 87 | |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 88 | int srv_lastsession(const struct server *s) |
| 89 | { |
| 90 | if (s->counters.last_sess) |
| 91 | return now.tv_sec - s->counters.last_sess; |
| 92 | |
| 93 | return -1; |
| 94 | } |
| 95 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 96 | int srv_getinter(const struct check *check) |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 97 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 98 | const struct server *s = check->server; |
| 99 | |
Willy Tarreau | ff5ae35 | 2013-12-11 20:36:34 +0100 | [diff] [blame] | 100 | if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1)) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 101 | return check->inter; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 102 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 103 | if ((s->next_state == SRV_ST_STOPPED) && check->health == 0) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 104 | return (check->downinter)?(check->downinter):(check->inter); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 105 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 106 | return (check->fastinter)?(check->fastinter):(check->inter); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 109 | /* |
| 110 | * Check that we did not get a hash collision. |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 111 | * Unlikely, but it can happen. The server's proxy must be at least |
| 112 | * read-locked. |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 113 | */ |
| 114 | static inline void srv_check_for_dup_dyncookie(struct server *s) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 115 | { |
| 116 | struct proxy *p = s->proxy; |
| 117 | struct server *tmpserv; |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 118 | |
| 119 | for (tmpserv = p->srv; tmpserv != NULL; |
| 120 | tmpserv = tmpserv->next) { |
| 121 | if (tmpserv == s) |
| 122 | continue; |
| 123 | if (tmpserv->next_admin & SRV_ADMF_FMAINT) |
| 124 | continue; |
| 125 | if (tmpserv->cookie && |
| 126 | strcmp(tmpserv->cookie, s->cookie) == 0) { |
| 127 | ha_warning("We generated two equal cookies for two different servers.\n" |
| 128 | "Please change the secret key for '%s'.\n", |
| 129 | s->proxy->id); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | } |
| 134 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 135 | /* |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 136 | * Must be called with the server lock held, and will read-lock the proxy. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 137 | */ |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 138 | void srv_set_dyncookie(struct server *s) |
| 139 | { |
| 140 | struct proxy *p = s->proxy; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 141 | char *tmpbuf; |
| 142 | unsigned long long hash_value; |
Olivier Houchard | 2cb49eb | 2017-03-15 15:11:06 +0100 | [diff] [blame] | 143 | size_t key_len; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 144 | size_t buffer_len; |
| 145 | int addr_len; |
| 146 | int port; |
| 147 | |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 148 | HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock); |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 149 | |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 150 | if ((s->flags & SRV_F_COOKIESET) || |
| 151 | !(s->proxy->ck_opts & PR_CK_DYNAMIC) || |
| 152 | s->proxy->dyncookie_key == NULL) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 153 | goto out; |
Olivier Houchard | 2cb49eb | 2017-03-15 15:11:06 +0100 | [diff] [blame] | 154 | key_len = strlen(p->dyncookie_key); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 155 | |
| 156 | if (s->addr.ss_family != AF_INET && |
| 157 | s->addr.ss_family != AF_INET6) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 158 | goto out; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 159 | /* |
| 160 | * Buffer to calculate the cookie value. |
| 161 | * The buffer contains the secret key + the server IP address |
| 162 | * + the TCP port. |
| 163 | */ |
| 164 | addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16; |
| 165 | /* |
| 166 | * The TCP port should use only 2 bytes, but is stored in |
| 167 | * an unsigned int in struct server, so let's use 4, to be |
| 168 | * on the safe side. |
| 169 | */ |
| 170 | buffer_len = key_len + addr_len + 4; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 171 | tmpbuf = trash.area; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 172 | memcpy(tmpbuf, p->dyncookie_key, key_len); |
| 173 | memcpy(&(tmpbuf[key_len]), |
| 174 | s->addr.ss_family == AF_INET ? |
| 175 | (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr : |
| 176 | (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr), |
| 177 | addr_len); |
| 178 | /* |
| 179 | * Make sure it's the same across all the load balancers, |
| 180 | * no matter their endianness. |
| 181 | */ |
| 182 | port = htonl(s->svc_port); |
| 183 | memcpy(&tmpbuf[key_len + addr_len], &port, 4); |
| 184 | hash_value = XXH64(tmpbuf, buffer_len, 0); |
| 185 | memprintf(&s->cookie, "%016llx", hash_value); |
| 186 | if (!s->cookie) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 187 | goto out; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 188 | s->cklen = 16; |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 189 | |
| 190 | /* Don't bother checking if the dyncookie is duplicated if |
| 191 | * the server is marked as "disabled", maybe it doesn't have |
| 192 | * its real IP yet, but just a place holder. |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 193 | */ |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 194 | if (!(s->next_admin & SRV_ADMF_FMAINT)) |
| 195 | srv_check_for_dup_dyncookie(s); |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 196 | out: |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 197 | HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 198 | } |
| 199 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 200 | /* |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 201 | * Must be called with the server lock held, and will write-lock the proxy. |
| 202 | */ |
| 203 | static void srv_set_addr_desc(struct server *s) |
| 204 | { |
| 205 | struct proxy *p = s->proxy; |
| 206 | char *key; |
| 207 | |
| 208 | key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS); |
| 209 | |
| 210 | if (s->addr_node.key) { |
Thayne McCombs | 24da7e1 | 2021-01-05 23:10:09 -0700 | [diff] [blame] | 211 | if (key && strcmp(key, s->addr_node.key) == 0) { |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 212 | free(key); |
| 213 | return; |
| 214 | } |
| 215 | |
| 216 | HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock); |
| 217 | ebpt_delete(&s->addr_node); |
| 218 | HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock); |
| 219 | |
| 220 | free(s->addr_node.key); |
| 221 | } |
| 222 | |
| 223 | s->addr_node.key = key; |
| 224 | |
Thayne McCombs | 24da7e1 | 2021-01-05 23:10:09 -0700 | [diff] [blame] | 225 | if (s->addr_node.key) { |
| 226 | HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock); |
| 227 | ebis_insert(&p->used_server_addr, &s->addr_node); |
| 228 | HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock); |
| 229 | } |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | /* |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 233 | * Registers the server keyword list <kwl> as a list of valid keywords for next |
| 234 | * parsing sessions. |
| 235 | */ |
| 236 | void srv_register_keywords(struct srv_kw_list *kwl) |
| 237 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 238 | LIST_APPEND(&srv_keywords.list, &kwl->list); |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* Return a pointer to the server keyword <kw>, or NULL if not found. If the |
| 242 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 243 | * find one with a valid ->parse() function. This way it is possible to declare |
| 244 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 245 | * if some options are met. Note that if the requested keyword contains an |
| 246 | * opening parenthesis, everything from this point is ignored. |
| 247 | */ |
| 248 | struct srv_kw *srv_find_kw(const char *kw) |
| 249 | { |
| 250 | int index; |
| 251 | const char *kwend; |
| 252 | struct srv_kw_list *kwl; |
| 253 | struct srv_kw *ret = NULL; |
| 254 | |
| 255 | kwend = strchr(kw, '('); |
| 256 | if (!kwend) |
| 257 | kwend = kw + strlen(kw); |
| 258 | |
| 259 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 260 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 261 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 262 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 263 | if (kwl->kw[index].parse) |
| 264 | return &kwl->kw[index]; /* found it !*/ |
| 265 | else |
| 266 | ret = &kwl->kw[index]; /* may be OK */ |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | return ret; |
| 271 | } |
| 272 | |
| 273 | /* Dumps all registered "server" keywords to the <out> string pointer. The |
| 274 | * unsupported keywords are only dumped if their supported form was not |
| 275 | * found. |
| 276 | */ |
| 277 | void srv_dump_kws(char **out) |
| 278 | { |
| 279 | struct srv_kw_list *kwl; |
| 280 | int index; |
| 281 | |
Christopher Faulet | 784063e | 2020-05-18 12:14:18 +0200 | [diff] [blame] | 282 | if (!out) |
| 283 | return; |
| 284 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 285 | *out = NULL; |
| 286 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 287 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 288 | if (kwl->kw[index].parse || |
| 289 | srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) { |
| 290 | memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "", |
| 291 | kwl->scope, |
| 292 | kwl->kw[index].kw, |
| 293 | kwl->kw[index].skip ? " <arg>" : "", |
| 294 | kwl->kw[index].default_ok ? " [dflt_ok]" : "", |
| 295 | kwl->kw[index].parse ? "" : " (not supported)"); |
| 296 | } |
| 297 | } |
| 298 | } |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | /* Try to find in srv_keyword the word that looks closest to <word> by counting |
| 302 | * transitions between letters, digits and other characters. Will return the |
| 303 | * best matching word if found, otherwise NULL. An optional array of extra |
| 304 | * words to compare may be passed in <extra>, but it must then be terminated |
| 305 | * by a NULL entry. If unused it may be NULL. |
| 306 | */ |
| 307 | static const char *srv_find_best_kw(const char *word) |
| 308 | { |
| 309 | uint8_t word_sig[1024]; |
| 310 | uint8_t list_sig[1024]; |
| 311 | const struct srv_kw_list *kwl; |
| 312 | const char *best_ptr = NULL; |
| 313 | int dist, best_dist = INT_MAX; |
| 314 | const char **extra; |
| 315 | int index; |
| 316 | |
| 317 | make_word_fingerprint(word_sig, word); |
| 318 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 319 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 320 | make_word_fingerprint(list_sig, kwl->kw[index].kw); |
| 321 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 322 | if (dist < best_dist) { |
| 323 | best_dist = dist; |
| 324 | best_ptr = kwl->kw[index].kw; |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 329 | for (extra = extra_kw_list; *extra; extra++) { |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 330 | make_word_fingerprint(list_sig, *extra); |
| 331 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 332 | if (dist < best_dist) { |
| 333 | best_dist = dist; |
| 334 | best_ptr = *extra; |
| 335 | } |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr))) |
| 339 | best_ptr = NULL; |
| 340 | |
| 341 | return best_ptr; |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 342 | } |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 343 | |
Frédéric Lécaille | f5bf903 | 2017-03-10 11:51:05 +0100 | [diff] [blame] | 344 | /* Parse the "backup" server keyword */ |
| 345 | static int srv_parse_backup(char **args, int *cur_arg, |
| 346 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 347 | { |
| 348 | newsrv->flags |= SRV_F_BACKUP; |
| 349 | return 0; |
| 350 | } |
| 351 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 352 | |
Frédéric Lécaille | 9d1b95b | 2017-03-15 09:13:33 +0100 | [diff] [blame] | 353 | /* Parse the "cookie" server keyword */ |
| 354 | static int srv_parse_cookie(char **args, int *cur_arg, |
| 355 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 356 | { |
| 357 | char *arg; |
| 358 | |
| 359 | arg = args[*cur_arg + 1]; |
| 360 | if (!*arg) { |
| 361 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 362 | return ERR_ALERT | ERR_FATAL; |
| 363 | } |
| 364 | |
| 365 | free(newsrv->cookie); |
| 366 | newsrv->cookie = strdup(arg); |
| 367 | newsrv->cklen = strlen(arg); |
| 368 | newsrv->flags |= SRV_F_COOKIESET; |
| 369 | return 0; |
| 370 | } |
| 371 | |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 372 | /* Parse the "disabled" server keyword */ |
| 373 | static int srv_parse_disabled(char **args, int *cur_arg, |
| 374 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 375 | { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 376 | newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT; |
| 377 | newsrv->next_state = SRV_ST_STOPPED; |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 378 | newsrv->check.state |= CHK_ST_PAUSED; |
| 379 | newsrv->check.health = 0; |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | /* Parse the "enabled" server keyword */ |
| 384 | static int srv_parse_enabled(char **args, int *cur_arg, |
| 385 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 386 | { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 387 | newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT; |
| 388 | newsrv->next_state = SRV_ST_RUNNING; |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 389 | newsrv->check.state &= ~CHK_ST_PAUSED; |
| 390 | newsrv->check.health = newsrv->check.rise; |
| 391 | return 0; |
| 392 | } |
| 393 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 394 | /* Parse the "error-limit" server keyword */ |
| 395 | static int srv_parse_error_limit(char **args, int *cur_arg, |
| 396 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 397 | { |
| 398 | if (!*args[*cur_arg + 1]) { |
| 399 | memprintf(err, "'%s' expects an integer argument.", |
| 400 | args[*cur_arg]); |
| 401 | return ERR_ALERT | ERR_FATAL; |
| 402 | } |
| 403 | |
| 404 | newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]); |
| 405 | |
| 406 | if (newsrv->consecutive_errors_limit <= 0) { |
| 407 | memprintf(err, "%s has to be > 0.", |
| 408 | args[*cur_arg]); |
| 409 | return ERR_ALERT | ERR_FATAL; |
| 410 | } |
| 411 | |
| 412 | return 0; |
| 413 | } |
| 414 | |
| 415 | /* Parse the "init-addr" server keyword */ |
| 416 | static int srv_parse_init_addr(char **args, int *cur_arg, |
| 417 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 418 | { |
| 419 | char *p, *end; |
| 420 | int done; |
| 421 | struct sockaddr_storage sa; |
| 422 | |
| 423 | newsrv->init_addr_methods = 0; |
| 424 | memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr)); |
| 425 | |
| 426 | for (p = args[*cur_arg + 1]; *p; p = end) { |
| 427 | /* cut on next comma */ |
| 428 | for (end = p; *end && *end != ','; end++); |
| 429 | if (*end) |
| 430 | *(end++) = 0; |
| 431 | |
| 432 | memset(&sa, 0, sizeof(sa)); |
| 433 | if (strcmp(p, "libc") == 0) { |
| 434 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC); |
| 435 | } |
| 436 | else if (strcmp(p, "last") == 0) { |
| 437 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST); |
| 438 | } |
| 439 | else if (strcmp(p, "none") == 0) { |
| 440 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE); |
| 441 | } |
| 442 | else if (str2ip2(p, &sa, 0)) { |
| 443 | if (is_addr(&newsrv->init_addr)) { |
| 444 | memprintf(err, "'%s' : initial address already specified, cannot add '%s'.", |
| 445 | args[*cur_arg], p); |
| 446 | return ERR_ALERT | ERR_FATAL; |
| 447 | } |
| 448 | newsrv->init_addr = sa; |
| 449 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP); |
| 450 | } |
| 451 | else { |
| 452 | memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.", |
| 453 | args[*cur_arg], p); |
| 454 | return ERR_ALERT | ERR_FATAL; |
| 455 | } |
| 456 | if (!done) { |
| 457 | memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'", |
| 458 | args[*cur_arg], p); |
| 459 | return ERR_ALERT | ERR_FATAL; |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | /* Parse the "log-proto" server keyword */ |
| 467 | static int srv_parse_log_proto(char **args, int *cur_arg, |
| 468 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 469 | { |
| 470 | if (strcmp(args[*cur_arg + 1], "legacy") == 0) |
| 471 | newsrv->log_proto = SRV_LOG_PROTO_LEGACY; |
| 472 | else if (strcmp(args[*cur_arg + 1], "octet-count") == 0) |
| 473 | newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING; |
| 474 | else { |
| 475 | memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'", |
| 476 | args[*cur_arg], args[*cur_arg + 1]); |
| 477 | return ERR_ALERT | ERR_FATAL; |
| 478 | } |
| 479 | |
| 480 | return 0; |
| 481 | } |
| 482 | |
| 483 | /* Parse the "maxconn" server keyword */ |
| 484 | static int srv_parse_maxconn(char **args, int *cur_arg, |
| 485 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 486 | { |
| 487 | newsrv->maxconn = atol(args[*cur_arg + 1]); |
| 488 | return 0; |
| 489 | } |
| 490 | |
| 491 | /* Parse the "maxqueue" server keyword */ |
| 492 | static int srv_parse_maxqueue(char **args, int *cur_arg, |
| 493 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 494 | { |
| 495 | newsrv->maxqueue = atol(args[*cur_arg + 1]); |
| 496 | return 0; |
| 497 | } |
| 498 | |
| 499 | /* Parse the "minconn" server keyword */ |
| 500 | static int srv_parse_minconn(char **args, int *cur_arg, |
| 501 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 502 | { |
| 503 | newsrv->minconn = atol(args[*cur_arg + 1]); |
| 504 | return 0; |
| 505 | } |
| 506 | |
Willy Tarreau | 9c538e0 | 2019-01-23 10:21:49 +0100 | [diff] [blame] | 507 | static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 508 | { |
| 509 | char *arg; |
| 510 | |
| 511 | arg = args[*cur_arg + 1]; |
| 512 | if (!*arg) { |
| 513 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 514 | return ERR_ALERT | ERR_FATAL; |
| 515 | } |
| 516 | newsrv->max_reuse = atoi(arg); |
| 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 521 | static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 522 | { |
| 523 | const char *res; |
| 524 | char *arg; |
| 525 | unsigned int time; |
| 526 | |
| 527 | arg = args[*cur_arg + 1]; |
| 528 | if (!*arg) { |
| 529 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 530 | return ERR_ALERT | ERR_FATAL; |
| 531 | } |
| 532 | res = parse_time_err(arg, &time, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 533 | if (res == PARSE_TIME_OVER) { |
| 534 | memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 535 | args[*cur_arg+1], args[*cur_arg]); |
| 536 | return ERR_ALERT | ERR_FATAL; |
| 537 | } |
| 538 | else if (res == PARSE_TIME_UNDER) { |
| 539 | memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)", |
| 540 | args[*cur_arg+1], args[*cur_arg]); |
| 541 | return ERR_ALERT | ERR_FATAL; |
| 542 | } |
| 543 | else if (res) { |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 544 | memprintf(err, "unexpected character '%c' in argument to <%s>.\n", |
| 545 | *res, args[*cur_arg]); |
| 546 | return ERR_ALERT | ERR_FATAL; |
| 547 | } |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 548 | newsrv->pool_purge_delay = time; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 549 | |
| 550 | return 0; |
| 551 | } |
| 552 | |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 553 | static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 554 | { |
| 555 | char *arg; |
| 556 | |
| 557 | arg = args[*cur_arg + 1]; |
| 558 | if (!*arg) { |
| 559 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 560 | return ERR_ALERT | ERR_FATAL; |
| 561 | } |
| 562 | |
| 563 | newsrv->low_idle_conns = atoi(arg); |
| 564 | return 0; |
| 565 | } |
| 566 | |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 567 | static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 568 | { |
| 569 | char *arg; |
| 570 | |
| 571 | arg = args[*cur_arg + 1]; |
| 572 | if (!*arg) { |
| 573 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 574 | return ERR_ALERT | ERR_FATAL; |
| 575 | } |
Willy Tarreau | cb923d5 | 2019-01-23 10:39:27 +0100 | [diff] [blame] | 576 | |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 577 | newsrv->max_idle_conns = atoi(arg); |
Willy Tarreau | cb923d5 | 2019-01-23 10:39:27 +0100 | [diff] [blame] | 578 | if ((int)newsrv->max_idle_conns < -1) { |
| 579 | memprintf(err, "'%s' must be >= -1", args[*cur_arg]); |
| 580 | return ERR_ALERT | ERR_FATAL; |
| 581 | } |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 582 | |
| 583 | return 0; |
| 584 | } |
| 585 | |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 586 | /* parse the "id" server keyword */ |
| 587 | static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 588 | { |
| 589 | struct eb32_node *node; |
| 590 | |
| 591 | if (!*args[*cur_arg + 1]) { |
| 592 | memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]); |
| 593 | return ERR_ALERT | ERR_FATAL; |
| 594 | } |
| 595 | |
| 596 | newsrv->puid = atol(args[*cur_arg + 1]); |
| 597 | newsrv->conf.id.key = newsrv->puid; |
| 598 | |
| 599 | if (newsrv->puid <= 0) { |
| 600 | memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]); |
| 601 | return ERR_ALERT | ERR_FATAL; |
| 602 | } |
| 603 | |
| 604 | node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid); |
| 605 | if (node) { |
| 606 | struct server *target = container_of(node, struct server, conf.id); |
| 607 | memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')", |
| 608 | args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line, |
| 609 | target->id); |
| 610 | return ERR_ALERT | ERR_FATAL; |
| 611 | } |
| 612 | |
| 613 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
Baptiste Assmann | 7cc419a | 2015-07-07 22:02:20 +0200 | [diff] [blame] | 614 | newsrv->flags |= SRV_F_FORCED_ID; |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 615 | return 0; |
| 616 | } |
| 617 | |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 618 | /* Parse the "namespace" server keyword */ |
| 619 | static int srv_parse_namespace(char **args, int *cur_arg, |
| 620 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 621 | { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 622 | #ifdef USE_NS |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 623 | char *arg; |
| 624 | |
| 625 | arg = args[*cur_arg + 1]; |
| 626 | if (!*arg) { |
| 627 | memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]); |
| 628 | return ERR_ALERT | ERR_FATAL; |
| 629 | } |
| 630 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 631 | if (strcmp(arg, "*") == 0) { |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 632 | /* Use the namespace associated with the connection (if present). */ |
| 633 | newsrv->flags |= SRV_F_USE_NS_FROM_PP; |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | /* |
| 638 | * As this parser may be called several times for the same 'default-server' |
| 639 | * object, or for a new 'server' instance deriving from a 'default-server' |
| 640 | * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it. |
| 641 | */ |
| 642 | newsrv->flags &= ~SRV_F_USE_NS_FROM_PP; |
| 643 | |
| 644 | newsrv->netns = netns_store_lookup(arg, strlen(arg)); |
| 645 | if (!newsrv->netns) |
| 646 | newsrv->netns = netns_store_insert(arg); |
| 647 | |
| 648 | if (!newsrv->netns) { |
| 649 | memprintf(err, "Cannot open namespace '%s'", arg); |
| 650 | return ERR_ALERT | ERR_FATAL; |
| 651 | } |
| 652 | |
| 653 | return 0; |
| 654 | #else |
| 655 | memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]); |
| 656 | return ERR_ALERT | ERR_FATAL; |
| 657 | #endif |
| 658 | } |
| 659 | |
Frédéric Lécaille | f5bf903 | 2017-03-10 11:51:05 +0100 | [diff] [blame] | 660 | /* Parse the "no-backup" server keyword */ |
| 661 | static int srv_parse_no_backup(char **args, int *cur_arg, |
| 662 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 663 | { |
| 664 | newsrv->flags &= ~SRV_F_BACKUP; |
| 665 | return 0; |
| 666 | } |
| 667 | |
Frédéric Lécaille | 25df890 | 2017-03-10 14:04:31 +0100 | [diff] [blame] | 668 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 669 | /* Disable server PROXY protocol flags. */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 670 | static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags) |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 671 | { |
| 672 | srv->pp_opts &= ~flags; |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | /* Parse the "no-send-proxy" server keyword */ |
| 677 | static int srv_parse_no_send_proxy(char **args, int *cur_arg, |
| 678 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 679 | { |
| 680 | return srv_disable_pp_flags(newsrv, SRV_PP_V1); |
| 681 | } |
| 682 | |
| 683 | /* Parse the "no-send-proxy-v2" server keyword */ |
| 684 | static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg, |
| 685 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 686 | { |
| 687 | return srv_disable_pp_flags(newsrv, SRV_PP_V2); |
| 688 | } |
| 689 | |
Frédéric Lécaille | 1b9423d | 2019-07-04 14:19:06 +0200 | [diff] [blame] | 690 | /* Parse the "no-tfo" server keyword */ |
| 691 | static int srv_parse_no_tfo(char **args, int *cur_arg, |
| 692 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 693 | { |
| 694 | newsrv->flags &= ~SRV_F_FASTOPEN; |
| 695 | return 0; |
| 696 | } |
| 697 | |
Frédéric Lécaille | f9bc1d6 | 2017-03-10 15:50:49 +0100 | [diff] [blame] | 698 | /* Parse the "non-stick" server keyword */ |
| 699 | static int srv_parse_non_stick(char **args, int *cur_arg, |
| 700 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 701 | { |
| 702 | newsrv->flags |= SRV_F_NON_STICK; |
| 703 | return 0; |
| 704 | } |
| 705 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 706 | /* Enable server PROXY protocol flags. */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 707 | static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags) |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 708 | { |
| 709 | srv->pp_opts |= flags; |
| 710 | return 0; |
| 711 | } |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 712 | /* parse the "proto" server keyword */ |
| 713 | static int srv_parse_proto(char **args, int *cur_arg, |
| 714 | struct proxy *px, struct server *newsrv, char **err) |
| 715 | { |
| 716 | struct ist proto; |
| 717 | |
| 718 | if (!*args[*cur_arg + 1]) { |
| 719 | memprintf(err, "'%s' : missing value", args[*cur_arg]); |
| 720 | return ERR_ALERT | ERR_FATAL; |
| 721 | } |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 722 | proto = ist(args[*cur_arg + 1]); |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 723 | newsrv->mux_proto = get_mux_proto(proto); |
| 724 | if (!newsrv->mux_proto) { |
| 725 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]); |
| 726 | return ERR_ALERT | ERR_FATAL; |
| 727 | } |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 728 | return 0; |
| 729 | } |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 730 | |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 731 | /* parse the "proxy-v2-options" */ |
| 732 | static int srv_parse_proxy_v2_options(char **args, int *cur_arg, |
| 733 | struct proxy *px, struct server *newsrv, char **err) |
| 734 | { |
| 735 | char *p, *n; |
| 736 | for (p = args[*cur_arg+1]; p; p = n) { |
| 737 | n = strchr(p, ','); |
| 738 | if (n) |
| 739 | *n++ = '\0'; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 740 | if (strcmp(p, "ssl") == 0) { |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 741 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 742 | } else if (strcmp(p, "cert-cn") == 0) { |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 743 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 744 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 745 | } else if (strcmp(p, "cert-key") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 746 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 747 | newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 748 | } else if (strcmp(p, "cert-sig") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 749 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 750 | newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 751 | } else if (strcmp(p, "ssl-cipher") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 752 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 753 | newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 754 | } else if (strcmp(p, "authority") == 0) { |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 755 | newsrv->pp_opts |= SRV_PP_V2_AUTHORITY; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 756 | } else if (strcmp(p, "crc32c") == 0) { |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 757 | newsrv->pp_opts |= SRV_PP_V2_CRC32C; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 758 | } else if (strcmp(p, "unique-id") == 0) { |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 759 | newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID; |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 760 | } else |
| 761 | goto fail; |
| 762 | } |
| 763 | return 0; |
| 764 | fail: |
| 765 | if (err) |
| 766 | memprintf(err, "'%s' : proxy v2 option not implemented", p); |
| 767 | return ERR_ALERT | ERR_FATAL; |
| 768 | } |
| 769 | |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 770 | /* Parse the "observe" server keyword */ |
| 771 | static int srv_parse_observe(char **args, int *cur_arg, |
| 772 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 773 | { |
| 774 | char *arg; |
| 775 | |
| 776 | arg = args[*cur_arg + 1]; |
| 777 | if (!*arg) { |
| 778 | memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]); |
| 779 | return ERR_ALERT | ERR_FATAL; |
| 780 | } |
| 781 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 782 | if (strcmp(arg, "none") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 783 | newsrv->observe = HANA_OBS_NONE; |
| 784 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 785 | else if (strcmp(arg, "layer4") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 786 | newsrv->observe = HANA_OBS_LAYER4; |
| 787 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 788 | else if (strcmp(arg, "layer7") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 789 | if (curproxy->mode != PR_MODE_HTTP) { |
| 790 | memprintf(err, "'%s' can only be used in http proxies.\n", arg); |
| 791 | return ERR_ALERT; |
| 792 | } |
| 793 | newsrv->observe = HANA_OBS_LAYER7; |
| 794 | } |
| 795 | else { |
| 796 | memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' " |
| 797 | "but got '%s'\n", args[*cur_arg], arg); |
| 798 | return ERR_ALERT | ERR_FATAL; |
| 799 | } |
| 800 | |
| 801 | return 0; |
| 802 | } |
| 803 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 804 | /* Parse the "on-error" server keyword */ |
| 805 | static int srv_parse_on_error(char **args, int *cur_arg, |
| 806 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 807 | { |
| 808 | if (strcmp(args[*cur_arg + 1], "fastinter") == 0) |
| 809 | newsrv->onerror = HANA_ONERR_FASTINTER; |
| 810 | else if (strcmp(args[*cur_arg + 1], "fail-check") == 0) |
| 811 | newsrv->onerror = HANA_ONERR_FAILCHK; |
| 812 | else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0) |
| 813 | newsrv->onerror = HANA_ONERR_SUDDTH; |
| 814 | else if (strcmp(args[*cur_arg + 1], "mark-down") == 0) |
| 815 | newsrv->onerror = HANA_ONERR_MARKDWN; |
| 816 | else { |
| 817 | memprintf(err, "'%s' expects one of 'fastinter', " |
| 818 | "'fail-check', 'sudden-death' or 'mark-down' but got '%s'", |
| 819 | args[*cur_arg], args[*cur_arg + 1]); |
| 820 | return ERR_ALERT | ERR_FATAL; |
| 821 | } |
| 822 | |
| 823 | return 0; |
| 824 | } |
| 825 | |
| 826 | /* Parse the "on-marked-down" server keyword */ |
| 827 | static int srv_parse_on_marked_down(char **args, int *cur_arg, |
| 828 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 829 | { |
| 830 | if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0) |
| 831 | newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS; |
| 832 | else { |
| 833 | memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'", |
| 834 | args[*cur_arg], args[*cur_arg + 1]); |
| 835 | return ERR_ALERT | ERR_FATAL; |
| 836 | } |
| 837 | |
| 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | /* Parse the "on-marked-up" server keyword */ |
| 842 | static int srv_parse_on_marked_up(char **args, int *cur_arg, |
| 843 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 844 | { |
| 845 | if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0) |
| 846 | newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS; |
| 847 | else { |
| 848 | memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'", |
| 849 | args[*cur_arg], args[*cur_arg + 1]); |
| 850 | return ERR_ALERT | ERR_FATAL; |
| 851 | } |
| 852 | |
| 853 | return 0; |
| 854 | } |
| 855 | |
Frédéric Lécaille | 1618623 | 2017-03-14 16:42:49 +0100 | [diff] [blame] | 856 | /* Parse the "redir" server keyword */ |
| 857 | static int srv_parse_redir(char **args, int *cur_arg, |
| 858 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 859 | { |
| 860 | char *arg; |
| 861 | |
| 862 | arg = args[*cur_arg + 1]; |
| 863 | if (!*arg) { |
| 864 | memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]); |
| 865 | return ERR_ALERT | ERR_FATAL; |
| 866 | } |
| 867 | |
| 868 | free(newsrv->rdr_pfx); |
| 869 | newsrv->rdr_pfx = strdup(arg); |
| 870 | newsrv->rdr_len = strlen(arg); |
| 871 | |
| 872 | return 0; |
| 873 | } |
| 874 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 875 | /* Parse the "resolvers" server keyword */ |
| 876 | static int srv_parse_resolvers(char **args, int *cur_arg, |
| 877 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 878 | { |
| 879 | free(newsrv->resolvers_id); |
| 880 | newsrv->resolvers_id = strdup(args[*cur_arg + 1]); |
| 881 | return 0; |
| 882 | } |
| 883 | |
| 884 | /* Parse the "resolve-net" server keyword */ |
| 885 | static int srv_parse_resolve_net(char **args, int *cur_arg, |
| 886 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 887 | { |
| 888 | char *p, *e; |
| 889 | unsigned char mask; |
| 890 | struct resolv_options *opt; |
| 891 | |
| 892 | if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') { |
| 893 | memprintf(err, "'%s' expects a list of networks.", |
| 894 | args[*cur_arg]); |
| 895 | return ERR_ALERT | ERR_FATAL; |
| 896 | } |
| 897 | |
| 898 | opt = &newsrv->resolv_opts; |
| 899 | |
| 900 | /* Split arguments by comma, and convert it from ipv4 or ipv6 |
| 901 | * string network in in_addr or in6_addr. |
| 902 | */ |
| 903 | p = args[*cur_arg + 1]; |
| 904 | e = p; |
| 905 | while (*p != '\0') { |
| 906 | /* If no room available, return error. */ |
| 907 | if (opt->pref_net_nb >= SRV_MAX_PREF_NET) { |
| 908 | memprintf(err, "'%s' exceed %d networks.", |
| 909 | args[*cur_arg], SRV_MAX_PREF_NET); |
| 910 | return ERR_ALERT | ERR_FATAL; |
| 911 | } |
| 912 | /* look for end or comma. */ |
| 913 | while (*e != ',' && *e != '\0') |
| 914 | e++; |
| 915 | if (*e == ',') { |
| 916 | *e = '\0'; |
| 917 | e++; |
| 918 | } |
| 919 | if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4, |
| 920 | &opt->pref_net[opt->pref_net_nb].mask.in4)) { |
| 921 | /* Try to convert input string from ipv4 or ipv6 network. */ |
| 922 | opt->pref_net[opt->pref_net_nb].family = AF_INET; |
| 923 | } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6, |
| 924 | &mask)) { |
| 925 | /* Try to convert input string from ipv6 network. */ |
| 926 | len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6); |
| 927 | opt->pref_net[opt->pref_net_nb].family = AF_INET6; |
| 928 | } else { |
| 929 | /* All network conversions fail, return error. */ |
| 930 | memprintf(err, "'%s' invalid network '%s'.", |
| 931 | args[*cur_arg], p); |
| 932 | return ERR_ALERT | ERR_FATAL; |
| 933 | } |
| 934 | opt->pref_net_nb++; |
| 935 | p = e; |
| 936 | } |
| 937 | |
| 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | /* Parse the "resolve-opts" server keyword */ |
| 942 | static int srv_parse_resolve_opts(char **args, int *cur_arg, |
| 943 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 944 | { |
| 945 | char *p, *end; |
| 946 | |
| 947 | for (p = args[*cur_arg + 1]; *p; p = end) { |
| 948 | /* cut on next comma */ |
| 949 | for (end = p; *end && *end != ','; end++); |
| 950 | if (*end) |
| 951 | *(end++) = 0; |
| 952 | |
| 953 | if (strcmp(p, "allow-dup-ip") == 0) { |
| 954 | newsrv->resolv_opts.accept_duplicate_ip = 1; |
| 955 | } |
| 956 | else if (strcmp(p, "ignore-weight") == 0) { |
| 957 | newsrv->resolv_opts.ignore_weight = 1; |
| 958 | } |
| 959 | else if (strcmp(p, "prevent-dup-ip") == 0) { |
| 960 | newsrv->resolv_opts.accept_duplicate_ip = 0; |
| 961 | } |
| 962 | else { |
| 963 | memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.", |
| 964 | args[*cur_arg], p); |
| 965 | return ERR_ALERT | ERR_FATAL; |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | /* Parse the "resolve-prefer" server keyword */ |
| 973 | static int srv_parse_resolve_prefer(char **args, int *cur_arg, |
| 974 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 975 | { |
| 976 | if (strcmp(args[*cur_arg + 1], "ipv4") == 0) |
| 977 | newsrv->resolv_opts.family_prio = AF_INET; |
| 978 | else if (strcmp(args[*cur_arg + 1], "ipv6") == 0) |
| 979 | newsrv->resolv_opts.family_prio = AF_INET6; |
| 980 | else { |
| 981 | memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.", |
| 982 | args[*cur_arg]); |
| 983 | return ERR_ALERT | ERR_FATAL; |
| 984 | } |
| 985 | |
| 986 | return 0; |
| 987 | } |
| 988 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 989 | /* Parse the "send-proxy" server keyword */ |
| 990 | static int srv_parse_send_proxy(char **args, int *cur_arg, |
| 991 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 992 | { |
| 993 | return srv_enable_pp_flags(newsrv, SRV_PP_V1); |
| 994 | } |
| 995 | |
| 996 | /* Parse the "send-proxy-v2" server keyword */ |
| 997 | static int srv_parse_send_proxy_v2(char **args, int *cur_arg, |
| 998 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 999 | { |
| 1000 | return srv_enable_pp_flags(newsrv, SRV_PP_V2); |
| 1001 | } |
| 1002 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 1003 | /* Parse the "slowstart" server keyword */ |
| 1004 | static int srv_parse_slowstart(char **args, int *cur_arg, |
| 1005 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1006 | { |
| 1007 | /* slowstart is stored in seconds */ |
| 1008 | unsigned int val; |
| 1009 | const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS); |
| 1010 | |
| 1011 | if (time_err == PARSE_TIME_OVER) { |
| 1012 | memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 1013 | args[*cur_arg+1], args[*cur_arg], newsrv->id); |
| 1014 | return ERR_ALERT | ERR_FATAL; |
| 1015 | } |
| 1016 | else if (time_err == PARSE_TIME_UNDER) { |
| 1017 | memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 1018 | args[*cur_arg+1], args[*cur_arg], newsrv->id); |
| 1019 | return ERR_ALERT | ERR_FATAL; |
| 1020 | } |
| 1021 | else if (time_err) { |
| 1022 | memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.", |
| 1023 | *time_err, newsrv->id); |
| 1024 | return ERR_ALERT | ERR_FATAL; |
| 1025 | } |
| 1026 | newsrv->slowstart = (val + 999) / 1000; |
| 1027 | |
| 1028 | return 0; |
| 1029 | } |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1030 | |
| 1031 | /* Parse the "source" server keyword */ |
| 1032 | static int srv_parse_source(char **args, int *cur_arg, |
| 1033 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1034 | { |
| 1035 | char *errmsg; |
| 1036 | int port_low, port_high; |
| 1037 | struct sockaddr_storage *sk; |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1038 | |
| 1039 | errmsg = NULL; |
| 1040 | |
| 1041 | if (!*args[*cur_arg + 1]) { |
| 1042 | memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, " |
| 1043 | "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface"); |
| 1044 | goto err; |
| 1045 | } |
| 1046 | |
| 1047 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1048 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL, |
| 1049 | &errmsg, NULL, NULL, |
| 1050 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1051 | if (!sk) { |
| 1052 | memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg); |
| 1053 | goto err; |
| 1054 | } |
| 1055 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1056 | newsrv->conn_src.opts |= CO_SRC_BIND; |
| 1057 | newsrv->conn_src.source_addr = *sk; |
| 1058 | |
| 1059 | if (port_low != port_high) { |
| 1060 | int i; |
| 1061 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1062 | newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1); |
Remi Tricot-Le Breton | f1800e6 | 2021-05-12 09:44:06 +0200 | [diff] [blame] | 1063 | if (!newsrv->conn_src.sport_range) { |
| 1064 | ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]); |
| 1065 | goto err; |
| 1066 | } |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1067 | for (i = 0; i < newsrv->conn_src.sport_range->size; i++) |
| 1068 | newsrv->conn_src.sport_range->ports[i] = port_low + i; |
| 1069 | } |
| 1070 | |
| 1071 | *cur_arg += 2; |
| 1072 | while (*(args[*cur_arg])) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1073 | if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */ |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1074 | #if defined(CONFIG_HAP_TRANSPARENT) |
| 1075 | if (!*args[*cur_arg + 1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1076 | ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', " |
| 1077 | "or 'hdr_ip(name,#)' as argument.\n"); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1078 | goto err; |
| 1079 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1080 | if (strcmp(args[*cur_arg + 1], "client") == 0) { |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1081 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1082 | newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI; |
| 1083 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1084 | else if (strcmp(args[*cur_arg + 1], "clientip") == 0) { |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1085 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1086 | newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP; |
| 1087 | } |
| 1088 | else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) { |
| 1089 | char *name, *end; |
| 1090 | |
| 1091 | name = args[*cur_arg + 1] + 7; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1092 | while (isspace((unsigned char)*name)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1093 | name++; |
| 1094 | |
| 1095 | end = name; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1096 | while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')') |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1097 | end++; |
| 1098 | |
| 1099 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1100 | newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN; |
| 1101 | free(newsrv->conn_src.bind_hdr_name); |
| 1102 | newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1); |
Remi Tricot-Le Breton | f1800e6 | 2021-05-12 09:44:06 +0200 | [diff] [blame] | 1103 | if (!newsrv->conn_src.bind_hdr_name) { |
| 1104 | ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]); |
| 1105 | goto err; |
| 1106 | } |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1107 | newsrv->conn_src.bind_hdr_len = end - name; |
| 1108 | memcpy(newsrv->conn_src.bind_hdr_name, name, end - name); |
| 1109 | newsrv->conn_src.bind_hdr_name[end - name] = '\0'; |
| 1110 | newsrv->conn_src.bind_hdr_occ = -1; |
| 1111 | |
| 1112 | /* now look for an occurrence number */ |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1113 | while (isspace((unsigned char)*end)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1114 | end++; |
| 1115 | if (*end == ',') { |
| 1116 | end++; |
| 1117 | name = end; |
| 1118 | if (*end == '-') |
| 1119 | end++; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1120 | while (isdigit((unsigned char)*end)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1121 | end++; |
| 1122 | newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name); |
| 1123 | } |
| 1124 | |
| 1125 | if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1126 | ha_alert("usesrc hdr_ip(name,num) does not support negative" |
| 1127 | " occurrences values smaller than %d.\n", MAX_HDR_HISTORY); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1128 | goto err; |
| 1129 | } |
| 1130 | } |
| 1131 | else { |
| 1132 | struct sockaddr_storage *sk; |
| 1133 | int port1, port2; |
| 1134 | |
| 1135 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1136 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL, |
| 1137 | &errmsg, NULL, NULL, |
| 1138 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1139 | if (!sk) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1140 | ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1141 | goto err; |
| 1142 | } |
| 1143 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1144 | newsrv->conn_src.tproxy_addr = *sk; |
| 1145 | newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR; |
| 1146 | } |
| 1147 | global.last_checks |= LSTCHK_NETADM; |
| 1148 | *cur_arg += 2; |
| 1149 | continue; |
| 1150 | #else /* no TPROXY support */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1151 | ha_alert("'usesrc' not allowed here because support for TPROXY was not compiled in.\n"); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1152 | goto err; |
| 1153 | #endif /* defined(CONFIG_HAP_TRANSPARENT) */ |
| 1154 | } /* "usesrc" */ |
| 1155 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1156 | if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */ |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1157 | #ifdef SO_BINDTODEVICE |
| 1158 | if (!*args[*cur_arg + 1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1159 | ha_alert("'%s' : missing interface name.\n", args[0]); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1160 | goto err; |
| 1161 | } |
| 1162 | free(newsrv->conn_src.iface_name); |
| 1163 | newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]); |
| 1164 | newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name); |
| 1165 | global.last_checks |= LSTCHK_NETADM; |
| 1166 | #else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1167 | ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1168 | goto err; |
| 1169 | #endif |
| 1170 | *cur_arg += 2; |
| 1171 | continue; |
| 1172 | } |
| 1173 | /* this keyword in not an option of "source" */ |
| 1174 | break; |
| 1175 | } /* while */ |
| 1176 | |
| 1177 | return 0; |
| 1178 | |
| 1179 | err: |
| 1180 | free(errmsg); |
| 1181 | return ERR_ALERT | ERR_FATAL; |
| 1182 | } |
| 1183 | |
Frédéric Lécaille | f9bc1d6 | 2017-03-10 15:50:49 +0100 | [diff] [blame] | 1184 | /* Parse the "stick" server keyword */ |
| 1185 | static int srv_parse_stick(char **args, int *cur_arg, |
| 1186 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1187 | { |
| 1188 | newsrv->flags &= ~SRV_F_NON_STICK; |
| 1189 | return 0; |
| 1190 | } |
| 1191 | |
Frédéric Lécaille | 67e0e61 | 2017-03-14 15:21:31 +0100 | [diff] [blame] | 1192 | /* Parse the "track" server keyword */ |
| 1193 | static int srv_parse_track(char **args, int *cur_arg, |
| 1194 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1195 | { |
| 1196 | char *arg; |
| 1197 | |
| 1198 | arg = args[*cur_arg + 1]; |
| 1199 | if (!*arg) { |
| 1200 | memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n"); |
| 1201 | return ERR_ALERT | ERR_FATAL; |
| 1202 | } |
| 1203 | |
| 1204 | free(newsrv->trackit); |
| 1205 | newsrv->trackit = strdup(arg); |
| 1206 | |
| 1207 | return 0; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | /* Parse the "socks4" server keyword */ |
| 1211 | static int srv_parse_socks4(char **args, int *cur_arg, |
| 1212 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1213 | { |
| 1214 | char *errmsg; |
| 1215 | int port_low, port_high; |
| 1216 | struct sockaddr_storage *sk; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1217 | |
| 1218 | errmsg = NULL; |
| 1219 | |
| 1220 | if (!*args[*cur_arg + 1]) { |
| 1221 | memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]); |
| 1222 | goto err; |
| 1223 | } |
| 1224 | |
| 1225 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1226 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL, |
| 1227 | &errmsg, NULL, NULL, |
| 1228 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1229 | if (!sk) { |
| 1230 | memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg); |
| 1231 | goto err; |
| 1232 | } |
| 1233 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1234 | newsrv->flags |= SRV_F_SOCKS4_PROXY; |
| 1235 | newsrv->socks4_addr = *sk; |
| 1236 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1237 | return 0; |
| 1238 | |
| 1239 | err: |
| 1240 | free(errmsg); |
| 1241 | return ERR_ALERT | ERR_FATAL; |
Frédéric Lécaille | 67e0e61 | 2017-03-14 15:21:31 +0100 | [diff] [blame] | 1242 | } |
| 1243 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1244 | |
Willy Tarreau | 034c88c | 2017-01-23 23:36:45 +0100 | [diff] [blame] | 1245 | /* parse the "tfo" server keyword */ |
| 1246 | static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1247 | { |
| 1248 | newsrv->flags |= SRV_F_FASTOPEN; |
| 1249 | return 0; |
| 1250 | } |
| 1251 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 1252 | /* parse the "usesrc" server keyword */ |
| 1253 | static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1254 | { |
| 1255 | memprintf(err, "'%s' only allowed after a '%s' statement.", |
| 1256 | "usesrc", "source"); |
| 1257 | return ERR_ALERT | ERR_FATAL; |
| 1258 | } |
| 1259 | |
| 1260 | /* parse the "weight" server keyword */ |
| 1261 | static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1262 | { |
| 1263 | int w; |
| 1264 | |
| 1265 | w = atol(args[*cur_arg + 1]); |
| 1266 | if (w < 0 || w > SRV_UWGHT_MAX) { |
| 1267 | memprintf(err, "weight of server %s is not within 0 and %d (%d).", |
| 1268 | newsrv->id, SRV_UWGHT_MAX, w); |
| 1269 | return ERR_ALERT | ERR_FATAL; |
| 1270 | } |
| 1271 | newsrv->uweight = newsrv->iweight = w; |
| 1272 | |
| 1273 | return 0; |
| 1274 | } |
| 1275 | |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1276 | /* Shutdown all connections of a server. The caller must pass a termination |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1277 | * code in <why>, which must be one of SF_ERR_* indicating the reason for the |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1278 | * shutdown. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1279 | * |
| 1280 | * Must be called with the server lock held. |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1281 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1282 | void srv_shutdown_streams(struct server *srv, int why) |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1283 | { |
Willy Tarreau | 751153e | 2021-02-17 13:33:24 +0100 | [diff] [blame] | 1284 | struct stream *stream; |
| 1285 | struct mt_list *elt1, elt2; |
Willy Tarreau | d4e78d8 | 2021-03-04 10:47:54 +0100 | [diff] [blame] | 1286 | int thr; |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1287 | |
Willy Tarreau | d4e78d8 | 2021-03-04 10:47:54 +0100 | [diff] [blame] | 1288 | for (thr = 0; thr < global.nbthread; thr++) |
| 1289 | mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2) |
| 1290 | if (stream->srv_conn == srv) |
| 1291 | stream_shutdown(stream, why); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1292 | } |
| 1293 | |
| 1294 | /* Shutdown all connections of all backup servers of a proxy. The caller must |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1295 | * pass a termination code in <why>, which must be one of SF_ERR_* indicating |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1296 | * the reason for the shutdown. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1297 | * |
| 1298 | * Must be called with the server lock held. |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1299 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1300 | void srv_shutdown_backup_streams(struct proxy *px, int why) |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1301 | { |
| 1302 | struct server *srv; |
| 1303 | |
| 1304 | for (srv = px->srv; srv != NULL; srv = srv->next) |
| 1305 | if (srv->flags & SRV_F_BACKUP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1306 | srv_shutdown_streams(srv, why); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1307 | } |
| 1308 | |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1309 | /* Appends some information to a message string related to a server going UP or |
| 1310 | * DOWN. If both <forced> and <reason> are null and the server tracks another |
| 1311 | * one, a "via" information will be provided to know where the status came from. |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1312 | * If <check> is non-null, an entire string describing the check result will be |
| 1313 | * appended after a comma and a space (eg: to report some information from the |
| 1314 | * check that changed the state). In the other case, the string will be built |
| 1315 | * using the check results stored into the struct server if present. |
| 1316 | * If <xferred> is non-negative, some information about requeued sessions are |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1317 | * provided. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1318 | * |
| 1319 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1320 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1321 | void srv_append_status(struct buffer *msg, struct server *s, |
| 1322 | struct check *check, int xferred, int forced) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1323 | { |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1324 | short status = s->op_st_chg.status; |
| 1325 | short code = s->op_st_chg.code; |
| 1326 | long duration = s->op_st_chg.duration; |
| 1327 | char *desc = s->op_st_chg.reason; |
| 1328 | |
| 1329 | if (check) { |
| 1330 | status = check->status; |
| 1331 | code = check->code; |
| 1332 | duration = check->duration; |
| 1333 | desc = check->desc; |
| 1334 | } |
| 1335 | |
| 1336 | if (status != -1) { |
| 1337 | chunk_appendf(msg, ", reason: %s", get_check_status_description(status)); |
| 1338 | |
| 1339 | if (status >= HCHK_STATUS_L57DATA) |
| 1340 | chunk_appendf(msg, ", code: %d", code); |
| 1341 | |
| 1342 | if (desc && *desc) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1343 | struct buffer src; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1344 | |
| 1345 | chunk_appendf(msg, ", info: \""); |
| 1346 | |
| 1347 | chunk_initlen(&src, desc, 0, strlen(desc)); |
| 1348 | chunk_asciiencode(msg, &src, '"'); |
| 1349 | |
| 1350 | chunk_appendf(msg, "\""); |
| 1351 | } |
| 1352 | |
| 1353 | if (duration >= 0) |
| 1354 | chunk_appendf(msg, ", check duration: %ldms", duration); |
| 1355 | } |
| 1356 | else if (desc && *desc) { |
| 1357 | chunk_appendf(msg, ", %s", desc); |
| 1358 | } |
| 1359 | else if (!forced && s->track) { |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1360 | chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1361 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1362 | |
| 1363 | if (xferred >= 0) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1364 | if (s->next_state == SRV_ST_STOPPED) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1365 | chunk_appendf(msg, ". %d active and %d backup servers left.%s" |
| 1366 | " %d sessions active, %d requeued, %d remaining in queue", |
| 1367 | s->proxy->srv_act, s->proxy->srv_bck, |
| 1368 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 1369 | s->cur_sess, xferred, s->nbpend); |
| 1370 | else |
| 1371 | chunk_appendf(msg, ". %d active and %d backup servers online.%s" |
| 1372 | " %d sessions requeued, %d total in queue", |
| 1373 | s->proxy->srv_act, s->proxy->srv_bck, |
| 1374 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 1375 | xferred, s->nbpend); |
| 1376 | } |
| 1377 | } |
| 1378 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1379 | /* Marks server <s> down, regardless of its checks' statuses. The server is |
| 1380 | * registered in a list to postpone the counting of the remaining servers on |
| 1381 | * the proxy and transfers queued streams whenever possible to other servers at |
| 1382 | * a sync point. Maintenance servers are ignored. It stores the <reason> if |
| 1383 | * non-null as the reason for going down or the available data from the check |
| 1384 | * struct to recompute this reason later. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1385 | * |
| 1386 | * Must be called with the server lock held. |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1387 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1388 | void srv_set_stopped(struct server *s, const char *reason, struct check *check) |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1389 | { |
| 1390 | struct server *srv; |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1391 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1392 | if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED) |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1393 | return; |
| 1394 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1395 | s->next_state = SRV_ST_STOPPED; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1396 | *s->op_st_chg.reason = 0; |
| 1397 | s->op_st_chg.status = -1; |
| 1398 | if (reason) { |
| 1399 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1400 | } |
| 1401 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1402 | strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason)); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1403 | s->op_st_chg.code = check->code; |
| 1404 | s->op_st_chg.status = check->status; |
| 1405 | s->op_st_chg.duration = check->duration; |
| 1406 | } |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1407 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1408 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1409 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1410 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1411 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1412 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1413 | srv_set_stopped(srv, NULL, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1414 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1415 | } |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1416 | } |
| 1417 | |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1418 | /* Marks server <s> up regardless of its checks' statuses and provided it isn't |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1419 | * in maintenance. The server is registered in a list to postpone the counting |
| 1420 | * of the remaining servers on the proxy and tries to grab requests from the |
| 1421 | * proxy at a sync point. Maintenance servers are ignored. It stores the |
| 1422 | * <reason> if non-null as the reason for going down or the available data |
| 1423 | * from the check struct to recompute this reason later. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1424 | * |
| 1425 | * Must be called with the server lock held. |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1426 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1427 | void srv_set_running(struct server *s, const char *reason, struct check *check) |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1428 | { |
| 1429 | struct server *srv; |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1430 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1431 | if (s->cur_admin & SRV_ADMF_MAINT) |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1432 | return; |
| 1433 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1434 | if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING) |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1435 | return; |
| 1436 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1437 | s->next_state = SRV_ST_STARTING; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1438 | *s->op_st_chg.reason = 0; |
| 1439 | s->op_st_chg.status = -1; |
| 1440 | if (reason) { |
| 1441 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1442 | } |
| 1443 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1444 | strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason)); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1445 | s->op_st_chg.code = check->code; |
| 1446 | s->op_st_chg.status = check->status; |
| 1447 | s->op_st_chg.duration = check->duration; |
| 1448 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1449 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1450 | if (s->slowstart <= 0) |
| 1451 | s->next_state = SRV_ST_RUNNING; |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1452 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1453 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1454 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1455 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1456 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1457 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1458 | srv_set_running(srv, NULL, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1459 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1460 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1461 | } |
| 1462 | |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1463 | /* Marks server <s> stopping regardless of its checks' statuses and provided it |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1464 | * isn't in maintenance. The server is registered in a list to postpone the |
| 1465 | * counting of the remaining servers on the proxy and tries to grab requests |
| 1466 | * from the proxy. Maintenance servers are ignored. It stores the |
| 1467 | * <reason> if non-null as the reason for going down or the available data |
| 1468 | * from the check struct to recompute this reason later. |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1469 | * up. Note that it makes use of the trash to build the log strings, so <reason> |
| 1470 | * must not be placed there. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1471 | * |
| 1472 | * Must be called with the server lock held. |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1473 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1474 | void srv_set_stopping(struct server *s, const char *reason, struct check *check) |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1475 | { |
| 1476 | struct server *srv; |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1477 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1478 | if (s->cur_admin & SRV_ADMF_MAINT) |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1479 | return; |
| 1480 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1481 | if (s->next_state == SRV_ST_STOPPING) |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1482 | return; |
| 1483 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1484 | s->next_state = SRV_ST_STOPPING; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1485 | *s->op_st_chg.reason = 0; |
| 1486 | s->op_st_chg.status = -1; |
| 1487 | if (reason) { |
| 1488 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1489 | } |
| 1490 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1491 | strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason)); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1492 | s->op_st_chg.code = check->code; |
| 1493 | s->op_st_chg.status = check->status; |
| 1494 | s->op_st_chg.duration = check->duration; |
| 1495 | } |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1496 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1497 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1498 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1499 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1500 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1501 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1502 | srv_set_stopping(srv, NULL, NULL); |
Christopher Faulet | 8d01fd6 | 2018-01-24 21:49:41 +0100 | [diff] [blame] | 1503 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1504 | } |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1505 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1506 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1507 | /* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to |
| 1508 | * enforce either maint mode or drain mode. It is not allowed to set more than |
| 1509 | * one flag at once. The equivalent "inherited" flag is propagated to all |
| 1510 | * tracking servers. Maintenance mode disables health checks (but not agent |
| 1511 | * checks). When either the flag is already set or no flag is passed, nothing |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1512 | * is done. If <cause> is non-null, it will be displayed at the end of the log |
| 1513 | * lines to justify the state change. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1514 | * |
| 1515 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1516 | */ |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1517 | void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1518 | { |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1519 | struct server *srv; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1520 | |
| 1521 | if (!mode) |
| 1522 | return; |
| 1523 | |
| 1524 | /* stop going down as soon as we meet a server already in the same state */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1525 | if (s->next_admin & mode) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1526 | return; |
| 1527 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1528 | s->next_admin |= mode; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1529 | if (cause) |
| 1530 | strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause)); |
| 1531 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1532 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1533 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1534 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1535 | /* stop going down if the equivalent flag was already present (forced or inherited) */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1536 | if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) || |
| 1537 | ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN))) |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1538 | return; |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1539 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1540 | /* compute the inherited flag to propagate */ |
| 1541 | if (mode & SRV_ADMF_MAINT) |
| 1542 | mode = SRV_ADMF_IMAINT; |
| 1543 | else if (mode & SRV_ADMF_DRAIN) |
| 1544 | mode = SRV_ADMF_IDRAIN; |
| 1545 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1546 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1547 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1548 | srv_set_admin_flag(srv, mode, cause); |
Christopher Faulet | 8d01fd6 | 2018-01-24 21:49:41 +0100 | [diff] [blame] | 1549 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1550 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1551 | } |
| 1552 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1553 | /* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to |
| 1554 | * stop enforcing either maint mode or drain mode. It is not allowed to set more |
| 1555 | * than one flag at once. The equivalent "inherited" flag is propagated to all |
| 1556 | * tracking servers. Leaving maintenance mode re-enables health checks. When |
| 1557 | * either the flag is already cleared or no flag is passed, nothing is done. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1558 | * |
| 1559 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1560 | */ |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1561 | void srv_clr_admin_flag(struct server *s, enum srv_admin mode) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1562 | { |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1563 | struct server *srv; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1564 | |
| 1565 | if (!mode) |
| 1566 | return; |
| 1567 | |
| 1568 | /* stop going down as soon as we see the flag is not there anymore */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1569 | if (!(s->next_admin & mode)) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1570 | return; |
| 1571 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1572 | s->next_admin &= ~mode; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1573 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1574 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1575 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1576 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1577 | /* stop going down if the equivalent flag is still present (forced or inherited) */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1578 | if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) || |
| 1579 | ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN))) |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1580 | return; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1581 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1582 | if (mode & SRV_ADMF_MAINT) |
| 1583 | mode = SRV_ADMF_IMAINT; |
| 1584 | else if (mode & SRV_ADMF_DRAIN) |
| 1585 | mode = SRV_ADMF_IDRAIN; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1586 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1587 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1588 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1589 | srv_clr_admin_flag(srv, mode); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1590 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1591 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1592 | } |
| 1593 | |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1594 | /* principle: propagate maint and drain to tracking servers. This is useful |
| 1595 | * upon startup so that inherited states are correct. |
| 1596 | */ |
| 1597 | static void srv_propagate_admin_state(struct server *srv) |
| 1598 | { |
| 1599 | struct server *srv2; |
| 1600 | |
| 1601 | if (!srv->trackers) |
| 1602 | return; |
| 1603 | |
| 1604 | for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1605 | HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock); |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1606 | if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT)) |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1607 | srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL); |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1608 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1609 | if (srv->next_admin & SRV_ADMF_DRAIN) |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1610 | srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1611 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock); |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | /* Compute and propagate the admin states for all servers in proxy <px>. |
| 1616 | * Only servers *not* tracking another one are considered, because other |
| 1617 | * ones will be handled when the server they track is visited. |
| 1618 | */ |
| 1619 | void srv_compute_all_admin_states(struct proxy *px) |
| 1620 | { |
| 1621 | struct server *srv; |
| 1622 | |
| 1623 | for (srv = px->srv; srv; srv = srv->next) { |
| 1624 | if (srv->track) |
| 1625 | continue; |
| 1626 | srv_propagate_admin_state(srv); |
| 1627 | } |
| 1628 | } |
| 1629 | |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1630 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1631 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1632 | * all code contributors. |
| 1633 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1634 | * the config parser can report an appropriate error when a known keyword was |
| 1635 | * not enabled. |
Frédéric Lécaille | dfacd69 | 2017-04-16 17:14:14 +0200 | [diff] [blame] | 1636 | * Note: -1 as ->skip value means that the number of arguments are variable. |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1637 | */ |
| 1638 | static struct srv_kw_list srv_kws = { "ALL", { }, { |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1639 | { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1640 | { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1641 | { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */ |
| 1642 | { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1643 | { "error-limit", srv_parse_error_limit, 1, 1, 0 }, /* Configure the consecutive count of check failures to consider a server on error */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1644 | { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1645 | { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */ |
| 1646 | { "log-proto", srv_parse_log_proto, 1, 1, 0 }, /* Set the protocol for event messages, only relevant in a ring section */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1647 | { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */ |
| 1648 | { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1649 | { "max-reuse", srv_parse_max_reuse, 1, 1, 0 }, /* Set the max number of requests on a connection, -1 means unlimited */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1650 | { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1651 | { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1652 | { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */ |
| 1653 | { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */ |
| 1654 | { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */ |
| 1655 | { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1656 | { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */ |
| 1657 | { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */ |
| 1658 | { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */ |
| 1659 | { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */ |
| 1660 | { "on-marked-up", srv_parse_on_marked_up, 1, 1, 0 }, /* Configure the action when a server is marked up */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1661 | { "pool-low-conn", srv_parse_pool_low_conn, 1, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */ |
| 1662 | { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */ |
| 1663 | { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1, 1 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */ |
Amaury Denoyelle | 3046723 | 2021-03-12 18:03:27 +0100 | [diff] [blame] | 1664 | { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1665 | { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1666 | { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */ |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 1667 | { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1668 | { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */ |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 1669 | { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1670 | { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1671 | { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */ |
| 1672 | { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1673 | { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1674 | { "source", srv_parse_source, -1, 1, 1 }, /* Set the source address to be used to connect to the server */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1675 | { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1676 | { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1677 | { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */ |
| 1678 | { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/ |
Amaury Denoyelle | fc465a5 | 2021-03-09 17:36:23 +0100 | [diff] [blame] | 1679 | { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */ |
| 1680 | { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */ |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1681 | { NULL, NULL, 0 }, |
| 1682 | }}; |
| 1683 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1684 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1685 | |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1686 | /* Recomputes the server's eweight based on its state, uweight, the current time, |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1687 | * and the proxy's algorithm. To be used after updating sv->uweight. The warmup |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1688 | * state is automatically disabled if the time is elapsed. If <must_update> is |
| 1689 | * not zero, the update will be propagated immediately. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1690 | * |
| 1691 | * Must be called with the server lock held. |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1692 | */ |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1693 | void server_recalc_eweight(struct server *sv, int must_update) |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1694 | { |
| 1695 | struct proxy *px = sv->proxy; |
| 1696 | unsigned w; |
| 1697 | |
| 1698 | if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) { |
| 1699 | /* go to full throttle if the slowstart interval is reached */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1700 | if (sv->next_state == SRV_ST_STARTING) |
| 1701 | sv->next_state = SRV_ST_RUNNING; |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1702 | } |
| 1703 | |
| 1704 | /* We must take care of not pushing the server to full throttle during slow starts. |
| 1705 | * It must also start immediately, at least at the minimal step when leaving maintenance. |
| 1706 | */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1707 | if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN)) |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1708 | w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart; |
| 1709 | else |
| 1710 | w = px->lbprm.wdiv; |
| 1711 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1712 | sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult; |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1713 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1714 | /* propagate changes only if needed (i.e. not recursively) */ |
Willy Tarreau | 49725a0 | 2018-08-21 19:54:09 +0200 | [diff] [blame] | 1715 | if (must_update) |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1716 | srv_update_status(sv); |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1717 | } |
| 1718 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1719 | /* |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1720 | * Parses weight_str and configures sv accordingly. |
| 1721 | * Returns NULL on success, error message string otherwise. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1722 | * |
| 1723 | * Must be called with the server lock held. |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1724 | */ |
| 1725 | const char *server_parse_weight_change_request(struct server *sv, |
| 1726 | const char *weight_str) |
| 1727 | { |
| 1728 | struct proxy *px; |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1729 | long int w; |
| 1730 | char *end; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1731 | |
| 1732 | px = sv->proxy; |
| 1733 | |
| 1734 | /* if the weight is terminated with '%', it is set relative to |
| 1735 | * the initial weight, otherwise it is absolute. |
| 1736 | */ |
| 1737 | if (!*weight_str) |
| 1738 | return "Require <weight> or <weight%>.\n"; |
| 1739 | |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1740 | w = strtol(weight_str, &end, 10); |
| 1741 | if (end == weight_str) |
| 1742 | return "Empty weight string empty or preceded by garbage"; |
| 1743 | else if (end[0] == '%' && end[1] == '\0') { |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1744 | if (w < 0) |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1745 | return "Relative weight must be positive.\n"; |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1746 | /* Avoid integer overflow */ |
| 1747 | if (w > 25600) |
| 1748 | w = 25600; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1749 | w = sv->iweight * w / 100; |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1750 | if (w > 256) |
| 1751 | w = 256; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1752 | } |
| 1753 | else if (w < 0 || w > 256) |
| 1754 | return "Absolute weight can only be between 0 and 256 inclusive.\n"; |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1755 | else if (end[0] != '\0') |
| 1756 | return "Trailing garbage in weight string"; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1757 | |
| 1758 | if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN)) |
| 1759 | return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n"; |
| 1760 | |
| 1761 | sv->uweight = w; |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1762 | server_recalc_eweight(sv, 1); |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1763 | |
| 1764 | return NULL; |
| 1765 | } |
| 1766 | |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1767 | /* |
Thierry Fournier | 09a9178 | 2016-02-24 08:25:39 +0100 | [diff] [blame] | 1768 | * Parses <addr_str> and configures <sv> accordingly. <from> precise |
| 1769 | * the source of the change in the associated message log. |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1770 | * Returns: |
| 1771 | * - error string on error |
| 1772 | * - NULL on success |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1773 | * |
| 1774 | * Must be called with the server lock held. |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1775 | */ |
| 1776 | const char *server_parse_addr_change_request(struct server *sv, |
Thierry Fournier | 09a9178 | 2016-02-24 08:25:39 +0100 | [diff] [blame] | 1777 | const char *addr_str, const char *updater) |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1778 | { |
| 1779 | unsigned char ip[INET6_ADDRSTRLEN]; |
| 1780 | |
| 1781 | if (inet_pton(AF_INET6, addr_str, ip)) { |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1782 | srv_update_addr(sv, ip, AF_INET6, updater); |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1783 | return NULL; |
| 1784 | } |
| 1785 | if (inet_pton(AF_INET, addr_str, ip)) { |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1786 | srv_update_addr(sv, ip, AF_INET, updater); |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1787 | return NULL; |
| 1788 | } |
| 1789 | |
| 1790 | return "Could not understand IP address format.\n"; |
| 1791 | } |
| 1792 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1793 | /* |
| 1794 | * Must be called with the server lock held. |
| 1795 | */ |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1796 | const char *server_parse_maxconn_change_request(struct server *sv, |
| 1797 | const char *maxconn_str) |
| 1798 | { |
| 1799 | long int v; |
| 1800 | char *end; |
| 1801 | |
| 1802 | if (!*maxconn_str) |
| 1803 | return "Require <maxconn>.\n"; |
| 1804 | |
| 1805 | v = strtol(maxconn_str, &end, 10); |
| 1806 | if (end == maxconn_str) |
| 1807 | return "maxconn string empty or preceded by garbage"; |
| 1808 | else if (end[0] != '\0') |
| 1809 | return "Trailing garbage in maxconn string"; |
| 1810 | |
Amaury Denoyelle | 79a88ba | 2021-05-17 10:47:18 +0200 | [diff] [blame] | 1811 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1812 | if (sv->maxconn == sv->minconn) { // static maxconn |
| 1813 | sv->maxconn = sv->minconn = v; |
| 1814 | } else { // dynamic maxconn |
| 1815 | sv->maxconn = v; |
| 1816 | } |
Amaury Denoyelle | 79a88ba | 2021-05-17 10:47:18 +0200 | [diff] [blame] | 1817 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1818 | |
| 1819 | if (may_dequeue_tasks(sv, sv->proxy)) |
| 1820 | process_srv_queue(sv); |
| 1821 | |
| 1822 | return NULL; |
| 1823 | } |
| 1824 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1825 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1826 | static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px, |
| 1827 | const char *file, int linenum, char **err) |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1828 | { |
| 1829 | int idx; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1830 | const char *args[] = { |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1831 | srv->sni_expr, |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1832 | NULL, |
| 1833 | }; |
| 1834 | |
| 1835 | idx = 0; |
Olivier Houchard | 7d8e688 | 2017-04-20 18:21:17 +0200 | [diff] [blame] | 1836 | px->conf.args.ctx = ARGC_SRV; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1837 | |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1838 | return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL); |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err) |
| 1842 | { |
| 1843 | struct sample_expr *expr; |
| 1844 | |
| 1845 | expr = srv_sni_sample_parse_expr(newsrv, px, px->conf.file, px->conf.line, err); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1846 | if (!expr) { |
| 1847 | memprintf(err, "error detected while parsing sni expression : %s", *err); |
| 1848 | return ERR_ALERT | ERR_FATAL; |
| 1849 | } |
| 1850 | |
| 1851 | if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) { |
| 1852 | memprintf(err, "error detected while parsing sni expression : " |
| 1853 | " fetch method '%s' extracts information from '%s', " |
Amaury Denoyelle | c008a63 | 2021-05-28 11:01:22 +0200 | [diff] [blame^] | 1854 | "none of which is available here.", |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1855 | newsrv->sni_expr, sample_src_names(expr->fetch->use)); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1856 | return ERR_ALERT | ERR_FATAL; |
| 1857 | } |
| 1858 | |
| 1859 | px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
| 1860 | release_sample_expr(newsrv->ssl_ctx.sni); |
| 1861 | newsrv->ssl_ctx.sni = expr; |
| 1862 | |
| 1863 | return 0; |
| 1864 | } |
| 1865 | #endif |
| 1866 | |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1867 | static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, int err_code, char **err) |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1868 | { |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1869 | char *msg = "error encountered while processing "; |
| 1870 | char *quote = "'"; |
| 1871 | char *token = args[cur_arg]; |
| 1872 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1873 | if (err && *err) { |
| 1874 | indent_msg(err, 2); |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1875 | msg = *err; |
| 1876 | quote = ""; |
| 1877 | token = ""; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1878 | } |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1879 | |
| 1880 | if (err_code & ERR_WARN && !(err_code & ERR_ALERT)) |
| 1881 | ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n", |
| 1882 | file, linenum, args[0], args[1], |
| 1883 | msg, quote, token, quote); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1884 | else |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1885 | ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n", |
| 1886 | file, linenum, args[0], args[1], |
| 1887 | msg, quote, token, quote); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1888 | } |
| 1889 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1890 | static void srv_conn_src_sport_range_cpy(struct server *srv, |
| 1891 | struct server *src) |
| 1892 | { |
| 1893 | int range_sz; |
| 1894 | |
| 1895 | range_sz = src->conn_src.sport_range->size; |
| 1896 | if (range_sz > 0) { |
| 1897 | srv->conn_src.sport_range = port_range_alloc_range(range_sz); |
| 1898 | if (srv->conn_src.sport_range != NULL) { |
| 1899 | int i; |
| 1900 | |
| 1901 | for (i = 0; i < range_sz; i++) { |
| 1902 | srv->conn_src.sport_range->ports[i] = |
| 1903 | src->conn_src.sport_range->ports[i]; |
| 1904 | } |
| 1905 | } |
| 1906 | } |
| 1907 | } |
| 1908 | |
| 1909 | /* |
| 1910 | * Copy <src> server connection source settings to <srv> server everything needed. |
| 1911 | */ |
| 1912 | static void srv_conn_src_cpy(struct server *srv, struct server *src) |
| 1913 | { |
| 1914 | srv->conn_src.opts = src->conn_src.opts; |
| 1915 | srv->conn_src.source_addr = src->conn_src.source_addr; |
| 1916 | |
| 1917 | /* Source port range copy. */ |
| 1918 | if (src->conn_src.sport_range != NULL) |
| 1919 | srv_conn_src_sport_range_cpy(srv, src); |
| 1920 | |
| 1921 | #ifdef CONFIG_HAP_TRANSPARENT |
| 1922 | if (src->conn_src.bind_hdr_name != NULL) { |
| 1923 | srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name); |
| 1924 | srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name); |
| 1925 | } |
| 1926 | srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ; |
| 1927 | srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr; |
| 1928 | #endif |
| 1929 | if (src->conn_src.iface_name != NULL) |
| 1930 | srv->conn_src.iface_name = strdup(src->conn_src.iface_name); |
| 1931 | } |
| 1932 | |
| 1933 | /* |
| 1934 | * Copy <src> server SSL settings to <srv> server allocating |
| 1935 | * everything needed. |
| 1936 | */ |
| 1937 | #if defined(USE_OPENSSL) |
| 1938 | static void srv_ssl_settings_cpy(struct server *srv, struct server *src) |
| 1939 | { |
| 1940 | if (src->ssl_ctx.ca_file != NULL) |
| 1941 | srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file); |
| 1942 | if (src->ssl_ctx.crl_file != NULL) |
| 1943 | srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file); |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1944 | |
| 1945 | srv->ssl_ctx.verify = src->ssl_ctx.verify; |
| 1946 | |
| 1947 | if (src->ssl_ctx.verify_host != NULL) |
| 1948 | srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host); |
| 1949 | if (src->ssl_ctx.ciphers != NULL) |
| 1950 | srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers); |
Jerome Magnin | 2e8d52f | 2020-04-22 11:40:18 +0200 | [diff] [blame] | 1951 | if (src->ssl_ctx.options) |
| 1952 | srv->ssl_ctx.options = src->ssl_ctx.options; |
| 1953 | if (src->ssl_ctx.methods.flags) |
| 1954 | srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags; |
| 1955 | if (src->ssl_ctx.methods.min) |
| 1956 | srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min; |
| 1957 | if (src->ssl_ctx.methods.max) |
| 1958 | srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max; |
| 1959 | |
Ilya Shipitsin | 2aa4b3a | 2021-01-07 11:55:45 +0500 | [diff] [blame] | 1960 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 1961 | if (src->ssl_ctx.ciphersuites != NULL) |
| 1962 | srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites); |
| 1963 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1964 | if (src->sni_expr != NULL) |
| 1965 | srv->sni_expr = strdup(src->sni_expr); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1966 | |
| 1967 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 1968 | if (src->ssl_ctx.alpn_str) { |
| 1969 | srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len); |
| 1970 | if (srv->ssl_ctx.alpn_str) { |
| 1971 | memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str, |
| 1972 | src->ssl_ctx.alpn_len); |
| 1973 | srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len; |
| 1974 | } |
| 1975 | } |
| 1976 | #endif |
| 1977 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 1978 | if (src->ssl_ctx.npn_str) { |
| 1979 | srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len); |
| 1980 | if (srv->ssl_ctx.npn_str) { |
| 1981 | memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str, |
| 1982 | src->ssl_ctx.npn_len); |
| 1983 | srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len; |
| 1984 | } |
| 1985 | } |
| 1986 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1987 | } |
| 1988 | #endif |
| 1989 | |
| 1990 | /* |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 1991 | * Prepare <srv> for hostname resolution. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1992 | * May be safely called with a default server as <src> argument (without hostname). |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 1993 | * Returns -1 in case of any allocation failure, 0 if not. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1994 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1995 | int srv_prepare_for_resolution(struct server *srv, const char *hostname) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1996 | { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 1997 | char *hostname_dn; |
| 1998 | int hostname_len, hostname_dn_len; |
| 1999 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2000 | if (!hostname) |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 2001 | return 0; |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2002 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 2003 | hostname_len = strlen(hostname); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2004 | hostname_dn = trash.area; |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 2005 | hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1, |
| 2006 | hostname_dn, trash.size); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 2007 | if (hostname_dn_len == -1) |
| 2008 | goto err; |
Baptiste Assmann | 81ed1a0 | 2017-05-03 10:11:44 +0200 | [diff] [blame] | 2009 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2010 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 2011 | free(srv->hostname); |
| 2012 | free(srv->hostname_dn); |
| 2013 | srv->hostname = strdup(hostname); |
| 2014 | srv->hostname_dn = strdup(hostname_dn); |
| 2015 | srv->hostname_dn_len = hostname_dn_len; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2016 | if (!srv->hostname || !srv->hostname_dn) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2017 | goto err; |
| 2018 | |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 2019 | return 0; |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2020 | |
| 2021 | err: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2022 | ha_free(&srv->hostname); |
| 2023 | ha_free(&srv->hostname_dn); |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 2024 | return -1; |
| 2025 | } |
| 2026 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2027 | /* |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2028 | * Copy <src> server settings to <srv> server allocating |
| 2029 | * everything needed. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2030 | * This function is not supposed to be called at any time, but only |
| 2031 | * during server settings parsing or during server allocations from |
| 2032 | * a server template, and just after having calloc()'ed a new server. |
| 2033 | * So, <src> may only be a default server (when parsing server settings) |
| 2034 | * or a server template (during server allocations from a server template). |
| 2035 | * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template, |
| 2036 | * 0 if not). |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2037 | */ |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2038 | static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl) |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2039 | { |
| 2040 | /* Connection source settings copy */ |
| 2041 | srv_conn_src_cpy(srv, src); |
| 2042 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2043 | if (srv_tmpl) { |
| 2044 | srv->addr = src->addr; |
| 2045 | srv->svc_port = src->svc_port; |
| 2046 | } |
| 2047 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2048 | srv->pp_opts = src->pp_opts; |
| 2049 | if (src->rdr_pfx != NULL) { |
| 2050 | srv->rdr_pfx = strdup(src->rdr_pfx); |
| 2051 | srv->rdr_len = src->rdr_len; |
| 2052 | } |
| 2053 | if (src->cookie != NULL) { |
| 2054 | srv->cookie = strdup(src->cookie); |
| 2055 | srv->cklen = src->cklen; |
| 2056 | } |
| 2057 | srv->use_ssl = src->use_ssl; |
Willy Tarreau | 2444108 | 2019-12-11 15:43:45 +0100 | [diff] [blame] | 2058 | srv->check.addr = src->check.addr; |
| 2059 | srv->agent.addr = src->agent.addr; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2060 | srv->check.use_ssl = src->check.use_ssl; |
| 2061 | srv->check.port = src->check.port; |
Olivier Houchard | 2194401 | 2018-12-21 19:42:01 +0100 | [diff] [blame] | 2062 | srv->check.sni = src->check.sni; |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 2063 | srv->check.alpn_str = src->check.alpn_str; |
Ilya Shipitsin | 0c50b1e | 2019-04-30 21:21:28 +0500 | [diff] [blame] | 2064 | srv->check.alpn_len = src->check.alpn_len; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2065 | /* Note: 'flags' field has potentially been already initialized. */ |
| 2066 | srv->flags |= src->flags; |
| 2067 | srv->do_check = src->do_check; |
| 2068 | srv->do_agent = src->do_agent; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2069 | srv->check.inter = src->check.inter; |
| 2070 | srv->check.fastinter = src->check.fastinter; |
| 2071 | srv->check.downinter = src->check.downinter; |
| 2072 | srv->agent.use_ssl = src->agent.use_ssl; |
| 2073 | srv->agent.port = src->agent.port; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2074 | |
| 2075 | if (src->agent.tcpcheck_rules) { |
| 2076 | srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules)); |
| 2077 | if (srv->agent.tcpcheck_rules) { |
| 2078 | srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags; |
| 2079 | srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list; |
| 2080 | LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars); |
| 2081 | dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars, |
| 2082 | &src->agent.tcpcheck_rules->preset_vars); |
| 2083 | } |
| 2084 | } |
| 2085 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2086 | srv->agent.inter = src->agent.inter; |
| 2087 | srv->agent.fastinter = src->agent.fastinter; |
| 2088 | srv->agent.downinter = src->agent.downinter; |
| 2089 | srv->maxqueue = src->maxqueue; |
| 2090 | srv->minconn = src->minconn; |
| 2091 | srv->maxconn = src->maxconn; |
| 2092 | srv->slowstart = src->slowstart; |
| 2093 | srv->observe = src->observe; |
| 2094 | srv->onerror = src->onerror; |
| 2095 | srv->onmarkeddown = src->onmarkeddown; |
| 2096 | srv->onmarkedup = src->onmarkedup; |
| 2097 | if (src->trackit != NULL) |
| 2098 | srv->trackit = strdup(src->trackit); |
| 2099 | srv->consecutive_errors_limit = src->consecutive_errors_limit; |
| 2100 | srv->uweight = srv->iweight = src->iweight; |
| 2101 | |
| 2102 | srv->check.send_proxy = src->check.send_proxy; |
| 2103 | /* health: up, but will fall down at first failure */ |
| 2104 | srv->check.rise = srv->check.health = src->check.rise; |
| 2105 | srv->check.fall = src->check.fall; |
| 2106 | |
| 2107 | /* Here we check if 'disabled' is the default server state */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2108 | if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) { |
| 2109 | srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT; |
| 2110 | srv->next_state = SRV_ST_STOPPED; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2111 | srv->check.state |= CHK_ST_PAUSED; |
| 2112 | srv->check.health = 0; |
| 2113 | } |
| 2114 | |
| 2115 | /* health: up but will fall down at first failure */ |
| 2116 | srv->agent.rise = srv->agent.health = src->agent.rise; |
| 2117 | srv->agent.fall = src->agent.fall; |
| 2118 | |
| 2119 | if (src->resolvers_id != NULL) |
| 2120 | srv->resolvers_id = strdup(src->resolvers_id); |
Emeric Brun | 21fbeed | 2020-12-23 18:01:04 +0100 | [diff] [blame] | 2121 | srv->resolv_opts.family_prio = src->resolv_opts.family_prio; |
| 2122 | srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip; |
| 2123 | srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight; |
| 2124 | if (srv->resolv_opts.family_prio == AF_UNSPEC) |
| 2125 | srv->resolv_opts.family_prio = AF_INET6; |
| 2126 | memcpy(srv->resolv_opts.pref_net, |
| 2127 | src->resolv_opts.pref_net, |
| 2128 | sizeof srv->resolv_opts.pref_net); |
| 2129 | srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2130 | |
| 2131 | srv->init_addr_methods = src->init_addr_methods; |
| 2132 | srv->init_addr = src->init_addr; |
| 2133 | #if defined(USE_OPENSSL) |
| 2134 | srv_ssl_settings_cpy(srv, src); |
| 2135 | #endif |
| 2136 | #ifdef TCP_USER_TIMEOUT |
| 2137 | srv->tcp_ut = src->tcp_ut; |
| 2138 | #endif |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 2139 | srv->mux_proto = src->mux_proto; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 2140 | srv->pool_purge_delay = src->pool_purge_delay; |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 2141 | srv->low_idle_conns = src->low_idle_conns; |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 2142 | srv->max_idle_conns = src->max_idle_conns; |
Willy Tarreau | 9c538e0 | 2019-01-23 10:21:49 +0100 | [diff] [blame] | 2143 | srv->max_reuse = src->max_reuse; |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 2144 | |
Olivier Houchard | 8da5f98 | 2017-08-04 18:35:36 +0200 | [diff] [blame] | 2145 | if (srv_tmpl) |
| 2146 | srv->srvrq = src->srvrq; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 2147 | |
| 2148 | srv->check.via_socks4 = src->check.via_socks4; |
| 2149 | srv->socks4_addr = src->socks4_addr; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2150 | } |
| 2151 | |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 2152 | /* allocate a server and attach it to the global servers_list. Returns |
| 2153 | * the server on success, otherwise NULL. |
| 2154 | */ |
William Lallemand | 313bfd1 | 2018-10-26 14:47:32 +0200 | [diff] [blame] | 2155 | struct server *new_server(struct proxy *proxy) |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2156 | { |
| 2157 | struct server *srv; |
| 2158 | |
| 2159 | srv = calloc(1, sizeof *srv); |
| 2160 | if (!srv) |
| 2161 | return NULL; |
| 2162 | |
| 2163 | srv->obj_type = OBJ_TYPE_SERVER; |
| 2164 | srv->proxy = proxy; |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 2165 | srv->pendconns = EB_ROOT; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2166 | LIST_APPEND(&servers_list, &srv->global_list); |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 2167 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2168 | srv->next_state = SRV_ST_RUNNING; /* early server setup */ |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2169 | srv->last_change = now.tv_sec; |
| 2170 | |
Christopher Faulet | 3829046 | 2020-04-21 11:46:40 +0200 | [diff] [blame] | 2171 | srv->check.obj_type = OBJ_TYPE_CHECK; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2172 | srv->check.status = HCHK_STATUS_INI; |
| 2173 | srv->check.server = srv; |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2174 | srv->check.proxy = proxy; |
Christopher Faulet | 5d503fc | 2020-03-30 20:34:34 +0200 | [diff] [blame] | 2175 | srv->check.tcpcheck_rules = &proxy->tcpcheck_rules; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2176 | |
Christopher Faulet | 3829046 | 2020-04-21 11:46:40 +0200 | [diff] [blame] | 2177 | srv->agent.obj_type = OBJ_TYPE_CHECK; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2178 | srv->agent.status = HCHK_STATUS_INI; |
| 2179 | srv->agent.server = srv; |
Willy Tarreau | 1ba3203 | 2019-01-21 07:48:26 +0100 | [diff] [blame] | 2180 | srv->agent.proxy = proxy; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2181 | srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW); |
Frédéric Lécaille | f46c10c | 2020-11-23 14:29:28 +0100 | [diff] [blame] | 2182 | #if defined(USE_QUIC) |
| 2183 | srv->cids = EB_ROOT_UNIQUE; |
| 2184 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2185 | |
Amaury Denoyelle | 7f8f6cb | 2020-11-10 14:24:31 +0100 | [diff] [blame] | 2186 | srv->extra_counters = NULL; |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 2187 | #ifdef USE_OPENSSL |
| 2188 | HA_RWLOCK_INIT(&srv->ssl_ctx.lock); |
| 2189 | #endif |
Amaury Denoyelle | 7f8f6cb | 2020-11-10 14:24:31 +0100 | [diff] [blame] | 2190 | |
Willy Tarreau | 975b155 | 2019-06-06 16:25:55 +0200 | [diff] [blame] | 2191 | /* please don't put default server settings here, they are set in |
Willy Tarreau | 144289b | 2021-02-12 08:19:01 +0100 | [diff] [blame] | 2192 | * proxy_preset_defaults(). |
Willy Tarreau | 975b155 | 2019-06-06 16:25:55 +0200 | [diff] [blame] | 2193 | */ |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2194 | return srv; |
| 2195 | } |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 2196 | |
Amaury Denoyelle | 828adf0 | 2021-03-16 17:20:15 +0100 | [diff] [blame] | 2197 | /* Deallocate a server <srv> and its member. <srv> must be allocated. |
| 2198 | */ |
| 2199 | void free_server(struct server *srv) |
| 2200 | { |
| 2201 | task_destroy(srv->warmup); |
| 2202 | |
| 2203 | free(srv->id); |
| 2204 | free(srv->cookie); |
| 2205 | free(srv->hostname); |
| 2206 | free(srv->hostname_dn); |
| 2207 | free((char*)srv->conf.file); |
| 2208 | free(srv->per_thr); |
| 2209 | free(srv->curr_idle_thr); |
| 2210 | free(srv->resolvers_id); |
| 2211 | free(srv->addr_node.key); |
Amaury Denoyelle | fb24794 | 2021-04-20 16:48:22 +0200 | [diff] [blame] | 2212 | free(srv->lb_nodes); |
Amaury Denoyelle | 828adf0 | 2021-03-16 17:20:15 +0100 | [diff] [blame] | 2213 | |
| 2214 | if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) { |
| 2215 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv) |
| 2216 | xprt_get(XPRT_SSL)->destroy_srv(srv); |
| 2217 | } |
| 2218 | HA_SPIN_DESTROY(&srv->lock); |
| 2219 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2220 | LIST_DELETE(&srv->global_list); |
Amaury Denoyelle | 828adf0 | 2021-03-16 17:20:15 +0100 | [diff] [blame] | 2221 | |
| 2222 | EXTRA_COUNTERS_FREE(srv->extra_counters); |
| 2223 | |
| 2224 | free(srv); |
| 2225 | srv = NULL; |
| 2226 | } |
| 2227 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2228 | /* |
| 2229 | * Parse as much as possible such a range string argument: low[-high] |
| 2230 | * Set <nb_low> and <nb_high> values so that they may be reused by this loop |
| 2231 | * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1. |
| 2232 | * Fails if 'low' < 0 or 'high' is present and not higher than 'low'. |
| 2233 | * Returns 0 if succeeded, -1 if not. |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2234 | */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2235 | static int _srv_parse_tmpl_range(struct server *srv, const char *arg, |
| 2236 | int *nb_low, int *nb_high) |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2237 | { |
| 2238 | char *nb_high_arg; |
| 2239 | |
| 2240 | *nb_high = 0; |
| 2241 | chunk_printf(&trash, "%s", arg); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2242 | *nb_low = atoi(trash.area); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2243 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2244 | if ((nb_high_arg = strchr(trash.area, '-'))) { |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2245 | *nb_high_arg++ = '\0'; |
| 2246 | *nb_high = atoi(nb_high_arg); |
| 2247 | } |
| 2248 | else { |
| 2249 | *nb_high += *nb_low; |
| 2250 | *nb_low = 1; |
| 2251 | } |
| 2252 | |
| 2253 | if (*nb_low < 0 || *nb_high < *nb_low) |
| 2254 | return -1; |
| 2255 | |
| 2256 | return 0; |
| 2257 | } |
| 2258 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2259 | /* Parse as much as possible such a range string argument: low[-high] |
| 2260 | * Set <nb_low> and <nb_high> values so that they may be reused by this loop |
| 2261 | * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1. |
| 2262 | * |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2263 | * This function is first intended to be used through parse_server to |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2264 | * initialize a new server on startup. |
| 2265 | * |
| 2266 | * Fails if 'low' < 0 or 'high' is present and not higher than 'low'. |
| 2267 | * Returns 0 if succeeded, -1 if not. |
| 2268 | */ |
| 2269 | static inline void _srv_parse_set_id_from_prefix(struct server *srv, |
| 2270 | const char *prefix, int nb) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2271 | { |
| 2272 | chunk_printf(&trash, "%s%d", prefix, nb); |
| 2273 | free(srv->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2274 | srv->id = strdup(trash.area); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2275 | } |
| 2276 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2277 | /* Initialize as much as possible servers from <srv> server template. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2278 | * Note that a server template is a special server with |
| 2279 | * a few different parameters than a server which has |
| 2280 | * been parsed mostly the same way as a server. |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2281 | * |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2282 | * This function is first intended to be used through parse_server to |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2283 | * initialize a new server on startup. |
| 2284 | * |
Joseph Herlant | 4446682 | 2018-11-15 08:57:51 -0800 | [diff] [blame] | 2285 | * Returns the number of servers successfully allocated, |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2286 | * 'srv' template included. |
| 2287 | */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2288 | static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2289 | { |
| 2290 | int i; |
| 2291 | struct server *newsrv; |
| 2292 | |
| 2293 | for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) { |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2294 | newsrv = new_server(px); |
| 2295 | if (!newsrv) |
| 2296 | goto err; |
| 2297 | |
Christopher Faulet | 75bef00 | 2020-11-02 22:04:55 +0100 | [diff] [blame] | 2298 | newsrv->conf.file = strdup(srv->conf.file); |
| 2299 | newsrv->conf.line = srv->conf.line; |
| 2300 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2301 | srv_settings_cpy(newsrv, srv, 1); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2302 | srv_prepare_for_resolution(newsrv, srv->hostname); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2303 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2304 | if (newsrv->sni_expr) { |
| 2305 | newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL); |
| 2306 | if (!newsrv->ssl_ctx.sni) |
| 2307 | goto err; |
| 2308 | } |
| 2309 | #endif |
| 2310 | /* Set this new server ID. */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2311 | _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2312 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2313 | /* Linked backwards first. This will be restablished after parsing. */ |
| 2314 | newsrv->next = px->srv; |
| 2315 | px->srv = newsrv; |
| 2316 | } |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2317 | _srv_parse_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2318 | |
| 2319 | return i - srv->tmpl_info.nb_low; |
| 2320 | |
| 2321 | err: |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2322 | _srv_parse_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2323 | if (newsrv) { |
| 2324 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2325 | release_sample_expr(newsrv->ssl_ctx.sni); |
| 2326 | #endif |
| 2327 | free_check(&newsrv->agent); |
| 2328 | free_check(&newsrv->check); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2329 | LIST_DELETE(&newsrv->global_list); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2330 | } |
| 2331 | free(newsrv); |
| 2332 | return i - srv->tmpl_info.nb_low; |
| 2333 | } |
| 2334 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2335 | /* Allocate a new server pointed by <srv> and try to parse the first arguments |
| 2336 | * in <args> as an address for a server or an address-range for a template or |
| 2337 | * nothing for a default-server. <cur_arg> is incremented to the next argument. |
| 2338 | * |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2339 | * This function is first intended to be used through parse_server to |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2340 | * initialize a new server on startup. |
| 2341 | * |
| 2342 | * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case |
| 2343 | * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated, |
| 2344 | * <srv> will be set to NULL. |
| 2345 | */ |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2346 | static int _srv_parse_init(struct server **srv, char **args, int *cur_arg, |
| 2347 | struct proxy *curproxy, |
| 2348 | int parse_flags, char **errmsg) |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2349 | { |
| 2350 | struct server *newsrv = NULL; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2351 | const char *err = NULL; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2352 | int err_code = 0; |
Willy Tarreau | 07101d5 | 2015-09-08 16:16:35 +0200 | [diff] [blame] | 2353 | char *fqdn = NULL; |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2354 | int tmpl_range_low = 0, tmpl_range_high = 0; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2355 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2356 | *srv = NULL; |
| 2357 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2358 | /* There is no mandatory first arguments for default server. */ |
| 2359 | if (parse_flags & SRV_PARSE_PARSE_ADDR) { |
| 2360 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2361 | if (!*args[3]) { |
| 2362 | /* 'server-template' line number of argument check. */ |
| 2363 | memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.", |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2364 | args[0]); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2365 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2366 | goto out; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2367 | } |
| 2368 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2369 | err = invalid_prefix_char(args[1]); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2370 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2371 | else { |
| 2372 | if (!*args[2]) { |
| 2373 | /* 'server' line number of argument check. */ |
| 2374 | memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.", |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2375 | args[0]); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2376 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2377 | goto out; |
| 2378 | } |
| 2379 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2380 | err = invalid_char(args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2381 | } |
| 2382 | |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2383 | if (err) { |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2384 | memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.", |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2385 | *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2386 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2387 | goto out; |
| 2388 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2389 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2390 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2391 | *cur_arg = 2; |
| 2392 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2393 | /* Parse server-template <nb | range> arg. */ |
| 2394 | if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) { |
| 2395 | memprintf(errmsg, "Wrong %s number or range arg '%s'.", |
| 2396 | args[0], args[*cur_arg]); |
| 2397 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2398 | goto out; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2399 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2400 | (*cur_arg)++; |
| 2401 | } |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2402 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2403 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
| 2404 | struct sockaddr_storage *sk; |
| 2405 | int port1, port2, port; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2406 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2407 | *srv = newsrv = new_server(curproxy); |
| 2408 | if (!newsrv) { |
| 2409 | memprintf(errmsg, "out of memory."); |
| 2410 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2411 | goto out; |
| 2412 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2413 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2414 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2415 | newsrv->tmpl_info.nb_low = tmpl_range_low; |
| 2416 | newsrv->tmpl_info.nb_high = tmpl_range_high; |
| 2417 | } |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2418 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2419 | if (parse_flags & SRV_PARSE_DYNAMIC) |
| 2420 | newsrv->flags |= SRV_F_DYNAMIC; |
| 2421 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2422 | /* Note: for a server template, its id is its prefix. |
| 2423 | * This is a temporary id which will be used for server allocations to come |
| 2424 | * after parsing. |
| 2425 | */ |
| 2426 | if (!(parse_flags & SRV_PARSE_TEMPLATE)) |
| 2427 | newsrv->id = strdup(args[1]); |
| 2428 | else |
| 2429 | newsrv->tmpl_info.prefix = strdup(args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2430 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2431 | /* several ways to check the port component : |
| 2432 | * - IP => port=+0, relative (IPv4 only) |
| 2433 | * - IP: => port=+0, relative |
| 2434 | * - IP:N => port=N, absolute |
| 2435 | * - IP:+N => port=+N, relative |
| 2436 | * - IP:-N => port=-N, relative |
| 2437 | */ |
| 2438 | if (!(parse_flags & SRV_PARSE_PARSE_ADDR)) |
| 2439 | goto skip_addr; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 2440 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2441 | sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL, |
| 2442 | errmsg, NULL, &fqdn, |
| 2443 | (parse_flags & SRV_PARSE_INITIAL_RESOLVE ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT); |
| 2444 | if (!sk) { |
| 2445 | memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg); |
| 2446 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2447 | goto out; |
| 2448 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2449 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2450 | if (!port1 || !port2) { |
| 2451 | /* no port specified, +offset, -offset */ |
| 2452 | newsrv->flags |= SRV_F_MAPPORTS; |
| 2453 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2454 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2455 | /* save hostname and create associated name resolution */ |
| 2456 | if (fqdn) { |
| 2457 | if (fqdn[0] == '_') { /* SRV record */ |
| 2458 | /* Check if a SRV request already exists, and if not, create it */ |
| 2459 | if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL) |
| 2460 | newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn); |
| 2461 | if (newsrv->srvrq == NULL) { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 2462 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2463 | goto out; |
Baptiste Assmann | 4f91f7e | 2017-05-03 12:09:54 +0200 | [diff] [blame] | 2464 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 2465 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2466 | else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) { |
| 2467 | memprintf(errmsg, "Can't create DNS resolution for server '%s'", |
| 2468 | newsrv->id); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2469 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2470 | goto out; |
| 2471 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2472 | } |
Frédéric Lécaille | 5c3cd97 | 2017-03-15 16:36:09 +0100 | [diff] [blame] | 2473 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2474 | newsrv->addr = *sk; |
| 2475 | newsrv->svc_port = port; |
| 2476 | // we don't need to lock the server here, because |
| 2477 | // we are in the process of initializing |
| 2478 | srv_set_addr_desc(newsrv); |
| 2479 | |
| 2480 | if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) { |
| 2481 | memprintf(errmsg, "Unknown protocol family %d '%s'", |
| 2482 | newsrv->addr.ss_family, args[*cur_arg]); |
| 2483 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2484 | goto out; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2485 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2486 | |
| 2487 | (*cur_arg)++; |
| 2488 | skip_addr: |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2489 | if (!(parse_flags & SRV_PARSE_DYNAMIC)) { |
| 2490 | /* Copy default server settings to new server */ |
| 2491 | srv_settings_cpy(newsrv, &curproxy->defsrv, 0); |
| 2492 | } else { |
| 2493 | /* Initialize dynamic server weight to 1 */ |
| 2494 | newsrv->uweight = newsrv->iweight = 1; |
| 2495 | |
| 2496 | /* A dynamic server is disabled on startup */ |
| 2497 | newsrv->next_admin = SRV_ADMF_FMAINT; |
| 2498 | newsrv->next_state = SRV_ST_STOPPED; |
| 2499 | server_recalc_eweight(newsrv, 0); |
| 2500 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2501 | HA_SPIN_INIT(&newsrv->lock); |
| 2502 | } |
| 2503 | else { |
| 2504 | *srv = newsrv = &curproxy->defsrv; |
| 2505 | *cur_arg = 1; |
| 2506 | newsrv->resolv_opts.family_prio = AF_INET6; |
| 2507 | newsrv->resolv_opts.accept_duplicate_ip = 0; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2508 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2509 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2510 | free(fqdn); |
| 2511 | return 0; |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 2512 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2513 | out: |
| 2514 | free(fqdn); |
| 2515 | return err_code; |
| 2516 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2517 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2518 | /* Parse the server keyword in <args>. |
| 2519 | * <cur_arg> is incremented beyond the keyword optional value. Note that this |
| 2520 | * might not be the case if an error is reported. |
| 2521 | * |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2522 | * This function is first intended to be used through parse_server to |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2523 | * initialize a new server on startup. |
| 2524 | * |
| 2525 | * A mask of errors is returned. ERR_FATAL is set if the parsing should be |
| 2526 | * interrupted. |
| 2527 | */ |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2528 | static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg, |
| 2529 | struct proxy *curproxy, |
| 2530 | int parse_flags, char **errmsg) |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2531 | { |
| 2532 | int err_code = 0; |
| 2533 | struct srv_kw *kw; |
| 2534 | const char *best; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2535 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2536 | kw = srv_find_kw(args[*cur_arg]); |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2537 | if (!kw) { |
| 2538 | best = srv_find_best_kw(args[*cur_arg]); |
| 2539 | if (best) |
| 2540 | memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?", |
| 2541 | args[*cur_arg], best); |
| 2542 | else |
| 2543 | memprintf(errmsg, "unknown keyword '%s'.", |
| 2544 | args[*cur_arg]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2545 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2546 | return ERR_ALERT | ERR_FATAL; |
| 2547 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2548 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2549 | if (!kw->parse) { |
| 2550 | memprintf(errmsg, "'%s' option is not implemented in this version (check build options)", |
| 2551 | args[*cur_arg]); |
| 2552 | err_code = ERR_ALERT | ERR_FATAL; |
| 2553 | goto out; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2554 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2555 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2556 | if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) { |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2557 | memprintf(errmsg, "'%s' option is not accepted in default-server sections", |
| 2558 | args[*cur_arg]); |
| 2559 | err_code = ERR_ALERT; |
| 2560 | goto out; |
| 2561 | } |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2562 | else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) { |
| 2563 | memprintf(errmsg, "'%s' option is not accepted for dynamic server", |
| 2564 | args[*cur_arg]); |
| 2565 | err_code |= ERR_ALERT; |
| 2566 | goto out; |
| 2567 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2568 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2569 | err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2570 | |
| 2571 | out: |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2572 | if (kw->skip != -1) |
| 2573 | *cur_arg += 1 + kw->skip; |
| 2574 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2575 | return err_code; |
| 2576 | } |
| 2577 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2578 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2579 | /* This function is first intended to be used through parse_server to |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2580 | * initialize a new server on startup. |
| 2581 | */ |
| 2582 | static int _srv_parse_sni_expr_init(char **args, int cur_arg, |
| 2583 | struct server *srv, struct proxy *proxy, |
| 2584 | char **errmsg) |
| 2585 | { |
| 2586 | int ret; |
| 2587 | |
| 2588 | if (!srv->sni_expr) |
| 2589 | return 0; |
| 2590 | |
| 2591 | ret = server_parse_sni_expr(srv, proxy, errmsg); |
| 2592 | if (!ret) |
| 2593 | return 0; |
| 2594 | |
| 2595 | return ret; |
| 2596 | } |
| 2597 | #endif |
| 2598 | |
| 2599 | /* Server initializations finalization. |
| 2600 | * Initialize health check, agent check and SNI expression if enabled. |
| 2601 | * Must not be called for a default server instance. |
| 2602 | * |
Ilya Shipitsin | ba13f16 | 2021-03-19 22:21:44 +0500 | [diff] [blame] | 2603 | * This function is first intended to be used through parse_server to |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2604 | * initialize a new server on startup. |
| 2605 | */ |
| 2606 | static int _srv_parse_finalize(char **args, int cur_arg, |
| 2607 | struct server *srv, struct proxy *px, |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2608 | int parse_flags, char **errmsg) |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2609 | { |
| 2610 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2611 | int ret; |
| 2612 | #endif |
| 2613 | |
| 2614 | if (srv->do_check && srv->trackit) { |
| 2615 | memprintf(errmsg, "unable to enable checks and tracking at the same time!"); |
| 2616 | return ERR_ALERT | ERR_FATAL; |
| 2617 | } |
| 2618 | |
| 2619 | if (srv->do_agent && !srv->agent.port) { |
| 2620 | memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.", |
| 2621 | srv->id); |
| 2622 | return ERR_ALERT | ERR_FATAL; |
| 2623 | } |
| 2624 | |
| 2625 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2626 | if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0) |
| 2627 | return ret; |
| 2628 | #endif |
| 2629 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2630 | /* A dynamic server is disabled on startup. It must not be counted as |
| 2631 | * an active backend entry. |
| 2632 | */ |
| 2633 | if (!(parse_flags & SRV_PARSE_DYNAMIC)) { |
| 2634 | if (srv->flags & SRV_F_BACKUP) |
| 2635 | px->srv_bck++; |
| 2636 | else |
| 2637 | px->srv_act++; |
| 2638 | } |
| 2639 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2640 | srv_lb_commit_status(srv); |
| 2641 | |
| 2642 | return 0; |
| 2643 | } |
| 2644 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2645 | int parse_server(const char *file, int linenum, char **args, |
| 2646 | struct proxy *curproxy, const struct proxy *defproxy, |
| 2647 | int parse_flags) |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2648 | { |
| 2649 | struct server *newsrv = NULL; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2650 | char *errmsg = NULL; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2651 | int err_code = 0; |
| 2652 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2653 | int cur_arg; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2654 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2655 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) { |
| 2656 | ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 2657 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2658 | goto out; |
| 2659 | } |
| 2660 | else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) { |
| 2661 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2662 | goto out; |
| 2663 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2664 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2665 | if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) == |
| 2666 | (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) { |
| 2667 | if (!*args[2]) |
| 2668 | return 0; |
| 2669 | } |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2670 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2671 | err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy, |
| 2672 | parse_flags, &errmsg); |
| 2673 | if (errmsg) { |
| 2674 | ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
| 2675 | free(errmsg); |
| 2676 | } |
Amaury Denoyelle | cf58dd7 | 2021-03-08 16:35:54 +0100 | [diff] [blame] | 2677 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2678 | /* the servers are linked backwards first */ |
| 2679 | if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
| 2680 | newsrv->next = curproxy->srv; |
| 2681 | curproxy->srv = newsrv; |
| 2682 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2683 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2684 | if (err_code & ERR_CODE) |
| 2685 | goto out; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2686 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2687 | newsrv->conf.file = strdup(file); |
| 2688 | newsrv->conf.line = linenum; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2689 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2690 | while (*args[cur_arg]) { |
| 2691 | errmsg = NULL; |
| 2692 | err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy, |
| 2693 | parse_flags, &errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2694 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2695 | if (err_code & ERR_ALERT) { |
| 2696 | display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg); |
| 2697 | free(errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2698 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2699 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2700 | if (err_code & ERR_FATAL) |
| 2701 | goto out; |
| 2702 | } |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2703 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2704 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2705 | err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags, &errmsg); |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2706 | if (err_code) { |
| 2707 | display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg); |
| 2708 | free(errmsg); |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2709 | } |
| 2710 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2711 | if (err_code & ERR_FATAL) |
| 2712 | goto out; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2713 | } |
Amaury Denoyelle | cf58dd7 | 2021-03-08 16:35:54 +0100 | [diff] [blame] | 2714 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2715 | if (parse_flags & SRV_PARSE_TEMPLATE) |
| 2716 | _srv_parse_tmpl_init(newsrv, curproxy); |
| 2717 | |
Amaury Denoyelle | 24abb0c | 2021-05-07 15:13:51 +0200 | [diff] [blame] | 2718 | HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight, |
Amaury Denoyelle | da0e7f6 | 2021-03-30 10:26:27 +0200 | [diff] [blame] | 2719 | "parsing [%s:%d] : 'server %s' : configured with weight of 0 will never be selected by load balancing algorithms\n", |
| 2720 | file, linenum, newsrv->id); |
| 2721 | |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2722 | return 0; |
| 2723 | |
| 2724 | out: |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2725 | return err_code; |
| 2726 | } |
| 2727 | |
Baptiste Assmann | 19a106d | 2015-07-08 22:03:56 +0200 | [diff] [blame] | 2728 | /* Returns a pointer to the first server matching either id <id>. |
| 2729 | * NULL is returned if no match is found. |
| 2730 | * the lookup is performed in the backend <bk> |
| 2731 | */ |
| 2732 | struct server *server_find_by_id(struct proxy *bk, int id) |
| 2733 | { |
| 2734 | struct eb32_node *eb32; |
| 2735 | struct server *curserver; |
| 2736 | |
| 2737 | if (!bk || (id ==0)) |
| 2738 | return NULL; |
| 2739 | |
| 2740 | /* <bk> has no backend capabilities, so it can't have a server */ |
| 2741 | if (!(bk->cap & PR_CAP_BE)) |
| 2742 | return NULL; |
| 2743 | |
| 2744 | curserver = NULL; |
| 2745 | |
| 2746 | eb32 = eb32_lookup(&bk->conf.used_server_id, id); |
| 2747 | if (eb32) |
| 2748 | curserver = container_of(eb32, struct server, conf.id); |
| 2749 | |
| 2750 | return curserver; |
| 2751 | } |
| 2752 | |
| 2753 | /* Returns a pointer to the first server matching either name <name>, or id |
| 2754 | * if <name> starts with a '#'. NULL is returned if no match is found. |
| 2755 | * the lookup is performed in the backend <bk> |
| 2756 | */ |
| 2757 | struct server *server_find_by_name(struct proxy *bk, const char *name) |
| 2758 | { |
| 2759 | struct server *curserver; |
| 2760 | |
| 2761 | if (!bk || !name) |
| 2762 | return NULL; |
| 2763 | |
| 2764 | /* <bk> has no backend capabilities, so it can't have a server */ |
| 2765 | if (!(bk->cap & PR_CAP_BE)) |
| 2766 | return NULL; |
| 2767 | |
| 2768 | curserver = NULL; |
| 2769 | if (*name == '#') { |
| 2770 | curserver = server_find_by_id(bk, atoi(name + 1)); |
| 2771 | if (curserver) |
| 2772 | return curserver; |
| 2773 | } |
| 2774 | else { |
| 2775 | curserver = bk->srv; |
| 2776 | |
| 2777 | while (curserver && (strcmp(curserver->id, name) != 0)) |
| 2778 | curserver = curserver->next; |
| 2779 | |
| 2780 | if (curserver) |
| 2781 | return curserver; |
| 2782 | } |
| 2783 | |
| 2784 | return NULL; |
| 2785 | } |
| 2786 | |
| 2787 | struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff) |
| 2788 | { |
| 2789 | struct server *byname; |
| 2790 | struct server *byid; |
| 2791 | |
| 2792 | if (!name && !id) |
| 2793 | return NULL; |
| 2794 | |
| 2795 | if (diff) |
| 2796 | *diff = 0; |
| 2797 | |
| 2798 | byname = byid = NULL; |
| 2799 | |
| 2800 | if (name) { |
| 2801 | byname = server_find_by_name(bk, name); |
| 2802 | if (byname && (!id || byname->puid == id)) |
| 2803 | return byname; |
| 2804 | } |
| 2805 | |
| 2806 | /* remaining possibilities : |
| 2807 | * - name not set |
| 2808 | * - name set but not found |
| 2809 | * - name found but ID doesn't match |
| 2810 | */ |
| 2811 | if (id) { |
| 2812 | byid = server_find_by_id(bk, id); |
| 2813 | if (byid) { |
| 2814 | if (byname) { |
| 2815 | /* use id only if forced by configuration */ |
| 2816 | if (byid->flags & SRV_F_FORCED_ID) { |
| 2817 | if (diff) |
| 2818 | *diff |= 2; |
| 2819 | return byid; |
| 2820 | } |
| 2821 | else { |
| 2822 | if (diff) |
| 2823 | *diff |= 1; |
| 2824 | return byname; |
| 2825 | } |
| 2826 | } |
| 2827 | |
| 2828 | /* remaining possibilities: |
| 2829 | * - name not set |
| 2830 | * - name set but not found |
| 2831 | */ |
| 2832 | if (name && diff) |
| 2833 | *diff |= 2; |
| 2834 | return byid; |
| 2835 | } |
| 2836 | |
| 2837 | /* id bot found */ |
| 2838 | if (byname) { |
| 2839 | if (diff) |
| 2840 | *diff |= 1; |
| 2841 | return byname; |
| 2842 | } |
| 2843 | } |
| 2844 | |
| 2845 | return NULL; |
| 2846 | } |
| 2847 | |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 2848 | /* |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2849 | * update a server's current IP address. |
| 2850 | * ip is a pointer to the new IP address, whose address family is ip_sin_family. |
| 2851 | * ip is in network format. |
| 2852 | * updater is a string which contains an information about the requester of the update. |
| 2853 | * updater is used if not NULL. |
| 2854 | * |
| 2855 | * A log line and a stderr warning message is generated based on server's backend options. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 2856 | * |
| 2857 | * Must be called with the server lock held. |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2858 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2859 | int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater) |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2860 | { |
Christopher Faulet | d6c6b5f | 2020-09-08 10:27:24 +0200 | [diff] [blame] | 2861 | /* save the new IP family & address if necessary */ |
| 2862 | switch (ip_sin_family) { |
| 2863 | case AF_INET: |
| 2864 | if (s->addr.ss_family == ip_sin_family && |
| 2865 | !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4)) |
| 2866 | return 0; |
| 2867 | break; |
| 2868 | case AF_INET6: |
| 2869 | if (s->addr.ss_family == ip_sin_family && |
| 2870 | !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16)) |
| 2871 | return 0; |
| 2872 | break; |
| 2873 | }; |
| 2874 | |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2875 | /* generates a log line and a warning on stderr */ |
| 2876 | if (1) { |
| 2877 | /* book enough space for both IPv4 and IPv6 */ |
| 2878 | char oldip[INET6_ADDRSTRLEN]; |
| 2879 | char newip[INET6_ADDRSTRLEN]; |
| 2880 | |
| 2881 | memset(oldip, '\0', INET6_ADDRSTRLEN); |
| 2882 | memset(newip, '\0', INET6_ADDRSTRLEN); |
| 2883 | |
| 2884 | /* copy old IP address in a string */ |
| 2885 | switch (s->addr.ss_family) { |
| 2886 | case AF_INET: |
| 2887 | inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN); |
| 2888 | break; |
| 2889 | case AF_INET6: |
| 2890 | inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN); |
| 2891 | break; |
Christopher Faulet | b0b7607 | 2020-09-08 10:38:40 +0200 | [diff] [blame] | 2892 | default: |
| 2893 | strcpy(oldip, "(none)"); |
| 2894 | break; |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2895 | }; |
| 2896 | |
| 2897 | /* copy new IP address in a string */ |
| 2898 | switch (ip_sin_family) { |
| 2899 | case AF_INET: |
| 2900 | inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN); |
| 2901 | break; |
| 2902 | case AF_INET6: |
| 2903 | inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN); |
| 2904 | break; |
| 2905 | }; |
| 2906 | |
| 2907 | /* save log line into a buffer */ |
| 2908 | chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s", |
| 2909 | s->proxy->id, s->id, oldip, newip, updater); |
| 2910 | |
| 2911 | /* write the buffer on stderr */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2912 | ha_warning("%s.\n", trash.area); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2913 | |
| 2914 | /* send a log */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2915 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2916 | } |
| 2917 | |
| 2918 | /* save the new IP family */ |
| 2919 | s->addr.ss_family = ip_sin_family; |
| 2920 | /* save the new IP address */ |
| 2921 | switch (ip_sin_family) { |
| 2922 | case AF_INET: |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2923 | memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2924 | break; |
| 2925 | case AF_INET6: |
| 2926 | memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16); |
| 2927 | break; |
| 2928 | }; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2929 | srv_set_dyncookie(s); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 2930 | srv_set_addr_desc(s); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2931 | |
| 2932 | return 0; |
| 2933 | } |
| 2934 | |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 2935 | /* update agent health check address and port |
| 2936 | * addr can be ip4/ip6 or a hostname |
| 2937 | * if one error occurs, don't apply anything |
| 2938 | * must be called with the server lock held. |
| 2939 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2940 | const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port) |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 2941 | { |
| 2942 | struct sockaddr_storage sk; |
| 2943 | struct buffer *msg; |
| 2944 | int new_port; |
| 2945 | |
| 2946 | msg = get_trash_chunk(); |
| 2947 | chunk_reset(msg); |
| 2948 | |
| 2949 | if (!(s->agent.state & CHK_ST_ENABLED)) { |
| 2950 | chunk_strcat(msg, "agent checks are not enabled on this server"); |
| 2951 | goto out; |
| 2952 | } |
| 2953 | if (addr) { |
| 2954 | memset(&sk, 0, sizeof(struct sockaddr_storage)); |
| 2955 | if (str2ip(addr, &sk) == NULL) { |
| 2956 | chunk_appendf(msg, "invalid addr '%s'", addr); |
| 2957 | goto out; |
| 2958 | } |
| 2959 | } |
| 2960 | if (port) { |
| 2961 | if (strl2irc(port, strlen(port), &new_port) != 0) { |
| 2962 | chunk_appendf(msg, "provided port is not an integer"); |
| 2963 | goto out; |
| 2964 | } |
| 2965 | if (new_port < 0 || new_port > 65535) { |
| 2966 | chunk_appendf(msg, "provided port is invalid"); |
| 2967 | goto out; |
| 2968 | } |
| 2969 | } |
| 2970 | out: |
| 2971 | if (msg->data) |
| 2972 | return msg->area; |
| 2973 | else { |
| 2974 | if (addr) |
| 2975 | set_srv_agent_addr(s, &sk); |
| 2976 | if (port) |
| 2977 | set_srv_agent_port(s, new_port); |
| 2978 | } |
| 2979 | return NULL; |
| 2980 | } |
| 2981 | |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 2982 | /* update server health check address and port |
| 2983 | * addr must be ip4 or ip6, it won't be resolved |
| 2984 | * if one error occurs, don't apply anything |
| 2985 | * must be called with the server lock held. |
| 2986 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2987 | const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port) |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 2988 | { |
| 2989 | struct sockaddr_storage sk; |
| 2990 | struct buffer *msg; |
| 2991 | int new_port; |
| 2992 | |
| 2993 | msg = get_trash_chunk(); |
| 2994 | chunk_reset(msg); |
| 2995 | |
| 2996 | if (!(s->check.state & CHK_ST_ENABLED)) { |
| 2997 | chunk_strcat(msg, "health checks are not enabled on this server"); |
| 2998 | goto out; |
| 2999 | } |
| 3000 | if (addr) { |
| 3001 | memset(&sk, 0, sizeof(struct sockaddr_storage)); |
| 3002 | if (str2ip2(addr, &sk, 0) == NULL) { |
| 3003 | chunk_appendf(msg, "invalid addr '%s'", addr); |
| 3004 | goto out; |
| 3005 | } |
| 3006 | } |
| 3007 | if (port) { |
| 3008 | if (strl2irc(port, strlen(port), &new_port) != 0) { |
| 3009 | chunk_appendf(msg, "provided port is not an integer"); |
| 3010 | goto out; |
| 3011 | } |
| 3012 | if (new_port < 0 || new_port > 65535) { |
| 3013 | chunk_appendf(msg, "provided port is invalid"); |
| 3014 | goto out; |
| 3015 | } |
| 3016 | /* prevent the update of port to 0 if MAPPORTS are in use */ |
| 3017 | if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) { |
| 3018 | chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use"); |
| 3019 | goto out; |
| 3020 | } |
| 3021 | } |
| 3022 | out: |
| 3023 | if (msg->data) |
| 3024 | return msg->area; |
| 3025 | else { |
| 3026 | if (addr) |
| 3027 | s->check.addr = sk; |
| 3028 | if (port) |
| 3029 | s->check.port = new_port; |
| 3030 | } |
| 3031 | return NULL; |
| 3032 | } |
| 3033 | |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 3034 | /* |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3035 | * This function update a server's addr and port only for AF_INET and AF_INET6 families. |
| 3036 | * |
| 3037 | * Caller can pass its name through <updater> to get it integrated in the response message |
| 3038 | * returned by the function. |
| 3039 | * |
| 3040 | * The function first does the following, in that order: |
| 3041 | * - validates the new addr and/or port |
| 3042 | * - checks if an update is required (new IP or port is different than current ones) |
| 3043 | * - checks the update is allowed: |
| 3044 | * - don't switch from/to a family other than AF_INET4 and AF_INET6 |
| 3045 | * - allow all changes if no CHECKS are configured |
| 3046 | * - if CHECK is configured: |
| 3047 | * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports |
| 3048 | * - applies required changes to both ADDR and PORT if both 'required' and 'allowed' |
| 3049 | * conditions are met |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3050 | * |
| 3051 | * Must be called with the server lock held. |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3052 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3053 | const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater) |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3054 | { |
| 3055 | struct sockaddr_storage sa; |
| 3056 | int ret, port_change_required; |
| 3057 | char current_addr[INET6_ADDRSTRLEN]; |
David Carlier | 327298c | 2016-11-20 10:42:38 +0000 | [diff] [blame] | 3058 | uint16_t current_port, new_port; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3059 | struct buffer *msg; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3060 | int changed = 0; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3061 | |
| 3062 | msg = get_trash_chunk(); |
| 3063 | chunk_reset(msg); |
| 3064 | |
| 3065 | if (addr) { |
| 3066 | memset(&sa, 0, sizeof(struct sockaddr_storage)); |
| 3067 | if (str2ip2(addr, &sa, 0) == NULL) { |
| 3068 | chunk_printf(msg, "Invalid addr '%s'", addr); |
| 3069 | goto out; |
| 3070 | } |
| 3071 | |
| 3072 | /* changes are allowed on AF_INET* families only */ |
| 3073 | if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) { |
| 3074 | chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file"); |
| 3075 | goto out; |
| 3076 | } |
| 3077 | |
| 3078 | /* collecting data currently setup */ |
| 3079 | memset(current_addr, '\0', sizeof(current_addr)); |
| 3080 | ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr)); |
| 3081 | /* changes are allowed on AF_INET* families only */ |
| 3082 | if ((ret != AF_INET) && (ret != AF_INET6)) { |
| 3083 | chunk_printf(msg, "Update for the current server address family is only supported through configuration file"); |
| 3084 | goto out; |
| 3085 | } |
| 3086 | |
| 3087 | /* applying ADDR changes if required and allowed |
| 3088 | * ipcmp returns 0 when both ADDR are the same |
| 3089 | */ |
| 3090 | if (ipcmp(&s->addr, &sa) == 0) { |
| 3091 | chunk_appendf(msg, "no need to change the addr"); |
| 3092 | goto port; |
| 3093 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3094 | ipcpy(&sa, &s->addr); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3095 | changed = 1; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3096 | |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3097 | /* update report for caller */ |
| 3098 | chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr); |
| 3099 | } |
| 3100 | |
| 3101 | port: |
| 3102 | if (port) { |
| 3103 | char sign = '\0'; |
| 3104 | char *endptr; |
| 3105 | |
| 3106 | if (addr) |
| 3107 | chunk_appendf(msg, ", "); |
| 3108 | |
| 3109 | /* collecting data currently setup */ |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 3110 | current_port = s->svc_port; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3111 | |
| 3112 | /* check if PORT change is required */ |
| 3113 | port_change_required = 0; |
| 3114 | |
| 3115 | sign = *port; |
Ryabin Sergey | 77ee752 | 2017-01-11 19:39:55 +0400 | [diff] [blame] | 3116 | errno = 0; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3117 | new_port = strtol(port, &endptr, 10); |
| 3118 | if ((errno != 0) || (port == endptr)) { |
| 3119 | chunk_appendf(msg, "problem converting port '%s' to an int", port); |
| 3120 | goto out; |
| 3121 | } |
| 3122 | |
| 3123 | /* check if caller triggers a port mapped or offset */ |
| 3124 | if (sign == '-' || (sign == '+')) { |
| 3125 | /* check if server currently uses port map */ |
| 3126 | if (!(s->flags & SRV_F_MAPPORTS)) { |
| 3127 | /* switch from fixed port to port map mandatorily triggers |
| 3128 | * a port change */ |
| 3129 | port_change_required = 1; |
| 3130 | /* check is configured |
| 3131 | * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port |
| 3132 | * prevent PORT change if check doesn't have it's dedicated port while switching |
| 3133 | * to port mapping */ |
William Dauchy | 69f118d | 2021-02-03 22:30:07 +0100 | [diff] [blame] | 3134 | if (!s->check.port) { |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3135 | 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."); |
| 3136 | goto out; |
| 3137 | } |
| 3138 | } |
| 3139 | /* we're already using port maps */ |
| 3140 | else { |
| 3141 | port_change_required = current_port != new_port; |
| 3142 | } |
| 3143 | } |
| 3144 | /* fixed port */ |
| 3145 | else { |
| 3146 | port_change_required = current_port != new_port; |
| 3147 | } |
| 3148 | |
| 3149 | /* applying PORT changes if required and update response message */ |
| 3150 | if (port_change_required) { |
| 3151 | /* apply new port */ |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 3152 | s->svc_port = new_port; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3153 | changed = 1; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3154 | |
| 3155 | /* prepare message */ |
| 3156 | chunk_appendf(msg, "port changed from '"); |
| 3157 | if (s->flags & SRV_F_MAPPORTS) |
| 3158 | chunk_appendf(msg, "+"); |
| 3159 | chunk_appendf(msg, "%d' to '", current_port); |
| 3160 | |
| 3161 | if (sign == '-') { |
| 3162 | s->flags |= SRV_F_MAPPORTS; |
| 3163 | chunk_appendf(msg, "%c", sign); |
| 3164 | /* just use for result output */ |
| 3165 | new_port = -new_port; |
| 3166 | } |
| 3167 | else if (sign == '+') { |
| 3168 | s->flags |= SRV_F_MAPPORTS; |
| 3169 | chunk_appendf(msg, "%c", sign); |
| 3170 | } |
| 3171 | else { |
| 3172 | s->flags &= ~SRV_F_MAPPORTS; |
| 3173 | } |
| 3174 | |
| 3175 | chunk_appendf(msg, "%d'", new_port); |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3176 | } |
| 3177 | else { |
| 3178 | chunk_appendf(msg, "no need to change the port"); |
| 3179 | } |
| 3180 | } |
| 3181 | |
| 3182 | out: |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 3183 | if (changed) { |
| 3184 | /* force connection cleanup on the given server */ |
| 3185 | srv_cleanup_connections(s); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3186 | srv_set_dyncookie(s); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3187 | srv_set_addr_desc(s); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 3188 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3189 | if (updater) |
| 3190 | chunk_appendf(msg, " by '%s'", updater); |
| 3191 | chunk_appendf(msg, "\n"); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3192 | return msg->area; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3193 | } |
| 3194 | |
Christopher Faulet | 5efdef2 | 2021-03-11 18:03:21 +0100 | [diff] [blame] | 3195 | /* |
| 3196 | * update server status based on result of SRV resolution |
| 3197 | * returns: |
| 3198 | * 0 if server status is updated |
| 3199 | * 1 if server status has not changed |
| 3200 | * |
| 3201 | * Must be called with the server lock held. |
| 3202 | */ |
| 3203 | int srvrq_update_srv_status(struct server *s, int has_no_ip) |
| 3204 | { |
| 3205 | if (!s->srvrq) |
| 3206 | return 1; |
| 3207 | |
| 3208 | /* since this server has an IP, it can go back in production */ |
| 3209 | if (has_no_ip == 0) { |
| 3210 | srv_clr_admin_flag(s, SRV_ADMF_RMAINT); |
| 3211 | return 1; |
| 3212 | } |
| 3213 | |
| 3214 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3215 | return 1; |
| 3216 | |
| 3217 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record"); |
| 3218 | return 0; |
| 3219 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3220 | |
| 3221 | /* |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3222 | * update server status based on result of name resolution |
| 3223 | * returns: |
| 3224 | * 0 if server status is updated |
| 3225 | * 1 if server status has not changed |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3226 | * |
| 3227 | * Must be called with the server lock held. |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3228 | */ |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3229 | int snr_update_srv_status(struct server *s, int has_no_ip) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3230 | { |
Emeric Brun | 750fe79 | 2020-12-23 16:51:12 +0100 | [diff] [blame] | 3231 | struct resolvers *resolvers = s->resolvers; |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3232 | struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3233 | int exp; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3234 | |
Jerome Magnin | 012261a | 2020-07-28 13:38:22 +0200 | [diff] [blame] | 3235 | /* If resolution is NULL we're dealing with SRV records Additional records */ |
Christopher Faulet | 5efdef2 | 2021-03-11 18:03:21 +0100 | [diff] [blame] | 3236 | if (resolution == NULL) |
| 3237 | return srvrq_update_srv_status(s, has_no_ip); |
Jerome Magnin | 012261a | 2020-07-28 13:38:22 +0200 | [diff] [blame] | 3238 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3239 | switch (resolution->status) { |
| 3240 | case RSLV_STATUS_NONE: |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3241 | /* status when HAProxy has just (re)started. |
| 3242 | * Nothing to do, since the task is already automatically started */ |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3243 | break; |
| 3244 | |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3245 | case RSLV_STATUS_VALID: |
| 3246 | /* |
| 3247 | * resume health checks |
| 3248 | * server will be turned back on if health check is safe |
| 3249 | */ |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3250 | if (has_no_ip) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3251 | if (s->next_admin & SRV_ADMF_RMAINT) |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3252 | return 1; |
| 3253 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, |
| 3254 | "No IP for server "); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3255 | return 0; |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3256 | } |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3257 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3258 | if (!(s->next_admin & SRV_ADMF_RMAINT)) |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3259 | return 1; |
| 3260 | srv_clr_admin_flag(s, SRV_ADMF_RMAINT); |
| 3261 | chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer", |
| 3262 | s->proxy->id, s->id); |
| 3263 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3264 | ha_warning("%s.\n", trash.area); |
| 3265 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3266 | return 0; |
| 3267 | |
| 3268 | case RSLV_STATUS_NX: |
| 3269 | /* stop server if resolution is NX for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3270 | exp = tick_add(resolution->last_valid, resolvers->hold.nx); |
| 3271 | if (!tick_is_expired(exp, now_ms)) |
| 3272 | break; |
| 3273 | |
| 3274 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3275 | return 1; |
| 3276 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status"); |
| 3277 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3278 | |
| 3279 | case RSLV_STATUS_TIMEOUT: |
| 3280 | /* stop server if resolution is TIMEOUT for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3281 | exp = tick_add(resolution->last_valid, resolvers->hold.timeout); |
| 3282 | if (!tick_is_expired(exp, now_ms)) |
| 3283 | break; |
| 3284 | |
| 3285 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3286 | return 1; |
| 3287 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status"); |
| 3288 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3289 | |
| 3290 | case RSLV_STATUS_REFUSED: |
| 3291 | /* stop server if resolution is REFUSED for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3292 | exp = tick_add(resolution->last_valid, resolvers->hold.refused); |
| 3293 | if (!tick_is_expired(exp, now_ms)) |
| 3294 | break; |
| 3295 | |
| 3296 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3297 | return 1; |
| 3298 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status"); |
| 3299 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3300 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3301 | default: |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3302 | /* stop server if resolution failed for a long enough period */ |
| 3303 | exp = tick_add(resolution->last_valid, resolvers->hold.other); |
| 3304 | if (!tick_is_expired(exp, now_ms)) |
| 3305 | break; |
| 3306 | |
| 3307 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3308 | return 1; |
| 3309 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error"); |
| 3310 | return 0; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3311 | } |
| 3312 | |
| 3313 | return 1; |
| 3314 | } |
| 3315 | |
| 3316 | /* |
| 3317 | * Server Name Resolution valid response callback |
| 3318 | * It expects: |
| 3319 | * - <nameserver>: the name server which answered the valid response |
| 3320 | * - <response>: buffer containing a valid DNS response |
| 3321 | * - <response_len>: size of <response> |
| 3322 | * It performs the following actions: |
| 3323 | * - ignore response if current ip found and server family not met |
| 3324 | * - update with first new ip found if family is met and current IP is not found |
| 3325 | * returns: |
| 3326 | * 0 on error |
| 3327 | * 1 when no error or safe ignore |
Olivier Houchard | 2838107 | 2017-11-06 17:30:28 +0100 | [diff] [blame] | 3328 | * |
| 3329 | * Must be called with server lock held |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3330 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3331 | int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3332 | { |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3333 | struct server *s = NULL; |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3334 | struct resolv_resolution *resolution = NULL; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3335 | void *serverip, *firstip; |
| 3336 | short server_sin_family, firstip_sin_family; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3337 | int ret; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3338 | struct buffer *chk = get_trash_chunk(); |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3339 | int has_no_ip = 0; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3340 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3341 | s = objt_server(requester->owner); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3342 | if (!s) |
| 3343 | return 1; |
| 3344 | |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3345 | if (s->srvrq) { |
| 3346 | struct resolv_answer_item *srv_item; |
| 3347 | |
| 3348 | /* If DNS resolution is disabled ignore it. */ |
| 3349 | if (s->flags & SRV_F_NO_RESOLUTION) |
| 3350 | return 1; |
| 3351 | |
| 3352 | /* The server is based on a SRV record, thus, find the |
| 3353 | * associated answer record. If not found, it means the SRV item |
| 3354 | * has expired and this resolution must be ignored. |
| 3355 | */ |
| 3356 | srv_item = find_srvrq_answer_record(requester); |
| 3357 | if (!srv_item) |
| 3358 | return 1; |
| 3359 | } |
| 3360 | |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3361 | resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL); |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3362 | if (!resolution) |
| 3363 | return 1; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3364 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3365 | /* initializing variables */ |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3366 | firstip = NULL; /* pointer to the first valid response found */ |
| 3367 | /* it will be used as the new IP if a change is required */ |
| 3368 | firstip_sin_family = AF_UNSPEC; |
| 3369 | serverip = NULL; /* current server IP address */ |
| 3370 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3371 | /* initializing server IP pointer */ |
| 3372 | server_sin_family = s->addr.ss_family; |
| 3373 | switch (server_sin_family) { |
| 3374 | case AF_INET: |
| 3375 | serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr; |
| 3376 | break; |
| 3377 | |
| 3378 | case AF_INET6: |
| 3379 | serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr; |
| 3380 | break; |
| 3381 | |
Willy Tarreau | 3acfcd1 | 2017-01-06 19:18:32 +0100 | [diff] [blame] | 3382 | case AF_UNSPEC: |
| 3383 | break; |
| 3384 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3385 | default: |
| 3386 | goto invalid; |
| 3387 | } |
| 3388 | |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3389 | ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts, |
| 3390 | serverip, server_sin_family, &firstip, |
| 3391 | &firstip_sin_family, s); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3392 | |
| 3393 | switch (ret) { |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3394 | case RSLV_UPD_NO: |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3395 | goto update_status; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3396 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3397 | case RSLV_UPD_SRVIP_NOT_FOUND: |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3398 | goto save_ip; |
| 3399 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3400 | case RSLV_UPD_CNAME: |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3401 | goto invalid; |
| 3402 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3403 | case RSLV_UPD_NO_IP_FOUND: |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3404 | has_no_ip = 1; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3405 | goto update_status; |
Baptiste Assmann | 0453a1d | 2015-09-09 00:51:08 +0200 | [diff] [blame] | 3406 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3407 | case RSLV_UPD_NAME_ERROR: |
Baptiste Assmann | fad0318 | 2015-10-28 02:03:32 +0100 | [diff] [blame] | 3408 | /* update resolution status to OTHER error type */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3409 | resolution->status = RSLV_STATUS_OTHER; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3410 | goto update_status; |
Baptiste Assmann | fad0318 | 2015-10-28 02:03:32 +0100 | [diff] [blame] | 3411 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3412 | default: |
| 3413 | goto invalid; |
| 3414 | |
| 3415 | } |
| 3416 | |
| 3417 | save_ip: |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3418 | if (counters) { |
| 3419 | counters->update++; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3420 | /* save the first ip we found */ |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3421 | chunk_printf(chk, "%s/%s", counters->pid, counters->id); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3422 | } |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3423 | else |
| 3424 | chunk_printf(chk, "DNS cache"); |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3425 | srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3426 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3427 | update_status: |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3428 | |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3429 | snr_update_srv_status(s, has_no_ip); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3430 | return 1; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3431 | |
| 3432 | invalid: |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3433 | if (counters) { |
| 3434 | counters->invalid++; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3435 | goto update_status; |
Christopher Faulet | 3bbd65b | 2017-09-15 11:55:45 +0200 | [diff] [blame] | 3436 | } |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3437 | snr_update_srv_status(s, has_no_ip); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3438 | return 0; |
| 3439 | } |
| 3440 | |
| 3441 | /* |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3442 | * SRV record error management callback |
| 3443 | * returns: |
| 3444 | * 0 on error |
| 3445 | * 1 when no error or safe ignore |
| 3446 | * |
| 3447 | * Grabs the server's lock. |
| 3448 | */ |
| 3449 | int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code) |
| 3450 | { |
| 3451 | struct server *s; |
| 3452 | struct resolv_srvrq *srvrq; |
| 3453 | struct resolv_resolution *res; |
| 3454 | struct resolvers *resolvers; |
| 3455 | int exp; |
| 3456 | |
| 3457 | /* SRV records */ |
| 3458 | srvrq = objt_resolv_srvrq(requester->owner); |
| 3459 | if (!srvrq) |
| 3460 | return 1; |
| 3461 | |
| 3462 | resolvers = srvrq->resolvers; |
| 3463 | res = requester->resolution; |
| 3464 | |
| 3465 | switch (res->status) { |
| 3466 | |
| 3467 | case RSLV_STATUS_NX: |
| 3468 | /* stop server if resolution is NX for a long enough period */ |
| 3469 | exp = tick_add(res->last_valid, resolvers->hold.nx); |
| 3470 | if (!tick_is_expired(exp, now_ms)) |
| 3471 | return 1; |
| 3472 | break; |
| 3473 | |
| 3474 | case RSLV_STATUS_TIMEOUT: |
| 3475 | /* stop server if resolution is TIMEOUT for a long enough period */ |
| 3476 | exp = tick_add(res->last_valid, resolvers->hold.timeout); |
| 3477 | if (!tick_is_expired(exp, now_ms)) |
| 3478 | return 1; |
| 3479 | break; |
| 3480 | |
| 3481 | case RSLV_STATUS_REFUSED: |
| 3482 | /* stop server if resolution is REFUSED for a long enough period */ |
| 3483 | exp = tick_add(res->last_valid, resolvers->hold.refused); |
| 3484 | if (!tick_is_expired(exp, now_ms)) |
| 3485 | return 1; |
| 3486 | break; |
| 3487 | |
| 3488 | default: |
| 3489 | /* stop server if resolution failed for a long enough period */ |
| 3490 | exp = tick_add(res->last_valid, resolvers->hold.other); |
| 3491 | if (!tick_is_expired(exp, now_ms)) |
| 3492 | return 1; |
| 3493 | } |
| 3494 | |
| 3495 | /* Remove any associated server */ |
| 3496 | for (s = srvrq->proxy->srv; s != NULL; s = s->next) { |
| 3497 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
| 3498 | if (s->srvrq == srvrq) { |
Christopher Faulet | 0efc099 | 2021-03-11 18:09:53 +0100 | [diff] [blame] | 3499 | resolv_unlink_resolution(s->resolv_requester, 1); |
Christopher Faulet | 6b117ae | 2021-03-11 18:06:23 +0100 | [diff] [blame] | 3500 | srvrq_update_srv_status(s, 1); |
Christopher Faulet | 52d4d30 | 2021-02-23 12:24:09 +0100 | [diff] [blame] | 3501 | memset(&s->addr, 0, sizeof(s->addr)); |
Christopher Faulet | c392d46 | 2021-03-10 15:51:13 +0100 | [diff] [blame] | 3502 | ha_free(&s->hostname); |
| 3503 | ha_free(&s->hostname_dn); |
| 3504 | s->hostname_dn_len = 0; |
Christopher Faulet | 52d4d30 | 2021-02-23 12:24:09 +0100 | [diff] [blame] | 3505 | s->svc_port = 0; |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3506 | } |
| 3507 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 3508 | } |
| 3509 | |
Christopher Faulet | 51d5e3b | 2021-03-10 15:46:46 +0100 | [diff] [blame] | 3510 | resolv_purge_resolution_answer_records(res); |
| 3511 | |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3512 | return 1; |
| 3513 | } |
| 3514 | |
| 3515 | /* |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3516 | * Server Name Resolution error management callback |
| 3517 | * returns: |
| 3518 | * 0 on error |
| 3519 | * 1 when no error or safe ignore |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3520 | * |
| 3521 | * Grabs the server's lock. |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3522 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3523 | int snr_resolution_error_cb(struct resolv_requester *requester, int error_code) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3524 | { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3525 | struct server *s; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3526 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3527 | s = objt_server(requester->owner); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3528 | if (!s) |
| 3529 | return 1; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3530 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Christopher Faulet | 5130c21 | 2021-03-10 20:31:40 +0100 | [diff] [blame] | 3531 | if (!snr_update_srv_status(s, 1)) |
| 3532 | memset(&s->addr, 0, sizeof(s->addr)); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3533 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3534 | return 1; |
| 3535 | } |
| 3536 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3537 | /* |
| 3538 | * Function to check if <ip> is already affected to a server in the backend |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3539 | * which owns <srv> and is up. |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3540 | * It returns a pointer to the first server found or NULL if <ip> is not yet |
| 3541 | * assigned. |
Olivier Houchard | 2838107 | 2017-11-06 17:30:28 +0100 | [diff] [blame] | 3542 | * |
| 3543 | * Must be called with server lock held |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3544 | */ |
| 3545 | struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family) |
| 3546 | { |
| 3547 | struct server *tmpsrv; |
| 3548 | struct proxy *be; |
| 3549 | |
| 3550 | if (!srv) |
| 3551 | return NULL; |
| 3552 | |
| 3553 | be = srv->proxy; |
| 3554 | for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) { |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3555 | /* we found the current server is the same, ignore it */ |
| 3556 | if (srv == tmpsrv) |
| 3557 | continue; |
| 3558 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3559 | /* We want to compare the IP in the record with the IP of the servers in the |
| 3560 | * same backend, only if: |
| 3561 | * * DNS resolution is enabled on the server |
| 3562 | * * the hostname used for the resolution by our server is the same than the |
| 3563 | * one used for the server found in the backend |
| 3564 | * * the server found in the backend is not our current server |
| 3565 | */ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3566 | HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3567 | if ((tmpsrv->hostname_dn == NULL) || |
| 3568 | (srv->hostname_dn_len != tmpsrv->hostname_dn_len) || |
Christopher Faulet | 59b2925 | 2021-03-16 11:21:04 +0100 | [diff] [blame] | 3569 | (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) || |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3570 | (srv->puid == tmpsrv->puid)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3571 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3572 | continue; |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3573 | } |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3574 | |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3575 | /* If the server has been taken down, don't consider it */ |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3576 | if (tmpsrv->next_admin & SRV_ADMF_RMAINT) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3577 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3578 | continue; |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3579 | } |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3580 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3581 | /* At this point, we have 2 different servers using the same DNS hostname |
| 3582 | * for their respective resolution. |
| 3583 | */ |
| 3584 | if (*ip_family == tmpsrv->addr.ss_family && |
| 3585 | ((tmpsrv->addr.ss_family == AF_INET && |
| 3586 | memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) || |
| 3587 | (tmpsrv->addr.ss_family == AF_INET6 && |
| 3588 | memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3589 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3590 | return tmpsrv; |
| 3591 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3592 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3593 | } |
| 3594 | |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3595 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3596 | return NULL; |
| 3597 | } |
| 3598 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3599 | /* Sets the server's address (srv->addr) from srv->hostname using the libc's |
| 3600 | * resolver. This is suited for initial address configuration. Returns 0 on |
| 3601 | * success otherwise a non-zero error code. In case of error, *err_code, if |
| 3602 | * not NULL, is filled up. |
| 3603 | */ |
| 3604 | int srv_set_addr_via_libc(struct server *srv, int *err_code) |
| 3605 | { |
| 3606 | if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) { |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3607 | if (err_code) |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3608 | *err_code |= ERR_WARN; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3609 | return 1; |
| 3610 | } |
| 3611 | return 0; |
| 3612 | } |
| 3613 | |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3614 | /* Set the server's FDQN (->hostname) from <hostname>. |
| 3615 | * Returns -1 if failed, 0 if not. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3616 | * |
| 3617 | * Must be called with the server lock held. |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3618 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3619 | int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked) |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3620 | { |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3621 | struct resolv_resolution *resolution; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3622 | char *hostname_dn; |
| 3623 | int hostname_len, hostname_dn_len; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3624 | |
Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 3625 | /* Note that the server lock is already held. */ |
| 3626 | if (!srv->resolvers) |
| 3627 | return -1; |
| 3628 | |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3629 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3630 | HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock); |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3631 | /* run time DNS/SRV resolution was not active for this server |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3632 | * and we can't enable it at run time for now. |
| 3633 | */ |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3634 | if (!srv->resolv_requester && !srv->srvrq) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3635 | goto err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3636 | |
| 3637 | chunk_reset(&trash); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3638 | hostname_len = strlen(hostname); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3639 | hostname_dn = trash.area; |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3640 | hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1, |
| 3641 | hostname_dn, trash.size); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3642 | if (hostname_dn_len == -1) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3643 | goto err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3644 | |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3645 | resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3646 | if (resolution && |
| 3647 | resolution->hostname_dn && |
Christopher Faulet | 59b2925 | 2021-03-16 11:21:04 +0100 | [diff] [blame] | 3648 | resolution->hostname_dn_len == hostname_dn_len && |
| 3649 | strcasecmp(resolution->hostname_dn, hostname_dn) == 0) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3650 | goto end; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3651 | |
Christopher Faulet | 0efc099 | 2021-03-11 18:09:53 +0100 | [diff] [blame] | 3652 | resolv_unlink_resolution(srv->resolv_requester, 0); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3653 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3654 | free(srv->hostname); |
| 3655 | free(srv->hostname_dn); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3656 | srv->hostname = strdup(hostname); |
| 3657 | srv->hostname_dn = strdup(hostname_dn); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3658 | srv->hostname_dn_len = hostname_dn_len; |
| 3659 | if (!srv->hostname || !srv->hostname_dn) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3660 | goto err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3661 | |
Baptiste Assmann | 13a9232 | 2019-06-07 09:40:55 +0200 | [diff] [blame] | 3662 | if (srv->flags & SRV_F_NO_RESOLUTION) |
| 3663 | goto end; |
| 3664 | |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3665 | if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3666 | goto err; |
| 3667 | |
| 3668 | end: |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3669 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3670 | HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3671 | return 0; |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3672 | |
| 3673 | err: |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3674 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3675 | HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock); |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3676 | return -1; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3677 | } |
| 3678 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3679 | /* Sets the server's address (srv->addr) from srv->lastaddr which was filled |
| 3680 | * from the state file. This is suited for initial address configuration. |
| 3681 | * Returns 0 on success otherwise a non-zero error code. In case of error, |
| 3682 | * *err_code, if not NULL, is filled up. |
| 3683 | */ |
| 3684 | static int srv_apply_lastaddr(struct server *srv, int *err_code) |
| 3685 | { |
| 3686 | if (!str2ip2(srv->lastaddr, &srv->addr, 0)) { |
| 3687 | if (err_code) |
| 3688 | *err_code |= ERR_WARN; |
| 3689 | return 1; |
| 3690 | } |
| 3691 | return 0; |
| 3692 | } |
| 3693 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3694 | /* returns 0 if no error, otherwise a combination of ERR_* flags */ |
| 3695 | static int srv_iterate_initaddr(struct server *srv) |
| 3696 | { |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3697 | char *name = srv->hostname; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3698 | int return_code = 0; |
| 3699 | int err_code; |
| 3700 | unsigned int methods; |
| 3701 | |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3702 | /* If no addr and no hostname set, get the name from the DNS SRV request */ |
| 3703 | if (!name && srv->srvrq) |
| 3704 | name = srv->srvrq->name; |
| 3705 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3706 | methods = srv->init_addr_methods; |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3707 | if (!methods) { |
| 3708 | /* otherwise default to "last,libc" */ |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3709 | srv_append_initaddr(&methods, SRV_IADDR_LAST); |
| 3710 | srv_append_initaddr(&methods, SRV_IADDR_LIBC); |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3711 | if (srv->resolvers_id) { |
| 3712 | /* dns resolution is configured, add "none" to not fail on startup */ |
| 3713 | srv_append_initaddr(&methods, SRV_IADDR_NONE); |
| 3714 | } |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3715 | } |
| 3716 | |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 3717 | /* "-dr" : always append "none" so that server addresses resolution |
| 3718 | * failures are silently ignored, this is convenient to validate some |
| 3719 | * configs out of their environment. |
| 3720 | */ |
| 3721 | if (global.tune.options & GTUNE_RESOLVE_DONTFAIL) |
| 3722 | srv_append_initaddr(&methods, SRV_IADDR_NONE); |
| 3723 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3724 | while (methods) { |
| 3725 | err_code = 0; |
| 3726 | switch (srv_get_next_initaddr(&methods)) { |
| 3727 | case SRV_IADDR_LAST: |
| 3728 | if (!srv->lastaddr) |
| 3729 | continue; |
| 3730 | if (srv_apply_lastaddr(srv, &err_code) == 0) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3731 | goto out; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3732 | return_code |= err_code; |
| 3733 | break; |
| 3734 | |
| 3735 | case SRV_IADDR_LIBC: |
| 3736 | if (!srv->hostname) |
| 3737 | continue; |
| 3738 | if (srv_set_addr_via_libc(srv, &err_code) == 0) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3739 | goto out; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3740 | return_code |= err_code; |
| 3741 | break; |
| 3742 | |
Willy Tarreau | 37ebe12 | 2016-11-04 15:17:58 +0100 | [diff] [blame] | 3743 | case SRV_IADDR_NONE: |
| 3744 | srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3745 | if (return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3746 | ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n", |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3747 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3748 | } |
Willy Tarreau | 37ebe12 | 2016-11-04 15:17:58 +0100 | [diff] [blame] | 3749 | return return_code; |
| 3750 | |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3751 | case SRV_IADDR_IP: |
| 3752 | ipcpy(&srv->init_addr, &srv->addr); |
| 3753 | if (return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3754 | ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n", |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3755 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3756 | } |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3757 | goto out; |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3758 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3759 | default: /* unhandled method */ |
| 3760 | break; |
| 3761 | } |
| 3762 | } |
| 3763 | |
| 3764 | if (!return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3765 | ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n", |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3766 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3767 | } |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3768 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3769 | ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n", |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3770 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3771 | } |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3772 | |
| 3773 | return_code |= ERR_ALERT | ERR_FATAL; |
| 3774 | return return_code; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3775 | out: |
| 3776 | srv_set_dyncookie(srv); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3777 | srv_set_addr_desc(srv); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3778 | return return_code; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3779 | } |
| 3780 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3781 | /* |
| 3782 | * This function parses all backends and all servers within each backend |
| 3783 | * and performs servers' addr resolution based on information provided by: |
| 3784 | * - configuration file |
| 3785 | * - server-state file (states provided by an 'old' haproxy process) |
| 3786 | * |
| 3787 | * Returns 0 if no error, otherwise, a combination of ERR_ flags. |
| 3788 | */ |
| 3789 | int srv_init_addr(void) |
| 3790 | { |
| 3791 | struct proxy *curproxy; |
| 3792 | int return_code = 0; |
| 3793 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 3794 | curproxy = proxies_list; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3795 | while (curproxy) { |
| 3796 | struct server *srv; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3797 | |
| 3798 | /* servers are in backend only */ |
Amaury Denoyelle | e3c4192 | 2021-01-06 14:28:50 +0100 | [diff] [blame] | 3799 | if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled) |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3800 | goto srv_init_addr_next; |
| 3801 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3802 | for (srv = curproxy->srv; srv; srv = srv->next) |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3803 | if (srv->hostname || srv->srvrq) |
Willy Tarreau | 3d609a7 | 2017-09-06 14:22:45 +0200 | [diff] [blame] | 3804 | return_code |= srv_iterate_initaddr(srv); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3805 | |
| 3806 | srv_init_addr_next: |
| 3807 | curproxy = curproxy->next; |
| 3808 | } |
| 3809 | |
| 3810 | return return_code; |
| 3811 | } |
| 3812 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3813 | /* |
| 3814 | * Must be called with the server lock held. |
| 3815 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3816 | const char *srv_update_fqdn(struct server *server, const char *fqdn, const char *updater, int resolv_locked) |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3817 | { |
| 3818 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3819 | struct buffer *msg; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3820 | |
| 3821 | msg = get_trash_chunk(); |
| 3822 | chunk_reset(msg); |
| 3823 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 3824 | if (server->hostname && strcmp(fqdn, server->hostname) == 0) { |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3825 | chunk_appendf(msg, "no need to change the FDQN"); |
| 3826 | goto out; |
| 3827 | } |
| 3828 | |
| 3829 | if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) { |
| 3830 | chunk_appendf(msg, "invalid fqdn '%s'", fqdn); |
| 3831 | goto out; |
| 3832 | } |
| 3833 | |
| 3834 | chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s", |
| 3835 | server->proxy->id, server->id, server->hostname, fqdn); |
| 3836 | |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3837 | if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) { |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3838 | chunk_reset(msg); |
| 3839 | chunk_appendf(msg, "could not update %s/%s FQDN", |
| 3840 | server->proxy->id, server->id); |
| 3841 | goto out; |
| 3842 | } |
| 3843 | |
| 3844 | /* Flag as FQDN set from stats socket. */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3845 | server->next_admin |= SRV_ADMF_HMAINT; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3846 | |
| 3847 | out: |
| 3848 | if (updater) |
| 3849 | chunk_appendf(msg, " by '%s'", updater); |
| 3850 | chunk_appendf(msg, "\n"); |
| 3851 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3852 | return msg->area; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3853 | } |
| 3854 | |
| 3855 | |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3856 | /* Expects to find a backend and a server in <arg> under the form <backend>/<server>, |
| 3857 | * and returns the pointer to the server. Otherwise, display adequate error messages |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 3858 | * on the CLI, sets the CLI's state to CLI_ST_PRINT and returns NULL. This is only |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3859 | * used for CLI commands requiring a server name. |
| 3860 | * Important: the <arg> is modified to remove the '/'. |
| 3861 | */ |
| 3862 | struct server *cli_find_server(struct appctx *appctx, char *arg) |
| 3863 | { |
| 3864 | struct proxy *px; |
| 3865 | struct server *sv; |
| 3866 | char *line; |
| 3867 | |
| 3868 | /* split "backend/server" and make <line> point to server */ |
| 3869 | for (line = arg; *line; line++) |
| 3870 | if (*line == '/') { |
| 3871 | *line++ = '\0'; |
| 3872 | break; |
| 3873 | } |
| 3874 | |
| 3875 | if (!*line || !*arg) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3876 | cli_err(appctx, "Require 'backend/server'.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3877 | return NULL; |
| 3878 | } |
| 3879 | |
| 3880 | if (!get_backend_server(arg, line, &px, &sv)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3881 | cli_err(appctx, px ? "No such server.\n" : "No such backend.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3882 | return NULL; |
| 3883 | } |
| 3884 | |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 3885 | if (px->disabled) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3886 | cli_err(appctx, "Proxy is disabled.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3887 | return NULL; |
| 3888 | } |
| 3889 | |
| 3890 | return sv; |
| 3891 | } |
| 3892 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3893 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3894 | /* grabs the server lock */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 3895 | static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3896 | { |
| 3897 | struct server *sv; |
| 3898 | const char *warning; |
| 3899 | |
| 3900 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 3901 | return 1; |
| 3902 | |
| 3903 | sv = cli_find_server(appctx, args[2]); |
| 3904 | if (!sv) |
| 3905 | return 1; |
| 3906 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3907 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 3908 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3909 | if (strcmp(args[3], "weight") == 0) { |
| 3910 | warning = server_parse_weight_change_request(sv, args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3911 | if (warning) |
| 3912 | cli_err(appctx, warning); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3913 | } |
| 3914 | else if (strcmp(args[3], "state") == 0) { |
| 3915 | if (strcmp(args[4], "ready") == 0) |
| 3916 | srv_adm_set_ready(sv); |
| 3917 | else if (strcmp(args[4], "drain") == 0) |
| 3918 | srv_adm_set_drain(sv); |
| 3919 | else if (strcmp(args[4], "maint") == 0) |
| 3920 | srv_adm_set_maint(sv); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3921 | else |
| 3922 | cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3923 | } |
| 3924 | else if (strcmp(args[3], "health") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3925 | if (sv->track) |
| 3926 | cli_err(appctx, "cannot change health on a tracking server.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3927 | else if (strcmp(args[4], "up") == 0) { |
| 3928 | sv->check.health = sv->check.rise + sv->check.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3929 | srv_set_running(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3930 | } |
| 3931 | else if (strcmp(args[4], "stopping") == 0) { |
| 3932 | sv->check.health = sv->check.rise + sv->check.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3933 | srv_set_stopping(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3934 | } |
| 3935 | else if (strcmp(args[4], "down") == 0) { |
| 3936 | sv->check.health = 0; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3937 | srv_set_stopped(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3938 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3939 | else |
| 3940 | cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3941 | } |
| 3942 | else if (strcmp(args[3], "agent") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3943 | if (!(sv->agent.state & CHK_ST_ENABLED)) |
| 3944 | cli_err(appctx, "agent checks are not enabled on this server.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3945 | else if (strcmp(args[4], "up") == 0) { |
| 3946 | sv->agent.health = sv->agent.rise + sv->agent.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3947 | srv_set_running(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3948 | } |
| 3949 | else if (strcmp(args[4], "down") == 0) { |
| 3950 | sv->agent.health = 0; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3951 | srv_set_stopped(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3952 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3953 | else |
| 3954 | cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3955 | } |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3956 | else if (strcmp(args[3], "agent-addr") == 0) { |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3957 | char *addr = NULL; |
| 3958 | char *port = NULL; |
| 3959 | if (strlen(args[4]) == 0) { |
| 3960 | cli_err(appctx, "set server <b>/<s> agent-addr requires" |
| 3961 | " an address and optionally a port.\n"); |
| 3962 | goto out_unlock; |
| 3963 | } |
| 3964 | addr = args[4]; |
| 3965 | if (strcmp(args[5], "port") == 0) |
| 3966 | port = args[6]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3967 | warning = srv_update_agent_addr_port(sv, addr, port); |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3968 | if (warning) |
| 3969 | cli_msg(appctx, LOG_WARNING, warning); |
| 3970 | } |
| 3971 | else if (strcmp(args[3], "agent-port") == 0) { |
| 3972 | char *port = NULL; |
| 3973 | if (strlen(args[4]) == 0) { |
| 3974 | cli_err(appctx, "set server <b>/<s> agent-port requires" |
| 3975 | " a port.\n"); |
| 3976 | goto out_unlock; |
| 3977 | } |
| 3978 | port = args[4]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3979 | warning = srv_update_agent_addr_port(sv, NULL, port); |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3980 | if (warning) |
| 3981 | cli_msg(appctx, LOG_WARNING, warning); |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3982 | } |
| 3983 | else if (strcmp(args[3], "agent-send") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3984 | if (!(sv->agent.state & CHK_ST_ENABLED)) |
| 3985 | cli_err(appctx, "agent checks are not enabled on this server.\n"); |
| 3986 | else { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 3987 | if (!set_srv_agent_send(sv, args[4])) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3988 | cli_err(appctx, "cannot allocate memory for new string.\n"); |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3989 | } |
| 3990 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3991 | else if (strcmp(args[3], "check-addr") == 0) { |
| 3992 | char *addr = NULL; |
| 3993 | char *port = NULL; |
| 3994 | if (strlen(args[4]) == 0) { |
| 3995 | cli_err(appctx, "set server <b>/<s> check-addr requires" |
| 3996 | " an address and optionally a port.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 3997 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3998 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3999 | addr = args[4]; |
| 4000 | if (strcmp(args[5], "port") == 0) |
| 4001 | port = args[6]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4002 | warning = srv_update_check_addr_port(sv, addr, port); |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 4003 | if (warning) |
| 4004 | cli_msg(appctx, LOG_WARNING, warning); |
| 4005 | } |
| 4006 | else if (strcmp(args[3], "check-port") == 0) { |
| 4007 | char *port = NULL; |
| 4008 | if (strlen(args[4]) == 0) { |
| 4009 | cli_err(appctx, "set server <b>/<s> check-port requires" |
| 4010 | " a port.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4011 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4012 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 4013 | port = args[4]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4014 | warning = srv_update_check_addr_port(sv, NULL, port); |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 4015 | if (warning) |
| 4016 | cli_msg(appctx, LOG_WARNING, warning); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4017 | } |
| 4018 | else if (strcmp(args[3], "addr") == 0) { |
| 4019 | char *addr = NULL; |
| 4020 | char *port = NULL; |
| 4021 | if (strlen(args[4]) == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4022 | cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4023 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4024 | } |
| 4025 | else { |
| 4026 | addr = args[4]; |
| 4027 | } |
| 4028 | if (strcmp(args[5], "port") == 0) { |
| 4029 | port = args[6]; |
| 4030 | } |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4031 | warning = srv_update_addr_port(sv, addr, port, "stats socket command"); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4032 | if (warning) |
| 4033 | cli_msg(appctx, LOG_WARNING, warning); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4034 | srv_clr_admin_flag(sv, SRV_ADMF_RMAINT); |
| 4035 | } |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4036 | else if (strcmp(args[3], "fqdn") == 0) { |
| 4037 | if (!*args[4]) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4038 | cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4039 | goto out_unlock; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4040 | } |
Baptiste Assmann | 13a9232 | 2019-06-07 09:40:55 +0200 | [diff] [blame] | 4041 | /* ensure runtime resolver will process this new fqdn */ |
| 4042 | if (sv->flags & SRV_F_NO_RESOLUTION) { |
| 4043 | sv->flags &= ~SRV_F_NO_RESOLUTION; |
| 4044 | } |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4045 | warning = srv_update_fqdn(sv, args[4], "stats socket command", 0); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4046 | if (warning) |
| 4047 | cli_msg(appctx, LOG_WARNING, warning); |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4048 | } |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 4049 | else if (strcmp(args[3], "ssl") == 0) { |
| 4050 | #ifdef USE_OPENSSL |
| 4051 | if (sv->ssl_ctx.ctx == NULL) { |
| 4052 | cli_err(appctx, "'set server <srv> ssl' cannot be set. " |
| 4053 | " default-server should define ssl settings\n"); |
| 4054 | goto out_unlock; |
| 4055 | } else if (strcmp(args[4], "on") == 0) { |
| 4056 | ssl_sock_set_srv(sv, 1); |
| 4057 | } else if (strcmp(args[4], "off") == 0) { |
| 4058 | ssl_sock_set_srv(sv, 0); |
| 4059 | } else { |
| 4060 | cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n"); |
| 4061 | goto out_unlock; |
| 4062 | } |
| 4063 | srv_cleanup_connections(sv); |
| 4064 | cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n"); |
| 4065 | #else |
| 4066 | cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n"); |
| 4067 | #endif |
| 4068 | } else { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4069 | cli_err(appctx, |
William Dauchy | 3f4ec7d | 2021-02-15 17:22:16 +0100 | [diff] [blame] | 4070 | "usage: set server <backend>/<server> " |
| 4071 | "addr | agent | agent-addr | agent-port | agent-send | " |
| 4072 | "check-addr | check-port | fqdn | health | ssl | " |
| 4073 | "state | weight\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4074 | } |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4075 | out_unlock: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 4076 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4077 | return 1; |
| 4078 | } |
| 4079 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4080 | static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4081 | { |
| 4082 | struct stream_interface *si = appctx->owner; |
| 4083 | struct proxy *px; |
| 4084 | struct server *sv; |
| 4085 | char *line; |
| 4086 | |
| 4087 | |
| 4088 | /* split "backend/server" and make <line> point to server */ |
| 4089 | for (line = args[2]; *line; line++) |
| 4090 | if (*line == '/') { |
| 4091 | *line++ = '\0'; |
| 4092 | break; |
| 4093 | } |
| 4094 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4095 | if (!*line) |
| 4096 | return cli_err(appctx, "Require 'backend/server'.\n"); |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4097 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4098 | if (!get_backend_server(args[2], line, &px, &sv)) |
| 4099 | return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n"); |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4100 | |
| 4101 | /* return server's effective weight at the moment */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4102 | snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight, |
| 4103 | sv->iweight); |
| 4104 | if (ci_putstr(si_ic(si), trash.area) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 4105 | si_rx_room_blk(si); |
Christopher Faulet | 90b5abe | 2016-12-05 14:25:08 +0100 | [diff] [blame] | 4106 | return 0; |
| 4107 | } |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4108 | return 1; |
| 4109 | } |
| 4110 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4111 | /* Parse a "set weight" command. |
| 4112 | * |
| 4113 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4114 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4115 | static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4116 | { |
| 4117 | struct server *sv; |
| 4118 | const char *warning; |
| 4119 | |
| 4120 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4121 | return 1; |
| 4122 | |
| 4123 | sv = cli_find_server(appctx, args[2]); |
| 4124 | if (!sv) |
| 4125 | return 1; |
| 4126 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4127 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
| 4128 | |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4129 | warning = server_parse_weight_change_request(sv, args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4130 | if (warning) |
| 4131 | cli_err(appctx, warning); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4132 | |
| 4133 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
| 4134 | |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4135 | return 1; |
| 4136 | } |
| 4137 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4138 | /* parse a "set maxconn server" command. It always returns 1. |
| 4139 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4140 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4141 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4142 | static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | b802627 | 2016-11-23 11:26:56 +0100 | [diff] [blame] | 4143 | { |
| 4144 | struct server *sv; |
| 4145 | const char *warning; |
| 4146 | |
| 4147 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4148 | return 1; |
| 4149 | |
| 4150 | sv = cli_find_server(appctx, args[3]); |
| 4151 | if (!sv) |
| 4152 | return 1; |
| 4153 | |
| 4154 | warning = server_parse_maxconn_change_request(sv, args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4155 | if (warning) |
| 4156 | cli_err(appctx, warning); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4157 | |
Willy Tarreau | b802627 | 2016-11-23 11:26:56 +0100 | [diff] [blame] | 4158 | return 1; |
| 4159 | } |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4160 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4161 | /* parse a "disable agent" command. It always returns 1. |
| 4162 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4163 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4164 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4165 | static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4166 | { |
| 4167 | struct server *sv; |
| 4168 | |
| 4169 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4170 | return 1; |
| 4171 | |
| 4172 | sv = cli_find_server(appctx, args[2]); |
| 4173 | if (!sv) |
| 4174 | return 1; |
| 4175 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4176 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4177 | sv->agent.state &= ~CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4178 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4179 | return 1; |
| 4180 | } |
| 4181 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4182 | /* parse a "disable health" command. It always returns 1. |
| 4183 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4184 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4185 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4186 | static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4187 | { |
| 4188 | struct server *sv; |
| 4189 | |
| 4190 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4191 | return 1; |
| 4192 | |
| 4193 | sv = cli_find_server(appctx, args[2]); |
| 4194 | if (!sv) |
| 4195 | return 1; |
| 4196 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4197 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4198 | sv->check.state &= ~CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4199 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4200 | return 1; |
| 4201 | } |
| 4202 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4203 | /* parse a "disable server" command. It always returns 1. |
| 4204 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4205 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4206 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4207 | static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4208 | { |
| 4209 | struct server *sv; |
| 4210 | |
| 4211 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4212 | return 1; |
| 4213 | |
| 4214 | sv = cli_find_server(appctx, args[2]); |
| 4215 | if (!sv) |
| 4216 | return 1; |
| 4217 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4218 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4219 | srv_adm_set_maint(sv); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4220 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4221 | return 1; |
| 4222 | } |
| 4223 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4224 | /* parse a "enable agent" command. It always returns 1. |
| 4225 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4226 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4227 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4228 | static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4229 | { |
| 4230 | struct server *sv; |
| 4231 | |
| 4232 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4233 | return 1; |
| 4234 | |
| 4235 | sv = cli_find_server(appctx, args[2]); |
| 4236 | if (!sv) |
| 4237 | return 1; |
| 4238 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4239 | if (!(sv->agent.state & CHK_ST_CONFIGURED)) |
| 4240 | return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n"); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4241 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4242 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4243 | sv->agent.state |= CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4244 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4245 | return 1; |
| 4246 | } |
| 4247 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4248 | /* parse a "enable health" command. It always returns 1. |
| 4249 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4250 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4251 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4252 | static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4253 | { |
| 4254 | struct server *sv; |
| 4255 | |
| 4256 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4257 | return 1; |
| 4258 | |
| 4259 | sv = cli_find_server(appctx, args[2]); |
| 4260 | if (!sv) |
| 4261 | return 1; |
| 4262 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4263 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4264 | sv->check.state |= CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4265 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4266 | return 1; |
| 4267 | } |
| 4268 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4269 | /* parse a "enable server" command. It always returns 1. |
| 4270 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4271 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4272 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4273 | static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4274 | { |
| 4275 | struct server *sv; |
| 4276 | |
| 4277 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4278 | return 1; |
| 4279 | |
| 4280 | sv = cli_find_server(appctx, args[2]); |
| 4281 | if (!sv) |
| 4282 | return 1; |
| 4283 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4284 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4285 | srv_adm_set_ready(sv); |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 4286 | if (!(sv->flags & SRV_F_COOKIESET) |
| 4287 | && (sv->proxy->ck_opts & PR_CK_DYNAMIC) && |
| 4288 | sv->cookie) |
| 4289 | srv_check_for_dup_dyncookie(sv); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4290 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4291 | return 1; |
| 4292 | } |
| 4293 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4294 | /* Allocates data structure related to load balancing for the server <sv>. It |
| 4295 | * is only required for dynamic servers. |
| 4296 | * |
| 4297 | * At the moment, the server lock is not used as this function is only called |
| 4298 | * for a dynamic server not yet registered. |
| 4299 | * |
| 4300 | * Returns 1 on success, 0 on allocation failure. |
| 4301 | */ |
| 4302 | static int srv_alloc_lb(struct server *sv, struct proxy *be) |
| 4303 | { |
| 4304 | int node; |
| 4305 | |
| 4306 | sv->lb_tree = (sv->flags & SRV_F_BACKUP) ? |
| 4307 | &be->lbprm.chash.bck : &be->lbprm.chash.act; |
| 4308 | sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE; |
| 4309 | sv->lb_nodes_now = 0; |
| 4310 | |
Willy Tarreau | dcb121f | 2021-04-20 11:37:45 +0200 | [diff] [blame] | 4311 | if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) || |
| 4312 | ((be->lbprm.algo & (BE_LB_KIND | BE_LB_HASH_TYPE)) == (BE_LB_KIND_HI | BE_LB_HASH_CONS))) { |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4313 | sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes)); |
| 4314 | |
| 4315 | if (!sv->lb_nodes) |
| 4316 | return 0; |
| 4317 | |
| 4318 | for (node = 0; node < sv->lb_nodes_tot; node++) { |
| 4319 | sv->lb_nodes[node].server = sv; |
| 4320 | sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node); |
| 4321 | } |
| 4322 | } |
| 4323 | |
| 4324 | return 1; |
| 4325 | } |
| 4326 | |
| 4327 | /* Parse a "add server" command |
| 4328 | * Returns 0 if the server has been successfully initialized, 1 on failure. |
| 4329 | */ |
| 4330 | static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private) |
| 4331 | { |
| 4332 | struct proxy *be; |
| 4333 | struct server *srv; |
| 4334 | char *be_name, *sv_name; |
| 4335 | char *errmsg = NULL; |
| 4336 | int errcode, argc; |
| 4337 | int i; |
| 4338 | const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR; |
| 4339 | |
| 4340 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4341 | return 1; |
| 4342 | |
| 4343 | ++args; |
| 4344 | |
| 4345 | sv_name = be_name = args[1]; |
| 4346 | /* split backend/server arg */ |
| 4347 | while (*sv_name && *(++sv_name)) { |
| 4348 | if (*sv_name == '/') { |
| 4349 | *sv_name = '\0'; |
| 4350 | ++sv_name; |
| 4351 | break; |
| 4352 | } |
| 4353 | } |
| 4354 | |
| 4355 | if (!*sv_name) |
| 4356 | return cli_err(appctx, "Require 'backend/server'."); |
| 4357 | |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4358 | be = proxy_be_by_name(be_name); |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4359 | if (!be) |
| 4360 | return cli_err(appctx, "No such backend."); |
| 4361 | |
| 4362 | if (!(be->lbprm.algo & BE_LB_PROP_DYN)) { |
Amaury Denoyelle | eafd701 | 2021-04-29 14:59:42 +0200 | [diff] [blame] | 4363 | cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers."); |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4364 | return 1; |
| 4365 | } |
| 4366 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4367 | args[1] = sv_name; |
| 4368 | errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg); |
| 4369 | if (errcode) { |
| 4370 | if (errmsg) |
| 4371 | cli_dynerr(appctx, errmsg); |
| 4372 | goto out; |
| 4373 | } |
| 4374 | |
| 4375 | while (*args[argc]) { |
| 4376 | errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg); |
| 4377 | |
| 4378 | if (errcode) { |
| 4379 | if (errmsg) |
| 4380 | cli_dynerr(appctx, errmsg); |
| 4381 | goto out; |
| 4382 | } |
| 4383 | } |
| 4384 | |
| 4385 | _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg); |
| 4386 | if (errmsg) { |
| 4387 | cli_dynerr(appctx, errmsg); |
| 4388 | goto out; |
| 4389 | } |
| 4390 | |
Amaury Denoyelle | 3046723 | 2021-03-12 18:03:27 +0100 | [diff] [blame] | 4391 | if (srv->mux_proto) { |
| 4392 | if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) { |
| 4393 | cli_err(appctx, "MUX protocol is not usable for server."); |
| 4394 | goto out; |
| 4395 | } |
| 4396 | } |
| 4397 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4398 | srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr)); |
| 4399 | if (!srv->per_thr) { |
| 4400 | cli_err(appctx, "failed to allocate per-thread lists for server."); |
| 4401 | goto out; |
| 4402 | } |
| 4403 | |
| 4404 | for (i = 0; i < global.nbthread; i++) { |
| 4405 | srv->per_thr[i].idle_conns = EB_ROOT; |
| 4406 | srv->per_thr[i].safe_conns = EB_ROOT; |
| 4407 | srv->per_thr[i].avail_conns = EB_ROOT; |
| 4408 | MT_LIST_INIT(&srv->per_thr[i].streams); |
| 4409 | } |
| 4410 | |
| 4411 | if (srv->max_idle_conns != 0) { |
| 4412 | srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr)); |
| 4413 | if (!srv->curr_idle_thr) { |
| 4414 | cli_err(appctx, "failed to allocate counters for server."); |
| 4415 | goto out; |
| 4416 | } |
| 4417 | } |
| 4418 | |
| 4419 | if (!srv_alloc_lb(srv, be)) { |
| 4420 | cli_err(appctx, "Failed to initialize load-balancing data."); |
| 4421 | goto out; |
| 4422 | } |
| 4423 | |
| 4424 | if (!stats_allocate_proxy_counters_internal(&srv->extra_counters, |
| 4425 | COUNTERS_SV, |
| 4426 | STATS_PX_CAP_SRV)) { |
| 4427 | cli_err(appctx, "failed to allocate extra counters for server."); |
| 4428 | goto out; |
| 4429 | } |
| 4430 | |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4431 | /* Attach the server to the end of the proxy linked list. The proxy |
| 4432 | * servers list is currently not protected by a lock, so this requires |
| 4433 | * thread_isolate/release. |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4434 | * |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4435 | * If a server with the same name is found, reject the new one. This |
| 4436 | * operation requires thread-safety and thus cannot be executed at the |
| 4437 | * beginning without having server allocation under locks/isolation. |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4438 | */ |
| 4439 | thread_isolate(); |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4440 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4441 | /* TODO use a double-linked list for px->srv */ |
| 4442 | if (be->srv) { |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4443 | struct server *next = be->srv; |
| 4444 | |
| 4445 | while (1) { |
| 4446 | /* check for duplicate server */ |
| 4447 | if (!strcmp(srv->id, next->id)) { |
| 4448 | thread_release(); |
| 4449 | cli_err(appctx, "Already exists a server with the same name in backend."); |
| 4450 | goto out; |
| 4451 | } |
| 4452 | |
| 4453 | if (!next->next) |
| 4454 | break; |
| 4455 | |
| 4456 | next = next->next; |
| 4457 | } |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4458 | |
| 4459 | next->next = srv; |
| 4460 | } |
| 4461 | else { |
| 4462 | srv->next = be->srv; |
| 4463 | be->srv = srv; |
| 4464 | } |
Amaury Denoyelle | cece918 | 2021-04-20 17:09:08 +0200 | [diff] [blame] | 4465 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4466 | thread_release(); |
| 4467 | |
Amaury Denoyelle | d38e7fa | 2021-04-20 18:35:19 +0200 | [diff] [blame] | 4468 | ha_notice("New server %s/%s registered.\n", be->id, srv->id); |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4469 | cli_msg(appctx, LOG_INFO, "New server registered."); |
| 4470 | |
| 4471 | return 0; |
| 4472 | |
| 4473 | out: |
| 4474 | if (srv) |
| 4475 | free_server(srv); |
| 4476 | return 1; |
| 4477 | } |
| 4478 | |
Amaury Denoyelle | e558043 | 2021-04-15 14:41:20 +0200 | [diff] [blame] | 4479 | /* Parse a "del server" command |
| 4480 | * Returns 0 if the server has been successfully initialized, 1 on failure. |
| 4481 | */ |
| 4482 | static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private) |
| 4483 | { |
| 4484 | struct proxy *be; |
| 4485 | struct server *srv; |
| 4486 | char *be_name, *sv_name; |
| 4487 | |
| 4488 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4489 | return 1; |
| 4490 | |
| 4491 | ++args; |
| 4492 | |
| 4493 | sv_name = be_name = args[1]; |
| 4494 | /* split backend/server arg */ |
| 4495 | while (*sv_name && *(++sv_name)) { |
| 4496 | if (*sv_name == '/') { |
| 4497 | *sv_name = '\0'; |
| 4498 | ++sv_name; |
| 4499 | break; |
| 4500 | } |
| 4501 | } |
| 4502 | |
| 4503 | if (!*sv_name) |
| 4504 | return cli_err(appctx, "Require 'backend/server'."); |
| 4505 | |
| 4506 | /* The proxy servers list is currently not protected by a lock so this |
| 4507 | * requires thread isolation. |
| 4508 | */ |
| 4509 | |
| 4510 | /* WARNING there is maybe a potential violation of the thread isolation |
| 4511 | * mechanism by the pool allocator. The allocator marks the thread as |
| 4512 | * harmless before the allocation, but a processing outside of it could |
| 4513 | * relies on a particular server triggered at the same time by a |
| 4514 | * 'delete server'. Currently, it is unknown if such case is present in |
| 4515 | * the current code. If it happens to be, the thread isolation |
| 4516 | * mechanism should be improved, maybe with a differentiation between |
| 4517 | * read and read+write safe sections. |
| 4518 | */ |
| 4519 | thread_isolate(); |
| 4520 | |
| 4521 | get_backend_server(be_name, sv_name, &be, &srv); |
| 4522 | if (!be) { |
| 4523 | cli_err(appctx, "No such backend."); |
| 4524 | goto out; |
| 4525 | } |
| 4526 | |
| 4527 | if (!srv) { |
| 4528 | cli_err(appctx, "No such server."); |
| 4529 | goto out; |
| 4530 | } |
| 4531 | |
| 4532 | if (!(srv->flags & SRV_F_DYNAMIC)) { |
| 4533 | cli_err(appctx, "Only servers added at runtime via <add server> CLI cmd can be deleted."); |
| 4534 | goto out; |
| 4535 | } |
| 4536 | |
| 4537 | /* Only servers in maintenance can be deleted. This ensures that the |
| 4538 | * server is not present anymore in the lb structures (through |
| 4539 | * lbprm.set_server_status_down). |
| 4540 | */ |
| 4541 | if (!(srv->cur_admin & SRV_ADMF_MAINT)) { |
| 4542 | cli_err(appctx, "Only servers in maintenance mode can be deleted."); |
| 4543 | goto out; |
| 4544 | } |
| 4545 | |
| 4546 | /* Ensure that there is no active/idle/pending connection on the server. |
| 4547 | * |
| 4548 | * TODO idle connections should not prevent server deletion. A proper |
| 4549 | * cleanup function should be implemented to be used here. |
| 4550 | */ |
| 4551 | if (srv->cur_sess || srv->curr_idle_conns || |
| 4552 | !eb_is_empty(&srv->pendconns)) { |
| 4553 | cli_err(appctx, "Server still has connections attached to it, cannot remove it."); |
| 4554 | goto out; |
| 4555 | } |
| 4556 | |
| 4557 | /* TODO remove server for check list once 'check' will be implemented for |
| 4558 | * dynamic servers |
| 4559 | */ |
| 4560 | |
| 4561 | /* detach the server from the proxy linked list |
| 4562 | * The proxy servers list is currently not protected by a lock, so this |
| 4563 | * requires thread_isolate/release. |
| 4564 | */ |
| 4565 | |
| 4566 | /* be->srv cannot be empty since we have already found the server with |
| 4567 | * get_backend_server */ |
| 4568 | BUG_ON(!be->srv); |
| 4569 | if (be->srv == srv) { |
| 4570 | be->srv = srv->next; |
| 4571 | } |
| 4572 | else { |
| 4573 | struct server *next; |
Amaury Denoyelle | d6b4b6d | 2021-04-21 11:50:26 +0200 | [diff] [blame] | 4574 | for (next = be->srv; srv != next->next; next = next->next) { |
| 4575 | /* srv cannot be not found since we have already found |
| 4576 | * it with get_backend_server */ |
| 4577 | BUG_ON(!next); |
| 4578 | } |
Amaury Denoyelle | e558043 | 2021-04-15 14:41:20 +0200 | [diff] [blame] | 4579 | |
Amaury Denoyelle | e558043 | 2021-04-15 14:41:20 +0200 | [diff] [blame] | 4580 | next->next = srv->next; |
| 4581 | } |
| 4582 | |
| 4583 | /* remove srv from addr_node tree */ |
| 4584 | ebpt_delete(&srv->addr_node); |
| 4585 | |
| 4586 | /* remove srv from idle_node tree for idle conn cleanup */ |
| 4587 | eb32_delete(&srv->idle_node); |
| 4588 | |
| 4589 | thread_release(); |
| 4590 | |
| 4591 | ha_notice("Server %s/%s deleted.\n", be->id, srv->id); |
| 4592 | free_server(srv); |
| 4593 | |
| 4594 | cli_msg(appctx, LOG_INFO, "Server deleted."); |
| 4595 | |
| 4596 | return 0; |
| 4597 | |
| 4598 | out: |
| 4599 | thread_release(); |
| 4600 | |
| 4601 | return 1; |
| 4602 | } |
| 4603 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4604 | /* register cli keywords */ |
| 4605 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 4606 | { { "disable", "agent", NULL }, "disable agent (DEPRECATED) : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL }, |
| 4607 | { { "disable", "health", NULL }, "disable health (DEPRECATED) : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL }, |
| 4608 | { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL }, |
| 4609 | { { "enable", "agent", NULL }, "enable agent (DEPRECATED) : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL }, |
| 4610 | { { "enable", "health", NULL }, "enable health (DEPRECATED) : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL }, |
| 4611 | { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL }, |
| 4612 | { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL }, |
| 4613 | { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server }, |
| 4614 | { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight }, |
| 4615 | { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight }, |
| 4616 | { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL }, |
| 4617 | { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server (EXPERIMENTAL)", cli_parse_delete_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL }, |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4618 | {{},} |
| 4619 | }}; |
| 4620 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 4621 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 4622 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4623 | /* |
| 4624 | * This function applies server's status changes, it is |
| 4625 | * is designed to be called asynchronously. |
| 4626 | * |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4627 | * Must be called with the server lock held. This may also be called at init |
| 4628 | * time as the result of parsing the state file, in which case no lock will be |
| 4629 | * held, and the server's warmup task can be null. |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4630 | */ |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4631 | static void srv_update_status(struct server *s) |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4632 | { |
| 4633 | struct check *check = &s->check; |
| 4634 | int xferred; |
| 4635 | struct proxy *px = s->proxy; |
| 4636 | int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act; |
| 4637 | int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN); |
| 4638 | int log_level; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 4639 | struct buffer *tmptrash = NULL; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4640 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4641 | /* If currently main is not set we try to apply pending state changes */ |
| 4642 | if (!(s->cur_admin & SRV_ADMF_MAINT)) { |
| 4643 | int next_admin; |
| 4644 | |
| 4645 | /* Backup next admin */ |
| 4646 | next_admin = s->next_admin; |
| 4647 | |
| 4648 | /* restore current admin state */ |
| 4649 | s->next_admin = s->cur_admin; |
| 4650 | |
| 4651 | if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) { |
| 4652 | s->last_change = now.tv_sec; |
| 4653 | if (s->proxy->lbprm.set_server_status_down) |
| 4654 | s->proxy->lbprm.set_server_status_down(s); |
| 4655 | |
| 4656 | if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS) |
| 4657 | srv_shutdown_streams(s, SF_ERR_DOWN); |
| 4658 | |
| 4659 | /* we might have streams queued on this server and waiting for |
| 4660 | * a connection. Those which are redispatchable will be queued |
| 4661 | * to another server or to the proxy itself. |
| 4662 | */ |
| 4663 | xferred = pendconn_redistribute(s); |
| 4664 | |
| 4665 | tmptrash = alloc_trash_chunk(); |
| 4666 | if (tmptrash) { |
| 4667 | chunk_printf(tmptrash, |
| 4668 | "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4669 | s->proxy->id, s->id); |
| 4670 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4671 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4672 | ha_warning("%s.\n", tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4673 | |
| 4674 | /* we don't send an alert if the server was previously paused */ |
| 4675 | log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4676 | send_log(s->proxy, log_level, "%s.\n", |
| 4677 | tmptrash->area); |
| 4678 | send_email_alert(s, log_level, "%s", |
| 4679 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4680 | free_trash_chunk(tmptrash); |
| 4681 | tmptrash = NULL; |
| 4682 | } |
| 4683 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4684 | set_backend_down(s->proxy); |
| 4685 | |
| 4686 | s->counters.down_trans++; |
| 4687 | } |
| 4688 | else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) { |
| 4689 | s->last_change = now.tv_sec; |
| 4690 | if (s->proxy->lbprm.set_server_status_down) |
| 4691 | s->proxy->lbprm.set_server_status_down(s); |
| 4692 | |
| 4693 | /* we might have streams queued on this server and waiting for |
| 4694 | * a connection. Those which are redispatchable will be queued |
| 4695 | * to another server or to the proxy itself. |
| 4696 | */ |
| 4697 | xferred = pendconn_redistribute(s); |
| 4698 | |
| 4699 | tmptrash = alloc_trash_chunk(); |
| 4700 | if (tmptrash) { |
| 4701 | chunk_printf(tmptrash, |
| 4702 | "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4703 | s->proxy->id, s->id); |
| 4704 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4705 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4706 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4707 | ha_warning("%s.\n", tmptrash->area); |
| 4708 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4709 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4710 | free_trash_chunk(tmptrash); |
| 4711 | tmptrash = NULL; |
| 4712 | } |
| 4713 | |
| 4714 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4715 | set_backend_down(s->proxy); |
| 4716 | } |
| 4717 | else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING)) |
| 4718 | || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) { |
| 4719 | if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) { |
| 4720 | if (s->proxy->last_change < now.tv_sec) // ignore negative times |
| 4721 | s->proxy->down_time += now.tv_sec - s->proxy->last_change; |
| 4722 | s->proxy->last_change = now.tv_sec; |
| 4723 | } |
| 4724 | |
Amaury Denoyelle | fe2bf09 | 2020-10-29 15:59:04 +0100 | [diff] [blame] | 4725 | if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4726 | s->down_time += now.tv_sec - s->last_change; |
| 4727 | |
| 4728 | s->last_change = now.tv_sec; |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4729 | if (s->next_state == SRV_ST_STARTING && s->warmup) |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4730 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)))); |
| 4731 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4732 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4733 | /* now propagate the status change to any LB algorithms */ |
| 4734 | if (px->lbprm.update_server_eweight) |
| 4735 | px->lbprm.update_server_eweight(s); |
| 4736 | else if (srv_willbe_usable(s)) { |
| 4737 | if (px->lbprm.set_server_status_up) |
| 4738 | px->lbprm.set_server_status_up(s); |
| 4739 | } |
| 4740 | else { |
| 4741 | if (px->lbprm.set_server_status_down) |
| 4742 | px->lbprm.set_server_status_down(s); |
| 4743 | } |
| 4744 | |
| 4745 | /* If the server is set with "on-marked-up shutdown-backup-sessions", |
| 4746 | * and it's not a backup server and its effective weight is > 0, |
| 4747 | * then it can accept new connections, so we shut down all streams |
| 4748 | * on all backup servers. |
| 4749 | */ |
| 4750 | if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) && |
| 4751 | !(s->flags & SRV_F_BACKUP) && s->next_eweight) |
| 4752 | srv_shutdown_backup_streams(s->proxy, SF_ERR_UP); |
| 4753 | |
| 4754 | /* check if we can handle some connections queued at the proxy. We |
| 4755 | * will take as many as we can handle. |
| 4756 | */ |
| 4757 | xferred = pendconn_grab_from_px(s); |
| 4758 | |
| 4759 | tmptrash = alloc_trash_chunk(); |
| 4760 | if (tmptrash) { |
| 4761 | chunk_printf(tmptrash, |
| 4762 | "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4763 | s->proxy->id, s->id); |
| 4764 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4765 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4766 | ha_warning("%s.\n", tmptrash->area); |
| 4767 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4768 | tmptrash->area); |
| 4769 | send_email_alert(s, LOG_NOTICE, "%s", |
| 4770 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4771 | free_trash_chunk(tmptrash); |
| 4772 | tmptrash = NULL; |
| 4773 | } |
| 4774 | |
| 4775 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4776 | set_backend_down(s->proxy); |
| 4777 | } |
| 4778 | else if (s->cur_eweight != s->next_eweight) { |
| 4779 | /* now propagate the status change to any LB algorithms */ |
| 4780 | if (px->lbprm.update_server_eweight) |
| 4781 | px->lbprm.update_server_eweight(s); |
| 4782 | else if (srv_willbe_usable(s)) { |
| 4783 | if (px->lbprm.set_server_status_up) |
| 4784 | px->lbprm.set_server_status_up(s); |
| 4785 | } |
| 4786 | else { |
| 4787 | if (px->lbprm.set_server_status_down) |
| 4788 | px->lbprm.set_server_status_down(s); |
| 4789 | } |
| 4790 | |
| 4791 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4792 | set_backend_down(s->proxy); |
| 4793 | } |
| 4794 | |
| 4795 | s->next_admin = next_admin; |
| 4796 | } |
| 4797 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4798 | /* reset operational state change */ |
| 4799 | *s->op_st_chg.reason = 0; |
| 4800 | s->op_st_chg.status = s->op_st_chg.code = -1; |
| 4801 | s->op_st_chg.duration = 0; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4802 | |
| 4803 | /* Now we try to apply pending admin changes */ |
| 4804 | |
| 4805 | /* Maintenance must also disable health checks */ |
| 4806 | if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) { |
| 4807 | if (s->check.state & CHK_ST_ENABLED) { |
| 4808 | s->check.state |= CHK_ST_PAUSED; |
| 4809 | check->health = 0; |
| 4810 | } |
| 4811 | |
| 4812 | if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */ |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4813 | tmptrash = alloc_trash_chunk(); |
| 4814 | if (tmptrash) { |
| 4815 | chunk_printf(tmptrash, |
| 4816 | "%sServer %s/%s was DOWN and now enters maintenance%s%s%s", |
| 4817 | s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id, |
| 4818 | *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : ""); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4819 | |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4820 | srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT)); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4821 | |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4822 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4823 | ha_warning("%s.\n", tmptrash->area); |
| 4824 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4825 | tmptrash->area); |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4826 | } |
| 4827 | free_trash_chunk(tmptrash); |
| 4828 | tmptrash = NULL; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4829 | } |
Emeric Brun | 8f29829 | 2017-12-06 16:47:17 +0100 | [diff] [blame] | 4830 | /* commit new admin status */ |
| 4831 | |
| 4832 | s->cur_admin = s->next_admin; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4833 | } |
| 4834 | else { /* server was still running */ |
| 4835 | check->health = 0; /* failure */ |
| 4836 | s->last_change = now.tv_sec; |
Emeric Brun | e311480 | 2017-12-21 14:42:26 +0100 | [diff] [blame] | 4837 | |
| 4838 | s->next_state = SRV_ST_STOPPED; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4839 | if (s->proxy->lbprm.set_server_status_down) |
| 4840 | s->proxy->lbprm.set_server_status_down(s); |
| 4841 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4842 | if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS) |
| 4843 | srv_shutdown_streams(s, SF_ERR_DOWN); |
| 4844 | |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 4845 | /* force connection cleanup on the given server */ |
| 4846 | srv_cleanup_connections(s); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4847 | /* we might have streams queued on this server and waiting for |
| 4848 | * a connection. Those which are redispatchable will be queued |
| 4849 | * to another server or to the proxy itself. |
| 4850 | */ |
| 4851 | xferred = pendconn_redistribute(s); |
| 4852 | |
| 4853 | tmptrash = alloc_trash_chunk(); |
| 4854 | if (tmptrash) { |
| 4855 | chunk_printf(tmptrash, |
| 4856 | "%sServer %s/%s is going DOWN for maintenance%s%s%s", |
| 4857 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4858 | s->proxy->id, s->id, |
| 4859 | *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : ""); |
| 4860 | |
| 4861 | srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT)); |
| 4862 | |
| 4863 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4864 | ha_warning("%s.\n", tmptrash->area); |
| 4865 | send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", |
| 4866 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4867 | } |
| 4868 | free_trash_chunk(tmptrash); |
| 4869 | tmptrash = NULL; |
| 4870 | } |
| 4871 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4872 | set_backend_down(s->proxy); |
| 4873 | |
| 4874 | s->counters.down_trans++; |
| 4875 | } |
| 4876 | } |
| 4877 | else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) { |
| 4878 | /* OK here we're leaving maintenance, we have many things to check, |
| 4879 | * because the server might possibly be coming back up depending on |
| 4880 | * its state. In practice, leaving maintenance means that we should |
| 4881 | * immediately turn to UP (more or less the slowstart) under the |
| 4882 | * following conditions : |
| 4883 | * - server is neither checked nor tracked |
| 4884 | * - server tracks another server which is not checked |
| 4885 | * - server tracks another server which is already up |
| 4886 | * Which sums up as something simpler : |
| 4887 | * "either the tracking server is up or the server's checks are disabled |
| 4888 | * or up". Otherwise we only re-enable health checks. There's a special |
| 4889 | * case associated to the stopping state which can be inherited. Note |
| 4890 | * that the server might still be in drain mode, which is naturally dealt |
| 4891 | * with by the lower level functions. |
| 4892 | */ |
| 4893 | |
| 4894 | if (s->check.state & CHK_ST_ENABLED) { |
| 4895 | s->check.state &= ~CHK_ST_PAUSED; |
| 4896 | check->health = check->rise; /* start OK but check immediately */ |
| 4897 | } |
| 4898 | |
| 4899 | if ((!s->track || s->track->next_state != SRV_ST_STOPPED) && |
| 4900 | (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) && |
| 4901 | (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) { |
| 4902 | if (s->track && s->track->next_state == SRV_ST_STOPPING) { |
| 4903 | s->next_state = SRV_ST_STOPPING; |
| 4904 | } |
| 4905 | else { |
| 4906 | s->next_state = SRV_ST_STARTING; |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4907 | if (s->slowstart > 0) { |
| 4908 | if (s->warmup) |
| 4909 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)))); |
| 4910 | } |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4911 | else |
| 4912 | s->next_state = SRV_ST_RUNNING; |
| 4913 | } |
| 4914 | |
| 4915 | } |
| 4916 | |
| 4917 | tmptrash = alloc_trash_chunk(); |
| 4918 | if (tmptrash) { |
| 4919 | if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) { |
| 4920 | chunk_printf(tmptrash, |
| 4921 | "%sServer %s/%s is %s/%s (leaving forced maintenance)", |
| 4922 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4923 | s->proxy->id, s->id, |
| 4924 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4925 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4926 | } |
| 4927 | if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) { |
| 4928 | chunk_printf(tmptrash, |
| 4929 | "%sServer %s/%s ('%s') is %s/%s (resolves again)", |
| 4930 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4931 | s->proxy->id, s->id, s->hostname, |
| 4932 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4933 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4934 | } |
| 4935 | if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) { |
| 4936 | chunk_printf(tmptrash, |
| 4937 | "%sServer %s/%s is %s/%s (leaving maintenance)", |
| 4938 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4939 | s->proxy->id, s->id, |
| 4940 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4941 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4942 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4943 | ha_warning("%s.\n", tmptrash->area); |
| 4944 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4945 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4946 | free_trash_chunk(tmptrash); |
| 4947 | tmptrash = NULL; |
| 4948 | } |
| 4949 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4950 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4951 | /* now propagate the status change to any LB algorithms */ |
| 4952 | if (px->lbprm.update_server_eweight) |
| 4953 | px->lbprm.update_server_eweight(s); |
| 4954 | else if (srv_willbe_usable(s)) { |
| 4955 | if (px->lbprm.set_server_status_up) |
| 4956 | px->lbprm.set_server_status_up(s); |
| 4957 | } |
| 4958 | else { |
| 4959 | if (px->lbprm.set_server_status_down) |
| 4960 | px->lbprm.set_server_status_down(s); |
| 4961 | } |
| 4962 | |
| 4963 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4964 | set_backend_down(s->proxy); |
| 4965 | |
Willy Tarreau | 6a78e61 | 2018-08-07 10:14:53 +0200 | [diff] [blame] | 4966 | /* If the server is set with "on-marked-up shutdown-backup-sessions", |
| 4967 | * and it's not a backup server and its effective weight is > 0, |
| 4968 | * then it can accept new connections, so we shut down all streams |
| 4969 | * on all backup servers. |
| 4970 | */ |
| 4971 | if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) && |
| 4972 | !(s->flags & SRV_F_BACKUP) && s->next_eweight) |
| 4973 | srv_shutdown_backup_streams(s->proxy, SF_ERR_UP); |
| 4974 | |
| 4975 | /* check if we can handle some connections queued at the proxy. We |
| 4976 | * will take as many as we can handle. |
| 4977 | */ |
| 4978 | xferred = pendconn_grab_from_px(s); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4979 | } |
| 4980 | else if (s->next_admin & SRV_ADMF_MAINT) { |
| 4981 | /* remaining in maintenance mode, let's inform precisely about the |
| 4982 | * situation. |
| 4983 | */ |
| 4984 | if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) { |
| 4985 | tmptrash = alloc_trash_chunk(); |
| 4986 | if (tmptrash) { |
| 4987 | chunk_printf(tmptrash, |
| 4988 | "%sServer %s/%s is leaving forced maintenance but remains in maintenance", |
| 4989 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4990 | s->proxy->id, s->id); |
| 4991 | |
| 4992 | if (s->track) /* normally it's mandatory here */ |
| 4993 | chunk_appendf(tmptrash, " via %s/%s", |
| 4994 | s->track->proxy->id, s->track->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4995 | ha_warning("%s.\n", tmptrash->area); |
| 4996 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4997 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4998 | free_trash_chunk(tmptrash); |
| 4999 | tmptrash = NULL; |
| 5000 | } |
| 5001 | } |
| 5002 | if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) { |
| 5003 | tmptrash = alloc_trash_chunk(); |
| 5004 | if (tmptrash) { |
| 5005 | chunk_printf(tmptrash, |
| 5006 | "%sServer %s/%s ('%s') resolves again but remains in maintenance", |
| 5007 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5008 | s->proxy->id, s->id, s->hostname); |
| 5009 | |
| 5010 | if (s->track) /* normally it's mandatory here */ |
| 5011 | chunk_appendf(tmptrash, " via %s/%s", |
| 5012 | s->track->proxy->id, s->track->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5013 | ha_warning("%s.\n", tmptrash->area); |
| 5014 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 5015 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5016 | free_trash_chunk(tmptrash); |
| 5017 | tmptrash = NULL; |
| 5018 | } |
| 5019 | } |
| 5020 | else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) { |
| 5021 | tmptrash = alloc_trash_chunk(); |
| 5022 | if (tmptrash) { |
| 5023 | chunk_printf(tmptrash, |
| 5024 | "%sServer %s/%s remains in forced maintenance", |
| 5025 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5026 | s->proxy->id, s->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5027 | ha_warning("%s.\n", tmptrash->area); |
| 5028 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 5029 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5030 | free_trash_chunk(tmptrash); |
| 5031 | tmptrash = NULL; |
| 5032 | } |
| 5033 | } |
| 5034 | /* don't report anything when leaving drain mode and remaining in maintenance */ |
| 5035 | |
| 5036 | s->cur_admin = s->next_admin; |
| 5037 | } |
| 5038 | |
| 5039 | if (!(s->next_admin & SRV_ADMF_MAINT)) { |
| 5040 | if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) { |
| 5041 | /* drain state is applied only if not yet in maint */ |
| 5042 | |
| 5043 | s->last_change = now.tv_sec; |
| 5044 | if (px->lbprm.set_server_status_down) |
| 5045 | px->lbprm.set_server_status_down(s); |
| 5046 | |
| 5047 | /* we might have streams queued on this server and waiting for |
| 5048 | * a connection. Those which are redispatchable will be queued |
| 5049 | * to another server or to the proxy itself. |
| 5050 | */ |
| 5051 | xferred = pendconn_redistribute(s); |
| 5052 | |
| 5053 | tmptrash = alloc_trash_chunk(); |
| 5054 | if (tmptrash) { |
| 5055 | chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s", |
| 5056 | s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id, |
| 5057 | *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : ""); |
| 5058 | |
| 5059 | srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN)); |
| 5060 | |
| 5061 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5062 | ha_warning("%s.\n", tmptrash->area); |
| 5063 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 5064 | tmptrash->area); |
| 5065 | send_email_alert(s, LOG_NOTICE, "%s", |
| 5066 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5067 | } |
| 5068 | free_trash_chunk(tmptrash); |
| 5069 | tmptrash = NULL; |
| 5070 | } |
| 5071 | |
| 5072 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 5073 | set_backend_down(s->proxy); |
| 5074 | } |
| 5075 | else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) { |
| 5076 | /* OK completely leaving drain mode */ |
| 5077 | if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) { |
| 5078 | if (s->proxy->last_change < now.tv_sec) // ignore negative times |
| 5079 | s->proxy->down_time += now.tv_sec - s->proxy->last_change; |
| 5080 | s->proxy->last_change = now.tv_sec; |
| 5081 | } |
| 5082 | |
| 5083 | if (s->last_change < now.tv_sec) // ignore negative times |
| 5084 | s->down_time += now.tv_sec - s->last_change; |
| 5085 | s->last_change = now.tv_sec; |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 5086 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5087 | |
| 5088 | tmptrash = alloc_trash_chunk(); |
| 5089 | if (tmptrash) { |
| 5090 | if (!(s->next_admin & SRV_ADMF_FDRAIN)) { |
| 5091 | chunk_printf(tmptrash, |
| 5092 | "%sServer %s/%s is %s (leaving forced drain)", |
| 5093 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5094 | s->proxy->id, s->id, |
| 5095 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP"); |
| 5096 | } |
| 5097 | else { |
| 5098 | chunk_printf(tmptrash, |
| 5099 | "%sServer %s/%s is %s (leaving drain)", |
| 5100 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5101 | s->proxy->id, s->id, |
| 5102 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP"); |
| 5103 | if (s->track) /* normally it's mandatory here */ |
| 5104 | chunk_appendf(tmptrash, " via %s/%s", |
| 5105 | s->track->proxy->id, s->track->id); |
| 5106 | } |
| 5107 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5108 | ha_warning("%s.\n", tmptrash->area); |
| 5109 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 5110 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5111 | free_trash_chunk(tmptrash); |
| 5112 | tmptrash = NULL; |
| 5113 | } |
| 5114 | |
| 5115 | /* now propagate the status change to any LB algorithms */ |
| 5116 | if (px->lbprm.update_server_eweight) |
| 5117 | px->lbprm.update_server_eweight(s); |
| 5118 | else if (srv_willbe_usable(s)) { |
| 5119 | if (px->lbprm.set_server_status_up) |
| 5120 | px->lbprm.set_server_status_up(s); |
| 5121 | } |
| 5122 | else { |
| 5123 | if (px->lbprm.set_server_status_down) |
| 5124 | px->lbprm.set_server_status_down(s); |
| 5125 | } |
| 5126 | } |
| 5127 | else if ((s->next_admin & SRV_ADMF_DRAIN)) { |
| 5128 | /* remaining in drain mode after removing one of its flags */ |
| 5129 | |
| 5130 | tmptrash = alloc_trash_chunk(); |
| 5131 | if (tmptrash) { |
| 5132 | if (!(s->next_admin & SRV_ADMF_FDRAIN)) { |
| 5133 | chunk_printf(tmptrash, |
| 5134 | "%sServer %s/%s is leaving forced drain but remains in drain mode", |
| 5135 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5136 | s->proxy->id, s->id); |
| 5137 | |
| 5138 | if (s->track) /* normally it's mandatory here */ |
| 5139 | chunk_appendf(tmptrash, " via %s/%s", |
| 5140 | s->track->proxy->id, s->track->id); |
| 5141 | } |
| 5142 | else { |
| 5143 | chunk_printf(tmptrash, |
| 5144 | "%sServer %s/%s remains in forced drain mode", |
| 5145 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 5146 | s->proxy->id, s->id); |
| 5147 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5148 | ha_warning("%s.\n", tmptrash->area); |
| 5149 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 5150 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5151 | free_trash_chunk(tmptrash); |
| 5152 | tmptrash = NULL; |
| 5153 | } |
| 5154 | |
| 5155 | /* commit new admin status */ |
| 5156 | |
| 5157 | s->cur_admin = s->next_admin; |
| 5158 | } |
| 5159 | } |
| 5160 | |
| 5161 | /* Re-set log strings to empty */ |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5162 | *s->adm_st_chg_cause = 0; |
| 5163 | } |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5164 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5165 | struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state) |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5166 | { |
| 5167 | struct connection *conn; |
| 5168 | |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5169 | while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns, |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5170 | struct connection *, toremove_list)) != NULL) { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 5171 | conn->mux->destroy(conn->ctx); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5172 | } |
| 5173 | |
| 5174 | return task; |
| 5175 | } |
| 5176 | |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5177 | /* Move toremove_nb connections from idle_tree to toremove_list, -1 means |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5178 | * moving them all. |
| 5179 | * Returns the number of connections moved. |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5180 | * |
| 5181 | * Must be called with idle_conns_lock held. |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5182 | */ |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5183 | static int srv_migrate_conns_to_remove(struct eb_root *idle_tree, struct mt_list *toremove_list, int toremove_nb) |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5184 | { |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5185 | struct eb_node *node, *next; |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 5186 | struct conn_hash_node *hash_node; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5187 | int i = 0; |
| 5188 | |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5189 | node = eb_first(idle_tree); |
| 5190 | while (node) { |
| 5191 | next = eb_next(node); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5192 | if (toremove_nb != -1 && i >= toremove_nb) |
| 5193 | break; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5194 | |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 5195 | hash_node = ebmb_entry(node, struct conn_hash_node, node); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5196 | eb_delete(node); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5197 | MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5198 | i++; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5199 | |
| 5200 | node = next; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5201 | } |
| 5202 | return i; |
| 5203 | } |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5204 | /* cleanup connections for a given server |
| 5205 | * might be useful when going on forced maintenance or live changing ip/port |
| 5206 | */ |
William Dauchy | 707ad32 | 2020-05-04 13:52:40 +0200 | [diff] [blame] | 5207 | static void srv_cleanup_connections(struct server *srv) |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5208 | { |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5209 | int did_remove; |
| 5210 | int i; |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5211 | |
Amaury Denoyelle | 10d5c31 | 2021-01-06 14:28:51 +0100 | [diff] [blame] | 5212 | /* nothing to do if pool-max-conn is null */ |
| 5213 | if (!srv->max_idle_conns) |
| 5214 | return; |
| 5215 | |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5216 | /* check all threads starting with ours */ |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5217 | for (i = tid;;) { |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5218 | did_remove = 0; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5219 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5220 | if (srv_migrate_conns_to_remove(&srv->per_thr[i].idle_conns, &idle_conns[i].toremove_conns, -1) > 0) |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5221 | did_remove = 1; |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5222 | if (srv_migrate_conns_to_remove(&srv->per_thr[i].safe_conns, &idle_conns[i].toremove_conns, -1) > 0) |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5223 | did_remove = 1; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5224 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5225 | if (did_remove) |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5226 | task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER); |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5227 | |
| 5228 | if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid) |
| 5229 | break; |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5230 | } |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5231 | } |
| 5232 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5233 | struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state) |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5234 | { |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5235 | struct server *srv; |
| 5236 | struct eb32_node *eb; |
| 5237 | int i; |
| 5238 | unsigned int next_wakeup; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 5239 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5240 | next_wakeup = TICK_ETERNITY; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5241 | HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock); |
| 5242 | while (1) { |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5243 | int exceed_conns; |
| 5244 | int to_kill; |
| 5245 | int curr_idle; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 5246 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5247 | eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK); |
| 5248 | if (!eb) { |
| 5249 | /* we might have reached the end of the tree, typically because |
| 5250 | * <now_ms> is in the first half and we're first scanning the last |
| 5251 | * half. Let's loop back to the beginning of the tree now. |
| 5252 | */ |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5253 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5254 | eb = eb32_first(&idle_conn_srv); |
| 5255 | if (likely(!eb)) |
| 5256 | break; |
| 5257 | } |
| 5258 | if (tick_is_lt(now_ms, eb->key)) { |
| 5259 | /* timer not expired yet, revisit it later */ |
| 5260 | next_wakeup = eb->key; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5261 | break; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5262 | } |
| 5263 | srv = eb32_entry(eb, struct server, idle_node); |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5264 | |
| 5265 | /* Calculate how many idle connections we want to kill : |
| 5266 | * we want to remove half the difference between the total |
| 5267 | * of established connections (used or idle) and the max |
| 5268 | * number of used connections. |
| 5269 | */ |
| 5270 | curr_idle = srv->curr_idle_conns; |
| 5271 | if (curr_idle == 0) |
| 5272 | goto remove; |
Willy Tarreau | bdb86bd | 2020-06-29 15:56:35 +0200 | [diff] [blame] | 5273 | exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns); |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5274 | exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1); |
Willy Tarreau | bdb86bd | 2020-06-29 15:56:35 +0200 | [diff] [blame] | 5275 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5276 | srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2; |
Willy Tarreau | bdb86bd | 2020-06-29 15:56:35 +0200 | [diff] [blame] | 5277 | if (srv->est_need_conns < srv->max_used_conns) |
| 5278 | srv->est_need_conns = srv->max_used_conns; |
| 5279 | |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5280 | srv->max_used_conns = srv->curr_used_conns; |
| 5281 | |
Willy Tarreau | 18ed789 | 2020-07-02 19:05:30 +0200 | [diff] [blame] | 5282 | if (exceed_conns <= 0) |
| 5283 | goto remove; |
| 5284 | |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5285 | /* check all threads starting with ours */ |
| 5286 | for (i = tid;;) { |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5287 | int max_conn; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5288 | int j; |
| 5289 | int did_remove = 0; |
| 5290 | |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5291 | max_conn = (exceed_conns * srv->curr_idle_thr[i]) / |
| 5292 | curr_idle + 1; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5293 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5294 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5295 | j = srv_migrate_conns_to_remove(&srv->per_thr[i].idle_conns, &idle_conns[i].toremove_conns, max_conn); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5296 | if (j > 0) |
| 5297 | did_remove = 1; |
| 5298 | if (max_conn - j > 0 && |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5299 | srv_migrate_conns_to_remove(&srv->per_thr[i].safe_conns, &idle_conns[i].toremove_conns, max_conn - j) > 0) |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5300 | did_remove = 1; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5301 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5302 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5303 | if (did_remove) |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5304 | task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER); |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5305 | |
| 5306 | if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid) |
| 5307 | break; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5308 | } |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5309 | remove: |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5310 | eb32_delete(&srv->idle_node); |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5311 | |
| 5312 | if (srv->curr_idle_conns) { |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5313 | /* There are still more idle connections, add the |
| 5314 | * server back in the tree. |
| 5315 | */ |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5316 | srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5317 | eb32_insert(&idle_conn_srv, &srv->idle_node); |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5318 | next_wakeup = tick_first(next_wakeup, srv->idle_node.key); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5319 | } |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5320 | } |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5321 | HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock); |
| 5322 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5323 | task->expire = next_wakeup; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5324 | return task; |
| 5325 | } |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5326 | |
Amaury Denoyelle | 3109ccf | 2021-04-29 17:30:05 +0200 | [diff] [blame] | 5327 | /* Close remaining idle connections. This functions is designed to be run on |
| 5328 | * process shutdown. This guarantees a proper socket shutdown to avoid |
| 5329 | * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is |
| 5330 | * bypassed. |
| 5331 | * |
| 5332 | * This function is not thread-safe so it must only be called via a global |
| 5333 | * deinit function. |
| 5334 | */ |
| 5335 | static void srv_close_idle_conns(struct server *srv) |
| 5336 | { |
| 5337 | struct eb_root **cleaned_tree; |
| 5338 | int i; |
| 5339 | |
| 5340 | for (i = 0; i < global.nbthread; ++i) { |
| 5341 | struct eb_root *conn_trees[] = { |
| 5342 | &srv->per_thr[i].idle_conns, |
| 5343 | &srv->per_thr[i].safe_conns, |
| 5344 | &srv->per_thr[i].avail_conns, |
| 5345 | NULL |
| 5346 | }; |
| 5347 | |
| 5348 | for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) { |
| 5349 | while (!eb_is_empty(*cleaned_tree)) { |
| 5350 | struct ebmb_node *node = ebmb_first(*cleaned_tree); |
| 5351 | struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node); |
| 5352 | struct connection *conn = conn_hash_node->conn; |
| 5353 | |
| 5354 | if (conn->ctrl->ctrl_close) |
| 5355 | conn->ctrl->ctrl_close(conn); |
| 5356 | ebmb_delete(node); |
| 5357 | } |
| 5358 | } |
| 5359 | } |
| 5360 | } |
| 5361 | |
| 5362 | REGISTER_SERVER_DEINIT(srv_close_idle_conns); |
| 5363 | |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5364 | /* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */ |
| 5365 | static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 5366 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5367 | char **err) |
| 5368 | { |
| 5369 | if (too_many_args(1, args, err, NULL)) |
| 5370 | return -1; |
| 5371 | |
| 5372 | if (strcmp(args[1], "on") == 0) |
| 5373 | global.tune.options |= GTUNE_IDLE_POOL_SHARED; |
| 5374 | else if (strcmp(args[1], "off") == 0) |
| 5375 | global.tune.options &= ~GTUNE_IDLE_POOL_SHARED; |
| 5376 | else { |
| 5377 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 5378 | return -1; |
| 5379 | } |
| 5380 | return 0; |
| 5381 | } |
| 5382 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5383 | /* config parser for global "tune.pool-{low,high}-fd-ratio" */ |
| 5384 | static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 5385 | const struct proxy *defpx, const char *file, int line, |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5386 | char **err) |
| 5387 | { |
| 5388 | int arg = -1; |
| 5389 | |
| 5390 | if (too_many_args(1, args, err, NULL)) |
| 5391 | return -1; |
| 5392 | |
| 5393 | if (*(args[1]) != 0) |
| 5394 | arg = atoi(args[1]); |
| 5395 | |
| 5396 | if (arg < 0 || arg > 100) { |
| 5397 | memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]); |
| 5398 | return -1; |
| 5399 | } |
| 5400 | |
| 5401 | if (args[0][10] == 'h') |
| 5402 | global.tune.pool_high_ratio = arg; |
| 5403 | else |
| 5404 | global.tune.pool_low_ratio = arg; |
| 5405 | return 0; |
| 5406 | } |
| 5407 | |
| 5408 | /* config keyword parsers */ |
| 5409 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5410 | { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared }, |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5411 | { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio }, |
| 5412 | { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio }, |
| 5413 | { 0, NULL, NULL } |
| 5414 | }}; |
| 5415 | |
| 5416 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 5417 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 5418 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5419 | * Local variables: |
| 5420 | * c-indent-level: 8 |
| 5421 | * c-basic-offset: 8 |
| 5422 | * End: |
| 5423 | */ |