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