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 | a55c454 | 2020-06-04 22:59:39 +0200 | [diff] [blame] | 36 | #include <haproxy/queue.h> |
Emeric Brun | c943799 | 2021-02-12 19:42:55 +0100 | [diff] [blame] | 37 | #include <haproxy/resolvers.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 38 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 39 | #include <haproxy/server.h> |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 40 | #include <haproxy/ssl_sock.h> |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 41 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 42 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 43 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 44 | #include <haproxy/task.h> |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 45 | #include <haproxy/tcpcheck.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 46 | #include <haproxy/time.h> |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 47 | |
Baptiste Assmann | da29fe2 | 2019-06-13 13:24:29 +0200 | [diff] [blame] | 48 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 49 | static void srv_update_status(struct server *s); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 50 | static int srv_apply_lastaddr(struct server *srv, int *err_code); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 51 | static void srv_cleanup_connections(struct server *srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 52 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 53 | /* extra keywords used as value for other arguments. They are used as |
| 54 | * suggestions for mistyped words. |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 55 | */ |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 56 | static const char *extra_kw_list[] = { |
| 57 | "ipv4", "ipv6", "legacy", "octet-count", |
Amaury Denoyelle | 3b89c11 | 2021-03-12 16:04:00 +0100 | [diff] [blame] | 58 | "fail-check", "sudden-death", "mark-down", |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 59 | NULL /* must be last */ |
| 60 | }; |
| 61 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 62 | /* List head of all known server keywords */ |
| 63 | static struct srv_kw_list srv_keywords = { |
| 64 | .list = LIST_HEAD_INIT(srv_keywords.list) |
| 65 | }; |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 66 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 67 | __decl_thread(HA_SPINLOCK_T idle_conn_srv_lock); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 68 | struct eb_root idle_conn_srv = EB_ROOT; |
| 69 | struct task *idle_conn_task = NULL; |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 70 | struct list servers_list = LIST_HEAD_INIT(servers_list); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 71 | |
Frédéric Lécaille | 7da7129 | 2019-05-20 09:47:07 +0200 | [diff] [blame] | 72 | /* The server names dictionary */ |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 73 | struct dict server_key_dict = { |
| 74 | .name = "server keys", |
Frédéric Lécaille | 7da7129 | 2019-05-20 09:47:07 +0200 | [diff] [blame] | 75 | .values = EB_ROOT_UNIQUE, |
| 76 | }; |
| 77 | |
Simon Horman | a360844 | 2013-11-01 16:46:15 +0900 | [diff] [blame] | 78 | int srv_downtime(const struct server *s) |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 79 | { |
Amaury Denoyelle | e6ba791 | 2020-10-29 15:59:05 +0100 | [diff] [blame] | 80 | 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] | 81 | return s->down_time; |
| 82 | |
| 83 | return now.tv_sec - s->last_change + s->down_time; |
| 84 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 85 | |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 86 | int srv_lastsession(const struct server *s) |
| 87 | { |
| 88 | if (s->counters.last_sess) |
| 89 | return now.tv_sec - s->counters.last_sess; |
| 90 | |
| 91 | return -1; |
| 92 | } |
| 93 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 94 | int srv_getinter(const struct check *check) |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 95 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 96 | const struct server *s = check->server; |
| 97 | |
Willy Tarreau | ff5ae35 | 2013-12-11 20:36:34 +0100 | [diff] [blame] | 98 | 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] | 99 | return check->inter; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 100 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 101 | if ((s->next_state == SRV_ST_STOPPED) && check->health == 0) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 102 | return (check->downinter)?(check->downinter):(check->inter); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 103 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 104 | return (check->fastinter)?(check->fastinter):(check->inter); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 105 | } |
| 106 | |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 107 | /* |
| 108 | * Check that we did not get a hash collision. |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 109 | * Unlikely, but it can happen. The server's proxy must be at least |
| 110 | * read-locked. |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 111 | */ |
| 112 | static inline void srv_check_for_dup_dyncookie(struct server *s) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 113 | { |
| 114 | struct proxy *p = s->proxy; |
| 115 | struct server *tmpserv; |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 116 | |
| 117 | for (tmpserv = p->srv; tmpserv != NULL; |
| 118 | tmpserv = tmpserv->next) { |
| 119 | if (tmpserv == s) |
| 120 | continue; |
| 121 | if (tmpserv->next_admin & SRV_ADMF_FMAINT) |
| 122 | continue; |
| 123 | if (tmpserv->cookie && |
| 124 | strcmp(tmpserv->cookie, s->cookie) == 0) { |
| 125 | ha_warning("We generated two equal cookies for two different servers.\n" |
| 126 | "Please change the secret key for '%s'.\n", |
| 127 | s->proxy->id); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | } |
| 132 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 133 | /* |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 134 | * 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] | 135 | */ |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 136 | void srv_set_dyncookie(struct server *s) |
| 137 | { |
| 138 | struct proxy *p = s->proxy; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 139 | char *tmpbuf; |
| 140 | unsigned long long hash_value; |
Olivier Houchard | 2cb49eb | 2017-03-15 15:11:06 +0100 | [diff] [blame] | 141 | size_t key_len; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 142 | size_t buffer_len; |
| 143 | int addr_len; |
| 144 | int port; |
| 145 | |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 146 | HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock); |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 147 | |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 148 | if ((s->flags & SRV_F_COOKIESET) || |
| 149 | !(s->proxy->ck_opts & PR_CK_DYNAMIC) || |
| 150 | s->proxy->dyncookie_key == NULL) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 151 | goto out; |
Olivier Houchard | 2cb49eb | 2017-03-15 15:11:06 +0100 | [diff] [blame] | 152 | key_len = strlen(p->dyncookie_key); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 153 | |
| 154 | if (s->addr.ss_family != AF_INET && |
| 155 | s->addr.ss_family != AF_INET6) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 156 | goto out; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 157 | /* |
| 158 | * Buffer to calculate the cookie value. |
| 159 | * The buffer contains the secret key + the server IP address |
| 160 | * + the TCP port. |
| 161 | */ |
| 162 | addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16; |
| 163 | /* |
| 164 | * The TCP port should use only 2 bytes, but is stored in |
| 165 | * an unsigned int in struct server, so let's use 4, to be |
| 166 | * on the safe side. |
| 167 | */ |
| 168 | buffer_len = key_len + addr_len + 4; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 169 | tmpbuf = trash.area; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 170 | memcpy(tmpbuf, p->dyncookie_key, key_len); |
| 171 | memcpy(&(tmpbuf[key_len]), |
| 172 | s->addr.ss_family == AF_INET ? |
| 173 | (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr : |
| 174 | (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr), |
| 175 | addr_len); |
| 176 | /* |
| 177 | * Make sure it's the same across all the load balancers, |
| 178 | * no matter their endianness. |
| 179 | */ |
| 180 | port = htonl(s->svc_port); |
| 181 | memcpy(&tmpbuf[key_len + addr_len], &port, 4); |
| 182 | hash_value = XXH64(tmpbuf, buffer_len, 0); |
| 183 | memprintf(&s->cookie, "%016llx", hash_value); |
| 184 | if (!s->cookie) |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 185 | goto out; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 186 | s->cklen = 16; |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 187 | |
| 188 | /* Don't bother checking if the dyncookie is duplicated if |
| 189 | * the server is marked as "disabled", maybe it doesn't have |
| 190 | * its real IP yet, but just a place holder. |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 191 | */ |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 192 | if (!(s->next_admin & SRV_ADMF_FMAINT)) |
| 193 | srv_check_for_dup_dyncookie(s); |
Willy Tarreau | 5e83d99 | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 194 | out: |
Willy Tarreau | 595e767 | 2020-10-20 17:30:08 +0200 | [diff] [blame] | 195 | HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 198 | /* |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 199 | * Must be called with the server lock held, and will write-lock the proxy. |
| 200 | */ |
| 201 | static void srv_set_addr_desc(struct server *s) |
| 202 | { |
| 203 | struct proxy *p = s->proxy; |
| 204 | char *key; |
| 205 | |
| 206 | key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS); |
| 207 | |
| 208 | if (s->addr_node.key) { |
Thayne McCombs | 24da7e1 | 2021-01-05 23:10:09 -0700 | [diff] [blame] | 209 | if (key && strcmp(key, s->addr_node.key) == 0) { |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 210 | free(key); |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock); |
| 215 | ebpt_delete(&s->addr_node); |
| 216 | HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock); |
| 217 | |
| 218 | free(s->addr_node.key); |
| 219 | } |
| 220 | |
| 221 | s->addr_node.key = key; |
| 222 | |
Thayne McCombs | 24da7e1 | 2021-01-05 23:10:09 -0700 | [diff] [blame] | 223 | if (s->addr_node.key) { |
| 224 | HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock); |
| 225 | ebis_insert(&p->used_server_addr, &s->addr_node); |
| 226 | HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock); |
| 227 | } |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /* |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 231 | * Registers the server keyword list <kwl> as a list of valid keywords for next |
| 232 | * parsing sessions. |
| 233 | */ |
| 234 | void srv_register_keywords(struct srv_kw_list *kwl) |
| 235 | { |
| 236 | LIST_ADDQ(&srv_keywords.list, &kwl->list); |
| 237 | } |
| 238 | |
| 239 | /* Return a pointer to the server keyword <kw>, or NULL if not found. If the |
| 240 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 241 | * find one with a valid ->parse() function. This way it is possible to declare |
| 242 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 243 | * if some options are met. Note that if the requested keyword contains an |
| 244 | * opening parenthesis, everything from this point is ignored. |
| 245 | */ |
| 246 | struct srv_kw *srv_find_kw(const char *kw) |
| 247 | { |
| 248 | int index; |
| 249 | const char *kwend; |
| 250 | struct srv_kw_list *kwl; |
| 251 | struct srv_kw *ret = NULL; |
| 252 | |
| 253 | kwend = strchr(kw, '('); |
| 254 | if (!kwend) |
| 255 | kwend = kw + strlen(kw); |
| 256 | |
| 257 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 258 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 259 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 260 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 261 | if (kwl->kw[index].parse) |
| 262 | return &kwl->kw[index]; /* found it !*/ |
| 263 | else |
| 264 | ret = &kwl->kw[index]; /* may be OK */ |
| 265 | } |
| 266 | } |
| 267 | } |
| 268 | return ret; |
| 269 | } |
| 270 | |
| 271 | /* Dumps all registered "server" keywords to the <out> string pointer. The |
| 272 | * unsupported keywords are only dumped if their supported form was not |
| 273 | * found. |
| 274 | */ |
| 275 | void srv_dump_kws(char **out) |
| 276 | { |
| 277 | struct srv_kw_list *kwl; |
| 278 | int index; |
| 279 | |
Christopher Faulet | 784063e | 2020-05-18 12:14:18 +0200 | [diff] [blame] | 280 | if (!out) |
| 281 | return; |
| 282 | |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 283 | *out = NULL; |
| 284 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 285 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 286 | if (kwl->kw[index].parse || |
| 287 | srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) { |
| 288 | memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "", |
| 289 | kwl->scope, |
| 290 | kwl->kw[index].kw, |
| 291 | kwl->kw[index].skip ? " <arg>" : "", |
| 292 | kwl->kw[index].default_ok ? " [dflt_ok]" : "", |
| 293 | kwl->kw[index].parse ? "" : " (not supported)"); |
| 294 | } |
| 295 | } |
| 296 | } |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | /* Try to find in srv_keyword the word that looks closest to <word> by counting |
| 300 | * transitions between letters, digits and other characters. Will return the |
| 301 | * best matching word if found, otherwise NULL. An optional array of extra |
| 302 | * words to compare may be passed in <extra>, but it must then be terminated |
| 303 | * by a NULL entry. If unused it may be NULL. |
| 304 | */ |
| 305 | static const char *srv_find_best_kw(const char *word) |
| 306 | { |
| 307 | uint8_t word_sig[1024]; |
| 308 | uint8_t list_sig[1024]; |
| 309 | const struct srv_kw_list *kwl; |
| 310 | const char *best_ptr = NULL; |
| 311 | int dist, best_dist = INT_MAX; |
| 312 | const char **extra; |
| 313 | int index; |
| 314 | |
| 315 | make_word_fingerprint(word_sig, word); |
| 316 | list_for_each_entry(kwl, &srv_keywords.list, list) { |
| 317 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 318 | make_word_fingerprint(list_sig, kwl->kw[index].kw); |
| 319 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 320 | if (dist < best_dist) { |
| 321 | best_dist = dist; |
| 322 | best_ptr = kwl->kw[index].kw; |
| 323 | } |
| 324 | } |
| 325 | } |
| 326 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 327 | for (extra = extra_kw_list; *extra; extra++) { |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 328 | make_word_fingerprint(list_sig, *extra); |
| 329 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 330 | if (dist < best_dist) { |
| 331 | best_dist = dist; |
| 332 | best_ptr = *extra; |
| 333 | } |
Willy Tarreau | 49c2b45 | 2021-03-12 09:58:04 +0100 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr))) |
| 337 | best_ptr = NULL; |
| 338 | |
| 339 | return best_ptr; |
Willy Tarreau | 21faa91 | 2012-10-10 08:27:36 +0200 | [diff] [blame] | 340 | } |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 341 | |
Frédéric Lécaille | f5bf903 | 2017-03-10 11:51:05 +0100 | [diff] [blame] | 342 | /* Parse the "backup" server keyword */ |
| 343 | static int srv_parse_backup(char **args, int *cur_arg, |
| 344 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 345 | { |
| 346 | newsrv->flags |= SRV_F_BACKUP; |
| 347 | return 0; |
| 348 | } |
| 349 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 350 | |
Frédéric Lécaille | 9d1b95b | 2017-03-15 09:13:33 +0100 | [diff] [blame] | 351 | /* Parse the "cookie" server keyword */ |
| 352 | static int srv_parse_cookie(char **args, int *cur_arg, |
| 353 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 354 | { |
| 355 | char *arg; |
| 356 | |
| 357 | arg = args[*cur_arg + 1]; |
| 358 | if (!*arg) { |
| 359 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 360 | return ERR_ALERT | ERR_FATAL; |
| 361 | } |
| 362 | |
| 363 | free(newsrv->cookie); |
| 364 | newsrv->cookie = strdup(arg); |
| 365 | newsrv->cklen = strlen(arg); |
| 366 | newsrv->flags |= SRV_F_COOKIESET; |
| 367 | return 0; |
| 368 | } |
| 369 | |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 370 | /* Parse the "disabled" server keyword */ |
| 371 | static int srv_parse_disabled(char **args, int *cur_arg, |
| 372 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 373 | { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 374 | newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT; |
| 375 | newsrv->next_state = SRV_ST_STOPPED; |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 376 | newsrv->check.state |= CHK_ST_PAUSED; |
| 377 | newsrv->check.health = 0; |
| 378 | return 0; |
| 379 | } |
| 380 | |
| 381 | /* Parse the "enabled" server keyword */ |
| 382 | static int srv_parse_enabled(char **args, int *cur_arg, |
| 383 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 384 | { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 385 | newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT; |
| 386 | newsrv->next_state = SRV_ST_RUNNING; |
Frédéric Lécaille | 2a0d061 | 2017-03-21 11:53:54 +0100 | [diff] [blame] | 387 | newsrv->check.state &= ~CHK_ST_PAUSED; |
| 388 | newsrv->check.health = newsrv->check.rise; |
| 389 | return 0; |
| 390 | } |
| 391 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 392 | /* Parse the "error-limit" server keyword */ |
| 393 | static int srv_parse_error_limit(char **args, int *cur_arg, |
| 394 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 395 | { |
| 396 | if (!*args[*cur_arg + 1]) { |
| 397 | memprintf(err, "'%s' expects an integer argument.", |
| 398 | args[*cur_arg]); |
| 399 | return ERR_ALERT | ERR_FATAL; |
| 400 | } |
| 401 | |
| 402 | newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]); |
| 403 | |
| 404 | if (newsrv->consecutive_errors_limit <= 0) { |
| 405 | memprintf(err, "%s has to be > 0.", |
| 406 | args[*cur_arg]); |
| 407 | return ERR_ALERT | ERR_FATAL; |
| 408 | } |
| 409 | |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | /* Parse the "init-addr" server keyword */ |
| 414 | static int srv_parse_init_addr(char **args, int *cur_arg, |
| 415 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 416 | { |
| 417 | char *p, *end; |
| 418 | int done; |
| 419 | struct sockaddr_storage sa; |
| 420 | |
| 421 | newsrv->init_addr_methods = 0; |
| 422 | memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr)); |
| 423 | |
| 424 | for (p = args[*cur_arg + 1]; *p; p = end) { |
| 425 | /* cut on next comma */ |
| 426 | for (end = p; *end && *end != ','; end++); |
| 427 | if (*end) |
| 428 | *(end++) = 0; |
| 429 | |
| 430 | memset(&sa, 0, sizeof(sa)); |
| 431 | if (strcmp(p, "libc") == 0) { |
| 432 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC); |
| 433 | } |
| 434 | else if (strcmp(p, "last") == 0) { |
| 435 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST); |
| 436 | } |
| 437 | else if (strcmp(p, "none") == 0) { |
| 438 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE); |
| 439 | } |
| 440 | else if (str2ip2(p, &sa, 0)) { |
| 441 | if (is_addr(&newsrv->init_addr)) { |
| 442 | memprintf(err, "'%s' : initial address already specified, cannot add '%s'.", |
| 443 | args[*cur_arg], p); |
| 444 | return ERR_ALERT | ERR_FATAL; |
| 445 | } |
| 446 | newsrv->init_addr = sa; |
| 447 | done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP); |
| 448 | } |
| 449 | else { |
| 450 | memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.", |
| 451 | args[*cur_arg], p); |
| 452 | return ERR_ALERT | ERR_FATAL; |
| 453 | } |
| 454 | if (!done) { |
| 455 | memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'", |
| 456 | args[*cur_arg], p); |
| 457 | return ERR_ALERT | ERR_FATAL; |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | /* Parse the "log-proto" server keyword */ |
| 465 | static int srv_parse_log_proto(char **args, int *cur_arg, |
| 466 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 467 | { |
| 468 | if (strcmp(args[*cur_arg + 1], "legacy") == 0) |
| 469 | newsrv->log_proto = SRV_LOG_PROTO_LEGACY; |
| 470 | else if (strcmp(args[*cur_arg + 1], "octet-count") == 0) |
| 471 | newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING; |
| 472 | else { |
| 473 | memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'", |
| 474 | args[*cur_arg], args[*cur_arg + 1]); |
| 475 | return ERR_ALERT | ERR_FATAL; |
| 476 | } |
| 477 | |
| 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | /* Parse the "maxconn" server keyword */ |
| 482 | static int srv_parse_maxconn(char **args, int *cur_arg, |
| 483 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 484 | { |
| 485 | newsrv->maxconn = atol(args[*cur_arg + 1]); |
| 486 | return 0; |
| 487 | } |
| 488 | |
| 489 | /* Parse the "maxqueue" server keyword */ |
| 490 | static int srv_parse_maxqueue(char **args, int *cur_arg, |
| 491 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 492 | { |
| 493 | newsrv->maxqueue = atol(args[*cur_arg + 1]); |
| 494 | return 0; |
| 495 | } |
| 496 | |
| 497 | /* Parse the "minconn" server keyword */ |
| 498 | static int srv_parse_minconn(char **args, int *cur_arg, |
| 499 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 500 | { |
| 501 | newsrv->minconn = atol(args[*cur_arg + 1]); |
| 502 | return 0; |
| 503 | } |
| 504 | |
Willy Tarreau | 9c538e0 | 2019-01-23 10:21:49 +0100 | [diff] [blame] | 505 | static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 506 | { |
| 507 | char *arg; |
| 508 | |
| 509 | arg = args[*cur_arg + 1]; |
| 510 | if (!*arg) { |
| 511 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 512 | return ERR_ALERT | ERR_FATAL; |
| 513 | } |
| 514 | newsrv->max_reuse = atoi(arg); |
| 515 | |
| 516 | return 0; |
| 517 | } |
| 518 | |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 519 | 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] | 520 | { |
| 521 | const char *res; |
| 522 | char *arg; |
| 523 | unsigned int time; |
| 524 | |
| 525 | arg = args[*cur_arg + 1]; |
| 526 | if (!*arg) { |
| 527 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 528 | return ERR_ALERT | ERR_FATAL; |
| 529 | } |
| 530 | res = parse_time_err(arg, &time, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 531 | if (res == PARSE_TIME_OVER) { |
| 532 | memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 533 | args[*cur_arg+1], args[*cur_arg]); |
| 534 | return ERR_ALERT | ERR_FATAL; |
| 535 | } |
| 536 | else if (res == PARSE_TIME_UNDER) { |
| 537 | memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)", |
| 538 | args[*cur_arg+1], args[*cur_arg]); |
| 539 | return ERR_ALERT | ERR_FATAL; |
| 540 | } |
| 541 | else if (res) { |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 542 | memprintf(err, "unexpected character '%c' in argument to <%s>.\n", |
| 543 | *res, args[*cur_arg]); |
| 544 | return ERR_ALERT | ERR_FATAL; |
| 545 | } |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 546 | newsrv->pool_purge_delay = time; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 551 | static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 552 | { |
| 553 | char *arg; |
| 554 | |
| 555 | arg = args[*cur_arg + 1]; |
| 556 | if (!*arg) { |
| 557 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 558 | return ERR_ALERT | ERR_FATAL; |
| 559 | } |
| 560 | |
| 561 | newsrv->low_idle_conns = atoi(arg); |
| 562 | return 0; |
| 563 | } |
| 564 | |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 565 | static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 566 | { |
| 567 | char *arg; |
| 568 | |
| 569 | arg = args[*cur_arg + 1]; |
| 570 | if (!*arg) { |
| 571 | memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]); |
| 572 | return ERR_ALERT | ERR_FATAL; |
| 573 | } |
Willy Tarreau | cb923d5 | 2019-01-23 10:39:27 +0100 | [diff] [blame] | 574 | |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 575 | newsrv->max_idle_conns = atoi(arg); |
Willy Tarreau | cb923d5 | 2019-01-23 10:39:27 +0100 | [diff] [blame] | 576 | if ((int)newsrv->max_idle_conns < -1) { |
| 577 | memprintf(err, "'%s' must be >= -1", args[*cur_arg]); |
| 578 | return ERR_ALERT | ERR_FATAL; |
| 579 | } |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 580 | |
| 581 | return 0; |
| 582 | } |
| 583 | |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 584 | /* parse the "id" server keyword */ |
| 585 | static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err) |
| 586 | { |
| 587 | struct eb32_node *node; |
| 588 | |
| 589 | if (!*args[*cur_arg + 1]) { |
| 590 | memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]); |
| 591 | return ERR_ALERT | ERR_FATAL; |
| 592 | } |
| 593 | |
| 594 | newsrv->puid = atol(args[*cur_arg + 1]); |
| 595 | newsrv->conf.id.key = newsrv->puid; |
| 596 | |
| 597 | if (newsrv->puid <= 0) { |
| 598 | memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]); |
| 599 | return ERR_ALERT | ERR_FATAL; |
| 600 | } |
| 601 | |
| 602 | node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid); |
| 603 | if (node) { |
| 604 | struct server *target = container_of(node, struct server, conf.id); |
| 605 | memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')", |
| 606 | args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line, |
| 607 | target->id); |
| 608 | return ERR_ALERT | ERR_FATAL; |
| 609 | } |
| 610 | |
| 611 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
Baptiste Assmann | 7cc419a | 2015-07-07 22:02:20 +0200 | [diff] [blame] | 612 | newsrv->flags |= SRV_F_FORCED_ID; |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 613 | return 0; |
| 614 | } |
| 615 | |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 616 | /* Parse the "namespace" server keyword */ |
| 617 | static int srv_parse_namespace(char **args, int *cur_arg, |
| 618 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 619 | { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 620 | #ifdef USE_NS |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 621 | char *arg; |
| 622 | |
| 623 | arg = args[*cur_arg + 1]; |
| 624 | if (!*arg) { |
| 625 | memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]); |
| 626 | return ERR_ALERT | ERR_FATAL; |
| 627 | } |
| 628 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 629 | if (strcmp(arg, "*") == 0) { |
Frédéric Lécaille | 22f41a2 | 2017-03-16 17:17:36 +0100 | [diff] [blame] | 630 | /* Use the namespace associated with the connection (if present). */ |
| 631 | newsrv->flags |= SRV_F_USE_NS_FROM_PP; |
| 632 | return 0; |
| 633 | } |
| 634 | |
| 635 | /* |
| 636 | * As this parser may be called several times for the same 'default-server' |
| 637 | * object, or for a new 'server' instance deriving from a 'default-server' |
| 638 | * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it. |
| 639 | */ |
| 640 | newsrv->flags &= ~SRV_F_USE_NS_FROM_PP; |
| 641 | |
| 642 | newsrv->netns = netns_store_lookup(arg, strlen(arg)); |
| 643 | if (!newsrv->netns) |
| 644 | newsrv->netns = netns_store_insert(arg); |
| 645 | |
| 646 | if (!newsrv->netns) { |
| 647 | memprintf(err, "Cannot open namespace '%s'", arg); |
| 648 | return ERR_ALERT | ERR_FATAL; |
| 649 | } |
| 650 | |
| 651 | return 0; |
| 652 | #else |
| 653 | memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]); |
| 654 | return ERR_ALERT | ERR_FATAL; |
| 655 | #endif |
| 656 | } |
| 657 | |
Frédéric Lécaille | f5bf903 | 2017-03-10 11:51:05 +0100 | [diff] [blame] | 658 | /* Parse the "no-backup" server keyword */ |
| 659 | static int srv_parse_no_backup(char **args, int *cur_arg, |
| 660 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 661 | { |
| 662 | newsrv->flags &= ~SRV_F_BACKUP; |
| 663 | return 0; |
| 664 | } |
| 665 | |
Frédéric Lécaille | 25df890 | 2017-03-10 14:04:31 +0100 | [diff] [blame] | 666 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 667 | /* Disable server PROXY protocol flags. */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 668 | 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] | 669 | { |
| 670 | srv->pp_opts &= ~flags; |
| 671 | return 0; |
| 672 | } |
| 673 | |
| 674 | /* Parse the "no-send-proxy" server keyword */ |
| 675 | static int srv_parse_no_send_proxy(char **args, int *cur_arg, |
| 676 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 677 | { |
| 678 | return srv_disable_pp_flags(newsrv, SRV_PP_V1); |
| 679 | } |
| 680 | |
| 681 | /* Parse the "no-send-proxy-v2" server keyword */ |
| 682 | static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg, |
| 683 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 684 | { |
| 685 | return srv_disable_pp_flags(newsrv, SRV_PP_V2); |
| 686 | } |
| 687 | |
Frédéric Lécaille | 1b9423d | 2019-07-04 14:19:06 +0200 | [diff] [blame] | 688 | /* Parse the "no-tfo" server keyword */ |
| 689 | static int srv_parse_no_tfo(char **args, int *cur_arg, |
| 690 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 691 | { |
| 692 | newsrv->flags &= ~SRV_F_FASTOPEN; |
| 693 | return 0; |
| 694 | } |
| 695 | |
Frédéric Lécaille | f9bc1d6 | 2017-03-10 15:50:49 +0100 | [diff] [blame] | 696 | /* Parse the "non-stick" server keyword */ |
| 697 | static int srv_parse_non_stick(char **args, int *cur_arg, |
| 698 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 699 | { |
| 700 | newsrv->flags |= SRV_F_NON_STICK; |
| 701 | return 0; |
| 702 | } |
| 703 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 704 | /* Enable server PROXY protocol flags. */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 705 | 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] | 706 | { |
| 707 | srv->pp_opts |= flags; |
| 708 | return 0; |
| 709 | } |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 710 | /* parse the "proto" server keyword */ |
| 711 | static int srv_parse_proto(char **args, int *cur_arg, |
| 712 | struct proxy *px, struct server *newsrv, char **err) |
| 713 | { |
| 714 | struct ist proto; |
| 715 | |
| 716 | if (!*args[*cur_arg + 1]) { |
| 717 | memprintf(err, "'%s' : missing value", args[*cur_arg]); |
| 718 | return ERR_ALERT | ERR_FATAL; |
| 719 | } |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 720 | proto = ist(args[*cur_arg + 1]); |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 721 | newsrv->mux_proto = get_mux_proto(proto); |
| 722 | if (!newsrv->mux_proto) { |
| 723 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]); |
| 724 | return ERR_ALERT | ERR_FATAL; |
| 725 | } |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 726 | return 0; |
| 727 | } |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 728 | |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 729 | /* parse the "proxy-v2-options" */ |
| 730 | static int srv_parse_proxy_v2_options(char **args, int *cur_arg, |
| 731 | struct proxy *px, struct server *newsrv, char **err) |
| 732 | { |
| 733 | char *p, *n; |
| 734 | for (p = args[*cur_arg+1]; p; p = n) { |
| 735 | n = strchr(p, ','); |
| 736 | if (n) |
| 737 | *n++ = '\0'; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 738 | if (strcmp(p, "ssl") == 0) { |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 739 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 740 | } else if (strcmp(p, "cert-cn") == 0) { |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 741 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 742 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 743 | } else if (strcmp(p, "cert-key") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 744 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 745 | newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 746 | } else if (strcmp(p, "cert-sig") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 747 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 748 | newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 749 | } else if (strcmp(p, "ssl-cipher") == 0) { |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 750 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 751 | newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 752 | } else if (strcmp(p, "authority") == 0) { |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 753 | newsrv->pp_opts |= SRV_PP_V2_AUTHORITY; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 754 | } else if (strcmp(p, "crc32c") == 0) { |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 755 | newsrv->pp_opts |= SRV_PP_V2_CRC32C; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 756 | } else if (strcmp(p, "unique-id") == 0) { |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 757 | newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID; |
Emmanuel Hocdet | f643b80 | 2018-02-01 15:20:32 +0100 | [diff] [blame] | 758 | } else |
| 759 | goto fail; |
| 760 | } |
| 761 | return 0; |
| 762 | fail: |
| 763 | if (err) |
| 764 | memprintf(err, "'%s' : proxy v2 option not implemented", p); |
| 765 | return ERR_ALERT | ERR_FATAL; |
| 766 | } |
| 767 | |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 768 | /* Parse the "observe" server keyword */ |
| 769 | static int srv_parse_observe(char **args, int *cur_arg, |
| 770 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 771 | { |
| 772 | char *arg; |
| 773 | |
| 774 | arg = args[*cur_arg + 1]; |
| 775 | if (!*arg) { |
| 776 | memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]); |
| 777 | return ERR_ALERT | ERR_FATAL; |
| 778 | } |
| 779 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 780 | if (strcmp(arg, "none") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 781 | newsrv->observe = HANA_OBS_NONE; |
| 782 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 783 | else if (strcmp(arg, "layer4") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 784 | newsrv->observe = HANA_OBS_LAYER4; |
| 785 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 786 | else if (strcmp(arg, "layer7") == 0) { |
Frédéric Lécaille | 547356e | 2017-03-15 08:55:39 +0100 | [diff] [blame] | 787 | if (curproxy->mode != PR_MODE_HTTP) { |
| 788 | memprintf(err, "'%s' can only be used in http proxies.\n", arg); |
| 789 | return ERR_ALERT; |
| 790 | } |
| 791 | newsrv->observe = HANA_OBS_LAYER7; |
| 792 | } |
| 793 | else { |
| 794 | memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' " |
| 795 | "but got '%s'\n", args[*cur_arg], arg); |
| 796 | return ERR_ALERT | ERR_FATAL; |
| 797 | } |
| 798 | |
| 799 | return 0; |
| 800 | } |
| 801 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 802 | /* Parse the "on-error" server keyword */ |
| 803 | static int srv_parse_on_error(char **args, int *cur_arg, |
| 804 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 805 | { |
| 806 | if (strcmp(args[*cur_arg + 1], "fastinter") == 0) |
| 807 | newsrv->onerror = HANA_ONERR_FASTINTER; |
| 808 | else if (strcmp(args[*cur_arg + 1], "fail-check") == 0) |
| 809 | newsrv->onerror = HANA_ONERR_FAILCHK; |
| 810 | else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0) |
| 811 | newsrv->onerror = HANA_ONERR_SUDDTH; |
| 812 | else if (strcmp(args[*cur_arg + 1], "mark-down") == 0) |
| 813 | newsrv->onerror = HANA_ONERR_MARKDWN; |
| 814 | else { |
| 815 | memprintf(err, "'%s' expects one of 'fastinter', " |
| 816 | "'fail-check', 'sudden-death' or 'mark-down' but got '%s'", |
| 817 | args[*cur_arg], args[*cur_arg + 1]); |
| 818 | return ERR_ALERT | ERR_FATAL; |
| 819 | } |
| 820 | |
| 821 | return 0; |
| 822 | } |
| 823 | |
| 824 | /* Parse the "on-marked-down" server keyword */ |
| 825 | static int srv_parse_on_marked_down(char **args, int *cur_arg, |
| 826 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 827 | { |
| 828 | if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0) |
| 829 | newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS; |
| 830 | else { |
| 831 | memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'", |
| 832 | args[*cur_arg], args[*cur_arg + 1]); |
| 833 | return ERR_ALERT | ERR_FATAL; |
| 834 | } |
| 835 | |
| 836 | return 0; |
| 837 | } |
| 838 | |
| 839 | /* Parse the "on-marked-up" server keyword */ |
| 840 | static int srv_parse_on_marked_up(char **args, int *cur_arg, |
| 841 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 842 | { |
| 843 | if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0) |
| 844 | newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS; |
| 845 | else { |
| 846 | memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'", |
| 847 | args[*cur_arg], args[*cur_arg + 1]); |
| 848 | return ERR_ALERT | ERR_FATAL; |
| 849 | } |
| 850 | |
| 851 | return 0; |
| 852 | } |
| 853 | |
Frédéric Lécaille | 1618623 | 2017-03-14 16:42:49 +0100 | [diff] [blame] | 854 | /* Parse the "redir" server keyword */ |
| 855 | static int srv_parse_redir(char **args, int *cur_arg, |
| 856 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 857 | { |
| 858 | char *arg; |
| 859 | |
| 860 | arg = args[*cur_arg + 1]; |
| 861 | if (!*arg) { |
| 862 | memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]); |
| 863 | return ERR_ALERT | ERR_FATAL; |
| 864 | } |
| 865 | |
| 866 | free(newsrv->rdr_pfx); |
| 867 | newsrv->rdr_pfx = strdup(arg); |
| 868 | newsrv->rdr_len = strlen(arg); |
| 869 | |
| 870 | return 0; |
| 871 | } |
| 872 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 873 | /* Parse the "resolvers" server keyword */ |
| 874 | static int srv_parse_resolvers(char **args, int *cur_arg, |
| 875 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 876 | { |
| 877 | free(newsrv->resolvers_id); |
| 878 | newsrv->resolvers_id = strdup(args[*cur_arg + 1]); |
| 879 | return 0; |
| 880 | } |
| 881 | |
| 882 | /* Parse the "resolve-net" server keyword */ |
| 883 | static int srv_parse_resolve_net(char **args, int *cur_arg, |
| 884 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 885 | { |
| 886 | char *p, *e; |
| 887 | unsigned char mask; |
| 888 | struct resolv_options *opt; |
| 889 | |
| 890 | if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') { |
| 891 | memprintf(err, "'%s' expects a list of networks.", |
| 892 | args[*cur_arg]); |
| 893 | return ERR_ALERT | ERR_FATAL; |
| 894 | } |
| 895 | |
| 896 | opt = &newsrv->resolv_opts; |
| 897 | |
| 898 | /* Split arguments by comma, and convert it from ipv4 or ipv6 |
| 899 | * string network in in_addr or in6_addr. |
| 900 | */ |
| 901 | p = args[*cur_arg + 1]; |
| 902 | e = p; |
| 903 | while (*p != '\0') { |
| 904 | /* If no room available, return error. */ |
| 905 | if (opt->pref_net_nb >= SRV_MAX_PREF_NET) { |
| 906 | memprintf(err, "'%s' exceed %d networks.", |
| 907 | args[*cur_arg], SRV_MAX_PREF_NET); |
| 908 | return ERR_ALERT | ERR_FATAL; |
| 909 | } |
| 910 | /* look for end or comma. */ |
| 911 | while (*e != ',' && *e != '\0') |
| 912 | e++; |
| 913 | if (*e == ',') { |
| 914 | *e = '\0'; |
| 915 | e++; |
| 916 | } |
| 917 | if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4, |
| 918 | &opt->pref_net[opt->pref_net_nb].mask.in4)) { |
| 919 | /* Try to convert input string from ipv4 or ipv6 network. */ |
| 920 | opt->pref_net[opt->pref_net_nb].family = AF_INET; |
| 921 | } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6, |
| 922 | &mask)) { |
| 923 | /* Try to convert input string from ipv6 network. */ |
| 924 | len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6); |
| 925 | opt->pref_net[opt->pref_net_nb].family = AF_INET6; |
| 926 | } else { |
| 927 | /* All network conversions fail, return error. */ |
| 928 | memprintf(err, "'%s' invalid network '%s'.", |
| 929 | args[*cur_arg], p); |
| 930 | return ERR_ALERT | ERR_FATAL; |
| 931 | } |
| 932 | opt->pref_net_nb++; |
| 933 | p = e; |
| 934 | } |
| 935 | |
| 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | /* Parse the "resolve-opts" server keyword */ |
| 940 | static int srv_parse_resolve_opts(char **args, int *cur_arg, |
| 941 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 942 | { |
| 943 | char *p, *end; |
| 944 | |
| 945 | for (p = args[*cur_arg + 1]; *p; p = end) { |
| 946 | /* cut on next comma */ |
| 947 | for (end = p; *end && *end != ','; end++); |
| 948 | if (*end) |
| 949 | *(end++) = 0; |
| 950 | |
| 951 | if (strcmp(p, "allow-dup-ip") == 0) { |
| 952 | newsrv->resolv_opts.accept_duplicate_ip = 1; |
| 953 | } |
| 954 | else if (strcmp(p, "ignore-weight") == 0) { |
| 955 | newsrv->resolv_opts.ignore_weight = 1; |
| 956 | } |
| 957 | else if (strcmp(p, "prevent-dup-ip") == 0) { |
| 958 | newsrv->resolv_opts.accept_duplicate_ip = 0; |
| 959 | } |
| 960 | else { |
| 961 | memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.", |
| 962 | args[*cur_arg], p); |
| 963 | return ERR_ALERT | ERR_FATAL; |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | return 0; |
| 968 | } |
| 969 | |
| 970 | /* Parse the "resolve-prefer" server keyword */ |
| 971 | static int srv_parse_resolve_prefer(char **args, int *cur_arg, |
| 972 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 973 | { |
| 974 | if (strcmp(args[*cur_arg + 1], "ipv4") == 0) |
| 975 | newsrv->resolv_opts.family_prio = AF_INET; |
| 976 | else if (strcmp(args[*cur_arg + 1], "ipv6") == 0) |
| 977 | newsrv->resolv_opts.family_prio = AF_INET6; |
| 978 | else { |
| 979 | memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.", |
| 980 | args[*cur_arg]); |
| 981 | return ERR_ALERT | ERR_FATAL; |
| 982 | } |
| 983 | |
| 984 | return 0; |
| 985 | } |
| 986 | |
Frédéric Lécaille | 31045e4 | 2017-03-10 16:40:00 +0100 | [diff] [blame] | 987 | /* Parse the "send-proxy" server keyword */ |
| 988 | static int srv_parse_send_proxy(char **args, int *cur_arg, |
| 989 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 990 | { |
| 991 | return srv_enable_pp_flags(newsrv, SRV_PP_V1); |
| 992 | } |
| 993 | |
| 994 | /* Parse the "send-proxy-v2" server keyword */ |
| 995 | static int srv_parse_send_proxy_v2(char **args, int *cur_arg, |
| 996 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 997 | { |
| 998 | return srv_enable_pp_flags(newsrv, SRV_PP_V2); |
| 999 | } |
| 1000 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 1001 | /* Parse the "slowstart" server keyword */ |
| 1002 | static int srv_parse_slowstart(char **args, int *cur_arg, |
| 1003 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1004 | { |
| 1005 | /* slowstart is stored in seconds */ |
| 1006 | unsigned int val; |
| 1007 | const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS); |
| 1008 | |
| 1009 | if (time_err == PARSE_TIME_OVER) { |
| 1010 | memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 1011 | args[*cur_arg+1], args[*cur_arg], newsrv->id); |
| 1012 | return ERR_ALERT | ERR_FATAL; |
| 1013 | } |
| 1014 | else if (time_err == PARSE_TIME_UNDER) { |
| 1015 | memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 1016 | args[*cur_arg+1], args[*cur_arg], newsrv->id); |
| 1017 | return ERR_ALERT | ERR_FATAL; |
| 1018 | } |
| 1019 | else if (time_err) { |
| 1020 | memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.", |
| 1021 | *time_err, newsrv->id); |
| 1022 | return ERR_ALERT | ERR_FATAL; |
| 1023 | } |
| 1024 | newsrv->slowstart = (val + 999) / 1000; |
| 1025 | |
| 1026 | return 0; |
| 1027 | } |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1028 | |
| 1029 | /* Parse the "source" server keyword */ |
| 1030 | static int srv_parse_source(char **args, int *cur_arg, |
| 1031 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1032 | { |
| 1033 | char *errmsg; |
| 1034 | int port_low, port_high; |
| 1035 | struct sockaddr_storage *sk; |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1036 | |
| 1037 | errmsg = NULL; |
| 1038 | |
| 1039 | if (!*args[*cur_arg + 1]) { |
| 1040 | memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, " |
| 1041 | "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface"); |
| 1042 | goto err; |
| 1043 | } |
| 1044 | |
| 1045 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1046 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL, |
| 1047 | &errmsg, NULL, NULL, |
| 1048 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1049 | if (!sk) { |
| 1050 | memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg); |
| 1051 | goto err; |
| 1052 | } |
| 1053 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1054 | newsrv->conn_src.opts |= CO_SRC_BIND; |
| 1055 | newsrv->conn_src.source_addr = *sk; |
| 1056 | |
| 1057 | if (port_low != port_high) { |
| 1058 | int i; |
| 1059 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1060 | newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1); |
| 1061 | for (i = 0; i < newsrv->conn_src.sport_range->size; i++) |
| 1062 | newsrv->conn_src.sport_range->ports[i] = port_low + i; |
| 1063 | } |
| 1064 | |
| 1065 | *cur_arg += 2; |
| 1066 | while (*(args[*cur_arg])) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1067 | 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] | 1068 | #if defined(CONFIG_HAP_TRANSPARENT) |
| 1069 | if (!*args[*cur_arg + 1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1070 | ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', " |
| 1071 | "or 'hdr_ip(name,#)' as argument.\n"); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1072 | goto err; |
| 1073 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1074 | if (strcmp(args[*cur_arg + 1], "client") == 0) { |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1075 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1076 | newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI; |
| 1077 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1078 | else if (strcmp(args[*cur_arg + 1], "clientip") == 0) { |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1079 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1080 | newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP; |
| 1081 | } |
| 1082 | else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) { |
| 1083 | char *name, *end; |
| 1084 | |
| 1085 | name = args[*cur_arg + 1] + 7; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1086 | while (isspace((unsigned char)*name)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1087 | name++; |
| 1088 | |
| 1089 | end = name; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1090 | while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')') |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1091 | end++; |
| 1092 | |
| 1093 | newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK; |
| 1094 | newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN; |
| 1095 | free(newsrv->conn_src.bind_hdr_name); |
| 1096 | newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1); |
| 1097 | newsrv->conn_src.bind_hdr_len = end - name; |
| 1098 | memcpy(newsrv->conn_src.bind_hdr_name, name, end - name); |
| 1099 | newsrv->conn_src.bind_hdr_name[end - name] = '\0'; |
| 1100 | newsrv->conn_src.bind_hdr_occ = -1; |
| 1101 | |
| 1102 | /* now look for an occurrence number */ |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1103 | while (isspace((unsigned char)*end)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1104 | end++; |
| 1105 | if (*end == ',') { |
| 1106 | end++; |
| 1107 | name = end; |
| 1108 | if (*end == '-') |
| 1109 | end++; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1110 | while (isdigit((unsigned char)*end)) |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1111 | end++; |
| 1112 | newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name); |
| 1113 | } |
| 1114 | |
| 1115 | if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1116 | ha_alert("usesrc hdr_ip(name,num) does not support negative" |
| 1117 | " occurrences values smaller than %d.\n", MAX_HDR_HISTORY); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1118 | goto err; |
| 1119 | } |
| 1120 | } |
| 1121 | else { |
| 1122 | struct sockaddr_storage *sk; |
| 1123 | int port1, port2; |
| 1124 | |
| 1125 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1126 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL, |
| 1127 | &errmsg, NULL, NULL, |
| 1128 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1129 | if (!sk) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1130 | 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] | 1131 | goto err; |
| 1132 | } |
| 1133 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1134 | newsrv->conn_src.tproxy_addr = *sk; |
| 1135 | newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR; |
| 1136 | } |
| 1137 | global.last_checks |= LSTCHK_NETADM; |
| 1138 | *cur_arg += 2; |
| 1139 | continue; |
| 1140 | #else /* no TPROXY support */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1141 | 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] | 1142 | goto err; |
| 1143 | #endif /* defined(CONFIG_HAP_TRANSPARENT) */ |
| 1144 | } /* "usesrc" */ |
| 1145 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1146 | 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] | 1147 | #ifdef SO_BINDTODEVICE |
| 1148 | if (!*args[*cur_arg + 1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1149 | ha_alert("'%s' : missing interface name.\n", args[0]); |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1150 | goto err; |
| 1151 | } |
| 1152 | free(newsrv->conn_src.iface_name); |
| 1153 | newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]); |
| 1154 | newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name); |
| 1155 | global.last_checks |= LSTCHK_NETADM; |
| 1156 | #else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1157 | 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] | 1158 | goto err; |
| 1159 | #endif |
| 1160 | *cur_arg += 2; |
| 1161 | continue; |
| 1162 | } |
| 1163 | /* this keyword in not an option of "source" */ |
| 1164 | break; |
| 1165 | } /* while */ |
| 1166 | |
| 1167 | return 0; |
| 1168 | |
| 1169 | err: |
| 1170 | free(errmsg); |
| 1171 | return ERR_ALERT | ERR_FATAL; |
| 1172 | } |
| 1173 | |
Frédéric Lécaille | f9bc1d6 | 2017-03-10 15:50:49 +0100 | [diff] [blame] | 1174 | /* Parse the "stick" server keyword */ |
| 1175 | static int srv_parse_stick(char **args, int *cur_arg, |
| 1176 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1177 | { |
| 1178 | newsrv->flags &= ~SRV_F_NON_STICK; |
| 1179 | return 0; |
| 1180 | } |
| 1181 | |
Frédéric Lécaille | 67e0e61 | 2017-03-14 15:21:31 +0100 | [diff] [blame] | 1182 | /* Parse the "track" server keyword */ |
| 1183 | static int srv_parse_track(char **args, int *cur_arg, |
| 1184 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1185 | { |
| 1186 | char *arg; |
| 1187 | |
| 1188 | arg = args[*cur_arg + 1]; |
| 1189 | if (!*arg) { |
| 1190 | memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n"); |
| 1191 | return ERR_ALERT | ERR_FATAL; |
| 1192 | } |
| 1193 | |
| 1194 | free(newsrv->trackit); |
| 1195 | newsrv->trackit = strdup(arg); |
| 1196 | |
| 1197 | return 0; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | /* Parse the "socks4" server keyword */ |
| 1201 | static int srv_parse_socks4(char **args, int *cur_arg, |
| 1202 | struct proxy *curproxy, struct server *newsrv, char **err) |
| 1203 | { |
| 1204 | char *errmsg; |
| 1205 | int port_low, port_high; |
| 1206 | struct sockaddr_storage *sk; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1207 | |
| 1208 | errmsg = NULL; |
| 1209 | |
| 1210 | if (!*args[*cur_arg + 1]) { |
| 1211 | memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]); |
| 1212 | goto err; |
| 1213 | } |
| 1214 | |
| 1215 | /* 'sk' is statically allocated (no need to be freed). */ |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1216 | sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL, |
| 1217 | &errmsg, NULL, NULL, |
| 1218 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1219 | if (!sk) { |
| 1220 | memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg); |
| 1221 | goto err; |
| 1222 | } |
| 1223 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1224 | newsrv->flags |= SRV_F_SOCKS4_PROXY; |
| 1225 | newsrv->socks4_addr = *sk; |
| 1226 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1227 | return 0; |
| 1228 | |
| 1229 | err: |
| 1230 | free(errmsg); |
| 1231 | return ERR_ALERT | ERR_FATAL; |
Frédéric Lécaille | 67e0e61 | 2017-03-14 15:21:31 +0100 | [diff] [blame] | 1232 | } |
| 1233 | |
Frédéric Lécaille | dba9707 | 2017-03-17 15:33:50 +0100 | [diff] [blame] | 1234 | |
Willy Tarreau | 034c88c | 2017-01-23 23:36:45 +0100 | [diff] [blame] | 1235 | /* parse the "tfo" server keyword */ |
| 1236 | static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1237 | { |
| 1238 | newsrv->flags |= SRV_F_FASTOPEN; |
| 1239 | return 0; |
| 1240 | } |
| 1241 | |
Amaury Denoyelle | 587b71e | 2021-03-10 16:36:02 +0100 | [diff] [blame] | 1242 | /* parse the "usesrc" server keyword */ |
| 1243 | static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1244 | { |
| 1245 | memprintf(err, "'%s' only allowed after a '%s' statement.", |
| 1246 | "usesrc", "source"); |
| 1247 | return ERR_ALERT | ERR_FATAL; |
| 1248 | } |
| 1249 | |
| 1250 | /* parse the "weight" server keyword */ |
| 1251 | static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1252 | { |
| 1253 | int w; |
| 1254 | |
| 1255 | w = atol(args[*cur_arg + 1]); |
| 1256 | if (w < 0 || w > SRV_UWGHT_MAX) { |
| 1257 | memprintf(err, "weight of server %s is not within 0 and %d (%d).", |
| 1258 | newsrv->id, SRV_UWGHT_MAX, w); |
| 1259 | return ERR_ALERT | ERR_FATAL; |
| 1260 | } |
| 1261 | newsrv->uweight = newsrv->iweight = w; |
| 1262 | |
| 1263 | return 0; |
| 1264 | } |
| 1265 | |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1266 | /* Shutdown all connections of a server. The caller must pass a termination |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1267 | * 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] | 1268 | * shutdown. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1269 | * |
| 1270 | * Must be called with the server lock held. |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1271 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1272 | void srv_shutdown_streams(struct server *srv, int why) |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1273 | { |
Willy Tarreau | 751153e | 2021-02-17 13:33:24 +0100 | [diff] [blame] | 1274 | struct stream *stream; |
| 1275 | struct mt_list *elt1, elt2; |
Willy Tarreau | d4e78d8 | 2021-03-04 10:47:54 +0100 | [diff] [blame] | 1276 | int thr; |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1277 | |
Willy Tarreau | d4e78d8 | 2021-03-04 10:47:54 +0100 | [diff] [blame] | 1278 | for (thr = 0; thr < global.nbthread; thr++) |
| 1279 | mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2) |
| 1280 | if (stream->srv_conn == srv) |
| 1281 | stream_shutdown(stream, why); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | /* 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] | 1285 | * 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] | 1286 | * the reason for the shutdown. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1287 | * |
| 1288 | * Must be called with the server lock held. |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1289 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1290 | void srv_shutdown_backup_streams(struct proxy *px, int why) |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1291 | { |
| 1292 | struct server *srv; |
| 1293 | |
| 1294 | for (srv = px->srv; srv != NULL; srv = srv->next) |
| 1295 | if (srv->flags & SRV_F_BACKUP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1296 | srv_shutdown_streams(srv, why); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1297 | } |
| 1298 | |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1299 | /* Appends some information to a message string related to a server going UP or |
| 1300 | * DOWN. If both <forced> and <reason> are null and the server tracks another |
| 1301 | * one, a "via" information will be provided to know where the status came from. |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1302 | * If <check> is non-null, an entire string describing the check result will be |
| 1303 | * appended after a comma and a space (eg: to report some information from the |
| 1304 | * check that changed the state). In the other case, the string will be built |
| 1305 | * using the check results stored into the struct server if present. |
| 1306 | * If <xferred> is non-negative, some information about requeued sessions are |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1307 | * provided. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1308 | * |
| 1309 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1310 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1311 | void srv_append_status(struct buffer *msg, struct server *s, |
| 1312 | struct check *check, int xferred, int forced) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1313 | { |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1314 | short status = s->op_st_chg.status; |
| 1315 | short code = s->op_st_chg.code; |
| 1316 | long duration = s->op_st_chg.duration; |
| 1317 | char *desc = s->op_st_chg.reason; |
| 1318 | |
| 1319 | if (check) { |
| 1320 | status = check->status; |
| 1321 | code = check->code; |
| 1322 | duration = check->duration; |
| 1323 | desc = check->desc; |
| 1324 | } |
| 1325 | |
| 1326 | if (status != -1) { |
| 1327 | chunk_appendf(msg, ", reason: %s", get_check_status_description(status)); |
| 1328 | |
| 1329 | if (status >= HCHK_STATUS_L57DATA) |
| 1330 | chunk_appendf(msg, ", code: %d", code); |
| 1331 | |
| 1332 | if (desc && *desc) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1333 | struct buffer src; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1334 | |
| 1335 | chunk_appendf(msg, ", info: \""); |
| 1336 | |
| 1337 | chunk_initlen(&src, desc, 0, strlen(desc)); |
| 1338 | chunk_asciiencode(msg, &src, '"'); |
| 1339 | |
| 1340 | chunk_appendf(msg, "\""); |
| 1341 | } |
| 1342 | |
| 1343 | if (duration >= 0) |
| 1344 | chunk_appendf(msg, ", check duration: %ldms", duration); |
| 1345 | } |
| 1346 | else if (desc && *desc) { |
| 1347 | chunk_appendf(msg, ", %s", desc); |
| 1348 | } |
| 1349 | else if (!forced && s->track) { |
Willy Tarreau | bda9227 | 2014-05-20 21:55:30 +0200 | [diff] [blame] | 1350 | 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] | 1351 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1352 | |
| 1353 | if (xferred >= 0) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1354 | if (s->next_state == SRV_ST_STOPPED) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1355 | chunk_appendf(msg, ". %d active and %d backup servers left.%s" |
| 1356 | " %d sessions active, %d requeued, %d remaining in queue", |
| 1357 | s->proxy->srv_act, s->proxy->srv_bck, |
| 1358 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 1359 | s->cur_sess, xferred, s->nbpend); |
| 1360 | else |
| 1361 | chunk_appendf(msg, ". %d active and %d backup servers online.%s" |
| 1362 | " %d sessions requeued, %d total in queue", |
| 1363 | s->proxy->srv_act, s->proxy->srv_bck, |
| 1364 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 1365 | xferred, s->nbpend); |
| 1366 | } |
| 1367 | } |
| 1368 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1369 | /* Marks server <s> down, regardless of its checks' statuses. The server is |
| 1370 | * registered in a list to postpone the counting of the remaining servers on |
| 1371 | * the proxy and transfers queued streams whenever possible to other servers at |
| 1372 | * a sync point. Maintenance servers are ignored. It stores the <reason> if |
| 1373 | * non-null as the reason for going down or the available data from the check |
| 1374 | * struct to recompute this reason later. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1375 | * |
| 1376 | * Must be called with the server lock held. |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1377 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1378 | 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] | 1379 | { |
| 1380 | struct server *srv; |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1381 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1382 | 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] | 1383 | return; |
| 1384 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1385 | s->next_state = SRV_ST_STOPPED; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1386 | *s->op_st_chg.reason = 0; |
| 1387 | s->op_st_chg.status = -1; |
| 1388 | if (reason) { |
| 1389 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1390 | } |
| 1391 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1392 | 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] | 1393 | s->op_st_chg.code = check->code; |
| 1394 | s->op_st_chg.status = check->status; |
| 1395 | s->op_st_chg.duration = check->duration; |
| 1396 | } |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1397 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1398 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1399 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1400 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1401 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1402 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1403 | srv_set_stopped(srv, NULL, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1404 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1405 | } |
Willy Tarreau | e7d1ef1 | 2014-05-20 22:25:12 +0200 | [diff] [blame] | 1406 | } |
| 1407 | |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1408 | /* 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] | 1409 | * in maintenance. The server is registered in a list to postpone the counting |
| 1410 | * of the remaining servers on the proxy and tries to grab requests from the |
| 1411 | * proxy at a sync point. Maintenance servers are ignored. It stores the |
| 1412 | * <reason> if non-null as the reason for going down or the available data |
| 1413 | * from the check struct to recompute this reason later. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1414 | * |
| 1415 | * Must be called with the server lock held. |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1416 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1417 | 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] | 1418 | { |
| 1419 | struct server *srv; |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1420 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1421 | if (s->cur_admin & SRV_ADMF_MAINT) |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1422 | return; |
| 1423 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1424 | 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] | 1425 | return; |
| 1426 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1427 | s->next_state = SRV_ST_STARTING; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1428 | *s->op_st_chg.reason = 0; |
| 1429 | s->op_st_chg.status = -1; |
| 1430 | if (reason) { |
| 1431 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1432 | } |
| 1433 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1434 | 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] | 1435 | s->op_st_chg.code = check->code; |
| 1436 | s->op_st_chg.status = check->status; |
| 1437 | s->op_st_chg.duration = check->duration; |
| 1438 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1439 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1440 | if (s->slowstart <= 0) |
| 1441 | s->next_state = SRV_ST_RUNNING; |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1442 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1443 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1444 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1445 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1446 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1447 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1448 | srv_set_running(srv, NULL, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1449 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1450 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1451 | } |
| 1452 | |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1453 | /* Marks server <s> stopping regardless of its checks' statuses and provided it |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1454 | * isn't in maintenance. The server is registered in a list to postpone the |
| 1455 | * counting of the remaining servers on the proxy and tries to grab requests |
| 1456 | * from the proxy. Maintenance servers are ignored. It stores the |
| 1457 | * <reason> if non-null as the reason for going down or the available data |
| 1458 | * from the check struct to recompute this reason later. |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1459 | * up. Note that it makes use of the trash to build the log strings, so <reason> |
| 1460 | * must not be placed there. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1461 | * |
| 1462 | * Must be called with the server lock held. |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1463 | */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1464 | 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] | 1465 | { |
| 1466 | struct server *srv; |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1467 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1468 | if (s->cur_admin & SRV_ADMF_MAINT) |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1469 | return; |
| 1470 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1471 | if (s->next_state == SRV_ST_STOPPING) |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1472 | return; |
| 1473 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1474 | s->next_state = SRV_ST_STOPPING; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1475 | *s->op_st_chg.reason = 0; |
| 1476 | s->op_st_chg.status = -1; |
| 1477 | if (reason) { |
| 1478 | strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason)); |
| 1479 | } |
| 1480 | else if (check) { |
Willy Tarreau | 358847f | 2017-11-20 21:33:21 +0100 | [diff] [blame] | 1481 | 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] | 1482 | s->op_st_chg.code = check->code; |
| 1483 | s->op_st_chg.status = check->status; |
| 1484 | s->op_st_chg.duration = check->duration; |
| 1485 | } |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1486 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1487 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1488 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1489 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1490 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1491 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 1492 | srv_set_stopping(srv, NULL, NULL); |
Christopher Faulet | 8d01fd6 | 2018-01-24 21:49:41 +0100 | [diff] [blame] | 1493 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1494 | } |
Willy Tarreau | 8eb7784 | 2014-05-21 13:54:57 +0200 | [diff] [blame] | 1495 | } |
Willy Tarreau | dbd5e78 | 2014-05-20 22:46:35 +0200 | [diff] [blame] | 1496 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1497 | /* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to |
| 1498 | * enforce either maint mode or drain mode. It is not allowed to set more than |
| 1499 | * one flag at once. The equivalent "inherited" flag is propagated to all |
| 1500 | * tracking servers. Maintenance mode disables health checks (but not agent |
| 1501 | * checks). When either the flag is already set or no flag is passed, nothing |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1502 | * is done. If <cause> is non-null, it will be displayed at the end of the log |
| 1503 | * lines to justify the state change. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1504 | * |
| 1505 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1506 | */ |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1507 | 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] | 1508 | { |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1509 | struct server *srv; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1510 | |
| 1511 | if (!mode) |
| 1512 | return; |
| 1513 | |
| 1514 | /* 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] | 1515 | if (s->next_admin & mode) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1516 | return; |
| 1517 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1518 | s->next_admin |= mode; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 1519 | if (cause) |
| 1520 | strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause)); |
| 1521 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1522 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1523 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1524 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1525 | /* 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] | 1526 | if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) || |
| 1527 | ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN))) |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1528 | return; |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1529 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1530 | /* compute the inherited flag to propagate */ |
| 1531 | if (mode & SRV_ADMF_MAINT) |
| 1532 | mode = SRV_ADMF_IMAINT; |
| 1533 | else if (mode & SRV_ADMF_DRAIN) |
| 1534 | mode = SRV_ADMF_IDRAIN; |
| 1535 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1536 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1537 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1538 | srv_set_admin_flag(srv, mode, cause); |
Christopher Faulet | 8d01fd6 | 2018-01-24 21:49:41 +0100 | [diff] [blame] | 1539 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1540 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1541 | } |
| 1542 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1543 | /* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to |
| 1544 | * stop enforcing either maint mode or drain mode. It is not allowed to set more |
| 1545 | * than one flag at once. The equivalent "inherited" flag is propagated to all |
| 1546 | * tracking servers. Leaving maintenance mode re-enables health checks. When |
| 1547 | * either the flag is already cleared or no flag is passed, nothing is done. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1548 | * |
| 1549 | * Must be called with the server lock held. |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1550 | */ |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1551 | void srv_clr_admin_flag(struct server *s, enum srv_admin mode) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1552 | { |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1553 | struct server *srv; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1554 | |
| 1555 | if (!mode) |
| 1556 | return; |
| 1557 | |
| 1558 | /* 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] | 1559 | if (!(s->next_admin & mode)) |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1560 | return; |
| 1561 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1562 | s->next_admin &= ~mode; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1563 | |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1564 | /* propagate changes */ |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1565 | srv_update_status(s); |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1566 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1567 | /* 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] | 1568 | if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) || |
| 1569 | ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN))) |
Willy Tarreau | eeba36b | 2018-08-21 08:22:26 +0200 | [diff] [blame] | 1570 | return; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1571 | |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1572 | if (mode & SRV_ADMF_MAINT) |
| 1573 | mode = SRV_ADMF_IMAINT; |
| 1574 | else if (mode & SRV_ADMF_DRAIN) |
| 1575 | mode = SRV_ADMF_IDRAIN; |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1576 | |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1577 | for (srv = s->trackers; srv; srv = srv->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1578 | HA_SPIN_LOCK(SERVER_LOCK, &srv->lock); |
Willy Tarreau | bfc7b7a | 2014-05-22 16:14:34 +0200 | [diff] [blame] | 1579 | srv_clr_admin_flag(srv, mode); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1580 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1581 | } |
Willy Tarreau | a0066dd | 2014-05-16 11:25:16 +0200 | [diff] [blame] | 1582 | } |
| 1583 | |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1584 | /* principle: propagate maint and drain to tracking servers. This is useful |
| 1585 | * upon startup so that inherited states are correct. |
| 1586 | */ |
| 1587 | static void srv_propagate_admin_state(struct server *srv) |
| 1588 | { |
| 1589 | struct server *srv2; |
| 1590 | |
| 1591 | if (!srv->trackers) |
| 1592 | return; |
| 1593 | |
| 1594 | for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1595 | HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock); |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1596 | if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT)) |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1597 | srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL); |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1598 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1599 | if (srv->next_admin & SRV_ADMF_DRAIN) |
Willy Tarreau | 8b42848 | 2016-11-07 15:53:43 +0100 | [diff] [blame] | 1600 | srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1601 | HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock); |
Willy Tarreau | 757478e | 2016-11-03 19:22:19 +0100 | [diff] [blame] | 1602 | } |
| 1603 | } |
| 1604 | |
| 1605 | /* Compute and propagate the admin states for all servers in proxy <px>. |
| 1606 | * Only servers *not* tracking another one are considered, because other |
| 1607 | * ones will be handled when the server they track is visited. |
| 1608 | */ |
| 1609 | void srv_compute_all_admin_states(struct proxy *px) |
| 1610 | { |
| 1611 | struct server *srv; |
| 1612 | |
| 1613 | for (srv = px->srv; srv; srv = srv->next) { |
| 1614 | if (srv->track) |
| 1615 | continue; |
| 1616 | srv_propagate_admin_state(srv); |
| 1617 | } |
| 1618 | } |
| 1619 | |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1620 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1621 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1622 | * all code contributors. |
| 1623 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1624 | * the config parser can report an appropriate error when a known keyword was |
| 1625 | * not enabled. |
Frédéric Lécaille | dfacd69 | 2017-04-16 17:14:14 +0200 | [diff] [blame] | 1626 | * 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] | 1627 | */ |
| 1628 | static struct srv_kw_list srv_kws = { "ALL", { }, { |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 1629 | { "backup", srv_parse_backup, 0, 1, 0 }, /* Flag as backup server */ |
| 1630 | { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */ |
| 1631 | { "disabled", srv_parse_disabled, 0, 1, 0 }, /* Start the server in 'disabled' state */ |
| 1632 | { "enabled", srv_parse_enabled, 0, 1, 0 }, /* Start the server in 'enabled' state */ |
| 1633 | { "error-limit", srv_parse_error_limit, 1, 1, 0 }, /* Configure the consecutive count of check failures to consider a server on error */ |
| 1634 | { "id", srv_parse_id, 1, 0, 0 }, /* set id# of server */ |
| 1635 | { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */ |
| 1636 | { "log-proto", srv_parse_log_proto, 1, 1, 0 }, /* Set the protocol for event messages, only relevant in a ring section */ |
| 1637 | { "maxconn", srv_parse_maxconn, 1, 1, 0 }, /* Set the max number of concurrent connection */ |
| 1638 | { "maxqueue", srv_parse_maxqueue, 1, 1, 0 }, /* Set the max number of connection to put in queue */ |
| 1639 | { "max-reuse", srv_parse_max_reuse, 1, 1, 0 }, /* Set the max number of requests on a connection, -1 means unlimited */ |
| 1640 | { "minconn", srv_parse_minconn, 1, 1, 0 }, /* Enable a dynamic maxconn limit */ |
| 1641 | { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */ |
| 1642 | { "no-backup", srv_parse_no_backup, 0, 1, 0 }, /* Flag as non-backup server */ |
| 1643 | { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 0 }, /* Disable use of PROXY V1 protocol */ |
| 1644 | { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 0 }, /* Disable use of PROXY V2 protocol */ |
| 1645 | { "no-tfo", srv_parse_no_tfo, 0, 1, 0 }, /* Disable use of TCP Fast Open */ |
| 1646 | { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */ |
| 1647 | { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */ |
| 1648 | { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */ |
| 1649 | { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */ |
| 1650 | { "on-marked-up", srv_parse_on_marked_up, 1, 1, 0 }, /* Configure the action when a server is marked up */ |
| 1651 | { "pool-low-conn", srv_parse_pool_low_conn, 1, 1, 0 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */ |
| 1652 | { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 0 }, /* Set the max number of orphan idle connections, -1 means unlimited */ |
| 1653 | { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1, 0 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */ |
| 1654 | { "proto", srv_parse_proto, 1, 1, 0 }, /* Set the proto to use for all outgoing connections */ |
| 1655 | { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 0 }, /* options for send-proxy-v2 */ |
| 1656 | { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */ |
| 1657 | { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the prefered network range for name resolution */ |
| 1658 | { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */ |
| 1659 | { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the prefered family for name resolution */ |
| 1660 | { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */ |
| 1661 | { "send-proxy", srv_parse_send_proxy, 0, 1, 0 }, /* Enforce use of PROXY V1 protocol */ |
| 1662 | { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 0 }, /* Enforce use of PROXY V2 protocol */ |
| 1663 | { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */ |
| 1664 | { "source", srv_parse_source, -1, 1, 0 }, /* Set the source address to be used to connect to the server */ |
| 1665 | { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */ |
| 1666 | { "tfo", srv_parse_tfo, 0, 1, 0 }, /* enable TCP Fast Open of server */ |
| 1667 | { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */ |
| 1668 | { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/ |
| 1669 | { "usesrc", srv_parse_usesrc, 0, 1, 0 }, /* safe-guard against usesrc without preceding <source> keyword */ |
| 1670 | { "weight", srv_parse_weight, 1, 1, 0 }, /* Set the load-balancing weight */ |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1671 | { NULL, NULL, 0 }, |
| 1672 | }}; |
| 1673 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1674 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
Willy Tarreau | dff5543 | 2012-10-10 17:51:05 +0200 | [diff] [blame] | 1675 | |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1676 | /* 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] | 1677 | * 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] | 1678 | * state is automatically disabled if the time is elapsed. If <must_update> is |
| 1679 | * not zero, the update will be propagated immediately. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1680 | * |
| 1681 | * Must be called with the server lock held. |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1682 | */ |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1683 | void server_recalc_eweight(struct server *sv, int must_update) |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1684 | { |
| 1685 | struct proxy *px = sv->proxy; |
| 1686 | unsigned w; |
| 1687 | |
| 1688 | if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) { |
| 1689 | /* go to full throttle if the slowstart interval is reached */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1690 | if (sv->next_state == SRV_ST_STARTING) |
| 1691 | sv->next_state = SRV_ST_RUNNING; |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | /* We must take care of not pushing the server to full throttle during slow starts. |
| 1695 | * It must also start immediately, at least at the minimal step when leaving maintenance. |
| 1696 | */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1697 | 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] | 1698 | w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart; |
| 1699 | else |
| 1700 | w = px->lbprm.wdiv; |
| 1701 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1702 | 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] | 1703 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1704 | /* propagate changes only if needed (i.e. not recursively) */ |
Willy Tarreau | 49725a0 | 2018-08-21 19:54:09 +0200 | [diff] [blame] | 1705 | if (must_update) |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1706 | srv_update_status(sv); |
Willy Tarreau | 004e045 | 2013-11-21 11:22:01 +0100 | [diff] [blame] | 1707 | } |
| 1708 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1709 | /* |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1710 | * Parses weight_str and configures sv accordingly. |
| 1711 | * Returns NULL on success, error message string otherwise. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1712 | * |
| 1713 | * Must be called with the server lock held. |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1714 | */ |
| 1715 | const char *server_parse_weight_change_request(struct server *sv, |
| 1716 | const char *weight_str) |
| 1717 | { |
| 1718 | struct proxy *px; |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1719 | long int w; |
| 1720 | char *end; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1721 | |
| 1722 | px = sv->proxy; |
| 1723 | |
| 1724 | /* if the weight is terminated with '%', it is set relative to |
| 1725 | * the initial weight, otherwise it is absolute. |
| 1726 | */ |
| 1727 | if (!*weight_str) |
| 1728 | return "Require <weight> or <weight%>.\n"; |
| 1729 | |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1730 | w = strtol(weight_str, &end, 10); |
| 1731 | if (end == weight_str) |
| 1732 | return "Empty weight string empty or preceded by garbage"; |
| 1733 | else if (end[0] == '%' && end[1] == '\0') { |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1734 | if (w < 0) |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1735 | return "Relative weight must be positive.\n"; |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1736 | /* Avoid integer overflow */ |
| 1737 | if (w > 25600) |
| 1738 | w = 25600; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1739 | w = sv->iweight * w / 100; |
Simon Horman | 58b5d29 | 2013-02-12 10:45:52 +0900 | [diff] [blame] | 1740 | if (w > 256) |
| 1741 | w = 256; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1742 | } |
| 1743 | else if (w < 0 || w > 256) |
| 1744 | return "Absolute weight can only be between 0 and 256 inclusive.\n"; |
Simon Horman | b796afa | 2013-02-12 10:45:53 +0900 | [diff] [blame] | 1745 | else if (end[0] != '\0') |
| 1746 | return "Trailing garbage in weight string"; |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1747 | |
| 1748 | if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN)) |
| 1749 | return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n"; |
| 1750 | |
| 1751 | sv->uweight = w; |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1752 | server_recalc_eweight(sv, 1); |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 1753 | |
| 1754 | return NULL; |
| 1755 | } |
| 1756 | |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1757 | /* |
Thierry Fournier | 09a9178 | 2016-02-24 08:25:39 +0100 | [diff] [blame] | 1758 | * Parses <addr_str> and configures <sv> accordingly. <from> precise |
| 1759 | * the source of the change in the associated message log. |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1760 | * Returns: |
| 1761 | * - error string on error |
| 1762 | * - NULL on success |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1763 | * |
| 1764 | * Must be called with the server lock held. |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1765 | */ |
| 1766 | const char *server_parse_addr_change_request(struct server *sv, |
Thierry Fournier | 09a9178 | 2016-02-24 08:25:39 +0100 | [diff] [blame] | 1767 | const char *addr_str, const char *updater) |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1768 | { |
| 1769 | unsigned char ip[INET6_ADDRSTRLEN]; |
| 1770 | |
| 1771 | if (inet_pton(AF_INET6, addr_str, ip)) { |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1772 | srv_update_addr(sv, ip, AF_INET6, updater); |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1773 | return NULL; |
| 1774 | } |
| 1775 | if (inet_pton(AF_INET, addr_str, ip)) { |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1776 | srv_update_addr(sv, ip, AF_INET, updater); |
Baptiste Assmann | 3d8f831 | 2015-04-13 22:54:33 +0200 | [diff] [blame] | 1777 | return NULL; |
| 1778 | } |
| 1779 | |
| 1780 | return "Could not understand IP address format.\n"; |
| 1781 | } |
| 1782 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 1783 | /* |
| 1784 | * Must be called with the server lock held. |
| 1785 | */ |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1786 | const char *server_parse_maxconn_change_request(struct server *sv, |
| 1787 | const char *maxconn_str) |
| 1788 | { |
| 1789 | long int v; |
| 1790 | char *end; |
| 1791 | |
| 1792 | if (!*maxconn_str) |
| 1793 | return "Require <maxconn>.\n"; |
| 1794 | |
| 1795 | v = strtol(maxconn_str, &end, 10); |
| 1796 | if (end == maxconn_str) |
| 1797 | return "maxconn string empty or preceded by garbage"; |
| 1798 | else if (end[0] != '\0') |
| 1799 | return "Trailing garbage in maxconn string"; |
| 1800 | |
| 1801 | if (sv->maxconn == sv->minconn) { // static maxconn |
| 1802 | sv->maxconn = sv->minconn = v; |
| 1803 | } else { // dynamic maxconn |
| 1804 | sv->maxconn = v; |
| 1805 | } |
| 1806 | |
| 1807 | if (may_dequeue_tasks(sv, sv->proxy)) |
| 1808 | process_srv_queue(sv); |
| 1809 | |
| 1810 | return NULL; |
| 1811 | } |
| 1812 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1813 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1814 | static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px, |
| 1815 | const char *file, int linenum, char **err) |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1816 | { |
| 1817 | int idx; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1818 | const char *args[] = { |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1819 | srv->sni_expr, |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1820 | NULL, |
| 1821 | }; |
| 1822 | |
| 1823 | idx = 0; |
Olivier Houchard | 7d8e688 | 2017-04-20 18:21:17 +0200 | [diff] [blame] | 1824 | px->conf.args.ctx = ARGC_SRV; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1825 | |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1826 | 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] | 1827 | } |
| 1828 | |
| 1829 | static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err) |
| 1830 | { |
| 1831 | struct sample_expr *expr; |
| 1832 | |
| 1833 | expr = srv_sni_sample_parse_expr(newsrv, px, px->conf.file, px->conf.line, err); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1834 | if (!expr) { |
| 1835 | memprintf(err, "error detected while parsing sni expression : %s", *err); |
| 1836 | return ERR_ALERT | ERR_FATAL; |
| 1837 | } |
| 1838 | |
| 1839 | if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) { |
| 1840 | memprintf(err, "error detected while parsing sni expression : " |
| 1841 | " fetch method '%s' extracts information from '%s', " |
| 1842 | "none of which is available here.\n", |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 1843 | newsrv->sni_expr, sample_src_names(expr->fetch->use)); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1844 | return ERR_ALERT | ERR_FATAL; |
| 1845 | } |
| 1846 | |
| 1847 | px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
| 1848 | release_sample_expr(newsrv->ssl_ctx.sni); |
| 1849 | newsrv->ssl_ctx.sni = expr; |
| 1850 | |
| 1851 | return 0; |
| 1852 | } |
| 1853 | #endif |
| 1854 | |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1855 | 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] | 1856 | { |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1857 | char *msg = "error encountered while processing "; |
| 1858 | char *quote = "'"; |
| 1859 | char *token = args[cur_arg]; |
| 1860 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1861 | if (err && *err) { |
| 1862 | indent_msg(err, 2); |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1863 | msg = *err; |
| 1864 | quote = ""; |
| 1865 | token = ""; |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1866 | } |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1867 | |
| 1868 | if (err_code & ERR_WARN && !(err_code & ERR_ALERT)) |
| 1869 | ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n", |
| 1870 | file, linenum, args[0], args[1], |
| 1871 | msg, quote, token, quote); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1872 | else |
Gaetan Rivet | 10c4b4a | 2020-02-11 11:42:38 +0100 | [diff] [blame] | 1873 | ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n", |
| 1874 | file, linenum, args[0], args[1], |
| 1875 | msg, quote, token, quote); |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 1876 | } |
| 1877 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1878 | static void srv_conn_src_sport_range_cpy(struct server *srv, |
| 1879 | struct server *src) |
| 1880 | { |
| 1881 | int range_sz; |
| 1882 | |
| 1883 | range_sz = src->conn_src.sport_range->size; |
| 1884 | if (range_sz > 0) { |
| 1885 | srv->conn_src.sport_range = port_range_alloc_range(range_sz); |
| 1886 | if (srv->conn_src.sport_range != NULL) { |
| 1887 | int i; |
| 1888 | |
| 1889 | for (i = 0; i < range_sz; i++) { |
| 1890 | srv->conn_src.sport_range->ports[i] = |
| 1891 | src->conn_src.sport_range->ports[i]; |
| 1892 | } |
| 1893 | } |
| 1894 | } |
| 1895 | } |
| 1896 | |
| 1897 | /* |
| 1898 | * Copy <src> server connection source settings to <srv> server everything needed. |
| 1899 | */ |
| 1900 | static void srv_conn_src_cpy(struct server *srv, struct server *src) |
| 1901 | { |
| 1902 | srv->conn_src.opts = src->conn_src.opts; |
| 1903 | srv->conn_src.source_addr = src->conn_src.source_addr; |
| 1904 | |
| 1905 | /* Source port range copy. */ |
| 1906 | if (src->conn_src.sport_range != NULL) |
| 1907 | srv_conn_src_sport_range_cpy(srv, src); |
| 1908 | |
| 1909 | #ifdef CONFIG_HAP_TRANSPARENT |
| 1910 | if (src->conn_src.bind_hdr_name != NULL) { |
| 1911 | srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name); |
| 1912 | srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name); |
| 1913 | } |
| 1914 | srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ; |
| 1915 | srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr; |
| 1916 | #endif |
| 1917 | if (src->conn_src.iface_name != NULL) |
| 1918 | srv->conn_src.iface_name = strdup(src->conn_src.iface_name); |
| 1919 | } |
| 1920 | |
| 1921 | /* |
| 1922 | * Copy <src> server SSL settings to <srv> server allocating |
| 1923 | * everything needed. |
| 1924 | */ |
| 1925 | #if defined(USE_OPENSSL) |
| 1926 | static void srv_ssl_settings_cpy(struct server *srv, struct server *src) |
| 1927 | { |
| 1928 | if (src->ssl_ctx.ca_file != NULL) |
| 1929 | srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file); |
| 1930 | if (src->ssl_ctx.crl_file != NULL) |
| 1931 | srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file); |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1932 | |
| 1933 | srv->ssl_ctx.verify = src->ssl_ctx.verify; |
| 1934 | |
| 1935 | if (src->ssl_ctx.verify_host != NULL) |
| 1936 | srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host); |
| 1937 | if (src->ssl_ctx.ciphers != NULL) |
| 1938 | srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers); |
Jerome Magnin | 2e8d52f | 2020-04-22 11:40:18 +0200 | [diff] [blame] | 1939 | if (src->ssl_ctx.options) |
| 1940 | srv->ssl_ctx.options = src->ssl_ctx.options; |
| 1941 | if (src->ssl_ctx.methods.flags) |
| 1942 | srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags; |
| 1943 | if (src->ssl_ctx.methods.min) |
| 1944 | srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min; |
| 1945 | if (src->ssl_ctx.methods.max) |
| 1946 | srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max; |
| 1947 | |
Ilya Shipitsin | 2aa4b3a | 2021-01-07 11:55:45 +0500 | [diff] [blame] | 1948 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 1949 | if (src->ssl_ctx.ciphersuites != NULL) |
| 1950 | srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites); |
| 1951 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1952 | if (src->sni_expr != NULL) |
| 1953 | srv->sni_expr = strdup(src->sni_expr); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1954 | |
| 1955 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 1956 | if (src->ssl_ctx.alpn_str) { |
| 1957 | srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len); |
| 1958 | if (srv->ssl_ctx.alpn_str) { |
| 1959 | memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str, |
| 1960 | src->ssl_ctx.alpn_len); |
| 1961 | srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len; |
| 1962 | } |
| 1963 | } |
| 1964 | #endif |
| 1965 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 1966 | if (src->ssl_ctx.npn_str) { |
| 1967 | srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len); |
| 1968 | if (srv->ssl_ctx.npn_str) { |
| 1969 | memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str, |
| 1970 | src->ssl_ctx.npn_len); |
| 1971 | srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len; |
| 1972 | } |
| 1973 | } |
| 1974 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 1975 | } |
| 1976 | #endif |
| 1977 | |
| 1978 | /* |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 1979 | * Prepare <srv> for hostname resolution. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1980 | * 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] | 1981 | * 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] | 1982 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 1983 | 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] | 1984 | { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 1985 | char *hostname_dn; |
| 1986 | int hostname_len, hostname_dn_len; |
| 1987 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1988 | if (!hostname) |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 1989 | return 0; |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1990 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 1991 | hostname_len = strlen(hostname); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1992 | hostname_dn = trash.area; |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 1993 | hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1, |
| 1994 | hostname_dn, trash.size); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 1995 | if (hostname_dn_len == -1) |
| 1996 | goto err; |
Baptiste Assmann | 81ed1a0 | 2017-05-03 10:11:44 +0200 | [diff] [blame] | 1997 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 1998 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 1999 | free(srv->hostname); |
| 2000 | free(srv->hostname_dn); |
| 2001 | srv->hostname = strdup(hostname); |
| 2002 | srv->hostname_dn = strdup(hostname_dn); |
| 2003 | srv->hostname_dn_len = hostname_dn_len; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2004 | if (!srv->hostname || !srv->hostname_dn) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2005 | goto err; |
| 2006 | |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 2007 | return 0; |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2008 | |
| 2009 | err: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2010 | ha_free(&srv->hostname); |
| 2011 | ha_free(&srv->hostname_dn); |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 2012 | return -1; |
| 2013 | } |
| 2014 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2015 | /* |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2016 | * Copy <src> server settings to <srv> server allocating |
| 2017 | * everything needed. |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2018 | * This function is not supposed to be called at any time, but only |
| 2019 | * during server settings parsing or during server allocations from |
| 2020 | * a server template, and just after having calloc()'ed a new server. |
| 2021 | * So, <src> may only be a default server (when parsing server settings) |
| 2022 | * or a server template (during server allocations from a server template). |
| 2023 | * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template, |
| 2024 | * 0 if not). |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2025 | */ |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2026 | 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] | 2027 | { |
| 2028 | /* Connection source settings copy */ |
| 2029 | srv_conn_src_cpy(srv, src); |
| 2030 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2031 | if (srv_tmpl) { |
| 2032 | srv->addr = src->addr; |
| 2033 | srv->svc_port = src->svc_port; |
| 2034 | } |
| 2035 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2036 | srv->pp_opts = src->pp_opts; |
| 2037 | if (src->rdr_pfx != NULL) { |
| 2038 | srv->rdr_pfx = strdup(src->rdr_pfx); |
| 2039 | srv->rdr_len = src->rdr_len; |
| 2040 | } |
| 2041 | if (src->cookie != NULL) { |
| 2042 | srv->cookie = strdup(src->cookie); |
| 2043 | srv->cklen = src->cklen; |
| 2044 | } |
| 2045 | srv->use_ssl = src->use_ssl; |
Willy Tarreau | 2444108 | 2019-12-11 15:43:45 +0100 | [diff] [blame] | 2046 | srv->check.addr = src->check.addr; |
| 2047 | srv->agent.addr = src->agent.addr; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2048 | srv->check.use_ssl = src->check.use_ssl; |
| 2049 | srv->check.port = src->check.port; |
Olivier Houchard | 2194401 | 2018-12-21 19:42:01 +0100 | [diff] [blame] | 2050 | srv->check.sni = src->check.sni; |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 2051 | srv->check.alpn_str = src->check.alpn_str; |
Ilya Shipitsin | 0c50b1e | 2019-04-30 21:21:28 +0500 | [diff] [blame] | 2052 | srv->check.alpn_len = src->check.alpn_len; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2053 | /* Note: 'flags' field has potentially been already initialized. */ |
| 2054 | srv->flags |= src->flags; |
| 2055 | srv->do_check = src->do_check; |
| 2056 | srv->do_agent = src->do_agent; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2057 | srv->check.inter = src->check.inter; |
| 2058 | srv->check.fastinter = src->check.fastinter; |
| 2059 | srv->check.downinter = src->check.downinter; |
| 2060 | srv->agent.use_ssl = src->agent.use_ssl; |
| 2061 | srv->agent.port = src->agent.port; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2062 | |
| 2063 | if (src->agent.tcpcheck_rules) { |
| 2064 | srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules)); |
| 2065 | if (srv->agent.tcpcheck_rules) { |
| 2066 | srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags; |
| 2067 | srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list; |
| 2068 | LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars); |
| 2069 | dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars, |
| 2070 | &src->agent.tcpcheck_rules->preset_vars); |
| 2071 | } |
| 2072 | } |
| 2073 | |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2074 | srv->agent.inter = src->agent.inter; |
| 2075 | srv->agent.fastinter = src->agent.fastinter; |
| 2076 | srv->agent.downinter = src->agent.downinter; |
| 2077 | srv->maxqueue = src->maxqueue; |
| 2078 | srv->minconn = src->minconn; |
| 2079 | srv->maxconn = src->maxconn; |
| 2080 | srv->slowstart = src->slowstart; |
| 2081 | srv->observe = src->observe; |
| 2082 | srv->onerror = src->onerror; |
| 2083 | srv->onmarkeddown = src->onmarkeddown; |
| 2084 | srv->onmarkedup = src->onmarkedup; |
| 2085 | if (src->trackit != NULL) |
| 2086 | srv->trackit = strdup(src->trackit); |
| 2087 | srv->consecutive_errors_limit = src->consecutive_errors_limit; |
| 2088 | srv->uweight = srv->iweight = src->iweight; |
| 2089 | |
| 2090 | srv->check.send_proxy = src->check.send_proxy; |
| 2091 | /* health: up, but will fall down at first failure */ |
| 2092 | srv->check.rise = srv->check.health = src->check.rise; |
| 2093 | srv->check.fall = src->check.fall; |
| 2094 | |
| 2095 | /* Here we check if 'disabled' is the default server state */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2096 | if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) { |
| 2097 | srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT; |
| 2098 | srv->next_state = SRV_ST_STOPPED; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2099 | srv->check.state |= CHK_ST_PAUSED; |
| 2100 | srv->check.health = 0; |
| 2101 | } |
| 2102 | |
| 2103 | /* health: up but will fall down at first failure */ |
| 2104 | srv->agent.rise = srv->agent.health = src->agent.rise; |
| 2105 | srv->agent.fall = src->agent.fall; |
| 2106 | |
| 2107 | if (src->resolvers_id != NULL) |
| 2108 | srv->resolvers_id = strdup(src->resolvers_id); |
Emeric Brun | 21fbeed | 2020-12-23 18:01:04 +0100 | [diff] [blame] | 2109 | srv->resolv_opts.family_prio = src->resolv_opts.family_prio; |
| 2110 | srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip; |
| 2111 | srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight; |
| 2112 | if (srv->resolv_opts.family_prio == AF_UNSPEC) |
| 2113 | srv->resolv_opts.family_prio = AF_INET6; |
| 2114 | memcpy(srv->resolv_opts.pref_net, |
| 2115 | src->resolv_opts.pref_net, |
| 2116 | sizeof srv->resolv_opts.pref_net); |
| 2117 | srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2118 | |
| 2119 | srv->init_addr_methods = src->init_addr_methods; |
| 2120 | srv->init_addr = src->init_addr; |
| 2121 | #if defined(USE_OPENSSL) |
| 2122 | srv_ssl_settings_cpy(srv, src); |
| 2123 | #endif |
| 2124 | #ifdef TCP_USER_TIMEOUT |
| 2125 | srv->tcp_ut = src->tcp_ut; |
| 2126 | #endif |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 2127 | srv->mux_proto = src->mux_proto; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 2128 | srv->pool_purge_delay = src->pool_purge_delay; |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 2129 | srv->low_idle_conns = src->low_idle_conns; |
Olivier Houchard | 006e310 | 2018-12-10 18:30:32 +0100 | [diff] [blame] | 2130 | srv->max_idle_conns = src->max_idle_conns; |
Willy Tarreau | 9c538e0 | 2019-01-23 10:21:49 +0100 | [diff] [blame] | 2131 | srv->max_reuse = src->max_reuse; |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 2132 | |
Olivier Houchard | 8da5f98 | 2017-08-04 18:35:36 +0200 | [diff] [blame] | 2133 | if (srv_tmpl) |
| 2134 | srv->srvrq = src->srvrq; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 2135 | |
| 2136 | srv->check.via_socks4 = src->check.via_socks4; |
| 2137 | srv->socks4_addr = src->socks4_addr; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2138 | } |
| 2139 | |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 2140 | /* allocate a server and attach it to the global servers_list. Returns |
| 2141 | * the server on success, otherwise NULL. |
| 2142 | */ |
William Lallemand | 313bfd1 | 2018-10-26 14:47:32 +0200 | [diff] [blame] | 2143 | struct server *new_server(struct proxy *proxy) |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2144 | { |
| 2145 | struct server *srv; |
| 2146 | |
| 2147 | srv = calloc(1, sizeof *srv); |
| 2148 | if (!srv) |
| 2149 | return NULL; |
| 2150 | |
| 2151 | srv->obj_type = OBJ_TYPE_SERVER; |
| 2152 | srv->proxy = proxy; |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 2153 | srv->pendconns = EB_ROOT; |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 2154 | LIST_ADDQ(&servers_list, &srv->global_list); |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 2155 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2156 | srv->next_state = SRV_ST_RUNNING; /* early server setup */ |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2157 | srv->last_change = now.tv_sec; |
| 2158 | |
Christopher Faulet | 3829046 | 2020-04-21 11:46:40 +0200 | [diff] [blame] | 2159 | srv->check.obj_type = OBJ_TYPE_CHECK; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2160 | srv->check.status = HCHK_STATUS_INI; |
| 2161 | srv->check.server = srv; |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2162 | srv->check.proxy = proxy; |
Christopher Faulet | 5d503fc | 2020-03-30 20:34:34 +0200 | [diff] [blame] | 2163 | srv->check.tcpcheck_rules = &proxy->tcpcheck_rules; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2164 | |
Christopher Faulet | 3829046 | 2020-04-21 11:46:40 +0200 | [diff] [blame] | 2165 | srv->agent.obj_type = OBJ_TYPE_CHECK; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2166 | srv->agent.status = HCHK_STATUS_INI; |
| 2167 | srv->agent.server = srv; |
Willy Tarreau | 1ba3203 | 2019-01-21 07:48:26 +0100 | [diff] [blame] | 2168 | srv->agent.proxy = proxy; |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2169 | 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] | 2170 | #if defined(USE_QUIC) |
| 2171 | srv->cids = EB_ROOT_UNIQUE; |
| 2172 | #endif |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2173 | |
Amaury Denoyelle | 7f8f6cb | 2020-11-10 14:24:31 +0100 | [diff] [blame] | 2174 | srv->extra_counters = NULL; |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 2175 | #ifdef USE_OPENSSL |
| 2176 | HA_RWLOCK_INIT(&srv->ssl_ctx.lock); |
| 2177 | #endif |
Amaury Denoyelle | 7f8f6cb | 2020-11-10 14:24:31 +0100 | [diff] [blame] | 2178 | |
Willy Tarreau | 975b155 | 2019-06-06 16:25:55 +0200 | [diff] [blame] | 2179 | /* please don't put default server settings here, they are set in |
Willy Tarreau | 144289b | 2021-02-12 08:19:01 +0100 | [diff] [blame] | 2180 | * proxy_preset_defaults(). |
Willy Tarreau | 975b155 | 2019-06-06 16:25:55 +0200 | [diff] [blame] | 2181 | */ |
Frédéric Lécaille | 58b207c | 2017-03-30 14:18:30 +0200 | [diff] [blame] | 2182 | return srv; |
| 2183 | } |
Frédéric Lécaille | 759ea98 | 2017-03-30 17:32:36 +0200 | [diff] [blame] | 2184 | |
Amaury Denoyelle | 828adf0 | 2021-03-16 17:20:15 +0100 | [diff] [blame] | 2185 | /* Deallocate a server <srv> and its member. <srv> must be allocated. |
| 2186 | */ |
| 2187 | void free_server(struct server *srv) |
| 2188 | { |
| 2189 | task_destroy(srv->warmup); |
| 2190 | |
| 2191 | free(srv->id); |
| 2192 | free(srv->cookie); |
| 2193 | free(srv->hostname); |
| 2194 | free(srv->hostname_dn); |
| 2195 | free((char*)srv->conf.file); |
| 2196 | free(srv->per_thr); |
| 2197 | free(srv->curr_idle_thr); |
| 2198 | free(srv->resolvers_id); |
| 2199 | free(srv->addr_node.key); |
| 2200 | |
| 2201 | if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) { |
| 2202 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv) |
| 2203 | xprt_get(XPRT_SSL)->destroy_srv(srv); |
| 2204 | } |
| 2205 | HA_SPIN_DESTROY(&srv->lock); |
| 2206 | |
| 2207 | LIST_DEL(&srv->global_list); |
| 2208 | |
| 2209 | EXTRA_COUNTERS_FREE(srv->extra_counters); |
| 2210 | |
| 2211 | free(srv); |
| 2212 | srv = NULL; |
| 2213 | } |
| 2214 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2215 | /* |
| 2216 | * Parse as much as possible such a range string argument: low[-high] |
| 2217 | * Set <nb_low> and <nb_high> values so that they may be reused by this loop |
| 2218 | * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1. |
| 2219 | * Fails if 'low' < 0 or 'high' is present and not higher than 'low'. |
| 2220 | * Returns 0 if succeeded, -1 if not. |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2221 | */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2222 | static int _srv_parse_tmpl_range(struct server *srv, const char *arg, |
| 2223 | int *nb_low, int *nb_high) |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2224 | { |
| 2225 | char *nb_high_arg; |
| 2226 | |
| 2227 | *nb_high = 0; |
| 2228 | chunk_printf(&trash, "%s", arg); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2229 | *nb_low = atoi(trash.area); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2230 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2231 | if ((nb_high_arg = strchr(trash.area, '-'))) { |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2232 | *nb_high_arg++ = '\0'; |
| 2233 | *nb_high = atoi(nb_high_arg); |
| 2234 | } |
| 2235 | else { |
| 2236 | *nb_high += *nb_low; |
| 2237 | *nb_low = 1; |
| 2238 | } |
| 2239 | |
| 2240 | if (*nb_low < 0 || *nb_high < *nb_low) |
| 2241 | return -1; |
| 2242 | |
| 2243 | return 0; |
| 2244 | } |
| 2245 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2246 | /* Parse as much as possible such a range string argument: low[-high] |
| 2247 | * Set <nb_low> and <nb_high> values so that they may be reused by this loop |
| 2248 | * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1. |
| 2249 | * |
| 2250 | * This function is first intented to be used through parse_server to |
| 2251 | * initialize a new server on startup. |
| 2252 | * |
| 2253 | * Fails if 'low' < 0 or 'high' is present and not higher than 'low'. |
| 2254 | * Returns 0 if succeeded, -1 if not. |
| 2255 | */ |
| 2256 | static inline void _srv_parse_set_id_from_prefix(struct server *srv, |
| 2257 | const char *prefix, int nb) |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2258 | { |
| 2259 | chunk_printf(&trash, "%s%d", prefix, nb); |
| 2260 | free(srv->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2261 | srv->id = strdup(trash.area); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2262 | } |
| 2263 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2264 | /* 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] | 2265 | * Note that a server template is a special server with |
| 2266 | * a few different parameters than a server which has |
| 2267 | * been parsed mostly the same way as a server. |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2268 | * |
| 2269 | * This function is first intented to be used through parse_server to |
| 2270 | * initialize a new server on startup. |
| 2271 | * |
Joseph Herlant | 4446682 | 2018-11-15 08:57:51 -0800 | [diff] [blame] | 2272 | * Returns the number of servers successfully allocated, |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2273 | * 'srv' template included. |
| 2274 | */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2275 | 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] | 2276 | { |
| 2277 | int i; |
| 2278 | struct server *newsrv; |
| 2279 | |
| 2280 | 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] | 2281 | newsrv = new_server(px); |
| 2282 | if (!newsrv) |
| 2283 | goto err; |
| 2284 | |
Christopher Faulet | 75bef00 | 2020-11-02 22:04:55 +0100 | [diff] [blame] | 2285 | newsrv->conf.file = strdup(srv->conf.file); |
| 2286 | newsrv->conf.line = srv->conf.line; |
| 2287 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2288 | srv_settings_cpy(newsrv, srv, 1); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 2289 | srv_prepare_for_resolution(newsrv, srv->hostname); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2290 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2291 | if (newsrv->sni_expr) { |
| 2292 | newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL); |
| 2293 | if (!newsrv->ssl_ctx.sni) |
| 2294 | goto err; |
| 2295 | } |
| 2296 | #endif |
| 2297 | /* Set this new server ID. */ |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2298 | _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] | 2299 | |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2300 | /* Linked backwards first. This will be restablished after parsing. */ |
| 2301 | newsrv->next = px->srv; |
| 2302 | px->srv = newsrv; |
| 2303 | } |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2304 | _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] | 2305 | |
| 2306 | return i - srv->tmpl_info.nb_low; |
| 2307 | |
| 2308 | err: |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2309 | _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] | 2310 | if (newsrv) { |
| 2311 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2312 | release_sample_expr(newsrv->ssl_ctx.sni); |
| 2313 | #endif |
| 2314 | free_check(&newsrv->agent); |
| 2315 | free_check(&newsrv->check); |
Willy Tarreau | 198e92a | 2021-03-05 10:23:32 +0100 | [diff] [blame] | 2316 | LIST_DEL(&newsrv->global_list); |
Frédéric Lécaille | 72ed475 | 2017-04-14 13:28:00 +0200 | [diff] [blame] | 2317 | } |
| 2318 | free(newsrv); |
| 2319 | return i - srv->tmpl_info.nb_low; |
| 2320 | } |
| 2321 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2322 | /* Allocate a new server pointed by <srv> and try to parse the first arguments |
| 2323 | * in <args> as an address for a server or an address-range for a template or |
| 2324 | * nothing for a default-server. <cur_arg> is incremented to the next argument. |
| 2325 | * |
| 2326 | * This function is first intented to be used through parse_server to |
| 2327 | * initialize a new server on startup. |
| 2328 | * |
| 2329 | * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case |
| 2330 | * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated, |
| 2331 | * <srv> will be set to NULL. |
| 2332 | */ |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2333 | static int _srv_parse_init(struct server **srv, char **args, int *cur_arg, |
| 2334 | struct proxy *curproxy, |
| 2335 | int parse_flags, char **errmsg) |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2336 | { |
| 2337 | struct server *newsrv = NULL; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2338 | const char *err = NULL; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2339 | int err_code = 0; |
Willy Tarreau | 07101d5 | 2015-09-08 16:16:35 +0200 | [diff] [blame] | 2340 | char *fqdn = NULL; |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2341 | int tmpl_range_low = 0, tmpl_range_high = 0; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2342 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2343 | *srv = NULL; |
| 2344 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2345 | /* There is no mandatory first arguments for default server. */ |
| 2346 | if (parse_flags & SRV_PARSE_PARSE_ADDR) { |
| 2347 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2348 | if (!*args[3]) { |
| 2349 | /* 'server-template' line number of argument check. */ |
| 2350 | memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.", |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2351 | args[0]); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2352 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2353 | goto out; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2354 | } |
| 2355 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2356 | err = invalid_prefix_char(args[1]); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2357 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2358 | else { |
| 2359 | if (!*args[2]) { |
| 2360 | /* 'server' line number of argument check. */ |
| 2361 | memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.", |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2362 | args[0]); |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2363 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2364 | goto out; |
| 2365 | } |
| 2366 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2367 | err = invalid_char(args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2368 | } |
| 2369 | |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2370 | if (err) { |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2371 | memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.", |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2372 | *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2373 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2374 | goto out; |
| 2375 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2376 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2377 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2378 | *cur_arg = 2; |
| 2379 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2380 | /* Parse server-template <nb | range> arg. */ |
| 2381 | if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) { |
| 2382 | memprintf(errmsg, "Wrong %s number or range arg '%s'.", |
| 2383 | args[0], args[*cur_arg]); |
| 2384 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2385 | goto out; |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2386 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2387 | (*cur_arg)++; |
| 2388 | } |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2389 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2390 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
| 2391 | struct sockaddr_storage *sk; |
| 2392 | int port1, port2, port; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2393 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2394 | *srv = newsrv = new_server(curproxy); |
| 2395 | if (!newsrv) { |
| 2396 | memprintf(errmsg, "out of memory."); |
| 2397 | err_code |= ERR_ALERT | ERR_ABORT; |
| 2398 | goto out; |
| 2399 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2400 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2401 | if (parse_flags & SRV_PARSE_TEMPLATE) { |
| 2402 | newsrv->tmpl_info.nb_low = tmpl_range_low; |
| 2403 | newsrv->tmpl_info.nb_high = tmpl_range_high; |
| 2404 | } |
Frédéric Lécaille | b82f742 | 2017-04-13 18:24:23 +0200 | [diff] [blame] | 2405 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2406 | if (parse_flags & SRV_PARSE_DYNAMIC) |
| 2407 | newsrv->flags |= SRV_F_DYNAMIC; |
| 2408 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2409 | /* Note: for a server template, its id is its prefix. |
| 2410 | * This is a temporary id which will be used for server allocations to come |
| 2411 | * after parsing. |
| 2412 | */ |
| 2413 | if (!(parse_flags & SRV_PARSE_TEMPLATE)) |
| 2414 | newsrv->id = strdup(args[1]); |
| 2415 | else |
| 2416 | newsrv->tmpl_info.prefix = strdup(args[1]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2417 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2418 | /* several ways to check the port component : |
| 2419 | * - IP => port=+0, relative (IPv4 only) |
| 2420 | * - IP: => port=+0, relative |
| 2421 | * - IP:N => port=N, absolute |
| 2422 | * - IP:+N => port=+N, relative |
| 2423 | * - IP:-N => port=-N, relative |
| 2424 | */ |
| 2425 | if (!(parse_flags & SRV_PARSE_PARSE_ADDR)) |
| 2426 | goto skip_addr; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 2427 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2428 | sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL, |
| 2429 | errmsg, NULL, &fqdn, |
| 2430 | (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); |
| 2431 | if (!sk) { |
| 2432 | memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg); |
| 2433 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2434 | goto out; |
| 2435 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2436 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2437 | if (!port1 || !port2) { |
| 2438 | /* no port specified, +offset, -offset */ |
| 2439 | newsrv->flags |= SRV_F_MAPPORTS; |
| 2440 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2441 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2442 | /* save hostname and create associated name resolution */ |
| 2443 | if (fqdn) { |
| 2444 | if (fqdn[0] == '_') { /* SRV record */ |
| 2445 | /* Check if a SRV request already exists, and if not, create it */ |
| 2446 | if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL) |
| 2447 | newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn); |
| 2448 | if (newsrv->srvrq == NULL) { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 2449 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2450 | goto out; |
Baptiste Assmann | 4f91f7e | 2017-05-03 12:09:54 +0200 | [diff] [blame] | 2451 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 2452 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2453 | else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) { |
| 2454 | memprintf(errmsg, "Can't create DNS resolution for server '%s'", |
| 2455 | newsrv->id); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2456 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2457 | goto out; |
| 2458 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2459 | } |
Frédéric Lécaille | 5c3cd97 | 2017-03-15 16:36:09 +0100 | [diff] [blame] | 2460 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2461 | newsrv->addr = *sk; |
| 2462 | newsrv->svc_port = port; |
| 2463 | // we don't need to lock the server here, because |
| 2464 | // we are in the process of initializing |
| 2465 | srv_set_addr_desc(newsrv); |
| 2466 | |
| 2467 | if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) { |
| 2468 | memprintf(errmsg, "Unknown protocol family %d '%s'", |
| 2469 | newsrv->addr.ss_family, args[*cur_arg]); |
| 2470 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2471 | goto out; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2472 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2473 | |
| 2474 | (*cur_arg)++; |
| 2475 | skip_addr: |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2476 | if (!(parse_flags & SRV_PARSE_DYNAMIC)) { |
| 2477 | /* Copy default server settings to new server */ |
| 2478 | srv_settings_cpy(newsrv, &curproxy->defsrv, 0); |
| 2479 | } else { |
| 2480 | /* Initialize dynamic server weight to 1 */ |
| 2481 | newsrv->uweight = newsrv->iweight = 1; |
| 2482 | |
| 2483 | /* A dynamic server is disabled on startup */ |
| 2484 | newsrv->next_admin = SRV_ADMF_FMAINT; |
| 2485 | newsrv->next_state = SRV_ST_STOPPED; |
| 2486 | server_recalc_eweight(newsrv, 0); |
| 2487 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2488 | HA_SPIN_INIT(&newsrv->lock); |
| 2489 | } |
| 2490 | else { |
| 2491 | *srv = newsrv = &curproxy->defsrv; |
| 2492 | *cur_arg = 1; |
| 2493 | newsrv->resolv_opts.family_prio = AF_INET6; |
| 2494 | newsrv->resolv_opts.accept_duplicate_ip = 0; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2495 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2496 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2497 | free(fqdn); |
| 2498 | return 0; |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 2499 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2500 | out: |
| 2501 | free(fqdn); |
| 2502 | return err_code; |
| 2503 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2504 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2505 | /* Parse the server keyword in <args>. |
| 2506 | * <cur_arg> is incremented beyond the keyword optional value. Note that this |
| 2507 | * might not be the case if an error is reported. |
| 2508 | * |
| 2509 | * This function is first intented to be used through parse_server to |
| 2510 | * initialize a new server on startup. |
| 2511 | * |
| 2512 | * A mask of errors is returned. ERR_FATAL is set if the parsing should be |
| 2513 | * interrupted. |
| 2514 | */ |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2515 | static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg, |
| 2516 | struct proxy *curproxy, |
| 2517 | int parse_flags, char **errmsg) |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2518 | { |
| 2519 | int err_code = 0; |
| 2520 | struct srv_kw *kw; |
| 2521 | const char *best; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2522 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2523 | kw = srv_find_kw(args[*cur_arg]); |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2524 | if (!kw) { |
| 2525 | best = srv_find_best_kw(args[*cur_arg]); |
| 2526 | if (best) |
| 2527 | memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?", |
| 2528 | args[*cur_arg], best); |
| 2529 | else |
| 2530 | memprintf(errmsg, "unknown keyword '%s'.", |
| 2531 | args[*cur_arg]); |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2532 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2533 | return ERR_ALERT | ERR_FATAL; |
| 2534 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2535 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2536 | if (!kw->parse) { |
| 2537 | memprintf(errmsg, "'%s' option is not implemented in this version (check build options)", |
| 2538 | args[*cur_arg]); |
| 2539 | err_code = ERR_ALERT | ERR_FATAL; |
| 2540 | goto out; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2541 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2542 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2543 | if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) { |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2544 | memprintf(errmsg, "'%s' option is not accepted in default-server sections", |
| 2545 | args[*cur_arg]); |
| 2546 | err_code = ERR_ALERT; |
| 2547 | goto out; |
| 2548 | } |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2549 | else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) { |
| 2550 | memprintf(errmsg, "'%s' option is not accepted for dynamic server", |
| 2551 | args[*cur_arg]); |
| 2552 | err_code |= ERR_ALERT; |
| 2553 | goto out; |
| 2554 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2555 | |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2556 | err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2557 | |
| 2558 | out: |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2559 | if (kw->skip != -1) |
| 2560 | *cur_arg += 1 + kw->skip; |
| 2561 | |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2562 | return err_code; |
| 2563 | } |
| 2564 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2565 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2566 | /* This function is first intented to be used through parse_server to |
| 2567 | * initialize a new server on startup. |
| 2568 | */ |
| 2569 | static int _srv_parse_sni_expr_init(char **args, int cur_arg, |
| 2570 | struct server *srv, struct proxy *proxy, |
| 2571 | char **errmsg) |
| 2572 | { |
| 2573 | int ret; |
| 2574 | |
| 2575 | if (!srv->sni_expr) |
| 2576 | return 0; |
| 2577 | |
| 2578 | ret = server_parse_sni_expr(srv, proxy, errmsg); |
| 2579 | if (!ret) |
| 2580 | return 0; |
| 2581 | |
| 2582 | return ret; |
| 2583 | } |
| 2584 | #endif |
| 2585 | |
| 2586 | /* Server initializations finalization. |
| 2587 | * Initialize health check, agent check and SNI expression if enabled. |
| 2588 | * Must not be called for a default server instance. |
| 2589 | * |
| 2590 | * This function is first intented to be used through parse_server to |
| 2591 | * initialize a new server on startup. |
| 2592 | */ |
| 2593 | static int _srv_parse_finalize(char **args, int cur_arg, |
| 2594 | struct server *srv, struct proxy *px, |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2595 | int parse_flags, char **errmsg) |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2596 | { |
| 2597 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2598 | int ret; |
| 2599 | #endif |
| 2600 | |
| 2601 | if (srv->do_check && srv->trackit) { |
| 2602 | memprintf(errmsg, "unable to enable checks and tracking at the same time!"); |
| 2603 | return ERR_ALERT | ERR_FATAL; |
| 2604 | } |
| 2605 | |
| 2606 | if (srv->do_agent && !srv->agent.port) { |
| 2607 | memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.", |
| 2608 | srv->id); |
| 2609 | return ERR_ALERT | ERR_FATAL; |
| 2610 | } |
| 2611 | |
| 2612 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2613 | if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0) |
| 2614 | return ret; |
| 2615 | #endif |
| 2616 | |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2617 | /* A dynamic server is disabled on startup. It must not be counted as |
| 2618 | * an active backend entry. |
| 2619 | */ |
| 2620 | if (!(parse_flags & SRV_PARSE_DYNAMIC)) { |
| 2621 | if (srv->flags & SRV_F_BACKUP) |
| 2622 | px->srv_bck++; |
| 2623 | else |
| 2624 | px->srv_act++; |
| 2625 | } |
| 2626 | |
Amaury Denoyelle | 7d27efe | 2021-03-17 14:25:39 +0100 | [diff] [blame] | 2627 | srv_lb_commit_status(srv); |
| 2628 | |
| 2629 | return 0; |
| 2630 | } |
| 2631 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2632 | int parse_server(const char *file, int linenum, char **args, |
| 2633 | struct proxy *curproxy, const struct proxy *defproxy, |
| 2634 | int parse_flags) |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2635 | { |
| 2636 | struct server *newsrv = NULL; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2637 | char *errmsg = NULL; |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2638 | int err_code = 0; |
| 2639 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2640 | int cur_arg; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2641 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2642 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) { |
| 2643 | ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]); |
| 2644 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2645 | goto out; |
| 2646 | } |
| 2647 | else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) { |
| 2648 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2649 | goto out; |
| 2650 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2651 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2652 | if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) == |
| 2653 | (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) { |
| 2654 | if (!*args[2]) |
| 2655 | return 0; |
| 2656 | } |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2657 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2658 | err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy, |
| 2659 | parse_flags, &errmsg); |
| 2660 | if (errmsg) { |
| 2661 | ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
| 2662 | free(errmsg); |
| 2663 | } |
Amaury Denoyelle | cf58dd7 | 2021-03-08 16:35:54 +0100 | [diff] [blame] | 2664 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2665 | /* the servers are linked backwards first */ |
| 2666 | if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
| 2667 | newsrv->next = curproxy->srv; |
| 2668 | curproxy->srv = newsrv; |
| 2669 | } |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2670 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2671 | if (err_code & ERR_CODE) |
| 2672 | goto out; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2673 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2674 | newsrv->conf.file = strdup(file); |
| 2675 | newsrv->conf.line = linenum; |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2676 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2677 | while (*args[cur_arg]) { |
| 2678 | errmsg = NULL; |
| 2679 | err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy, |
| 2680 | parse_flags, &errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2681 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2682 | if (err_code & ERR_ALERT) { |
| 2683 | display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg); |
| 2684 | free(errmsg); |
Amaury Denoyelle | a8f442e | 2021-03-08 10:29:33 +0100 | [diff] [blame] | 2685 | } |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2686 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2687 | if (err_code & ERR_FATAL) |
| 2688 | goto out; |
| 2689 | } |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2690 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2691 | if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) { |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2692 | 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] | 2693 | if (err_code) { |
| 2694 | display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg); |
| 2695 | free(errmsg); |
Amaury Denoyelle | 9394a94 | 2021-03-08 11:20:52 +0100 | [diff] [blame] | 2696 | } |
| 2697 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2698 | if (err_code & ERR_FATAL) |
| 2699 | goto out; |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2700 | } |
Amaury Denoyelle | cf58dd7 | 2021-03-08 16:35:54 +0100 | [diff] [blame] | 2701 | |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 2702 | if (parse_flags & SRV_PARSE_TEMPLATE) |
| 2703 | _srv_parse_tmpl_init(newsrv, curproxy); |
| 2704 | |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2705 | return 0; |
| 2706 | |
| 2707 | out: |
Willy Tarreau | 272adea | 2014-03-31 10:39:59 +0200 | [diff] [blame] | 2708 | return err_code; |
| 2709 | } |
| 2710 | |
Baptiste Assmann | 19a106d | 2015-07-08 22:03:56 +0200 | [diff] [blame] | 2711 | /* Returns a pointer to the first server matching either id <id>. |
| 2712 | * NULL is returned if no match is found. |
| 2713 | * the lookup is performed in the backend <bk> |
| 2714 | */ |
| 2715 | struct server *server_find_by_id(struct proxy *bk, int id) |
| 2716 | { |
| 2717 | struct eb32_node *eb32; |
| 2718 | struct server *curserver; |
| 2719 | |
| 2720 | if (!bk || (id ==0)) |
| 2721 | return NULL; |
| 2722 | |
| 2723 | /* <bk> has no backend capabilities, so it can't have a server */ |
| 2724 | if (!(bk->cap & PR_CAP_BE)) |
| 2725 | return NULL; |
| 2726 | |
| 2727 | curserver = NULL; |
| 2728 | |
| 2729 | eb32 = eb32_lookup(&bk->conf.used_server_id, id); |
| 2730 | if (eb32) |
| 2731 | curserver = container_of(eb32, struct server, conf.id); |
| 2732 | |
| 2733 | return curserver; |
| 2734 | } |
| 2735 | |
| 2736 | /* Returns a pointer to the first server matching either name <name>, or id |
| 2737 | * if <name> starts with a '#'. NULL is returned if no match is found. |
| 2738 | * the lookup is performed in the backend <bk> |
| 2739 | */ |
| 2740 | struct server *server_find_by_name(struct proxy *bk, const char *name) |
| 2741 | { |
| 2742 | struct server *curserver; |
| 2743 | |
| 2744 | if (!bk || !name) |
| 2745 | return NULL; |
| 2746 | |
| 2747 | /* <bk> has no backend capabilities, so it can't have a server */ |
| 2748 | if (!(bk->cap & PR_CAP_BE)) |
| 2749 | return NULL; |
| 2750 | |
| 2751 | curserver = NULL; |
| 2752 | if (*name == '#') { |
| 2753 | curserver = server_find_by_id(bk, atoi(name + 1)); |
| 2754 | if (curserver) |
| 2755 | return curserver; |
| 2756 | } |
| 2757 | else { |
| 2758 | curserver = bk->srv; |
| 2759 | |
| 2760 | while (curserver && (strcmp(curserver->id, name) != 0)) |
| 2761 | curserver = curserver->next; |
| 2762 | |
| 2763 | if (curserver) |
| 2764 | return curserver; |
| 2765 | } |
| 2766 | |
| 2767 | return NULL; |
| 2768 | } |
| 2769 | |
| 2770 | struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff) |
| 2771 | { |
| 2772 | struct server *byname; |
| 2773 | struct server *byid; |
| 2774 | |
| 2775 | if (!name && !id) |
| 2776 | return NULL; |
| 2777 | |
| 2778 | if (diff) |
| 2779 | *diff = 0; |
| 2780 | |
| 2781 | byname = byid = NULL; |
| 2782 | |
| 2783 | if (name) { |
| 2784 | byname = server_find_by_name(bk, name); |
| 2785 | if (byname && (!id || byname->puid == id)) |
| 2786 | return byname; |
| 2787 | } |
| 2788 | |
| 2789 | /* remaining possibilities : |
| 2790 | * - name not set |
| 2791 | * - name set but not found |
| 2792 | * - name found but ID doesn't match |
| 2793 | */ |
| 2794 | if (id) { |
| 2795 | byid = server_find_by_id(bk, id); |
| 2796 | if (byid) { |
| 2797 | if (byname) { |
| 2798 | /* use id only if forced by configuration */ |
| 2799 | if (byid->flags & SRV_F_FORCED_ID) { |
| 2800 | if (diff) |
| 2801 | *diff |= 2; |
| 2802 | return byid; |
| 2803 | } |
| 2804 | else { |
| 2805 | if (diff) |
| 2806 | *diff |= 1; |
| 2807 | return byname; |
| 2808 | } |
| 2809 | } |
| 2810 | |
| 2811 | /* remaining possibilities: |
| 2812 | * - name not set |
| 2813 | * - name set but not found |
| 2814 | */ |
| 2815 | if (name && diff) |
| 2816 | *diff |= 2; |
| 2817 | return byid; |
| 2818 | } |
| 2819 | |
| 2820 | /* id bot found */ |
| 2821 | if (byname) { |
| 2822 | if (diff) |
| 2823 | *diff |= 1; |
| 2824 | return byname; |
| 2825 | } |
| 2826 | } |
| 2827 | |
| 2828 | return NULL; |
| 2829 | } |
| 2830 | |
Simon Horman | 7d09b9a | 2013-02-12 10:45:51 +0900 | [diff] [blame] | 2831 | /* |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2832 | * update a server's current IP address. |
| 2833 | * ip is a pointer to the new IP address, whose address family is ip_sin_family. |
| 2834 | * ip is in network format. |
| 2835 | * updater is a string which contains an information about the requester of the update. |
| 2836 | * updater is used if not NULL. |
| 2837 | * |
| 2838 | * 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] | 2839 | * |
| 2840 | * Must be called with the server lock held. |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2841 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2842 | 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] | 2843 | { |
Christopher Faulet | d6c6b5f | 2020-09-08 10:27:24 +0200 | [diff] [blame] | 2844 | /* save the new IP family & address if necessary */ |
| 2845 | switch (ip_sin_family) { |
| 2846 | case AF_INET: |
| 2847 | if (s->addr.ss_family == ip_sin_family && |
| 2848 | !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4)) |
| 2849 | return 0; |
| 2850 | break; |
| 2851 | case AF_INET6: |
| 2852 | if (s->addr.ss_family == ip_sin_family && |
| 2853 | !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16)) |
| 2854 | return 0; |
| 2855 | break; |
| 2856 | }; |
| 2857 | |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2858 | /* generates a log line and a warning on stderr */ |
| 2859 | if (1) { |
| 2860 | /* book enough space for both IPv4 and IPv6 */ |
| 2861 | char oldip[INET6_ADDRSTRLEN]; |
| 2862 | char newip[INET6_ADDRSTRLEN]; |
| 2863 | |
| 2864 | memset(oldip, '\0', INET6_ADDRSTRLEN); |
| 2865 | memset(newip, '\0', INET6_ADDRSTRLEN); |
| 2866 | |
| 2867 | /* copy old IP address in a string */ |
| 2868 | switch (s->addr.ss_family) { |
| 2869 | case AF_INET: |
| 2870 | inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN); |
| 2871 | break; |
| 2872 | case AF_INET6: |
| 2873 | inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN); |
| 2874 | break; |
Christopher Faulet | b0b7607 | 2020-09-08 10:38:40 +0200 | [diff] [blame] | 2875 | default: |
| 2876 | strcpy(oldip, "(none)"); |
| 2877 | break; |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2878 | }; |
| 2879 | |
| 2880 | /* copy new IP address in a string */ |
| 2881 | switch (ip_sin_family) { |
| 2882 | case AF_INET: |
| 2883 | inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN); |
| 2884 | break; |
| 2885 | case AF_INET6: |
| 2886 | inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN); |
| 2887 | break; |
| 2888 | }; |
| 2889 | |
| 2890 | /* save log line into a buffer */ |
| 2891 | chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s", |
| 2892 | s->proxy->id, s->id, oldip, newip, updater); |
| 2893 | |
| 2894 | /* write the buffer on stderr */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2895 | ha_warning("%s.\n", trash.area); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2896 | |
| 2897 | /* send a log */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2898 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2899 | } |
| 2900 | |
| 2901 | /* save the new IP family */ |
| 2902 | s->addr.ss_family = ip_sin_family; |
| 2903 | /* save the new IP address */ |
| 2904 | switch (ip_sin_family) { |
| 2905 | case AF_INET: |
Willy Tarreau | eec1d38 | 2016-07-13 11:59:39 +0200 | [diff] [blame] | 2906 | memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2907 | break; |
| 2908 | case AF_INET6: |
| 2909 | memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16); |
| 2910 | break; |
| 2911 | }; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 2912 | srv_set_dyncookie(s); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 2913 | srv_set_addr_desc(s); |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 2914 | |
| 2915 | return 0; |
| 2916 | } |
| 2917 | |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 2918 | /* update agent health check address and port |
| 2919 | * addr can be ip4/ip6 or a hostname |
| 2920 | * if one error occurs, don't apply anything |
| 2921 | * must be called with the server lock held. |
| 2922 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2923 | 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] | 2924 | { |
| 2925 | struct sockaddr_storage sk; |
| 2926 | struct buffer *msg; |
| 2927 | int new_port; |
| 2928 | |
| 2929 | msg = get_trash_chunk(); |
| 2930 | chunk_reset(msg); |
| 2931 | |
| 2932 | if (!(s->agent.state & CHK_ST_ENABLED)) { |
| 2933 | chunk_strcat(msg, "agent checks are not enabled on this server"); |
| 2934 | goto out; |
| 2935 | } |
| 2936 | if (addr) { |
| 2937 | memset(&sk, 0, sizeof(struct sockaddr_storage)); |
| 2938 | if (str2ip(addr, &sk) == NULL) { |
| 2939 | chunk_appendf(msg, "invalid addr '%s'", addr); |
| 2940 | goto out; |
| 2941 | } |
| 2942 | } |
| 2943 | if (port) { |
| 2944 | if (strl2irc(port, strlen(port), &new_port) != 0) { |
| 2945 | chunk_appendf(msg, "provided port is not an integer"); |
| 2946 | goto out; |
| 2947 | } |
| 2948 | if (new_port < 0 || new_port > 65535) { |
| 2949 | chunk_appendf(msg, "provided port is invalid"); |
| 2950 | goto out; |
| 2951 | } |
| 2952 | } |
| 2953 | out: |
| 2954 | if (msg->data) |
| 2955 | return msg->area; |
| 2956 | else { |
| 2957 | if (addr) |
| 2958 | set_srv_agent_addr(s, &sk); |
| 2959 | if (port) |
| 2960 | set_srv_agent_port(s, new_port); |
| 2961 | } |
| 2962 | return NULL; |
| 2963 | } |
| 2964 | |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 2965 | /* update server health check address and port |
| 2966 | * addr must be ip4 or ip6, it won't be resolved |
| 2967 | * if one error occurs, don't apply anything |
| 2968 | * must be called with the server lock held. |
| 2969 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 2970 | 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] | 2971 | { |
| 2972 | struct sockaddr_storage sk; |
| 2973 | struct buffer *msg; |
| 2974 | int new_port; |
| 2975 | |
| 2976 | msg = get_trash_chunk(); |
| 2977 | chunk_reset(msg); |
| 2978 | |
| 2979 | if (!(s->check.state & CHK_ST_ENABLED)) { |
| 2980 | chunk_strcat(msg, "health checks are not enabled on this server"); |
| 2981 | goto out; |
| 2982 | } |
| 2983 | if (addr) { |
| 2984 | memset(&sk, 0, sizeof(struct sockaddr_storage)); |
| 2985 | if (str2ip2(addr, &sk, 0) == NULL) { |
| 2986 | chunk_appendf(msg, "invalid addr '%s'", addr); |
| 2987 | goto out; |
| 2988 | } |
| 2989 | } |
| 2990 | if (port) { |
| 2991 | if (strl2irc(port, strlen(port), &new_port) != 0) { |
| 2992 | chunk_appendf(msg, "provided port is not an integer"); |
| 2993 | goto out; |
| 2994 | } |
| 2995 | if (new_port < 0 || new_port > 65535) { |
| 2996 | chunk_appendf(msg, "provided port is invalid"); |
| 2997 | goto out; |
| 2998 | } |
| 2999 | /* prevent the update of port to 0 if MAPPORTS are in use */ |
| 3000 | if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) { |
| 3001 | chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use"); |
| 3002 | goto out; |
| 3003 | } |
| 3004 | } |
| 3005 | out: |
| 3006 | if (msg->data) |
| 3007 | return msg->area; |
| 3008 | else { |
| 3009 | if (addr) |
| 3010 | s->check.addr = sk; |
| 3011 | if (port) |
| 3012 | s->check.port = new_port; |
| 3013 | } |
| 3014 | return NULL; |
| 3015 | } |
| 3016 | |
Baptiste Assmann | 14e4014 | 2015-04-14 01:13:07 +0200 | [diff] [blame] | 3017 | /* |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3018 | * This function update a server's addr and port only for AF_INET and AF_INET6 families. |
| 3019 | * |
| 3020 | * Caller can pass its name through <updater> to get it integrated in the response message |
| 3021 | * returned by the function. |
| 3022 | * |
| 3023 | * The function first does the following, in that order: |
| 3024 | * - validates the new addr and/or port |
| 3025 | * - checks if an update is required (new IP or port is different than current ones) |
| 3026 | * - checks the update is allowed: |
| 3027 | * - don't switch from/to a family other than AF_INET4 and AF_INET6 |
| 3028 | * - allow all changes if no CHECKS are configured |
| 3029 | * - if CHECK is configured: |
| 3030 | * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports |
| 3031 | * - applies required changes to both ADDR and PORT if both 'required' and 'allowed' |
| 3032 | * conditions are met |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3033 | * |
| 3034 | * Must be called with the server lock held. |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3035 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3036 | 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] | 3037 | { |
| 3038 | struct sockaddr_storage sa; |
| 3039 | int ret, port_change_required; |
| 3040 | char current_addr[INET6_ADDRSTRLEN]; |
David Carlier | 327298c | 2016-11-20 10:42:38 +0000 | [diff] [blame] | 3041 | uint16_t current_port, new_port; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3042 | struct buffer *msg; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3043 | int changed = 0; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3044 | |
| 3045 | msg = get_trash_chunk(); |
| 3046 | chunk_reset(msg); |
| 3047 | |
| 3048 | if (addr) { |
| 3049 | memset(&sa, 0, sizeof(struct sockaddr_storage)); |
| 3050 | if (str2ip2(addr, &sa, 0) == NULL) { |
| 3051 | chunk_printf(msg, "Invalid addr '%s'", addr); |
| 3052 | goto out; |
| 3053 | } |
| 3054 | |
| 3055 | /* changes are allowed on AF_INET* families only */ |
| 3056 | if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) { |
| 3057 | chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file"); |
| 3058 | goto out; |
| 3059 | } |
| 3060 | |
| 3061 | /* collecting data currently setup */ |
| 3062 | memset(current_addr, '\0', sizeof(current_addr)); |
| 3063 | ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr)); |
| 3064 | /* changes are allowed on AF_INET* families only */ |
| 3065 | if ((ret != AF_INET) && (ret != AF_INET6)) { |
| 3066 | chunk_printf(msg, "Update for the current server address family is only supported through configuration file"); |
| 3067 | goto out; |
| 3068 | } |
| 3069 | |
| 3070 | /* applying ADDR changes if required and allowed |
| 3071 | * ipcmp returns 0 when both ADDR are the same |
| 3072 | */ |
| 3073 | if (ipcmp(&s->addr, &sa) == 0) { |
| 3074 | chunk_appendf(msg, "no need to change the addr"); |
| 3075 | goto port; |
| 3076 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3077 | ipcpy(&sa, &s->addr); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3078 | changed = 1; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3079 | |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3080 | /* update report for caller */ |
| 3081 | chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr); |
| 3082 | } |
| 3083 | |
| 3084 | port: |
| 3085 | if (port) { |
| 3086 | char sign = '\0'; |
| 3087 | char *endptr; |
| 3088 | |
| 3089 | if (addr) |
| 3090 | chunk_appendf(msg, ", "); |
| 3091 | |
| 3092 | /* collecting data currently setup */ |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 3093 | current_port = s->svc_port; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3094 | |
| 3095 | /* check if PORT change is required */ |
| 3096 | port_change_required = 0; |
| 3097 | |
| 3098 | sign = *port; |
Ryabin Sergey | 77ee752 | 2017-01-11 19:39:55 +0400 | [diff] [blame] | 3099 | errno = 0; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3100 | new_port = strtol(port, &endptr, 10); |
| 3101 | if ((errno != 0) || (port == endptr)) { |
| 3102 | chunk_appendf(msg, "problem converting port '%s' to an int", port); |
| 3103 | goto out; |
| 3104 | } |
| 3105 | |
| 3106 | /* check if caller triggers a port mapped or offset */ |
| 3107 | if (sign == '-' || (sign == '+')) { |
| 3108 | /* check if server currently uses port map */ |
| 3109 | if (!(s->flags & SRV_F_MAPPORTS)) { |
| 3110 | /* switch from fixed port to port map mandatorily triggers |
| 3111 | * a port change */ |
| 3112 | port_change_required = 1; |
| 3113 | /* check is configured |
| 3114 | * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port |
| 3115 | * prevent PORT change if check doesn't have it's dedicated port while switching |
| 3116 | * to port mapping */ |
William Dauchy | 69f118d | 2021-02-03 22:30:07 +0100 | [diff] [blame] | 3117 | if (!s->check.port) { |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3118 | 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."); |
| 3119 | goto out; |
| 3120 | } |
| 3121 | } |
| 3122 | /* we're already using port maps */ |
| 3123 | else { |
| 3124 | port_change_required = current_port != new_port; |
| 3125 | } |
| 3126 | } |
| 3127 | /* fixed port */ |
| 3128 | else { |
| 3129 | port_change_required = current_port != new_port; |
| 3130 | } |
| 3131 | |
| 3132 | /* applying PORT changes if required and update response message */ |
| 3133 | if (port_change_required) { |
| 3134 | /* apply new port */ |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 3135 | s->svc_port = new_port; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3136 | changed = 1; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3137 | |
| 3138 | /* prepare message */ |
| 3139 | chunk_appendf(msg, "port changed from '"); |
| 3140 | if (s->flags & SRV_F_MAPPORTS) |
| 3141 | chunk_appendf(msg, "+"); |
| 3142 | chunk_appendf(msg, "%d' to '", current_port); |
| 3143 | |
| 3144 | if (sign == '-') { |
| 3145 | s->flags |= SRV_F_MAPPORTS; |
| 3146 | chunk_appendf(msg, "%c", sign); |
| 3147 | /* just use for result output */ |
| 3148 | new_port = -new_port; |
| 3149 | } |
| 3150 | else if (sign == '+') { |
| 3151 | s->flags |= SRV_F_MAPPORTS; |
| 3152 | chunk_appendf(msg, "%c", sign); |
| 3153 | } |
| 3154 | else { |
| 3155 | s->flags &= ~SRV_F_MAPPORTS; |
| 3156 | } |
| 3157 | |
| 3158 | chunk_appendf(msg, "%d'", new_port); |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3159 | } |
| 3160 | else { |
| 3161 | chunk_appendf(msg, "no need to change the port"); |
| 3162 | } |
| 3163 | } |
| 3164 | |
| 3165 | out: |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 3166 | if (changed) { |
| 3167 | /* force connection cleanup on the given server */ |
| 3168 | srv_cleanup_connections(s); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3169 | srv_set_dyncookie(s); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3170 | srv_set_addr_desc(s); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 3171 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3172 | if (updater) |
| 3173 | chunk_appendf(msg, " by '%s'", updater); |
| 3174 | chunk_appendf(msg, "\n"); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3175 | return msg->area; |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3176 | } |
| 3177 | |
Christopher Faulet | 5efdef2 | 2021-03-11 18:03:21 +0100 | [diff] [blame] | 3178 | /* |
| 3179 | * update server status based on result of SRV resolution |
| 3180 | * returns: |
| 3181 | * 0 if server status is updated |
| 3182 | * 1 if server status has not changed |
| 3183 | * |
| 3184 | * Must be called with the server lock held. |
| 3185 | */ |
| 3186 | int srvrq_update_srv_status(struct server *s, int has_no_ip) |
| 3187 | { |
| 3188 | if (!s->srvrq) |
| 3189 | return 1; |
| 3190 | |
| 3191 | /* since this server has an IP, it can go back in production */ |
| 3192 | if (has_no_ip == 0) { |
| 3193 | srv_clr_admin_flag(s, SRV_ADMF_RMAINT); |
| 3194 | return 1; |
| 3195 | } |
| 3196 | |
| 3197 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3198 | return 1; |
| 3199 | |
| 3200 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record"); |
| 3201 | return 0; |
| 3202 | } |
Baptiste Assmann | d458adc | 2016-08-02 08:18:55 +0200 | [diff] [blame] | 3203 | |
| 3204 | /* |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3205 | * update server status based on result of name resolution |
| 3206 | * returns: |
| 3207 | * 0 if server status is updated |
| 3208 | * 1 if server status has not changed |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3209 | * |
| 3210 | * Must be called with the server lock held. |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3211 | */ |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3212 | int snr_update_srv_status(struct server *s, int has_no_ip) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3213 | { |
Emeric Brun | 750fe79 | 2020-12-23 16:51:12 +0100 | [diff] [blame] | 3214 | struct resolvers *resolvers = s->resolvers; |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3215 | struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3216 | int exp; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3217 | |
Jerome Magnin | 012261a | 2020-07-28 13:38:22 +0200 | [diff] [blame] | 3218 | /* If resolution is NULL we're dealing with SRV records Additional records */ |
Christopher Faulet | 5efdef2 | 2021-03-11 18:03:21 +0100 | [diff] [blame] | 3219 | if (resolution == NULL) |
| 3220 | return srvrq_update_srv_status(s, has_no_ip); |
Jerome Magnin | 012261a | 2020-07-28 13:38:22 +0200 | [diff] [blame] | 3221 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3222 | switch (resolution->status) { |
| 3223 | case RSLV_STATUS_NONE: |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3224 | /* status when HAProxy has just (re)started. |
| 3225 | * Nothing to do, since the task is already automatically started */ |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3226 | break; |
| 3227 | |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3228 | case RSLV_STATUS_VALID: |
| 3229 | /* |
| 3230 | * resume health checks |
| 3231 | * server will be turned back on if health check is safe |
| 3232 | */ |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3233 | if (has_no_ip) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3234 | if (s->next_admin & SRV_ADMF_RMAINT) |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3235 | return 1; |
| 3236 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, |
| 3237 | "No IP for server "); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3238 | return 0; |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3239 | } |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3240 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3241 | if (!(s->next_admin & SRV_ADMF_RMAINT)) |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3242 | return 1; |
| 3243 | srv_clr_admin_flag(s, SRV_ADMF_RMAINT); |
| 3244 | chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer", |
| 3245 | s->proxy->id, s->id); |
| 3246 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3247 | ha_warning("%s.\n", trash.area); |
| 3248 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3249 | return 0; |
| 3250 | |
| 3251 | case RSLV_STATUS_NX: |
| 3252 | /* stop server if resolution is NX for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3253 | exp = tick_add(resolution->last_valid, resolvers->hold.nx); |
| 3254 | if (!tick_is_expired(exp, now_ms)) |
| 3255 | break; |
| 3256 | |
| 3257 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3258 | return 1; |
| 3259 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status"); |
| 3260 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3261 | |
| 3262 | case RSLV_STATUS_TIMEOUT: |
| 3263 | /* stop server if resolution is TIMEOUT for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3264 | exp = tick_add(resolution->last_valid, resolvers->hold.timeout); |
| 3265 | if (!tick_is_expired(exp, now_ms)) |
| 3266 | break; |
| 3267 | |
| 3268 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3269 | return 1; |
| 3270 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status"); |
| 3271 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3272 | |
| 3273 | case RSLV_STATUS_REFUSED: |
| 3274 | /* stop server if resolution is REFUSED for a long enough period */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3275 | exp = tick_add(resolution->last_valid, resolvers->hold.refused); |
| 3276 | if (!tick_is_expired(exp, now_ms)) |
| 3277 | break; |
| 3278 | |
| 3279 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3280 | return 1; |
| 3281 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status"); |
| 3282 | return 0; |
Baptiste Assmann | 3b9fe9f | 2016-11-02 22:58:18 +0100 | [diff] [blame] | 3283 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3284 | default: |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3285 | /* stop server if resolution failed for a long enough period */ |
| 3286 | exp = tick_add(resolution->last_valid, resolvers->hold.other); |
| 3287 | if (!tick_is_expired(exp, now_ms)) |
| 3288 | break; |
| 3289 | |
| 3290 | if (s->next_admin & SRV_ADMF_RMAINT) |
| 3291 | return 1; |
| 3292 | srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error"); |
| 3293 | return 0; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3294 | } |
| 3295 | |
| 3296 | return 1; |
| 3297 | } |
| 3298 | |
| 3299 | /* |
| 3300 | * Server Name Resolution valid response callback |
| 3301 | * It expects: |
| 3302 | * - <nameserver>: the name server which answered the valid response |
| 3303 | * - <response>: buffer containing a valid DNS response |
| 3304 | * - <response_len>: size of <response> |
| 3305 | * It performs the following actions: |
| 3306 | * - ignore response if current ip found and server family not met |
| 3307 | * - update with first new ip found if family is met and current IP is not found |
| 3308 | * returns: |
| 3309 | * 0 on error |
| 3310 | * 1 when no error or safe ignore |
Olivier Houchard | 2838107 | 2017-11-06 17:30:28 +0100 | [diff] [blame] | 3311 | * |
| 3312 | * Must be called with server lock held |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3313 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3314 | int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3315 | { |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3316 | struct server *s = NULL; |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3317 | struct resolv_resolution *resolution = NULL; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3318 | void *serverip, *firstip; |
| 3319 | short server_sin_family, firstip_sin_family; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3320 | int ret; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3321 | struct buffer *chk = get_trash_chunk(); |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3322 | int has_no_ip = 0; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3323 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3324 | s = objt_server(requester->owner); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3325 | if (!s) |
| 3326 | return 1; |
| 3327 | |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3328 | if (s->srvrq) { |
| 3329 | struct resolv_answer_item *srv_item; |
| 3330 | |
| 3331 | /* If DNS resolution is disabled ignore it. */ |
| 3332 | if (s->flags & SRV_F_NO_RESOLUTION) |
| 3333 | return 1; |
| 3334 | |
| 3335 | /* The server is based on a SRV record, thus, find the |
| 3336 | * associated answer record. If not found, it means the SRV item |
| 3337 | * has expired and this resolution must be ignored. |
| 3338 | */ |
| 3339 | srv_item = find_srvrq_answer_record(requester); |
| 3340 | if (!srv_item) |
| 3341 | return 1; |
| 3342 | } |
| 3343 | |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3344 | resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL); |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3345 | if (!resolution) |
| 3346 | return 1; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3347 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3348 | /* initializing variables */ |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3349 | firstip = NULL; /* pointer to the first valid response found */ |
| 3350 | /* it will be used as the new IP if a change is required */ |
| 3351 | firstip_sin_family = AF_UNSPEC; |
| 3352 | serverip = NULL; /* current server IP address */ |
| 3353 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3354 | /* initializing server IP pointer */ |
| 3355 | server_sin_family = s->addr.ss_family; |
| 3356 | switch (server_sin_family) { |
| 3357 | case AF_INET: |
| 3358 | serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr; |
| 3359 | break; |
| 3360 | |
| 3361 | case AF_INET6: |
| 3362 | serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr; |
| 3363 | break; |
| 3364 | |
Willy Tarreau | 3acfcd1 | 2017-01-06 19:18:32 +0100 | [diff] [blame] | 3365 | case AF_UNSPEC: |
| 3366 | break; |
| 3367 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3368 | default: |
| 3369 | goto invalid; |
| 3370 | } |
| 3371 | |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3372 | ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts, |
| 3373 | serverip, server_sin_family, &firstip, |
| 3374 | &firstip_sin_family, s); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3375 | |
| 3376 | switch (ret) { |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3377 | case RSLV_UPD_NO: |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3378 | goto update_status; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3379 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3380 | case RSLV_UPD_SRVIP_NOT_FOUND: |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3381 | goto save_ip; |
| 3382 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3383 | case RSLV_UPD_CNAME: |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3384 | goto invalid; |
| 3385 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3386 | case RSLV_UPD_NO_IP_FOUND: |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3387 | has_no_ip = 1; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3388 | goto update_status; |
Baptiste Assmann | 0453a1d | 2015-09-09 00:51:08 +0200 | [diff] [blame] | 3389 | |
Emeric Brun | 456de77 | 2020-12-23 18:17:31 +0100 | [diff] [blame] | 3390 | case RSLV_UPD_NAME_ERROR: |
Baptiste Assmann | fad0318 | 2015-10-28 02:03:32 +0100 | [diff] [blame] | 3391 | /* update resolution status to OTHER error type */ |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3392 | resolution->status = RSLV_STATUS_OTHER; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3393 | goto update_status; |
Baptiste Assmann | fad0318 | 2015-10-28 02:03:32 +0100 | [diff] [blame] | 3394 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3395 | default: |
| 3396 | goto invalid; |
| 3397 | |
| 3398 | } |
| 3399 | |
| 3400 | save_ip: |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3401 | if (counters) { |
| 3402 | counters->update++; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3403 | /* save the first ip we found */ |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3404 | chunk_printf(chk, "%s/%s", counters->pid, counters->id); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3405 | } |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3406 | else |
| 3407 | chunk_printf(chk, "DNS cache"); |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3408 | srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3409 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3410 | update_status: |
Christopher Faulet | 49531e8 | 2021-03-10 15:07:27 +0100 | [diff] [blame] | 3411 | |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3412 | snr_update_srv_status(s, has_no_ip); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3413 | return 1; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3414 | |
| 3415 | invalid: |
Emeric Brun | 50c870e | 2021-01-04 10:40:46 +0100 | [diff] [blame] | 3416 | if (counters) { |
| 3417 | counters->invalid++; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3418 | goto update_status; |
Christopher Faulet | 3bbd65b | 2017-09-15 11:55:45 +0200 | [diff] [blame] | 3419 | } |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3420 | snr_update_srv_status(s, has_no_ip); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3421 | return 0; |
| 3422 | } |
| 3423 | |
| 3424 | /* |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3425 | * SRV record error management callback |
| 3426 | * returns: |
| 3427 | * 0 on error |
| 3428 | * 1 when no error or safe ignore |
| 3429 | * |
| 3430 | * Grabs the server's lock. |
| 3431 | */ |
| 3432 | int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code) |
| 3433 | { |
| 3434 | struct server *s; |
| 3435 | struct resolv_srvrq *srvrq; |
| 3436 | struct resolv_resolution *res; |
| 3437 | struct resolvers *resolvers; |
| 3438 | int exp; |
| 3439 | |
| 3440 | /* SRV records */ |
| 3441 | srvrq = objt_resolv_srvrq(requester->owner); |
| 3442 | if (!srvrq) |
| 3443 | return 1; |
| 3444 | |
| 3445 | resolvers = srvrq->resolvers; |
| 3446 | res = requester->resolution; |
| 3447 | |
| 3448 | switch (res->status) { |
| 3449 | |
| 3450 | case RSLV_STATUS_NX: |
| 3451 | /* stop server if resolution is NX for a long enough period */ |
| 3452 | exp = tick_add(res->last_valid, resolvers->hold.nx); |
| 3453 | if (!tick_is_expired(exp, now_ms)) |
| 3454 | return 1; |
| 3455 | break; |
| 3456 | |
| 3457 | case RSLV_STATUS_TIMEOUT: |
| 3458 | /* stop server if resolution is TIMEOUT for a long enough period */ |
| 3459 | exp = tick_add(res->last_valid, resolvers->hold.timeout); |
| 3460 | if (!tick_is_expired(exp, now_ms)) |
| 3461 | return 1; |
| 3462 | break; |
| 3463 | |
| 3464 | case RSLV_STATUS_REFUSED: |
| 3465 | /* stop server if resolution is REFUSED for a long enough period */ |
| 3466 | exp = tick_add(res->last_valid, resolvers->hold.refused); |
| 3467 | if (!tick_is_expired(exp, now_ms)) |
| 3468 | return 1; |
| 3469 | break; |
| 3470 | |
| 3471 | default: |
| 3472 | /* stop server if resolution failed for a long enough period */ |
| 3473 | exp = tick_add(res->last_valid, resolvers->hold.other); |
| 3474 | if (!tick_is_expired(exp, now_ms)) |
| 3475 | return 1; |
| 3476 | } |
| 3477 | |
| 3478 | /* Remove any associated server */ |
| 3479 | for (s = srvrq->proxy->srv; s != NULL; s = s->next) { |
| 3480 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
| 3481 | if (s->srvrq == srvrq) { |
Christopher Faulet | 0efc099 | 2021-03-11 18:09:53 +0100 | [diff] [blame] | 3482 | resolv_unlink_resolution(s->resolv_requester, 1); |
Christopher Faulet | 6b117ae | 2021-03-11 18:06:23 +0100 | [diff] [blame] | 3483 | srvrq_update_srv_status(s, 1); |
Christopher Faulet | 52d4d30 | 2021-02-23 12:24:09 +0100 | [diff] [blame] | 3484 | memset(&s->addr, 0, sizeof(s->addr)); |
Christopher Faulet | c392d46 | 2021-03-10 15:51:13 +0100 | [diff] [blame] | 3485 | ha_free(&s->hostname); |
| 3486 | ha_free(&s->hostname_dn); |
| 3487 | s->hostname_dn_len = 0; |
Christopher Faulet | 52d4d30 | 2021-02-23 12:24:09 +0100 | [diff] [blame] | 3488 | s->svc_port = 0; |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3489 | } |
| 3490 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 3491 | } |
| 3492 | |
Christopher Faulet | 51d5e3b | 2021-03-10 15:46:46 +0100 | [diff] [blame] | 3493 | resolv_purge_resolution_answer_records(res); |
| 3494 | |
Baptiste Assmann | b4badf7 | 2020-11-19 22:38:33 +0100 | [diff] [blame] | 3495 | return 1; |
| 3496 | } |
| 3497 | |
| 3498 | /* |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3499 | * Server Name Resolution error management callback |
| 3500 | * returns: |
| 3501 | * 0 on error |
| 3502 | * 1 when no error or safe ignore |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3503 | * |
| 3504 | * Grabs the server's lock. |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3505 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3506 | int snr_resolution_error_cb(struct resolv_requester *requester, int error_code) |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3507 | { |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3508 | struct server *s; |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3509 | |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3510 | s = objt_server(requester->owner); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3511 | if (!s) |
| 3512 | return 1; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3513 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Christopher Faulet | 5130c21 | 2021-03-10 20:31:40 +0100 | [diff] [blame] | 3514 | if (!snr_update_srv_status(s, 1)) |
| 3515 | memset(&s->addr, 0, sizeof(s->addr)); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3516 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3517 | return 1; |
| 3518 | } |
| 3519 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3520 | /* |
| 3521 | * 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] | 3522 | * which owns <srv> and is up. |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3523 | * It returns a pointer to the first server found or NULL if <ip> is not yet |
| 3524 | * assigned. |
Olivier Houchard | 2838107 | 2017-11-06 17:30:28 +0100 | [diff] [blame] | 3525 | * |
| 3526 | * Must be called with server lock held |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3527 | */ |
| 3528 | struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family) |
| 3529 | { |
| 3530 | struct server *tmpsrv; |
| 3531 | struct proxy *be; |
| 3532 | |
| 3533 | if (!srv) |
| 3534 | return NULL; |
| 3535 | |
| 3536 | be = srv->proxy; |
| 3537 | for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) { |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3538 | /* we found the current server is the same, ignore it */ |
| 3539 | if (srv == tmpsrv) |
| 3540 | continue; |
| 3541 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3542 | /* We want to compare the IP in the record with the IP of the servers in the |
| 3543 | * same backend, only if: |
| 3544 | * * DNS resolution is enabled on the server |
| 3545 | * * the hostname used for the resolution by our server is the same than the |
| 3546 | * one used for the server found in the backend |
| 3547 | * * the server found in the backend is not our current server |
| 3548 | */ |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3549 | HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3550 | if ((tmpsrv->hostname_dn == NULL) || |
| 3551 | (srv->hostname_dn_len != tmpsrv->hostname_dn_len) || |
Christopher Faulet | 59b2925 | 2021-03-16 11:21:04 +0100 | [diff] [blame] | 3552 | (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) || |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3553 | (srv->puid == tmpsrv->puid)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3554 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3555 | continue; |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3556 | } |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3557 | |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3558 | /* If the server has been taken down, don't consider it */ |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3559 | if (tmpsrv->next_admin & SRV_ADMF_RMAINT) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3560 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3561 | continue; |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3562 | } |
Olivier Houchard | a8c6db8 | 2017-07-06 18:46:47 +0200 | [diff] [blame] | 3563 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3564 | /* At this point, we have 2 different servers using the same DNS hostname |
| 3565 | * for their respective resolution. |
| 3566 | */ |
| 3567 | if (*ip_family == tmpsrv->addr.ss_family && |
| 3568 | ((tmpsrv->addr.ss_family == AF_INET && |
| 3569 | memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) || |
| 3570 | (tmpsrv->addr.ss_family == AF_INET6 && |
| 3571 | memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3572 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3573 | return tmpsrv; |
| 3574 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3575 | HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock); |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3576 | } |
| 3577 | |
Emeric Brun | e9fd6b5 | 2017-11-02 17:20:39 +0100 | [diff] [blame] | 3578 | |
Baptiste Assmann | fb7091e | 2017-05-03 15:43:12 +0200 | [diff] [blame] | 3579 | return NULL; |
| 3580 | } |
| 3581 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3582 | /* Sets the server's address (srv->addr) from srv->hostname using the libc's |
| 3583 | * resolver. This is suited for initial address configuration. Returns 0 on |
| 3584 | * success otherwise a non-zero error code. In case of error, *err_code, if |
| 3585 | * not NULL, is filled up. |
| 3586 | */ |
| 3587 | int srv_set_addr_via_libc(struct server *srv, int *err_code) |
| 3588 | { |
| 3589 | if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) { |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3590 | if (err_code) |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3591 | *err_code |= ERR_WARN; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3592 | return 1; |
| 3593 | } |
| 3594 | return 0; |
| 3595 | } |
| 3596 | |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3597 | /* Set the server's FDQN (->hostname) from <hostname>. |
| 3598 | * Returns -1 if failed, 0 if not. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3599 | * |
| 3600 | * Must be called with the server lock held. |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3601 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3602 | 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] | 3603 | { |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3604 | struct resolv_resolution *resolution; |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3605 | char *hostname_dn; |
| 3606 | int hostname_len, hostname_dn_len; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3607 | |
Frédéric Lécaille | 5afb3cf | 2018-08-21 15:04:23 +0200 | [diff] [blame] | 3608 | /* Note that the server lock is already held. */ |
| 3609 | if (!srv->resolvers) |
| 3610 | return -1; |
| 3611 | |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3612 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3613 | HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock); |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3614 | /* run time DNS/SRV resolution was not active for this server |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3615 | * and we can't enable it at run time for now. |
| 3616 | */ |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3617 | if (!srv->resolv_requester && !srv->srvrq) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3618 | goto err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3619 | |
| 3620 | chunk_reset(&trash); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3621 | hostname_len = strlen(hostname); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3622 | hostname_dn = trash.area; |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3623 | hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1, |
| 3624 | hostname_dn, trash.size); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3625 | if (hostname_dn_len == -1) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3626 | goto err; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3627 | |
Christopher Faulet | d83a6df | 2021-03-12 10:23:05 +0100 | [diff] [blame] | 3628 | resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3629 | if (resolution && |
| 3630 | resolution->hostname_dn && |
Christopher Faulet | 59b2925 | 2021-03-16 11:21:04 +0100 | [diff] [blame] | 3631 | resolution->hostname_dn_len == hostname_dn_len && |
| 3632 | strcasecmp(resolution->hostname_dn, hostname_dn) == 0) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3633 | goto end; |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3634 | |
Christopher Faulet | 0efc099 | 2021-03-11 18:09:53 +0100 | [diff] [blame] | 3635 | resolv_unlink_resolution(srv->resolv_requester, 0); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3636 | |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3637 | free(srv->hostname); |
| 3638 | free(srv->hostname_dn); |
Christopher Faulet | 67957bd | 2017-09-27 11:00:59 +0200 | [diff] [blame] | 3639 | srv->hostname = strdup(hostname); |
| 3640 | srv->hostname_dn = strdup(hostname_dn); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3641 | srv->hostname_dn_len = hostname_dn_len; |
| 3642 | if (!srv->hostname || !srv->hostname_dn) |
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 | |
Baptiste Assmann | 13a9232 | 2019-06-07 09:40:55 +0200 | [diff] [blame] | 3645 | if (srv->flags & SRV_F_NO_RESOLUTION) |
| 3646 | goto end; |
| 3647 | |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 3648 | if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1) |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3649 | goto err; |
| 3650 | |
| 3651 | end: |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3652 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3653 | HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock); |
Baptiste Assmann | 201c07f | 2017-05-22 15:17:15 +0200 | [diff] [blame] | 3654 | return 0; |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3655 | |
| 3656 | err: |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3657 | if (!resolv_locked) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3658 | HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock); |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 3659 | return -1; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3660 | } |
| 3661 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3662 | /* Sets the server's address (srv->addr) from srv->lastaddr which was filled |
| 3663 | * from the state file. This is suited for initial address configuration. |
| 3664 | * Returns 0 on success otherwise a non-zero error code. In case of error, |
| 3665 | * *err_code, if not NULL, is filled up. |
| 3666 | */ |
| 3667 | static int srv_apply_lastaddr(struct server *srv, int *err_code) |
| 3668 | { |
| 3669 | if (!str2ip2(srv->lastaddr, &srv->addr, 0)) { |
| 3670 | if (err_code) |
| 3671 | *err_code |= ERR_WARN; |
| 3672 | return 1; |
| 3673 | } |
| 3674 | return 0; |
| 3675 | } |
| 3676 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3677 | /* returns 0 if no error, otherwise a combination of ERR_* flags */ |
| 3678 | static int srv_iterate_initaddr(struct server *srv) |
| 3679 | { |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3680 | char *name = srv->hostname; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3681 | int return_code = 0; |
| 3682 | int err_code; |
| 3683 | unsigned int methods; |
| 3684 | |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3685 | /* If no addr and no hostname set, get the name from the DNS SRV request */ |
| 3686 | if (!name && srv->srvrq) |
| 3687 | name = srv->srvrq->name; |
| 3688 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3689 | methods = srv->init_addr_methods; |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3690 | if (!methods) { |
| 3691 | /* otherwise default to "last,libc" */ |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3692 | srv_append_initaddr(&methods, SRV_IADDR_LAST); |
| 3693 | srv_append_initaddr(&methods, SRV_IADDR_LIBC); |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3694 | if (srv->resolvers_id) { |
| 3695 | /* dns resolution is configured, add "none" to not fail on startup */ |
| 3696 | srv_append_initaddr(&methods, SRV_IADDR_NONE); |
| 3697 | } |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3698 | } |
| 3699 | |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 3700 | /* "-dr" : always append "none" so that server addresses resolution |
| 3701 | * failures are silently ignored, this is convenient to validate some |
| 3702 | * configs out of their environment. |
| 3703 | */ |
| 3704 | if (global.tune.options & GTUNE_RESOLVE_DONTFAIL) |
| 3705 | srv_append_initaddr(&methods, SRV_IADDR_NONE); |
| 3706 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3707 | while (methods) { |
| 3708 | err_code = 0; |
| 3709 | switch (srv_get_next_initaddr(&methods)) { |
| 3710 | case SRV_IADDR_LAST: |
| 3711 | if (!srv->lastaddr) |
| 3712 | continue; |
| 3713 | if (srv_apply_lastaddr(srv, &err_code) == 0) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3714 | goto out; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3715 | return_code |= err_code; |
| 3716 | break; |
| 3717 | |
| 3718 | case SRV_IADDR_LIBC: |
| 3719 | if (!srv->hostname) |
| 3720 | continue; |
| 3721 | if (srv_set_addr_via_libc(srv, &err_code) == 0) |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3722 | goto out; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3723 | return_code |= err_code; |
| 3724 | break; |
| 3725 | |
Willy Tarreau | 37ebe12 | 2016-11-04 15:17:58 +0100 | [diff] [blame] | 3726 | case SRV_IADDR_NONE: |
| 3727 | srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3728 | if (return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3729 | 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] | 3730 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3731 | } |
Willy Tarreau | 37ebe12 | 2016-11-04 15:17:58 +0100 | [diff] [blame] | 3732 | return return_code; |
| 3733 | |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3734 | case SRV_IADDR_IP: |
| 3735 | ipcpy(&srv->init_addr, &srv->addr); |
| 3736 | if (return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3737 | 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] | 3738 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3739 | } |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3740 | goto out; |
Willy Tarreau | 4310d36 | 2016-11-02 15:05:56 +0100 | [diff] [blame] | 3741 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3742 | default: /* unhandled method */ |
| 3743 | break; |
| 3744 | } |
| 3745 | } |
| 3746 | |
| 3747 | if (!return_code) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3748 | 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] | 3749 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3750 | } |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3751 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3752 | 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] | 3753 | srv->conf.file, srv->conf.line, srv->id, name); |
Willy Tarreau | 465b6e5 | 2016-11-07 19:19:22 +0100 | [diff] [blame] | 3754 | } |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3755 | |
| 3756 | return_code |= ERR_ALERT | ERR_FATAL; |
| 3757 | return return_code; |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3758 | out: |
| 3759 | srv_set_dyncookie(srv); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3760 | srv_set_addr_desc(srv); |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3761 | return return_code; |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3762 | } |
| 3763 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3764 | /* |
| 3765 | * This function parses all backends and all servers within each backend |
| 3766 | * and performs servers' addr resolution based on information provided by: |
| 3767 | * - configuration file |
| 3768 | * - server-state file (states provided by an 'old' haproxy process) |
| 3769 | * |
| 3770 | * Returns 0 if no error, otherwise, a combination of ERR_ flags. |
| 3771 | */ |
| 3772 | int srv_init_addr(void) |
| 3773 | { |
| 3774 | struct proxy *curproxy; |
| 3775 | int return_code = 0; |
| 3776 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 3777 | curproxy = proxies_list; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3778 | while (curproxy) { |
| 3779 | struct server *srv; |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3780 | |
| 3781 | /* servers are in backend only */ |
Amaury Denoyelle | e3c4192 | 2021-01-06 14:28:50 +0100 | [diff] [blame] | 3782 | if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled) |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3783 | goto srv_init_addr_next; |
| 3784 | |
Willy Tarreau | 25e5152 | 2016-11-04 15:10:17 +0100 | [diff] [blame] | 3785 | for (srv = curproxy->srv; srv; srv = srv->next) |
Christopher Faulet | ac1c60fd | 2020-10-26 10:31:17 +0100 | [diff] [blame] | 3786 | if (srv->hostname || srv->srvrq) |
Willy Tarreau | 3d609a7 | 2017-09-06 14:22:45 +0200 | [diff] [blame] | 3787 | return_code |= srv_iterate_initaddr(srv); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 3788 | |
| 3789 | srv_init_addr_next: |
| 3790 | curproxy = curproxy->next; |
| 3791 | } |
| 3792 | |
| 3793 | return return_code; |
| 3794 | } |
| 3795 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3796 | /* |
| 3797 | * Must be called with the server lock held. |
| 3798 | */ |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3799 | 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] | 3800 | { |
| 3801 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3802 | struct buffer *msg; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3803 | |
| 3804 | msg = get_trash_chunk(); |
| 3805 | chunk_reset(msg); |
| 3806 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 3807 | if (server->hostname && strcmp(fqdn, server->hostname) == 0) { |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3808 | chunk_appendf(msg, "no need to change the FDQN"); |
| 3809 | goto out; |
| 3810 | } |
| 3811 | |
| 3812 | if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) { |
| 3813 | chunk_appendf(msg, "invalid fqdn '%s'", fqdn); |
| 3814 | goto out; |
| 3815 | } |
| 3816 | |
| 3817 | chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s", |
| 3818 | server->proxy->id, server->id, server->hostname, fqdn); |
| 3819 | |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 3820 | if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) { |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3821 | chunk_reset(msg); |
| 3822 | chunk_appendf(msg, "could not update %s/%s FQDN", |
| 3823 | server->proxy->id, server->id); |
| 3824 | goto out; |
| 3825 | } |
| 3826 | |
| 3827 | /* Flag as FQDN set from stats socket. */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 3828 | server->next_admin |= SRV_ADMF_HMAINT; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3829 | |
| 3830 | out: |
| 3831 | if (updater) |
| 3832 | chunk_appendf(msg, " by '%s'", updater); |
| 3833 | chunk_appendf(msg, "\n"); |
| 3834 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3835 | return msg->area; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 3836 | } |
| 3837 | |
| 3838 | |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3839 | /* Expects to find a backend and a server in <arg> under the form <backend>/<server>, |
| 3840 | * and returns the pointer to the server. Otherwise, display adequate error messages |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 3841 | * 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] | 3842 | * used for CLI commands requiring a server name. |
| 3843 | * Important: the <arg> is modified to remove the '/'. |
| 3844 | */ |
| 3845 | struct server *cli_find_server(struct appctx *appctx, char *arg) |
| 3846 | { |
| 3847 | struct proxy *px; |
| 3848 | struct server *sv; |
| 3849 | char *line; |
| 3850 | |
| 3851 | /* split "backend/server" and make <line> point to server */ |
| 3852 | for (line = arg; *line; line++) |
| 3853 | if (*line == '/') { |
| 3854 | *line++ = '\0'; |
| 3855 | break; |
| 3856 | } |
| 3857 | |
| 3858 | if (!*line || !*arg) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3859 | cli_err(appctx, "Require 'backend/server'.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3860 | return NULL; |
| 3861 | } |
| 3862 | |
| 3863 | if (!get_backend_server(arg, line, &px, &sv)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3864 | cli_err(appctx, px ? "No such server.\n" : "No such backend.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3865 | return NULL; |
| 3866 | } |
| 3867 | |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 3868 | if (px->disabled) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3869 | cli_err(appctx, "Proxy is disabled.\n"); |
Willy Tarreau | 21b069d | 2016-11-23 17:15:08 +0100 | [diff] [blame] | 3870 | return NULL; |
| 3871 | } |
| 3872 | |
| 3873 | return sv; |
| 3874 | } |
| 3875 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3876 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 3877 | /* grabs the server lock */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 3878 | 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] | 3879 | { |
| 3880 | struct server *sv; |
| 3881 | const char *warning; |
| 3882 | |
| 3883 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 3884 | return 1; |
| 3885 | |
| 3886 | sv = cli_find_server(appctx, args[2]); |
| 3887 | if (!sv) |
| 3888 | return 1; |
| 3889 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3890 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 3891 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3892 | if (strcmp(args[3], "weight") == 0) { |
| 3893 | warning = server_parse_weight_change_request(sv, args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3894 | if (warning) |
| 3895 | cli_err(appctx, warning); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3896 | } |
| 3897 | else if (strcmp(args[3], "state") == 0) { |
| 3898 | if (strcmp(args[4], "ready") == 0) |
| 3899 | srv_adm_set_ready(sv); |
| 3900 | else if (strcmp(args[4], "drain") == 0) |
| 3901 | srv_adm_set_drain(sv); |
| 3902 | else if (strcmp(args[4], "maint") == 0) |
| 3903 | srv_adm_set_maint(sv); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3904 | else |
| 3905 | 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] | 3906 | } |
| 3907 | else if (strcmp(args[3], "health") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3908 | if (sv->track) |
| 3909 | cli_err(appctx, "cannot change health on a tracking server.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3910 | else if (strcmp(args[4], "up") == 0) { |
| 3911 | sv->check.health = sv->check.rise + sv->check.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3912 | srv_set_running(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3913 | } |
| 3914 | else if (strcmp(args[4], "stopping") == 0) { |
| 3915 | sv->check.health = sv->check.rise + sv->check.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3916 | srv_set_stopping(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3917 | } |
| 3918 | else if (strcmp(args[4], "down") == 0) { |
| 3919 | sv->check.health = 0; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3920 | srv_set_stopped(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3921 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3922 | else |
| 3923 | 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] | 3924 | } |
| 3925 | else if (strcmp(args[3], "agent") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3926 | if (!(sv->agent.state & CHK_ST_ENABLED)) |
| 3927 | cli_err(appctx, "agent checks are not enabled on this server.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3928 | else if (strcmp(args[4], "up") == 0) { |
| 3929 | sv->agent.health = sv->agent.rise + sv->agent.fall - 1; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3930 | srv_set_running(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3931 | } |
| 3932 | else if (strcmp(args[4], "down") == 0) { |
| 3933 | sv->agent.health = 0; |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 3934 | srv_set_stopped(sv, "changed from CLI", NULL); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3935 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3936 | else |
| 3937 | cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3938 | } |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3939 | else if (strcmp(args[3], "agent-addr") == 0) { |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3940 | char *addr = NULL; |
| 3941 | char *port = NULL; |
| 3942 | if (strlen(args[4]) == 0) { |
| 3943 | cli_err(appctx, "set server <b>/<s> agent-addr requires" |
| 3944 | " an address and optionally a port.\n"); |
| 3945 | goto out_unlock; |
| 3946 | } |
| 3947 | addr = args[4]; |
| 3948 | if (strcmp(args[5], "port") == 0) |
| 3949 | port = args[6]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3950 | warning = srv_update_agent_addr_port(sv, addr, port); |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3951 | if (warning) |
| 3952 | cli_msg(appctx, LOG_WARNING, warning); |
| 3953 | } |
| 3954 | else if (strcmp(args[3], "agent-port") == 0) { |
| 3955 | char *port = NULL; |
| 3956 | if (strlen(args[4]) == 0) { |
| 3957 | cli_err(appctx, "set server <b>/<s> agent-port requires" |
| 3958 | " a port.\n"); |
| 3959 | goto out_unlock; |
| 3960 | } |
| 3961 | port = args[4]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3962 | warning = srv_update_agent_addr_port(sv, NULL, port); |
William Dauchy | 7cabc06 | 2021-02-11 22:51:24 +0100 | [diff] [blame] | 3963 | if (warning) |
| 3964 | cli_msg(appctx, LOG_WARNING, warning); |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3965 | } |
| 3966 | else if (strcmp(args[3], "agent-send") == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3967 | if (!(sv->agent.state & CHK_ST_ENABLED)) |
| 3968 | cli_err(appctx, "agent checks are not enabled on this server.\n"); |
| 3969 | else { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 3970 | if (!set_srv_agent_send(sv, args[4])) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 3971 | cli_err(appctx, "cannot allocate memory for new string.\n"); |
Misiek | 2da082d | 2017-01-09 09:40:42 +0100 | [diff] [blame] | 3972 | } |
| 3973 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3974 | else if (strcmp(args[3], "check-addr") == 0) { |
| 3975 | char *addr = NULL; |
| 3976 | char *port = NULL; |
| 3977 | if (strlen(args[4]) == 0) { |
| 3978 | cli_err(appctx, "set server <b>/<s> check-addr requires" |
| 3979 | " an address and optionally a port.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 3980 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3981 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3982 | addr = args[4]; |
| 3983 | if (strcmp(args[5], "port") == 0) |
| 3984 | port = args[6]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3985 | warning = srv_update_check_addr_port(sv, addr, port); |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3986 | if (warning) |
| 3987 | cli_msg(appctx, LOG_WARNING, warning); |
| 3988 | } |
| 3989 | else if (strcmp(args[3], "check-port") == 0) { |
| 3990 | char *port = NULL; |
| 3991 | if (strlen(args[4]) == 0) { |
| 3992 | cli_err(appctx, "set server <b>/<s> check-port requires" |
| 3993 | " a port.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 3994 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 3995 | } |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3996 | port = args[4]; |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 3997 | warning = srv_update_check_addr_port(sv, NULL, port); |
William Dauchy | b456e1f | 2021-02-11 22:51:23 +0100 | [diff] [blame] | 3998 | if (warning) |
| 3999 | cli_msg(appctx, LOG_WARNING, warning); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4000 | } |
| 4001 | else if (strcmp(args[3], "addr") == 0) { |
| 4002 | char *addr = NULL; |
| 4003 | char *port = NULL; |
| 4004 | if (strlen(args[4]) == 0) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4005 | 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] | 4006 | goto out_unlock; |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4007 | } |
| 4008 | else { |
| 4009 | addr = args[4]; |
| 4010 | } |
| 4011 | if (strcmp(args[5], "port") == 0) { |
| 4012 | port = args[6]; |
| 4013 | } |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4014 | warning = srv_update_addr_port(sv, addr, port, "stats socket command"); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [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 | srv_clr_admin_flag(sv, SRV_ADMF_RMAINT); |
| 4018 | } |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4019 | else if (strcmp(args[3], "fqdn") == 0) { |
| 4020 | if (!*args[4]) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4021 | cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n"); |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4022 | goto out_unlock; |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4023 | } |
Baptiste Assmann | 13a9232 | 2019-06-07 09:40:55 +0200 | [diff] [blame] | 4024 | /* ensure runtime resolver will process this new fqdn */ |
| 4025 | if (sv->flags & SRV_F_NO_RESOLUTION) { |
| 4026 | sv->flags &= ~SRV_F_NO_RESOLUTION; |
| 4027 | } |
Christopher Faulet | 69beaa9 | 2021-02-16 12:07:47 +0100 | [diff] [blame] | 4028 | warning = srv_update_fqdn(sv, args[4], "stats socket command", 0); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4029 | if (warning) |
| 4030 | cli_msg(appctx, LOG_WARNING, warning); |
Frédéric Lécaille | b418c12 | 2017-04-26 11:24:02 +0200 | [diff] [blame] | 4031 | } |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 4032 | else if (strcmp(args[3], "ssl") == 0) { |
| 4033 | #ifdef USE_OPENSSL |
| 4034 | if (sv->ssl_ctx.ctx == NULL) { |
| 4035 | cli_err(appctx, "'set server <srv> ssl' cannot be set. " |
| 4036 | " default-server should define ssl settings\n"); |
| 4037 | goto out_unlock; |
| 4038 | } else if (strcmp(args[4], "on") == 0) { |
| 4039 | ssl_sock_set_srv(sv, 1); |
| 4040 | } else if (strcmp(args[4], "off") == 0) { |
| 4041 | ssl_sock_set_srv(sv, 0); |
| 4042 | } else { |
| 4043 | cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n"); |
| 4044 | goto out_unlock; |
| 4045 | } |
| 4046 | srv_cleanup_connections(sv); |
| 4047 | cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n"); |
| 4048 | #else |
| 4049 | cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n"); |
| 4050 | #endif |
| 4051 | } else { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4052 | cli_err(appctx, |
William Dauchy | 3f4ec7d | 2021-02-15 17:22:16 +0100 | [diff] [blame] | 4053 | "usage: set server <backend>/<server> " |
| 4054 | "addr | agent | agent-addr | agent-port | agent-send | " |
| 4055 | "check-addr | check-port | fqdn | health | ssl | " |
| 4056 | "state | weight\n"); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4057 | } |
Willy Tarreau | 6ce38f3 | 2017-11-05 10:19:23 +0100 | [diff] [blame] | 4058 | out_unlock: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 4059 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4060 | return 1; |
| 4061 | } |
| 4062 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4063 | 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] | 4064 | { |
| 4065 | struct stream_interface *si = appctx->owner; |
| 4066 | struct proxy *px; |
| 4067 | struct server *sv; |
| 4068 | char *line; |
| 4069 | |
| 4070 | |
| 4071 | /* split "backend/server" and make <line> point to server */ |
| 4072 | for (line = args[2]; *line; line++) |
| 4073 | if (*line == '/') { |
| 4074 | *line++ = '\0'; |
| 4075 | break; |
| 4076 | } |
| 4077 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4078 | if (!*line) |
| 4079 | return cli_err(appctx, "Require 'backend/server'.\n"); |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4080 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4081 | if (!get_backend_server(args[2], line, &px, &sv)) |
| 4082 | 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] | 4083 | |
| 4084 | /* return server's effective weight at the moment */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4085 | snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight, |
| 4086 | sv->iweight); |
| 4087 | if (ci_putstr(si_ic(si), trash.area) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 4088 | si_rx_room_blk(si); |
Christopher Faulet | 90b5abe | 2016-12-05 14:25:08 +0100 | [diff] [blame] | 4089 | return 0; |
| 4090 | } |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4091 | return 1; |
| 4092 | } |
| 4093 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4094 | /* Parse a "set weight" command. |
| 4095 | * |
| 4096 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4097 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4098 | 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] | 4099 | { |
| 4100 | struct server *sv; |
| 4101 | const char *warning; |
| 4102 | |
| 4103 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4104 | return 1; |
| 4105 | |
| 4106 | sv = cli_find_server(appctx, args[2]); |
| 4107 | if (!sv) |
| 4108 | return 1; |
| 4109 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4110 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
| 4111 | |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4112 | warning = server_parse_weight_change_request(sv, args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4113 | if (warning) |
| 4114 | cli_err(appctx, warning); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4115 | |
| 4116 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
| 4117 | |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4118 | return 1; |
| 4119 | } |
| 4120 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4121 | /* parse a "set maxconn server" command. It always returns 1. |
| 4122 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4123 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4124 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4125 | 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] | 4126 | { |
| 4127 | struct server *sv; |
| 4128 | const char *warning; |
| 4129 | |
| 4130 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4131 | return 1; |
| 4132 | |
| 4133 | sv = cli_find_server(appctx, args[3]); |
| 4134 | if (!sv) |
| 4135 | return 1; |
| 4136 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4137 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
| 4138 | |
Willy Tarreau | b802627 | 2016-11-23 11:26:56 +0100 | [diff] [blame] | 4139 | warning = server_parse_maxconn_change_request(sv, args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4140 | if (warning) |
| 4141 | cli_err(appctx, warning); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4142 | |
| 4143 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
| 4144 | |
Willy Tarreau | b802627 | 2016-11-23 11:26:56 +0100 | [diff] [blame] | 4145 | return 1; |
| 4146 | } |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4147 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4148 | /* parse a "disable agent" command. It always returns 1. |
| 4149 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4150 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4151 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4152 | 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] | 4153 | { |
| 4154 | struct server *sv; |
| 4155 | |
| 4156 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4157 | return 1; |
| 4158 | |
| 4159 | sv = cli_find_server(appctx, args[2]); |
| 4160 | if (!sv) |
| 4161 | return 1; |
| 4162 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4163 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4164 | sv->agent.state &= ~CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4165 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4166 | return 1; |
| 4167 | } |
| 4168 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4169 | /* parse a "disable health" command. It always returns 1. |
| 4170 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4171 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4172 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4173 | 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] | 4174 | { |
| 4175 | struct server *sv; |
| 4176 | |
| 4177 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4178 | return 1; |
| 4179 | |
| 4180 | sv = cli_find_server(appctx, args[2]); |
| 4181 | if (!sv) |
| 4182 | return 1; |
| 4183 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4184 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4185 | sv->check.state &= ~CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4186 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4187 | return 1; |
| 4188 | } |
| 4189 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4190 | /* parse a "disable server" command. It always returns 1. |
| 4191 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4192 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4193 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4194 | 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] | 4195 | { |
| 4196 | struct server *sv; |
| 4197 | |
| 4198 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4199 | return 1; |
| 4200 | |
| 4201 | sv = cli_find_server(appctx, args[2]); |
| 4202 | if (!sv) |
| 4203 | return 1; |
| 4204 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4205 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4206 | srv_adm_set_maint(sv); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4207 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4208 | return 1; |
| 4209 | } |
| 4210 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4211 | /* parse a "enable agent" command. It always returns 1. |
| 4212 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4213 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4214 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4215 | 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] | 4216 | { |
| 4217 | struct server *sv; |
| 4218 | |
| 4219 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4220 | return 1; |
| 4221 | |
| 4222 | sv = cli_find_server(appctx, args[2]); |
| 4223 | if (!sv) |
| 4224 | return 1; |
| 4225 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 4226 | if (!(sv->agent.state & CHK_ST_CONFIGURED)) |
| 4227 | 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] | 4228 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4229 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4230 | sv->agent.state |= CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4231 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4232 | return 1; |
| 4233 | } |
| 4234 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4235 | /* parse a "enable health" command. It always returns 1. |
| 4236 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4237 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4238 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4239 | 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] | 4240 | { |
| 4241 | struct server *sv; |
| 4242 | |
| 4243 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4244 | return 1; |
| 4245 | |
| 4246 | sv = cli_find_server(appctx, args[2]); |
| 4247 | if (!sv) |
| 4248 | return 1; |
| 4249 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4250 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4251 | sv->check.state |= CHK_ST_ENABLED; |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4252 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4253 | return 1; |
| 4254 | } |
| 4255 | |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4256 | /* parse a "enable server" command. It always returns 1. |
| 4257 | * |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4258 | * Grabs the server lock. |
Willy Tarreau | 46b7f53 | 2018-08-21 11:54:26 +0200 | [diff] [blame] | 4259 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 4260 | 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] | 4261 | { |
| 4262 | struct server *sv; |
| 4263 | |
| 4264 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4265 | return 1; |
| 4266 | |
| 4267 | sv = cli_find_server(appctx, args[2]); |
| 4268 | if (!sv) |
| 4269 | return 1; |
| 4270 | |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4271 | HA_SPIN_LOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4272 | srv_adm_set_ready(sv); |
Olivier Houchard | e9bad0a | 2018-01-17 17:39:34 +0100 | [diff] [blame] | 4273 | if (!(sv->flags & SRV_F_COOKIESET) |
| 4274 | && (sv->proxy->ck_opts & PR_CK_DYNAMIC) && |
| 4275 | sv->cookie) |
| 4276 | srv_check_for_dup_dyncookie(sv); |
Willy Tarreau | 3bcc269 | 2018-08-21 15:35:31 +0200 | [diff] [blame] | 4277 | HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock); |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4278 | return 1; |
| 4279 | } |
| 4280 | |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4281 | /* Allocates data structure related to load balancing for the server <sv>. It |
| 4282 | * is only required for dynamic servers. |
| 4283 | * |
| 4284 | * At the moment, the server lock is not used as this function is only called |
| 4285 | * for a dynamic server not yet registered. |
| 4286 | * |
| 4287 | * Returns 1 on success, 0 on allocation failure. |
| 4288 | */ |
| 4289 | static int srv_alloc_lb(struct server *sv, struct proxy *be) |
| 4290 | { |
| 4291 | int node; |
| 4292 | |
| 4293 | sv->lb_tree = (sv->flags & SRV_F_BACKUP) ? |
| 4294 | &be->lbprm.chash.bck : &be->lbprm.chash.act; |
| 4295 | sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE; |
| 4296 | sv->lb_nodes_now = 0; |
| 4297 | |
| 4298 | if ((be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) { |
| 4299 | sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes)); |
| 4300 | |
| 4301 | if (!sv->lb_nodes) |
| 4302 | return 0; |
| 4303 | |
| 4304 | for (node = 0; node < sv->lb_nodes_tot; node++) { |
| 4305 | sv->lb_nodes[node].server = sv; |
| 4306 | sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node); |
| 4307 | } |
| 4308 | } |
| 4309 | |
| 4310 | return 1; |
| 4311 | } |
| 4312 | |
| 4313 | /* Parse a "add server" command |
| 4314 | * Returns 0 if the server has been successfully initialized, 1 on failure. |
| 4315 | */ |
| 4316 | static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private) |
| 4317 | { |
| 4318 | struct proxy *be; |
| 4319 | struct server *srv; |
| 4320 | char *be_name, *sv_name; |
| 4321 | char *errmsg = NULL; |
| 4322 | int errcode, argc; |
| 4323 | int i; |
| 4324 | const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR; |
| 4325 | |
| 4326 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 4327 | return 1; |
| 4328 | |
| 4329 | ++args; |
| 4330 | |
| 4331 | sv_name = be_name = args[1]; |
| 4332 | /* split backend/server arg */ |
| 4333 | while (*sv_name && *(++sv_name)) { |
| 4334 | if (*sv_name == '/') { |
| 4335 | *sv_name = '\0'; |
| 4336 | ++sv_name; |
| 4337 | break; |
| 4338 | } |
| 4339 | } |
| 4340 | |
| 4341 | if (!*sv_name) |
| 4342 | return cli_err(appctx, "Require 'backend/server'."); |
| 4343 | |
| 4344 | get_backend_server(be_name, sv_name, &be, &srv); |
| 4345 | if (!be) |
| 4346 | return cli_err(appctx, "No such backend."); |
| 4347 | |
| 4348 | if (!(be->lbprm.algo & BE_LB_PROP_DYN)) { |
| 4349 | cli_err(appctx, "Backend must use a consistent hashing method for load balancing to support dynamic servers."); |
| 4350 | return 1; |
| 4351 | } |
| 4352 | |
| 4353 | if (srv) |
| 4354 | return cli_err(appctx, "Already exists a server with the same name in backend."); |
| 4355 | |
| 4356 | args[1] = sv_name; |
| 4357 | errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg); |
| 4358 | if (errcode) { |
| 4359 | if (errmsg) |
| 4360 | cli_dynerr(appctx, errmsg); |
| 4361 | goto out; |
| 4362 | } |
| 4363 | |
| 4364 | while (*args[argc]) { |
| 4365 | errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg); |
| 4366 | |
| 4367 | if (errcode) { |
| 4368 | if (errmsg) |
| 4369 | cli_dynerr(appctx, errmsg); |
| 4370 | goto out; |
| 4371 | } |
| 4372 | } |
| 4373 | |
| 4374 | _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg); |
| 4375 | if (errmsg) { |
| 4376 | cli_dynerr(appctx, errmsg); |
| 4377 | goto out; |
| 4378 | } |
| 4379 | |
| 4380 | srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr)); |
| 4381 | if (!srv->per_thr) { |
| 4382 | cli_err(appctx, "failed to allocate per-thread lists for server."); |
| 4383 | goto out; |
| 4384 | } |
| 4385 | |
| 4386 | for (i = 0; i < global.nbthread; i++) { |
| 4387 | srv->per_thr[i].idle_conns = EB_ROOT; |
| 4388 | srv->per_thr[i].safe_conns = EB_ROOT; |
| 4389 | srv->per_thr[i].avail_conns = EB_ROOT; |
| 4390 | MT_LIST_INIT(&srv->per_thr[i].streams); |
| 4391 | } |
| 4392 | |
| 4393 | if (srv->max_idle_conns != 0) { |
| 4394 | srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr)); |
| 4395 | if (!srv->curr_idle_thr) { |
| 4396 | cli_err(appctx, "failed to allocate counters for server."); |
| 4397 | goto out; |
| 4398 | } |
| 4399 | } |
| 4400 | |
| 4401 | if (!srv_alloc_lb(srv, be)) { |
| 4402 | cli_err(appctx, "Failed to initialize load-balancing data."); |
| 4403 | goto out; |
| 4404 | } |
| 4405 | |
| 4406 | if (!stats_allocate_proxy_counters_internal(&srv->extra_counters, |
| 4407 | COUNTERS_SV, |
| 4408 | STATS_PX_CAP_SRV)) { |
| 4409 | cli_err(appctx, "failed to allocate extra counters for server."); |
| 4410 | goto out; |
| 4411 | } |
| 4412 | |
| 4413 | /* attach the server to the end of proxy linked list |
| 4414 | * |
| 4415 | * The proxy servers list is currently not protected by a lock, so this |
| 4416 | * requires thread_isolate/release. |
| 4417 | */ |
| 4418 | thread_isolate(); |
| 4419 | /* TODO use a double-linked list for px->srv */ |
| 4420 | if (be->srv) { |
| 4421 | struct server *next; |
| 4422 | for (next = be->srv; next->next; next = next->next) |
| 4423 | ; |
| 4424 | |
| 4425 | next->next = srv; |
| 4426 | } |
| 4427 | else { |
| 4428 | srv->next = be->srv; |
| 4429 | be->srv = srv; |
| 4430 | } |
| 4431 | thread_release(); |
| 4432 | |
| 4433 | cli_msg(appctx, LOG_INFO, "New server registered."); |
| 4434 | |
| 4435 | return 0; |
| 4436 | |
| 4437 | out: |
| 4438 | if (srv) |
| 4439 | free_server(srv); |
| 4440 | return 1; |
| 4441 | } |
| 4442 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4443 | /* register cli keywords */ |
| 4444 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4445 | { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL }, |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4446 | { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL }, |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4447 | { { "disable", "server", NULL }, "disable server : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL }, |
Willy Tarreau | 58d9cb7 | 2016-11-24 12:56:01 +0100 | [diff] [blame] | 4448 | { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL }, |
Willy Tarreau | 2c04eda | 2016-11-24 12:51:04 +0100 | [diff] [blame] | 4449 | { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL }, |
Willy Tarreau | ffb4d58 | 2016-11-24 12:47:00 +0100 | [diff] [blame] | 4450 | { { "enable", "server", NULL }, "enable server : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL }, |
Willy Tarreau | b802627 | 2016-11-23 11:26:56 +0100 | [diff] [blame] | 4451 | { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL }, |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 4452 | { { "set", "server", NULL }, "set server : change a server's state, weight, address or ssl", cli_parse_set_server }, |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4453 | { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight }, |
| 4454 | { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight }, |
Amaury Denoyelle | f99f77a | 2021-03-08 17:13:32 +0100 | [diff] [blame] | 4455 | { { "add", "server", NULL }, "add server : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL }, |
William Lallemand | 6b16094 | 2016-11-22 12:34:35 +0100 | [diff] [blame] | 4456 | |
William Lallemand | 222baf2 | 2016-11-19 02:00:33 +0100 | [diff] [blame] | 4457 | {{},} |
| 4458 | }}; |
| 4459 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 4460 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 4461 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4462 | /* |
| 4463 | * This function applies server's status changes, it is |
| 4464 | * is designed to be called asynchronously. |
| 4465 | * |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4466 | * Must be called with the server lock held. This may also be called at init |
| 4467 | * time as the result of parsing the state file, in which case no lock will be |
| 4468 | * held, and the server's warmup task can be null. |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4469 | */ |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4470 | static void srv_update_status(struct server *s) |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4471 | { |
| 4472 | struct check *check = &s->check; |
| 4473 | int xferred; |
| 4474 | struct proxy *px = s->proxy; |
| 4475 | int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act; |
| 4476 | int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN); |
| 4477 | int log_level; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 4478 | struct buffer *tmptrash = NULL; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4479 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4480 | /* If currently main is not set we try to apply pending state changes */ |
| 4481 | if (!(s->cur_admin & SRV_ADMF_MAINT)) { |
| 4482 | int next_admin; |
| 4483 | |
| 4484 | /* Backup next admin */ |
| 4485 | next_admin = s->next_admin; |
| 4486 | |
| 4487 | /* restore current admin state */ |
| 4488 | s->next_admin = s->cur_admin; |
| 4489 | |
| 4490 | if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) { |
| 4491 | s->last_change = now.tv_sec; |
| 4492 | if (s->proxy->lbprm.set_server_status_down) |
| 4493 | s->proxy->lbprm.set_server_status_down(s); |
| 4494 | |
| 4495 | if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS) |
| 4496 | srv_shutdown_streams(s, SF_ERR_DOWN); |
| 4497 | |
| 4498 | /* we might have streams queued on this server and waiting for |
| 4499 | * a connection. Those which are redispatchable will be queued |
| 4500 | * to another server or to the proxy itself. |
| 4501 | */ |
| 4502 | xferred = pendconn_redistribute(s); |
| 4503 | |
| 4504 | tmptrash = alloc_trash_chunk(); |
| 4505 | if (tmptrash) { |
| 4506 | chunk_printf(tmptrash, |
| 4507 | "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4508 | s->proxy->id, s->id); |
| 4509 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4510 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4511 | ha_warning("%s.\n", tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4512 | |
| 4513 | /* we don't send an alert if the server was previously paused */ |
| 4514 | log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4515 | send_log(s->proxy, log_level, "%s.\n", |
| 4516 | tmptrash->area); |
| 4517 | send_email_alert(s, log_level, "%s", |
| 4518 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4519 | free_trash_chunk(tmptrash); |
| 4520 | tmptrash = NULL; |
| 4521 | } |
| 4522 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4523 | set_backend_down(s->proxy); |
| 4524 | |
| 4525 | s->counters.down_trans++; |
| 4526 | } |
| 4527 | else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) { |
| 4528 | s->last_change = now.tv_sec; |
| 4529 | if (s->proxy->lbprm.set_server_status_down) |
| 4530 | s->proxy->lbprm.set_server_status_down(s); |
| 4531 | |
| 4532 | /* we might have streams queued on this server and waiting for |
| 4533 | * a connection. Those which are redispatchable will be queued |
| 4534 | * to another server or to the proxy itself. |
| 4535 | */ |
| 4536 | xferred = pendconn_redistribute(s); |
| 4537 | |
| 4538 | tmptrash = alloc_trash_chunk(); |
| 4539 | if (tmptrash) { |
| 4540 | chunk_printf(tmptrash, |
| 4541 | "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4542 | s->proxy->id, s->id); |
| 4543 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4544 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4545 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4546 | ha_warning("%s.\n", tmptrash->area); |
| 4547 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4548 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4549 | free_trash_chunk(tmptrash); |
| 4550 | tmptrash = NULL; |
| 4551 | } |
| 4552 | |
| 4553 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4554 | set_backend_down(s->proxy); |
| 4555 | } |
| 4556 | else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING)) |
| 4557 | || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) { |
| 4558 | if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) { |
| 4559 | if (s->proxy->last_change < now.tv_sec) // ignore negative times |
| 4560 | s->proxy->down_time += now.tv_sec - s->proxy->last_change; |
| 4561 | s->proxy->last_change = now.tv_sec; |
| 4562 | } |
| 4563 | |
Amaury Denoyelle | fe2bf09 | 2020-10-29 15:59:04 +0100 | [diff] [blame] | 4564 | 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] | 4565 | s->down_time += now.tv_sec - s->last_change; |
| 4566 | |
| 4567 | s->last_change = now.tv_sec; |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4568 | if (s->next_state == SRV_ST_STARTING && s->warmup) |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4569 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)))); |
| 4570 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4571 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4572 | /* now propagate the status change to any LB algorithms */ |
| 4573 | if (px->lbprm.update_server_eweight) |
| 4574 | px->lbprm.update_server_eweight(s); |
| 4575 | else if (srv_willbe_usable(s)) { |
| 4576 | if (px->lbprm.set_server_status_up) |
| 4577 | px->lbprm.set_server_status_up(s); |
| 4578 | } |
| 4579 | else { |
| 4580 | if (px->lbprm.set_server_status_down) |
| 4581 | px->lbprm.set_server_status_down(s); |
| 4582 | } |
| 4583 | |
| 4584 | /* If the server is set with "on-marked-up shutdown-backup-sessions", |
| 4585 | * and it's not a backup server and its effective weight is > 0, |
| 4586 | * then it can accept new connections, so we shut down all streams |
| 4587 | * on all backup servers. |
| 4588 | */ |
| 4589 | if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) && |
| 4590 | !(s->flags & SRV_F_BACKUP) && s->next_eweight) |
| 4591 | srv_shutdown_backup_streams(s->proxy, SF_ERR_UP); |
| 4592 | |
| 4593 | /* check if we can handle some connections queued at the proxy. We |
| 4594 | * will take as many as we can handle. |
| 4595 | */ |
| 4596 | xferred = pendconn_grab_from_px(s); |
| 4597 | |
| 4598 | tmptrash = alloc_trash_chunk(); |
| 4599 | if (tmptrash) { |
| 4600 | chunk_printf(tmptrash, |
| 4601 | "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4602 | s->proxy->id, s->id); |
| 4603 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4604 | srv_append_status(tmptrash, s, NULL, xferred, 0); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4605 | ha_warning("%s.\n", tmptrash->area); |
| 4606 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4607 | tmptrash->area); |
| 4608 | send_email_alert(s, LOG_NOTICE, "%s", |
| 4609 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4610 | free_trash_chunk(tmptrash); |
| 4611 | tmptrash = NULL; |
| 4612 | } |
| 4613 | |
| 4614 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4615 | set_backend_down(s->proxy); |
| 4616 | } |
| 4617 | else if (s->cur_eweight != s->next_eweight) { |
| 4618 | /* now propagate the status change to any LB algorithms */ |
| 4619 | if (px->lbprm.update_server_eweight) |
| 4620 | px->lbprm.update_server_eweight(s); |
| 4621 | else if (srv_willbe_usable(s)) { |
| 4622 | if (px->lbprm.set_server_status_up) |
| 4623 | px->lbprm.set_server_status_up(s); |
| 4624 | } |
| 4625 | else { |
| 4626 | if (px->lbprm.set_server_status_down) |
| 4627 | px->lbprm.set_server_status_down(s); |
| 4628 | } |
| 4629 | |
| 4630 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4631 | set_backend_down(s->proxy); |
| 4632 | } |
| 4633 | |
| 4634 | s->next_admin = next_admin; |
| 4635 | } |
| 4636 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 4637 | /* reset operational state change */ |
| 4638 | *s->op_st_chg.reason = 0; |
| 4639 | s->op_st_chg.status = s->op_st_chg.code = -1; |
| 4640 | s->op_st_chg.duration = 0; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4641 | |
| 4642 | /* Now we try to apply pending admin changes */ |
| 4643 | |
| 4644 | /* Maintenance must also disable health checks */ |
| 4645 | if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) { |
| 4646 | if (s->check.state & CHK_ST_ENABLED) { |
| 4647 | s->check.state |= CHK_ST_PAUSED; |
| 4648 | check->health = 0; |
| 4649 | } |
| 4650 | |
| 4651 | if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */ |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4652 | tmptrash = alloc_trash_chunk(); |
| 4653 | if (tmptrash) { |
| 4654 | chunk_printf(tmptrash, |
| 4655 | "%sServer %s/%s was DOWN and now enters maintenance%s%s%s", |
| 4656 | s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id, |
| 4657 | *(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] | 4658 | |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4659 | 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] | 4660 | |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4661 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4662 | ha_warning("%s.\n", tmptrash->area); |
| 4663 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4664 | tmptrash->area); |
Olivier Houchard | 796a2b3 | 2017-10-24 17:42:47 +0200 | [diff] [blame] | 4665 | } |
| 4666 | free_trash_chunk(tmptrash); |
| 4667 | tmptrash = NULL; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4668 | } |
Emeric Brun | 8f29829 | 2017-12-06 16:47:17 +0100 | [diff] [blame] | 4669 | /* commit new admin status */ |
| 4670 | |
| 4671 | s->cur_admin = s->next_admin; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4672 | } |
| 4673 | else { /* server was still running */ |
| 4674 | check->health = 0; /* failure */ |
| 4675 | s->last_change = now.tv_sec; |
Emeric Brun | e311480 | 2017-12-21 14:42:26 +0100 | [diff] [blame] | 4676 | |
| 4677 | s->next_state = SRV_ST_STOPPED; |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4678 | if (s->proxy->lbprm.set_server_status_down) |
| 4679 | s->proxy->lbprm.set_server_status_down(s); |
| 4680 | |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4681 | if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS) |
| 4682 | srv_shutdown_streams(s, SF_ERR_DOWN); |
| 4683 | |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 4684 | /* force connection cleanup on the given server */ |
| 4685 | srv_cleanup_connections(s); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4686 | /* we might have streams queued on this server and waiting for |
| 4687 | * a connection. Those which are redispatchable will be queued |
| 4688 | * to another server or to the proxy itself. |
| 4689 | */ |
| 4690 | xferred = pendconn_redistribute(s); |
| 4691 | |
| 4692 | tmptrash = alloc_trash_chunk(); |
| 4693 | if (tmptrash) { |
| 4694 | chunk_printf(tmptrash, |
| 4695 | "%sServer %s/%s is going DOWN for maintenance%s%s%s", |
| 4696 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4697 | s->proxy->id, s->id, |
| 4698 | *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : ""); |
| 4699 | |
| 4700 | srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT)); |
| 4701 | |
| 4702 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4703 | ha_warning("%s.\n", tmptrash->area); |
| 4704 | send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", |
| 4705 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4706 | } |
| 4707 | free_trash_chunk(tmptrash); |
| 4708 | tmptrash = NULL; |
| 4709 | } |
| 4710 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4711 | set_backend_down(s->proxy); |
| 4712 | |
| 4713 | s->counters.down_trans++; |
| 4714 | } |
| 4715 | } |
| 4716 | else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) { |
| 4717 | /* OK here we're leaving maintenance, we have many things to check, |
| 4718 | * because the server might possibly be coming back up depending on |
| 4719 | * its state. In practice, leaving maintenance means that we should |
| 4720 | * immediately turn to UP (more or less the slowstart) under the |
| 4721 | * following conditions : |
| 4722 | * - server is neither checked nor tracked |
| 4723 | * - server tracks another server which is not checked |
| 4724 | * - server tracks another server which is already up |
| 4725 | * Which sums up as something simpler : |
| 4726 | * "either the tracking server is up or the server's checks are disabled |
| 4727 | * or up". Otherwise we only re-enable health checks. There's a special |
| 4728 | * case associated to the stopping state which can be inherited. Note |
| 4729 | * that the server might still be in drain mode, which is naturally dealt |
| 4730 | * with by the lower level functions. |
| 4731 | */ |
| 4732 | |
| 4733 | if (s->check.state & CHK_ST_ENABLED) { |
| 4734 | s->check.state &= ~CHK_ST_PAUSED; |
| 4735 | check->health = check->rise; /* start OK but check immediately */ |
| 4736 | } |
| 4737 | |
| 4738 | if ((!s->track || s->track->next_state != SRV_ST_STOPPED) && |
| 4739 | (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) && |
| 4740 | (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) { |
| 4741 | if (s->track && s->track->next_state == SRV_ST_STOPPING) { |
| 4742 | s->next_state = SRV_ST_STOPPING; |
| 4743 | } |
| 4744 | else { |
| 4745 | s->next_state = SRV_ST_STARTING; |
Willy Tarreau | 1e690bb | 2020-10-22 11:30:59 +0200 | [diff] [blame] | 4746 | if (s->slowstart > 0) { |
| 4747 | if (s->warmup) |
| 4748 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)))); |
| 4749 | } |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4750 | else |
| 4751 | s->next_state = SRV_ST_RUNNING; |
| 4752 | } |
| 4753 | |
| 4754 | } |
| 4755 | |
| 4756 | tmptrash = alloc_trash_chunk(); |
| 4757 | if (tmptrash) { |
| 4758 | if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) { |
| 4759 | chunk_printf(tmptrash, |
| 4760 | "%sServer %s/%s is %s/%s (leaving forced maintenance)", |
| 4761 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4762 | s->proxy->id, s->id, |
| 4763 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4764 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4765 | } |
| 4766 | if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) { |
| 4767 | chunk_printf(tmptrash, |
| 4768 | "%sServer %s/%s ('%s') is %s/%s (resolves again)", |
| 4769 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4770 | s->proxy->id, s->id, s->hostname, |
| 4771 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4772 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4773 | } |
| 4774 | if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) { |
| 4775 | chunk_printf(tmptrash, |
| 4776 | "%sServer %s/%s is %s/%s (leaving maintenance)", |
| 4777 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4778 | s->proxy->id, s->id, |
| 4779 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP", |
| 4780 | (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY"); |
| 4781 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4782 | ha_warning("%s.\n", tmptrash->area); |
| 4783 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4784 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4785 | free_trash_chunk(tmptrash); |
| 4786 | tmptrash = NULL; |
| 4787 | } |
| 4788 | |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4789 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4790 | /* now propagate the status change to any LB algorithms */ |
| 4791 | if (px->lbprm.update_server_eweight) |
| 4792 | px->lbprm.update_server_eweight(s); |
| 4793 | else if (srv_willbe_usable(s)) { |
| 4794 | if (px->lbprm.set_server_status_up) |
| 4795 | px->lbprm.set_server_status_up(s); |
| 4796 | } |
| 4797 | else { |
| 4798 | if (px->lbprm.set_server_status_down) |
| 4799 | px->lbprm.set_server_status_down(s); |
| 4800 | } |
| 4801 | |
| 4802 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4803 | set_backend_down(s->proxy); |
| 4804 | |
Willy Tarreau | 6a78e61 | 2018-08-07 10:14:53 +0200 | [diff] [blame] | 4805 | /* If the server is set with "on-marked-up shutdown-backup-sessions", |
| 4806 | * and it's not a backup server and its effective weight is > 0, |
| 4807 | * then it can accept new connections, so we shut down all streams |
| 4808 | * on all backup servers. |
| 4809 | */ |
| 4810 | if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) && |
| 4811 | !(s->flags & SRV_F_BACKUP) && s->next_eweight) |
| 4812 | srv_shutdown_backup_streams(s->proxy, SF_ERR_UP); |
| 4813 | |
| 4814 | /* check if we can handle some connections queued at the proxy. We |
| 4815 | * will take as many as we can handle. |
| 4816 | */ |
| 4817 | xferred = pendconn_grab_from_px(s); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4818 | } |
| 4819 | else if (s->next_admin & SRV_ADMF_MAINT) { |
| 4820 | /* remaining in maintenance mode, let's inform precisely about the |
| 4821 | * situation. |
| 4822 | */ |
| 4823 | if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) { |
| 4824 | tmptrash = alloc_trash_chunk(); |
| 4825 | if (tmptrash) { |
| 4826 | chunk_printf(tmptrash, |
| 4827 | "%sServer %s/%s is leaving forced maintenance but remains in maintenance", |
| 4828 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4829 | s->proxy->id, s->id); |
| 4830 | |
| 4831 | if (s->track) /* normally it's mandatory here */ |
| 4832 | chunk_appendf(tmptrash, " via %s/%s", |
| 4833 | s->track->proxy->id, s->track->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4834 | ha_warning("%s.\n", tmptrash->area); |
| 4835 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4836 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4837 | free_trash_chunk(tmptrash); |
| 4838 | tmptrash = NULL; |
| 4839 | } |
| 4840 | } |
| 4841 | if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) { |
| 4842 | tmptrash = alloc_trash_chunk(); |
| 4843 | if (tmptrash) { |
| 4844 | chunk_printf(tmptrash, |
| 4845 | "%sServer %s/%s ('%s') resolves again but remains in maintenance", |
| 4846 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4847 | s->proxy->id, s->id, s->hostname); |
| 4848 | |
| 4849 | if (s->track) /* normally it's mandatory here */ |
| 4850 | chunk_appendf(tmptrash, " via %s/%s", |
| 4851 | s->track->proxy->id, s->track->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4852 | ha_warning("%s.\n", tmptrash->area); |
| 4853 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4854 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4855 | free_trash_chunk(tmptrash); |
| 4856 | tmptrash = NULL; |
| 4857 | } |
| 4858 | } |
| 4859 | else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) { |
| 4860 | tmptrash = alloc_trash_chunk(); |
| 4861 | if (tmptrash) { |
| 4862 | chunk_printf(tmptrash, |
| 4863 | "%sServer %s/%s remains in forced maintenance", |
| 4864 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4865 | s->proxy->id, s->id); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4866 | ha_warning("%s.\n", tmptrash->area); |
| 4867 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4868 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4869 | free_trash_chunk(tmptrash); |
| 4870 | tmptrash = NULL; |
| 4871 | } |
| 4872 | } |
| 4873 | /* don't report anything when leaving drain mode and remaining in maintenance */ |
| 4874 | |
| 4875 | s->cur_admin = s->next_admin; |
| 4876 | } |
| 4877 | |
| 4878 | if (!(s->next_admin & SRV_ADMF_MAINT)) { |
| 4879 | if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) { |
| 4880 | /* drain state is applied only if not yet in maint */ |
| 4881 | |
| 4882 | s->last_change = now.tv_sec; |
| 4883 | if (px->lbprm.set_server_status_down) |
| 4884 | px->lbprm.set_server_status_down(s); |
| 4885 | |
| 4886 | /* we might have streams queued on this server and waiting for |
| 4887 | * a connection. Those which are redispatchable will be queued |
| 4888 | * to another server or to the proxy itself. |
| 4889 | */ |
| 4890 | xferred = pendconn_redistribute(s); |
| 4891 | |
| 4892 | tmptrash = alloc_trash_chunk(); |
| 4893 | if (tmptrash) { |
| 4894 | chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s", |
| 4895 | s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id, |
| 4896 | *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : ""); |
| 4897 | |
| 4898 | srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN)); |
| 4899 | |
| 4900 | if (!(global.mode & MODE_STARTING)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4901 | ha_warning("%s.\n", tmptrash->area); |
| 4902 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4903 | tmptrash->area); |
| 4904 | send_email_alert(s, LOG_NOTICE, "%s", |
| 4905 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4906 | } |
| 4907 | free_trash_chunk(tmptrash); |
| 4908 | tmptrash = NULL; |
| 4909 | } |
| 4910 | |
| 4911 | if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) |
| 4912 | set_backend_down(s->proxy); |
| 4913 | } |
| 4914 | else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) { |
| 4915 | /* OK completely leaving drain mode */ |
| 4916 | if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) { |
| 4917 | if (s->proxy->last_change < now.tv_sec) // ignore negative times |
| 4918 | s->proxy->down_time += now.tv_sec - s->proxy->last_change; |
| 4919 | s->proxy->last_change = now.tv_sec; |
| 4920 | } |
| 4921 | |
| 4922 | if (s->last_change < now.tv_sec) // ignore negative times |
| 4923 | s->down_time += now.tv_sec - s->last_change; |
| 4924 | s->last_change = now.tv_sec; |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 4925 | server_recalc_eweight(s, 0); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4926 | |
| 4927 | tmptrash = alloc_trash_chunk(); |
| 4928 | if (tmptrash) { |
| 4929 | if (!(s->next_admin & SRV_ADMF_FDRAIN)) { |
| 4930 | chunk_printf(tmptrash, |
| 4931 | "%sServer %s/%s is %s (leaving forced drain)", |
| 4932 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4933 | s->proxy->id, s->id, |
| 4934 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP"); |
| 4935 | } |
| 4936 | else { |
| 4937 | chunk_printf(tmptrash, |
| 4938 | "%sServer %s/%s is %s (leaving drain)", |
| 4939 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4940 | s->proxy->id, s->id, |
| 4941 | (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP"); |
| 4942 | if (s->track) /* normally it's mandatory here */ |
| 4943 | chunk_appendf(tmptrash, " via %s/%s", |
| 4944 | s->track->proxy->id, s->track->id); |
| 4945 | } |
| 4946 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4947 | ha_warning("%s.\n", tmptrash->area); |
| 4948 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4949 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4950 | free_trash_chunk(tmptrash); |
| 4951 | tmptrash = NULL; |
| 4952 | } |
| 4953 | |
| 4954 | /* now propagate the status change to any LB algorithms */ |
| 4955 | if (px->lbprm.update_server_eweight) |
| 4956 | px->lbprm.update_server_eweight(s); |
| 4957 | else if (srv_willbe_usable(s)) { |
| 4958 | if (px->lbprm.set_server_status_up) |
| 4959 | px->lbprm.set_server_status_up(s); |
| 4960 | } |
| 4961 | else { |
| 4962 | if (px->lbprm.set_server_status_down) |
| 4963 | px->lbprm.set_server_status_down(s); |
| 4964 | } |
| 4965 | } |
| 4966 | else if ((s->next_admin & SRV_ADMF_DRAIN)) { |
| 4967 | /* remaining in drain mode after removing one of its flags */ |
| 4968 | |
| 4969 | tmptrash = alloc_trash_chunk(); |
| 4970 | if (tmptrash) { |
| 4971 | if (!(s->next_admin & SRV_ADMF_FDRAIN)) { |
| 4972 | chunk_printf(tmptrash, |
| 4973 | "%sServer %s/%s is leaving forced drain but remains in drain mode", |
| 4974 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4975 | s->proxy->id, s->id); |
| 4976 | |
| 4977 | if (s->track) /* normally it's mandatory here */ |
| 4978 | chunk_appendf(tmptrash, " via %s/%s", |
| 4979 | s->track->proxy->id, s->track->id); |
| 4980 | } |
| 4981 | else { |
| 4982 | chunk_printf(tmptrash, |
| 4983 | "%sServer %s/%s remains in forced drain mode", |
| 4984 | s->flags & SRV_F_BACKUP ? "Backup " : "", |
| 4985 | s->proxy->id, s->id); |
| 4986 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4987 | ha_warning("%s.\n", tmptrash->area); |
| 4988 | send_log(s->proxy, LOG_NOTICE, "%s.\n", |
| 4989 | tmptrash->area); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 4990 | free_trash_chunk(tmptrash); |
| 4991 | tmptrash = NULL; |
| 4992 | } |
| 4993 | |
| 4994 | /* commit new admin status */ |
| 4995 | |
| 4996 | s->cur_admin = s->next_admin; |
| 4997 | } |
| 4998 | } |
| 4999 | |
| 5000 | /* Re-set log strings to empty */ |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5001 | *s->adm_st_chg_cause = 0; |
| 5002 | } |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 5003 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5004 | 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] | 5005 | { |
| 5006 | struct connection *conn; |
| 5007 | |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5008 | while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns, |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5009 | struct connection *, toremove_list)) != NULL) { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 5010 | conn->mux->destroy(conn->ctx); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | return task; |
| 5014 | } |
| 5015 | |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5016 | /* Move toremove_nb connections from idle_tree to toremove_list, -1 means |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5017 | * moving them all. |
| 5018 | * Returns the number of connections moved. |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5019 | * |
| 5020 | * Must be called with idle_conns_lock held. |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5021 | */ |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5022 | 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] | 5023 | { |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5024 | struct eb_node *node, *next; |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 5025 | struct conn_hash_node *hash_node; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5026 | int i = 0; |
| 5027 | |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5028 | node = eb_first(idle_tree); |
| 5029 | while (node) { |
| 5030 | next = eb_next(node); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5031 | if (toremove_nb != -1 && i >= toremove_nb) |
| 5032 | break; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5033 | |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 5034 | hash_node = ebmb_entry(node, struct conn_hash_node, node); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5035 | eb_delete(node); |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 5036 | MT_LIST_ADDQ(toremove_list, &hash_node->conn->toremove_list); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5037 | i++; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 5038 | |
| 5039 | node = next; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5040 | } |
| 5041 | return i; |
| 5042 | } |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5043 | /* cleanup connections for a given server |
| 5044 | * might be useful when going on forced maintenance or live changing ip/port |
| 5045 | */ |
William Dauchy | 707ad32 | 2020-05-04 13:52:40 +0200 | [diff] [blame] | 5046 | static void srv_cleanup_connections(struct server *srv) |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5047 | { |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5048 | int did_remove; |
| 5049 | int i; |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5050 | |
Amaury Denoyelle | 10d5c31 | 2021-01-06 14:28:51 +0100 | [diff] [blame] | 5051 | /* nothing to do if pool-max-conn is null */ |
| 5052 | if (!srv->max_idle_conns) |
| 5053 | return; |
| 5054 | |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5055 | /* check all threads starting with ours */ |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5056 | for (i = tid;;) { |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5057 | did_remove = 0; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5058 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5059 | 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] | 5060 | did_remove = 1; |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5061 | 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] | 5062 | did_remove = 1; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5063 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5064 | if (did_remove) |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5065 | task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER); |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5066 | |
| 5067 | if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid) |
| 5068 | break; |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5069 | } |
William Dauchy | 6318d33 | 2020-05-02 21:52:36 +0200 | [diff] [blame] | 5070 | } |
| 5071 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5072 | 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] | 5073 | { |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5074 | struct server *srv; |
| 5075 | struct eb32_node *eb; |
| 5076 | int i; |
| 5077 | unsigned int next_wakeup; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 5078 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5079 | next_wakeup = TICK_ETERNITY; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5080 | HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock); |
| 5081 | while (1) { |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5082 | int exceed_conns; |
| 5083 | int to_kill; |
| 5084 | int curr_idle; |
Olivier Houchard | b7b3faa | 2018-12-14 18:15:36 +0100 | [diff] [blame] | 5085 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5086 | eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK); |
| 5087 | if (!eb) { |
| 5088 | /* we might have reached the end of the tree, typically because |
| 5089 | * <now_ms> is in the first half and we're first scanning the last |
| 5090 | * half. Let's loop back to the beginning of the tree now. |
| 5091 | */ |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5092 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5093 | eb = eb32_first(&idle_conn_srv); |
| 5094 | if (likely(!eb)) |
| 5095 | break; |
| 5096 | } |
| 5097 | if (tick_is_lt(now_ms, eb->key)) { |
| 5098 | /* timer not expired yet, revisit it later */ |
| 5099 | next_wakeup = eb->key; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5100 | break; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5101 | } |
| 5102 | srv = eb32_entry(eb, struct server, idle_node); |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5103 | |
| 5104 | /* Calculate how many idle connections we want to kill : |
| 5105 | * we want to remove half the difference between the total |
| 5106 | * of established connections (used or idle) and the max |
| 5107 | * number of used connections. |
| 5108 | */ |
| 5109 | curr_idle = srv->curr_idle_conns; |
| 5110 | if (curr_idle == 0) |
| 5111 | goto remove; |
Willy Tarreau | bdb86bd | 2020-06-29 15:56:35 +0200 | [diff] [blame] | 5112 | 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] | 5113 | exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1); |
Willy Tarreau | bdb86bd | 2020-06-29 15:56:35 +0200 | [diff] [blame] | 5114 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5115 | 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] | 5116 | if (srv->est_need_conns < srv->max_used_conns) |
| 5117 | srv->est_need_conns = srv->max_used_conns; |
| 5118 | |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5119 | srv->max_used_conns = srv->curr_used_conns; |
| 5120 | |
Willy Tarreau | 18ed789 | 2020-07-02 19:05:30 +0200 | [diff] [blame] | 5121 | if (exceed_conns <= 0) |
| 5122 | goto remove; |
| 5123 | |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5124 | /* check all threads starting with ours */ |
| 5125 | for (i = tid;;) { |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5126 | int max_conn; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5127 | int j; |
| 5128 | int did_remove = 0; |
| 5129 | |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5130 | max_conn = (exceed_conns * srv->curr_idle_thr[i]) / |
| 5131 | curr_idle + 1; |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5132 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5133 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5134 | 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] | 5135 | if (j > 0) |
| 5136 | did_remove = 1; |
| 5137 | if (max_conn - j > 0 && |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5138 | 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] | 5139 | did_remove = 1; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5140 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Olivier Houchard | ff1d092 | 2020-06-29 20:15:59 +0200 | [diff] [blame] | 5141 | |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5142 | if (did_remove) |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 5143 | task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER); |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 5144 | |
| 5145 | if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid) |
| 5146 | break; |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5147 | } |
Olivier Houchard | 079cb9a | 2020-03-30 00:23:57 +0200 | [diff] [blame] | 5148 | remove: |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5149 | eb32_delete(&srv->idle_node); |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5150 | |
| 5151 | if (srv->curr_idle_conns) { |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5152 | /* There are still more idle connections, add the |
| 5153 | * server back in the tree. |
| 5154 | */ |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5155 | srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5156 | eb32_insert(&idle_conn_srv, &srv->idle_node); |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5157 | next_wakeup = tick_first(next_wakeup, srv->idle_node.key); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5158 | } |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5159 | } |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 5160 | HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock); |
| 5161 | |
Willy Tarreau | 21b9ff5 | 2020-11-05 09:12:20 +0100 | [diff] [blame] | 5162 | task->expire = next_wakeup; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 5163 | return task; |
| 5164 | } |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5165 | |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5166 | /* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */ |
| 5167 | 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] | 5168 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5169 | char **err) |
| 5170 | { |
| 5171 | if (too_many_args(1, args, err, NULL)) |
| 5172 | return -1; |
| 5173 | |
| 5174 | if (strcmp(args[1], "on") == 0) |
| 5175 | global.tune.options |= GTUNE_IDLE_POOL_SHARED; |
| 5176 | else if (strcmp(args[1], "off") == 0) |
| 5177 | global.tune.options &= ~GTUNE_IDLE_POOL_SHARED; |
| 5178 | else { |
| 5179 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 5180 | return -1; |
| 5181 | } |
| 5182 | return 0; |
| 5183 | } |
| 5184 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5185 | /* config parser for global "tune.pool-{low,high}-fd-ratio" */ |
| 5186 | 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] | 5187 | const struct proxy *defpx, const char *file, int line, |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5188 | char **err) |
| 5189 | { |
| 5190 | int arg = -1; |
| 5191 | |
| 5192 | if (too_many_args(1, args, err, NULL)) |
| 5193 | return -1; |
| 5194 | |
| 5195 | if (*(args[1]) != 0) |
| 5196 | arg = atoi(args[1]); |
| 5197 | |
| 5198 | if (arg < 0 || arg > 100) { |
| 5199 | memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]); |
| 5200 | return -1; |
| 5201 | } |
| 5202 | |
| 5203 | if (args[0][10] == 'h') |
| 5204 | global.tune.pool_high_ratio = arg; |
| 5205 | else |
| 5206 | global.tune.pool_low_ratio = arg; |
| 5207 | return 0; |
| 5208 | } |
| 5209 | |
| 5210 | /* config keyword parsers */ |
| 5211 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 5212 | { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared }, |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 5213 | { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio }, |
| 5214 | { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio }, |
| 5215 | { 0, NULL, NULL } |
| 5216 | }}; |
| 5217 | |
| 5218 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 5219 | |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 5220 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5221 | * Local variables: |
| 5222 | * c-indent-level: 8 |
| 5223 | * c-basic-offset: 8 |
| 5224 | * End: |
| 5225 | */ |