Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Health-checks functions. |
| 3 | * |
Willy Tarreau | 26c2506 | 2009-03-08 09:38:41 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 5 | * Copyright 2007-2009 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 | b881608 | 2008-01-18 12:18:15 +0100 | [diff] [blame] | 14 | #include <assert.h> |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 15 | #include <ctype.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 16 | #include <errno.h> |
| 17 | #include <fcntl.h> |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 18 | #include <stdarg.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 19 | #include <stdio.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 20 | #include <stdlib.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 21 | #include <string.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 22 | #include <time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 23 | #include <unistd.h> |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 24 | #include <sys/resource.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 25 | #include <sys/socket.h> |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 26 | #include <sys/types.h> |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 27 | #include <sys/wait.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | #include <netinet/in.h> |
Willy Tarreau | 1274bc4 | 2009-07-15 07:16:31 +0200 | [diff] [blame] | 29 | #include <netinet/tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 30 | #include <arpa/inet.h> |
| 31 | |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 32 | #include <haproxy/action.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 33 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 34 | #include <haproxy/arg.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 35 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 36 | #include <haproxy/check.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 37 | #include <haproxy/chunk.h> |
Willy Tarreau | 7c18b54 | 2020-06-11 09:23:02 +0200 | [diff] [blame] | 38 | #include <haproxy/dgram.h> |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 39 | #include <haproxy/dynbuf-t.h> |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 40 | #include <haproxy/extcheck.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 41 | #include <haproxy/fd.h> |
| 42 | #include <haproxy/global.h> |
| 43 | #include <haproxy/h1.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 44 | #include <haproxy/http.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 45 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 46 | #include <haproxy/htx.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 47 | #include <haproxy/istbuf.h> |
| 48 | #include <haproxy/list.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 49 | #include <haproxy/log.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 50 | #include <haproxy/mailers.h> |
| 51 | #include <haproxy/port_range.h> |
| 52 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 53 | #include <haproxy/protocol.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 54 | #include <haproxy/proxy.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 55 | #include <haproxy/queue.h> |
| 56 | #include <haproxy/regex.h> |
Emeric Brun | c943799 | 2021-02-12 19:42:55 +0100 | [diff] [blame] | 57 | #include <haproxy/resolvers.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 58 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 59 | #include <haproxy/server.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 60 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 61 | #include <haproxy/stats-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 62 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 63 | #include <haproxy/task.h> |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 64 | #include <haproxy/tcpcheck.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 65 | #include <haproxy/thread.h> |
| 66 | #include <haproxy/time.h> |
| 67 | #include <haproxy/tools.h> |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 68 | #include <haproxy/trace.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 69 | #include <haproxy/vars.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 70 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 71 | /* trace source and events */ |
| 72 | static void check_trace(enum trace_level level, uint64_t mask, |
| 73 | const struct trace_source *src, |
| 74 | const struct ist where, const struct ist func, |
| 75 | const void *a1, const void *a2, const void *a3, const void *a4); |
| 76 | |
| 77 | /* The event representation is split like this : |
| 78 | * check - check |
| 79 | * |
| 80 | * CHECK_EV_* macros are defined in <haproxy/check.h> |
| 81 | */ |
| 82 | static const struct trace_event check_trace_events[] = { |
| 83 | { .mask = CHK_EV_TASK_WAKE, .name = "task_wake", .desc = "Check task woken up" }, |
| 84 | { .mask = CHK_EV_HCHK_START, .name = "hchck_start", .desc = "Health-check started" }, |
| 85 | { .mask = CHK_EV_HCHK_WAKE, .name = "hchck_wake", .desc = "Health-check woken up" }, |
| 86 | { .mask = CHK_EV_HCHK_RUN, .name = "hchck_run", .desc = "Health-check running" }, |
| 87 | { .mask = CHK_EV_HCHK_END, .name = "hchck_end", .desc = "Health-check terminated" }, |
| 88 | { .mask = CHK_EV_HCHK_SUCC, .name = "hchck_succ", .desc = "Health-check success" }, |
| 89 | { .mask = CHK_EV_HCHK_ERR, .name = "hchck_err", .desc = "Health-check failure" }, |
| 90 | |
| 91 | { .mask = CHK_EV_TCPCHK_EVAL, .name = "tcp_check_eval", .desc = "tcp-check rules evaluation" }, |
| 92 | { .mask = CHK_EV_TCPCHK_ERR, .name = "tcp_check_err", .desc = "tcp-check evaluation error" }, |
| 93 | { .mask = CHK_EV_TCPCHK_CONN, .name = "tcp_check_conn", .desc = "tcp-check connection rule" }, |
| 94 | { .mask = CHK_EV_TCPCHK_SND, .name = "tcp_check_send", .desc = "tcp-check send rule" }, |
| 95 | { .mask = CHK_EV_TCPCHK_EXP, .name = "tcp_check_expect", .desc = "tcp-check expect rule" }, |
| 96 | { .mask = CHK_EV_TCPCHK_ACT, .name = "tcp_check_action", .desc = "tcp-check action rule" }, |
| 97 | |
| 98 | { .mask = CHK_EV_RX_DATA, .name = "rx_data", .desc = "receipt of data" }, |
| 99 | { .mask = CHK_EV_RX_BLK, .name = "rx_blk", .desc = "receipt blocked" }, |
| 100 | { .mask = CHK_EV_RX_ERR, .name = "rx_err", .desc = "receipt error" }, |
| 101 | |
| 102 | { .mask = CHK_EV_TX_DATA, .name = "tx_data", .desc = "transmission of data" }, |
| 103 | { .mask = CHK_EV_TX_BLK, .name = "tx_blk", .desc = "transmission blocked" }, |
| 104 | { .mask = CHK_EV_TX_ERR, .name = "tx_err", .desc = "transmission error" }, |
| 105 | |
| 106 | {} |
| 107 | }; |
| 108 | |
| 109 | static const struct name_desc check_trace_lockon_args[4] = { |
| 110 | /* arg1 */ { /* already used by the check */ }, |
| 111 | /* arg2 */ { }, |
| 112 | /* arg3 */ { }, |
| 113 | /* arg4 */ { } |
| 114 | }; |
| 115 | |
| 116 | static const struct name_desc check_trace_decoding[] = { |
| 117 | #define CHK_VERB_CLEAN 1 |
| 118 | { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" }, |
| 119 | #define CHK_VERB_MINIMAL 2 |
| 120 | { .name="minimal", .desc="report info on stream and stream-interfaces" }, |
| 121 | #define CHK_VERB_SIMPLE 3 |
| 122 | { .name="simple", .desc="add info on request and response channels" }, |
| 123 | #define CHK_VERB_ADVANCED 4 |
| 124 | { .name="advanced", .desc="add info on channel's buffer for data and developer levels only" }, |
| 125 | #define CHK_VERB_COMPLETE 5 |
| 126 | { .name="complete", .desc="add info on channel's buffer" }, |
| 127 | { /* end */ } |
| 128 | }; |
| 129 | |
| 130 | struct trace_source trace_check = { |
| 131 | .name = IST("check"), |
| 132 | .desc = "Health-check", |
| 133 | .arg_def = TRC_ARG1_CHK, // TRACE()'s first argument is always a stream |
| 134 | .default_cb = check_trace, |
| 135 | .known_events = check_trace_events, |
| 136 | .lockon_args = check_trace_lockon_args, |
| 137 | .decoding = check_trace_decoding, |
| 138 | .report_events = ~0, // report everything by default |
| 139 | }; |
| 140 | |
| 141 | #define TRACE_SOURCE &trace_check |
| 142 | INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE); |
| 143 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 144 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 145 | static int wake_srv_chk(struct conn_stream *cs); |
| 146 | struct data_cb check_conn_cb = { |
| 147 | .wake = wake_srv_chk, |
| 148 | .name = "CHCK", |
| 149 | }; |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 150 | |
Christopher Faulet | 5d503fc | 2020-03-30 20:34:34 +0200 | [diff] [blame] | 151 | |
Gaetan Rivet | 05d692d | 2020-02-14 17:42:54 +0100 | [diff] [blame] | 152 | /* Dummy frontend used to create all checks sessions. */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 153 | struct proxy checks_fe; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 154 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 155 | |
| 156 | static inline void check_trace_buf(const struct buffer *buf, size_t ofs, size_t len) |
| 157 | { |
| 158 | size_t block1, block2; |
| 159 | int line, ptr, newptr; |
| 160 | |
| 161 | block1 = b_contig_data(buf, ofs); |
| 162 | block2 = 0; |
| 163 | if (block1 > len) |
| 164 | block1 = len; |
| 165 | block2 = len - block1; |
| 166 | |
| 167 | ofs = b_peek_ofs(buf, ofs); |
| 168 | |
| 169 | line = 0; |
| 170 | ptr = ofs; |
| 171 | while (ptr < ofs + block1) { |
| 172 | newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), ofs + block1, &line, ptr); |
| 173 | if (newptr == ptr) |
| 174 | break; |
| 175 | ptr = newptr; |
| 176 | } |
| 177 | |
| 178 | line = ptr = 0; |
| 179 | while (ptr < block2) { |
| 180 | newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), block2, &line, ptr); |
| 181 | if (newptr == ptr) |
| 182 | break; |
| 183 | ptr = newptr; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | /* trace source and events */ |
| 188 | static void check_trace(enum trace_level level, uint64_t mask, |
| 189 | const struct trace_source *src, |
| 190 | const struct ist where, const struct ist func, |
| 191 | const void *a1, const void *a2, const void *a3, const void *a4) |
| 192 | { |
| 193 | const struct check *check = a1; |
| 194 | const struct server *srv = (check ? check->server : NULL); |
| 195 | const size_t *val = a4; |
| 196 | const char *res; |
| 197 | |
| 198 | if (!check || src->verbosity < CHK_VERB_CLEAN) |
| 199 | return; |
| 200 | |
| 201 | chunk_appendf(&trace_buf, " : [%c] SRV=%s", |
| 202 | ((check->type == PR_O2_EXT_CHK) ? 'E' : (check->state & CHK_ST_AGENT ? 'A' : 'H')), |
| 203 | srv->id); |
| 204 | |
| 205 | chunk_appendf(&trace_buf, " status=%d/%d %s", |
| 206 | (check->health >= check->rise) ? check->health - check->rise + 1 : check->health, |
| 207 | (check->health >= check->rise) ? check->fall : check->rise, |
| 208 | (check->health >= check->rise) ? (srv->uweight ? "UP" : "DRAIN") : "DOWN"); |
| 209 | |
| 210 | switch (check->result) { |
| 211 | case CHK_RES_NEUTRAL: res = "-"; break; |
| 212 | case CHK_RES_FAILED: res = "FAIL"; break; |
| 213 | case CHK_RES_PASSED: res = "PASS"; break; |
| 214 | case CHK_RES_CONDPASS: res = "COND"; break; |
| 215 | default: res = "UNK"; break; |
| 216 | } |
| 217 | |
| 218 | if (src->verbosity == CHK_VERB_CLEAN) |
| 219 | return; |
| 220 | |
| 221 | chunk_appendf(&trace_buf, " - last=%s(%d)/%s(%d)", |
| 222 | get_check_status_info(check->status), check->status, |
| 223 | res, check->result); |
| 224 | |
| 225 | /* Display the value to the 4th argument (level > STATE) */ |
| 226 | if (src->level > TRACE_LEVEL_STATE && val) |
| 227 | chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val); |
| 228 | |
| 229 | chunk_appendf(&trace_buf, " check=%p(0x%08x)", check, check->state); |
| 230 | |
| 231 | if (src->verbosity == CHK_VERB_MINIMAL) |
| 232 | return; |
| 233 | |
| 234 | |
| 235 | if (check->cs) { |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 236 | struct connection *conn = cs_conn(check->cs); |
| 237 | |
| 238 | chunk_appendf(&trace_buf, " - conn=%p(0x%08x)", conn, conn ? conn->flags : 0); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 239 | chunk_appendf(&trace_buf, " cs=%p(0x%08x)", check->cs, check->cs->flags); |
| 240 | } |
| 241 | |
| 242 | if (mask & CHK_EV_TCPCHK) { |
| 243 | const char *type; |
| 244 | |
| 245 | switch (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) { |
| 246 | case TCPCHK_RULES_PGSQL_CHK: type = "PGSQL"; break; |
| 247 | case TCPCHK_RULES_REDIS_CHK: type = "REDIS"; break; |
| 248 | case TCPCHK_RULES_SMTP_CHK: type = "SMTP"; break; |
| 249 | case TCPCHK_RULES_HTTP_CHK: type = "HTTP"; break; |
| 250 | case TCPCHK_RULES_MYSQL_CHK: type = "MYSQL"; break; |
| 251 | case TCPCHK_RULES_LDAP_CHK: type = "LDAP"; break; |
| 252 | case TCPCHK_RULES_SSL3_CHK: type = "SSL3"; break; |
| 253 | case TCPCHK_RULES_AGENT_CHK: type = "AGENT"; break; |
| 254 | case TCPCHK_RULES_SPOP_CHK: type = "SPOP"; break; |
| 255 | case TCPCHK_RULES_TCP_CHK: type = "TCP"; break; |
| 256 | default: type = "???"; break; |
| 257 | } |
| 258 | if (check->current_step) |
| 259 | chunk_appendf(&trace_buf, " - tcp-check=(%s,%d)", type, tcpcheck_get_step_id(check, NULL)); |
| 260 | else |
| 261 | chunk_appendf(&trace_buf, " - tcp-check=(%s,-)", type); |
| 262 | } |
| 263 | |
| 264 | /* Display bi and bo buffer info (level > USER & verbosity > SIMPLE) */ |
| 265 | if (src->level > TRACE_LEVEL_USER) { |
| 266 | const struct buffer *buf = NULL; |
| 267 | |
| 268 | chunk_appendf(&trace_buf, " bi=%u@%p+%u/%u", |
| 269 | (unsigned int)b_data(&check->bi), b_orig(&check->bi), |
| 270 | (unsigned int)b_head_ofs(&check->bi), (unsigned int)b_size(&check->bi)); |
| 271 | chunk_appendf(&trace_buf, " bo=%u@%p+%u/%u", |
| 272 | (unsigned int)b_data(&check->bo), b_orig(&check->bo), |
| 273 | (unsigned int)b_head_ofs(&check->bo), (unsigned int)b_size(&check->bo)); |
| 274 | |
| 275 | if (src->verbosity >= CHK_VERB_ADVANCED && (mask & (CHK_EV_RX))) |
| 276 | buf = (b_is_null(&check->bi) ? NULL : &check->bi); |
| 277 | else if (src->verbosity >= CHK_VERB_ADVANCED && (mask & (CHK_EV_TX))) |
| 278 | buf = (b_is_null(&check->bo) ? NULL : &check->bo); |
| 279 | |
| 280 | if (buf) { |
| 281 | if ((check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) { |
| 282 | int full = (src->verbosity == CHK_VERB_COMPLETE); |
| 283 | |
| 284 | chunk_memcat(&trace_buf, "\n\t", 2); |
| 285 | htx_dump(&trace_buf, htxbuf(buf), full); |
| 286 | } |
| 287 | else { |
| 288 | int max = ((src->verbosity == CHK_VERB_COMPLETE) ? 1024 : 256); |
| 289 | |
| 290 | chunk_memcat(&trace_buf, "\n", 1); |
| 291 | if (b_data(buf) > max) { |
| 292 | check_trace_buf(buf, 0, max); |
| 293 | chunk_memcat(&trace_buf, " ...\n", 6); |
| 294 | } |
| 295 | else |
| 296 | check_trace_buf(buf, 0, b_data(buf)); |
| 297 | } |
| 298 | |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | } |
| 303 | |
| 304 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 305 | /**************************************************************************/ |
| 306 | /************************ Handle check results ****************************/ |
| 307 | /**************************************************************************/ |
| 308 | struct check_status { |
| 309 | short result; /* one of SRV_CHK_* */ |
| 310 | char *info; /* human readable short info */ |
| 311 | char *desc; /* long description */ |
| 312 | }; |
| 313 | |
| 314 | struct analyze_status { |
| 315 | char *desc; /* description */ |
| 316 | unsigned char lr[HANA_OBS_SIZE]; /* result for l4/l7: 0 = ignore, 1 - error, 2 - OK */ |
| 317 | }; |
| 318 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 319 | static const struct check_status check_statuses[HCHK_STATUS_SIZE] = { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 320 | [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" }, |
| 321 | [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" }, |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 322 | [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 323 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 324 | /* Below we have finished checks */ |
| 325 | [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" }, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 326 | [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" }, |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 327 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 328 | [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 329 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 330 | [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" }, |
| 331 | [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" }, |
| 332 | [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 333 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 334 | [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" }, |
| 335 | [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" }, |
| 336 | [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 337 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 338 | [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" }, |
| 339 | [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 340 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 341 | [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 342 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 343 | [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" }, |
| 344 | [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" }, |
| 345 | [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" }, |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 346 | |
| 347 | [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" }, |
| 348 | [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" }, |
Cyril Bonté | 77010d8 | 2014-08-07 01:55:37 +0200 | [diff] [blame] | 349 | [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 350 | }; |
| 351 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 352 | static const struct analyze_status analyze_statuses[HANA_STATUS_SIZE] = { /* 0: ignore, 1: error, 2: OK */ |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 353 | [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }}, |
| 354 | |
| 355 | [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }}, |
| 356 | [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }}, |
| 357 | |
| 358 | [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }}, |
| 359 | [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }}, |
| 360 | [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }}, |
| 361 | [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }}, |
| 362 | |
| 363 | [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }}, |
| 364 | [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }}, |
| 365 | [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }}, |
| 366 | }; |
| 367 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 368 | /* checks if <err> is a real error for errno or one that can be ignored, and |
| 369 | * return 0 for these ones or <err> for real ones. |
| 370 | */ |
| 371 | static inline int unclean_errno(int err) |
| 372 | { |
| 373 | if (err == EAGAIN || err == EINPROGRESS || |
| 374 | err == EISCONN || err == EALREADY) |
| 375 | return 0; |
| 376 | return err; |
| 377 | } |
| 378 | |
Christopher Faulet | 7aa3271 | 2021-02-01 13:11:50 +0100 | [diff] [blame] | 379 | /* Converts check_status code to result code */ |
| 380 | short get_check_status_result(short check_status) |
| 381 | { |
| 382 | if (check_status < HCHK_STATUS_SIZE) |
| 383 | return check_statuses[check_status].result; |
| 384 | else |
| 385 | return check_statuses[HCHK_STATUS_UNKNOWN].result; |
| 386 | } |
| 387 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 388 | /* Converts check_status code to description */ |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 389 | const char *get_check_status_description(short check_status) { |
| 390 | |
| 391 | const char *desc; |
| 392 | |
| 393 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 394 | desc = check_statuses[check_status].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 395 | else |
| 396 | desc = NULL; |
| 397 | |
| 398 | if (desc && *desc) |
| 399 | return desc; |
| 400 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 401 | return check_statuses[HCHK_STATUS_UNKNOWN].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 402 | } |
| 403 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 404 | /* Converts check_status code to short info */ |
William Dauchy | b26122b | 2021-02-14 22:26:23 +0100 | [diff] [blame] | 405 | const char *get_check_status_info(short check_status) |
| 406 | { |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 407 | const char *info; |
| 408 | |
| 409 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 410 | info = check_statuses[check_status].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 411 | else |
| 412 | info = NULL; |
| 413 | |
| 414 | if (info && *info) |
| 415 | return info; |
| 416 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 417 | return check_statuses[HCHK_STATUS_UNKNOWN].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 418 | } |
| 419 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 420 | /* Convert analyze_status to description */ |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 421 | const char *get_analyze_status(short analyze_status) { |
| 422 | |
| 423 | const char *desc; |
| 424 | |
| 425 | if (analyze_status < HANA_STATUS_SIZE) |
| 426 | desc = analyze_statuses[analyze_status].desc; |
| 427 | else |
| 428 | desc = NULL; |
| 429 | |
| 430 | if (desc && *desc) |
| 431 | return desc; |
| 432 | else |
| 433 | return analyze_statuses[HANA_STATUS_UNKNOWN].desc; |
| 434 | } |
| 435 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 436 | /* Sets check->status, update check->duration and fill check->result with an |
| 437 | * adequate CHK_RES_* value. The new check->health is computed based on the |
| 438 | * result. |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 439 | * |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 440 | * Shows information in logs about failed health check if server is UP or |
| 441 | * succeeded health checks if server is DOWN. |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 442 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 443 | void set_server_check_status(struct check *check, short status, const char *desc) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 444 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 445 | struct server *s = check->server; |
Willy Tarreau | bef1b32 | 2014-05-13 21:01:39 +0200 | [diff] [blame] | 446 | short prev_status = check->status; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 447 | int report = 0; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 448 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 449 | TRACE_POINT(CHK_EV_HCHK_RUN, check); |
| 450 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 451 | if (status == HCHK_STATUS_START) { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 452 | check->result = CHK_RES_UNKNOWN; /* no result yet */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 453 | check->desc[0] = '\0'; |
| 454 | check->start = now; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 455 | return; |
| 456 | } |
| 457 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 458 | if (!check->status) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 459 | return; |
| 460 | |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 461 | if (desc && *desc) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 462 | strncpy(check->desc, desc, HCHK_DESC_LEN-1); |
| 463 | check->desc[HCHK_DESC_LEN-1] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 464 | } else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 465 | check->desc[0] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 466 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 467 | check->status = status; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 468 | if (check_statuses[status].result) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 469 | check->result = check_statuses[status].result; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 470 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 471 | if (status == HCHK_STATUS_HANA) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 472 | check->duration = -1; |
| 473 | else if (!tv_iszero(&check->start)) { |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 474 | /* set_server_check_status() may be called more than once */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 475 | check->duration = tv_ms_elapsed(&check->start, &now); |
| 476 | tv_zero(&check->start); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 477 | } |
| 478 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 479 | /* no change is expected if no state change occurred */ |
| 480 | if (check->result == CHK_RES_NEUTRAL) |
| 481 | return; |
| 482 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 483 | /* If the check was really just sending a mail, it won't have an |
| 484 | * associated server, so we're done now. |
| 485 | */ |
| 486 | if (!s) |
| 487 | return; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 488 | report = 0; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 489 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 490 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 491 | switch (check->result) { |
| 492 | case CHK_RES_FAILED: |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 493 | /* Failure to connect to the agent as a secondary check should not |
| 494 | * cause the server to be marked down. |
| 495 | */ |
| 496 | if ((!(check->state & CHK_ST_AGENT) || |
Simon Horman | eaabd52 | 2015-02-26 11:26:17 +0900 | [diff] [blame] | 497 | (check->status >= HCHK_STATUS_L57DATA)) && |
Christopher Faulet | b119a79 | 2018-05-02 12:12:45 +0200 | [diff] [blame] | 498 | (check->health > 0)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 499 | _HA_ATOMIC_INC(&s->counters.failed_checks); |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 500 | report = 1; |
| 501 | check->health--; |
| 502 | if (check->health < check->rise) |
| 503 | check->health = 0; |
| 504 | } |
| 505 | break; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 506 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 507 | case CHK_RES_PASSED: |
Christopher Faulet | 1e527cb | 2020-11-20 18:13:02 +0100 | [diff] [blame] | 508 | case CHK_RES_CONDPASS: |
| 509 | if (check->health < check->rise + check->fall - 1) { |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 510 | report = 1; |
| 511 | check->health++; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 512 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 513 | if (check->health >= check->rise) |
| 514 | check->health = check->rise + check->fall - 1; /* OK now */ |
| 515 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 516 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 517 | /* clear consecutive_errors if observing is enabled */ |
| 518 | if (s->onerror) |
| 519 | s->consecutive_errors = 0; |
| 520 | break; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 521 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 522 | default: |
| 523 | break; |
| 524 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 525 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 526 | if (s->proxy->options2 & PR_O2_LOGHCHKS && |
| 527 | (status != prev_status || report)) { |
| 528 | chunk_printf(&trash, |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 529 | "%s check for %sserver %s/%s %s%s", |
| 530 | (check->state & CHK_ST_AGENT) ? "Agent" : "Health", |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 531 | s->flags & SRV_F_BACKUP ? "backup " : "", |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 532 | s->proxy->id, s->id, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 533 | (check->result == CHK_RES_CONDPASS) ? "conditionally ":"", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 534 | (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 535 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 536 | srv_append_status(&trash, s, check, -1, 0); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 537 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 538 | chunk_appendf(&trash, ", status: %d/%d %s", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 539 | (check->health >= check->rise) ? check->health - check->rise + 1 : check->health, |
| 540 | (check->health >= check->rise) ? check->fall : check->rise, |
| 541 | (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 542 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 543 | ha_warning("%s.\n", trash.area); |
| 544 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
| 545 | send_email_alert(s, LOG_INFO, "%s", trash.area); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 546 | } |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 547 | } |
| 548 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 549 | /* Marks the check <check>'s server down if the current check is already failed |
| 550 | * and the server is not down yet nor in maintenance. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 551 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 552 | void check_notify_failure(struct check *check) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 553 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 554 | struct server *s = check->server; |
Simon Horman | e0d1bfb | 2011-06-21 14:34:58 +0900 | [diff] [blame] | 555 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 556 | /* The agent secondary check should only cause a server to be marked |
| 557 | * as down if check->status is HCHK_STATUS_L7STS, which indicates |
| 558 | * that the agent returned "fail", "stopped" or "down". |
| 559 | * The implication here is that failure to connect to the agent |
| 560 | * as a secondary check should not cause the server to be marked |
| 561 | * down. */ |
| 562 | if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS) |
| 563 | return; |
| 564 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 565 | if (check->health > 0) |
| 566 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 567 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 568 | TRACE_STATE("health-check failed, set server DOWN", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 569 | /* We only report a reason for the check if we did not do so previously */ |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 570 | srv_set_stopped(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 571 | } |
| 572 | |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 573 | /* Marks the check <check> as valid and tries to set its server up, provided |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 574 | * it isn't in maintenance, it is not tracking a down server and other checks |
| 575 | * comply. The rule is simple : by default, a server is up, unless any of the |
| 576 | * following conditions is true : |
| 577 | * - health check failed (check->health < rise) |
| 578 | * - agent check failed (agent->health < rise) |
| 579 | * - the server tracks a down server (track && track->state == STOPPED) |
| 580 | * Note that if the server has a slowstart, it will switch to STARTING instead |
| 581 | * of RUNNING. Also, only the health checks support the nolb mode, so the |
| 582 | * agent's success may not take the server out of this mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 583 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 584 | void check_notify_success(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 585 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 586 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 587 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 588 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 589 | return; |
Cyril Bonté | cd19e51 | 2010-01-31 22:34:03 +0100 | [diff] [blame] | 590 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 591 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 592 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 593 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 594 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 595 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 596 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 597 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 598 | return; |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 599 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 600 | if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING) |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 601 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 602 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 603 | TRACE_STATE("health-check succeeded, set server RUNNING", CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check); |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 604 | srv_set_running(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 605 | } |
| 606 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 607 | /* Marks the check <check> as valid and tries to set its server into stopping mode |
| 608 | * if it was running or starting, and provided it isn't in maintenance and other |
| 609 | * checks comply. The conditions for the server to be marked in stopping mode are |
| 610 | * the same as for it to be turned up. Also, only the health checks support the |
| 611 | * nolb mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 612 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 613 | void check_notify_stopping(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 614 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 615 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 616 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 617 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 618 | return; |
| 619 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 620 | if (check->state & CHK_ST_AGENT) |
| 621 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 622 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 623 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 624 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 625 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 626 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 627 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 628 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 629 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 630 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 631 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 632 | TRACE_STATE("health-check condionnaly succeeded, set server STOPPING", CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check); |
Willy Tarreau | b26881a | 2017-12-23 11:16:49 +0100 | [diff] [blame] | 633 | srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 634 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 635 | |
Willy Tarreau | 9fe7aae | 2013-12-31 23:47:37 +0100 | [diff] [blame] | 636 | /* note: use health_adjust() only, which first checks that the observe mode is |
Willy Tarreau | 4e9df27 | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 637 | * enabled. This will take the server lock if needed. |
Willy Tarreau | 9fe7aae | 2013-12-31 23:47:37 +0100 | [diff] [blame] | 638 | */ |
| 639 | void __health_adjust(struct server *s, short status) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 640 | { |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 641 | int failed; |
| 642 | int expire; |
| 643 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 644 | if (s->observe >= HANA_OBS_SIZE) |
| 645 | return; |
| 646 | |
Willy Tarreau | bb95666 | 2013-01-24 00:37:39 +0100 | [diff] [blame] | 647 | if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc) |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 648 | return; |
| 649 | |
| 650 | switch (analyze_statuses[status].lr[s->observe - 1]) { |
| 651 | case 1: |
| 652 | failed = 1; |
| 653 | break; |
| 654 | |
| 655 | case 2: |
| 656 | failed = 0; |
| 657 | break; |
| 658 | |
| 659 | default: |
| 660 | return; |
| 661 | } |
| 662 | |
| 663 | if (!failed) { |
| 664 | /* good: clear consecutive_errors */ |
| 665 | s->consecutive_errors = 0; |
| 666 | return; |
| 667 | } |
| 668 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 669 | _HA_ATOMIC_INC(&s->consecutive_errors); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 670 | |
| 671 | if (s->consecutive_errors < s->consecutive_errors_limit) |
| 672 | return; |
| 673 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 674 | chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s", |
| 675 | s->consecutive_errors, get_analyze_status(status)); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 676 | |
Willy Tarreau | 4e9df27 | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 677 | if (s->check.fastinter) |
| 678 | expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter)); |
| 679 | else |
| 680 | expire = TICK_ETERNITY; |
| 681 | |
| 682 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
| 683 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 684 | switch (s->onerror) { |
| 685 | case HANA_ONERR_FASTINTER: |
| 686 | /* force fastinter - nothing to do here as all modes force it */ |
| 687 | break; |
| 688 | |
| 689 | case HANA_ONERR_SUDDTH: |
| 690 | /* simulate a pre-fatal failed health check */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 691 | if (s->check.health > s->check.rise) |
| 692 | s->check.health = s->check.rise + 1; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 693 | |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 694 | /* fall through */ |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 695 | |
| 696 | case HANA_ONERR_FAILCHK: |
| 697 | /* simulate a failed health check */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 698 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 699 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 700 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 701 | break; |
| 702 | |
| 703 | case HANA_ONERR_MARKDWN: |
| 704 | /* mark server down */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 705 | s->check.health = s->check.rise; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 706 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 707 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 708 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 709 | break; |
| 710 | |
| 711 | default: |
| 712 | /* write a warning? */ |
| 713 | break; |
| 714 | } |
| 715 | |
Willy Tarreau | 4e9df27 | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 716 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 717 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 718 | s->consecutive_errors = 0; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 719 | _HA_ATOMIC_INC(&s->counters.failed_hana); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 720 | |
Christopher Faulet | ea86083 | 2021-05-07 11:45:26 +0200 | [diff] [blame] | 721 | if (tick_isset(expire) && tick_is_lt(expire, s->check.task->expire)) { |
Willy Tarreau | 4e9df27 | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 722 | /* requeue check task with new expire */ |
| 723 | task_schedule(s->check.task, expire); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 724 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 725 | } |
| 726 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 727 | /* Checks the connection. If an error has already been reported or the socket is |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 728 | * closed, keep errno intact as it is supposed to contain the valid error code. |
| 729 | * If no error is reported, check the socket's error queue using getsockopt(). |
| 730 | * Warning, this must be done only once when returning from poll, and never |
| 731 | * after an I/O error was attempted, otherwise the error queue might contain |
| 732 | * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the |
| 733 | * socket. Returns non-zero if an error was reported, zero if everything is |
| 734 | * clean (including a properly closed socket). |
| 735 | */ |
| 736 | static int retrieve_errno_from_socket(struct connection *conn) |
| 737 | { |
| 738 | int skerr; |
| 739 | socklen_t lskerr = sizeof(skerr); |
| 740 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 741 | if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 742 | return 1; |
| 743 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 744 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 745 | return 0; |
| 746 | |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame^] | 747 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 748 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 749 | if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 750 | errno = skerr; |
| 751 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 752 | errno = unclean_errno(errno); |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 753 | |
| 754 | if (!errno) { |
| 755 | /* we could not retrieve an error, that does not mean there is |
| 756 | * none. Just don't change anything and only report the prior |
| 757 | * error if any. |
| 758 | */ |
| 759 | if (conn->flags & CO_FL_ERROR) |
| 760 | return 1; |
| 761 | else |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH; |
| 766 | return 1; |
| 767 | } |
| 768 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 769 | /* Tries to collect as much information as possible on the connection status, |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 770 | * and adjust the server status accordingly. It may make use of <errno_bck> |
| 771 | * if non-null when the caller is absolutely certain of its validity (eg: |
| 772 | * checked just after a syscall). If the caller doesn't have a valid errno, |
| 773 | * it can pass zero, and retrieve_errno_from_socket() will be called to try |
| 774 | * to extract errno from the socket. If no error is reported, it will consider |
| 775 | * the <expired> flag. This is intended to be used when a connection error was |
| 776 | * reported in conn->flags or when a timeout was reported in <expired>. The |
| 777 | * function takes care of not updating a server status which was already set. |
| 778 | * All situations where at least one of <expired> or CO_FL_ERROR are set |
| 779 | * produce a status. |
| 780 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 781 | void chk_report_conn_err(struct check *check, int errno_bck, int expired) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 782 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 783 | struct conn_stream *cs = check->cs; |
| 784 | struct connection *conn = cs_conn(cs); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 785 | const char *err_msg; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 786 | struct buffer *chk; |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 787 | int step; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 788 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 789 | if (check->result != CHK_RES_UNKNOWN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 790 | return; |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 791 | } |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 792 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 793 | errno = unclean_errno(errno_bck); |
| 794 | if (conn && errno) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 795 | retrieve_errno_from_socket(conn); |
| 796 | |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 797 | if (conn && !(conn->flags & CO_FL_ERROR) && |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 798 | cs && !(cs->flags & CS_FL_ERROR) && !expired) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 799 | return; |
| 800 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 801 | TRACE_ENTER(CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check, 0, 0, (size_t[]){expired}); |
| 802 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 803 | /* we'll try to build a meaningful error message depending on the |
| 804 | * context of the error possibly present in conn->err_code, and the |
| 805 | * socket error possibly collected above. This is useful to know the |
| 806 | * exact step of the L6 layer (eg: SSL handshake). |
| 807 | */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 808 | chk = get_trash_chunk(); |
| 809 | |
Christopher Faulet | 799f3a4 | 2020-04-07 12:06:14 +0200 | [diff] [blame] | 810 | if (check->type == PR_O2_TCPCHK_CHK && |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 811 | (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) { |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 812 | step = tcpcheck_get_step_id(check, NULL); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 813 | if (!step) { |
| 814 | TRACE_DEVEL("initial connection failure", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 815 | chunk_printf(chk, " at initial connection step of tcp-check"); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 816 | } |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 817 | else { |
| 818 | chunk_printf(chk, " at step %d of tcp-check", step); |
| 819 | /* we were looking for a string */ |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 820 | if (check->current_step && check->current_step->action == TCPCHK_ACT_CONNECT) { |
| 821 | if (check->current_step->connect.port) |
| 822 | chunk_appendf(chk, " (connect port %d)" ,check->current_step->connect.port); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 823 | else |
| 824 | chunk_appendf(chk, " (connect)"); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 825 | TRACE_DEVEL("connection failure", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 826 | } |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 827 | else if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT) { |
| 828 | struct tcpcheck_expect *expect = &check->current_step->expect; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 829 | |
| 830 | switch (expect->type) { |
| 831 | case TCPCHK_EXPECT_STRING: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 832 | chunk_appendf(chk, " (expect string '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 833 | break; |
| 834 | case TCPCHK_EXPECT_BINARY: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 835 | chunk_appendf(chk, " (expect binary '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 836 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 837 | case TCPCHK_EXPECT_STRING_REGEX: |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 838 | chunk_appendf(chk, " (expect regex)"); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 839 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 840 | case TCPCHK_EXPECT_BINARY_REGEX: |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 841 | chunk_appendf(chk, " (expect binary regex)"); |
| 842 | break; |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 843 | case TCPCHK_EXPECT_STRING_LF: |
| 844 | chunk_appendf(chk, " (expect log-format string)"); |
| 845 | break; |
| 846 | case TCPCHK_EXPECT_BINARY_LF: |
| 847 | chunk_appendf(chk, " (expect log-format binary)"); |
| 848 | break; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 849 | case TCPCHK_EXPECT_HTTP_STATUS: |
Christopher Faulet | 8021a5f | 2020-04-24 13:53:12 +0200 | [diff] [blame] | 850 | chunk_appendf(chk, " (expect HTTP status codes)"); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 851 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 852 | case TCPCHK_EXPECT_HTTP_STATUS_REGEX: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 853 | chunk_appendf(chk, " (expect HTTP status regex)"); |
| 854 | break; |
Christopher Faulet | 3970819 | 2020-05-05 10:47:36 +0200 | [diff] [blame] | 855 | case TCPCHK_EXPECT_HTTP_HEADER: |
| 856 | chunk_appendf(chk, " (expect HTTP header pattern)"); |
| 857 | break; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 858 | case TCPCHK_EXPECT_HTTP_BODY: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 859 | chunk_appendf(chk, " (expect HTTP body content '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 860 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 861 | case TCPCHK_EXPECT_HTTP_BODY_REGEX: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 862 | chunk_appendf(chk, " (expect HTTP body regex)"); |
| 863 | break; |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 864 | case TCPCHK_EXPECT_HTTP_BODY_LF: |
| 865 | chunk_appendf(chk, " (expect log-format HTTP body)"); |
| 866 | break; |
Christopher Faulet | 9e6ed15 | 2020-04-03 15:24:06 +0200 | [diff] [blame] | 867 | case TCPCHK_EXPECT_CUSTOM: |
| 868 | chunk_appendf(chk, " (expect custom function)"); |
| 869 | break; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 870 | case TCPCHK_EXPECT_UNDEF: |
| 871 | chunk_appendf(chk, " (undefined expect!)"); |
| 872 | break; |
| 873 | } |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 874 | TRACE_DEVEL("expect rule failed", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 875 | } |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 876 | else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) { |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 877 | chunk_appendf(chk, " (send)"); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 878 | TRACE_DEVEL("send rule failed", CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 879 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 880 | |
Christopher Faulet | 6f2a5e4 | 2020-04-01 13:11:41 +0200 | [diff] [blame] | 881 | if (check->current_step && check->current_step->comment) |
| 882 | chunk_appendf(chk, " comment: '%s'", check->current_step->comment); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 883 | } |
| 884 | } |
| 885 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 886 | if (conn && conn->err_code) { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 887 | if (unclean_errno(errno)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 888 | chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), |
| 889 | chk->area); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 890 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 891 | chunk_printf(&trash, "%s%s", conn_err_code_str(conn), |
| 892 | chk->area); |
| 893 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 894 | } |
| 895 | else { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 896 | if (unclean_errno(errno)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 897 | chunk_printf(&trash, "%s%s", strerror(errno), |
| 898 | chk->area); |
| 899 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 900 | } |
| 901 | else { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 902 | err_msg = chk->area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 903 | } |
| 904 | } |
| 905 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 906 | if (check->state & CHK_ST_PORT_MISS) { |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 907 | /* NOTE: this is reported after <fall> tries */ |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 908 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 909 | } |
| 910 | |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 911 | if (!cs || !conn || !conn->ctrl) { |
Christopher Faulet | 5e29376 | 2020-10-26 11:10:49 +0100 | [diff] [blame] | 912 | /* error before any connection attempt (connection allocation error or no control layer) */ |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 913 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 914 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 915 | else if (conn->flags & CO_FL_WAIT_L4_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 916 | /* L4 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 917 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 918 | set_server_check_status(check, HCHK_STATUS_L4CON, err_msg); |
| 919 | else if (expired) |
| 920 | set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 921 | |
| 922 | /* |
| 923 | * might be due to a server IP change. |
| 924 | * Let's trigger a DNS resolution if none are currently running. |
| 925 | */ |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 926 | if (check->server) |
Emeric Brun | d30e9a1 | 2020-12-23 18:49:16 +0100 | [diff] [blame] | 927 | resolv_trigger_resolution(check->server->resolv_requester); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 928 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 929 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 930 | else if (conn->flags & CO_FL_WAIT_L6_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 931 | /* L6 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 932 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 933 | set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg); |
| 934 | else if (expired) |
| 935 | set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg); |
| 936 | } |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 937 | else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 938 | /* I/O error after connection was established and before we could diagnose */ |
| 939 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 940 | } |
| 941 | else if (expired) { |
Christopher Faulet | cf80f2f | 2020-04-01 11:04:52 +0200 | [diff] [blame] | 942 | enum healthcheck_status tout = HCHK_STATUS_L7TOUT; |
| 943 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 944 | /* connection established but expired check */ |
Christopher Faulet | 1941bab | 2020-05-05 07:55:50 +0200 | [diff] [blame] | 945 | if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT && |
| 946 | check->current_step->expect.tout_status != HCHK_STATUS_UNKNOWN) |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 947 | tout = check->current_step->expect.tout_status; |
| 948 | set_server_check_status(check, tout, err_msg); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 949 | } |
| 950 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 951 | TRACE_LEAVE(CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 952 | return; |
| 953 | } |
| 954 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 955 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 956 | /* Builds the server state header used by HTTP health-checks */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 957 | int httpchk_build_status_header(struct server *s, struct buffer *buf) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 958 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 959 | int sv_state; |
| 960 | int ratio; |
| 961 | char addr[46]; |
| 962 | char port[6]; |
| 963 | const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d", |
| 964 | "UP %d/%d", "UP", |
| 965 | "NOLB %d/%d", "NOLB", |
| 966 | "no check" }; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 967 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 968 | if (!(s->check.state & CHK_ST_ENABLED)) |
| 969 | sv_state = 6; |
| 970 | else if (s->cur_state != SRV_ST_STOPPED) { |
| 971 | if (s->check.health == s->check.rise + s->check.fall - 1) |
| 972 | sv_state = 3; /* UP */ |
| 973 | else |
| 974 | sv_state = 2; /* going down */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 975 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 976 | if (s->cur_state == SRV_ST_STOPPING) |
| 977 | sv_state += 2; |
| 978 | } else { |
| 979 | if (s->check.health) |
| 980 | sv_state = 1; /* going up */ |
| 981 | else |
| 982 | sv_state = 0; /* DOWN */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 983 | } |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 984 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 985 | chunk_appendf(buf, srv_hlt_st[sv_state], |
| 986 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health), |
| 987 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise)); |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 988 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 989 | addr_to_str(&s->addr, addr, sizeof(addr)); |
| 990 | if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6) |
| 991 | snprintf(port, sizeof(port), "%u", s->svc_port); |
| 992 | else |
| 993 | *port = 0; |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 994 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 995 | chunk_appendf(buf, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d", |
| 996 | addr, port, s->proxy->id, s->id, |
| 997 | global.node, |
| 998 | (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
| 999 | (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
Willy Tarreau | 7f3c1df | 2021-06-18 09:22:21 +0200 | [diff] [blame] | 1000 | s->cur_sess, s->proxy->beconn - s->proxy->queue.length, |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 1001 | s->queue.length); |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 1002 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1003 | if ((s->cur_state == SRV_ST_STARTING) && |
| 1004 | now.tv_sec < s->last_change + s->slowstart && |
| 1005 | now.tv_sec >= s->last_change) { |
| 1006 | ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart); |
| 1007 | chunk_appendf(buf, "; throttle=%d%%", ratio); |
| 1008 | } |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 1009 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1010 | return b_data(buf); |
| 1011 | } |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 1012 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1013 | /**************************************************************************/ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1014 | /***************** Health-checks based on connections *********************/ |
| 1015 | /**************************************************************************/ |
| 1016 | /* This function is used only for server health-checks. It handles connection |
| 1017 | * status updates including errors. If necessary, it wakes the check task up. |
| 1018 | * It returns 0 on normal cases, <0 if at least one close() has happened on the |
| 1019 | * connection (eg: reconnect). It relies on tcpcheck_main(). |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1020 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1021 | static int wake_srv_chk(struct conn_stream *cs) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1022 | { |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 1023 | struct connection *conn; |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1024 | struct check *check = __cs_check(cs); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1025 | struct email_alertq *q = container_of(check, typeof(*q), check); |
| 1026 | int ret = 0; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1027 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1028 | TRACE_ENTER(CHK_EV_HCHK_WAKE, check); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1029 | if (check->server) |
| 1030 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
| 1031 | else |
| 1032 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1033 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1034 | /* we may have to make progress on the TCP checks */ |
| 1035 | ret = tcpcheck_main(check); |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 1036 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1037 | cs = check->cs; |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 1038 | conn = cs_conn(cs); |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 1039 | |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 1040 | if (unlikely(!conn || !cs || conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1041 | /* We may get error reports bypassing the I/O handlers, typically |
| 1042 | * the case when sending a pure TCP check which fails, then the I/O |
| 1043 | * handlers above are not called. This is completely handled by the |
| 1044 | * main processing task so let's simply wake it up. If we get here, |
| 1045 | * we expect errno to still be valid. |
| 1046 | */ |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1047 | TRACE_ERROR("report connection error", CHK_EV_HCHK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1048 | chk_report_conn_err(check, errno, 0); |
| 1049 | task_wakeup(check->task, TASK_WOKEN_IO); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1050 | } |
| 1051 | |
Christopher Faulet | 8f10042 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 1052 | if (check->result != CHK_RES_UNKNOWN || ret == -1) { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1053 | /* Check complete or aborted. If connection not yet closed do it |
| 1054 | * now and wake the check task up to be sure the result is |
| 1055 | * handled ASAP. */ |
Willy Tarreau | 30bd4ef | 2020-12-11 11:09:29 +0100 | [diff] [blame] | 1056 | cs_drain_and_close(cs); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1057 | ret = -1; |
Christopher Faulet | 8f10042 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 1058 | |
| 1059 | if (check->wait_list.events) |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 1060 | conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list); |
Christopher Faulet | 8f10042 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 1061 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1062 | /* We may have been scheduled to run, and the |
| 1063 | * I/O handler expects to have a cs, so remove |
| 1064 | * the tasklet |
| 1065 | */ |
| 1066 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
| 1067 | task_wakeup(check->task, TASK_WOKEN_IO); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1068 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1069 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1070 | if (check->server) |
| 1071 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
| 1072 | else |
| 1073 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1074 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1075 | TRACE_LEAVE(CHK_EV_HCHK_WAKE, check); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1076 | return ret; |
| 1077 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1078 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1079 | /* This function checks if any I/O is wanted, and if so, attempts to do so */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 1080 | struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned int state) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1081 | { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1082 | struct check *check = ctx; |
| 1083 | struct conn_stream *cs = check->cs; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1084 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1085 | wake_srv_chk(cs); |
| 1086 | return NULL; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1087 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1088 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1089 | /* manages a server health-check that uses a connection. Returns |
| 1090 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1091 | * |
| 1092 | * Please do NOT place any return statement in this function and only leave |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1093 | * via the out_unlock label. |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1094 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 1095 | struct task *process_chk_conn(struct task *t, void *context, unsigned int state) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1096 | { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1097 | struct check *check = context; |
| 1098 | struct proxy *proxy = check->proxy; |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1099 | struct connection *conn; |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1100 | int rv; |
| 1101 | int expired = tick_is_expired(t->expire, now_ms); |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 1102 | |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1103 | TRACE_ENTER(CHK_EV_TASK_WAKE, check); |
| 1104 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1105 | if (check->server) |
| 1106 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1107 | |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1108 | if (unlikely(check->state & CHK_ST_PURGE)) { |
| 1109 | TRACE_STATE("health-check state to purge", CHK_EV_TASK_WAKE, check); |
| 1110 | } |
| 1111 | else if (!(check->state & (CHK_ST_INPROGRESS))) { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1112 | /* no check currently running */ |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1113 | if (!expired) /* woke up too early */ { |
| 1114 | TRACE_STATE("health-check wake up too early", CHK_EV_TASK_WAKE, check); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1115 | goto out_unlock; |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1116 | } |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 1117 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1118 | /* we don't send any health-checks when the proxy is |
| 1119 | * stopped, the server should not be checked or the check |
| 1120 | * is disabled. |
| 1121 | */ |
| 1122 | if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) || |
Christopher Faulet | dfd10ab | 2021-10-06 14:24:19 +0200 | [diff] [blame] | 1123 | (proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) { |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1124 | TRACE_STATE("health-check paused or disabled", CHK_EV_TASK_WAKE, check); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1125 | goto reschedule; |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1126 | } |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1127 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1128 | /* we'll initiate a new check */ |
| 1129 | set_server_check_status(check, HCHK_STATUS_START, NULL); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1130 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1131 | check->state |= CHK_ST_INPROGRESS; |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1132 | TRACE_STATE("init new health-check", CHK_EV_TASK_WAKE|CHK_EV_HCHK_START, check); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1133 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1134 | task_set_affinity(t, tid_bit); |
| 1135 | |
| 1136 | check->current_step = NULL; |
| 1137 | tcpcheck_main(check); |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1138 | expired = 0; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1139 | } |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1140 | |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1141 | conn = cs_conn(check->cs); |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1142 | |
| 1143 | /* there was a test running. |
| 1144 | * First, let's check whether there was an uncaught error, |
| 1145 | * which can happen on connect timeout or error. |
| 1146 | */ |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1147 | if (check->result == CHK_RES_UNKNOWN && likely(!(check->state & CHK_ST_PURGE))) { |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1148 | /* Here the connection must be defined. Otherwise the |
| 1149 | * error would have already been detected |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1150 | */ |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1151 | if ((conn && ((conn->flags & CO_FL_ERROR) || (check->cs->flags & CS_FL_ERROR))) || expired) { |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1152 | TRACE_ERROR("report connection error", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
| 1153 | chk_report_conn_err(check, 0, expired); |
| 1154 | } |
| 1155 | else { |
| 1156 | if (check->state & CHK_ST_CLOSE_CONN) { |
| 1157 | TRACE_DEVEL("closing current connection", CHK_EV_TASK_WAKE|CHK_EV_HCHK_RUN, check); |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1158 | cs_detach_endp(check->cs); |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1159 | conn = NULL; |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1160 | check->state &= ~CHK_ST_CLOSE_CONN; |
| 1161 | tcpcheck_main(check); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1162 | } |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1163 | if (check->result == CHK_RES_UNKNOWN) { |
| 1164 | TRACE_DEVEL("health-check not expired", CHK_EV_TASK_WAKE|CHK_EV_HCHK_RUN, check); |
| 1165 | goto out_unlock; /* timeout not reached, wait again */ |
Christopher Faulet | 8f10042 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 1166 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1167 | } |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1168 | } |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1169 | |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1170 | /* check complete or aborted */ |
| 1171 | TRACE_STATE("health-check complete or aborted", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END, check); |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1172 | |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1173 | check->current_step = NULL; |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1174 | conn = cs_conn(check->cs); |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1175 | |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1176 | if (conn && conn->xprt) { |
| 1177 | /* The check was aborted and the connection was not yet closed. |
| 1178 | * This can happen upon timeout, or when an external event such |
| 1179 | * as a failed response coupled with "observe layer7" caused the |
| 1180 | * server state to be suddenly changed. |
| 1181 | */ |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1182 | cs_drain_and_close(check->cs); |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1183 | } |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1184 | |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1185 | /* TODO: must be handled by cs_detach_endp */ |
| 1186 | if (conn && check->wait_list.events) |
| 1187 | conn->mux->unsubscribe(check->cs, check->wait_list.events, &check->wait_list); |
| 1188 | /* We may have been scheduled to run, and the |
| 1189 | * I/O handler expects to have a cs, so remove |
| 1190 | * the tasklet |
| 1191 | */ |
| 1192 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
| 1193 | cs_detach_endp(check->cs); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1194 | |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1195 | if (check->sess != NULL) { |
| 1196 | vars_prune(&check->vars, check->sess, NULL); |
| 1197 | session_free(check->sess); |
| 1198 | check->sess = NULL; |
| 1199 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1200 | |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1201 | if (check->server && likely(!(check->state & CHK_ST_PURGE))) { |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1202 | if (check->result == CHK_RES_FAILED) { |
| 1203 | /* a failure or timeout detected */ |
| 1204 | TRACE_DEVEL("report failure", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_ERR, check); |
| 1205 | check_notify_failure(check); |
| 1206 | } |
| 1207 | else if (check->result == CHK_RES_CONDPASS) { |
| 1208 | /* check is OK but asks for stopping mode */ |
| 1209 | TRACE_DEVEL("report conditional success", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check); |
| 1210 | check_notify_stopping(check); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1211 | } |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1212 | else if (check->result == CHK_RES_PASSED) { |
| 1213 | /* a success was detected */ |
| 1214 | TRACE_DEVEL("report success", CHK_EV_TASK_WAKE|CHK_EV_HCHK_END|CHK_EV_HCHK_SUCC, check); |
| 1215 | check_notify_success(check); |
| 1216 | } |
| 1217 | } |
| 1218 | task_set_affinity(t, MAX_THREADS_MASK); |
| 1219 | check_release_buf(check, &check->bi); |
| 1220 | check_release_buf(check, &check->bo); |
| 1221 | check->state &= ~(CHK_ST_INPROGRESS|CHK_ST_IN_ALLOC|CHK_ST_OUT_ALLOC); |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1222 | |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1223 | if (check->server) { |
| 1224 | rv = 0; |
| 1225 | if (global.spread_checks > 0) { |
| 1226 | rv = srv_getinter(check) * global.spread_checks / 100; |
| 1227 | rv -= (int) (2 * rv * (ha_random32() / 4294967295.0)); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1228 | } |
Christopher Faulet | 92017a3 | 2021-05-06 16:01:18 +0200 | [diff] [blame] | 1229 | t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv)); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1230 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1231 | |
| 1232 | reschedule: |
| 1233 | while (tick_is_expired(t->expire, now_ms)) |
| 1234 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
| 1235 | out_unlock: |
| 1236 | if (check->server) |
| 1237 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1238 | |
| 1239 | TRACE_LEAVE(CHK_EV_TASK_WAKE, check); |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1240 | |
| 1241 | /* Free the check if set to PURGE. After this, the check instance may be |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 1242 | * freed via the srv_drop invocation, so it must not be accessed after |
| 1243 | * this point. |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1244 | */ |
| 1245 | if (unlikely(check->state & CHK_ST_PURGE)) { |
Amaury Denoyelle | 26cb834 | 2021-08-10 16:23:49 +0200 | [diff] [blame] | 1246 | free_check(check); |
Amaury Denoyelle | 9ba34ae | 2021-08-09 15:09:17 +0200 | [diff] [blame] | 1247 | if (check->server) |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 1248 | srv_drop(check->server); |
Amaury Denoyelle | 26cb834 | 2021-08-10 16:23:49 +0200 | [diff] [blame] | 1249 | |
| 1250 | t = NULL; |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1251 | } |
| 1252 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1253 | return t; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1254 | } |
| 1255 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 1256 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1257 | /**************************************************************************/ |
| 1258 | /************************** Init/deinit checks ****************************/ |
| 1259 | /**************************************************************************/ |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1260 | /* |
| 1261 | * Tries to grab a buffer and to re-enables processing on check <target>. The |
| 1262 | * check flags are used to figure what buffer was requested. It returns 1 if the |
| 1263 | * allocation succeeds, in which case the I/O tasklet is woken up, or 0 if it's |
| 1264 | * impossible to wake up and we prefer to be woken up later. |
| 1265 | */ |
| 1266 | int check_buf_available(void *target) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1267 | { |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1268 | struct check *check = target; |
| 1269 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 1270 | if ((check->state & CHK_ST_IN_ALLOC) && b_alloc(&check->bi)) { |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1271 | TRACE_STATE("unblocking check, input buffer allocated", CHK_EV_TCPCHK_EXP|CHK_EV_RX_BLK, check); |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1272 | check->state &= ~CHK_ST_IN_ALLOC; |
| 1273 | tasklet_wakeup(check->wait_list.tasklet); |
| 1274 | return 1; |
| 1275 | } |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 1276 | if ((check->state & CHK_ST_OUT_ALLOC) && b_alloc(&check->bo)) { |
Christopher Faulet | 147b8c9 | 2021-04-10 09:00:38 +0200 | [diff] [blame] | 1277 | TRACE_STATE("unblocking check, output buffer allocated", CHK_EV_TCPCHK_SND|CHK_EV_TX_BLK, check); |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1278 | check->state &= ~CHK_ST_OUT_ALLOC; |
| 1279 | tasklet_wakeup(check->wait_list.tasklet); |
| 1280 | return 1; |
| 1281 | } |
| 1282 | |
| 1283 | return 0; |
| 1284 | } |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1285 | |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1286 | /* |
William Dauchy | f430090 | 2021-02-06 20:47:50 +0100 | [diff] [blame] | 1287 | * Allocate a buffer. If it fails, it adds the check in buffer wait queue. |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1288 | */ |
| 1289 | struct buffer *check_get_buf(struct check *check, struct buffer *bptr) |
| 1290 | { |
| 1291 | struct buffer *buf = NULL; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1292 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1293 | if (likely(!LIST_INLIST(&check->buf_wait.list)) && |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 1294 | unlikely((buf = b_alloc(bptr)) == NULL)) { |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1295 | check->buf_wait.target = check; |
| 1296 | check->buf_wait.wakeup_cb = check_buf_available; |
Willy Tarreau | b4e3476 | 2021-09-30 19:02:18 +0200 | [diff] [blame] | 1297 | LIST_APPEND(&th_ctx->buffer_wq, &check->buf_wait.list); |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1298 | } |
| 1299 | return buf; |
| 1300 | } |
| 1301 | |
| 1302 | /* |
| 1303 | * Release a buffer, if any, and try to wake up entities waiting in the buffer |
| 1304 | * wait queue. |
| 1305 | */ |
| 1306 | void check_release_buf(struct check *check, struct buffer *bptr) |
| 1307 | { |
| 1308 | if (bptr->size) { |
| 1309 | b_free(bptr); |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 1310 | offer_buffers(check->buf_wait.target, 1); |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | const char *init_check(struct check *check, int type) |
| 1315 | { |
| 1316 | check->type = type; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1317 | |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1318 | check->bi = BUF_NULL; |
| 1319 | check->bo = BUF_NULL; |
Willy Tarreau | 90f366b | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 1320 | LIST_INIT(&check->buf_wait.list); |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1321 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1322 | check->wait_list.tasklet = tasklet_new(); |
| 1323 | if (!check->wait_list.tasklet) |
| 1324 | return "out of memory while allocating check tasklet"; |
| 1325 | check->wait_list.events = 0; |
| 1326 | check->wait_list.tasklet->process = event_srv_chk_io; |
| 1327 | check->wait_list.tasklet->context = check; |
| 1328 | return NULL; |
| 1329 | } |
| 1330 | |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1331 | /* Liberates the resources allocated for a check. |
| 1332 | * |
Amaury Denoyelle | 6d7fc44 | 2021-08-10 16:22:51 +0200 | [diff] [blame] | 1333 | * This function must only be run by the thread owning the check. |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1334 | */ |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1335 | void free_check(struct check *check) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1336 | { |
Amaury Denoyelle | 6d7fc44 | 2021-08-10 16:22:51 +0200 | [diff] [blame] | 1337 | /* For agent-check, free the rules / vars from the server. This is not |
| 1338 | * done for health-check : the proxy is the owner of the rules / vars |
| 1339 | * in this case. |
| 1340 | */ |
| 1341 | if (check->state & CHK_ST_AGENT) { |
| 1342 | free_tcpcheck_vars(&check->tcpcheck_rules->preset_vars); |
| 1343 | ha_free(&check->tcpcheck_rules); |
| 1344 | } |
| 1345 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1346 | task_destroy(check->task); |
| 1347 | if (check->wait_list.tasklet) |
| 1348 | tasklet_free(check->wait_list.tasklet); |
| 1349 | |
Christopher Faulet | b381a50 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1350 | check_release_buf(check, &check->bi); |
| 1351 | check_release_buf(check, &check->bo); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1352 | if (check->cs) { |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1353 | cs_detach_endp(check->cs); |
| 1354 | cs_detach_app(check->cs); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1355 | check->cs = NULL; |
| 1356 | } |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1357 | } |
| 1358 | |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1359 | /* This function must be used in order to free a started check. The check will |
| 1360 | * be scheduled for a next execution in order to properly close and free all |
| 1361 | * check elements. |
| 1362 | * |
| 1363 | * Non thread-safe. |
| 1364 | */ |
| 1365 | void check_purge(struct check *check) |
| 1366 | { |
Amaury Denoyelle | 25fe103 | 2021-08-10 16:21:55 +0200 | [diff] [blame] | 1367 | check->state |= CHK_ST_PURGE; |
Amaury Denoyelle | b33a0ab | 2021-07-29 15:51:45 +0200 | [diff] [blame] | 1368 | task_wakeup(check->task, TASK_WOKEN_OTHER); |
| 1369 | } |
| 1370 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1371 | /* manages a server health-check. Returns the time the task accepts to wait, or |
| 1372 | * TIME_ETERNITY for infinity. |
| 1373 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 1374 | struct task *process_chk(struct task *t, void *context, unsigned int state) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1375 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1376 | struct check *check = context; |
| 1377 | |
| 1378 | if (check->type == PR_O2_EXT_CHK) |
| 1379 | return process_chk_proc(t, context, state); |
| 1380 | return process_chk_conn(t, context, state); |
| 1381 | |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1382 | } |
| 1383 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1384 | |
Amaury Denoyelle | 3c2ab1a | 2021-07-22 16:04:40 +0200 | [diff] [blame] | 1385 | int start_check_task(struct check *check, int mininter, |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1386 | int nbcheck, int srvpos) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1387 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1388 | struct task *t; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1389 | |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 1390 | /* task for the check. Process-based checks exclusively run on thread 1. */ |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1391 | if (check->type == PR_O2_EXT_CHK) |
Willy Tarreau | a89c191 | 2021-10-20 18:43:30 +0200 | [diff] [blame] | 1392 | t = task_new_on(0); |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1393 | else { |
| 1394 | check->cs = cs_new(); |
| 1395 | if (!check->cs) |
| 1396 | goto fail_alloc_cs; |
| 1397 | if (cs_attach_app(check->cs, &check->obj_type) < 0) |
| 1398 | goto fail_attach_cs; |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 1399 | t = task_new_anywhere(); |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1400 | } |
| 1401 | |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1402 | if (!t) |
| 1403 | goto fail_alloc_task; |
| 1404 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1405 | check->task = t; |
| 1406 | t->process = process_chk; |
| 1407 | t->context = check; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1408 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1409 | if (mininter < srv_getinter(check)) |
| 1410 | mininter = srv_getinter(check); |
| 1411 | |
| 1412 | if (global.max_spread_checks && mininter > global.max_spread_checks) |
| 1413 | mininter = global.max_spread_checks; |
| 1414 | |
| 1415 | /* check this every ms */ |
| 1416 | t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck)); |
| 1417 | check->start = now; |
| 1418 | task_queue(t); |
| 1419 | |
| 1420 | return 1; |
Christopher Faulet | 54e85cb | 2022-01-06 08:46:56 +0100 | [diff] [blame] | 1421 | |
| 1422 | fail_alloc_task: |
| 1423 | fail_attach_cs: |
| 1424 | cs_free(check->cs); |
| 1425 | fail_alloc_cs: |
| 1426 | ha_alert("Starting [%s:%s] check: out of memory.\n", |
| 1427 | check->server->proxy->id, check->server->id); |
| 1428 | return 0; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1429 | } |
| 1430 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1431 | /* |
| 1432 | * Start health-check. |
| 1433 | * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case. |
| 1434 | */ |
| 1435 | static int start_checks() |
| 1436 | { |
| 1437 | |
| 1438 | struct proxy *px; |
| 1439 | struct server *s; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1440 | int nbcheck=0, mininter=0, srvpos=0; |
| 1441 | |
| 1442 | /* 0- init the dummy frontend used to create all checks sessions */ |
| 1443 | init_new_proxy(&checks_fe); |
Christopher Faulet | 0f1fc23 | 2021-04-16 10:49:07 +0200 | [diff] [blame] | 1444 | checks_fe.id = strdup("CHECKS-FE"); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1445 | checks_fe.cap = PR_CAP_FE | PR_CAP_BE; |
| 1446 | checks_fe.mode = PR_MODE_TCP; |
| 1447 | checks_fe.maxconn = 0; |
| 1448 | checks_fe.conn_retries = CONN_RETRIES; |
| 1449 | checks_fe.options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC; |
| 1450 | checks_fe.timeout.client = TICK_ETERNITY; |
| 1451 | |
| 1452 | /* 1- count the checkers to run simultaneously. |
| 1453 | * We also determine the minimum interval among all of those which |
| 1454 | * have an interval larger than SRV_CHK_INTER_THRES. This interval |
| 1455 | * will be used to spread their start-up date. Those which have |
| 1456 | * a shorter interval will start independently and will not dictate |
| 1457 | * too short an interval for all others. |
| 1458 | */ |
| 1459 | for (px = proxies_list; px; px = px->next) { |
| 1460 | for (s = px->srv; s; s = s->next) { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1461 | if (s->check.state & CHK_ST_CONFIGURED) { |
| 1462 | nbcheck++; |
| 1463 | if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) && |
| 1464 | (!mininter || mininter > srv_getinter(&s->check))) |
| 1465 | mininter = srv_getinter(&s->check); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1466 | } |
| 1467 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1468 | if (s->agent.state & CHK_ST_CONFIGURED) { |
| 1469 | nbcheck++; |
| 1470 | if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) && |
| 1471 | (!mininter || mininter > srv_getinter(&s->agent))) |
| 1472 | mininter = srv_getinter(&s->agent); |
| 1473 | } |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1474 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1475 | } |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1476 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1477 | if (!nbcheck) |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1478 | return ERR_NONE; |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1479 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1480 | srand((unsigned)time(NULL)); |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1481 | |
William Dauchy | f430090 | 2021-02-06 20:47:50 +0100 | [diff] [blame] | 1482 | /* 2- start them as far as possible from each other. For this, we will |
| 1483 | * start them after their interval is set to the min interval divided |
| 1484 | * by the number of servers, weighted by the server's position in the |
| 1485 | * list. |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1486 | */ |
| 1487 | for (px = proxies_list; px; px = px->next) { |
| 1488 | if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 1489 | if (init_pid_list()) { |
| 1490 | ha_alert("Starting [%s] check: out of memory.\n", px->id); |
| 1491 | return ERR_ALERT | ERR_FATAL; |
| 1492 | } |
| 1493 | } |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1494 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1495 | for (s = px->srv; s; s = s->next) { |
| 1496 | /* A task for the main check */ |
| 1497 | if (s->check.state & CHK_ST_CONFIGURED) { |
| 1498 | if (s->check.type == PR_O2_EXT_CHK) { |
| 1499 | if (!prepare_external_check(&s->check)) |
| 1500 | return ERR_ALERT | ERR_FATAL; |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1501 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1502 | if (!start_check_task(&s->check, mininter, nbcheck, srvpos)) |
| 1503 | return ERR_ALERT | ERR_FATAL; |
| 1504 | srvpos++; |
Christopher Faulet | 9857232 | 2020-03-30 13:16:44 +0200 | [diff] [blame] | 1505 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1506 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1507 | /* A task for a auxiliary agent check */ |
| 1508 | if (s->agent.state & CHK_ST_CONFIGURED) { |
| 1509 | if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) { |
| 1510 | return ERR_ALERT | ERR_FATAL; |
| 1511 | } |
| 1512 | srvpos++; |
| 1513 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1514 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1515 | } |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1516 | return ERR_NONE; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1517 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1518 | |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1519 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1520 | /* |
| 1521 | * Return value: |
| 1522 | * the port to be used for the health check |
| 1523 | * 0 in case no port could be found for the check |
| 1524 | */ |
| 1525 | static int srv_check_healthcheck_port(struct check *chk) |
| 1526 | { |
| 1527 | int i = 0; |
| 1528 | struct server *srv = NULL; |
| 1529 | |
| 1530 | srv = chk->server; |
| 1531 | |
William Dauchy | f430090 | 2021-02-06 20:47:50 +0100 | [diff] [blame] | 1532 | /* by default, we use the health check port configured */ |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1533 | if (chk->port > 0) |
| 1534 | return chk->port; |
| 1535 | |
| 1536 | /* try to get the port from check_core.addr if check.port not set */ |
| 1537 | i = get_host_port(&chk->addr); |
| 1538 | if (i > 0) |
| 1539 | return i; |
| 1540 | |
| 1541 | /* try to get the port from server address */ |
| 1542 | /* prevent MAPPORTS from working at this point, since checks could |
| 1543 | * not be performed in such case (MAPPORTS impose a relative ports |
| 1544 | * based on live traffic) |
| 1545 | */ |
| 1546 | if (srv->flags & SRV_F_MAPPORTS) |
| 1547 | return 0; |
| 1548 | |
| 1549 | i = srv->svc_port; /* by default */ |
| 1550 | if (i > 0) |
| 1551 | return i; |
| 1552 | |
| 1553 | return 0; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1554 | } |
| 1555 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1556 | /* Initializes an health-check attached to the server <srv>. Non-zero is returned |
| 1557 | * if an error occurred. |
| 1558 | */ |
Amaury Denoyelle | 3c2ab1a | 2021-07-22 16:04:40 +0200 | [diff] [blame] | 1559 | int init_srv_check(struct server *srv) |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1560 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1561 | const char *err; |
| 1562 | struct tcpcheck_rule *r; |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1563 | int ret = ERR_NONE; |
Amaury Denoyelle | 0519bd4 | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1564 | int check_type; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1565 | |
Christopher Faulet | 6ecd593 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 1566 | if (!srv->do_check || !(srv->proxy->cap & PR_CAP_BE)) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1567 | goto out; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1568 | |
Amaury Denoyelle | 0519bd4 | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1569 | check_type = srv->check.tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK; |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1570 | |
Amaury Denoyelle | 7d098be | 2022-03-09 14:20:10 +0100 | [diff] [blame] | 1571 | if (!(srv->flags & SRV_F_DYNAMIC)) { |
| 1572 | /* If neither a port nor an addr was specified and no check |
| 1573 | * transport layer is forced, then the transport layer used by |
| 1574 | * the checks is the same as for the production traffic. |
| 1575 | * Otherwise we use raw_sock by default, unless one is |
| 1576 | * specified. |
| 1577 | */ |
| 1578 | if (!srv->check.port && !is_addr(&srv->check.addr)) { |
| 1579 | if (!srv->check.use_ssl && srv->use_ssl != -1) { |
| 1580 | srv->check.use_ssl = srv->use_ssl; |
| 1581 | srv->check.xprt = srv->xprt; |
| 1582 | } |
| 1583 | else if (srv->check.use_ssl == 1) |
| 1584 | srv->check.xprt = xprt_get(XPRT_SSL); |
| 1585 | srv->check.send_proxy |= (srv->pp_opts); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1586 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1587 | else if (srv->check.use_ssl == 1) |
| 1588 | srv->check.xprt = xprt_get(XPRT_SSL); |
Amaury Denoyelle | 7d098be | 2022-03-09 14:20:10 +0100 | [diff] [blame] | 1589 | } |
| 1590 | else { |
| 1591 | /* For dynamic servers, check-ssl and check-send-proxy must be |
| 1592 | * explicitely defined even if the check port was not |
| 1593 | * overridden. |
| 1594 | */ |
| 1595 | if (srv->check.use_ssl == 1) |
| 1596 | srv->check.xprt = xprt_get(XPRT_SSL); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1597 | } |
| 1598 | |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1599 | /* Inherit the mux protocol from the server if not already defined for |
| 1600 | * the check |
| 1601 | */ |
Amaury Denoyelle | 0519bd4 | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1602 | if (srv->mux_proto && !srv->check.mux_proto && |
| 1603 | ((srv->mux_proto->mode == PROTO_MODE_HTTP && check_type == TCPCHK_RULES_HTTP_CHK) || |
| 1604 | (srv->mux_proto->mode == PROTO_MODE_TCP && check_type != TCPCHK_RULES_HTTP_CHK))) { |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1605 | srv->check.mux_proto = srv->mux_proto; |
Amaury Denoyelle | 0519bd4 | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1606 | } |
Amaury Denoyelle | 7c14890 | 2020-11-13 12:34:57 +0100 | [diff] [blame] | 1607 | /* test that check proto is valid if explicitly defined */ |
| 1608 | else if (srv->check.mux_proto && |
| 1609 | ((srv->check.mux_proto->mode == PROTO_MODE_HTTP && check_type != TCPCHK_RULES_HTTP_CHK) || |
| 1610 | (srv->check.mux_proto->mode == PROTO_MODE_TCP && check_type == TCPCHK_RULES_HTTP_CHK))) { |
| 1611 | ha_alert("config: %s '%s': server '%s' uses an incompatible MUX protocol for the selected check type\n", |
| 1612 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1613 | ret |= ERR_ALERT | ERR_FATAL; |
| 1614 | goto out; |
| 1615 | } |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1616 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1617 | /* validate <srv> server health-check settings */ |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1618 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1619 | /* We need at least a service port, a check port or the first tcp-check |
| 1620 | * rule must be a 'connect' one when checking an IPv4/IPv6 server. |
| 1621 | */ |
| 1622 | if ((srv_check_healthcheck_port(&srv->check) != 0) || |
| 1623 | (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr)))) |
| 1624 | goto init; |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1625 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1626 | if (!srv->proxy->tcpcheck_rules.list || LIST_ISEMPTY(srv->proxy->tcpcheck_rules.list)) { |
| 1627 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port.\n", |
| 1628 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1629 | ret |= ERR_ALERT | ERR_ABORT; |
| 1630 | goto out; |
| 1631 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1632 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1633 | /* search the first action (connect / send / expect) in the list */ |
| 1634 | r = get_first_tcpcheck_rule(&srv->proxy->tcpcheck_rules); |
| 1635 | if (!r || (r->action != TCPCHK_ACT_CONNECT) || (!r->connect.port && !get_host_port(&r->connect.addr))) { |
| 1636 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port " |
| 1637 | "nor tcp_check rule 'connect' with port information.\n", |
| 1638 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1639 | ret |= ERR_ALERT | ERR_ABORT; |
| 1640 | goto out; |
| 1641 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1642 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1643 | /* scan the tcp-check ruleset to ensure a port has been configured */ |
| 1644 | list_for_each_entry(r, srv->proxy->tcpcheck_rules.list, list) { |
Willy Tarreau | acff309 | 2021-07-22 11:06:41 +0200 | [diff] [blame] | 1645 | if ((r->action == TCPCHK_ACT_CONNECT) && (!r->connect.port && !get_host_port(&r->connect.addr))) { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1646 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port, " |
| 1647 | "and a tcp_check rule 'connect' with no port information.\n", |
| 1648 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1649 | ret |= ERR_ALERT | ERR_ABORT; |
| 1650 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1651 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1652 | } |
| 1653 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1654 | init: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1655 | err = init_check(&srv->check, srv->proxy->options2 & PR_O2_CHK_ANY); |
| 1656 | if (err) { |
| 1657 | ha_alert("config: %s '%s': unable to init check for server '%s' (%s).\n", |
| 1658 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 1659 | ret |= ERR_ALERT | ERR_ABORT; |
| 1660 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1661 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1662 | srv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED; |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 1663 | srv_take(srv); |
Amaury Denoyelle | 403dce8 | 2021-07-29 15:39:43 +0200 | [diff] [blame] | 1664 | |
| 1665 | /* Only increment maxsock for servers from the configuration. Dynamic |
| 1666 | * servers at the moment are not taken into account for the estimation |
| 1667 | * of the resources limits. |
| 1668 | */ |
| 1669 | if (global.mode & MODE_STARTING) |
| 1670 | global.maxsock++; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1671 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1672 | out: |
| 1673 | return ret; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1674 | } |
| 1675 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1676 | /* Initializes an agent-check attached to the server <srv>. Non-zero is returned |
| 1677 | * if an error occurred. |
| 1678 | */ |
Amaury Denoyelle | 3c2ab1a | 2021-07-22 16:04:40 +0200 | [diff] [blame] | 1679 | int init_srv_agent_check(struct server *srv) |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1680 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1681 | struct tcpcheck_rule *chk; |
| 1682 | const char *err; |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1683 | int ret = ERR_NONE; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1684 | |
Christopher Faulet | 6ecd593 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 1685 | if (!srv->do_agent || !(srv->proxy->cap & PR_CAP_BE)) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1686 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1687 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1688 | /* If there is no connect rule preceding all send / expect rules, an |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1689 | * implicit one is inserted before all others. |
| 1690 | */ |
| 1691 | chk = get_first_tcpcheck_rule(srv->agent.tcpcheck_rules); |
| 1692 | if (!chk || chk->action != TCPCHK_ACT_CONNECT) { |
| 1693 | chk = calloc(1, sizeof(*chk)); |
| 1694 | if (!chk) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 1695 | ha_alert("%s '%s': unable to add implicit tcp-check connect rule" |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1696 | " to agent-check for server '%s' (out of memory).\n", |
| 1697 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1698 | ret |= ERR_ALERT | ERR_FATAL; |
| 1699 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1700 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1701 | chk->action = TCPCHK_ACT_CONNECT; |
| 1702 | chk->connect.options = (TCPCHK_OPT_DEFAULT_CONNECT|TCPCHK_OPT_IMPLICIT); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1703 | LIST_INSERT(srv->agent.tcpcheck_rules->list, &chk->list); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1704 | } |
| 1705 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1706 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1707 | err = init_check(&srv->agent, PR_O2_TCPCHK_CHK); |
| 1708 | if (err) { |
| 1709 | ha_alert("config: %s '%s': unable to init agent-check for server '%s' (%s).\n", |
| 1710 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 1711 | ret |= ERR_ALERT | ERR_ABORT; |
| 1712 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1713 | } |
| 1714 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1715 | if (!srv->agent.inter) |
| 1716 | srv->agent.inter = srv->check.inter; |
| 1717 | |
| 1718 | srv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT; |
Amaury Denoyelle | bc2ebfa | 2021-08-25 15:34:53 +0200 | [diff] [blame] | 1719 | srv_take(srv); |
Amaury Denoyelle | 403dce8 | 2021-07-29 15:39:43 +0200 | [diff] [blame] | 1720 | |
| 1721 | /* Only increment maxsock for servers from the configuration. Dynamic |
| 1722 | * servers at the moment are not taken into account for the estimation |
| 1723 | * of the resources limits. |
| 1724 | */ |
| 1725 | if (global.mode & MODE_STARTING) |
| 1726 | global.maxsock++; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1727 | |
| 1728 | out: |
| 1729 | return ret; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1730 | } |
| 1731 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1732 | static void deinit_srv_check(struct server *srv) |
| 1733 | { |
| 1734 | if (srv->check.state & CHK_ST_CONFIGURED) |
| 1735 | free_check(&srv->check); |
| 1736 | srv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED; |
| 1737 | srv->do_check = 0; |
| 1738 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1739 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1740 | |
| 1741 | static void deinit_srv_agent_check(struct server *srv) |
| 1742 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1743 | if (srv->agent.state & CHK_ST_CONFIGURED) |
| 1744 | free_check(&srv->agent); |
| 1745 | |
| 1746 | srv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT; |
| 1747 | srv->do_agent = 0; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1748 | } |
| 1749 | |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1750 | REGISTER_POST_SERVER_CHECK(init_srv_check); |
| 1751 | REGISTER_POST_SERVER_CHECK(init_srv_agent_check); |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1752 | REGISTER_POST_CHECK(start_checks); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1753 | |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1754 | REGISTER_SERVER_DEINIT(deinit_srv_check); |
| 1755 | REGISTER_SERVER_DEINIT(deinit_srv_agent_check); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1756 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1757 | |
| 1758 | /**************************************************************************/ |
| 1759 | /************************** Check sample fetches **************************/ |
| 1760 | /**************************************************************************/ |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1761 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1762 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1763 | { /* END */ }, |
| 1764 | }}; |
| 1765 | |
| 1766 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 1767 | |
| 1768 | |
| 1769 | /**************************************************************************/ |
| 1770 | /************************ Check's parsing functions ***********************/ |
| 1771 | /**************************************************************************/ |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 1772 | /* Parse the "addr" server keyword */ |
| 1773 | static int srv_parse_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 1774 | char **errmsg) |
| 1775 | { |
| 1776 | struct sockaddr_storage *sk; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 1777 | int port1, port2, err_code = 0; |
| 1778 | |
| 1779 | |
| 1780 | if (!*args[*cur_arg+1]) { |
| 1781 | memprintf(errmsg, "'%s' expects <ipv4|ipv6> as argument.", args[*cur_arg]); |
| 1782 | goto error; |
| 1783 | } |
| 1784 | |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1785 | sk = str2sa_range(args[*cur_arg+1], NULL, &port1, &port2, NULL, NULL, errmsg, NULL, NULL, |
| 1786 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT); |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 1787 | if (!sk) { |
| 1788 | memprintf(errmsg, "'%s' : %s", args[*cur_arg], *errmsg); |
| 1789 | goto error; |
| 1790 | } |
| 1791 | |
William Dauchy | 1c921cd | 2021-02-03 22:30:08 +0100 | [diff] [blame] | 1792 | srv->check.addr = *sk; |
| 1793 | /* if agentaddr was never set, we can use addr */ |
| 1794 | if (!(srv->flags & SRV_F_AGENTADDR)) |
| 1795 | srv->agent.addr = *sk; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 1796 | |
| 1797 | out: |
| 1798 | return err_code; |
| 1799 | |
| 1800 | error: |
| 1801 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1802 | goto out; |
| 1803 | } |
| 1804 | |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1805 | /* Parse the "agent-addr" server keyword */ |
| 1806 | static int srv_parse_agent_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 1807 | char **errmsg) |
| 1808 | { |
William Dauchy | 1c921cd | 2021-02-03 22:30:08 +0100 | [diff] [blame] | 1809 | struct sockaddr_storage sk; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1810 | int err_code = 0; |
| 1811 | |
| 1812 | if (!*(args[*cur_arg+1])) { |
| 1813 | memprintf(errmsg, "'%s' expects an address as argument.", args[*cur_arg]); |
| 1814 | goto error; |
| 1815 | } |
William Dauchy | 1c921cd | 2021-02-03 22:30:08 +0100 | [diff] [blame] | 1816 | memset(&sk, 0, sizeof(sk)); |
| 1817 | if (str2ip(args[*cur_arg + 1], &sk) == NULL) { |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1818 | memprintf(errmsg, "parsing agent-addr failed. Check if '%s' is correct address.", args[*cur_arg+1]); |
| 1819 | goto error; |
| 1820 | } |
William Dauchy | 1c921cd | 2021-02-03 22:30:08 +0100 | [diff] [blame] | 1821 | set_srv_agent_addr(srv, &sk); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1822 | |
| 1823 | out: |
| 1824 | return err_code; |
| 1825 | |
| 1826 | error: |
| 1827 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1828 | goto out; |
| 1829 | } |
| 1830 | |
| 1831 | /* Parse the "agent-check" server keyword */ |
| 1832 | static int srv_parse_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 1833 | char **errmsg) |
| 1834 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1835 | struct tcpcheck_ruleset *rs = NULL; |
| 1836 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
| 1837 | struct tcpcheck_rule *chk; |
| 1838 | int err_code = 0; |
| 1839 | |
| 1840 | if (srv->do_agent) |
| 1841 | goto out; |
| 1842 | |
Christopher Faulet | 6ecd593 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 1843 | if (!(curpx->cap & PR_CAP_BE)) { |
| 1844 | memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability", |
| 1845 | args[*cur_arg], proxy_type_str(curpx), curpx->id); |
| 1846 | return ERR_WARN; |
| 1847 | } |
| 1848 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1849 | if (!rules) { |
| 1850 | rules = calloc(1, sizeof(*rules)); |
| 1851 | if (!rules) { |
| 1852 | memprintf(errmsg, "out of memory."); |
| 1853 | goto error; |
| 1854 | } |
| 1855 | LIST_INIT(&rules->preset_vars); |
| 1856 | srv->agent.tcpcheck_rules = rules; |
| 1857 | } |
| 1858 | rules->list = NULL; |
| 1859 | rules->flags = 0; |
| 1860 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1861 | rs = find_tcpcheck_ruleset("*agent-check"); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1862 | if (rs) |
| 1863 | goto ruleset_found; |
| 1864 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1865 | rs = create_tcpcheck_ruleset("*agent-check"); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1866 | if (rs == NULL) { |
| 1867 | memprintf(errmsg, "out of memory."); |
| 1868 | goto error; |
| 1869 | } |
| 1870 | |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 1871 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", "%[var(check.agent_string)]", ""}, |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1872 | 1, curpx, &rs->rules, srv->conf.file, srv->conf.line, errmsg); |
| 1873 | if (!chk) { |
| 1874 | memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg); |
| 1875 | goto error; |
| 1876 | } |
| 1877 | chk->index = 0; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1878 | LIST_APPEND(&rs->rules, &chk->list); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1879 | |
| 1880 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1881 | 1, curpx, &rs->rules, TCPCHK_RULES_AGENT_CHK, |
| 1882 | srv->conf.file, srv->conf.line, errmsg); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1883 | if (!chk) { |
| 1884 | memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg); |
| 1885 | goto error; |
| 1886 | } |
| 1887 | chk->expect.custom = tcpcheck_agent_expect_reply; |
| 1888 | chk->index = 1; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1889 | LIST_APPEND(&rs->rules, &chk->list); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1890 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1891 | ruleset_found: |
| 1892 | rules->list = &rs->rules; |
Christopher Faulet | 1faf18a | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 1893 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1894 | rules->flags |= TCPCHK_RULES_AGENT_CHK; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1895 | srv->do_agent = 1; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1896 | |
| 1897 | out: |
Dirkjan Bussink | dfee217 | 2021-06-18 19:57:49 +0000 | [diff] [blame] | 1898 | return err_code; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1899 | |
| 1900 | error: |
| 1901 | deinit_srv_agent_check(srv); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1902 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1903 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1904 | goto out; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1905 | } |
| 1906 | |
| 1907 | /* Parse the "agent-inter" server keyword */ |
| 1908 | static int srv_parse_agent_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 1909 | char **errmsg) |
| 1910 | { |
| 1911 | const char *err = NULL; |
| 1912 | unsigned int delay; |
| 1913 | int err_code = 0; |
| 1914 | |
| 1915 | if (!*(args[*cur_arg+1])) { |
| 1916 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 1917 | goto error; |
| 1918 | } |
| 1919 | |
| 1920 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 1921 | if (err == PARSE_TIME_OVER) { |
| 1922 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 1923 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 1924 | goto error; |
| 1925 | } |
| 1926 | else if (err == PARSE_TIME_UNDER) { |
| 1927 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 1928 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 1929 | goto error; |
| 1930 | } |
| 1931 | else if (err) { |
| 1932 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 1933 | *err, srv->id); |
| 1934 | goto error; |
| 1935 | } |
| 1936 | if (delay <= 0) { |
| 1937 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 1938 | delay, args[*cur_arg], srv->id); |
| 1939 | goto error; |
| 1940 | } |
| 1941 | srv->agent.inter = delay; |
| 1942 | |
| 1943 | out: |
| 1944 | return err_code; |
| 1945 | |
| 1946 | error: |
| 1947 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1948 | goto out; |
| 1949 | } |
| 1950 | |
| 1951 | /* Parse the "agent-port" server keyword */ |
| 1952 | static int srv_parse_agent_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 1953 | char **errmsg) |
| 1954 | { |
| 1955 | int err_code = 0; |
| 1956 | |
| 1957 | if (!*(args[*cur_arg+1])) { |
| 1958 | memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]); |
| 1959 | goto error; |
| 1960 | } |
| 1961 | |
Amaury Denoyelle | 403dce8 | 2021-07-29 15:39:43 +0200 | [diff] [blame] | 1962 | /* Only increment maxsock for servers from the configuration. Dynamic |
| 1963 | * servers at the moment are not taken into account for the estimation |
| 1964 | * of the resources limits. |
| 1965 | */ |
| 1966 | if (global.mode & MODE_STARTING) |
| 1967 | global.maxsock++; |
| 1968 | |
William Dauchy | 4858fb2 | 2021-02-03 22:30:09 +0100 | [diff] [blame] | 1969 | set_srv_agent_port(srv, atol(args[*cur_arg + 1])); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 1970 | |
| 1971 | out: |
| 1972 | return err_code; |
| 1973 | |
| 1974 | error: |
| 1975 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1976 | goto out; |
| 1977 | } |
| 1978 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1979 | int set_srv_agent_send(struct server *srv, const char *send) |
| 1980 | { |
| 1981 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
| 1982 | struct tcpcheck_var *var = NULL; |
| 1983 | char *str; |
| 1984 | |
| 1985 | str = strdup(send); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 1986 | var = create_tcpcheck_var(ist("check.agent_string")); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1987 | if (str == NULL || var == NULL) |
| 1988 | goto error; |
| 1989 | |
| 1990 | free_tcpcheck_vars(&rules->preset_vars); |
| 1991 | |
| 1992 | var->data.type = SMP_T_STR; |
| 1993 | var->data.u.str.area = str; |
| 1994 | var->data.u.str.data = strlen(str); |
| 1995 | LIST_INIT(&var->list); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1996 | LIST_APPEND(&rules->preset_vars, &var->list); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 1997 | |
| 1998 | return 1; |
| 1999 | |
| 2000 | error: |
| 2001 | free(str); |
| 2002 | free(var); |
| 2003 | return 0; |
| 2004 | } |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2005 | |
| 2006 | /* Parse the "agent-send" server keyword */ |
| 2007 | static int srv_parse_agent_send(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2008 | char **errmsg) |
| 2009 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2010 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2011 | int err_code = 0; |
| 2012 | |
| 2013 | if (!*(args[*cur_arg+1])) { |
| 2014 | memprintf(errmsg, "'%s' expects a string as argument.", args[*cur_arg]); |
| 2015 | goto error; |
| 2016 | } |
| 2017 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2018 | if (!rules) { |
| 2019 | rules = calloc(1, sizeof(*rules)); |
| 2020 | if (!rules) { |
| 2021 | memprintf(errmsg, "out of memory."); |
| 2022 | goto error; |
| 2023 | } |
| 2024 | LIST_INIT(&rules->preset_vars); |
| 2025 | srv->agent.tcpcheck_rules = rules; |
| 2026 | } |
| 2027 | |
| 2028 | if (!set_srv_agent_send(srv, args[*cur_arg+1])) { |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2029 | memprintf(errmsg, "out of memory."); |
| 2030 | goto error; |
| 2031 | } |
| 2032 | |
| 2033 | out: |
| 2034 | return err_code; |
| 2035 | |
| 2036 | error: |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2037 | deinit_srv_agent_check(srv); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2038 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2039 | goto out; |
| 2040 | } |
| 2041 | |
| 2042 | /* Parse the "no-agent-send" server keyword */ |
| 2043 | static int srv_parse_no_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2044 | char **errmsg) |
| 2045 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2046 | deinit_srv_agent_check(srv); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2047 | return 0; |
| 2048 | } |
| 2049 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2050 | /* Parse the "check" server keyword */ |
| 2051 | static int srv_parse_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2052 | char **errmsg) |
| 2053 | { |
Christopher Faulet | 6ecd593 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 2054 | if (!(curpx->cap & PR_CAP_BE)) { |
| 2055 | memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability", |
| 2056 | args[*cur_arg], proxy_type_str(curpx), curpx->id); |
| 2057 | return ERR_WARN; |
| 2058 | } |
| 2059 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2060 | srv->do_check = 1; |
| 2061 | return 0; |
| 2062 | } |
| 2063 | |
| 2064 | /* Parse the "check-send-proxy" server keyword */ |
| 2065 | static int srv_parse_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2066 | char **errmsg) |
| 2067 | { |
| 2068 | srv->check.send_proxy = 1; |
| 2069 | return 0; |
| 2070 | } |
| 2071 | |
| 2072 | /* Parse the "check-via-socks4" server keyword */ |
| 2073 | static int srv_parse_check_via_socks4(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2074 | char **errmsg) |
| 2075 | { |
| 2076 | srv->check.via_socks4 = 1; |
| 2077 | return 0; |
| 2078 | } |
| 2079 | |
| 2080 | /* Parse the "no-check" server keyword */ |
| 2081 | static int srv_parse_no_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2082 | char **errmsg) |
| 2083 | { |
| 2084 | deinit_srv_check(srv); |
| 2085 | return 0; |
| 2086 | } |
| 2087 | |
| 2088 | /* Parse the "no-check-send-proxy" server keyword */ |
| 2089 | static int srv_parse_no_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2090 | char **errmsg) |
| 2091 | { |
| 2092 | srv->check.send_proxy = 0; |
| 2093 | return 0; |
| 2094 | } |
| 2095 | |
Christopher Faulet | edc6ed9 | 2020-04-23 16:27:59 +0200 | [diff] [blame] | 2096 | /* parse the "check-proto" server keyword */ |
| 2097 | static int srv_parse_check_proto(char **args, int *cur_arg, |
| 2098 | struct proxy *px, struct server *newsrv, char **err) |
| 2099 | { |
| 2100 | int err_code = 0; |
| 2101 | |
| 2102 | if (!*args[*cur_arg + 1]) { |
| 2103 | memprintf(err, "'%s' : missing value", args[*cur_arg]); |
| 2104 | goto error; |
| 2105 | } |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 2106 | newsrv->check.mux_proto = get_mux_proto(ist(args[*cur_arg + 1])); |
Christopher Faulet | edc6ed9 | 2020-04-23 16:27:59 +0200 | [diff] [blame] | 2107 | if (!newsrv->check.mux_proto) { |
| 2108 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]); |
| 2109 | goto error; |
| 2110 | } |
| 2111 | |
| 2112 | out: |
| 2113 | return err_code; |
| 2114 | |
| 2115 | error: |
| 2116 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2117 | goto out; |
| 2118 | } |
| 2119 | |
| 2120 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2121 | /* Parse the "rise" server keyword */ |
| 2122 | static int srv_parse_check_rise(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2123 | char **errmsg) |
| 2124 | { |
| 2125 | int err_code = 0; |
| 2126 | |
| 2127 | if (!*args[*cur_arg + 1]) { |
| 2128 | memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]); |
| 2129 | goto error; |
| 2130 | } |
| 2131 | |
| 2132 | srv->check.rise = atol(args[*cur_arg+1]); |
| 2133 | if (srv->check.rise <= 0) { |
| 2134 | memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]); |
| 2135 | goto error; |
| 2136 | } |
| 2137 | |
| 2138 | if (srv->check.health) |
| 2139 | srv->check.health = srv->check.rise; |
| 2140 | |
| 2141 | out: |
| 2142 | return err_code; |
| 2143 | |
| 2144 | error: |
| 2145 | deinit_srv_agent_check(srv); |
| 2146 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2147 | goto out; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2148 | } |
| 2149 | |
| 2150 | /* Parse the "fall" server keyword */ |
| 2151 | static int srv_parse_check_fall(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2152 | char **errmsg) |
| 2153 | { |
| 2154 | int err_code = 0; |
| 2155 | |
| 2156 | if (!*args[*cur_arg + 1]) { |
| 2157 | memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]); |
| 2158 | goto error; |
| 2159 | } |
| 2160 | |
| 2161 | srv->check.fall = atol(args[*cur_arg+1]); |
| 2162 | if (srv->check.fall <= 0) { |
| 2163 | memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]); |
| 2164 | goto error; |
| 2165 | } |
| 2166 | |
| 2167 | out: |
| 2168 | return err_code; |
| 2169 | |
| 2170 | error: |
| 2171 | deinit_srv_agent_check(srv); |
| 2172 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2173 | goto out; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | /* Parse the "inter" server keyword */ |
| 2177 | static int srv_parse_check_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2178 | char **errmsg) |
| 2179 | { |
| 2180 | const char *err = NULL; |
| 2181 | unsigned int delay; |
| 2182 | int err_code = 0; |
| 2183 | |
| 2184 | if (!*(args[*cur_arg+1])) { |
| 2185 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 2186 | goto error; |
| 2187 | } |
| 2188 | |
| 2189 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 2190 | if (err == PARSE_TIME_OVER) { |
| 2191 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 2192 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2193 | goto error; |
| 2194 | } |
| 2195 | else if (err == PARSE_TIME_UNDER) { |
| 2196 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 2197 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2198 | goto error; |
| 2199 | } |
| 2200 | else if (err) { |
| 2201 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 2202 | *err, srv->id); |
| 2203 | goto error; |
| 2204 | } |
| 2205 | if (delay <= 0) { |
| 2206 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 2207 | delay, args[*cur_arg], srv->id); |
| 2208 | goto error; |
| 2209 | } |
| 2210 | srv->check.inter = delay; |
| 2211 | |
| 2212 | out: |
| 2213 | return err_code; |
| 2214 | |
| 2215 | error: |
| 2216 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2217 | goto out; |
| 2218 | } |
| 2219 | |
| 2220 | |
| 2221 | /* Parse the "fastinter" server keyword */ |
| 2222 | static int srv_parse_check_fastinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2223 | char **errmsg) |
| 2224 | { |
| 2225 | const char *err = NULL; |
| 2226 | unsigned int delay; |
| 2227 | int err_code = 0; |
| 2228 | |
| 2229 | if (!*(args[*cur_arg+1])) { |
| 2230 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 2231 | goto error; |
| 2232 | } |
| 2233 | |
| 2234 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 2235 | if (err == PARSE_TIME_OVER) { |
| 2236 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 2237 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2238 | goto error; |
| 2239 | } |
| 2240 | else if (err == PARSE_TIME_UNDER) { |
| 2241 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 2242 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2243 | goto error; |
| 2244 | } |
| 2245 | else if (err) { |
| 2246 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 2247 | *err, srv->id); |
| 2248 | goto error; |
| 2249 | } |
| 2250 | if (delay <= 0) { |
| 2251 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 2252 | delay, args[*cur_arg], srv->id); |
| 2253 | goto error; |
| 2254 | } |
| 2255 | srv->check.fastinter = delay; |
| 2256 | |
| 2257 | out: |
| 2258 | return err_code; |
| 2259 | |
| 2260 | error: |
| 2261 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2262 | goto out; |
| 2263 | } |
| 2264 | |
| 2265 | |
| 2266 | /* Parse the "downinter" server keyword */ |
| 2267 | static int srv_parse_check_downinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2268 | char **errmsg) |
| 2269 | { |
| 2270 | const char *err = NULL; |
| 2271 | unsigned int delay; |
| 2272 | int err_code = 0; |
| 2273 | |
| 2274 | if (!*(args[*cur_arg+1])) { |
| 2275 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 2276 | goto error; |
| 2277 | } |
| 2278 | |
| 2279 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 2280 | if (err == PARSE_TIME_OVER) { |
| 2281 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 2282 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2283 | goto error; |
| 2284 | } |
| 2285 | else if (err == PARSE_TIME_UNDER) { |
| 2286 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 2287 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2288 | goto error; |
| 2289 | } |
| 2290 | else if (err) { |
| 2291 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 2292 | *err, srv->id); |
| 2293 | goto error; |
| 2294 | } |
| 2295 | if (delay <= 0) { |
| 2296 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 2297 | delay, args[*cur_arg], srv->id); |
| 2298 | goto error; |
| 2299 | } |
| 2300 | srv->check.downinter = delay; |
| 2301 | |
| 2302 | out: |
| 2303 | return err_code; |
| 2304 | |
| 2305 | error: |
| 2306 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2307 | goto out; |
| 2308 | } |
| 2309 | |
| 2310 | /* Parse the "port" server keyword */ |
| 2311 | static int srv_parse_check_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2312 | char **errmsg) |
| 2313 | { |
| 2314 | int err_code = 0; |
| 2315 | |
| 2316 | if (!*(args[*cur_arg+1])) { |
| 2317 | memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]); |
| 2318 | goto error; |
| 2319 | } |
| 2320 | |
Amaury Denoyelle | 403dce8 | 2021-07-29 15:39:43 +0200 | [diff] [blame] | 2321 | /* Only increment maxsock for servers from the configuration. Dynamic |
| 2322 | * servers at the moment are not taken into account for the estimation |
| 2323 | * of the resources limits. |
| 2324 | */ |
| 2325 | if (global.mode & MODE_STARTING) |
| 2326 | global.maxsock++; |
| 2327 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2328 | srv->check.port = atol(args[*cur_arg+1]); |
William Dauchy | 4858fb2 | 2021-02-03 22:30:09 +0100 | [diff] [blame] | 2329 | /* if agentport was never set, we can use port */ |
| 2330 | if (!(srv->flags & SRV_F_AGENTPORT)) |
| 2331 | srv->agent.port = srv->check.port; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2332 | |
| 2333 | out: |
| 2334 | return err_code; |
| 2335 | |
| 2336 | error: |
| 2337 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2338 | goto out; |
| 2339 | } |
| 2340 | |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2341 | static struct srv_kw_list srv_kws = { "CHK", { }, { |
Amaury Denoyelle | 9ecee0f | 2021-07-23 16:34:58 +0200 | [diff] [blame] | 2342 | { "addr", srv_parse_addr, 1, 1, 1 }, /* IP address to send health to or to probe from agent-check */ |
| 2343 | { "agent-addr", srv_parse_agent_addr, 1, 1, 1 }, /* Enable an auxiliary agent check */ |
Amaury Denoyelle | b65f4ca | 2021-08-04 11:33:14 +0200 | [diff] [blame] | 2344 | { "agent-check", srv_parse_agent_check, 0, 1, 1 }, /* Enable agent checks */ |
Amaury Denoyelle | 9ecee0f | 2021-07-23 16:34:58 +0200 | [diff] [blame] | 2345 | { "agent-inter", srv_parse_agent_inter, 1, 1, 1 }, /* Set the interval between two agent checks */ |
| 2346 | { "agent-port", srv_parse_agent_port, 1, 1, 1 }, /* Set the TCP port used for agent checks. */ |
| 2347 | { "agent-send", srv_parse_agent_send, 1, 1, 1 }, /* Set string to send to agent. */ |
Amaury Denoyelle | 2fc4d39 | 2021-07-22 16:04:59 +0200 | [diff] [blame] | 2348 | { "check", srv_parse_check, 0, 1, 1 }, /* Enable health checks */ |
Amaury Denoyelle | 9ecee0f | 2021-07-23 16:34:58 +0200 | [diff] [blame] | 2349 | { "check-proto", srv_parse_check_proto, 1, 1, 1 }, /* Set the mux protocol for health checks */ |
| 2350 | { "check-send-proxy", srv_parse_check_send_proxy, 0, 1, 1 }, /* Enable PROXY protocol for health checks */ |
| 2351 | { "check-via-socks4", srv_parse_check_via_socks4, 0, 1, 1 }, /* Enable socks4 proxy for health checks */ |
Amaury Denoyelle | 76e10e7 | 2021-03-08 17:08:01 +0100 | [diff] [blame] | 2352 | { "no-agent-check", srv_parse_no_agent_check, 0, 1, 0 }, /* Do not enable any auxiliary agent check */ |
| 2353 | { "no-check", srv_parse_no_check, 0, 1, 0 }, /* Disable health checks */ |
| 2354 | { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1, 0 }, /* Disable PROXY protocol for health checks */ |
Amaury Denoyelle | 9ecee0f | 2021-07-23 16:34:58 +0200 | [diff] [blame] | 2355 | { "rise", srv_parse_check_rise, 1, 1, 1 }, /* Set rise value for health checks */ |
| 2356 | { "fall", srv_parse_check_fall, 1, 1, 1 }, /* Set fall value for health checks */ |
| 2357 | { "inter", srv_parse_check_inter, 1, 1, 1 }, /* Set inter value for health checks */ |
| 2358 | { "fastinter", srv_parse_check_fastinter, 1, 1, 1 }, /* Set fastinter value for health checks */ |
| 2359 | { "downinter", srv_parse_check_downinter, 1, 1, 1 }, /* Set downinter value for health checks */ |
| 2360 | { "port", srv_parse_check_port, 1, 1, 1 }, /* Set the TCP port used for health checks. */ |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2361 | { NULL, NULL, 0 }, |
| 2362 | }}; |
| 2363 | |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2364 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 2365 | |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2366 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2367 | * Local variables: |
| 2368 | * c-indent-level: 8 |
| 2369 | * c-basic-offset: 8 |
| 2370 | * End: |
| 2371 | */ |