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