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> |
Willy Tarreau | 9b39dc5 | 2014-07-08 00:54:10 +0200 | [diff] [blame] | 18 | #include <signal.h> |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 19 | #include <stdarg.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 20 | #include <stdio.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 21 | #include <stdlib.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <string.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 23 | #include <time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | #include <unistd.h> |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 25 | #include <sys/resource.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | #include <sys/socket.h> |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 27 | #include <sys/types.h> |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 28 | #include <sys/wait.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 29 | #include <netinet/in.h> |
Willy Tarreau | 1274bc4 | 2009-07-15 07:16:31 +0200 | [diff] [blame] | 30 | #include <netinet/tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | #include <arpa/inet.h> |
| 32 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 33 | #include <common/chunk.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 34 | #include <common/compat.h> |
| 35 | #include <common/config.h> |
| 36 | #include <common/mini-clist.h> |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 37 | #include <common/standard.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 38 | #include <common/time.h> |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 39 | #include <common/hathreads.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | |
| 41 | #include <types/global.h> |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 42 | #include <types/dns.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 43 | #include <types/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | |
| 45 | #include <proto/backend.h> |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 46 | #include <proto/checks.h> |
William Lallemand | 9ed6203 | 2016-11-21 17:49:11 +0100 | [diff] [blame] | 47 | #include <proto/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <proto/fd.h> |
| 49 | #include <proto/log.h> |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 50 | #include <proto/mux_pt.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 51 | #include <proto/queue.h> |
Willy Tarreau | c6f4ce8 | 2009-06-10 11:09:37 +0200 | [diff] [blame] | 52 | #include <proto/port_range.h> |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 53 | #include <proto/proto_tcp.h> |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 54 | #include <proto/protocol.h> |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 55 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | #include <proto/server.h> |
Willy Tarreau | 48d6bf2 | 2016-06-21 16:27:34 +0200 | [diff] [blame] | 57 | #include <proto/signal.h> |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 58 | #include <proto/stream_interface.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 59 | #include <proto/task.h> |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 60 | #include <proto/log.h> |
| 61 | #include <proto/dns.h> |
| 62 | #include <proto/proto_udp.h> |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 63 | #include <proto/ssl_sock.h> |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 64 | |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 65 | static int httpchk_expect(struct server *s, int done); |
Simon Horman | e16c1b3 | 2015-01-30 11:22:57 +0900 | [diff] [blame] | 66 | static int tcpcheck_get_step_id(struct check *); |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 67 | static char *tcpcheck_get_step_comment(struct check *); |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 68 | static int tcpcheck_main(struct check *); |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 69 | static void __event_srv_chk_w(struct conn_stream *cs); |
Olivier Houchard | 4501c3e | 2018-08-28 19:36:18 +0200 | [diff] [blame] | 70 | static int wake_srv_chk(struct conn_stream *cs); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 71 | static void __event_srv_chk_r(struct conn_stream *cs); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 72 | |
Christopher Faulet | 31c30fd | 2020-03-26 21:10:03 +0100 | [diff] [blame] | 73 | static int srv_check_healthcheck_port(struct check *chk); |
| 74 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 75 | DECLARE_STATIC_POOL(pool_head_email_alert, "email_alert", sizeof(struct email_alert)); |
| 76 | DECLARE_STATIC_POOL(pool_head_tcpcheck_rule, "tcpcheck_rule", sizeof(struct tcpcheck_rule)); |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 77 | |
| 78 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 79 | static const struct check_status check_statuses[HCHK_STATUS_SIZE] = { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 80 | [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" }, |
| 81 | [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" }, |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 82 | [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 83 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 84 | /* Below we have finished checks */ |
| 85 | [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" }, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 86 | [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" }, |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 87 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 88 | [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 89 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 90 | [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" }, |
| 91 | [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" }, |
| 92 | [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 93 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 94 | [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" }, |
| 95 | [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" }, |
| 96 | [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 97 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 98 | [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" }, |
| 99 | [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 100 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 101 | [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 102 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 103 | [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" }, |
| 104 | [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" }, |
| 105 | [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" }, |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 106 | |
| 107 | [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" }, |
| 108 | [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" }, |
Cyril Bonté | 77010d8 | 2014-08-07 01:55:37 +0200 | [diff] [blame] | 109 | [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 110 | }; |
| 111 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 112 | const struct extcheck_env extcheck_envs[EXTCHK_SIZE] = { |
| 113 | [EXTCHK_PATH] = { "PATH", EXTCHK_SIZE_EVAL_INIT }, |
| 114 | [EXTCHK_HAPROXY_PROXY_NAME] = { "HAPROXY_PROXY_NAME", EXTCHK_SIZE_EVAL_INIT }, |
| 115 | [EXTCHK_HAPROXY_PROXY_ID] = { "HAPROXY_PROXY_ID", EXTCHK_SIZE_EVAL_INIT }, |
| 116 | [EXTCHK_HAPROXY_PROXY_ADDR] = { "HAPROXY_PROXY_ADDR", EXTCHK_SIZE_EVAL_INIT }, |
| 117 | [EXTCHK_HAPROXY_PROXY_PORT] = { "HAPROXY_PROXY_PORT", EXTCHK_SIZE_EVAL_INIT }, |
| 118 | [EXTCHK_HAPROXY_SERVER_NAME] = { "HAPROXY_SERVER_NAME", EXTCHK_SIZE_EVAL_INIT }, |
| 119 | [EXTCHK_HAPROXY_SERVER_ID] = { "HAPROXY_SERVER_ID", EXTCHK_SIZE_EVAL_INIT }, |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 120 | [EXTCHK_HAPROXY_SERVER_ADDR] = { "HAPROXY_SERVER_ADDR", EXTCHK_SIZE_ADDR }, |
| 121 | [EXTCHK_HAPROXY_SERVER_PORT] = { "HAPROXY_SERVER_PORT", EXTCHK_SIZE_UINT }, |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 122 | [EXTCHK_HAPROXY_SERVER_MAXCONN] = { "HAPROXY_SERVER_MAXCONN", EXTCHK_SIZE_EVAL_INIT }, |
| 123 | [EXTCHK_HAPROXY_SERVER_CURCONN] = { "HAPROXY_SERVER_CURCONN", EXTCHK_SIZE_ULONG }, |
| 124 | }; |
| 125 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 126 | 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] | 127 | [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }}, |
| 128 | |
| 129 | [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }}, |
| 130 | [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }}, |
| 131 | |
| 132 | [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }}, |
| 133 | [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }}, |
| 134 | [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }}, |
| 135 | [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }}, |
| 136 | |
| 137 | [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }}, |
| 138 | [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }}, |
| 139 | [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }}, |
| 140 | }; |
| 141 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 142 | /* checks if <err> is a real error for errno or one that can be ignored, and |
| 143 | * return 0 for these ones or <err> for real ones. |
| 144 | */ |
| 145 | static inline int unclean_errno(int err) |
| 146 | { |
| 147 | if (err == EAGAIN || err == EINPROGRESS || |
| 148 | err == EISCONN || err == EALREADY) |
| 149 | return 0; |
| 150 | return err; |
| 151 | } |
| 152 | |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 153 | /* |
| 154 | * Convert check_status code to description |
| 155 | */ |
| 156 | const char *get_check_status_description(short check_status) { |
| 157 | |
| 158 | const char *desc; |
| 159 | |
| 160 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 161 | desc = check_statuses[check_status].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 162 | else |
| 163 | desc = NULL; |
| 164 | |
| 165 | if (desc && *desc) |
| 166 | return desc; |
| 167 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 168 | return check_statuses[HCHK_STATUS_UNKNOWN].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* |
| 172 | * Convert check_status code to short info |
| 173 | */ |
| 174 | const char *get_check_status_info(short check_status) { |
| 175 | |
| 176 | const char *info; |
| 177 | |
| 178 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 179 | info = check_statuses[check_status].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 180 | else |
| 181 | info = NULL; |
| 182 | |
| 183 | if (info && *info) |
| 184 | return info; |
| 185 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 186 | return check_statuses[HCHK_STATUS_UNKNOWN].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 187 | } |
| 188 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 189 | const char *get_analyze_status(short analyze_status) { |
| 190 | |
| 191 | const char *desc; |
| 192 | |
| 193 | if (analyze_status < HANA_STATUS_SIZE) |
| 194 | desc = analyze_statuses[analyze_status].desc; |
| 195 | else |
| 196 | desc = NULL; |
| 197 | |
| 198 | if (desc && *desc) |
| 199 | return desc; |
| 200 | else |
| 201 | return analyze_statuses[HANA_STATUS_UNKNOWN].desc; |
| 202 | } |
| 203 | |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 204 | /* |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 205 | * Set check->status, update check->duration and fill check->result with |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 206 | * an adequate CHK_RES_* value. The new check->health is computed based |
| 207 | * on the result. |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 208 | * |
| 209 | * Show information in logs about failed health check if server is UP |
| 210 | * or succeeded health checks if server is DOWN. |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 211 | */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 212 | static 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] | 213 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 214 | struct server *s = check->server; |
Willy Tarreau | bef1b32 | 2014-05-13 21:01:39 +0200 | [diff] [blame] | 215 | short prev_status = check->status; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 216 | int report = 0; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 217 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 218 | if (status == HCHK_STATUS_START) { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 219 | check->result = CHK_RES_UNKNOWN; /* no result yet */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 220 | check->desc[0] = '\0'; |
| 221 | check->start = now; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 222 | return; |
| 223 | } |
| 224 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 225 | if (!check->status) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 226 | return; |
| 227 | |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 228 | if (desc && *desc) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 229 | strncpy(check->desc, desc, HCHK_DESC_LEN-1); |
| 230 | check->desc[HCHK_DESC_LEN-1] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 231 | } else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 232 | check->desc[0] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 233 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 234 | check->status = status; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 235 | if (check_statuses[status].result) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 236 | check->result = check_statuses[status].result; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 237 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 238 | if (status == HCHK_STATUS_HANA) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 239 | check->duration = -1; |
| 240 | else if (!tv_iszero(&check->start)) { |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 241 | /* set_server_check_status() may be called more than once */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 242 | check->duration = tv_ms_elapsed(&check->start, &now); |
| 243 | tv_zero(&check->start); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 244 | } |
| 245 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 246 | /* no change is expected if no state change occurred */ |
| 247 | if (check->result == CHK_RES_NEUTRAL) |
| 248 | return; |
| 249 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 250 | /* If the check was really just sending a mail, it won't have an |
| 251 | * associated server, so we're done now. |
| 252 | */ |
| 253 | if (!s) |
| 254 | return; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 255 | report = 0; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 256 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 257 | switch (check->result) { |
| 258 | case CHK_RES_FAILED: |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 259 | /* Failure to connect to the agent as a secondary check should not |
| 260 | * cause the server to be marked down. |
| 261 | */ |
| 262 | if ((!(check->state & CHK_ST_AGENT) || |
Simon Horman | eaabd52 | 2015-02-26 11:26:17 +0900 | [diff] [blame] | 263 | (check->status >= HCHK_STATUS_L57DATA)) && |
Christopher Faulet | b119a79 | 2018-05-02 12:12:45 +0200 | [diff] [blame] | 264 | (check->health > 0)) { |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 265 | _HA_ATOMIC_ADD(&s->counters.failed_checks, 1); |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 266 | report = 1; |
| 267 | check->health--; |
| 268 | if (check->health < check->rise) |
| 269 | check->health = 0; |
| 270 | } |
| 271 | break; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 272 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 273 | case CHK_RES_PASSED: |
| 274 | case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */ |
| 275 | if ((check->health < check->rise + check->fall - 1) && |
| 276 | (check->result == CHK_RES_PASSED || check->health > 0)) { |
| 277 | report = 1; |
| 278 | check->health++; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 279 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 280 | if (check->health >= check->rise) |
| 281 | check->health = check->rise + check->fall - 1; /* OK now */ |
| 282 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 283 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 284 | /* clear consecutive_errors if observing is enabled */ |
| 285 | if (s->onerror) |
| 286 | s->consecutive_errors = 0; |
| 287 | break; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 288 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 289 | default: |
| 290 | break; |
| 291 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 292 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 293 | if (s->proxy->options2 & PR_O2_LOGHCHKS && |
| 294 | (status != prev_status || report)) { |
| 295 | chunk_printf(&trash, |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 296 | "%s check for %sserver %s/%s %s%s", |
| 297 | (check->state & CHK_ST_AGENT) ? "Agent" : "Health", |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 298 | s->flags & SRV_F_BACKUP ? "backup " : "", |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 299 | s->proxy->id, s->id, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 300 | (check->result == CHK_RES_CONDPASS) ? "conditionally ":"", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 301 | (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 302 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 303 | srv_append_status(&trash, s, check, -1, 0); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 304 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 305 | chunk_appendf(&trash, ", status: %d/%d %s", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 306 | (check->health >= check->rise) ? check->health - check->rise + 1 : check->health, |
| 307 | (check->health >= check->rise) ? check->fall : check->rise, |
| 308 | (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 309 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 310 | ha_warning("%s.\n", trash.area); |
| 311 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
| 312 | send_email_alert(s, LOG_INFO, "%s", trash.area); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 313 | } |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 314 | } |
| 315 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 316 | /* Marks the check <check>'s server down if the current check is already failed |
| 317 | * and the server is not down yet nor in maintenance. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 318 | */ |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 319 | static void check_notify_failure(struct check *check) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 320 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 321 | struct server *s = check->server; |
Simon Horman | e0d1bfb | 2011-06-21 14:34:58 +0900 | [diff] [blame] | 322 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 323 | /* The agent secondary check should only cause a server to be marked |
| 324 | * as down if check->status is HCHK_STATUS_L7STS, which indicates |
| 325 | * that the agent returned "fail", "stopped" or "down". |
| 326 | * The implication here is that failure to connect to the agent |
| 327 | * as a secondary check should not cause the server to be marked |
| 328 | * down. */ |
| 329 | if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS) |
| 330 | return; |
| 331 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 332 | if (check->health > 0) |
| 333 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 334 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 335 | /* 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] | 336 | 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] | 337 | } |
| 338 | |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 339 | /* 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] | 340 | * it isn't in maintenance, it is not tracking a down server and other checks |
| 341 | * comply. The rule is simple : by default, a server is up, unless any of the |
| 342 | * following conditions is true : |
| 343 | * - health check failed (check->health < rise) |
| 344 | * - agent check failed (agent->health < rise) |
| 345 | * - the server tracks a down server (track && track->state == STOPPED) |
| 346 | * Note that if the server has a slowstart, it will switch to STARTING instead |
| 347 | * of RUNNING. Also, only the health checks support the nolb mode, so the |
| 348 | * agent's success may not take the server out of this mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 349 | */ |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 350 | static void check_notify_success(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 351 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 352 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 353 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 354 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 355 | return; |
Cyril Bonté | cd19e51 | 2010-01-31 22:34:03 +0100 | [diff] [blame] | 356 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 357 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 358 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 359 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 360 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 361 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 362 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 363 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 364 | return; |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 365 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 366 | if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING) |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 367 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 368 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 369 | 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] | 370 | } |
| 371 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 372 | /* Marks the check <check> as valid and tries to set its server into stopping mode |
| 373 | * if it was running or starting, and provided it isn't in maintenance and other |
| 374 | * checks comply. The conditions for the server to be marked in stopping mode are |
| 375 | * the same as for it to be turned up. Also, only the health checks support the |
| 376 | * nolb mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 377 | */ |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 378 | static void check_notify_stopping(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 379 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 380 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 381 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 382 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 383 | return; |
| 384 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 385 | if (check->state & CHK_ST_AGENT) |
| 386 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 387 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 388 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 389 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 390 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 391 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 392 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 393 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 394 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 395 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 396 | |
Willy Tarreau | b26881a | 2017-12-23 11:16:49 +0100 | [diff] [blame] | 397 | 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] | 398 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 399 | |
Willy Tarreau | 9fe7aae | 2013-12-31 23:47:37 +0100 | [diff] [blame] | 400 | /* note: use health_adjust() only, which first checks that the observe mode is |
| 401 | * enabled. |
| 402 | */ |
| 403 | void __health_adjust(struct server *s, short status) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 404 | { |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 405 | int failed; |
| 406 | int expire; |
| 407 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 408 | if (s->observe >= HANA_OBS_SIZE) |
| 409 | return; |
| 410 | |
Willy Tarreau | bb95666 | 2013-01-24 00:37:39 +0100 | [diff] [blame] | 411 | if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc) |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 412 | return; |
| 413 | |
| 414 | switch (analyze_statuses[status].lr[s->observe - 1]) { |
| 415 | case 1: |
| 416 | failed = 1; |
| 417 | break; |
| 418 | |
| 419 | case 2: |
| 420 | failed = 0; |
| 421 | break; |
| 422 | |
| 423 | default: |
| 424 | return; |
| 425 | } |
| 426 | |
| 427 | if (!failed) { |
| 428 | /* good: clear consecutive_errors */ |
| 429 | s->consecutive_errors = 0; |
| 430 | return; |
| 431 | } |
| 432 | |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 433 | _HA_ATOMIC_ADD(&s->consecutive_errors, 1); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 434 | |
| 435 | if (s->consecutive_errors < s->consecutive_errors_limit) |
| 436 | return; |
| 437 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 438 | chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s", |
| 439 | s->consecutive_errors, get_analyze_status(status)); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 440 | |
| 441 | switch (s->onerror) { |
| 442 | case HANA_ONERR_FASTINTER: |
| 443 | /* force fastinter - nothing to do here as all modes force it */ |
| 444 | break; |
| 445 | |
| 446 | case HANA_ONERR_SUDDTH: |
| 447 | /* simulate a pre-fatal failed health check */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 448 | if (s->check.health > s->check.rise) |
| 449 | s->check.health = s->check.rise + 1; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 450 | |
| 451 | /* no break - fall through */ |
| 452 | |
| 453 | case HANA_ONERR_FAILCHK: |
| 454 | /* simulate a failed health check */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 455 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 456 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 457 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 458 | break; |
| 459 | |
| 460 | case HANA_ONERR_MARKDWN: |
| 461 | /* mark server down */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 462 | s->check.health = s->check.rise; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 463 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 464 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 465 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 466 | break; |
| 467 | |
| 468 | default: |
| 469 | /* write a warning? */ |
| 470 | break; |
| 471 | } |
| 472 | |
| 473 | s->consecutive_errors = 0; |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 474 | _HA_ATOMIC_ADD(&s->counters.failed_hana, 1); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 475 | |
Simon Horman | 6618300 | 2013-02-23 10:16:43 +0900 | [diff] [blame] | 476 | if (s->check.fastinter) { |
| 477 | expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter)); |
Sergiy Prykhodko | 1d57e50 | 2013-09-21 12:05:00 +0300 | [diff] [blame] | 478 | if (s->check.task->expire > expire) { |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 479 | s->check.task->expire = expire; |
Sergiy Prykhodko | 1d57e50 | 2013-09-21 12:05:00 +0300 | [diff] [blame] | 480 | /* requeue check task with new expire */ |
| 481 | task_queue(s->check.task); |
| 482 | } |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | |
Willy Tarreau | a1dab55 | 2014-04-14 15:04:54 +0200 | [diff] [blame] | 486 | static int httpchk_build_status_header(struct server *s, char *buffer, int size) |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 487 | { |
| 488 | int sv_state; |
| 489 | int ratio; |
| 490 | int hlen = 0; |
Joseph Lynch | 514061c | 2015-01-15 17:52:59 -0800 | [diff] [blame] | 491 | char addr[46]; |
| 492 | char port[6]; |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 493 | const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d", |
| 494 | "UP %d/%d", "UP", |
| 495 | "NOLB %d/%d", "NOLB", |
| 496 | "no check" }; |
| 497 | |
| 498 | memcpy(buffer + hlen, "X-Haproxy-Server-State: ", 24); |
| 499 | hlen += 24; |
| 500 | |
Willy Tarreau | ff5ae35 | 2013-12-11 20:36:34 +0100 | [diff] [blame] | 501 | if (!(s->check.state & CHK_ST_ENABLED)) |
| 502 | sv_state = 6; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 503 | else if (s->cur_state != SRV_ST_STOPPED) { |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 504 | if (s->check.health == s->check.rise + s->check.fall - 1) |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 505 | sv_state = 3; /* UP */ |
| 506 | else |
| 507 | sv_state = 2; /* going down */ |
| 508 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 509 | if (s->cur_state == SRV_ST_STOPPING) |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 510 | sv_state += 2; |
| 511 | } else { |
Simon Horman | 125d099 | 2013-02-24 17:23:38 +0900 | [diff] [blame] | 512 | if (s->check.health) |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 513 | sv_state = 1; /* going up */ |
| 514 | else |
| 515 | sv_state = 0; /* DOWN */ |
| 516 | } |
| 517 | |
Willy Tarreau | a1dab55 | 2014-04-14 15:04:54 +0200 | [diff] [blame] | 518 | hlen += snprintf(buffer + hlen, size - hlen, |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 519 | srv_hlt_st[sv_state], |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 520 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health), |
| 521 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise)); |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 522 | |
Joseph Lynch | 514061c | 2015-01-15 17:52:59 -0800 | [diff] [blame] | 523 | addr_to_str(&s->addr, addr, sizeof(addr)); |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 524 | if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6) |
| 525 | snprintf(port, sizeof(port), "%u", s->svc_port); |
| 526 | else |
| 527 | *port = 0; |
Joseph Lynch | 514061c | 2015-01-15 17:52:59 -0800 | [diff] [blame] | 528 | |
| 529 | hlen += snprintf(buffer + hlen, size - hlen, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d", |
| 530 | addr, port, s->proxy->id, s->id, |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 531 | global.node, |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 532 | (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 533 | (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
| 534 | s->cur_sess, s->proxy->beconn - s->proxy->nbpend, |
| 535 | s->nbpend); |
| 536 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 537 | if ((s->cur_state == SRV_ST_STARTING) && |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 538 | now.tv_sec < s->last_change + s->slowstart && |
| 539 | now.tv_sec >= s->last_change) { |
| 540 | ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart); |
Willy Tarreau | a1dab55 | 2014-04-14 15:04:54 +0200 | [diff] [blame] | 541 | hlen += snprintf(buffer + hlen, size - hlen, "; throttle=%d%%", ratio); |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | buffer[hlen++] = '\r'; |
| 545 | buffer[hlen++] = '\n'; |
| 546 | |
| 547 | return hlen; |
| 548 | } |
| 549 | |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 550 | /* Check the connection. If an error has already been reported or the socket is |
| 551 | * closed, keep errno intact as it is supposed to contain the valid error code. |
| 552 | * If no error is reported, check the socket's error queue using getsockopt(). |
| 553 | * Warning, this must be done only once when returning from poll, and never |
| 554 | * after an I/O error was attempted, otherwise the error queue might contain |
| 555 | * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the |
| 556 | * socket. Returns non-zero if an error was reported, zero if everything is |
| 557 | * clean (including a properly closed socket). |
| 558 | */ |
| 559 | static int retrieve_errno_from_socket(struct connection *conn) |
| 560 | { |
| 561 | int skerr; |
| 562 | socklen_t lskerr = sizeof(skerr); |
| 563 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 564 | if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 565 | return 1; |
| 566 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 567 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 568 | return 0; |
| 569 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 570 | if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 571 | errno = skerr; |
| 572 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 573 | errno = unclean_errno(errno); |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 574 | |
| 575 | if (!errno) { |
| 576 | /* we could not retrieve an error, that does not mean there is |
| 577 | * none. Just don't change anything and only report the prior |
| 578 | * error if any. |
| 579 | */ |
| 580 | if (conn->flags & CO_FL_ERROR) |
| 581 | return 1; |
| 582 | else |
| 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH; |
| 587 | return 1; |
| 588 | } |
| 589 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 590 | /* Try to collect as much information as possible on the connection status, |
| 591 | * and adjust the server status accordingly. It may make use of <errno_bck> |
| 592 | * if non-null when the caller is absolutely certain of its validity (eg: |
| 593 | * checked just after a syscall). If the caller doesn't have a valid errno, |
| 594 | * it can pass zero, and retrieve_errno_from_socket() will be called to try |
| 595 | * to extract errno from the socket. If no error is reported, it will consider |
| 596 | * the <expired> flag. This is intended to be used when a connection error was |
| 597 | * reported in conn->flags or when a timeout was reported in <expired>. The |
| 598 | * function takes care of not updating a server status which was already set. |
| 599 | * All situations where at least one of <expired> or CO_FL_ERROR are set |
| 600 | * produce a status. |
| 601 | */ |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 602 | static 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] | 603 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 604 | struct conn_stream *cs = check->cs; |
| 605 | struct connection *conn = cs_conn(cs); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 606 | const char *err_msg; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 607 | struct buffer *chk; |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 608 | int step; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 609 | char *comment; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 610 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 611 | if (check->result != CHK_RES_UNKNOWN) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 612 | return; |
| 613 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 614 | errno = unclean_errno(errno_bck); |
| 615 | if (conn && errno) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 616 | retrieve_errno_from_socket(conn); |
| 617 | |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 618 | if (conn && !(conn->flags & CO_FL_ERROR) && |
| 619 | !(cs->flags & CS_FL_ERROR) && !expired) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 620 | return; |
| 621 | |
| 622 | /* we'll try to build a meaningful error message depending on the |
| 623 | * context of the error possibly present in conn->err_code, and the |
| 624 | * socket error possibly collected above. This is useful to know the |
| 625 | * exact step of the L6 layer (eg: SSL handshake). |
| 626 | */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 627 | chk = get_trash_chunk(); |
| 628 | |
| 629 | if (check->type == PR_O2_TCPCHK_CHK) { |
Simon Horman | e16c1b3 | 2015-01-30 11:22:57 +0900 | [diff] [blame] | 630 | step = tcpcheck_get_step_id(check); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 631 | if (!step) |
| 632 | chunk_printf(chk, " at initial connection step of tcp-check"); |
| 633 | else { |
| 634 | chunk_printf(chk, " at step %d of tcp-check", step); |
| 635 | /* we were looking for a string */ |
| 636 | if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_CONNECT) { |
| 637 | if (check->last_started_step->port) |
| 638 | chunk_appendf(chk, " (connect port %d)" ,check->last_started_step->port); |
| 639 | else |
| 640 | chunk_appendf(chk, " (connect)"); |
| 641 | } |
| 642 | else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) { |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 643 | struct tcpcheck_expect *expect = &check->last_started_step->expect; |
| 644 | |
| 645 | switch (expect->type) { |
| 646 | case TCPCHK_EXPECT_STRING: |
| 647 | chunk_appendf(chk, " (expect string '%s')", expect->string); |
| 648 | break; |
| 649 | case TCPCHK_EXPECT_BINARY: |
| 650 | chunk_appendf(chk, " (expect binary '%s')", expect->string); |
| 651 | break; |
| 652 | case TCPCHK_EXPECT_REGEX: |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 653 | chunk_appendf(chk, " (expect regex)"); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 654 | break; |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 655 | case TCPCHK_EXPECT_REGEX_BINARY: |
| 656 | chunk_appendf(chk, " (expect binary regex)"); |
| 657 | break; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 658 | case TCPCHK_EXPECT_UNDEF: |
| 659 | chunk_appendf(chk, " (undefined expect!)"); |
| 660 | break; |
| 661 | } |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 662 | } |
| 663 | else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_SEND) { |
| 664 | chunk_appendf(chk, " (send)"); |
| 665 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 666 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 667 | comment = tcpcheck_get_step_comment(check); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 668 | if (comment) |
| 669 | chunk_appendf(chk, " comment: '%s'", comment); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 673 | if (conn && conn->err_code) { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 674 | if (unclean_errno(errno)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 675 | chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), |
| 676 | chk->area); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 677 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 678 | chunk_printf(&trash, "%s%s", conn_err_code_str(conn), |
| 679 | chk->area); |
| 680 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 681 | } |
| 682 | else { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 683 | if (unclean_errno(errno)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 684 | chunk_printf(&trash, "%s%s", strerror(errno), |
| 685 | chk->area); |
| 686 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 687 | } |
| 688 | else { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 689 | err_msg = chk->area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 690 | } |
| 691 | } |
| 692 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 693 | if (check->state & CHK_ST_PORT_MISS) { |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 694 | /* NOTE: this is reported after <fall> tries */ |
| 695 | chunk_printf(chk, "No port available for the TCP connection"); |
| 696 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 697 | } |
| 698 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 699 | if (!conn) { |
| 700 | /* connection allocation error before the connection was established */ |
| 701 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 702 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 703 | else if (conn->flags & CO_FL_WAIT_L4_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 704 | /* L4 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 705 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 706 | set_server_check_status(check, HCHK_STATUS_L4CON, err_msg); |
| 707 | else if (expired) |
| 708 | set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 709 | |
| 710 | /* |
| 711 | * might be due to a server IP change. |
| 712 | * Let's trigger a DNS resolution if none are currently running. |
| 713 | */ |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 714 | if (check->server) |
| 715 | dns_trigger_resolution(check->server->dns_requester); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 716 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 717 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 718 | else if (conn->flags & CO_FL_WAIT_L6_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 719 | /* L6 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 720 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 721 | set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg); |
| 722 | else if (expired) |
| 723 | set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg); |
| 724 | } |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 725 | else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 726 | /* I/O error after connection was established and before we could diagnose */ |
| 727 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 728 | } |
| 729 | else if (expired) { |
| 730 | /* connection established but expired check */ |
| 731 | if (check->type == PR_O2_SSL3_CHK) |
| 732 | set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg); |
| 733 | else /* HTTP, SMTP, ... */ |
| 734 | set_server_check_status(check, HCHK_STATUS_L7TOUT, err_msg); |
| 735 | } |
| 736 | |
| 737 | return; |
| 738 | } |
| 739 | |
Olivier Houchard | 5c110b9 | 2018-08-14 17:04:58 +0200 | [diff] [blame] | 740 | /* This function checks if any I/O is wanted, and if so, attempts to do so */ |
| 741 | static struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned short state) |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 742 | { |
Olivier Houchard | 26e1a8f | 2018-09-12 15:15:12 +0200 | [diff] [blame] | 743 | struct check *check = ctx; |
| 744 | struct conn_stream *cs = check->cs; |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 745 | struct email_alertq *q = container_of(check, typeof(*q), check); |
Olivier Houchard | bc89ad8 | 2019-07-09 17:28:51 +0200 | [diff] [blame] | 746 | int ret = 0; |
Olivier Houchard | 4501c3e | 2018-08-28 19:36:18 +0200 | [diff] [blame] | 747 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 748 | if (!(check->wait_list.events & SUB_RETRY_SEND)) |
Olivier Houchard | bc89ad8 | 2019-07-09 17:28:51 +0200 | [diff] [blame] | 749 | ret = wake_srv_chk(cs); |
| 750 | if (ret == 0 && !(check->wait_list.events & SUB_RETRY_RECV)) { |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 751 | if (check->server) |
| 752 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
| 753 | else |
| 754 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 755 | __event_srv_chk_r(cs); |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 756 | if (check->server) |
| 757 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
| 758 | else |
| 759 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 760 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 761 | return NULL; |
| 762 | } |
| 763 | |
| 764 | /* same as above but protected by the server lock. |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 765 | * |
| 766 | * Please do NOT place any return statement in this function and only leave |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 767 | * via the out label. NOTE THAT THIS FUNCTION DOESN'T LOCK, YOU PROBABLY WANT |
| 768 | * TO USE event_srv_chk_w() instead. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 769 | */ |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 770 | static void __event_srv_chk_w(struct conn_stream *cs) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 771 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 772 | struct connection *conn = cs->conn; |
| 773 | struct check *check = cs->data; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 774 | struct server *s = check->server; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 775 | struct task *t = check->task; |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 776 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 777 | if (unlikely(check->result == CHK_RES_FAILED)) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 778 | goto out_wakeup; |
| 779 | |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 780 | if (retrieve_errno_from_socket(conn)) { |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 781 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 782 | goto out_wakeup; |
| 783 | } |
Krzysztof Piotr Oledzki | 6492db5 | 2010-01-02 22:03:01 +0100 | [diff] [blame] | 784 | |
Willy Tarreau | 06559ac | 2013-12-05 01:53:08 +0100 | [diff] [blame] | 785 | /* here, we know that the connection is established. That's enough for |
| 786 | * a pure TCP check. |
| 787 | */ |
| 788 | if (!check->type) |
| 789 | goto out_wakeup; |
| 790 | |
Willy Tarreau | c09572f | 2017-10-04 11:58:22 +0200 | [diff] [blame] | 791 | /* wake() will take care of calling tcpcheck_main() */ |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 792 | if (check->type == PR_O2_TCPCHK_CHK) |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 793 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 794 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 795 | if (b_data(&check->bo)) { |
Olivier Houchard | ed0f207 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 796 | cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 797 | b_realign_if_empty(&check->bo); |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 798 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 799 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 800 | goto out_wakeup; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 801 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 802 | if (b_data(&check->bo)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 803 | conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list); |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 804 | goto out; |
| 805 | } |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 806 | } |
Willy Tarreau | 6996e15 | 2007-04-30 14:37:43 +0200 | [diff] [blame] | 807 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 808 | /* full request sent, we allow up to <timeout.check> if nonzero for a response */ |
| 809 | if (s->proxy->timeout.check) { |
| 810 | t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check); |
| 811 | task_queue(t); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 812 | } |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 813 | goto out; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 814 | |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 815 | out_wakeup: |
Willy Tarreau | fdccded | 2008-08-29 18:19:04 +0200 | [diff] [blame] | 816 | task_wakeup(t, TASK_WOKEN_IO); |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 817 | out: |
| 818 | return; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 819 | } |
| 820 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 821 | /* |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 822 | * This function is used only for server health-checks. It handles the server's |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 823 | * reply to an HTTP request, SSL HELLO or MySQL client Auth. It calls |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 824 | * set_server_check_status() to update check->status, check->duration |
| 825 | * and check->result. |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 826 | |
| 827 | * The set_server_check_status function is called with HCHK_STATUS_L7OKD if |
| 828 | * an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP server |
| 829 | * returns 2xx, HCHK_STATUS_L6OK if an SSL server returns at least 5 bytes in |
| 830 | * response to an SSL HELLO (the principle is that this is enough to |
| 831 | * distinguish between an SSL server and a pure TCP relay). All other cases will |
| 832 | * call it with a proper error status like HCHK_STATUS_L7STS, HCHK_STATUS_L6RSP, |
| 833 | * etc. |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 834 | * |
| 835 | * Please do NOT place any return statement in this function and only leave |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 836 | * via the out label. |
| 837 | * |
| 838 | * This must be called with the server lock held. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 839 | */ |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 840 | static void __event_srv_chk_r(struct conn_stream *cs) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 841 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 842 | struct connection *conn = cs->conn; |
| 843 | struct check *check = cs->data; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 844 | struct server *s = check->server; |
| 845 | struct task *t = check->task; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 846 | char *desc; |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 847 | int done; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 848 | unsigned short msglen; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 849 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 850 | if (unlikely(check->result == CHK_RES_FAILED)) |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 851 | goto out_wakeup; |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 852 | |
Willy Tarreau | c09572f | 2017-10-04 11:58:22 +0200 | [diff] [blame] | 853 | /* wake() will take care of calling tcpcheck_main() */ |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 854 | if (check->type == PR_O2_TCPCHK_CHK) |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 855 | goto out; |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 856 | |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 857 | /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available |
| 858 | * but the connection was closed on the remote end. Fortunately, recv still |
| 859 | * works correctly and we don't need to do the getsockopt() on linux. |
| 860 | */ |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 861 | |
| 862 | /* Set buffer to point to the end of the data already read, and check |
| 863 | * that there is free space remaining. If the buffer is full, proceed |
| 864 | * with running the checks without attempting another socket read. |
| 865 | */ |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 866 | |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 867 | done = 0; |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 868 | |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 869 | cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0); |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 870 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 871 | done = 1; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 872 | if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) { |
Willy Tarreau | f150317 | 2012-09-28 19:39:36 +0200 | [diff] [blame] | 873 | /* Report network errors only if we got no other data. Otherwise |
| 874 | * we'll let the upper layers decide whether the response is OK |
| 875 | * or not. It is very common that an RST sent by the server is |
| 876 | * reported as an error just after the last data chunk. |
| 877 | */ |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 878 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | c1a0796 | 2010-03-16 20:55:43 +0100 | [diff] [blame] | 879 | goto out_wakeup; |
| 880 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 881 | } |
| 882 | |
Willy Tarreau | 0f0393f | 2019-09-24 10:43:03 +0200 | [diff] [blame] | 883 | /* the rest of the code below expects the connection to be ready! */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 884 | if (conn->flags & CO_FL_WAIT_XPRT && !done) |
Willy Tarreau | 0f0393f | 2019-09-24 10:43:03 +0200 | [diff] [blame] | 885 | goto wait_more_data; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 886 | |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 887 | /* Intermediate or complete response received. |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 888 | * Terminate string in b_head(&check->bi) buffer. |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 889 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 890 | if (b_data(&check->bi) < b_size(&check->bi)) |
| 891 | b_head(&check->bi)[b_data(&check->bi)] = '\0'; |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 892 | else { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 893 | b_head(&check->bi)[b_data(&check->bi) - 1] = '\0'; |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 894 | done = 1; /* buffer full, don't wait for more data */ |
| 895 | } |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 896 | |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 897 | /* Run the checks... */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 898 | switch (check->type) { |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 899 | case PR_O2_HTTP_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 900 | if (!done && b_data(&check->bi) < strlen("HTTP/1.0 000\r")) |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 901 | goto wait_more_data; |
| 902 | |
Willy Tarreau | c7dd71a | 2007-11-30 08:33:21 +0100 | [diff] [blame] | 903 | /* Check if the server speaks HTTP 1.X */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 904 | if ((b_data(&check->bi) < strlen("HTTP/1.0 000\r")) || |
| 905 | (memcmp(b_head(&check->bi), "HTTP/1.", 7) != 0 || |
| 906 | (*(b_head(&check->bi) + 12) != ' ' && *(b_head(&check->bi) + 12) != '\r')) || |
| 907 | !isdigit((unsigned char) *(b_head(&check->bi) + 9)) || !isdigit((unsigned char) *(b_head(&check->bi) + 10)) || |
| 908 | !isdigit((unsigned char) *(b_head(&check->bi) + 11))) { |
| 909 | cut_crlf(b_head(&check->bi)); |
| 910 | set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi)); |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 911 | |
Willy Tarreau | c7dd71a | 2007-11-30 08:33:21 +0100 | [diff] [blame] | 912 | goto out_wakeup; |
| 913 | } |
| 914 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 915 | check->code = str2uic(b_head(&check->bi) + 9); |
| 916 | desc = ltrim(b_head(&check->bi) + 12, ' '); |
Christopher Faulet | c2a89a6 | 2017-10-23 15:54:24 +0200 | [diff] [blame] | 917 | |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 918 | if ((s->proxy->options & PR_O_DISABLE404) && |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 919 | (s->next_state != SRV_ST_STOPPED) && (check->code == 404)) { |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 920 | /* 404 may be accepted as "stopping" only if the server was up */ |
| 921 | cut_crlf(desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 922 | set_server_check_status(check, HCHK_STATUS_L7OKCD, desc); |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 923 | } |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 924 | else if (s->proxy->options2 & PR_O2_EXP_TYPE) { |
| 925 | /* Run content verification check... We know we have at least 13 chars */ |
| 926 | if (!httpchk_expect(s, done)) |
| 927 | goto wait_more_data; |
| 928 | } |
| 929 | /* check the reply : HTTP/1.X 2xx and 3xx are OK */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 930 | else if (*(b_head(&check->bi) + 9) == '2' || *(b_head(&check->bi) + 9) == '3') { |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 931 | cut_crlf(desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 932 | set_server_check_status(check, HCHK_STATUS_L7OKD, desc); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 933 | } |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 934 | else { |
| 935 | cut_crlf(desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 936 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 937 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 938 | break; |
| 939 | |
| 940 | case PR_O2_SSL3_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 941 | if (!done && b_data(&check->bi) < 5) |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 942 | goto wait_more_data; |
| 943 | |
Willy Tarreau | c7dd71a | 2007-11-30 08:33:21 +0100 | [diff] [blame] | 944 | /* Check for SSLv3 alert or handshake */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 945 | if ((b_data(&check->bi) >= 5) && (*b_head(&check->bi) == 0x15 || *b_head(&check->bi) == 0x16)) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 946 | set_server_check_status(check, HCHK_STATUS_L6OK, NULL); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 947 | else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 948 | set_server_check_status(check, HCHK_STATUS_L6RSP, NULL); |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 949 | break; |
| 950 | |
| 951 | case PR_O2_SMTP_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 952 | if (!done && b_data(&check->bi) < strlen("000\r")) |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 953 | goto wait_more_data; |
| 954 | |
Willy Tarreau | 5488a62 | 2019-08-06 16:26:31 +0200 | [diff] [blame] | 955 | /* do not reset when closing, servers don't like this */ |
| 956 | if (conn_ctrl_ready(cs->conn)) |
| 957 | fdtab[cs->conn->handle.fd].linger_risk = 0; |
| 958 | |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 959 | /* Check if the server speaks SMTP */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 960 | if ((b_data(&check->bi) < strlen("000\r")) || |
| 961 | (*(b_head(&check->bi) + 3) != ' ' && *(b_head(&check->bi) + 3) != '\r') || |
| 962 | !isdigit((unsigned char) *b_head(&check->bi)) || !isdigit((unsigned char) *(b_head(&check->bi) + 1)) || |
| 963 | !isdigit((unsigned char) *(b_head(&check->bi) + 2))) { |
| 964 | cut_crlf(b_head(&check->bi)); |
| 965 | set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi)); |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 966 | goto out_wakeup; |
| 967 | } |
| 968 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 969 | check->code = str2uic(b_head(&check->bi)); |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 970 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 971 | desc = ltrim(b_head(&check->bi) + 3, ' '); |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 972 | cut_crlf(desc); |
| 973 | |
Willy Tarreau | c7dd71a | 2007-11-30 08:33:21 +0100 | [diff] [blame] | 974 | /* Check for SMTP code 2xx (should be 250) */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 975 | if (*b_head(&check->bi) == '2') |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 976 | set_server_check_status(check, HCHK_STATUS_L7OKD, desc); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 977 | else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 978 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 979 | break; |
| 980 | |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 981 | case PR_O2_LB_AGENT_CHK: { |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 982 | int status = HCHK_STATUS_CHECKED; |
| 983 | const char *hs = NULL; /* health status */ |
| 984 | const char *as = NULL; /* admin status */ |
| 985 | const char *ps = NULL; /* performance status */ |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 986 | const char *cs = NULL; /* maxconn */ |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 987 | const char *err = NULL; /* first error to report */ |
| 988 | const char *wrn = NULL; /* first warning to report */ |
| 989 | char *cmd, *p; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 990 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 991 | /* We're getting an agent check response. The agent could |
| 992 | * have been disabled in the mean time with a long check |
| 993 | * still pending. It is important that we ignore the whole |
| 994 | * response. |
| 995 | */ |
| 996 | if (!(check->server->agent.state & CHK_ST_ENABLED)) |
| 997 | break; |
| 998 | |
| 999 | /* The agent supports strings made of a single line ended by the |
| 1000 | * first CR ('\r') or LF ('\n'). This line is composed of words |
| 1001 | * delimited by spaces (' '), tabs ('\t'), or commas (','). The |
| 1002 | * line may optionally contained a description of a state change |
| 1003 | * after a sharp ('#'), which is only considered if a health state |
| 1004 | * is announced. |
| 1005 | * |
| 1006 | * Words may be composed of : |
| 1007 | * - a numeric weight suffixed by the percent character ('%'). |
| 1008 | * - a health status among "up", "down", "stopped", and "fail". |
| 1009 | * - an admin status among "ready", "drain", "maint". |
| 1010 | * |
| 1011 | * These words may appear in any order. If multiple words of the |
| 1012 | * same category appear, the last one wins. |
| 1013 | */ |
| 1014 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1015 | p = b_head(&check->bi); |
Willy Tarreau | 9809b78 | 2013-12-11 21:40:11 +0100 | [diff] [blame] | 1016 | while (*p && *p != '\n' && *p != '\r') |
| 1017 | p++; |
| 1018 | |
| 1019 | if (!*p) { |
| 1020 | if (!done) |
| 1021 | goto wait_more_data; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1022 | |
Willy Tarreau | 9809b78 | 2013-12-11 21:40:11 +0100 | [diff] [blame] | 1023 | /* at least inform the admin that the agent is mis-behaving */ |
| 1024 | set_server_check_status(check, check->status, "Ignoring incomplete line from agent"); |
| 1025 | break; |
| 1026 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1027 | |
Willy Tarreau | 9809b78 | 2013-12-11 21:40:11 +0100 | [diff] [blame] | 1028 | *p = 0; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1029 | cmd = b_head(&check->bi); |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1030 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1031 | while (*cmd) { |
| 1032 | /* look for next word */ |
| 1033 | if (*cmd == ' ' || *cmd == '\t' || *cmd == ',') { |
| 1034 | cmd++; |
| 1035 | continue; |
| 1036 | } |
Simon Horman | 671b6f0 | 2013-11-25 10:46:39 +0900 | [diff] [blame] | 1037 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1038 | if (*cmd == '#') { |
| 1039 | /* this is the beginning of a health status description, |
| 1040 | * skip the sharp and blanks. |
| 1041 | */ |
| 1042 | cmd++; |
| 1043 | while (*cmd == '\t' || *cmd == ' ') |
| 1044 | cmd++; |
Simon Horman | 671b6f0 | 2013-11-25 10:46:39 +0900 | [diff] [blame] | 1045 | break; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1046 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1047 | |
| 1048 | /* find the end of the word so that we have a null-terminated |
| 1049 | * word between <cmd> and <p>. |
| 1050 | */ |
| 1051 | p = cmd + 1; |
| 1052 | while (*p && *p != '\t' && *p != ' ' && *p != '\n' && *p != ',') |
| 1053 | p++; |
| 1054 | if (*p) |
| 1055 | *p++ = 0; |
| 1056 | |
| 1057 | /* first, health statuses */ |
| 1058 | if (strcasecmp(cmd, "up") == 0) { |
| 1059 | check->health = check->rise + check->fall - 1; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1060 | status = HCHK_STATUS_L7OKD; |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1061 | hs = cmd; |
| 1062 | } |
| 1063 | else if (strcasecmp(cmd, "down") == 0) { |
| 1064 | check->health = 0; |
| 1065 | status = HCHK_STATUS_L7STS; |
| 1066 | hs = cmd; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1067 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1068 | else if (strcasecmp(cmd, "stopped") == 0) { |
| 1069 | check->health = 0; |
| 1070 | status = HCHK_STATUS_L7STS; |
| 1071 | hs = cmd; |
| 1072 | } |
| 1073 | else if (strcasecmp(cmd, "fail") == 0) { |
| 1074 | check->health = 0; |
| 1075 | status = HCHK_STATUS_L7STS; |
| 1076 | hs = cmd; |
| 1077 | } |
| 1078 | /* admin statuses */ |
| 1079 | else if (strcasecmp(cmd, "ready") == 0) { |
| 1080 | as = cmd; |
| 1081 | } |
| 1082 | else if (strcasecmp(cmd, "drain") == 0) { |
| 1083 | as = cmd; |
| 1084 | } |
| 1085 | else if (strcasecmp(cmd, "maint") == 0) { |
| 1086 | as = cmd; |
| 1087 | } |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1088 | /* try to parse a weight here and keep the last one */ |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1089 | else if (isdigit((unsigned char)*cmd) && strchr(cmd, '%') != NULL) { |
| 1090 | ps = cmd; |
| 1091 | } |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1092 | /* try to parse a maxconn here */ |
| 1093 | else if (strncasecmp(cmd, "maxconn:", strlen("maxconn:")) == 0) { |
| 1094 | cs = cmd; |
| 1095 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1096 | else { |
| 1097 | /* keep a copy of the first error */ |
| 1098 | if (!err) |
| 1099 | err = cmd; |
| 1100 | } |
| 1101 | /* skip to next word */ |
| 1102 | cmd = p; |
| 1103 | } |
| 1104 | /* here, cmd points either to \0 or to the beginning of a |
| 1105 | * description. Skip possible leading spaces. |
| 1106 | */ |
| 1107 | while (*cmd == ' ' || *cmd == '\n') |
| 1108 | cmd++; |
| 1109 | |
| 1110 | /* First, update the admin status so that we avoid sending other |
| 1111 | * possibly useless warnings and can also update the health if |
| 1112 | * present after going back up. |
| 1113 | */ |
| 1114 | if (as) { |
| 1115 | if (strcasecmp(as, "drain") == 0) |
| 1116 | srv_adm_set_drain(check->server); |
| 1117 | else if (strcasecmp(as, "maint") == 0) |
| 1118 | srv_adm_set_maint(check->server); |
| 1119 | else |
| 1120 | srv_adm_set_ready(check->server); |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1121 | } |
| 1122 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1123 | /* now change weights */ |
| 1124 | if (ps) { |
| 1125 | const char *msg; |
| 1126 | |
| 1127 | msg = server_parse_weight_change_request(s, ps); |
| 1128 | if (!wrn || !*wrn) |
| 1129 | wrn = msg; |
| 1130 | } |
| 1131 | |
Nenad Merdanovic | 174dd37 | 2016-04-24 23:10:06 +0200 | [diff] [blame] | 1132 | if (cs) { |
| 1133 | const char *msg; |
| 1134 | |
| 1135 | cs += strlen("maxconn:"); |
| 1136 | |
| 1137 | msg = server_parse_maxconn_change_request(s, cs); |
| 1138 | if (!wrn || !*wrn) |
| 1139 | wrn = msg; |
| 1140 | } |
| 1141 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1142 | /* and finally health status */ |
| 1143 | if (hs) { |
| 1144 | /* We'll report some of the warnings and errors we have |
| 1145 | * here. Down reports are critical, we leave them untouched. |
| 1146 | * Lack of report, or report of 'UP' leaves the room for |
| 1147 | * ERR first, then WARN. |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1148 | */ |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1149 | const char *msg = cmd; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1150 | struct buffer *t; |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1151 | |
| 1152 | if (!*msg || status == HCHK_STATUS_L7OKD) { |
| 1153 | if (err && *err) |
| 1154 | msg = err; |
| 1155 | else if (wrn && *wrn) |
| 1156 | msg = wrn; |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1157 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1158 | |
| 1159 | t = get_trash_chunk(); |
| 1160 | chunk_printf(t, "via agent : %s%s%s%s", |
| 1161 | hs, *msg ? " (" : "", |
| 1162 | msg, *msg ? ")" : ""); |
| 1163 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1164 | set_server_check_status(check, status, t->area); |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1165 | } |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1166 | else if (err && *err) { |
| 1167 | /* No status change but we'd like to report something odd. |
| 1168 | * Just report the current state and copy the message. |
| 1169 | */ |
| 1170 | chunk_printf(&trash, "agent reports an error : %s", err); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1171 | set_server_check_status(check, status/*check->status*/, |
| 1172 | trash.area); |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1173 | |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1174 | } |
| 1175 | else if (wrn && *wrn) { |
| 1176 | /* No status change but we'd like to report something odd. |
| 1177 | * Just report the current state and copy the message. |
| 1178 | */ |
| 1179 | chunk_printf(&trash, "agent warns : %s", wrn); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1180 | set_server_check_status(check, status/*check->status*/, |
| 1181 | trash.area); |
Willy Tarreau | 81f5d94 | 2013-12-09 20:51:51 +0100 | [diff] [blame] | 1182 | } |
| 1183 | else |
| 1184 | set_server_check_status(check, status, NULL); |
Simon Horman | a2b9dad | 2013-02-12 10:45:54 +0900 | [diff] [blame] | 1185 | break; |
| 1186 | } |
| 1187 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1188 | case PR_O2_PGSQL_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1189 | if (!done && b_data(&check->bi) < 9) |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 1190 | goto wait_more_data; |
| 1191 | |
Willy Tarreau | 5488a62 | 2019-08-06 16:26:31 +0200 | [diff] [blame] | 1192 | /* do not reset when closing, servers don't like this */ |
| 1193 | if (conn_ctrl_ready(cs->conn)) |
| 1194 | fdtab[cs->conn->handle.fd].linger_risk = 0; |
| 1195 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1196 | if (b_head(&check->bi)[0] == 'R') { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1197 | set_server_check_status(check, HCHK_STATUS_L7OKD, "PostgreSQL server is ok"); |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 1198 | } |
| 1199 | else { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1200 | if ((b_head(&check->bi)[0] == 'E') && (b_head(&check->bi)[5]!=0) && (b_head(&check->bi)[6]!=0)) |
| 1201 | desc = &b_head(&check->bi)[6]; |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 1202 | else |
| 1203 | desc = "PostgreSQL unknown error"; |
| 1204 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1205 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Rauf Kuliyev | 38b4156 | 2011-01-04 15:14:13 +0100 | [diff] [blame] | 1206 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1207 | break; |
| 1208 | |
| 1209 | case PR_O2_REDIS_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1210 | if (!done && b_data(&check->bi) < 7) |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 1211 | goto wait_more_data; |
| 1212 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1213 | if (strcmp(b_head(&check->bi), "+PONG\r\n") == 0) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1214 | set_server_check_status(check, HCHK_STATUS_L7OKD, "Redis server is ok"); |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 1215 | } |
| 1216 | else { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1217 | set_server_check_status(check, HCHK_STATUS_L7STS, b_head(&check->bi)); |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 1218 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1219 | break; |
| 1220 | |
| 1221 | case PR_O2_MYSQL_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1222 | if (!done && b_data(&check->bi) < 5) |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 1223 | goto wait_more_data; |
| 1224 | |
Willy Tarreau | 5488a62 | 2019-08-06 16:26:31 +0200 | [diff] [blame] | 1225 | /* do not reset when closing, servers don't like this */ |
| 1226 | if (conn_ctrl_ready(cs->conn)) |
| 1227 | fdtab[cs->conn->handle.fd].linger_risk = 0; |
| 1228 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1229 | if (s->proxy->check_len == 0) { // old mode |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1230 | if (*(b_head(&check->bi) + 4) != '\xff') { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1231 | /* We set the MySQL Version in description for information purpose |
| 1232 | * FIXME : it can be cool to use MySQL Version for other purpose, |
| 1233 | * like mark as down old MySQL server. |
| 1234 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1235 | if (b_data(&check->bi) > 51) { |
| 1236 | desc = ltrim(b_head(&check->bi) + 5, ' '); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1237 | set_server_check_status(check, HCHK_STATUS_L7OKD, desc); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1238 | } |
| 1239 | else { |
| 1240 | if (!done) |
| 1241 | goto wait_more_data; |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1242 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1243 | /* it seems we have a OK packet but without a valid length, |
| 1244 | * it must be a protocol error |
| 1245 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1246 | set_server_check_status(check, HCHK_STATUS_L7RSP, b_head(&check->bi)); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1247 | } |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 1248 | } |
| 1249 | else { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1250 | /* An error message is attached in the Error packet */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1251 | desc = ltrim(b_head(&check->bi) + 7, ' '); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1252 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1253 | } |
| 1254 | } else { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1255 | unsigned int first_packet_len = ((unsigned int) *b_head(&check->bi)) + |
| 1256 | (((unsigned int) *(b_head(&check->bi) + 1)) << 8) + |
| 1257 | (((unsigned int) *(b_head(&check->bi) + 2)) << 16); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1258 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1259 | if (b_data(&check->bi) == first_packet_len + 4) { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1260 | /* MySQL Error packet always begin with field_count = 0xff */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1261 | if (*(b_head(&check->bi) + 4) != '\xff') { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1262 | /* We have only one MySQL packet and it is a Handshake Initialization packet |
| 1263 | * but we need to have a second packet to know if it is alright |
| 1264 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1265 | if (!done && b_data(&check->bi) < first_packet_len + 5) |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1266 | goto wait_more_data; |
| 1267 | } |
| 1268 | else { |
| 1269 | /* We have only one packet and it is an Error packet, |
| 1270 | * an error message is attached, so we can display it |
| 1271 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1272 | desc = &b_head(&check->bi)[7]; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1273 | //ha_warning("onlyoneERR: %s\n", desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1274 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1275 | } |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1276 | } else if (b_data(&check->bi) > first_packet_len + 4) { |
| 1277 | unsigned int second_packet_len = ((unsigned int) *(b_head(&check->bi) + first_packet_len + 4)) + |
| 1278 | (((unsigned int) *(b_head(&check->bi) + first_packet_len + 5)) << 8) + |
| 1279 | (((unsigned int) *(b_head(&check->bi) + first_packet_len + 6)) << 16); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1280 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1281 | if (b_data(&check->bi) == first_packet_len + 4 + second_packet_len + 4 ) { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1282 | /* We have 2 packets and that's good */ |
| 1283 | /* Check if the second packet is a MySQL Error packet or not */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1284 | if (*(b_head(&check->bi) + first_packet_len + 8) != '\xff') { |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1285 | /* No error packet */ |
| 1286 | /* We set the MySQL Version in description for information purpose */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1287 | desc = &b_head(&check->bi)[5]; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1288 | //ha_warning("2packetOK: %s\n", desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1289 | set_server_check_status(check, HCHK_STATUS_L7OKD, desc); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1290 | } |
| 1291 | else { |
| 1292 | /* An error message is attached in the Error packet |
| 1293 | * so we can display it ! :) |
| 1294 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1295 | desc = &b_head(&check->bi)[first_packet_len+11]; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1296 | //ha_warning("2packetERR: %s\n", desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1297 | set_server_check_status(check, HCHK_STATUS_L7STS, desc); |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1298 | } |
| 1299 | } |
| 1300 | } |
| 1301 | else { |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 1302 | if (!done) |
| 1303 | goto wait_more_data; |
Emeric Brun | 9f0b458 | 2017-10-23 14:39:51 +0200 | [diff] [blame] | 1304 | |
Hervé COMMOWICK | 8776f1b | 2010-10-18 15:58:36 +0200 | [diff] [blame] | 1305 | /* it seems we have a Handshake Initialization packet but without a valid length, |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 1306 | * it must be a protocol error |
| 1307 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1308 | desc = &b_head(&check->bi)[5]; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1309 | //ha_warning("protoerr: %s\n", desc); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1310 | set_server_check_status(check, HCHK_STATUS_L7RSP, desc); |
Hervé COMMOWICK | 698ae00 | 2010-01-12 09:25:13 +0100 | [diff] [blame] | 1311 | } |
| 1312 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1313 | break; |
| 1314 | |
| 1315 | case PR_O2_LDAP_CHK: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1316 | if (!done && b_data(&check->bi) < 14) |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1317 | goto wait_more_data; |
| 1318 | |
| 1319 | /* Check if the server speaks LDAP (ASN.1/BER) |
| 1320 | * http://en.wikipedia.org/wiki/Basic_Encoding_Rules |
| 1321 | * http://tools.ietf.org/html/rfc4511 |
| 1322 | */ |
| 1323 | |
| 1324 | /* http://tools.ietf.org/html/rfc4511#section-4.1.1 |
| 1325 | * LDAPMessage: 0x30: SEQUENCE |
| 1326 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1327 | if ((b_data(&check->bi) < 14) || (*(b_head(&check->bi)) != '\x30')) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1328 | set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol"); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1329 | } |
| 1330 | else { |
| 1331 | /* size of LDAPMessage */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1332 | msglen = (*(b_head(&check->bi) + 1) & 0x80) ? (*(b_head(&check->bi) + 1) & 0x7f) : 0; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1333 | |
| 1334 | /* http://tools.ietf.org/html/rfc4511#section-4.2.2 |
| 1335 | * messageID: 0x02 0x01 0x01: INTEGER 1 |
| 1336 | * protocolOp: 0x61: bindResponse |
| 1337 | */ |
| 1338 | if ((msglen > 2) || |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1339 | (memcmp(b_head(&check->bi) + 2 + msglen, "\x02\x01\x01\x61", 4) != 0)) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1340 | set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol"); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1341 | goto out_wakeup; |
| 1342 | } |
| 1343 | |
| 1344 | /* size of bindResponse */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1345 | msglen += (*(b_head(&check->bi) + msglen + 6) & 0x80) ? (*(b_head(&check->bi) + msglen + 6) & 0x7f) : 0; |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1346 | |
| 1347 | /* http://tools.ietf.org/html/rfc4511#section-4.1.9 |
| 1348 | * ldapResult: 0x0a 0x01: ENUMERATION |
| 1349 | */ |
| 1350 | if ((msglen > 4) || |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1351 | (memcmp(b_head(&check->bi) + 7 + msglen, "\x0a\x01", 2) != 0)) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1352 | set_server_check_status(check, HCHK_STATUS_L7RSP, "Not LDAPv3 protocol"); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1353 | goto out_wakeup; |
| 1354 | } |
| 1355 | |
| 1356 | /* http://tools.ietf.org/html/rfc4511#section-4.1.9 |
| 1357 | * resultCode |
| 1358 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1359 | check->code = *(b_head(&check->bi) + msglen + 9); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1360 | if (check->code) { |
| 1361 | set_server_check_status(check, HCHK_STATUS_L7STS, "See RFC: http://tools.ietf.org/html/rfc4511#section-4.1.9"); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1362 | } else { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 1363 | set_server_check_status(check, HCHK_STATUS_L7OKD, "Success"); |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 1364 | } |
| 1365 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1366 | break; |
| 1367 | |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1368 | case PR_O2_SPOP_CHK: { |
| 1369 | unsigned int framesz; |
| 1370 | char err[HCHK_DESC_LEN]; |
| 1371 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1372 | if (!done && b_data(&check->bi) < 4) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1373 | goto wait_more_data; |
| 1374 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1375 | memcpy(&framesz, b_head(&check->bi), 4); |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1376 | framesz = ntohl(framesz); |
| 1377 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1378 | if (!done && b_data(&check->bi) < (4+framesz)) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1379 | goto wait_more_data; |
| 1380 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1381 | if (!spoe_handle_healthcheck_response(b_head(&check->bi)+4, framesz, err, HCHK_DESC_LEN-1)) |
Christopher Faulet | ba7bc16 | 2016-11-07 21:07:38 +0100 | [diff] [blame] | 1382 | set_server_check_status(check, HCHK_STATUS_L7OKD, "SPOA server is ok"); |
| 1383 | else |
| 1384 | set_server_check_status(check, HCHK_STATUS_L7STS, err); |
| 1385 | break; |
| 1386 | } |
| 1387 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1388 | default: |
Willy Tarreau | 4c1a2b3 | 2019-09-05 18:43:22 +0200 | [diff] [blame] | 1389 | /* good connection is enough for pure TCP check */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 1390 | if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) { |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 1391 | if (check->use_ssl == 1) |
Willy Tarreau | 4c1a2b3 | 2019-09-05 18:43:22 +0200 | [diff] [blame] | 1392 | set_server_check_status(check, HCHK_STATUS_L6OK, NULL); |
| 1393 | else |
| 1394 | set_server_check_status(check, HCHK_STATUS_L4OK, NULL); |
| 1395 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 1396 | break; |
| 1397 | } /* switch */ |
Willy Tarreau | 8374918 | 2007-04-15 20:56:27 +0200 | [diff] [blame] | 1398 | |
Willy Tarreau | c7dd71a | 2007-11-30 08:33:21 +0100 | [diff] [blame] | 1399 | out_wakeup: |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 1400 | /* collect possible new errors */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 1401 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 1402 | chk_report_conn_err(check, 0, 0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1403 | |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 1404 | /* Reset the check buffer... */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1405 | *b_head(&check->bi) = '\0'; |
| 1406 | b_reset(&check->bi); |
Nick Chalk | 57b1bf7 | 2010-03-16 15:50:46 +0000 | [diff] [blame] | 1407 | |
Steven Davidovitz | 544d481 | 2017-03-08 11:06:20 -0800 | [diff] [blame] | 1408 | /* Close the connection... We still attempt to nicely close if, |
| 1409 | * for instance, SSL needs to send a "close notify." Later, we perform |
| 1410 | * a hard close and reset the connection if some data are pending, |
| 1411 | * otherwise we end up with many TIME_WAITs and eat all the source port |
| 1412 | * range quickly. To avoid sending RSTs all the time, we first try to |
| 1413 | * drain pending data. |
Willy Tarreau | fd29cc5 | 2012-11-23 09:18:20 +0100 | [diff] [blame] | 1414 | */ |
Olivier Houchard | 6c7e96a | 2019-07-02 16:35:18 +0200 | [diff] [blame] | 1415 | /* Call cs_shutr() first, to add the CO_FL_SOCK_RD_SH flag on the |
| 1416 | * connection, to make sure cs_shutw() will not lead to a shutdown() |
| 1417 | * that would provoke TIME_WAITs. |
| 1418 | */ |
| 1419 | cs_shutr(cs, CS_SHR_DRAIN); |
Willy Tarreau | ecdb3fe | 2017-10-05 15:25:48 +0200 | [diff] [blame] | 1420 | cs_shutw(cs, CS_SHW_NORMAL); |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 1421 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 1422 | /* OK, let's not stay here forever */ |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 1423 | if (check->result == CHK_RES_FAILED) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 1424 | conn->flags |= CO_FL_ERROR; |
| 1425 | |
Willy Tarreau | fdccded | 2008-08-29 18:19:04 +0200 | [diff] [blame] | 1426 | task_wakeup(t, TASK_WOKEN_IO); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 1427 | out: |
Willy Tarreau | 3267d36 | 2012-08-17 23:53:56 +0200 | [diff] [blame] | 1428 | return; |
Willy Tarreau | 0393818 | 2010-03-17 21:52:07 +0100 | [diff] [blame] | 1429 | |
| 1430 | wait_more_data: |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 1431 | cs->conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 1432 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1433 | } |
| 1434 | |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 1435 | /* |
| 1436 | * This function is used only for server health-checks. It handles connection |
| 1437 | * status updates including errors. If necessary, it wakes the check task up. |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1438 | * It returns 0 on normal cases, <0 if at least one close() has happened on the |
| 1439 | * connection (eg: reconnect). |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 1440 | */ |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1441 | static int wake_srv_chk(struct conn_stream *cs) |
Willy Tarreau | 20bea42 | 2012-07-06 12:00:49 +0200 | [diff] [blame] | 1442 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1443 | struct connection *conn = cs->conn; |
| 1444 | struct check *check = cs->data; |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 1445 | struct email_alertq *q = container_of(check, typeof(*q), check); |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1446 | int ret = 0; |
Willy Tarreau | 20bea42 | 2012-07-06 12:00:49 +0200 | [diff] [blame] | 1447 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 1448 | if (check->server) |
| 1449 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
| 1450 | else |
| 1451 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Emeric Brun | f6ba17d | 2017-11-02 14:35:27 +0100 | [diff] [blame] | 1452 | |
Willy Tarreau | c09572f | 2017-10-04 11:58:22 +0200 | [diff] [blame] | 1453 | /* we may have to make progress on the TCP checks */ |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1454 | if (check->type == PR_O2_TCPCHK_CHK) { |
| 1455 | ret = tcpcheck_main(check); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1456 | cs = check->cs; |
Willy Tarreau | 543abd4 | 2018-09-20 11:25:12 +0200 | [diff] [blame] | 1457 | conn = cs->conn; |
Willy Tarreau | c594039 | 2019-09-05 17:38:40 +0200 | [diff] [blame] | 1458 | } else { |
| 1459 | if (!(check->wait_list.events & SUB_RETRY_SEND)) |
| 1460 | __event_srv_chk_w(cs); |
| 1461 | if (!(check->wait_list.events & SUB_RETRY_RECV)) |
| 1462 | __event_srv_chk_r(cs); |
| 1463 | } |
Willy Tarreau | c09572f | 2017-10-04 11:58:22 +0200 | [diff] [blame] | 1464 | |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 1465 | if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) { |
Willy Tarreau | 02b0f58 | 2013-12-03 15:42:33 +0100 | [diff] [blame] | 1466 | /* We may get error reports bypassing the I/O handlers, typically |
| 1467 | * the case when sending a pure TCP check which fails, then the I/O |
| 1468 | * handlers above are not called. This is completely handled by the |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 1469 | * main processing task so let's simply wake it up. If we get here, |
| 1470 | * we expect errno to still be valid. |
| 1471 | */ |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 1472 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | 2d351b6 | 2013-12-05 02:36:25 +0100 | [diff] [blame] | 1473 | task_wakeup(check->task, TASK_WOKEN_IO); |
| 1474 | } |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 1475 | else if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) { |
Willy Tarreau | 3be293f | 2014-02-05 18:31:24 +0100 | [diff] [blame] | 1476 | /* we may get here if only a connection probe was required : we |
| 1477 | * don't have any data to send nor anything expected in response, |
| 1478 | * so the completion of the connection establishment is enough. |
| 1479 | */ |
| 1480 | task_wakeup(check->task, TASK_WOKEN_IO); |
| 1481 | } |
Willy Tarreau | 2d351b6 | 2013-12-05 02:36:25 +0100 | [diff] [blame] | 1482 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 1483 | if (check->result != CHK_RES_UNKNOWN) { |
Christopher Faulet | 774c486 | 2019-01-21 14:15:50 +0100 | [diff] [blame] | 1484 | /* Check complete or aborted. If connection not yet closed do it |
| 1485 | * now and wake the check task up to be sure the result is |
| 1486 | * handled ASAP. */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 1487 | conn_sock_drain(conn); |
Willy Tarreau | a553ae9 | 2017-10-05 18:52:17 +0200 | [diff] [blame] | 1488 | cs_close(cs); |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1489 | ret = -1; |
Olivier Houchard | f494957 | 2019-07-02 17:42:22 +0200 | [diff] [blame] | 1490 | /* We may have been scheduled to run, and the |
| 1491 | * I/O handler expects to have a cs, so remove |
| 1492 | * the tasklet |
| 1493 | */ |
| 1494 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
Christopher Faulet | 774c486 | 2019-01-21 14:15:50 +0100 | [diff] [blame] | 1495 | task_wakeup(check->task, TASK_WOKEN_IO); |
Willy Tarreau | 2d351b6 | 2013-12-05 02:36:25 +0100 | [diff] [blame] | 1496 | } |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1497 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 1498 | if (check->server) |
| 1499 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
| 1500 | else |
| 1501 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Emeric Brun | f6ba17d | 2017-11-02 14:35:27 +0100 | [diff] [blame] | 1502 | |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 1503 | /* if a connection got replaced, we must absolutely prevent the connection |
| 1504 | * handler from touching its fd, and perform the FD polling updates ourselves |
| 1505 | */ |
| 1506 | if (ret < 0) |
| 1507 | conn_cond_update_polling(conn); |
| 1508 | |
| 1509 | return ret; |
Willy Tarreau | 20bea42 | 2012-07-06 12:00:49 +0200 | [diff] [blame] | 1510 | } |
| 1511 | |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 1512 | struct data_cb check_conn_cb = { |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 1513 | .wake = wake_srv_chk, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 1514 | .name = "CHCK", |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 1515 | }; |
| 1516 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1517 | /* |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1518 | * updates the server's weight during a warmup stage. Once the final weight is |
| 1519 | * reached, the task automatically stops. Note that any server status change |
| 1520 | * must have updated s->last_change accordingly. |
| 1521 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 1522 | static struct task *server_warmup(struct task *t, void *context, unsigned short state) |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1523 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 1524 | struct server *s = context; |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1525 | |
| 1526 | /* by default, plan on stopping the task */ |
| 1527 | t->expire = TICK_ETERNITY; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1528 | if ((s->next_admin & SRV_ADMF_MAINT) || |
| 1529 | (s->next_state != SRV_ST_STARTING)) |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1530 | return t; |
| 1531 | |
Willy Tarreau | 4fc49a9 | 2019-05-05 06:54:22 +0200 | [diff] [blame] | 1532 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
| 1533 | |
Willy Tarreau | 892337c | 2014-05-13 23:41:20 +0200 | [diff] [blame] | 1534 | /* recalculate the weights and update the state */ |
Willy Tarreau | 3ff577e | 2018-08-02 11:48:52 +0200 | [diff] [blame] | 1535 | server_recalc_eweight(s, 1); |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1536 | |
| 1537 | /* probably that we can refill this server with a bit more connections */ |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1538 | pendconn_grab_from_px(s); |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1539 | |
Willy Tarreau | 4fc49a9 | 2019-05-05 06:54:22 +0200 | [diff] [blame] | 1540 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 1541 | |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1542 | /* get back there in 1 second or 1/20th of the slowstart interval, |
| 1543 | * whichever is greater, resulting in small 5% steps. |
| 1544 | */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1545 | if (s->next_state == SRV_ST_STARTING) |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1546 | t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))); |
| 1547 | return t; |
| 1548 | } |
| 1549 | |
Willy Tarreau | 894c642 | 2017-10-04 15:58:52 +0200 | [diff] [blame] | 1550 | /* returns the first NON-COMMENT tcp-check rule from list <list> or NULL if |
| 1551 | * none was found. |
| 1552 | */ |
| 1553 | static struct tcpcheck_rule *get_first_tcpcheck_rule(struct list *list) |
| 1554 | { |
| 1555 | struct tcpcheck_rule *r; |
| 1556 | |
| 1557 | list_for_each_entry(r, list, list) { |
| 1558 | if (r->action != TCPCHK_ACT_COMMENT) |
| 1559 | return r; |
| 1560 | } |
| 1561 | return NULL; |
| 1562 | } |
| 1563 | |
Willy Tarreau | 2e99390 | 2011-10-31 11:53:20 +0100 | [diff] [blame] | 1564 | /* |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1565 | * establish a server health-check that makes use of a connection. |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1566 | * |
| 1567 | * It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1568 | * - SF_ERR_NONE if everything's OK and tcpcheck_main() was not called |
| 1569 | * - SF_ERR_UP if if everything's OK and tcpcheck_main() was called |
| 1570 | * - SF_ERR_SRVTO if there are no more servers |
| 1571 | * - SF_ERR_SRVCL if the connection was refused by the server |
| 1572 | * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 1573 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 1574 | * - SF_ERR_INTERNAL for any other purely internal errors |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 1575 | * - SF_ERR_CHK_PORT if no port could be found to run a health check on an AF_INET* socket |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 1576 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1577 | * Note that we try to prevent the network stack from sending the ACK during the |
| 1578 | * connect() when a pure TCP check is used (without PROXY protocol). |
| 1579 | */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1580 | static int connect_conn_chk(struct task *t) |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1581 | { |
| 1582 | struct check *check = t->context; |
| 1583 | struct server *s = check->server; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1584 | struct conn_stream *cs = check->cs; |
| 1585 | struct connection *conn = cs_conn(cs); |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1586 | struct protocol *proto; |
Willy Tarreau | f411cce | 2017-10-04 16:21:19 +0200 | [diff] [blame] | 1587 | struct tcpcheck_rule *tcp_rule = NULL; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1588 | int ret; |
Olivier Houchard | fdcb007 | 2019-05-06 18:32:29 +0200 | [diff] [blame] | 1589 | int connflags = 0; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1590 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 1591 | /* we cannot have a connection here */ |
| 1592 | if (conn) |
| 1593 | return SF_ERR_INTERNAL; |
| 1594 | |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1595 | /* tcpcheck send/expect initialisation */ |
Willy Tarreau | f411cce | 2017-10-04 16:21:19 +0200 | [diff] [blame] | 1596 | if (check->type == PR_O2_TCPCHK_CHK) { |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1597 | check->current_step = NULL; |
Willy Tarreau | f411cce | 2017-10-04 16:21:19 +0200 | [diff] [blame] | 1598 | tcp_rule = get_first_tcpcheck_rule(check->tcpcheck_rules); |
| 1599 | } |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1600 | |
| 1601 | /* prepare the check buffer. |
| 1602 | * This should not be used if check is the secondary agent check |
| 1603 | * of a server as s->proxy->check_req will relate to the |
| 1604 | * configuration of the primary check. Similarly, tcp-check uses |
| 1605 | * its own strings. |
| 1606 | */ |
| 1607 | if (check->type && check->type != PR_O2_TCPCHK_CHK && !(check->state & CHK_ST_AGENT)) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1608 | b_putblk(&check->bo, s->proxy->check_req, s->proxy->check_len); |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1609 | |
| 1610 | /* we want to check if this host replies to HTTP or SSLv3 requests |
| 1611 | * so we'll send the request, and won't wake the checker up now. |
| 1612 | */ |
| 1613 | if ((check->type) == PR_O2_SSL3_CHK) { |
| 1614 | /* SSL requires that we put Unix time in the request */ |
| 1615 | int gmt_time = htonl(date.tv_sec); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1616 | memcpy(b_head(&check->bo) + 11, &gmt_time, 4); |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1617 | } |
| 1618 | else if ((check->type) == PR_O2_HTTP_CHK) { |
Cyril Bonté | 32602d2 | 2015-01-30 00:07:07 +0100 | [diff] [blame] | 1619 | /* prevent HTTP keep-alive when "http-check expect" is used */ |
| 1620 | if (s->proxy->options2 & PR_O2_EXP_TYPE) |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1621 | b_putist(&check->bo, ist("Connection: close\r\n")); |
Christopher Faulet | 8acb128 | 2020-04-09 08:44:06 +0200 | [diff] [blame] | 1622 | |
| 1623 | /* If there is a body, add its content-length */ |
| 1624 | if (s->proxy->check_body_len) |
| 1625 | chunk_appendf(&check->bo, "Content-Length: %s\r\n", ultoa(s->proxy->check_body_len)); |
| 1626 | |
| 1627 | /* Add configured headers */ |
| 1628 | if (s->proxy->check_hdrs) |
| 1629 | b_putblk(&check->bo, s->proxy->check_hdrs, s->proxy->check_hdrs_len); |
| 1630 | |
| 1631 | /* Add send-state header */ |
| 1632 | if (s->proxy->options2 & PR_O2_CHK_SNDST) |
| 1633 | b_putblk(&check->bo, trash.area, |
| 1634 | httpchk_build_status_header(s, trash.area, trash.size)); |
| 1635 | |
| 1636 | /* end-of-header */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1637 | b_putist(&check->bo, ist("\r\n")); |
Christopher Faulet | 8acb128 | 2020-04-09 08:44:06 +0200 | [diff] [blame] | 1638 | |
| 1639 | /* Add the body */ |
| 1640 | if (s->proxy->check_body) |
| 1641 | b_putblk(&check->bo, s->proxy->check_body, s->proxy->check_body_len); |
| 1642 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1643 | *b_tail(&check->bo) = '\0'; /* to make gdb output easier to read */ |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1644 | } |
| 1645 | } |
| 1646 | |
James Brown | 55f9ff1 | 2015-10-21 18:19:05 -0700 | [diff] [blame] | 1647 | if ((check->type & PR_O2_LB_AGENT_CHK) && check->send_string_len) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1648 | b_putblk(&check->bo, check->send_string, check->send_string_len); |
James Brown | 55f9ff1 | 2015-10-21 18:19:05 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Willy Tarreau | f411cce | 2017-10-04 16:21:19 +0200 | [diff] [blame] | 1651 | /* for tcp-checks, the initial connection setup is handled separately as |
| 1652 | * it may be sent to a specific port and not to the server's. |
| 1653 | */ |
| 1654 | if (tcp_rule && tcp_rule->action == TCPCHK_ACT_CONNECT) { |
| 1655 | tcpcheck_main(check); |
| 1656 | return SF_ERR_UP; |
| 1657 | } |
| 1658 | |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1659 | /* prepare a new connection */ |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1660 | cs = check->cs = cs_new(NULL); |
| 1661 | if (!check->cs) |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 1662 | return SF_ERR_RESOURCE; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1663 | conn = cs->conn; |
Olivier Houchard | 26e1a8f | 2018-09-12 15:15:12 +0200 | [diff] [blame] | 1664 | /* Maybe there were an older connection we were waiting on */ |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 1665 | check->wait_list.events = 0; |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 1666 | tasklet_set_tid(check->wait_list.tasklet, tid); |
| 1667 | |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1668 | |
Willy Tarreau | ca79f59 | 2019-07-17 19:04:47 +0200 | [diff] [blame] | 1669 | if (!sockaddr_alloc(&conn->dst)) |
| 1670 | return SF_ERR_RESOURCE; |
| 1671 | |
Simon Horman | 41f5876 | 2015-01-30 11:22:56 +0900 | [diff] [blame] | 1672 | if (is_addr(&check->addr)) { |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1673 | /* we'll connect to the check addr specified on the server */ |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 1674 | *conn->dst = check->addr; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1675 | } |
| 1676 | else { |
| 1677 | /* we'll connect to the addr on the server */ |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 1678 | *conn->dst = s->addr; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1679 | } |
| 1680 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1681 | if (s->check.via_socks4 && (s->flags & SRV_F_SOCKS4_PROXY)) { |
| 1682 | conn->send_proxy_ofs = 1; |
| 1683 | conn->flags |= CO_FL_SOCKS4; |
| 1684 | } |
| 1685 | |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 1686 | proto = protocol_by_family(conn->dst->ss_family); |
Olivier Houchard | 6377a00 | 2017-12-01 22:04:05 +0100 | [diff] [blame] | 1687 | conn->target = &s->obj_type; |
| 1688 | |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 1689 | if ((conn->dst->ss_family == AF_INET) || (conn->dst->ss_family == AF_INET6)) { |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 1690 | int i = 0; |
| 1691 | |
| 1692 | i = srv_check_healthcheck_port(check); |
Olivier Houchard | 6377a00 | 2017-12-01 22:04:05 +0100 | [diff] [blame] | 1693 | if (i == 0) |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 1694 | return SF_ERR_CHK_PORT; |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 1695 | |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 1696 | set_host_port(conn->dst, i); |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1697 | } |
| 1698 | |
Thierry FOURNIER | bb2ae64 | 2015-01-14 11:31:49 +0100 | [diff] [blame] | 1699 | /* no client address */ |
Thierry FOURNIER | bb2ae64 | 2015-01-14 11:31:49 +0100 | [diff] [blame] | 1700 | |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 1701 | conn_prepare(conn, proto, check->xprt); |
Olivier Houchard | f67be93 | 2019-01-29 15:47:43 +0100 | [diff] [blame] | 1702 | if (conn_install_mux(conn, &mux_pt_ops, cs, s->proxy, NULL) < 0) |
| 1703 | return SF_ERR_RESOURCE; |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 1704 | cs_attach(cs, check, &check_conn_cb); |
| 1705 | |
Willy Tarreau | f3d3482 | 2014-12-08 12:11:28 +0100 | [diff] [blame] | 1706 | /* only plain tcp-check supports quick ACK */ |
Olivier Houchard | fdcb007 | 2019-05-06 18:32:29 +0200 | [diff] [blame] | 1707 | if (check->type != 0) |
| 1708 | connflags |= CONNECT_HAS_DATA; |
| 1709 | if ((check->type == 0 || check->type == PR_O2_TCPCHK_CHK) && |
| 1710 | (!tcp_rule || tcp_rule->action != TCPCHK_ACT_EXPECT)) |
| 1711 | connflags |= CONNECT_DELACK_ALWAYS; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1712 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1713 | ret = SF_ERR_INTERNAL; |
Olivier Houchard | b68fda4 | 2017-08-04 18:39:01 +0200 | [diff] [blame] | 1714 | if (proto && proto->connect) |
Olivier Houchard | fdcb007 | 2019-05-06 18:32:29 +0200 | [diff] [blame] | 1715 | ret = proto->connect(conn, connflags); |
Willy Tarreau | 16257f6 | 2017-11-02 15:45:00 +0100 | [diff] [blame] | 1716 | |
Willy Tarreau | 16257f6 | 2017-11-02 15:45:00 +0100 | [diff] [blame] | 1717 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 1718 | #ifdef USE_OPENSSL |
Olivier Houchard | a48437b | 2019-01-29 16:37:52 +0100 | [diff] [blame] | 1719 | if (ret == SF_ERR_NONE) { |
| 1720 | if (s->check.sni) |
| 1721 | ssl_sock_set_servername(conn, s->check.sni); |
| 1722 | if (s->check.alpn_str) |
| 1723 | ssl_sock_set_alpn(conn, (unsigned char *)s->check.alpn_str, |
| 1724 | s->check.alpn_len); |
| 1725 | } |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 1726 | #endif |
Willy Tarreau | f494977 | 2017-05-06 08:45:28 +0200 | [diff] [blame] | 1727 | if (s->check.send_proxy && !(check->state & CHK_ST_AGENT)) { |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1728 | conn->send_proxy_ofs = 1; |
| 1729 | conn->flags |= CO_FL_SEND_PROXY; |
Olivier Houchard | 37d7897 | 2019-12-30 15:13:42 +0100 | [diff] [blame] | 1730 | } |
| 1731 | if (conn->flags & (CO_FL_SEND_PROXY | CO_FL_SOCKS4) && |
| 1732 | conn_ctrl_ready(conn)) { |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 1733 | if (xprt_add_hs(conn) < 0) |
| 1734 | ret = SF_ERR_RESOURCE; |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 1735 | } |
| 1736 | |
| 1737 | return ret; |
| 1738 | } |
| 1739 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1740 | static struct list pid_list = LIST_HEAD_INIT(pid_list); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1741 | static struct pool_head *pool_head_pid_list; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 1742 | __decl_spinlock(pid_list_lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1743 | |
| 1744 | void block_sigchld(void) |
| 1745 | { |
| 1746 | sigset_t set; |
| 1747 | sigemptyset(&set); |
| 1748 | sigaddset(&set, SIGCHLD); |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 1749 | assert(ha_sigmask(SIG_BLOCK, &set, NULL) == 0); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | void unblock_sigchld(void) |
| 1753 | { |
| 1754 | sigset_t set; |
| 1755 | sigemptyset(&set); |
Willy Tarreau | ebc9244 | 2016-06-21 17:29:46 +0200 | [diff] [blame] | 1756 | sigaddset(&set, SIGCHLD); |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 1757 | assert(ha_sigmask(SIG_UNBLOCK, &set, NULL) == 0); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1758 | } |
| 1759 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1760 | static struct pid_list *pid_list_add(pid_t pid, struct task *t) |
| 1761 | { |
| 1762 | struct pid_list *elem; |
| 1763 | struct check *check = t->context; |
| 1764 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1765 | elem = pool_alloc(pool_head_pid_list); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1766 | if (!elem) |
| 1767 | return NULL; |
| 1768 | elem->pid = pid; |
| 1769 | elem->t = t; |
| 1770 | elem->exited = 0; |
| 1771 | check->curpid = elem; |
| 1772 | LIST_INIT(&elem->list); |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 1773 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1774 | HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1775 | LIST_ADD(&pid_list, &elem->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1776 | HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock); |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 1777 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1778 | return elem; |
| 1779 | } |
| 1780 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1781 | static void pid_list_del(struct pid_list *elem) |
| 1782 | { |
| 1783 | struct check *check; |
| 1784 | |
| 1785 | if (!elem) |
| 1786 | return; |
| 1787 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1788 | HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1789 | LIST_DEL(&elem->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1790 | HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock); |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 1791 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1792 | if (!elem->exited) |
| 1793 | kill(elem->pid, SIGTERM); |
| 1794 | |
| 1795 | check = elem->t->context; |
| 1796 | check->curpid = NULL; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1797 | pool_free(pool_head_pid_list, elem); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | /* Called from inside SIGCHLD handler, SIGCHLD is blocked */ |
| 1801 | static void pid_list_expire(pid_t pid, int status) |
| 1802 | { |
| 1803 | struct pid_list *elem; |
| 1804 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1805 | HA_SPIN_LOCK(PID_LIST_LOCK, &pid_list_lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1806 | list_for_each_entry(elem, &pid_list, list) { |
| 1807 | if (elem->pid == pid) { |
| 1808 | elem->t->expire = now_ms; |
| 1809 | elem->status = status; |
| 1810 | elem->exited = 1; |
Cyril Bonté | 9dbcfab | 2014-08-07 01:55:39 +0200 | [diff] [blame] | 1811 | task_wakeup(elem->t, TASK_WOKEN_IO); |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 1812 | break; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1813 | } |
| 1814 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1815 | HA_SPIN_UNLOCK(PID_LIST_LOCK, &pid_list_lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1816 | } |
| 1817 | |
Willy Tarreau | 48d6bf2 | 2016-06-21 16:27:34 +0200 | [diff] [blame] | 1818 | static void sigchld_handler(struct sig_handler *sh) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1819 | { |
| 1820 | pid_t pid; |
| 1821 | int status; |
Willy Tarreau | 48d6bf2 | 2016-06-21 16:27:34 +0200 | [diff] [blame] | 1822 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1823 | while ((pid = waitpid(0, &status, WNOHANG)) > 0) |
| 1824 | pid_list_expire(pid, status); |
| 1825 | } |
| 1826 | |
Willy Tarreau | 48d6bf2 | 2016-06-21 16:27:34 +0200 | [diff] [blame] | 1827 | static int init_pid_list(void) |
| 1828 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1829 | if (pool_head_pid_list != NULL) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1830 | /* Nothing to do */ |
| 1831 | return 0; |
| 1832 | |
Willy Tarreau | 48d6bf2 | 2016-06-21 16:27:34 +0200 | [diff] [blame] | 1833 | if (!signal_register_fct(SIGCHLD, sigchld_handler, SIGCHLD)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1834 | ha_alert("Failed to set signal handler for external health checks: %s. Aborting.\n", |
| 1835 | strerror(errno)); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1836 | return 1; |
| 1837 | } |
| 1838 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1839 | pool_head_pid_list = create_pool("pid_list", sizeof(struct pid_list), MEM_F_SHARED); |
| 1840 | if (pool_head_pid_list == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1841 | ha_alert("Failed to allocate memory pool for external health checks: %s. Aborting.\n", |
| 1842 | strerror(errno)); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1843 | return 1; |
| 1844 | } |
| 1845 | |
| 1846 | return 0; |
| 1847 | } |
| 1848 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1849 | /* helper macro to set an environment variable and jump to a specific label on failure. */ |
| 1850 | #define EXTCHK_SETENV(check, envidx, value, fail) { if (extchk_setenv(check, envidx, value)) goto fail; } |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1851 | |
| 1852 | /* |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1853 | * helper function to allocate enough memory to store an environment variable. |
| 1854 | * It will also check that the environment variable is updatable, and silently |
| 1855 | * fail if not. |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1856 | */ |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1857 | static int extchk_setenv(struct check *check, int idx, const char *value) |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1858 | { |
| 1859 | int len, ret; |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1860 | char *envname; |
| 1861 | int vmaxlen; |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1862 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1863 | if (idx < 0 || idx >= EXTCHK_SIZE) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1864 | ha_alert("Illegal environment variable index %d. Aborting.\n", idx); |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1865 | return 1; |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1866 | } |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1867 | |
| 1868 | envname = extcheck_envs[idx].name; |
| 1869 | vmaxlen = extcheck_envs[idx].vmaxlen; |
| 1870 | |
| 1871 | /* Check if the environment variable is already set, and silently reject |
| 1872 | * the update if this one is not updatable. */ |
| 1873 | if ((vmaxlen == EXTCHK_SIZE_EVAL_INIT) && (check->envp[idx])) |
| 1874 | return 0; |
| 1875 | |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1876 | /* Instead of sending NOT_USED, sending an empty value is preferable */ |
| 1877 | if (strcmp(value, "NOT_USED") == 0) { |
| 1878 | value = ""; |
| 1879 | } |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1880 | |
| 1881 | len = strlen(envname) + 1; |
| 1882 | if (vmaxlen == EXTCHK_SIZE_EVAL_INIT) |
| 1883 | len += strlen(value); |
| 1884 | else |
| 1885 | len += vmaxlen; |
| 1886 | |
| 1887 | if (!check->envp[idx]) |
| 1888 | check->envp[idx] = malloc(len + 1); |
| 1889 | |
| 1890 | if (!check->envp[idx]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1891 | ha_alert("Failed to allocate memory for the environment variable '%s'. Aborting.\n", envname); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1892 | return 1; |
| 1893 | } |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1894 | ret = snprintf(check->envp[idx], len + 1, "%s=%s", envname, value); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1895 | if (ret < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1896 | ha_alert("Failed to store the environment variable '%s'. Reason : %s. Aborting.\n", envname, strerror(errno)); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1897 | return 1; |
| 1898 | } |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1899 | else if (ret > len) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1900 | ha_alert("Environment variable '%s' was truncated. Aborting.\n", envname); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1901 | return 1; |
| 1902 | } |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1903 | return 0; |
| 1904 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1905 | |
| 1906 | static int prepare_external_check(struct check *check) |
| 1907 | { |
| 1908 | struct server *s = check->server; |
| 1909 | struct proxy *px = s->proxy; |
| 1910 | struct listener *listener = NULL, *l; |
| 1911 | int i; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1912 | const char *path = px->check_path ? px->check_path : DEF_CHECK_PATH; |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1913 | char buf[256]; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1914 | |
| 1915 | list_for_each_entry(l, &px->conf.listeners, by_fe) |
| 1916 | /* Use the first INET, INET6 or UNIX listener */ |
| 1917 | if (l->addr.ss_family == AF_INET || |
| 1918 | l->addr.ss_family == AF_INET6 || |
| 1919 | l->addr.ss_family == AF_UNIX) { |
| 1920 | listener = l; |
| 1921 | break; |
| 1922 | } |
| 1923 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1924 | check->curpid = NULL; |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1925 | check->envp = calloc((EXTCHK_SIZE + 1), sizeof(char *)); |
| 1926 | if (!check->envp) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1927 | ha_alert("Failed to allocate memory for environment variables. Aborting\n"); |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1928 | goto err; |
| 1929 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1930 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1931 | check->argv = calloc(6, sizeof(char *)); |
| 1932 | if (!check->argv) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1933 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1934 | goto err; |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1935 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1936 | |
| 1937 | check->argv[0] = px->check_command; |
| 1938 | |
Cyril Bonté | 777be86 | 2014-12-02 21:21:35 +0100 | [diff] [blame] | 1939 | if (!listener) { |
| 1940 | check->argv[1] = strdup("NOT_USED"); |
| 1941 | check->argv[2] = strdup("NOT_USED"); |
| 1942 | } |
| 1943 | else if (listener->addr.ss_family == AF_INET || |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1944 | listener->addr.ss_family == AF_INET6) { |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1945 | addr_to_str(&listener->addr, buf, sizeof(buf)); |
| 1946 | check->argv[1] = strdup(buf); |
| 1947 | port_to_str(&listener->addr, buf, sizeof(buf)); |
| 1948 | check->argv[2] = strdup(buf); |
Cyril Bonté | 777be86 | 2014-12-02 21:21:35 +0100 | [diff] [blame] | 1949 | } |
| 1950 | else if (listener->addr.ss_family == AF_UNIX) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1951 | const struct sockaddr_un *un; |
| 1952 | |
| 1953 | un = (struct sockaddr_un *)&listener->addr; |
| 1954 | check->argv[1] = strdup(un->sun_path); |
| 1955 | check->argv[2] = strdup("NOT_USED"); |
Cyril Bonté | 777be86 | 2014-12-02 21:21:35 +0100 | [diff] [blame] | 1956 | } |
| 1957 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1958 | ha_alert("Starting [%s:%s] check: unsupported address family.\n", px->id, s->id); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1959 | goto err; |
| 1960 | } |
| 1961 | |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 1962 | if (!check->argv[1] || !check->argv[2]) { |
| 1963 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
| 1964 | goto err; |
| 1965 | } |
| 1966 | |
| 1967 | check->argv[3] = calloc(EXTCHK_SIZE_ADDR, sizeof(*check->argv[3])); |
| 1968 | check->argv[4] = calloc(EXTCHK_SIZE_UINT, sizeof(*check->argv[4])); |
| 1969 | if (!check->argv[3] || !check->argv[4]) { |
| 1970 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
| 1971 | goto err; |
| 1972 | } |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1973 | |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 1974 | addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR); |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1975 | if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6) |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 1976 | snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1977 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1978 | for (i = 0; i < 5; i++) { |
| 1979 | if (!check->argv[i]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1980 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1981 | goto err; |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1982 | } |
| 1983 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 1984 | |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1985 | EXTCHK_SETENV(check, EXTCHK_PATH, path, err); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1986 | /* Add proxy environment variables */ |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1987 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_NAME, px->id, err); |
| 1988 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ID, ultoa_r(px->uuid, buf, sizeof(buf)), err); |
| 1989 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_ADDR, check->argv[1], err); |
| 1990 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_PROXY_PORT, check->argv[2], err); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 1991 | /* Add server environment variables */ |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 1992 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_NAME, s->id, err); |
| 1993 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ID, ultoa_r(s->puid, buf, sizeof(buf)), err); |
| 1994 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3], err); |
| 1995 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4], err); |
| 1996 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_MAXCONN, ultoa_r(s->maxconn, buf, sizeof(buf)), err); |
| 1997 | EXTCHK_SETENV(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf)), err); |
| 1998 | |
| 1999 | /* Ensure that we don't leave any hole in check->envp */ |
| 2000 | for (i = 0; i < EXTCHK_SIZE; i++) |
| 2001 | if (!check->envp[i]) |
| 2002 | EXTCHK_SETENV(check, i, "", err); |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 2003 | |
Cyril Bonté | 99c5bf5 | 2014-08-07 01:55:38 +0200 | [diff] [blame] | 2004 | return 1; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2005 | err: |
| 2006 | if (check->envp) { |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 2007 | for (i = 0; i < EXTCHK_SIZE; i++) |
Cyril Bonté | 9ede66b | 2014-12-02 21:21:36 +0100 | [diff] [blame] | 2008 | free(check->envp[i]); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2009 | free(check->envp); |
| 2010 | check->envp = NULL; |
| 2011 | } |
| 2012 | |
| 2013 | if (check->argv) { |
| 2014 | for (i = 1; i < 5; i++) |
| 2015 | free(check->argv[i]); |
| 2016 | free(check->argv); |
| 2017 | check->argv = NULL; |
| 2018 | } |
Cyril Bonté | 99c5bf5 | 2014-08-07 01:55:38 +0200 | [diff] [blame] | 2019 | return 0; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2020 | } |
| 2021 | |
Simon Horman | b00d17a | 2014-06-13 16:18:16 +0900 | [diff] [blame] | 2022 | /* |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2023 | * establish a server health-check that makes use of a process. |
| 2024 | * |
| 2025 | * It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2026 | * - SF_ERR_NONE if everything's OK |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2027 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 2028 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2029 | * |
| 2030 | * Blocks and then unblocks SIGCHLD |
| 2031 | */ |
| 2032 | static int connect_proc_chk(struct task *t) |
| 2033 | { |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 2034 | char buf[256]; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2035 | struct check *check = t->context; |
| 2036 | struct server *s = check->server; |
| 2037 | struct proxy *px = s->proxy; |
| 2038 | int status; |
| 2039 | pid_t pid; |
| 2040 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2041 | status = SF_ERR_RESOURCE; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2042 | |
| 2043 | block_sigchld(); |
| 2044 | |
| 2045 | pid = fork(); |
| 2046 | if (pid < 0) { |
Willy Tarreau | d96f112 | 2019-12-03 07:07:36 +0100 | [diff] [blame] | 2047 | ha_alert("Failed to fork process for external health check%s: %s. Aborting.\n", |
| 2048 | (global.tune.options & GTUNE_INSECURE_FORK) ? |
| 2049 | "" : " (likely caused by missing 'insecure-fork-wanted')", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2050 | strerror(errno)); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2051 | set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno)); |
| 2052 | goto out; |
| 2053 | } |
| 2054 | if (pid == 0) { |
| 2055 | /* Child */ |
| 2056 | extern char **environ; |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 2057 | struct rlimit limit; |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 2058 | int fd; |
| 2059 | |
| 2060 | /* close all FDs. Keep stdin/stdout/stderr in verbose mode */ |
| 2061 | fd = (global.mode & (MODE_QUIET|MODE_VERBOSE)) == MODE_QUIET ? 0 : 3; |
| 2062 | |
Willy Tarreau | 2555ccf | 2019-02-21 22:22:06 +0100 | [diff] [blame] | 2063 | my_closefrom(fd); |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 2064 | |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 2065 | /* restore the initial FD limits */ |
| 2066 | limit.rlim_cur = rlim_fd_cur_at_boot; |
| 2067 | limit.rlim_max = rlim_fd_max_at_boot; |
| 2068 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { |
| 2069 | getrlimit(RLIMIT_NOFILE, &limit); |
| 2070 | ha_warning("External check: failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n", |
| 2071 | rlim_fd_cur_at_boot, rlim_fd_max_at_boot, |
| 2072 | (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max); |
| 2073 | } |
| 2074 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2075 | environ = check->envp; |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 2076 | |
| 2077 | /* Update some environment variables and command args: curconn, server addr and server port */ |
Cyril Bonté | ac92a06 | 2014-12-27 22:28:38 +0100 | [diff] [blame] | 2078 | extchk_setenv(check, EXTCHK_HAPROXY_SERVER_CURCONN, ultoa_r(s->cur_sess, buf, sizeof(buf))); |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 2079 | |
| 2080 | addr_to_str(&s->addr, check->argv[3], EXTCHK_SIZE_ADDR); |
| 2081 | extchk_setenv(check, EXTCHK_HAPROXY_SERVER_ADDR, check->argv[3]); |
| 2082 | |
| 2083 | *check->argv[4] = 0; |
| 2084 | if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6) |
| 2085 | snprintf(check->argv[4], EXTCHK_SIZE_UINT, "%u", s->svc_port); |
| 2086 | extchk_setenv(check, EXTCHK_HAPROXY_SERVER_PORT, check->argv[4]); |
| 2087 | |
Willy Tarreau | 2df8cad | 2019-07-01 07:51:29 +0200 | [diff] [blame] | 2088 | haproxy_unblock_signals(); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2089 | execvp(px->check_command, check->argv); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2090 | ha_alert("Failed to exec process for external health check: %s. Aborting.\n", |
| 2091 | strerror(errno)); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2092 | exit(-1); |
| 2093 | } |
| 2094 | |
| 2095 | /* Parent */ |
| 2096 | if (check->result == CHK_RES_UNKNOWN) { |
| 2097 | if (pid_list_add(pid, t) != NULL) { |
| 2098 | t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter)); |
| 2099 | |
| 2100 | if (px->timeout.check && px->timeout.connect) { |
| 2101 | int t_con = tick_add(now_ms, px->timeout.connect); |
| 2102 | t->expire = tick_first(t->expire, t_con); |
| 2103 | } |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2104 | status = SF_ERR_NONE; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2105 | goto out; |
| 2106 | } |
| 2107 | else { |
| 2108 | set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno)); |
| 2109 | } |
| 2110 | kill(pid, SIGTERM); /* process creation error */ |
| 2111 | } |
| 2112 | else |
| 2113 | set_server_check_status(check, HCHK_STATUS_SOCKERR, strerror(errno)); |
| 2114 | |
| 2115 | out: |
| 2116 | unblock_sigchld(); |
| 2117 | return status; |
| 2118 | } |
| 2119 | |
| 2120 | /* |
Willy Tarreau | 1e62e2a | 2017-10-04 15:07:02 +0200 | [diff] [blame] | 2121 | * manages a server health-check that uses an external process. Returns |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2122 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2123 | * |
| 2124 | * Please do NOT place any return statement in this function and only leave |
| 2125 | * via the out_unlock label. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2126 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2127 | static struct task *process_chk_proc(struct task *t, void *context, unsigned short state) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2128 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2129 | struct check *check = context; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2130 | struct server *s = check->server; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2131 | int rv; |
| 2132 | int ret; |
| 2133 | int expired = tick_is_expired(t->expire, now_ms); |
| 2134 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2135 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2136 | if (!(check->state & CHK_ST_INPROGRESS)) { |
| 2137 | /* no check currently running */ |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2138 | if (!expired) /* woke up too early */ |
| 2139 | goto out_unlock; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2140 | |
| 2141 | /* we don't send any health-checks when the proxy is |
| 2142 | * stopped, the server should not be checked or the check |
| 2143 | * is disabled. |
| 2144 | */ |
| 2145 | if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) || |
| 2146 | s->proxy->state == PR_STSTOPPED) |
| 2147 | goto reschedule; |
| 2148 | |
| 2149 | /* we'll initiate a new check */ |
| 2150 | set_server_check_status(check, HCHK_STATUS_START, NULL); |
| 2151 | |
| 2152 | check->state |= CHK_ST_INPROGRESS; |
| 2153 | |
Simon Horman | dbf7019 | 2015-01-30 11:22:53 +0900 | [diff] [blame] | 2154 | ret = connect_proc_chk(t); |
Willy Tarreau | d7c3fbd | 2017-10-04 15:19:26 +0200 | [diff] [blame] | 2155 | if (ret == SF_ERR_NONE) { |
Willy Tarreau | 1e62e2a | 2017-10-04 15:07:02 +0200 | [diff] [blame] | 2156 | /* the process was forked, we allow up to min(inter, |
| 2157 | * timeout.connect) for it to report its status, but |
| 2158 | * only when timeout.check is set as it may be to short |
| 2159 | * for a full check otherwise. |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2160 | */ |
| 2161 | t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter)); |
| 2162 | |
| 2163 | if (s->proxy->timeout.check && s->proxy->timeout.connect) { |
| 2164 | int t_con = tick_add(now_ms, s->proxy->timeout.connect); |
| 2165 | t->expire = tick_first(t->expire, t_con); |
| 2166 | } |
Christopher Faulet | 88ce5d1 | 2017-10-20 15:41:18 +0200 | [diff] [blame] | 2167 | task_set_affinity(t, tid_bit); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2168 | goto reschedule; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2169 | } |
| 2170 | |
Willy Tarreau | 1e62e2a | 2017-10-04 15:07:02 +0200 | [diff] [blame] | 2171 | /* here, we failed to start the check */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2172 | |
| 2173 | check->state &= ~CHK_ST_INPROGRESS; |
| 2174 | check_notify_failure(check); |
| 2175 | |
| 2176 | /* we allow up to min(inter, timeout.connect) for a connection |
| 2177 | * to establish but only when timeout.check is set |
| 2178 | * as it may be to short for a full check otherwise |
| 2179 | */ |
| 2180 | while (tick_is_expired(t->expire, now_ms)) { |
| 2181 | int t_con; |
| 2182 | |
| 2183 | t_con = tick_add(t->expire, s->proxy->timeout.connect); |
| 2184 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
| 2185 | |
| 2186 | if (s->proxy->timeout.check) |
| 2187 | t->expire = tick_first(t->expire, t_con); |
| 2188 | } |
| 2189 | } |
| 2190 | else { |
| 2191 | /* there was a test running. |
| 2192 | * First, let's check whether there was an uncaught error, |
| 2193 | * which can happen on connect timeout or error. |
| 2194 | */ |
| 2195 | if (check->result == CHK_RES_UNKNOWN) { |
| 2196 | /* good connection is enough for pure TCP check */ |
| 2197 | struct pid_list *elem = check->curpid; |
| 2198 | int status = HCHK_STATUS_UNKNOWN; |
| 2199 | |
| 2200 | if (elem->exited) { |
| 2201 | status = elem->status; /* Save in case the process exits between use below */ |
| 2202 | if (!WIFEXITED(status)) |
| 2203 | check->code = -1; |
| 2204 | else |
| 2205 | check->code = WEXITSTATUS(status); |
| 2206 | if (!WIFEXITED(status) || WEXITSTATUS(status)) |
| 2207 | status = HCHK_STATUS_PROCERR; |
| 2208 | else |
| 2209 | status = HCHK_STATUS_PROCOK; |
| 2210 | } else if (expired) { |
| 2211 | status = HCHK_STATUS_PROCTOUT; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2212 | ha_warning("kill %d\n", (int)elem->pid); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2213 | kill(elem->pid, SIGTERM); |
| 2214 | } |
| 2215 | set_server_check_status(check, status, NULL); |
| 2216 | } |
| 2217 | |
| 2218 | if (check->result == CHK_RES_FAILED) { |
| 2219 | /* a failure or timeout detected */ |
| 2220 | check_notify_failure(check); |
| 2221 | } |
| 2222 | else if (check->result == CHK_RES_CONDPASS) { |
| 2223 | /* check is OK but asks for stopping mode */ |
| 2224 | check_notify_stopping(check); |
| 2225 | } |
| 2226 | else if (check->result == CHK_RES_PASSED) { |
| 2227 | /* a success was detected */ |
| 2228 | check_notify_success(check); |
| 2229 | } |
Willy Tarreau | 6dd4ac8 | 2019-09-03 18:55:02 +0200 | [diff] [blame] | 2230 | task_set_affinity(t, 1); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2231 | check->state &= ~CHK_ST_INPROGRESS; |
| 2232 | |
| 2233 | pid_list_del(check->curpid); |
| 2234 | |
| 2235 | rv = 0; |
| 2236 | if (global.spread_checks > 0) { |
| 2237 | rv = srv_getinter(check) * global.spread_checks / 100; |
Willy Tarreau | 5a6d3e7 | 2020-03-08 17:53:53 +0100 | [diff] [blame] | 2238 | rv -= (int) (2 * rv * (ha_random32() / 4294967295.0)); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2239 | } |
| 2240 | t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv)); |
| 2241 | } |
| 2242 | |
| 2243 | reschedule: |
| 2244 | while (tick_is_expired(t->expire, now_ms)) |
| 2245 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2246 | |
| 2247 | out_unlock: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2248 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2249 | return t; |
| 2250 | } |
| 2251 | |
| 2252 | /* |
| 2253 | * manages a server health-check that uses a connection. Returns |
| 2254 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2255 | * |
| 2256 | * Please do NOT place any return statement in this function and only leave |
| 2257 | * via the out_unlock label. |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2258 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2259 | static struct task *process_chk_conn(struct task *t, void *context, unsigned short state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2260 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2261 | struct check *check = context; |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2262 | struct proxy *proxy = check->proxy; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2263 | struct conn_stream *cs = check->cs; |
| 2264 | struct connection *conn = cs_conn(cs); |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2265 | int rv; |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 2266 | int ret; |
Willy Tarreau | acbdc7a | 2012-11-23 14:02:10 +0100 | [diff] [blame] | 2267 | int expired = tick_is_expired(t->expire, now_ms); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2268 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2269 | if (check->server) |
| 2270 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
Willy Tarreau | 2c115e5 | 2013-12-11 19:41:16 +0100 | [diff] [blame] | 2271 | if (!(check->state & CHK_ST_INPROGRESS)) { |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2272 | /* no check currently running */ |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2273 | if (!expired) /* woke up too early */ |
| 2274 | goto out_unlock; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2275 | |
Simon Horman | 671b6f0 | 2013-11-25 10:46:39 +0900 | [diff] [blame] | 2276 | /* we don't send any health-checks when the proxy is |
| 2277 | * stopped, the server should not be checked or the check |
| 2278 | * is disabled. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2279 | */ |
Willy Tarreau | 0d924cc | 2013-12-11 21:26:24 +0100 | [diff] [blame] | 2280 | if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) || |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2281 | proxy->state == PR_STSTOPPED) |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2282 | goto reschedule; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2283 | |
| 2284 | /* we'll initiate a new check */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2285 | set_server_check_status(check, HCHK_STATUS_START, NULL); |
Willy Tarreau | 1ae1b7b | 2012-09-28 15:28:30 +0200 | [diff] [blame] | 2286 | |
Willy Tarreau | 2c115e5 | 2013-12-11 19:41:16 +0100 | [diff] [blame] | 2287 | check->state |= CHK_ST_INPROGRESS; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2288 | b_reset(&check->bi); |
| 2289 | b_reset(&check->bo); |
Willy Tarreau | 1ae1b7b | 2012-09-28 15:28:30 +0200 | [diff] [blame] | 2290 | |
Olivier Houchard | aebeff7 | 2019-11-29 16:18:51 +0100 | [diff] [blame] | 2291 | task_set_affinity(t, tid_bit); |
Simon Horman | dbf7019 | 2015-01-30 11:22:53 +0900 | [diff] [blame] | 2292 | ret = connect_conn_chk(t); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2293 | cs = check->cs; |
| 2294 | conn = cs_conn(cs); |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2295 | |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 2296 | switch (ret) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2297 | case SF_ERR_UP: |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2298 | goto out_unlock; |
| 2299 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2300 | case SF_ERR_NONE: |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 2301 | /* we allow up to min(inter, timeout.connect) for a connection |
| 2302 | * to establish but only when timeout.check is set |
| 2303 | * as it may be to short for a full check otherwise |
| 2304 | */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2305 | t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter)); |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 2306 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2307 | if (proxy->timeout.check && proxy->timeout.connect) { |
| 2308 | int t_con = tick_add(now_ms, proxy->timeout.connect); |
Willy Tarreau | fb56aab | 2012-09-28 14:40:02 +0200 | [diff] [blame] | 2309 | t->expire = tick_first(t->expire, t_con); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2310 | } |
Willy Tarreau | 06559ac | 2013-12-05 01:53:08 +0100 | [diff] [blame] | 2311 | |
Willy Tarreau | cc705a6 | 2019-09-05 17:51:30 +0200 | [diff] [blame] | 2312 | if (check->type) { |
| 2313 | /* send the request if we have one. We avoid receiving |
| 2314 | * if not connected, unless we didn't subscribe for |
| 2315 | * sending since otherwise we won't be woken up. |
| 2316 | */ |
| 2317 | __event_srv_chk_w(cs); |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2318 | if (!(conn->flags & CO_FL_WAIT_XPRT) || |
Willy Tarreau | c594039 | 2019-09-05 17:38:40 +0200 | [diff] [blame] | 2319 | !(check->wait_list.events & SUB_RETRY_SEND)) |
| 2320 | __event_srv_chk_r(cs); |
Willy Tarreau | cc705a6 | 2019-09-05 17:51:30 +0200 | [diff] [blame] | 2321 | } |
Willy Tarreau | 06559ac | 2013-12-05 01:53:08 +0100 | [diff] [blame] | 2322 | |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2323 | goto reschedule; |
| 2324 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2325 | case SF_ERR_SRVTO: /* ETIMEDOUT */ |
| 2326 | case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */ |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2327 | if (conn) |
| 2328 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 2329 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2330 | break; |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 2331 | /* should share same code than cases below */ |
| 2332 | case SF_ERR_CHK_PORT: |
| 2333 | check->state |= CHK_ST_PORT_MISS; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2334 | case SF_ERR_PRXCOND: |
| 2335 | case SF_ERR_RESOURCE: |
| 2336 | case SF_ERR_INTERNAL: |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2337 | if (conn) |
| 2338 | conn->flags |= CO_FL_ERROR; |
| 2339 | chk_report_conn_err(check, conn ? 0 : ENOMEM, 0); |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2340 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2341 | } |
| 2342 | |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2343 | /* here, we have seen a synchronous error, no fd was allocated */ |
Olivier Houchard | aebeff7 | 2019-11-29 16:18:51 +0100 | [diff] [blame] | 2344 | task_set_affinity(t, MAX_THREADS_MASK); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2345 | if (cs) { |
Olivier Houchard | 4906554 | 2019-05-31 19:20:36 +0200 | [diff] [blame] | 2346 | if (check->wait_list.events) |
| 2347 | cs->conn->xprt->unsubscribe(cs->conn, |
| 2348 | cs->conn->xprt_ctx, |
| 2349 | check->wait_list.events, |
| 2350 | &check->wait_list); |
| 2351 | /* We may have been scheduled to run, and the |
| 2352 | * I/O handler expects to have a cs, so remove |
| 2353 | * the tasklet |
| 2354 | */ |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 2355 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2356 | cs_destroy(cs); |
| 2357 | cs = check->cs = NULL; |
| 2358 | conn = NULL; |
Olivier Houchard | 390485a | 2017-10-24 19:03:30 +0200 | [diff] [blame] | 2359 | } |
Willy Tarreau | 6b0a850 | 2012-11-23 08:51:32 +0100 | [diff] [blame] | 2360 | |
Willy Tarreau | 2c115e5 | 2013-12-11 19:41:16 +0100 | [diff] [blame] | 2361 | check->state &= ~CHK_ST_INPROGRESS; |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 2362 | check_notify_failure(check); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2363 | |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2364 | /* we allow up to min(inter, timeout.connect) for a connection |
| 2365 | * to establish but only when timeout.check is set |
| 2366 | * as it may be to short for a full check otherwise |
| 2367 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 2368 | while (tick_is_expired(t->expire, now_ms)) { |
| 2369 | int t_con; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2370 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2371 | t_con = tick_add(t->expire, proxy->timeout.connect); |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2372 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2373 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2374 | if (proxy->timeout.check) |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 2375 | t->expire = tick_first(t->expire, t_con); |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 2376 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2377 | } |
| 2378 | else { |
Willy Tarreau | f150317 | 2012-09-28 19:39:36 +0200 | [diff] [blame] | 2379 | /* there was a test running. |
| 2380 | * First, let's check whether there was an uncaught error, |
| 2381 | * which can happen on connect timeout or error. |
| 2382 | */ |
Simon Horman | ccaabcd | 2014-06-20 12:29:47 +0900 | [diff] [blame] | 2383 | if (check->result == CHK_RES_UNKNOWN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 2384 | /* good connection is enough for pure TCP check */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2385 | if (!(conn->flags & CO_FL_WAIT_XPRT) && !check->type) { |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 2386 | if (check->use_ssl == 1) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2387 | set_server_check_status(check, HCHK_STATUS_L6OK, NULL); |
Willy Tarreau | f150317 | 2012-09-28 19:39:36 +0200 | [diff] [blame] | 2388 | else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2389 | set_server_check_status(check, HCHK_STATUS_L4OK, NULL); |
Willy Tarreau | acbdc7a | 2012-11-23 14:02:10 +0100 | [diff] [blame] | 2390 | } |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 2391 | else if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) { |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 2392 | chk_report_conn_err(check, 0, expired); |
Willy Tarreau | f150317 | 2012-09-28 19:39:36 +0200 | [diff] [blame] | 2393 | } |
Willy Tarreau | 74fa7fb | 2012-11-23 14:43:49 +0100 | [diff] [blame] | 2394 | else |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2395 | goto out_unlock; /* timeout not reached, wait again */ |
Willy Tarreau | f150317 | 2012-09-28 19:39:36 +0200 | [diff] [blame] | 2396 | } |
| 2397 | |
Willy Tarreau | 74fa7fb | 2012-11-23 14:43:49 +0100 | [diff] [blame] | 2398 | /* check complete or aborted */ |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2399 | if (conn && conn->xprt) { |
Willy Tarreau | 5ba04f6 | 2013-02-12 15:23:12 +0100 | [diff] [blame] | 2400 | /* The check was aborted and the connection was not yet closed. |
| 2401 | * This can happen upon timeout, or when an external event such |
| 2402 | * as a failed response coupled with "observe layer7" caused the |
| 2403 | * server state to be suddenly changed. |
| 2404 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 2405 | conn_sock_drain(conn); |
Willy Tarreau | a553ae9 | 2017-10-05 18:52:17 +0200 | [diff] [blame] | 2406 | cs_close(cs); |
Willy Tarreau | 5ba04f6 | 2013-02-12 15:23:12 +0100 | [diff] [blame] | 2407 | } |
| 2408 | |
Willy Tarreau | ac59f36 | 2017-10-08 11:10:19 +0200 | [diff] [blame] | 2409 | if (cs) { |
Olivier Houchard | 4906554 | 2019-05-31 19:20:36 +0200 | [diff] [blame] | 2410 | if (check->wait_list.events) |
| 2411 | cs->conn->xprt->unsubscribe(cs->conn, |
| 2412 | cs->conn->xprt_ctx, |
| 2413 | check->wait_list.events, |
| 2414 | &check->wait_list); |
| 2415 | /* We may have been scheduled to run, and the |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 2416 | * I/O handler expects to have a cs, so remove |
| 2417 | * the tasklet |
| 2418 | */ |
| 2419 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2420 | cs_destroy(cs); |
| 2421 | cs = check->cs = NULL; |
| 2422 | conn = NULL; |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2423 | } |
| 2424 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2425 | if (check->server) { |
| 2426 | if (check->result == CHK_RES_FAILED) { |
| 2427 | /* a failure or timeout detected */ |
| 2428 | check_notify_failure(check); |
| 2429 | } |
| 2430 | else if (check->result == CHK_RES_CONDPASS) { |
| 2431 | /* check is OK but asks for stopping mode */ |
| 2432 | check_notify_stopping(check); |
| 2433 | } |
| 2434 | else if (check->result == CHK_RES_PASSED) { |
| 2435 | /* a success was detected */ |
| 2436 | check_notify_success(check); |
| 2437 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2438 | } |
Christopher Faulet | 88ce5d1 | 2017-10-20 15:41:18 +0200 | [diff] [blame] | 2439 | task_set_affinity(t, MAX_THREADS_MASK); |
Willy Tarreau | 2c115e5 | 2013-12-11 19:41:16 +0100 | [diff] [blame] | 2440 | check->state &= ~CHK_ST_INPROGRESS; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2441 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2442 | if (check->server) { |
| 2443 | rv = 0; |
| 2444 | if (global.spread_checks > 0) { |
| 2445 | rv = srv_getinter(check) * global.spread_checks / 100; |
Willy Tarreau | 5a6d3e7 | 2020-03-08 17:53:53 +0100 | [diff] [blame] | 2446 | rv -= (int) (2 * rv * (ha_random32() / 4294967295.0)); |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2447 | } |
| 2448 | t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2449 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2450 | } |
Willy Tarreau | 5a78f36 | 2012-11-23 12:47:05 +0100 | [diff] [blame] | 2451 | |
| 2452 | reschedule: |
| 2453 | while (tick_is_expired(t->expire, now_ms)) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2454 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2455 | out_unlock: |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2456 | if (check->server) |
| 2457 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
Willy Tarreau | 26c2506 | 2009-03-08 09:38:41 +0100 | [diff] [blame] | 2458 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2459 | } |
| 2460 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2461 | /* |
| 2462 | * manages a server health-check. Returns |
| 2463 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
| 2464 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2465 | static struct task *process_chk(struct task *t, void *context, unsigned short state) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2466 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2467 | struct check *check = context; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2468 | |
| 2469 | if (check->type == PR_O2_EXT_CHK) |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 2470 | return process_chk_proc(t, context, state); |
| 2471 | return process_chk_conn(t, context, state); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 2472 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2473 | } |
| 2474 | |
Simon Horman | 5c94242 | 2013-11-25 10:46:32 +0900 | [diff] [blame] | 2475 | static int start_check_task(struct check *check, int mininter, |
| 2476 | int nbcheck, int srvpos) |
| 2477 | { |
| 2478 | struct task *t; |
Willy Tarreau | 6dd4ac8 | 2019-09-03 18:55:02 +0200 | [diff] [blame] | 2479 | unsigned long thread_mask = MAX_THREADS_MASK; |
| 2480 | |
| 2481 | if (check->type == PR_O2_EXT_CHK) |
| 2482 | thread_mask = 1; |
| 2483 | |
Simon Horman | 5c94242 | 2013-11-25 10:46:32 +0900 | [diff] [blame] | 2484 | /* task for the check */ |
Willy Tarreau | 6dd4ac8 | 2019-09-03 18:55:02 +0200 | [diff] [blame] | 2485 | if ((t = task_new(thread_mask)) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2486 | ha_alert("Starting [%s:%s] check: out of memory.\n", |
| 2487 | check->server->proxy->id, check->server->id); |
Simon Horman | 5c94242 | 2013-11-25 10:46:32 +0900 | [diff] [blame] | 2488 | return 0; |
| 2489 | } |
| 2490 | |
| 2491 | check->task = t; |
| 2492 | t->process = process_chk; |
| 2493 | t->context = check; |
| 2494 | |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 2495 | if (mininter < srv_getinter(check)) |
| 2496 | mininter = srv_getinter(check); |
| 2497 | |
| 2498 | if (global.max_spread_checks && mininter > global.max_spread_checks) |
| 2499 | mininter = global.max_spread_checks; |
| 2500 | |
Simon Horman | 5c94242 | 2013-11-25 10:46:32 +0900 | [diff] [blame] | 2501 | /* check this every ms */ |
Willy Tarreau | 1746eec | 2014-04-25 10:46:47 +0200 | [diff] [blame] | 2502 | t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck)); |
Simon Horman | 5c94242 | 2013-11-25 10:46:32 +0900 | [diff] [blame] | 2503 | check->start = now; |
| 2504 | task_queue(t); |
| 2505 | |
| 2506 | return 1; |
| 2507 | } |
| 2508 | |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2509 | /* |
| 2510 | * Start health-check. |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2511 | * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case. |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2512 | */ |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2513 | static int start_checks() |
| 2514 | { |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2515 | |
| 2516 | struct proxy *px; |
| 2517 | struct server *s; |
| 2518 | struct task *t; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2519 | int nbcheck=0, mininter=0, srvpos=0; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2520 | |
Willy Tarreau | 2c43a1e | 2007-10-14 23:05:39 +0200 | [diff] [blame] | 2521 | /* 1- count the checkers to run simultaneously. |
| 2522 | * We also determine the minimum interval among all of those which |
| 2523 | * have an interval larger than SRV_CHK_INTER_THRES. This interval |
| 2524 | * will be used to spread their start-up date. Those which have |
Jamie Gloudon | 801a0a3 | 2012-08-25 00:18:33 -0400 | [diff] [blame] | 2525 | * a shorter interval will start independently and will not dictate |
Willy Tarreau | 2c43a1e | 2007-10-14 23:05:39 +0200 | [diff] [blame] | 2526 | * too short an interval for all others. |
| 2527 | */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2528 | for (px = proxies_list; px; px = px->next) { |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2529 | for (s = px->srv; s; s = s->next) { |
Willy Tarreau | e7b7348 | 2013-11-21 11:50:50 +0100 | [diff] [blame] | 2530 | if (s->slowstart) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 2531 | if ((t = task_new(MAX_THREADS_MASK)) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2532 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2533 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | e7b7348 | 2013-11-21 11:50:50 +0100 | [diff] [blame] | 2534 | } |
| 2535 | /* We need a warmup task that will be called when the server |
| 2536 | * state switches from down to up. |
| 2537 | */ |
| 2538 | s->warmup = t; |
| 2539 | t->process = server_warmup; |
| 2540 | t->context = s; |
Baptiste Assmann | 6076d1c | 2015-09-17 22:53:59 +0200 | [diff] [blame] | 2541 | /* server can be in this state only because of */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2542 | if (s->next_state == SRV_ST_STARTING) |
Baptiste Assmann | 6076d1c | 2015-09-17 22:53:59 +0200 | [diff] [blame] | 2543 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, (now.tv_sec - s->last_change)) / 20))); |
Willy Tarreau | e7b7348 | 2013-11-21 11:50:50 +0100 | [diff] [blame] | 2544 | } |
| 2545 | |
Willy Tarreau | d8514a2 | 2013-12-11 21:10:14 +0100 | [diff] [blame] | 2546 | if (s->check.state & CHK_ST_CONFIGURED) { |
| 2547 | nbcheck++; |
| 2548 | if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) && |
| 2549 | (!mininter || mininter > srv_getinter(&s->check))) |
| 2550 | mininter = srv_getinter(&s->check); |
| 2551 | } |
Willy Tarreau | 15f3910 | 2013-12-11 20:41:18 +0100 | [diff] [blame] | 2552 | |
Willy Tarreau | d8514a2 | 2013-12-11 21:10:14 +0100 | [diff] [blame] | 2553 | if (s->agent.state & CHK_ST_CONFIGURED) { |
| 2554 | nbcheck++; |
| 2555 | if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) && |
| 2556 | (!mininter || mininter > srv_getinter(&s->agent))) |
| 2557 | mininter = srv_getinter(&s->agent); |
| 2558 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2559 | } |
| 2560 | } |
| 2561 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2562 | if (!nbcheck) |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2563 | return 0; |
| 2564 | |
| 2565 | srand((unsigned)time(NULL)); |
| 2566 | |
| 2567 | /* |
| 2568 | * 2- start them as far as possible from each others. For this, we will |
| 2569 | * start them after their interval set to the min interval divided by |
| 2570 | * the number of servers, weighted by the server's position in the list. |
| 2571 | */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2572 | for (px = proxies_list; px; px = px->next) { |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2573 | if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 2574 | if (init_pid_list()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2575 | ha_alert("Starting [%s] check: out of memory.\n", px->id); |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2576 | return ERR_ALERT | ERR_FATAL; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2577 | } |
| 2578 | } |
| 2579 | |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2580 | for (s = px->srv; s; s = s->next) { |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2581 | /* A task for the main check */ |
Willy Tarreau | ff5ae35 | 2013-12-11 20:36:34 +0100 | [diff] [blame] | 2582 | if (s->check.state & CHK_ST_CONFIGURED) { |
Cyril Bonté | 99c5bf5 | 2014-08-07 01:55:38 +0200 | [diff] [blame] | 2583 | if (s->check.type == PR_O2_EXT_CHK) { |
| 2584 | if (!prepare_external_check(&s->check)) |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2585 | return ERR_ALERT | ERR_FATAL; |
Cyril Bonté | 99c5bf5 | 2014-08-07 01:55:38 +0200 | [diff] [blame] | 2586 | } |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2587 | if (!start_check_task(&s->check, mininter, nbcheck, srvpos)) |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2588 | return ERR_ALERT | ERR_FATAL; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2589 | srvpos++; |
| 2590 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2591 | |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2592 | /* A task for a auxiliary agent check */ |
Willy Tarreau | ff5ae35 | 2013-12-11 20:36:34 +0100 | [diff] [blame] | 2593 | if (s->agent.state & CHK_ST_CONFIGURED) { |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2594 | if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) { |
Willy Tarreau | 865c514 | 2016-12-21 20:04:48 +0100 | [diff] [blame] | 2595 | return ERR_ALERT | ERR_FATAL; |
Simon Horman | d60d691 | 2013-11-25 10:46:36 +0900 | [diff] [blame] | 2596 | } |
| 2597 | srvpos++; |
| 2598 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 2599 | } |
| 2600 | } |
| 2601 | return 0; |
| 2602 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2603 | |
| 2604 | /* |
Willy Tarreau | 5b3a202 | 2012-09-28 15:01:02 +0200 | [diff] [blame] | 2605 | * Perform content verification check on data in s->check.buffer buffer. |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2606 | * The buffer MUST be terminated by a null byte before calling this function. |
| 2607 | * Sets server status appropriately. The caller is responsible for ensuring |
| 2608 | * that the buffer contains at least 13 characters. If <done> is zero, we may |
| 2609 | * return 0 to indicate that data is required to decide of a match. |
| 2610 | */ |
| 2611 | static int httpchk_expect(struct server *s, int done) |
| 2612 | { |
Christopher Faulet | 1bc04c7 | 2017-10-29 20:14:08 +0100 | [diff] [blame] | 2613 | static THREAD_LOCAL char status_msg[] = "HTTP status check returned code <000>"; |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2614 | char status_code[] = "000"; |
| 2615 | char *contentptr; |
| 2616 | int crlf; |
| 2617 | int ret; |
| 2618 | |
| 2619 | switch (s->proxy->options2 & PR_O2_EXP_TYPE) { |
| 2620 | case PR_O2_EXP_STS: |
| 2621 | case PR_O2_EXP_RSTS: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2622 | memcpy(status_code, b_head(&s->check.bi) + 9, 3); |
| 2623 | memcpy(status_msg + strlen(status_msg) - 4, b_head(&s->check.bi) + 9, 3); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2624 | |
| 2625 | if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STS) |
| 2626 | ret = strncmp(s->proxy->expect_str, status_code, 3) == 0; |
| 2627 | else |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2628 | ret = regex_exec(s->proxy->expect_regex, status_code); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2629 | |
| 2630 | /* we necessarily have the response, so there are no partial failures */ |
| 2631 | if (s->proxy->options2 & PR_O2_EXP_INV) |
| 2632 | ret = !ret; |
| 2633 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2634 | set_server_check_status(&s->check, ret ? HCHK_STATUS_L7OKD : HCHK_STATUS_L7STS, status_msg); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2635 | break; |
| 2636 | |
| 2637 | case PR_O2_EXP_STR: |
| 2638 | case PR_O2_EXP_RSTR: |
| 2639 | /* very simple response parser: ignore CR and only count consecutive LFs, |
| 2640 | * stop with contentptr pointing to first char after the double CRLF or |
| 2641 | * to '\0' if crlf < 2. |
| 2642 | */ |
| 2643 | crlf = 0; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2644 | for (contentptr = b_head(&s->check.bi); *contentptr; contentptr++) { |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2645 | if (crlf >= 2) |
| 2646 | break; |
| 2647 | if (*contentptr == '\r') |
| 2648 | continue; |
| 2649 | else if (*contentptr == '\n') |
| 2650 | crlf++; |
| 2651 | else |
| 2652 | crlf = 0; |
| 2653 | } |
| 2654 | |
| 2655 | /* Check that response contains a body... */ |
| 2656 | if (crlf < 2) { |
| 2657 | if (!done) |
| 2658 | return 0; |
| 2659 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2660 | set_server_check_status(&s->check, HCHK_STATUS_L7RSP, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2661 | "HTTP content check could not find a response body"); |
| 2662 | return 1; |
| 2663 | } |
| 2664 | |
| 2665 | /* Check that response body is not empty... */ |
| 2666 | if (*contentptr == '\0') { |
Willy Tarreau | a164fb5 | 2011-04-13 09:32:41 +0200 | [diff] [blame] | 2667 | if (!done) |
| 2668 | return 0; |
| 2669 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2670 | set_server_check_status(&s->check, HCHK_STATUS_L7RSP, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2671 | "HTTP content check found empty response body"); |
| 2672 | return 1; |
| 2673 | } |
| 2674 | |
| 2675 | /* Check the response content against the supplied string |
| 2676 | * or regex... */ |
| 2677 | if ((s->proxy->options2 & PR_O2_EXP_TYPE) == PR_O2_EXP_STR) |
| 2678 | ret = strstr(contentptr, s->proxy->expect_str) != NULL; |
| 2679 | else |
Thierry FOURNIER | 09af0d6 | 2014-06-18 11:35:54 +0200 | [diff] [blame] | 2680 | ret = regex_exec(s->proxy->expect_regex, contentptr); |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2681 | |
| 2682 | /* if we don't match, we may need to wait more */ |
| 2683 | if (!ret && !done) |
| 2684 | return 0; |
| 2685 | |
| 2686 | if (ret) { |
| 2687 | /* content matched */ |
| 2688 | if (s->proxy->options2 & PR_O2_EXP_INV) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2689 | set_server_check_status(&s->check, HCHK_STATUS_L7RSP, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2690 | "HTTP check matched unwanted content"); |
| 2691 | else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2692 | set_server_check_status(&s->check, HCHK_STATUS_L7OKD, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2693 | "HTTP content check matched"); |
| 2694 | } |
| 2695 | else { |
| 2696 | if (s->proxy->options2 & PR_O2_EXP_INV) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2697 | set_server_check_status(&s->check, HCHK_STATUS_L7OKD, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2698 | "HTTP check did not match unwanted content"); |
| 2699 | else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 2700 | set_server_check_status(&s->check, HCHK_STATUS_L7RSP, |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 2701 | "HTTP content check did not match"); |
| 2702 | } |
| 2703 | break; |
| 2704 | } |
| 2705 | return 1; |
| 2706 | } |
| 2707 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2708 | /* |
| 2709 | * return the id of a step in a send/expect session |
| 2710 | */ |
Simon Horman | e16c1b3 | 2015-01-30 11:22:57 +0900 | [diff] [blame] | 2711 | static int tcpcheck_get_step_id(struct check *check) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2712 | { |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2713 | struct tcpcheck_rule *cur; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2714 | int i = 0; |
| 2715 | |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 2716 | /* not even started anything yet => step 0 = initial connect */ |
Baptiste Assmann | f95bc8e | 2015-04-25 16:03:06 +0200 | [diff] [blame] | 2717 | if (!check->current_step) |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 2718 | return 0; |
| 2719 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2720 | /* no last started step => first step */ |
| 2721 | if (!check->last_started_step) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2722 | return 1; |
| 2723 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2724 | list_for_each_entry(cur, check->tcpcheck_rules, list) { |
| 2725 | if (cur->list.p == &check->last_started_step->list) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2726 | break; |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2727 | i++; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2728 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2729 | return i; |
| 2730 | } |
| 2731 | |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2732 | /* |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2733 | * return the latest known comment for the current rule, the comment attached to |
| 2734 | * it or the COMMENT rule immediately preceedding the expect rule chain, if any. |
| 2735 | * returns NULL if no comment found. |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2736 | */ |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2737 | static char *tcpcheck_get_step_comment(struct check *check) |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2738 | { |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2739 | struct tcpcheck_rule *cur; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2740 | char *ret = NULL; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2741 | |
| 2742 | /* not even started anything yet, return latest comment found before any action */ |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2743 | if (!check->current_step || !check->last_started_step) { |
| 2744 | cur = LIST_NEXT(check->tcpcheck_rules, typeof(cur), list); |
| 2745 | if (cur->action == TCPCHK_ACT_COMMENT) |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2746 | ret = cur->comment; |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2747 | goto return_comment; |
| 2748 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2749 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2750 | if (check->last_started_step->comment) { |
| 2751 | ret = check->last_started_step->comment; |
| 2752 | goto return_comment; |
| 2753 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2754 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2755 | cur = LIST_PREV(&check->last_started_step->list, typeof(cur), list); |
| 2756 | list_for_each_entry_from_rev(cur, check->tcpcheck_rules, list) { |
| 2757 | if (cur->action == TCPCHK_ACT_COMMENT) { |
| 2758 | ret = cur->comment; |
| 2759 | break; |
| 2760 | } |
| 2761 | else if (cur->action != TCPCHK_ACT_EXPECT) |
| 2762 | break; |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2763 | } |
| 2764 | |
| 2765 | return_comment: |
| 2766 | return ret; |
| 2767 | } |
| 2768 | |
Willy Tarreau | be74b88 | 2017-10-04 16:22:49 +0200 | [diff] [blame] | 2769 | /* proceed with next steps for the TCP checks <check>. Note that this is called |
| 2770 | * both from the connection's wake() callback and from the check scheduling task. |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 2771 | * It returns 0 on normal cases, or <0 if a close() has happened on an existing |
| 2772 | * connection, presenting the risk of an fd replacement. |
Willy Tarreau | 62ac84f | 2017-11-05 10:11:13 +0100 | [diff] [blame] | 2773 | * |
| 2774 | * Please do NOT place any return statement in this function and only leave |
Willy Tarreau | 2ab5c38 | 2019-07-17 18:48:07 +0200 | [diff] [blame] | 2775 | * via the out_end_tcpcheck label after setting retcode. |
Willy Tarreau | be74b88 | 2017-10-04 16:22:49 +0200 | [diff] [blame] | 2776 | */ |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 2777 | static int tcpcheck_main(struct check *check) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2778 | { |
Willy Tarreau | ce8c42a | 2015-05-13 11:23:01 +0200 | [diff] [blame] | 2779 | struct tcpcheck_rule *next; |
Baptiste Assmann | cfbd1b8 | 2015-05-02 09:00:23 +0200 | [diff] [blame] | 2780 | int done = 0, ret = 0, step = 0; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2781 | struct conn_stream *cs = check->cs; |
| 2782 | struct connection *conn = cs_conn(cs); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2783 | struct server *s = check->server; |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2784 | struct proxy *proxy = check->proxy; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2785 | struct task *t = check->task; |
Simon Horman | e16c1b3 | 2015-01-30 11:22:57 +0900 | [diff] [blame] | 2786 | struct list *head = check->tcpcheck_rules; |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 2787 | char *comment; |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 2788 | int retcode = 0; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2789 | |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2790 | /* here, we know that the check is complete or that it failed */ |
| 2791 | if (check->result != CHK_RES_UNKNOWN) |
| 2792 | goto out_end_tcpcheck; |
| 2793 | |
| 2794 | /* We have 4 possibilities here : |
| 2795 | * 1. we've not yet attempted step 1, and step 1 is a connect, so no |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2796 | * connection attempt was made yet ; conn==NULL;current_step==NULL. |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2797 | * 2. we've not yet attempted step 1, and step 1 is a not connect or |
| 2798 | * does not exist (no rule), so a connection attempt was made |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2799 | * before coming here, conn!=NULL. |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2800 | * 3. we're coming back after having started with step 1, so we may |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2801 | * be waiting for a connection attempt to complete. conn!=NULL. |
| 2802 | * 4. the connection + handshake are complete. conn!=NULL. |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2803 | * |
| 2804 | * #2 and #3 are quite similar, we want both the connection and the |
| 2805 | * handshake to complete before going any further. Thus we must always |
| 2806 | * wait for a connection to complete unless we're before and existing |
| 2807 | * step 1. |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2808 | */ |
Willy Tarreau | 449f952 | 2015-05-13 15:39:48 +0200 | [diff] [blame] | 2809 | |
| 2810 | /* find first rule and skip comments */ |
| 2811 | next = LIST_NEXT(head, struct tcpcheck_rule *, list); |
| 2812 | while (&next->list != head && next->action == TCPCHK_ACT_COMMENT) |
| 2813 | next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list); |
| 2814 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2815 | if ((check->current_step || &next->list == head) && |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2816 | (conn->flags & CO_FL_WAIT_XPRT)) { |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2817 | /* we allow up to min(inter, timeout.connect) for a connection |
| 2818 | * to establish but only when timeout.check is set |
| 2819 | * as it may be to short for a full check otherwise |
| 2820 | */ |
| 2821 | while (tick_is_expired(t->expire, now_ms)) { |
| 2822 | int t_con; |
| 2823 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2824 | t_con = tick_add(t->expire, proxy->timeout.connect); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2825 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
| 2826 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2827 | if (proxy->timeout.check) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2828 | t->expire = tick_first(t->expire, t_con); |
| 2829 | } |
Christopher Faulet | b610285 | 2017-11-28 10:06:29 +0100 | [diff] [blame] | 2830 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2831 | } |
| 2832 | |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2833 | /* special case: option tcp-check with no rule, a connect is enough */ |
Willy Tarreau | 449f952 | 2015-05-13 15:39:48 +0200 | [diff] [blame] | 2834 | if (&next->list == head) { |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2835 | set_server_check_status(check, HCHK_STATUS_L4OK, NULL); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2836 | goto out_end_tcpcheck; |
Willy Tarreau | ef95395 | 2014-10-02 14:30:14 +0200 | [diff] [blame] | 2837 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2838 | |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 2839 | /* no step means first step initialisation */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2840 | if (check->current_step == NULL) { |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 2841 | check->last_started_step = NULL; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2842 | b_reset(&check->bo); |
| 2843 | b_reset(&check->bi); |
Willy Tarreau | 449f952 | 2015-05-13 15:39:48 +0200 | [diff] [blame] | 2844 | check->current_step = next; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2845 | t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter)); |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 2846 | if (proxy->timeout.check) |
| 2847 | t->expire = tick_add_ifset(now_ms, proxy->timeout.check); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2848 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 2849 | |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 2850 | while (1) { |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 2851 | /* We have to try to flush the output buffer before reading, at |
| 2852 | * the end, or if we're about to send a string that does not fit |
| 2853 | * in the remaining space. That explains why we break out of the |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2854 | * loop after this control. If we have data, conn is valid. |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 2855 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2856 | if (b_data(&check->bo) && |
Willy Tarreau | ce8c42a | 2015-05-13 11:23:01 +0200 | [diff] [blame] | 2857 | (&check->current_step->list == head || |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 2858 | check->current_step->action != TCPCHK_ACT_SEND || |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2859 | check->current_step->string_len >= b_room(&check->bo))) { |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 2860 | int ret; |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 2861 | |
Olivier Houchard | ed0f207 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 2862 | ret = cs->conn->mux->snd_buf(cs, &check->bo, b_data(&check->bo), 0); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2863 | b_realign_if_empty(&check->bo); |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 2864 | |
| 2865 | if (ret <= 0) { |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 2866 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 2867 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 2868 | goto out_end_tcpcheck; |
| 2869 | } |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 2870 | break; |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 2871 | } |
Olivier Houchard | 4501c3e | 2018-08-28 19:36:18 +0200 | [diff] [blame] | 2872 | if (b_data(&check->bo)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2873 | cs->conn->mux->subscribe(cs, SUB_RETRY_SEND, &check->wait_list); |
Olivier Houchard | 4501c3e | 2018-08-28 19:36:18 +0200 | [diff] [blame] | 2874 | goto out; |
| 2875 | } |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 2876 | } |
| 2877 | |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 2878 | if (&check->current_step->list == head) |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 2879 | break; |
| 2880 | |
Willy Tarreau | ce8c42a | 2015-05-13 11:23:01 +0200 | [diff] [blame] | 2881 | /* have 'next' point to the next rule or NULL if we're on the |
| 2882 | * last one, connect() needs this. |
| 2883 | */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 2884 | next = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2885 | |
| 2886 | /* bypass all comment rules */ |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 2887 | while (&next->list != head && next->action == TCPCHK_ACT_COMMENT) |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 2888 | next = LIST_NEXT(&next->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 2889 | |
| 2890 | /* NULL if we're on the last rule */ |
Willy Tarreau | f3d3482 | 2014-12-08 12:11:28 +0100 | [diff] [blame] | 2891 | if (&next->list == head) |
| 2892 | next = NULL; |
| 2893 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2894 | if (check->current_step->action == TCPCHK_ACT_CONNECT) { |
| 2895 | struct protocol *proto; |
| 2896 | struct xprt_ops *xprt; |
| 2897 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2898 | /* For a connect action we'll create a new connection. |
| 2899 | * We may also have to kill a previous one. But we don't |
| 2900 | * want to leave *without* a connection if we came here |
| 2901 | * from the connection layer, hence with a connection. |
| 2902 | * Thus we'll proceed in the following order : |
| 2903 | * 1: close but not release previous connection |
| 2904 | * 2: try to get a new connection |
| 2905 | * 3: release and replace the old one on success |
| 2906 | */ |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2907 | if (check->cs) { |
Willy Tarreau | a553ae9 | 2017-10-05 18:52:17 +0200 | [diff] [blame] | 2908 | cs_close(check->cs); |
| 2909 | retcode = -1; /* do not reuse the fd in the caller! */ |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2910 | } |
| 2911 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2912 | /* mark the step as started */ |
| 2913 | check->last_started_step = check->current_step; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2914 | |
| 2915 | /* prepare new connection */ |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2916 | cs = cs_new(NULL); |
| 2917 | if (!cs) { |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2918 | step = tcpcheck_get_step_id(check); |
| 2919 | chunk_printf(&trash, "TCPCHK error allocating connection at step %d", step); |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 2920 | comment = tcpcheck_get_step_comment(check); |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2921 | if (comment) |
| 2922 | chunk_appendf(&trash, " comment: '%s'", comment); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2923 | set_server_check_status(check, HCHK_STATUS_SOCKERR, |
| 2924 | trash.area); |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2925 | check->current_step = NULL; |
Christopher Faulet | b610285 | 2017-11-28 10:06:29 +0100 | [diff] [blame] | 2926 | goto out; |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2927 | } |
| 2928 | |
Olivier Houchard | 4906554 | 2019-05-31 19:20:36 +0200 | [diff] [blame] | 2929 | if (check->cs) { |
| 2930 | if (check->wait_list.events) |
| 2931 | cs->conn->xprt->unsubscribe(cs->conn, |
| 2932 | cs->conn->xprt_ctx, |
| 2933 | check->wait_list.events, |
| 2934 | &check->wait_list); |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 2935 | /* We may have been scheduled to run, and the |
| 2936 | * I/O handler expects to have a cs, so remove |
| 2937 | * the tasklet |
| 2938 | */ |
| 2939 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
Willy Tarreau | ac59f36 | 2017-10-08 11:10:19 +0200 | [diff] [blame] | 2940 | cs_destroy(check->cs); |
Olivier Houchard | 4906554 | 2019-05-31 19:20:36 +0200 | [diff] [blame] | 2941 | } |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 2942 | |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 2943 | tasklet_set_tid(check->wait_list.tasklet, tid); |
| 2944 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 2945 | check->cs = cs; |
| 2946 | conn = cs->conn; |
Olivier Houchard | 26e1a8f | 2018-09-12 15:15:12 +0200 | [diff] [blame] | 2947 | /* Maybe there were an older connection we were waiting on */ |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2948 | check->wait_list.events = 0; |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 2949 | conn->target = s ? &s->obj_type : &proxy->obj_type; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2950 | |
| 2951 | /* no client address */ |
Willy Tarreau | ca79f59 | 2019-07-17 19:04:47 +0200 | [diff] [blame] | 2952 | |
| 2953 | if (!sockaddr_alloc(&conn->dst)) { |
| 2954 | ret = SF_ERR_RESOURCE; |
| 2955 | goto fail_check; |
| 2956 | } |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2957 | |
Simon Horman | 41f5876 | 2015-01-30 11:22:56 +0900 | [diff] [blame] | 2958 | if (is_addr(&check->addr)) { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2959 | /* we'll connect to the check addr specified on the server */ |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2960 | *conn->dst = check->addr; |
Willy Tarreau | 640556c | 2014-05-09 23:38:15 +0200 | [diff] [blame] | 2961 | } |
| 2962 | else { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2963 | /* we'll connect to the addr on the server */ |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2964 | *conn->dst = s->addr; |
Willy Tarreau | 640556c | 2014-05-09 23:38:15 +0200 | [diff] [blame] | 2965 | } |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2966 | proto = protocol_by_family(conn->dst->ss_family); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2967 | |
| 2968 | /* port */ |
| 2969 | if (check->current_step->port) |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2970 | set_host_port(conn->dst, check->current_step->port); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2971 | else if (check->port) |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2972 | set_host_port(conn->dst, check->port); |
Baptiste Assmann | 2f3a56b | 2018-03-19 12:22:41 +0100 | [diff] [blame] | 2973 | else if (s->svc_port) |
Willy Tarreau | b3c81cb | 2019-07-17 16:54:52 +0200 | [diff] [blame] | 2974 | set_host_port(conn->dst, s->svc_port); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2975 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2976 | if (check->current_step->conn_opts & TCPCHK_OPT_SSL) { |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2977 | xprt = xprt_get(XPRT_SSL); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2978 | } |
| 2979 | else { |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 2980 | xprt = xprt_get(XPRT_RAW); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2981 | } |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 2982 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2983 | conn_prepare(conn, proto, xprt); |
Willy Tarreau | 2ab5c38 | 2019-07-17 18:48:07 +0200 | [diff] [blame] | 2984 | |
| 2985 | if (conn_install_mux(conn, &mux_pt_ops, cs, proxy, NULL) < 0) { |
| 2986 | ret = SF_ERR_RESOURCE; |
| 2987 | goto fail_check; |
| 2988 | } |
| 2989 | |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 2990 | cs_attach(cs, check, &check_conn_cb); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 2991 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2992 | ret = SF_ERR_INTERNAL; |
Gaetan Rivet | 08fdcb3 | 2020-02-28 11:04:21 +0100 | [diff] [blame] | 2993 | if (proto && proto->connect) { |
| 2994 | int flags; |
| 2995 | |
| 2996 | flags = CONNECT_HAS_DATA; |
| 2997 | if (next && next->action != TCPCHK_ACT_EXPECT) |
| 2998 | flags |= CONNECT_DELACK_ALWAYS; |
| 2999 | ret = proto->connect(conn, flags); |
| 3000 | } |
Olivier Houchard | 37d7897 | 2019-12-30 15:13:42 +0100 | [diff] [blame] | 3001 | if (conn_ctrl_ready(conn) && |
| 3002 | check->current_step->conn_opts & TCPCHK_OPT_SEND_PROXY) { |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3003 | conn->send_proxy_ofs = 1; |
| 3004 | conn->flags |= CO_FL_SEND_PROXY; |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 3005 | if (xprt_add_hs(conn) < 0) |
| 3006 | ret = SF_ERR_RESOURCE; |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3007 | } |
| 3008 | |
Gaetan Rivet | f8ba677 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3009 | if (conn_ctrl_ready(conn) && |
| 3010 | check->current_step->conn_opts & TCPCHK_OPT_LINGER) { |
| 3011 | /* Some servers don't like reset on close */ |
| 3012 | fdtab[cs->conn->handle.fd].linger_risk = 0; |
| 3013 | } |
| 3014 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3015 | /* It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 3016 | * - SF_ERR_NONE if everything's OK |
| 3017 | * - SF_ERR_SRVTO if there are no more servers |
| 3018 | * - SF_ERR_SRVCL if the connection was refused by the server |
| 3019 | * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 3020 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 3021 | * - SF_ERR_INTERNAL for any other purely internal errors |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 3022 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3023 | * Note that we try to prevent the network stack from sending the ACK during the |
| 3024 | * connect() when a pure TCP check is used (without PROXY protocol). |
| 3025 | */ |
Willy Tarreau | 2ab5c38 | 2019-07-17 18:48:07 +0200 | [diff] [blame] | 3026 | fail_check: |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3027 | switch (ret) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 3028 | case SF_ERR_NONE: |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3029 | /* we allow up to min(inter, timeout.connect) for a connection |
| 3030 | * to establish but only when timeout.check is set |
| 3031 | * as it may be to short for a full check otherwise |
| 3032 | */ |
| 3033 | t->expire = tick_add(now_ms, MS_TO_TICKS(check->inter)); |
| 3034 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 3035 | if (proxy->timeout.check && proxy->timeout.connect) { |
| 3036 | int t_con = tick_add(now_ms, proxy->timeout.connect); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3037 | t->expire = tick_first(t->expire, t_con); |
| 3038 | } |
| 3039 | break; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 3040 | case SF_ERR_SRVTO: /* ETIMEDOUT */ |
| 3041 | case SF_ERR_SRVCL: /* ECONNREFUSED, ENETUNREACH, ... */ |
Baptiste Assmann | cfbd1b8 | 2015-05-02 09:00:23 +0200 | [diff] [blame] | 3042 | step = tcpcheck_get_step_id(check); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3043 | chunk_printf(&trash, "TCPCHK error establishing connection at step %d: %s", |
Baptiste Assmann | cfbd1b8 | 2015-05-02 09:00:23 +0200 | [diff] [blame] | 3044 | step, strerror(errno)); |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 3045 | comment = tcpcheck_get_step_comment(check); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3046 | if (comment) |
| 3047 | chunk_appendf(&trash, " comment: '%s'", comment); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3048 | set_server_check_status(check, HCHK_STATUS_L4CON, |
| 3049 | trash.area); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3050 | goto out_end_tcpcheck; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 3051 | case SF_ERR_PRXCOND: |
| 3052 | case SF_ERR_RESOURCE: |
| 3053 | case SF_ERR_INTERNAL: |
Baptiste Assmann | cfbd1b8 | 2015-05-02 09:00:23 +0200 | [diff] [blame] | 3054 | step = tcpcheck_get_step_id(check); |
| 3055 | chunk_printf(&trash, "TCPCHK error establishing connection at step %d", step); |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 3056 | comment = tcpcheck_get_step_comment(check); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3057 | if (comment) |
| 3058 | chunk_appendf(&trash, " comment: '%s'", comment); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3059 | set_server_check_status(check, HCHK_STATUS_SOCKERR, |
| 3060 | trash.area); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3061 | goto out_end_tcpcheck; |
| 3062 | } |
| 3063 | |
| 3064 | /* allow next rule */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 3065 | check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3066 | |
| 3067 | /* bypass all comment rules */ |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3068 | while (&check->current_step->list != head && check->current_step->action == TCPCHK_ACT_COMMENT) |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 3069 | check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3070 | |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 3071 | if (&check->current_step->list == head) |
| 3072 | break; |
| 3073 | |
Willy Tarreau | 7df8ca6 | 2019-07-15 10:57:51 +0200 | [diff] [blame] | 3074 | /* don't do anything until the connection is established */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3075 | if (conn->flags & CO_FL_WAIT_XPRT) |
Willy Tarreau | 7df8ca6 | 2019-07-15 10:57:51 +0200 | [diff] [blame] | 3076 | break; |
| 3077 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3078 | } /* end 'connect' */ |
| 3079 | else if (check->current_step->action == TCPCHK_ACT_SEND) { |
| 3080 | /* mark the step as started */ |
| 3081 | check->last_started_step = check->current_step; |
| 3082 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3083 | /* reset the read buffer */ |
Christopher Faulet | 21f3695 | 2020-03-19 16:59:45 +0100 | [diff] [blame] | 3084 | b_reset(&check->bi); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3085 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3086 | if (check->current_step->string_len >= b_size(&check->bo)) { |
Willy Tarreau | 506a29a | 2018-07-18 10:07:58 +0200 | [diff] [blame] | 3087 | chunk_printf(&trash, "tcp-check send : string too large (%d) for buffer size (%u) at step %d", |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3088 | check->current_step->string_len, (unsigned int)b_size(&check->bo), |
Simon Horman | e16c1b3 | 2015-01-30 11:22:57 +0900 | [diff] [blame] | 3089 | tcpcheck_get_step_id(check)); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3090 | set_server_check_status(check, HCHK_STATUS_L7RSP, |
| 3091 | trash.area); |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 3092 | goto out_end_tcpcheck; |
| 3093 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3094 | |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3095 | /* do not try to send if there is no space */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3096 | if (check->current_step->string_len >= b_room(&check->bo)) |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3097 | continue; |
| 3098 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3099 | b_putblk(&check->bo, check->current_step->string, check->current_step->string_len); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3100 | |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 3101 | /* go to next rule and try to send */ |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 3102 | check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3103 | |
| 3104 | /* bypass all comment rules */ |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 3105 | while (&check->current_step->list != head && |
| 3106 | check->current_step->action == TCPCHK_ACT_COMMENT) |
Willy Tarreau | 5581c27 | 2015-05-13 12:24:53 +0200 | [diff] [blame] | 3107 | check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 3108 | |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3109 | } /* end 'send' */ |
Willy Tarreau | 98aec9f | 2013-12-06 16:16:41 +0100 | [diff] [blame] | 3110 | else if (check->current_step->action == TCPCHK_ACT_EXPECT) { |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3111 | struct tcpcheck_expect *expect = &check->current_step->expect; |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3112 | char *diag; |
| 3113 | int match; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3114 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 3115 | if (unlikely(check->result == CHK_RES_FAILED)) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3116 | goto out_end_tcpcheck; |
| 3117 | |
Olivier Houchard | 0ba6c85 | 2019-07-18 15:09:08 +0200 | [diff] [blame] | 3118 | /* If we already subscribed, then we tried to received |
| 3119 | * and failed, so there's no point trying again. |
| 3120 | */ |
| 3121 | if (check->wait_list.events & SUB_RETRY_RECV) |
| 3122 | break; |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 3123 | if (cs->conn->mux->rcv_buf(cs, &check->bi, b_size(&check->bi), 0) <= 0) { |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 3124 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH) || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3125 | done = 1; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3126 | if ((conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) && !b_data(&check->bi)) { |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3127 | /* Report network errors only if we got no other data. Otherwise |
| 3128 | * we'll let the upper layers decide whether the response is OK |
| 3129 | * or not. It is very common that an RST sent by the server is |
| 3130 | * reported as an error just after the last data chunk. |
| 3131 | */ |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 3132 | chk_report_conn_err(check, errno, 0); |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3133 | goto out_end_tcpcheck; |
| 3134 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3135 | } |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 3136 | else { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3137 | conn->mux->subscribe(cs, SUB_RETRY_RECV, &check->wait_list); |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 3138 | break; |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 3139 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3140 | } |
| 3141 | |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3142 | /* Having received new data, reset the expect chain to its head. */ |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3143 | check->current_step = expect->head; |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3144 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3145 | /* mark the step as started */ |
| 3146 | check->last_started_step = check->current_step; |
| 3147 | |
Christopher Faulet | 21f3695 | 2020-03-19 16:59:45 +0100 | [diff] [blame] | 3148 | /* buffer full, don't wait for more data */ |
| 3149 | if (b_full(&check->bi)) |
| 3150 | done = 1; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3151 | |
| 3152 | /* Check that response body is not empty... */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3153 | if (!b_data(&check->bi)) { |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3154 | if (!done) |
Willy Tarreau | fbe0edf | 2013-12-06 16:54:31 +0100 | [diff] [blame] | 3155 | continue; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3156 | |
| 3157 | /* empty response */ |
Baptiste Assmann | cfbd1b8 | 2015-05-02 09:00:23 +0200 | [diff] [blame] | 3158 | step = tcpcheck_get_step_id(check); |
| 3159 | chunk_printf(&trash, "TCPCHK got an empty response at step %d", step); |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 3160 | comment = tcpcheck_get_step_comment(check); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3161 | if (comment) |
| 3162 | chunk_appendf(&trash, " comment: '%s'", comment); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3163 | set_server_check_status(check, HCHK_STATUS_L7RSP, |
| 3164 | trash.area); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3165 | |
| 3166 | goto out_end_tcpcheck; |
| 3167 | } |
| 3168 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3169 | next_tcpcheck_expect: |
Gaetan Rivet | 1afd826 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3170 | /* The current expect might need more data than the previous one, check again |
| 3171 | * that the minimum amount data required to match is respected. |
| 3172 | */ |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3173 | if (!done) { |
| 3174 | if ((expect->type == TCPCHK_EXPECT_STRING || expect->type == TCPCHK_EXPECT_BINARY) && |
| 3175 | (b_data(&check->bi) < expect->length)) |
| 3176 | continue; /* try to read more */ |
| 3177 | if (expect->min_recv > 0 && (b_data(&check->bi) < expect->min_recv)) |
| 3178 | continue; /* try to read more */ |
| 3179 | } |
| 3180 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3181 | /* Make GCC happy ; initialize match to a failure state. */ |
| 3182 | match = expect->inverse; |
| 3183 | |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3184 | switch (expect->type) { |
| 3185 | case TCPCHK_EXPECT_STRING: |
| 3186 | case TCPCHK_EXPECT_BINARY: |
Christopher Faulet | 21f3695 | 2020-03-19 16:59:45 +0100 | [diff] [blame] | 3187 | match = my_memmem(b_head(&check->bi), b_data(&check->bi), expect->string, expect->length) != NULL; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3188 | break; |
| 3189 | case TCPCHK_EXPECT_REGEX: |
Gaetan Rivet | 9dcb09f | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3190 | if (expect->with_capture) |
| 3191 | match = regex_exec_match2(expect->regex, b_head(&check->bi), MIN(b_data(&check->bi), b_size(&check->bi)-1), |
| 3192 | MAX_MATCH, pmatch, 0); |
| 3193 | else |
| 3194 | match = regex_exec2(expect->regex, b_head(&check->bi), MIN(b_data(&check->bi), b_size(&check->bi)-1)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3195 | break; |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3196 | |
| 3197 | case TCPCHK_EXPECT_REGEX_BINARY: |
| 3198 | chunk_reset(&trash); |
| 3199 | dump_binary(&trash, b_head(&check->bi), b_data(&check->bi)); |
Gaetan Rivet | 9dcb09f | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3200 | if (expect->with_capture) |
| 3201 | match = regex_exec_match2(expect->regex, b_head(&trash), MIN(b_data(&trash), b_size(&trash)-1), |
| 3202 | MAX_MATCH, pmatch, 0); |
| 3203 | else |
| 3204 | match = regex_exec2(expect->regex, b_head(&trash), MIN(b_data(&trash), b_size(&trash)-1)); |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3205 | break; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3206 | case TCPCHK_EXPECT_UNDEF: |
| 3207 | /* Should never happen. */ |
| 3208 | retcode = -1; |
| 3209 | goto out; |
| 3210 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3211 | |
Gaetan Rivet | 1afd826 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3212 | /* Wait for more data on mismatch only if no minimum is defined (-1), |
| 3213 | * otherwise the absence of match is already conclusive. |
| 3214 | */ |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3215 | if (!match && !done && (expect->min_recv == -1)) |
Willy Tarreau | a970c28 | 2013-12-06 12:47:19 +0100 | [diff] [blame] | 3216 | continue; /* try to read more */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3217 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3218 | if (match ^ expect->inverse) { |
| 3219 | /* Result as expected, next rule. */ |
| 3220 | check->current_step = LIST_NEXT(&check->current_step->list, struct tcpcheck_rule *, list); |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3221 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3222 | /* bypass all comment rules */ |
| 3223 | while (&check->current_step->list != head && |
| 3224 | check->current_step->action == TCPCHK_ACT_COMMENT) |
| 3225 | check->current_step = LIST_NEXT(&check->current_step->list, |
| 3226 | struct tcpcheck_rule *, list); |
| 3227 | if (&check->current_step->list == head) |
| 3228 | break; |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 3229 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3230 | if (check->current_step->action == TCPCHK_ACT_EXPECT) { |
| 3231 | expect = &check->current_step->expect; |
| 3232 | goto next_tcpcheck_expect; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3233 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3234 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3235 | continue; |
| 3236 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 3237 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3238 | /* From this point on, we matched something we did not want, this is an error state. */ |
Willy Tarreau | f2c8735 | 2015-05-13 12:08:21 +0200 | [diff] [blame] | 3239 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3240 | step = tcpcheck_get_step_id(check); |
| 3241 | diag = match ? "matched unwanted content" : "did not match content"; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3242 | |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3243 | switch (expect->type) { |
| 3244 | case TCPCHK_EXPECT_STRING: |
| 3245 | chunk_printf(&trash, "TCPCHK %s '%s' at step %d", |
| 3246 | diag, expect->string, step); |
| 3247 | break; |
| 3248 | case TCPCHK_EXPECT_BINARY: |
| 3249 | chunk_printf(&trash, "TCPCHK %s (binary) at step %d", |
| 3250 | diag, step); |
| 3251 | break; |
| 3252 | case TCPCHK_EXPECT_REGEX: |
| 3253 | chunk_printf(&trash, "TCPCHK %s (regex) at step %d", |
| 3254 | diag, step); |
| 3255 | break; |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3256 | case TCPCHK_EXPECT_REGEX_BINARY: |
| 3257 | chunk_printf(&trash, "TCPCHK %s (binary regex) at step %d", |
| 3258 | diag, step); |
Gaetan Rivet | 9dcb09f | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3259 | |
| 3260 | /* If references to the matched text were made, |
| 3261 | * divide the offsets by 2 to match offset of |
| 3262 | * the original response buffer. |
| 3263 | */ |
| 3264 | if (expect->with_capture) { |
| 3265 | int i; |
| 3266 | |
| 3267 | for (i = 1; i < MAX_MATCH && pmatch[i].rm_so != -1; i++) { |
| 3268 | pmatch[i].rm_so /= 2; /* at first matched char. */ |
| 3269 | pmatch[i].rm_eo /= 2; /* at last matched char. */ |
| 3270 | } |
| 3271 | } |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3272 | break; |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3273 | case TCPCHK_EXPECT_UNDEF: |
| 3274 | /* Should never happen. */ |
| 3275 | retcode = -1; |
| 3276 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3277 | } |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3278 | |
Christopher Faulet | 3c29aa6 | 2020-03-24 13:31:19 +0100 | [diff] [blame] | 3279 | comment = tcpcheck_get_step_comment(check); |
Gaetan Rivet | 9dcb09f | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3280 | if (comment) { |
| 3281 | if (expect->with_capture) { |
| 3282 | ret = exp_replace(b_tail(&trash), b_room(&trash), b_head(&check->bi), comment, pmatch); |
| 3283 | if (ret > 0) /* ignore comment if too large */ |
| 3284 | trash.data += ret; |
| 3285 | } |
| 3286 | else |
| 3287 | chunk_appendf(&trash, " comment: '%s'", comment); |
| 3288 | } |
| 3289 | set_server_check_status(check, HCHK_STATUS_L7RSP, trash.area); |
Gaetan Rivet | 9e47fa4 | 2020-02-26 15:59:22 +0100 | [diff] [blame] | 3290 | goto out_end_tcpcheck; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3291 | } /* end expect */ |
| 3292 | } /* end loop over double chained step list */ |
| 3293 | |
Baptiste Assmann | 248f117 | 2018-03-01 21:49:01 +0100 | [diff] [blame] | 3294 | /* don't do anything until the connection is established */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3295 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Baptiste Assmann | 248f117 | 2018-03-01 21:49:01 +0100 | [diff] [blame] | 3296 | /* update expire time, should be done by process_chk */ |
| 3297 | /* we allow up to min(inter, timeout.connect) for a connection |
| 3298 | * to establish but only when timeout.check is set |
| 3299 | * as it may be to short for a full check otherwise |
| 3300 | */ |
| 3301 | while (tick_is_expired(t->expire, now_ms)) { |
| 3302 | int t_con; |
| 3303 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 3304 | t_con = tick_add(t->expire, proxy->timeout.connect); |
Baptiste Assmann | 248f117 | 2018-03-01 21:49:01 +0100 | [diff] [blame] | 3305 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
| 3306 | |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 3307 | if (proxy->timeout.check) |
Baptiste Assmann | 248f117 | 2018-03-01 21:49:01 +0100 | [diff] [blame] | 3308 | t->expire = tick_first(t->expire, t_con); |
| 3309 | } |
| 3310 | goto out; |
| 3311 | } |
| 3312 | |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 3313 | /* We're waiting for some I/O to complete, we've reached the end of the |
| 3314 | * rules, or both. Do what we have to do, otherwise we're done. |
| 3315 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3316 | if (&check->current_step->list == head && !b_data(&check->bo)) { |
Willy Tarreau | 263013d | 2015-05-13 11:59:14 +0200 | [diff] [blame] | 3317 | set_server_check_status(check, HCHK_STATUS_L7OKD, "(tcp-check)"); |
| 3318 | goto out_end_tcpcheck; |
| 3319 | } |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3320 | |
Willy Tarreau | 53c5a04 | 2015-05-13 11:38:17 +0200 | [diff] [blame] | 3321 | if (&check->current_step->list != head && |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 3322 | check->current_step->action == TCPCHK_ACT_EXPECT) |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 3323 | __event_srv_chk_r(cs); |
Christopher Faulet | b610285 | 2017-11-28 10:06:29 +0100 | [diff] [blame] | 3324 | goto out; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3325 | |
| 3326 | out_end_tcpcheck: |
| 3327 | /* collect possible new errors */ |
Willy Tarreau | ef91c93 | 2019-07-23 14:37:47 +0200 | [diff] [blame] | 3328 | if ((conn && conn->flags & CO_FL_ERROR) || (cs && cs->flags & CS_FL_ERROR)) |
Willy Tarreau | b5259bf | 2017-10-04 14:47:29 +0200 | [diff] [blame] | 3329 | chk_report_conn_err(check, 0, 0); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3330 | |
Baptiste Assmann | 69e273f | 2013-12-11 00:52:19 +0100 | [diff] [blame] | 3331 | /* cleanup before leaving */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3332 | check->current_step = NULL; |
| 3333 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 3334 | if (check->result == CHK_RES_FAILED) |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3335 | conn->flags |= CO_FL_ERROR; |
| 3336 | |
Christopher Faulet | b610285 | 2017-11-28 10:06:29 +0100 | [diff] [blame] | 3337 | out: |
Willy Tarreau | 6bdcab0 | 2017-10-04 18:41:00 +0200 | [diff] [blame] | 3338 | return retcode; |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3339 | } |
| 3340 | |
Christopher Faulet | 31c30fd | 2020-03-26 21:10:03 +0100 | [diff] [blame] | 3341 | static const char *init_check(struct check *check, int type) |
Simon Horman | b1900d5 | 2015-01-30 11:22:54 +0900 | [diff] [blame] | 3342 | { |
| 3343 | check->type = type; |
| 3344 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3345 | b_reset(&check->bi); check->bi.size = global.tune.chksize; |
| 3346 | b_reset(&check->bo); check->bo.size = global.tune.chksize; |
Simon Horman | b1900d5 | 2015-01-30 11:22:54 +0900 | [diff] [blame] | 3347 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3348 | check->bi.area = calloc(check->bi.size, sizeof(char)); |
| 3349 | check->bo.area = calloc(check->bo.size, sizeof(char)); |
| 3350 | |
| 3351 | if (!check->bi.area || !check->bo.area) |
Simon Horman | b1900d5 | 2015-01-30 11:22:54 +0900 | [diff] [blame] | 3352 | return "out of memory while allocating check buffer"; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3353 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 3354 | check->wait_list.tasklet = tasklet_new(); |
| 3355 | if (!check->wait_list.tasklet) |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 3356 | return "out of memory while allocating check tasklet"; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3357 | check->wait_list.events = 0; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 3358 | check->wait_list.tasklet->process = event_srv_chk_io; |
| 3359 | check->wait_list.tasklet->context = check; |
Simon Horman | b1900d5 | 2015-01-30 11:22:54 +0900 | [diff] [blame] | 3360 | return NULL; |
| 3361 | } |
| 3362 | |
Simon Horman | bfb5d33 | 2015-01-30 11:22:55 +0900 | [diff] [blame] | 3363 | void free_check(struct check *check) |
| 3364 | { |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3365 | task_destroy(check->task); |
| 3366 | if (check->wait_list.tasklet) |
| 3367 | tasklet_free(check->wait_list.tasklet); |
| 3368 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3369 | free(check->bi.area); |
| 3370 | free(check->bo.area); |
Christopher Faulet | 23d86d1 | 2018-01-25 11:36:35 +0100 | [diff] [blame] | 3371 | if (check->cs) { |
| 3372 | free(check->cs->conn); |
| 3373 | check->cs->conn = NULL; |
| 3374 | cs_free(check->cs); |
| 3375 | check->cs = NULL; |
| 3376 | } |
Simon Horman | bfb5d33 | 2015-01-30 11:22:55 +0900 | [diff] [blame] | 3377 | } |
| 3378 | |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3379 | void email_alert_free(struct email_alert *alert) |
| 3380 | { |
| 3381 | struct tcpcheck_rule *rule, *back; |
| 3382 | |
| 3383 | if (!alert) |
| 3384 | return; |
| 3385 | |
Christopher Faulet | de1a75b | 2017-10-23 15:38:19 +0200 | [diff] [blame] | 3386 | list_for_each_entry_safe(rule, back, &alert->tcpcheck_rules, list) { |
| 3387 | LIST_DEL(&rule->list); |
| 3388 | free(rule->comment); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3389 | switch (rule->expect.type) { |
| 3390 | case TCPCHK_EXPECT_STRING: |
| 3391 | case TCPCHK_EXPECT_BINARY: |
| 3392 | free(rule->expect.string); |
| 3393 | break; |
| 3394 | case TCPCHK_EXPECT_REGEX: |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3395 | case TCPCHK_EXPECT_REGEX_BINARY: |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3396 | regex_free(rule->expect.regex); |
| 3397 | break; |
| 3398 | case TCPCHK_EXPECT_UNDEF: |
| 3399 | break; |
| 3400 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3401 | pool_free(pool_head_tcpcheck_rule, rule); |
Christopher Faulet | de1a75b | 2017-10-23 15:38:19 +0200 | [diff] [blame] | 3402 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3403 | pool_free(pool_head_email_alert, alert); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3404 | } |
| 3405 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3406 | static struct task *process_email_alert(struct task *t, void *context, unsigned short state) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3407 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3408 | struct check *check = context; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3409 | struct email_alertq *q; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3410 | struct email_alert *alert; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3411 | |
| 3412 | q = container_of(check, typeof(*q), check); |
| 3413 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3414 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3415 | while (1) { |
| 3416 | if (!(check->state & CHK_ST_ENABLED)) { |
| 3417 | if (LIST_ISEMPTY(&q->email_alerts)) { |
| 3418 | /* All alerts processed, queue the task */ |
| 3419 | t->expire = TICK_ETERNITY; |
| 3420 | task_queue(t); |
Christopher Faulet | c2a89a6 | 2017-10-23 15:54:24 +0200 | [diff] [blame] | 3421 | goto end; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3422 | } |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3423 | |
| 3424 | alert = LIST_NEXT(&q->email_alerts, typeof(alert), list); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3425 | LIST_DEL(&alert->list); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3426 | t->expire = now_ms; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3427 | check->tcpcheck_rules = &alert->tcpcheck_rules; |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 3428 | check->status = HCHK_STATUS_INI; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3429 | check->state |= CHK_ST_ENABLED; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3430 | } |
| 3431 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3432 | process_chk(t, context, state); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3433 | if (check->state & CHK_ST_INPROGRESS) |
| 3434 | break; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3435 | |
| 3436 | alert = container_of(check->tcpcheck_rules, typeof(*alert), tcpcheck_rules); |
| 3437 | email_alert_free(alert); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3438 | check->tcpcheck_rules = NULL; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3439 | check->server = NULL; |
| 3440 | check->state &= ~CHK_ST_ENABLED; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3441 | } |
Christopher Faulet | c2a89a6 | 2017-10-23 15:54:24 +0200 | [diff] [blame] | 3442 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3443 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3444 | return t; |
| 3445 | } |
| 3446 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3447 | /* Initializes mailer alerts for the proxy <p> using <mls> parameters. |
| 3448 | * |
| 3449 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 3450 | * filled. |
| 3451 | */ |
| 3452 | int init_email_alert(struct mailers *mls, struct proxy *p, char **err) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3453 | { |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3454 | struct mailer *mailer; |
| 3455 | struct email_alertq *queues; |
| 3456 | const char *err_str; |
| 3457 | int i = 0; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3458 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3459 | if ((queues = calloc(mls->count, sizeof(*queues))) == NULL) { |
| 3460 | memprintf(err, "out of memory while allocating mailer alerts queues"); |
mildis | 5ab01cb | 2018-10-02 16:46:34 +0200 | [diff] [blame] | 3461 | goto fail_no_queue; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3462 | } |
| 3463 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3464 | for (mailer = mls->mailer_list; mailer; i++, mailer = mailer->next) { |
| 3465 | struct email_alertq *q = &queues[i]; |
| 3466 | struct check *check = &q->check; |
| 3467 | struct task *t; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3468 | |
| 3469 | LIST_INIT(&q->email_alerts); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3470 | HA_SPIN_INIT(&q->lock); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3471 | check->inter = mls->timeout.mail; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3472 | check->rise = DEF_AGENT_RISETIME; |
Olivier Houchard | c98aa1f | 2019-01-11 18:17:17 +0100 | [diff] [blame] | 3473 | check->proxy = p; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3474 | check->fall = DEF_AGENT_FALLTIME; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3475 | if ((err_str = init_check(check, PR_O2_TCPCHK_CHK))) { |
| 3476 | memprintf(err, "%s", err_str); |
| 3477 | goto error; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3478 | } |
| 3479 | |
| 3480 | check->xprt = mailer->xprt; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3481 | check->addr = mailer->addr; |
Christopher Faulet | b797ae1 | 2018-03-27 15:35:35 +0200 | [diff] [blame] | 3482 | check->port = get_host_port(&mailer->addr); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3483 | |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 3484 | if ((t = task_new(MAX_THREADS_MASK)) == NULL) { |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3485 | memprintf(err, "out of memory while allocating mailer alerts task"); |
| 3486 | goto error; |
| 3487 | } |
| 3488 | |
| 3489 | check->task = t; |
| 3490 | t->process = process_email_alert; |
| 3491 | t->context = check; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3492 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3493 | /* check this in one ms */ |
| 3494 | t->expire = TICK_ETERNITY; |
| 3495 | check->start = now; |
| 3496 | task_queue(t); |
| 3497 | } |
| 3498 | |
| 3499 | mls->users++; |
| 3500 | free(p->email_alert.mailers.name); |
| 3501 | p->email_alert.mailers.m = mls; |
| 3502 | p->email_alert.queues = queues; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3503 | return 0; |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3504 | |
| 3505 | error: |
| 3506 | for (i = 0; i < mls->count; i++) { |
| 3507 | struct email_alertq *q = &queues[i]; |
| 3508 | struct check *check = &q->check; |
| 3509 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3510 | free_check(check); |
| 3511 | } |
| 3512 | free(queues); |
mildis | 5ab01cb | 2018-10-02 16:46:34 +0200 | [diff] [blame] | 3513 | fail_no_queue: |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3514 | return 1; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3515 | } |
| 3516 | |
| 3517 | |
| 3518 | static int add_tcpcheck_expect_str(struct list *list, const char *str) |
| 3519 | { |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3520 | struct tcpcheck_rule *tcpcheck, *prev_check; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3521 | struct tcpcheck_expect *expect; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3522 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3523 | if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3524 | return 0; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3525 | memset(tcpcheck, 0, sizeof(*tcpcheck)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3526 | tcpcheck->action = TCPCHK_ACT_EXPECT; |
| 3527 | |
| 3528 | expect = &tcpcheck->expect; |
| 3529 | expect->type = TCPCHK_EXPECT_STRING; |
| 3530 | expect->string = strdup(str); |
| 3531 | if (!expect->string) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3532 | pool_free(pool_head_tcpcheck_rule, tcpcheck); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3533 | return 0; |
| 3534 | } |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3535 | expect->length = strlen(expect->string); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3536 | |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3537 | /* All tcp-check expect points back to the first inverse expect rule |
| 3538 | * in a chain of one or more expect rule, potentially itself. |
| 3539 | */ |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3540 | tcpcheck->expect.head = tcpcheck; |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3541 | list_for_each_entry_rev(prev_check, list, list) { |
| 3542 | if (prev_check->action == TCPCHK_ACT_EXPECT) { |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 3543 | if (prev_check->expect.inverse) |
| 3544 | tcpcheck->expect.head = prev_check; |
Gaetan Rivet | 4038b94 | 2020-02-26 16:19:40 +0100 | [diff] [blame] | 3545 | continue; |
| 3546 | } |
| 3547 | if (prev_check->action != TCPCHK_ACT_COMMENT) |
| 3548 | break; |
| 3549 | } |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3550 | LIST_ADDQ(list, &tcpcheck->list); |
| 3551 | return 1; |
| 3552 | } |
| 3553 | |
| 3554 | static int add_tcpcheck_send_strs(struct list *list, const char * const *strs) |
| 3555 | { |
| 3556 | struct tcpcheck_rule *tcpcheck; |
Willy Tarreau | 64345aa | 2016-08-10 19:29:09 +0200 | [diff] [blame] | 3557 | const char *in; |
| 3558 | char *dst; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3559 | int i; |
| 3560 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3561 | if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3562 | return 0; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3563 | memset(tcpcheck, 0, sizeof(*tcpcheck)); |
| 3564 | tcpcheck->action = TCPCHK_ACT_SEND; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3565 | tcpcheck->comment = NULL; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3566 | tcpcheck->string_len = 0; |
| 3567 | for (i = 0; strs[i]; i++) |
| 3568 | tcpcheck->string_len += strlen(strs[i]); |
| 3569 | |
| 3570 | tcpcheck->string = malloc(tcpcheck->string_len + 1); |
| 3571 | if (!tcpcheck->string) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3572 | pool_free(pool_head_tcpcheck_rule, tcpcheck); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3573 | return 0; |
| 3574 | } |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3575 | |
Willy Tarreau | 64345aa | 2016-08-10 19:29:09 +0200 | [diff] [blame] | 3576 | dst = tcpcheck->string; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3577 | for (i = 0; strs[i]; i++) |
Willy Tarreau | 64345aa | 2016-08-10 19:29:09 +0200 | [diff] [blame] | 3578 | for (in = strs[i]; (*dst = *in++); dst++); |
| 3579 | *dst = 0; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3580 | |
| 3581 | LIST_ADDQ(list, &tcpcheck->list); |
| 3582 | return 1; |
| 3583 | } |
| 3584 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3585 | static int enqueue_one_email_alert(struct proxy *p, struct server *s, |
| 3586 | struct email_alertq *q, const char *msg) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3587 | { |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3588 | struct email_alert *alert; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3589 | struct tcpcheck_rule *tcpcheck; |
| 3590 | struct check *check = &q->check; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3591 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3592 | if ((alert = pool_alloc(pool_head_email_alert)) == NULL) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3593 | goto error; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3594 | LIST_INIT(&alert->list); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3595 | LIST_INIT(&alert->tcpcheck_rules); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3596 | alert->srv = s; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3597 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 3598 | if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3599 | goto error; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 3600 | memset(tcpcheck, 0, sizeof(*tcpcheck)); |
| 3601 | tcpcheck->action = TCPCHK_ACT_CONNECT; |
| 3602 | tcpcheck->comment = NULL; |
| 3603 | tcpcheck->string = NULL; |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3604 | LIST_ADDQ(&alert->tcpcheck_rules, &tcpcheck->list); |
| 3605 | |
| 3606 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "220 ")) |
| 3607 | goto error; |
| 3608 | |
| 3609 | { |
| 3610 | const char * const strs[4] = { "EHLO ", p->email_alert.myhostname, "\r\n" }; |
| 3611 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3612 | goto error; |
| 3613 | } |
| 3614 | |
| 3615 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 ")) |
| 3616 | goto error; |
| 3617 | |
| 3618 | { |
| 3619 | const char * const strs[4] = { "MAIL FROM:<", p->email_alert.from, ">\r\n" }; |
| 3620 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3621 | goto error; |
| 3622 | } |
| 3623 | |
| 3624 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 ")) |
| 3625 | goto error; |
| 3626 | |
| 3627 | { |
| 3628 | const char * const strs[4] = { "RCPT TO:<", p->email_alert.to, ">\r\n" }; |
| 3629 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3630 | goto error; |
| 3631 | } |
| 3632 | |
| 3633 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 ")) |
| 3634 | goto error; |
| 3635 | |
| 3636 | { |
| 3637 | const char * const strs[2] = { "DATA\r\n" }; |
| 3638 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3639 | goto error; |
| 3640 | } |
| 3641 | |
| 3642 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "354 ")) |
| 3643 | goto error; |
| 3644 | |
| 3645 | { |
| 3646 | struct tm tm; |
| 3647 | char datestr[48]; |
| 3648 | const char * const strs[18] = { |
Pieter Baauw | 5e0964e | 2016-02-13 16:27:35 +0100 | [diff] [blame] | 3649 | "From: ", p->email_alert.from, "\r\n", |
| 3650 | "To: ", p->email_alert.to, "\r\n", |
| 3651 | "Date: ", datestr, "\r\n", |
| 3652 | "Subject: [HAproxy Alert] ", msg, "\r\n", |
| 3653 | "\r\n", |
| 3654 | msg, "\r\n", |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3655 | "\r\n", |
Pieter Baauw | ed35c37 | 2015-07-22 19:51:54 +0200 | [diff] [blame] | 3656 | ".\r\n", |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3657 | NULL |
| 3658 | }; |
| 3659 | |
| 3660 | get_localtime(date.tv_sec, &tm); |
| 3661 | |
| 3662 | if (strftime(datestr, sizeof(datestr), "%a, %d %b %Y %T %z (%Z)", &tm) == 0) { |
| 3663 | goto error; |
| 3664 | } |
| 3665 | |
| 3666 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3667 | goto error; |
| 3668 | } |
| 3669 | |
| 3670 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "250 ")) |
| 3671 | goto error; |
| 3672 | |
| 3673 | { |
| 3674 | const char * const strs[2] = { "QUIT\r\n" }; |
| 3675 | if (!add_tcpcheck_send_strs(&alert->tcpcheck_rules, strs)) |
| 3676 | goto error; |
| 3677 | } |
| 3678 | |
| 3679 | if (!add_tcpcheck_expect_str(&alert->tcpcheck_rules, "221 ")) |
| 3680 | goto error; |
| 3681 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3682 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3683 | task_wakeup(check->task, TASK_WOKEN_MSG); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3684 | LIST_ADDQ(&q->email_alerts, &alert->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 3685 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3686 | return 1; |
| 3687 | |
| 3688 | error: |
| 3689 | email_alert_free(alert); |
| 3690 | return 0; |
| 3691 | } |
| 3692 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3693 | static void enqueue_email_alert(struct proxy *p, struct server *s, const char *msg) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3694 | { |
| 3695 | int i; |
| 3696 | struct mailer *mailer; |
| 3697 | |
| 3698 | for (i = 0, mailer = p->email_alert.mailers.m->mailer_list; |
| 3699 | i < p->email_alert.mailers.m->count; i++, mailer = mailer->next) { |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3700 | if (!enqueue_one_email_alert(p, s, &p->email_alert.queues[i], msg)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3701 | ha_alert("Email alert [%s] could not be enqueued: out of memory\n", p->id); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3702 | return; |
| 3703 | } |
| 3704 | } |
| 3705 | |
| 3706 | return; |
| 3707 | } |
| 3708 | |
| 3709 | /* |
| 3710 | * Send email alert if configured. |
| 3711 | */ |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 3712 | void send_email_alert(struct server *s, int level, const char *format, ...) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3713 | { |
| 3714 | va_list argp; |
| 3715 | char buf[1024]; |
| 3716 | int len; |
| 3717 | struct proxy *p = s->proxy; |
| 3718 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3719 | if (!p->email_alert.mailers.m || level > p->email_alert.level || format == NULL) |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3720 | return; |
| 3721 | |
| 3722 | va_start(argp, format); |
| 3723 | len = vsnprintf(buf, sizeof(buf), format, argp); |
| 3724 | va_end(argp); |
| 3725 | |
Thierry FOURNIER | 62c8a21 | 2017-02-09 12:19:27 +0100 | [diff] [blame] | 3726 | if (len < 0 || len >= sizeof(buf)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3727 | ha_alert("Email alert [%s] could not format message\n", p->id); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3728 | return; |
| 3729 | } |
| 3730 | |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3731 | enqueue_email_alert(p, s, buf); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 3732 | } |
| 3733 | |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 3734 | /* |
| 3735 | * Return value: |
| 3736 | * the port to be used for the health check |
| 3737 | * 0 in case no port could be found for the check |
| 3738 | */ |
Christopher Faulet | 31c30fd | 2020-03-26 21:10:03 +0100 | [diff] [blame] | 3739 | static int srv_check_healthcheck_port(struct check *chk) |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 3740 | { |
| 3741 | int i = 0; |
| 3742 | struct server *srv = NULL; |
| 3743 | |
| 3744 | srv = chk->server; |
| 3745 | |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 3746 | /* by default, we use the health check port ocnfigured */ |
| 3747 | if (chk->port > 0) |
| 3748 | return chk->port; |
| 3749 | |
| 3750 | /* try to get the port from check_core.addr if check.port not set */ |
| 3751 | i = get_host_port(&chk->addr); |
| 3752 | if (i > 0) |
| 3753 | return i; |
| 3754 | |
| 3755 | /* try to get the port from server address */ |
| 3756 | /* prevent MAPPORTS from working at this point, since checks could |
| 3757 | * not be performed in such case (MAPPORTS impose a relative ports |
| 3758 | * based on live traffic) |
| 3759 | */ |
| 3760 | if (srv->flags & SRV_F_MAPPORTS) |
| 3761 | return 0; |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 3762 | |
| 3763 | i = srv->svc_port; /* by default */ |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 3764 | if (i > 0) |
| 3765 | return i; |
| 3766 | |
| 3767 | return 0; |
| 3768 | } |
| 3769 | |
Willy Tarreau | 172f5ce | 2018-11-26 11:21:50 +0100 | [diff] [blame] | 3770 | REGISTER_POST_CHECK(start_checks); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 3771 | |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3772 | static int init_srv_check(struct server *srv) |
| 3773 | { |
| 3774 | const char *err; |
| 3775 | struct tcpcheck_rule *r; |
| 3776 | int ret = 0; |
| 3777 | |
| 3778 | if (!srv->do_check) |
| 3779 | goto out; |
| 3780 | |
| 3781 | |
| 3782 | /* If neither a port nor an addr was specified and no check transport |
| 3783 | * layer is forced, then the transport layer used by the checks is the |
| 3784 | * same as for the production traffic. Otherwise we use raw_sock by |
| 3785 | * default, unless one is specified. |
| 3786 | */ |
| 3787 | if (!srv->check.port && !is_addr(&srv->check.addr)) { |
| 3788 | if (!srv->check.use_ssl && srv->use_ssl != -1) { |
| 3789 | srv->check.use_ssl = srv->use_ssl; |
| 3790 | srv->check.xprt = srv->xprt; |
| 3791 | } |
| 3792 | else if (srv->check.use_ssl == 1) |
| 3793 | srv->check.xprt = xprt_get(XPRT_SSL); |
| 3794 | |
| 3795 | srv->check.send_proxy |= (srv->pp_opts); |
| 3796 | } |
| 3797 | |
| 3798 | /* validate <srv> server health-check settings */ |
| 3799 | |
| 3800 | /* We need at least a service port, a check port or the first tcp-check |
| 3801 | * rule must be a 'connect' one when checking an IPv4/IPv6 server. |
| 3802 | */ |
| 3803 | if ((srv_check_healthcheck_port(&srv->check) != 0) || |
| 3804 | (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr)))) |
| 3805 | goto init; |
| 3806 | |
Gaetan Rivet | 04578db | 2020-02-07 15:37:17 +0100 | [diff] [blame^] | 3807 | if (!srv->proxy->tcpcheck_rules || LIST_ISEMPTY(srv->proxy->tcpcheck_rules)) { |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3808 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port.\n", |
| 3809 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 3810 | ret |= ERR_ALERT | ERR_ABORT; |
| 3811 | goto out; |
| 3812 | } |
| 3813 | |
| 3814 | /* search the first action (connect / send / expect) in the list */ |
Gaetan Rivet | 04578db | 2020-02-07 15:37:17 +0100 | [diff] [blame^] | 3815 | r = get_first_tcpcheck_rule(srv->proxy->tcpcheck_rules); |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3816 | if (!r || (r->action != TCPCHK_ACT_CONNECT) || !r->port) { |
| 3817 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port " |
| 3818 | "nor tcp_check rule 'connect' with port information.\n", |
| 3819 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 3820 | ret |= ERR_ALERT | ERR_ABORT; |
| 3821 | goto out; |
| 3822 | } |
| 3823 | |
| 3824 | /* scan the tcp-check ruleset to ensure a port has been configured */ |
Gaetan Rivet | 04578db | 2020-02-07 15:37:17 +0100 | [diff] [blame^] | 3825 | list_for_each_entry(r, srv->proxy->tcpcheck_rules, list) { |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3826 | if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) { |
| 3827 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port, " |
| 3828 | "and a tcp_check rule 'connect' with no port information.\n", |
| 3829 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 3830 | ret |= ERR_ALERT | ERR_ABORT; |
| 3831 | goto out; |
| 3832 | } |
| 3833 | } |
| 3834 | |
| 3835 | init: |
| 3836 | err = init_check(&srv->check, srv->proxy->options2 & PR_O2_CHK_ANY); |
| 3837 | if (err) { |
| 3838 | ha_alert("config: %s '%s': unable to init check for server '%s' (%s).\n", |
| 3839 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 3840 | ret |= ERR_ALERT | ERR_ABORT; |
| 3841 | goto out; |
| 3842 | } |
| 3843 | srv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED; |
| 3844 | global.maxsock++; |
| 3845 | |
| 3846 | out: |
| 3847 | return ret; |
| 3848 | } |
| 3849 | |
| 3850 | static int init_srv_agent_check(struct server *srv) |
| 3851 | { |
| 3852 | const char *err; |
| 3853 | int ret = 0; |
| 3854 | |
| 3855 | if (!srv->do_agent) |
| 3856 | goto out; |
| 3857 | |
| 3858 | err = init_check(&srv->agent, PR_O2_LB_AGENT_CHK); |
| 3859 | if (err) { |
| 3860 | ha_alert("config: %s '%s': unable to init agent-check for server '%s' (%s).\n", |
| 3861 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 3862 | ret |= ERR_ALERT | ERR_ABORT; |
| 3863 | goto out; |
| 3864 | } |
| 3865 | |
| 3866 | if (!srv->agent.inter) |
| 3867 | srv->agent.inter = srv->check.inter; |
| 3868 | |
| 3869 | srv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT; |
| 3870 | global.maxsock++; |
| 3871 | |
| 3872 | out: |
| 3873 | return ret; |
| 3874 | } |
| 3875 | |
| 3876 | static void deinit_srv_check(struct server *srv) |
| 3877 | { |
| 3878 | if (srv->do_check) |
| 3879 | free_check(&srv->check); |
| 3880 | } |
| 3881 | |
| 3882 | |
| 3883 | static void deinit_srv_agent_check(struct server *srv) |
| 3884 | { |
| 3885 | if (srv->do_agent) |
| 3886 | free_check(&srv->agent); |
| 3887 | free(srv->agent.send_string); |
| 3888 | } |
| 3889 | |
| 3890 | REGISTER_POST_SERVER_CHECK(init_srv_check); |
| 3891 | REGISTER_POST_SERVER_CHECK(init_srv_agent_check); |
| 3892 | |
| 3893 | REGISTER_SERVER_DEINIT(deinit_srv_check); |
| 3894 | REGISTER_SERVER_DEINIT(deinit_srv_agent_check); |
| 3895 | |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 3896 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3897 | * Local variables: |
| 3898 | * c-indent-level: 8 |
| 3899 | * c-basic-offset: 8 |
| 3900 | * End: |
| 3901 | */ |