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