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