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> |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 18 | #include <stdarg.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 19 | #include <stdio.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 20 | #include <stdlib.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 21 | #include <string.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 22 | #include <time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 23 | #include <unistd.h> |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 24 | #include <sys/resource.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 32 | #include <haproxy/action.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 33 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 34 | #include <haproxy/arg.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 35 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 36 | #include <haproxy/check.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 37 | #include <haproxy/chunk.h> |
Willy Tarreau | 7c18b54 | 2020-06-11 09:23:02 +0200 | [diff] [blame] | 38 | #include <haproxy/dgram.h> |
Willy Tarreau | eb92deb | 2020-06-04 10:53:16 +0200 | [diff] [blame] | 39 | #include <haproxy/dns.h> |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 40 | #include <haproxy/dynbuf-t.h> |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 41 | #include <haproxy/extcheck.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 42 | #include <haproxy/fd.h> |
| 43 | #include <haproxy/global.h> |
| 44 | #include <haproxy/h1.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 45 | #include <haproxy/http.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 46 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 47 | #include <haproxy/htx.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 48 | #include <haproxy/istbuf.h> |
| 49 | #include <haproxy/list.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 50 | #include <haproxy/log.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 51 | #include <haproxy/mailers.h> |
| 52 | #include <haproxy/port_range.h> |
| 53 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 54 | #include <haproxy/protocol.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 55 | #include <haproxy/proxy.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 56 | #include <haproxy/queue.h> |
| 57 | #include <haproxy/regex.h> |
| 58 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 59 | #include <haproxy/server.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 60 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 61 | #include <haproxy/stats-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 62 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 63 | #include <haproxy/task.h> |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 64 | #include <haproxy/tcpcheck.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 65 | #include <haproxy/thread.h> |
| 66 | #include <haproxy/time.h> |
| 67 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 68 | #include <haproxy/vars.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 69 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 70 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 71 | static int wake_srv_chk(struct conn_stream *cs); |
| 72 | struct data_cb check_conn_cb = { |
| 73 | .wake = wake_srv_chk, |
| 74 | .name = "CHCK", |
| 75 | }; |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 76 | |
Christopher Faulet | 5d503fc | 2020-03-30 20:34:34 +0200 | [diff] [blame] | 77 | |
Gaetan Rivet | 05d692d | 2020-02-14 17:42:54 +0100 | [diff] [blame] | 78 | /* Dummy frontend used to create all checks sessions. */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 79 | struct proxy checks_fe; |
Christopher Faulet | 31dff9b | 2017-10-23 15:45:20 +0200 | [diff] [blame] | 80 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 81 | /**************************************************************************/ |
| 82 | /************************ Handle check results ****************************/ |
| 83 | /**************************************************************************/ |
| 84 | struct check_status { |
| 85 | short result; /* one of SRV_CHK_* */ |
| 86 | char *info; /* human readable short info */ |
| 87 | char *desc; /* long description */ |
| 88 | }; |
| 89 | |
| 90 | struct analyze_status { |
| 91 | char *desc; /* description */ |
| 92 | unsigned char lr[HANA_OBS_SIZE]; /* result for l4/l7: 0 = ignore, 1 - error, 2 - OK */ |
| 93 | }; |
| 94 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 95 | static const struct check_status check_statuses[HCHK_STATUS_SIZE] = { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 96 | [HCHK_STATUS_UNKNOWN] = { CHK_RES_UNKNOWN, "UNK", "Unknown" }, |
| 97 | [HCHK_STATUS_INI] = { CHK_RES_UNKNOWN, "INI", "Initializing" }, |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 98 | [HCHK_STATUS_START] = { /* SPECIAL STATUS*/ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 99 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 100 | /* Below we have finished checks */ |
| 101 | [HCHK_STATUS_CHECKED] = { CHK_RES_NEUTRAL, "CHECKED", "No status change" }, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 102 | [HCHK_STATUS_HANA] = { CHK_RES_FAILED, "HANA", "Health analyze" }, |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 103 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 104 | [HCHK_STATUS_SOCKERR] = { CHK_RES_FAILED, "SOCKERR", "Socket error" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 105 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 106 | [HCHK_STATUS_L4OK] = { CHK_RES_PASSED, "L4OK", "Layer4 check passed" }, |
| 107 | [HCHK_STATUS_L4TOUT] = { CHK_RES_FAILED, "L4TOUT", "Layer4 timeout" }, |
| 108 | [HCHK_STATUS_L4CON] = { CHK_RES_FAILED, "L4CON", "Layer4 connection problem" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 109 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 110 | [HCHK_STATUS_L6OK] = { CHK_RES_PASSED, "L6OK", "Layer6 check passed" }, |
| 111 | [HCHK_STATUS_L6TOUT] = { CHK_RES_FAILED, "L6TOUT", "Layer6 timeout" }, |
| 112 | [HCHK_STATUS_L6RSP] = { CHK_RES_FAILED, "L6RSP", "Layer6 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 113 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 114 | [HCHK_STATUS_L7TOUT] = { CHK_RES_FAILED, "L7TOUT", "Layer7 timeout" }, |
| 115 | [HCHK_STATUS_L7RSP] = { CHK_RES_FAILED, "L7RSP", "Layer7 invalid response" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 116 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 117 | [HCHK_STATUS_L57DATA] = { /* DUMMY STATUS */ }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 118 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 119 | [HCHK_STATUS_L7OKD] = { CHK_RES_PASSED, "L7OK", "Layer7 check passed" }, |
| 120 | [HCHK_STATUS_L7OKCD] = { CHK_RES_CONDPASS, "L7OKC", "Layer7 check conditionally passed" }, |
| 121 | [HCHK_STATUS_L7STS] = { CHK_RES_FAILED, "L7STS", "Layer7 wrong status" }, |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 122 | |
| 123 | [HCHK_STATUS_PROCERR] = { CHK_RES_FAILED, "PROCERR", "External check error" }, |
| 124 | [HCHK_STATUS_PROCTOUT] = { CHK_RES_FAILED, "PROCTOUT", "External check timeout" }, |
Cyril Bonté | 77010d8 | 2014-08-07 01:55:37 +0200 | [diff] [blame] | 125 | [HCHK_STATUS_PROCOK] = { CHK_RES_PASSED, "PROCOK", "External check passed" }, |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 126 | }; |
| 127 | |
Simon Horman | 63a4a82 | 2012-03-19 07:24:41 +0900 | [diff] [blame] | 128 | 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] | 129 | [HANA_STATUS_UNKNOWN] = { "Unknown", { 0, 0 }}, |
| 130 | |
| 131 | [HANA_STATUS_L4_OK] = { "L4 successful connection", { 2, 0 }}, |
| 132 | [HANA_STATUS_L4_ERR] = { "L4 unsuccessful connection", { 1, 1 }}, |
| 133 | |
| 134 | [HANA_STATUS_HTTP_OK] = { "Correct http response", { 0, 2 }}, |
| 135 | [HANA_STATUS_HTTP_STS] = { "Wrong http response", { 0, 1 }}, |
| 136 | [HANA_STATUS_HTTP_HDRRSP] = { "Invalid http response (headers)", { 0, 1 }}, |
| 137 | [HANA_STATUS_HTTP_RSP] = { "Invalid http response", { 0, 1 }}, |
| 138 | |
| 139 | [HANA_STATUS_HTTP_READ_ERROR] = { "Read error (http)", { 0, 1 }}, |
| 140 | [HANA_STATUS_HTTP_READ_TIMEOUT] = { "Read timeout (http)", { 0, 1 }}, |
| 141 | [HANA_STATUS_HTTP_BROKEN_PIPE] = { "Close from server (http)", { 0, 1 }}, |
| 142 | }; |
| 143 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 144 | /* checks if <err> is a real error for errno or one that can be ignored, and |
| 145 | * return 0 for these ones or <err> for real ones. |
| 146 | */ |
| 147 | static inline int unclean_errno(int err) |
| 148 | { |
| 149 | if (err == EAGAIN || err == EINPROGRESS || |
| 150 | err == EISCONN || err == EALREADY) |
| 151 | return 0; |
| 152 | return err; |
| 153 | } |
| 154 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 155 | /* Converts check_status code to description */ |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 156 | const char *get_check_status_description(short check_status) { |
| 157 | |
| 158 | const char *desc; |
| 159 | |
| 160 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 161 | desc = check_statuses[check_status].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 162 | else |
| 163 | desc = NULL; |
| 164 | |
| 165 | if (desc && *desc) |
| 166 | return desc; |
| 167 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 168 | return check_statuses[HCHK_STATUS_UNKNOWN].desc; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 169 | } |
| 170 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 171 | /* Converts check_status code to short info */ |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 172 | const char *get_check_status_info(short check_status) { |
| 173 | |
| 174 | const char *info; |
| 175 | |
| 176 | if (check_status < HCHK_STATUS_SIZE) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 177 | info = check_statuses[check_status].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 178 | else |
| 179 | info = NULL; |
| 180 | |
| 181 | if (info && *info) |
| 182 | return info; |
| 183 | else |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 184 | return check_statuses[HCHK_STATUS_UNKNOWN].info; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 185 | } |
| 186 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 187 | /* Convert analyze_status to description */ |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 188 | const char *get_analyze_status(short analyze_status) { |
| 189 | |
| 190 | const char *desc; |
| 191 | |
| 192 | if (analyze_status < HANA_STATUS_SIZE) |
| 193 | desc = analyze_statuses[analyze_status].desc; |
| 194 | else |
| 195 | desc = NULL; |
| 196 | |
| 197 | if (desc && *desc) |
| 198 | return desc; |
| 199 | else |
| 200 | return analyze_statuses[HANA_STATUS_UNKNOWN].desc; |
| 201 | } |
| 202 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 203 | /* Sets check->status, update check->duration and fill check->result with an |
| 204 | * adequate CHK_RES_* value. The new check->health is computed based on the |
| 205 | * result. |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 206 | * |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 207 | * Shows information in logs about failed health check if server is UP or |
| 208 | * succeeded health checks if server is DOWN. |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 209 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 210 | 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] | 211 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 212 | struct server *s = check->server; |
Willy Tarreau | bef1b32 | 2014-05-13 21:01:39 +0200 | [diff] [blame] | 213 | short prev_status = check->status; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 214 | int report = 0; |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 215 | |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 216 | if (status == HCHK_STATUS_START) { |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 217 | check->result = CHK_RES_UNKNOWN; /* no result yet */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 218 | check->desc[0] = '\0'; |
| 219 | check->start = now; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 220 | return; |
| 221 | } |
| 222 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 223 | if (!check->status) |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 224 | return; |
| 225 | |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 226 | if (desc && *desc) { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 227 | strncpy(check->desc, desc, HCHK_DESC_LEN-1); |
| 228 | check->desc[HCHK_DESC_LEN-1] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 229 | } else |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 230 | check->desc[0] = '\0'; |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 231 | |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 232 | check->status = status; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 233 | if (check_statuses[status].result) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 234 | check->result = check_statuses[status].result; |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 235 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 236 | if (status == HCHK_STATUS_HANA) |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 237 | check->duration = -1; |
| 238 | else if (!tv_iszero(&check->start)) { |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 239 | /* set_server_check_status() may be called more than once */ |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 240 | check->duration = tv_ms_elapsed(&check->start, &now); |
| 241 | tv_zero(&check->start); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Willy Tarreau | 2396418 | 2014-05-20 20:56:30 +0200 | [diff] [blame] | 244 | /* no change is expected if no state change occurred */ |
| 245 | if (check->result == CHK_RES_NEUTRAL) |
| 246 | return; |
| 247 | |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 248 | /* If the check was really just sending a mail, it won't have an |
| 249 | * associated server, so we're done now. |
| 250 | */ |
| 251 | if (!s) |
| 252 | return; |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 253 | report = 0; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 254 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 255 | switch (check->result) { |
| 256 | case CHK_RES_FAILED: |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 257 | /* Failure to connect to the agent as a secondary check should not |
| 258 | * cause the server to be marked down. |
| 259 | */ |
| 260 | if ((!(check->state & CHK_ST_AGENT) || |
Simon Horman | eaabd52 | 2015-02-26 11:26:17 +0900 | [diff] [blame] | 261 | (check->status >= HCHK_STATUS_L57DATA)) && |
Christopher Faulet | b119a79 | 2018-05-02 12:12:45 +0200 | [diff] [blame] | 262 | (check->health > 0)) { |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 263 | _HA_ATOMIC_ADD(&s->counters.failed_checks, 1); |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 264 | report = 1; |
| 265 | check->health--; |
| 266 | if (check->health < check->rise) |
| 267 | check->health = 0; |
| 268 | } |
| 269 | break; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 270 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 271 | case CHK_RES_PASSED: |
| 272 | case CHK_RES_CONDPASS: /* "condpass" cannot make the first step but it OK after a "passed" */ |
| 273 | if ((check->health < check->rise + check->fall - 1) && |
| 274 | (check->result == CHK_RES_PASSED || check->health > 0)) { |
| 275 | report = 1; |
| 276 | check->health++; |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 277 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 278 | if (check->health >= check->rise) |
| 279 | check->health = check->rise + check->fall - 1; /* OK now */ |
| 280 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 281 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 282 | /* clear consecutive_errors if observing is enabled */ |
| 283 | if (s->onerror) |
| 284 | s->consecutive_errors = 0; |
| 285 | break; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 286 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 287 | default: |
| 288 | break; |
| 289 | } |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 290 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 291 | if (s->proxy->options2 & PR_O2_LOGHCHKS && |
| 292 | (status != prev_status || report)) { |
| 293 | chunk_printf(&trash, |
Willy Tarreau | 12634e1 | 2014-05-23 11:32:36 +0200 | [diff] [blame] | 294 | "%s check for %sserver %s/%s %s%s", |
| 295 | (check->state & CHK_ST_AGENT) ? "Agent" : "Health", |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 296 | s->flags & SRV_F_BACKUP ? "backup " : "", |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 297 | s->proxy->id, s->id, |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 298 | (check->result == CHK_RES_CONDPASS) ? "conditionally ":"", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 299 | (check->result >= CHK_RES_PASSED) ? "succeeded" : "failed"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 300 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 301 | srv_append_status(&trash, s, check, -1, 0); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 302 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 303 | chunk_appendf(&trash, ", status: %d/%d %s", |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 304 | (check->health >= check->rise) ? check->health - check->rise + 1 : check->health, |
| 305 | (check->health >= check->rise) ? check->fall : check->rise, |
| 306 | (check->health >= check->rise) ? (s->uweight ? "UP" : "DRAIN") : "DOWN"); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 307 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 308 | ha_warning("%s.\n", trash.area); |
| 309 | send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area); |
| 310 | send_email_alert(s, LOG_INFO, "%s", trash.area); |
Krzysztof Piotr Oledzki | 213014e | 2009-09-27 15:50:02 +0200 | [diff] [blame] | 311 | } |
Krzysztof Piotr Oledzki | 0960541 | 2009-09-23 22:09:24 +0200 | [diff] [blame] | 312 | } |
| 313 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 314 | /* Marks the check <check>'s server down if the current check is already failed |
| 315 | * and the server is not down yet nor in maintenance. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 316 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 317 | void check_notify_failure(struct check *check) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 318 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 319 | struct server *s = check->server; |
Simon Horman | e0d1bfb | 2011-06-21 14:34:58 +0900 | [diff] [blame] | 320 | |
Willy Tarreau | 7b1d47c | 2014-05-20 14:55:13 +0200 | [diff] [blame] | 321 | /* The agent secondary check should only cause a server to be marked |
| 322 | * as down if check->status is HCHK_STATUS_L7STS, which indicates |
| 323 | * that the agent returned "fail", "stopped" or "down". |
| 324 | * The implication here is that failure to connect to the agent |
| 325 | * as a secondary check should not cause the server to be marked |
| 326 | * down. */ |
| 327 | if ((check->state & CHK_ST_AGENT) && check->status != HCHK_STATUS_L7STS) |
| 328 | return; |
| 329 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 330 | if (check->health > 0) |
| 331 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 332 | |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 333 | /* 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] | 334 | 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] | 335 | } |
| 336 | |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 337 | /* 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] | 338 | * it isn't in maintenance, it is not tracking a down server and other checks |
| 339 | * comply. The rule is simple : by default, a server is up, unless any of the |
| 340 | * following conditions is true : |
| 341 | * - health check failed (check->health < rise) |
| 342 | * - agent check failed (agent->health < rise) |
| 343 | * - the server tracks a down server (track && track->state == STOPPED) |
| 344 | * Note that if the server has a slowstart, it will switch to STARTING instead |
| 345 | * of RUNNING. Also, only the health checks support the nolb mode, so the |
| 346 | * agent's success may not take the server out of this mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 347 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 348 | void check_notify_success(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 349 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 350 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 351 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 352 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 353 | return; |
Cyril Bonté | cd19e51 | 2010-01-31 22:34:03 +0100 | [diff] [blame] | 354 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 355 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 356 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 357 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 358 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 359 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 360 | |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 361 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 362 | return; |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 363 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 364 | if ((check->state & CHK_ST_AGENT) && s->next_state == SRV_ST_STOPPING) |
Willy Tarreau | 3e04838 | 2014-05-21 10:30:54 +0200 | [diff] [blame] | 365 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 366 | |
Emeric Brun | 5a13351 | 2017-10-19 14:42:30 +0200 | [diff] [blame] | 367 | 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] | 368 | } |
| 369 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 370 | /* Marks the check <check> as valid and tries to set its server into stopping mode |
| 371 | * if it was running or starting, and provided it isn't in maintenance and other |
| 372 | * checks comply. The conditions for the server to be marked in stopping mode are |
| 373 | * the same as for it to be turned up. Also, only the health checks support the |
| 374 | * nolb mode. |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 375 | */ |
Willy Tarreau | bcc6733 | 2020-06-05 15:31:31 +0200 | [diff] [blame] | 376 | void check_notify_stopping(struct check *check) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 377 | { |
Simon Horman | 4a74143 | 2013-02-23 15:35:38 +0900 | [diff] [blame] | 378 | struct server *s = check->server; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 379 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 380 | if (s->next_admin & SRV_ADMF_MAINT) |
Willy Tarreau | af54958 | 2014-05-16 17:37:50 +0200 | [diff] [blame] | 381 | return; |
| 382 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 383 | if (check->state & CHK_ST_AGENT) |
| 384 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 385 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 386 | if (s->track && s->track->next_state == SRV_ST_STOPPED) |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 387 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 388 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 389 | if ((s->check.state & CHK_ST_ENABLED) && (s->check.health < s->check.rise)) |
| 390 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 391 | |
Willy Tarreau | db58b79 | 2014-05-21 13:57:23 +0200 | [diff] [blame] | 392 | if ((s->agent.state & CHK_ST_ENABLED) && (s->agent.health < s->agent.rise)) |
| 393 | return; |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 394 | |
Willy Tarreau | b26881a | 2017-12-23 11:16:49 +0100 | [diff] [blame] | 395 | srv_set_stopping(s, NULL, (!s->track && !(s->proxy->options2 & PR_O2_LOGHCHKS)) ? check : NULL); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 396 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 397 | |
Willy Tarreau | 9fe7aae | 2013-12-31 23:47:37 +0100 | [diff] [blame] | 398 | /* note: use health_adjust() only, which first checks that the observe mode is |
Willy Tarreau | 93da4dc | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 399 | * enabled. This will take the server lock if needed. |
Willy Tarreau | 9fe7aae | 2013-12-31 23:47:37 +0100 | [diff] [blame] | 400 | */ |
| 401 | void __health_adjust(struct server *s, short status) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 402 | { |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 403 | int failed; |
| 404 | int expire; |
| 405 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 406 | if (s->observe >= HANA_OBS_SIZE) |
| 407 | return; |
| 408 | |
Willy Tarreau | bb95666 | 2013-01-24 00:37:39 +0100 | [diff] [blame] | 409 | if (status >= HANA_STATUS_SIZE || !analyze_statuses[status].desc) |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 410 | return; |
| 411 | |
| 412 | switch (analyze_statuses[status].lr[s->observe - 1]) { |
| 413 | case 1: |
| 414 | failed = 1; |
| 415 | break; |
| 416 | |
| 417 | case 2: |
| 418 | failed = 0; |
| 419 | break; |
| 420 | |
| 421 | default: |
| 422 | return; |
| 423 | } |
| 424 | |
| 425 | if (!failed) { |
| 426 | /* good: clear consecutive_errors */ |
| 427 | s->consecutive_errors = 0; |
| 428 | return; |
| 429 | } |
| 430 | |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 431 | _HA_ATOMIC_ADD(&s->consecutive_errors, 1); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 432 | |
| 433 | if (s->consecutive_errors < s->consecutive_errors_limit) |
| 434 | return; |
| 435 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 436 | chunk_printf(&trash, "Detected %d consecutive errors, last one was: %s", |
| 437 | s->consecutive_errors, get_analyze_status(status)); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 438 | |
Willy Tarreau | 93da4dc | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 439 | if (s->check.fastinter) |
| 440 | expire = tick_add(now_ms, MS_TO_TICKS(s->check.fastinter)); |
| 441 | else |
| 442 | expire = TICK_ETERNITY; |
| 443 | |
| 444 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
| 445 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 446 | switch (s->onerror) { |
| 447 | case HANA_ONERR_FASTINTER: |
| 448 | /* force fastinter - nothing to do here as all modes force it */ |
| 449 | break; |
| 450 | |
| 451 | case HANA_ONERR_SUDDTH: |
| 452 | /* simulate a pre-fatal failed health check */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 453 | if (s->check.health > s->check.rise) |
| 454 | s->check.health = s->check.rise + 1; |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 455 | |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 456 | /* fall through */ |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 457 | |
| 458 | case HANA_ONERR_FAILCHK: |
| 459 | /* simulate a failed health check */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 460 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 461 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 462 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 463 | break; |
| 464 | |
| 465 | case HANA_ONERR_MARKDWN: |
| 466 | /* mark server down */ |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 467 | s->check.health = s->check.rise; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 468 | set_server_check_status(&s->check, HCHK_STATUS_HANA, |
| 469 | trash.area); |
Willy Tarreau | 4eec547 | 2014-05-20 22:32:27 +0200 | [diff] [blame] | 470 | check_notify_failure(&s->check); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 471 | break; |
| 472 | |
| 473 | default: |
| 474 | /* write a warning? */ |
| 475 | break; |
| 476 | } |
| 477 | |
Willy Tarreau | 93da4dc | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 478 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 479 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 480 | s->consecutive_errors = 0; |
Olivier Houchard | 7059c55 | 2019-03-08 18:49:32 +0100 | [diff] [blame] | 481 | _HA_ATOMIC_ADD(&s->counters.failed_hana, 1); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 482 | |
Willy Tarreau | 93da4dc | 2021-02-17 15:20:19 +0100 | [diff] [blame] | 483 | if (tick_is_lt(expire, s->check.task->expire)) { |
| 484 | /* requeue check task with new expire */ |
| 485 | task_schedule(s->check.task, expire); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 486 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 489 | /* Checks the connection. If an error has already been reported or the socket is |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 490 | * closed, keep errno intact as it is supposed to contain the valid error code. |
| 491 | * If no error is reported, check the socket's error queue using getsockopt(). |
| 492 | * Warning, this must be done only once when returning from poll, and never |
| 493 | * after an I/O error was attempted, otherwise the error queue might contain |
| 494 | * inconsistent errors. If an error is detected, the CO_FL_ERROR is set on the |
| 495 | * socket. Returns non-zero if an error was reported, zero if everything is |
| 496 | * clean (including a properly closed socket). |
| 497 | */ |
| 498 | static int retrieve_errno_from_socket(struct connection *conn) |
| 499 | { |
| 500 | int skerr; |
| 501 | socklen_t lskerr = sizeof(skerr); |
| 502 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 503 | if (conn->flags & CO_FL_ERROR && (unclean_errno(errno) || !conn->ctrl)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 504 | return 1; |
| 505 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 506 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 507 | return 0; |
| 508 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 509 | if (getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == 0) |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 510 | errno = skerr; |
| 511 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 512 | errno = unclean_errno(errno); |
Willy Tarreau | 20a1834 | 2013-12-05 00:31:46 +0100 | [diff] [blame] | 513 | |
| 514 | if (!errno) { |
| 515 | /* we could not retrieve an error, that does not mean there is |
| 516 | * none. Just don't change anything and only report the prior |
| 517 | * error if any. |
| 518 | */ |
| 519 | if (conn->flags & CO_FL_ERROR) |
| 520 | return 1; |
| 521 | else |
| 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH; |
| 526 | return 1; |
| 527 | } |
| 528 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 529 | /* Tries to collect as much information as possible on the connection status, |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 530 | * and adjust the server status accordingly. It may make use of <errno_bck> |
| 531 | * if non-null when the caller is absolutely certain of its validity (eg: |
| 532 | * checked just after a syscall). If the caller doesn't have a valid errno, |
| 533 | * it can pass zero, and retrieve_errno_from_socket() will be called to try |
| 534 | * to extract errno from the socket. If no error is reported, it will consider |
| 535 | * the <expired> flag. This is intended to be used when a connection error was |
| 536 | * reported in conn->flags or when a timeout was reported in <expired>. The |
| 537 | * function takes care of not updating a server status which was already set. |
| 538 | * All situations where at least one of <expired> or CO_FL_ERROR are set |
| 539 | * produce a status. |
| 540 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 541 | 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] | 542 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 543 | struct conn_stream *cs = check->cs; |
| 544 | struct connection *conn = cs_conn(cs); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 545 | const char *err_msg; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 546 | struct buffer *chk; |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 547 | int step; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 548 | |
Willy Tarreau | 6aaa1b8 | 2013-12-11 17:09:34 +0100 | [diff] [blame] | 549 | if (check->result != CHK_RES_UNKNOWN) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 550 | return; |
| 551 | |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 552 | errno = unclean_errno(errno_bck); |
| 553 | if (conn && errno) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 554 | retrieve_errno_from_socket(conn); |
| 555 | |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 556 | if (conn && !(conn->flags & CO_FL_ERROR) && |
| 557 | !(cs->flags & CS_FL_ERROR) && !expired) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 558 | return; |
| 559 | |
| 560 | /* we'll try to build a meaningful error message depending on the |
| 561 | * context of the error possibly present in conn->err_code, and the |
| 562 | * socket error possibly collected above. This is useful to know the |
| 563 | * exact step of the L6 layer (eg: SSL handshake). |
| 564 | */ |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 565 | chk = get_trash_chunk(); |
| 566 | |
Christopher Faulet | 799f3a4 | 2020-04-07 12:06:14 +0200 | [diff] [blame] | 567 | if (check->type == PR_O2_TCPCHK_CHK && |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 568 | (check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) { |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 569 | step = tcpcheck_get_step_id(check, NULL); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 570 | if (!step) |
| 571 | chunk_printf(chk, " at initial connection step of tcp-check"); |
| 572 | else { |
| 573 | chunk_printf(chk, " at step %d of tcp-check", step); |
| 574 | /* we were looking for a string */ |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 575 | if (check->current_step && check->current_step->action == TCPCHK_ACT_CONNECT) { |
| 576 | if (check->current_step->connect.port) |
| 577 | chunk_appendf(chk, " (connect port %d)" ,check->current_step->connect.port); |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 578 | else |
| 579 | chunk_appendf(chk, " (connect)"); |
| 580 | } |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 581 | else if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT) { |
| 582 | struct tcpcheck_expect *expect = &check->current_step->expect; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 583 | |
| 584 | switch (expect->type) { |
| 585 | case TCPCHK_EXPECT_STRING: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 586 | chunk_appendf(chk, " (expect string '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 587 | break; |
| 588 | case TCPCHK_EXPECT_BINARY: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 589 | chunk_appendf(chk, " (expect binary '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 590 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 591 | case TCPCHK_EXPECT_STRING_REGEX: |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 592 | chunk_appendf(chk, " (expect regex)"); |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 593 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 594 | case TCPCHK_EXPECT_BINARY_REGEX: |
Gaetan Rivet | efab6c6 | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 595 | chunk_appendf(chk, " (expect binary regex)"); |
| 596 | break; |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 597 | case TCPCHK_EXPECT_STRING_LF: |
| 598 | chunk_appendf(chk, " (expect log-format string)"); |
| 599 | break; |
| 600 | case TCPCHK_EXPECT_BINARY_LF: |
| 601 | chunk_appendf(chk, " (expect log-format binary)"); |
| 602 | break; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 603 | case TCPCHK_EXPECT_HTTP_STATUS: |
Christopher Faulet | 8021a5f | 2020-04-24 13:53:12 +0200 | [diff] [blame] | 604 | chunk_appendf(chk, " (expect HTTP status codes)"); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 605 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 606 | case TCPCHK_EXPECT_HTTP_STATUS_REGEX: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 607 | chunk_appendf(chk, " (expect HTTP status regex)"); |
| 608 | break; |
Christopher Faulet | 3970819 | 2020-05-05 10:47:36 +0200 | [diff] [blame] | 609 | case TCPCHK_EXPECT_HTTP_HEADER: |
| 610 | chunk_appendf(chk, " (expect HTTP header pattern)"); |
| 611 | break; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 612 | case TCPCHK_EXPECT_HTTP_BODY: |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 613 | chunk_appendf(chk, " (expect HTTP body content '%.*s')", (unsigned int)istlen(expect->data), istptr(expect->data)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 614 | break; |
Christopher Faulet | 67a2345 | 2020-05-05 18:10:01 +0200 | [diff] [blame] | 615 | case TCPCHK_EXPECT_HTTP_BODY_REGEX: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 616 | chunk_appendf(chk, " (expect HTTP body regex)"); |
| 617 | break; |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 618 | case TCPCHK_EXPECT_HTTP_BODY_LF: |
| 619 | chunk_appendf(chk, " (expect log-format HTTP body)"); |
| 620 | break; |
Christopher Faulet | 9e6ed15 | 2020-04-03 15:24:06 +0200 | [diff] [blame] | 621 | case TCPCHK_EXPECT_CUSTOM: |
| 622 | chunk_appendf(chk, " (expect custom function)"); |
| 623 | break; |
Gaetan Rivet | b616add | 2020-02-07 15:37:17 +0100 | [diff] [blame] | 624 | case TCPCHK_EXPECT_UNDEF: |
| 625 | chunk_appendf(chk, " (undefined expect!)"); |
| 626 | break; |
| 627 | } |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 628 | } |
Christopher Faulet | b2c2e0f | 2020-03-30 11:05:10 +0200 | [diff] [blame] | 629 | else if (check->current_step && check->current_step->action == TCPCHK_ACT_SEND) { |
Willy Tarreau | 213c678 | 2014-10-02 14:51:02 +0200 | [diff] [blame] | 630 | chunk_appendf(chk, " (send)"); |
| 631 | } |
Baptiste Assmann | 22b09d2 | 2015-05-01 08:03:04 +0200 | [diff] [blame] | 632 | |
Christopher Faulet | 6f2a5e4 | 2020-04-01 13:11:41 +0200 | [diff] [blame] | 633 | if (check->current_step && check->current_step->comment) |
| 634 | chunk_appendf(chk, " comment: '%s'", check->current_step->comment); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 635 | } |
| 636 | } |
| 637 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 638 | if (conn && conn->err_code) { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 639 | if (unclean_errno(errno)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 640 | chunk_printf(&trash, "%s (%s)%s", conn_err_code_str(conn), strerror(errno), |
| 641 | chk->area); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 642 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 643 | chunk_printf(&trash, "%s%s", conn_err_code_str(conn), |
| 644 | chk->area); |
| 645 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 646 | } |
| 647 | else { |
Willy Tarreau | c8dc20a | 2019-12-27 12:03:27 +0100 | [diff] [blame] | 648 | if (unclean_errno(errno)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 649 | chunk_printf(&trash, "%s%s", strerror(errno), |
| 650 | chk->area); |
| 651 | err_msg = trash.area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 652 | } |
| 653 | else { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 654 | err_msg = chk->area; |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 655 | } |
| 656 | } |
| 657 | |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 658 | if (check->state & CHK_ST_PORT_MISS) { |
Baptiste Assmann | 95db2bc | 2016-06-13 14:15:41 +0200 | [diff] [blame] | 659 | /* NOTE: this is reported after <fall> tries */ |
| 660 | chunk_printf(chk, "No port available for the TCP connection"); |
| 661 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 662 | } |
| 663 | |
Christopher Faulet | 5e29376 | 2020-10-26 11:10:49 +0100 | [diff] [blame] | 664 | if (!conn || !conn->ctrl) { |
| 665 | /* error before any connection attempt (connection allocation error or no control layer) */ |
Willy Tarreau | 0014912 | 2017-10-04 18:05:01 +0200 | [diff] [blame] | 666 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 667 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 668 | else if (conn->flags & CO_FL_WAIT_L4_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 669 | /* L4 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 670 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 671 | set_server_check_status(check, HCHK_STATUS_L4CON, err_msg); |
| 672 | else if (expired) |
| 673 | set_server_check_status(check, HCHK_STATUS_L4TOUT, err_msg); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 674 | |
| 675 | /* |
| 676 | * might be due to a server IP change. |
| 677 | * Let's trigger a DNS resolution if none are currently running. |
| 678 | */ |
Olivier Houchard | 0923fa4 | 2019-01-11 18:43:04 +0100 | [diff] [blame] | 679 | if (check->server) |
| 680 | dns_trigger_resolution(check->server->dns_requester); |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 681 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 682 | } |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 683 | else if (conn->flags & CO_FL_WAIT_L6_CONN) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 684 | /* L6 not established (yet) */ |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 685 | if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 686 | set_server_check_status(check, HCHK_STATUS_L6RSP, err_msg); |
| 687 | else if (expired) |
| 688 | set_server_check_status(check, HCHK_STATUS_L6TOUT, err_msg); |
| 689 | } |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 690 | else if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR) { |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 691 | /* I/O error after connection was established and before we could diagnose */ |
| 692 | set_server_check_status(check, HCHK_STATUS_SOCKERR, err_msg); |
| 693 | } |
| 694 | else if (expired) { |
Christopher Faulet | cf80f2f | 2020-04-01 11:04:52 +0200 | [diff] [blame] | 695 | enum healthcheck_status tout = HCHK_STATUS_L7TOUT; |
| 696 | |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 697 | /* connection established but expired check */ |
Christopher Faulet | 1941bab | 2020-05-05 07:55:50 +0200 | [diff] [blame] | 698 | if (check->current_step && check->current_step->action == TCPCHK_ACT_EXPECT && |
| 699 | check->current_step->expect.tout_status != HCHK_STATUS_UNKNOWN) |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 700 | tout = check->current_step->expect.tout_status; |
| 701 | set_server_check_status(check, tout, err_msg); |
Willy Tarreau | 25e2ab5 | 2013-12-04 11:17:05 +0100 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | return; |
| 705 | } |
| 706 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 707 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 708 | /* Builds the server state header used by HTTP health-checks */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 709 | int httpchk_build_status_header(struct server *s, struct buffer *buf) |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 710 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 711 | int sv_state; |
| 712 | int ratio; |
| 713 | char addr[46]; |
| 714 | char port[6]; |
| 715 | const char *srv_hlt_st[7] = { "DOWN", "DOWN %d/%d", |
| 716 | "UP %d/%d", "UP", |
| 717 | "NOLB %d/%d", "NOLB", |
| 718 | "no check" }; |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 719 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 720 | if (!(s->check.state & CHK_ST_ENABLED)) |
| 721 | sv_state = 6; |
| 722 | else if (s->cur_state != SRV_ST_STOPPED) { |
| 723 | if (s->check.health == s->check.rise + s->check.fall - 1) |
| 724 | sv_state = 3; /* UP */ |
| 725 | else |
| 726 | sv_state = 2; /* going down */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 727 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 728 | if (s->cur_state == SRV_ST_STOPPING) |
| 729 | sv_state += 2; |
| 730 | } else { |
| 731 | if (s->check.health) |
| 732 | sv_state = 1; /* going up */ |
| 733 | else |
| 734 | sv_state = 0; /* DOWN */ |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 735 | } |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 736 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 737 | chunk_appendf(buf, srv_hlt_st[sv_state], |
| 738 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.health - s->check.rise + 1) : (s->check.health), |
| 739 | (s->cur_state != SRV_ST_STOPPED) ? (s->check.fall) : (s->check.rise)); |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 740 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 741 | addr_to_str(&s->addr, addr, sizeof(addr)); |
| 742 | if (s->addr.ss_family == AF_INET || s->addr.ss_family == AF_INET6) |
| 743 | snprintf(port, sizeof(port), "%u", s->svc_port); |
| 744 | else |
| 745 | *port = 0; |
Willy Tarreau | b7b2478 | 2016-06-21 15:32:29 +0200 | [diff] [blame] | 746 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 747 | chunk_appendf(buf, "; address=%s; port=%s; name=%s/%s; node=%s; weight=%d/%d; scur=%d/%d; qcur=%d", |
| 748 | addr, port, s->proxy->id, s->id, |
| 749 | global.node, |
| 750 | (s->cur_eweight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
| 751 | (s->proxy->lbprm.tot_weight * s->proxy->lbprm.wmult + s->proxy->lbprm.wdiv - 1) / s->proxy->lbprm.wdiv, |
| 752 | s->cur_sess, s->proxy->beconn - s->proxy->nbpend, |
| 753 | s->nbpend); |
Willy Tarreau | 9f6dc72 | 2019-03-01 11:15:10 +0100 | [diff] [blame] | 754 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 755 | if ((s->cur_state == SRV_ST_STARTING) && |
| 756 | now.tv_sec < s->last_change + s->slowstart && |
| 757 | now.tv_sec >= s->last_change) { |
| 758 | ratio = MAX(1, 100 * (now.tv_sec - s->last_change) / s->slowstart); |
| 759 | chunk_appendf(buf, "; throttle=%d%%", ratio); |
| 760 | } |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 761 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 762 | return b_data(buf); |
| 763 | } |
Christopher Faulet | aaae9a0 | 2020-04-26 09:50:31 +0200 | [diff] [blame] | 764 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 765 | /**************************************************************************/ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 766 | /***************** Health-checks based on connections *********************/ |
| 767 | /**************************************************************************/ |
| 768 | /* This function is used only for server health-checks. It handles connection |
| 769 | * status updates including errors. If necessary, it wakes the check task up. |
| 770 | * It returns 0 on normal cases, <0 if at least one close() has happened on the |
| 771 | * connection (eg: reconnect). It relies on tcpcheck_main(). |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 772 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 773 | static int wake_srv_chk(struct conn_stream *cs) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 774 | { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 775 | struct connection *conn = cs->conn; |
| 776 | struct check *check = cs->data; |
| 777 | struct email_alertq *q = container_of(check, typeof(*q), check); |
| 778 | int ret = 0; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 779 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 780 | if (check->server) |
| 781 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
| 782 | else |
| 783 | HA_SPIN_LOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 784 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 785 | /* we may have to make progress on the TCP checks */ |
| 786 | ret = tcpcheck_main(check); |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 787 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 788 | cs = check->cs; |
| 789 | conn = cs->conn; |
Christopher Faulet | aaab083 | 2020-05-05 15:54:22 +0200 | [diff] [blame] | 790 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 791 | if (unlikely(conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)) { |
| 792 | /* We may get error reports bypassing the I/O handlers, typically |
| 793 | * the case when sending a pure TCP check which fails, then the I/O |
| 794 | * handlers above are not called. This is completely handled by the |
| 795 | * main processing task so let's simply wake it up. If we get here, |
| 796 | * we expect errno to still be valid. |
| 797 | */ |
| 798 | chk_report_conn_err(check, errno, 0); |
| 799 | task_wakeup(check->task, TASK_WOKEN_IO); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 800 | } |
| 801 | |
Christopher Faulet | 444b7b1 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 802 | if (check->result != CHK_RES_UNKNOWN || ret == -1) { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 803 | /* Check complete or aborted. If connection not yet closed do it |
| 804 | * now and wake the check task up to be sure the result is |
| 805 | * handled ASAP. */ |
| 806 | conn_sock_drain(conn); |
| 807 | cs_close(cs); |
| 808 | ret = -1; |
Christopher Faulet | 444b7b1 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 809 | |
| 810 | if (check->wait_list.events) |
| 811 | cs->conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list); |
| 812 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 813 | /* We may have been scheduled to run, and the |
| 814 | * I/O handler expects to have a cs, so remove |
| 815 | * the tasklet |
| 816 | */ |
| 817 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
| 818 | task_wakeup(check->task, TASK_WOKEN_IO); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 819 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 820 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 821 | if (check->server) |
| 822 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
| 823 | else |
| 824 | HA_SPIN_UNLOCK(EMAIL_ALERTS_LOCK, &q->lock); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 825 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 826 | /* if a connection got replaced, we must absolutely prevent the connection |
| 827 | * handler from touching its fd, and perform the FD polling updates ourselves |
| 828 | */ |
| 829 | if (ret < 0) |
| 830 | conn_cond_update_polling(conn); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 831 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 832 | return ret; |
| 833 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 834 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 835 | /* This function checks if any I/O is wanted, and if so, attempts to do so */ |
| 836 | static struct task *event_srv_chk_io(struct task *t, void *ctx, unsigned short state) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 837 | { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 838 | struct check *check = ctx; |
| 839 | struct conn_stream *cs = check->cs; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 840 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 841 | wake_srv_chk(cs); |
| 842 | return NULL; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 843 | } |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 844 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 845 | /* manages a server health-check that uses a connection. Returns |
| 846 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 847 | * |
| 848 | * Please do NOT place any return statement in this function and only leave |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 849 | * via the out_unlock label. |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 850 | */ |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 851 | static struct task *process_chk_conn(struct task *t, void *context, unsigned short state) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 852 | { |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 853 | struct check *check = context; |
| 854 | struct proxy *proxy = check->proxy; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 855 | struct conn_stream *cs = check->cs; |
| 856 | struct connection *conn = cs_conn(cs); |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 857 | int rv; |
| 858 | int expired = tick_is_expired(t->expire, now_ms); |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 859 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 860 | if (check->server) |
| 861 | HA_SPIN_LOCK(SERVER_LOCK, &check->server->lock); |
| 862 | if (!(check->state & CHK_ST_INPROGRESS)) { |
| 863 | /* no check currently running */ |
| 864 | if (!expired) /* woke up too early */ |
| 865 | goto out_unlock; |
Willy Tarreau | abca5b6 | 2013-12-06 14:19:25 +0100 | [diff] [blame] | 866 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 867 | /* we don't send any health-checks when the proxy is |
| 868 | * stopped, the server should not be checked or the check |
| 869 | * is disabled. |
| 870 | */ |
| 871 | if (((check->state & (CHK_ST_ENABLED | CHK_ST_PAUSED)) != CHK_ST_ENABLED) || |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 872 | proxy->disabled) |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 873 | goto reschedule; |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 874 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 875 | /* we'll initiate a new check */ |
| 876 | set_server_check_status(check, HCHK_STATUS_START, NULL); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 877 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 878 | check->state |= CHK_ST_INPROGRESS; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 879 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 880 | task_set_affinity(t, tid_bit); |
| 881 | |
| 882 | check->current_step = NULL; |
| 883 | tcpcheck_main(check); |
| 884 | goto out_unlock; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 885 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 886 | else { |
| 887 | /* there was a test running. |
| 888 | * First, let's check whether there was an uncaught error, |
| 889 | * which can happen on connect timeout or error. |
| 890 | */ |
| 891 | if (check->result == CHK_RES_UNKNOWN) { |
| 892 | if ((conn->flags & CO_FL_ERROR) || cs->flags & CS_FL_ERROR || expired) { |
| 893 | chk_report_conn_err(check, 0, expired); |
| 894 | } |
Christopher Faulet | 444b7b1 | 2021-01-18 15:47:03 +0100 | [diff] [blame] | 895 | else { |
| 896 | if (check->state & CHK_ST_CLOSE_CONN) { |
| 897 | cs_destroy(cs); |
| 898 | cs = NULL; |
| 899 | conn = NULL; |
| 900 | check->cs = NULL; |
| 901 | check->state &= ~CHK_ST_CLOSE_CONN; |
| 902 | tcpcheck_main(check); |
| 903 | } |
| 904 | if (check->result == CHK_RES_UNKNOWN) |
| 905 | goto out_unlock; /* timeout not reached, wait again */ |
| 906 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 907 | } |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 908 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 909 | /* check complete or aborted */ |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 910 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 911 | check->current_step = NULL; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 912 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 913 | if (conn && conn->xprt) { |
| 914 | /* The check was aborted and the connection was not yet closed. |
| 915 | * This can happen upon timeout, or when an external event such |
| 916 | * as a failed response coupled with "observe layer7" caused the |
| 917 | * server state to be suddenly changed. |
| 918 | */ |
| 919 | conn_sock_drain(conn); |
| 920 | cs_close(cs); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 921 | } |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 922 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 923 | if (cs) { |
| 924 | if (check->wait_list.events) |
| 925 | cs->conn->mux->unsubscribe(cs, check->wait_list.events, &check->wait_list); |
| 926 | /* We may have been scheduled to run, and the |
| 927 | * I/O handler expects to have a cs, so remove |
| 928 | * the tasklet |
| 929 | */ |
| 930 | tasklet_remove_from_tasklet_list(check->wait_list.tasklet); |
| 931 | cs_destroy(cs); |
| 932 | cs = check->cs = NULL; |
| 933 | conn = NULL; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 934 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 935 | |
| 936 | if (check->sess != NULL) { |
| 937 | vars_prune(&check->vars, check->sess, NULL); |
| 938 | session_free(check->sess); |
| 939 | check->sess = NULL; |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 940 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 941 | |
| 942 | if (check->server) { |
| 943 | if (check->result == CHK_RES_FAILED) { |
| 944 | /* a failure or timeout detected */ |
| 945 | check_notify_failure(check); |
| 946 | } |
| 947 | else if (check->result == CHK_RES_CONDPASS) { |
| 948 | /* check is OK but asks for stopping mode */ |
| 949 | check_notify_stopping(check); |
| 950 | } |
| 951 | else if (check->result == CHK_RES_PASSED) { |
| 952 | /* a success was detected */ |
| 953 | check_notify_success(check); |
| 954 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 955 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 956 | task_set_affinity(t, MAX_THREADS_MASK); |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 957 | check_release_buf(check, &check->bi); |
| 958 | check_release_buf(check, &check->bo); |
| 959 | check->state &= ~(CHK_ST_INPROGRESS|CHK_ST_IN_ALLOC|CHK_ST_OUT_ALLOC); |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 960 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 961 | if (check->server) { |
| 962 | rv = 0; |
| 963 | if (global.spread_checks > 0) { |
| 964 | rv = srv_getinter(check) * global.spread_checks / 100; |
| 965 | rv -= (int) (2 * rv * (ha_random32() / 4294967295.0)); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 966 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 967 | t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(check) + rv)); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 968 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 969 | } |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 970 | |
| 971 | reschedule: |
| 972 | while (tick_is_expired(t->expire, now_ms)) |
| 973 | t->expire = tick_add(t->expire, MS_TO_TICKS(check->inter)); |
| 974 | out_unlock: |
| 975 | if (check->server) |
| 976 | HA_SPIN_UNLOCK(SERVER_LOCK, &check->server->lock); |
| 977 | return t; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 978 | } |
| 979 | |
Willy Tarreau | 51cd595 | 2020-06-05 12:25:38 +0200 | [diff] [blame] | 980 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 981 | /**************************************************************************/ |
| 982 | /************************** Init/deinit checks ****************************/ |
| 983 | /**************************************************************************/ |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 984 | /* |
| 985 | * Tries to grab a buffer and to re-enables processing on check <target>. The |
| 986 | * check flags are used to figure what buffer was requested. It returns 1 if the |
| 987 | * allocation succeeds, in which case the I/O tasklet is woken up, or 0 if it's |
| 988 | * impossible to wake up and we prefer to be woken up later. |
| 989 | */ |
| 990 | int check_buf_available(void *target) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 991 | { |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 992 | struct check *check = target; |
| 993 | |
| 994 | if ((check->state & CHK_ST_IN_ALLOC) && b_alloc_margin(&check->bi, 0)) { |
| 995 | check->state &= ~CHK_ST_IN_ALLOC; |
| 996 | tasklet_wakeup(check->wait_list.tasklet); |
| 997 | return 1; |
| 998 | } |
| 999 | if ((check->state & CHK_ST_OUT_ALLOC) && b_alloc_margin(&check->bo, 0)) { |
| 1000 | check->state &= ~CHK_ST_OUT_ALLOC; |
| 1001 | tasklet_wakeup(check->wait_list.tasklet); |
| 1002 | return 1; |
| 1003 | } |
| 1004 | |
| 1005 | return 0; |
| 1006 | } |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1007 | |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1008 | /* |
| 1009 | * Allocate a buffer. If if fails, it adds the check in buffer wait queue. |
| 1010 | */ |
| 1011 | struct buffer *check_get_buf(struct check *check, struct buffer *bptr) |
| 1012 | { |
| 1013 | struct buffer *buf = NULL; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1014 | |
Willy Tarreau | 954827a | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 1015 | if (likely(!LIST_ADDED(&check->buf_wait.list)) && |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1016 | unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) { |
| 1017 | check->buf_wait.target = check; |
| 1018 | check->buf_wait.wakeup_cb = check_buf_available; |
Willy Tarreau | 954827a | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 1019 | LIST_ADDQ(&ti->buffer_wq, &check->buf_wait.list); |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1020 | } |
| 1021 | return buf; |
| 1022 | } |
| 1023 | |
| 1024 | /* |
| 1025 | * Release a buffer, if any, and try to wake up entities waiting in the buffer |
| 1026 | * wait queue. |
| 1027 | */ |
| 1028 | void check_release_buf(struct check *check, struct buffer *bptr) |
| 1029 | { |
| 1030 | if (bptr->size) { |
| 1031 | b_free(bptr); |
Willy Tarreau | 132b3a4 | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 1032 | offer_buffers(check->buf_wait.target, 1); |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1033 | } |
| 1034 | } |
| 1035 | |
| 1036 | const char *init_check(struct check *check, int type) |
| 1037 | { |
| 1038 | check->type = type; |
Christopher Faulet | ba3c68f | 2020-04-01 16:27:05 +0200 | [diff] [blame] | 1039 | |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1040 | check->bi = BUF_NULL; |
| 1041 | check->bo = BUF_NULL; |
Willy Tarreau | 954827a | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 1042 | LIST_INIT(&check->buf_wait.list); |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1043 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1044 | check->wait_list.tasklet = tasklet_new(); |
| 1045 | if (!check->wait_list.tasklet) |
| 1046 | return "out of memory while allocating check tasklet"; |
| 1047 | check->wait_list.events = 0; |
| 1048 | check->wait_list.tasklet->process = event_srv_chk_io; |
| 1049 | check->wait_list.tasklet->context = check; |
| 1050 | return NULL; |
| 1051 | } |
| 1052 | |
| 1053 | void free_check(struct check *check) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1054 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1055 | task_destroy(check->task); |
| 1056 | if (check->wait_list.tasklet) |
| 1057 | tasklet_free(check->wait_list.tasklet); |
| 1058 | |
Christopher Faulet | b51e037 | 2020-11-25 13:47:00 +0100 | [diff] [blame] | 1059 | check_release_buf(check, &check->bi); |
| 1060 | check_release_buf(check, &check->bo); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1061 | if (check->cs) { |
| 1062 | free(check->cs->conn); |
| 1063 | check->cs->conn = NULL; |
| 1064 | cs_free(check->cs); |
| 1065 | check->cs = NULL; |
| 1066 | } |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1067 | } |
| 1068 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1069 | /* manages a server health-check. Returns the time the task accepts to wait, or |
| 1070 | * TIME_ETERNITY for infinity. |
| 1071 | */ |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1072 | struct task *process_chk(struct task *t, void *context, unsigned short state) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1073 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1074 | struct check *check = context; |
| 1075 | |
| 1076 | if (check->type == PR_O2_EXT_CHK) |
| 1077 | return process_chk_proc(t, context, state); |
| 1078 | return process_chk_conn(t, context, state); |
| 1079 | |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1080 | } |
| 1081 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1082 | |
| 1083 | static int start_check_task(struct check *check, int mininter, |
| 1084 | int nbcheck, int srvpos) |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1085 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1086 | struct task *t; |
| 1087 | unsigned long thread_mask = MAX_THREADS_MASK; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1088 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1089 | if (check->type == PR_O2_EXT_CHK) |
| 1090 | thread_mask = 1; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1091 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1092 | /* task for the check */ |
| 1093 | if ((t = task_new(thread_mask)) == NULL) { |
| 1094 | ha_alert("Starting [%s:%s] check: out of memory.\n", |
| 1095 | check->server->proxy->id, check->server->id); |
| 1096 | return 0; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1097 | } |
| 1098 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1099 | check->task = t; |
| 1100 | t->process = process_chk; |
| 1101 | t->context = check; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1102 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1103 | if (mininter < srv_getinter(check)) |
| 1104 | mininter = srv_getinter(check); |
| 1105 | |
| 1106 | if (global.max_spread_checks && mininter > global.max_spread_checks) |
| 1107 | mininter = global.max_spread_checks; |
| 1108 | |
| 1109 | /* check this every ms */ |
| 1110 | t->expire = tick_add(now_ms, MS_TO_TICKS(mininter * srvpos / nbcheck)); |
| 1111 | check->start = now; |
| 1112 | task_queue(t); |
| 1113 | |
| 1114 | return 1; |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 1115 | } |
| 1116 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1117 | /* updates the server's weight during a warmup stage. Once the final weight is |
| 1118 | * reached, the task automatically stops. Note that any server status change |
| 1119 | * must have updated s->last_change accordingly. |
| 1120 | */ |
| 1121 | static struct task *server_warmup(struct task *t, void *context, unsigned short state) |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1122 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1123 | struct server *s = context; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1124 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1125 | /* by default, plan on stopping the task */ |
| 1126 | t->expire = TICK_ETERNITY; |
| 1127 | if ((s->next_admin & SRV_ADMF_MAINT) || |
| 1128 | (s->next_state != SRV_ST_STARTING)) |
| 1129 | return t; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1130 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1131 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1132 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1133 | /* recalculate the weights and update the state */ |
| 1134 | server_recalc_eweight(s, 1); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1135 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1136 | /* probably that we can refill this server with a bit more connections */ |
| 1137 | pendconn_grab_from_px(s); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1138 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1139 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1140 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1141 | /* get back there in 1 second or 1/20th of the slowstart interval, |
| 1142 | * whichever is greater, resulting in small 5% steps. |
| 1143 | */ |
| 1144 | if (s->next_state == SRV_ST_STARTING) |
| 1145 | t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))); |
| 1146 | return t; |
| 1147 | } |
| 1148 | |
| 1149 | /* |
| 1150 | * Start health-check. |
| 1151 | * Returns 0 if OK, ERR_FATAL on error, and prints the error in this case. |
| 1152 | */ |
| 1153 | static int start_checks() |
| 1154 | { |
| 1155 | |
| 1156 | struct proxy *px; |
| 1157 | struct server *s; |
| 1158 | struct task *t; |
| 1159 | int nbcheck=0, mininter=0, srvpos=0; |
| 1160 | |
| 1161 | /* 0- init the dummy frontend used to create all checks sessions */ |
| 1162 | init_new_proxy(&checks_fe); |
Christopher Faulet | 644cf33 | 2021-04-16 10:49:07 +0200 | [diff] [blame] | 1163 | checks_fe.id = strdup("CHECKS-FE"); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1164 | checks_fe.cap = PR_CAP_FE | PR_CAP_BE; |
| 1165 | checks_fe.mode = PR_MODE_TCP; |
| 1166 | checks_fe.maxconn = 0; |
| 1167 | checks_fe.conn_retries = CONN_RETRIES; |
| 1168 | checks_fe.options2 |= PR_O2_INDEPSTR | PR_O2_SMARTCON | PR_O2_SMARTACC; |
| 1169 | checks_fe.timeout.client = TICK_ETERNITY; |
| 1170 | |
| 1171 | /* 1- count the checkers to run simultaneously. |
| 1172 | * We also determine the minimum interval among all of those which |
| 1173 | * have an interval larger than SRV_CHK_INTER_THRES. This interval |
| 1174 | * will be used to spread their start-up date. Those which have |
| 1175 | * a shorter interval will start independently and will not dictate |
| 1176 | * too short an interval for all others. |
| 1177 | */ |
| 1178 | for (px = proxies_list; px; px = px->next) { |
| 1179 | for (s = px->srv; s; s = s->next) { |
| 1180 | if (s->slowstart) { |
| 1181 | if ((t = task_new(MAX_THREADS_MASK)) == NULL) { |
| 1182 | ha_alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id); |
| 1183 | return ERR_ALERT | ERR_FATAL; |
| 1184 | } |
| 1185 | /* We need a warmup task that will be called when the server |
| 1186 | * state switches from down to up. |
| 1187 | */ |
| 1188 | s->warmup = t; |
| 1189 | t->process = server_warmup; |
| 1190 | t->context = s; |
| 1191 | /* server can be in this state only because of */ |
| 1192 | if (s->next_state == SRV_ST_STARTING) |
| 1193 | task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, (now.tv_sec - s->last_change)) / 20))); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1194 | } |
| 1195 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1196 | if (s->check.state & CHK_ST_CONFIGURED) { |
| 1197 | nbcheck++; |
| 1198 | if ((srv_getinter(&s->check) >= SRV_CHK_INTER_THRES) && |
| 1199 | (!mininter || mininter > srv_getinter(&s->check))) |
| 1200 | mininter = srv_getinter(&s->check); |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1201 | } |
| 1202 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1203 | if (s->agent.state & CHK_ST_CONFIGURED) { |
| 1204 | nbcheck++; |
| 1205 | if ((srv_getinter(&s->agent) >= SRV_CHK_INTER_THRES) && |
| 1206 | (!mininter || mininter > srv_getinter(&s->agent))) |
| 1207 | mininter = srv_getinter(&s->agent); |
| 1208 | } |
Christopher Faulet | 5c28874 | 2020-03-31 08:15:58 +0200 | [diff] [blame] | 1209 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1210 | } |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1211 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1212 | if (!nbcheck) |
| 1213 | return 0; |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1214 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1215 | srand((unsigned)time(NULL)); |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1216 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1217 | /* |
| 1218 | * 2- start them as far as possible from each others. For this, we will |
| 1219 | * start them after their interval set to the min interval divided by |
| 1220 | * the number of servers, weighted by the server's position in the list. |
| 1221 | */ |
| 1222 | for (px = proxies_list; px; px = px->next) { |
| 1223 | if ((px->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 1224 | if (init_pid_list()) { |
| 1225 | ha_alert("Starting [%s] check: out of memory.\n", px->id); |
| 1226 | return ERR_ALERT | ERR_FATAL; |
| 1227 | } |
| 1228 | } |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1229 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1230 | for (s = px->srv; s; s = s->next) { |
| 1231 | /* A task for the main check */ |
| 1232 | if (s->check.state & CHK_ST_CONFIGURED) { |
| 1233 | if (s->check.type == PR_O2_EXT_CHK) { |
| 1234 | if (!prepare_external_check(&s->check)) |
| 1235 | return ERR_ALERT | ERR_FATAL; |
Christopher Faulet | b7d3009 | 2020-03-30 15:19:03 +0200 | [diff] [blame] | 1236 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1237 | if (!start_check_task(&s->check, mininter, nbcheck, srvpos)) |
| 1238 | return ERR_ALERT | ERR_FATAL; |
| 1239 | srvpos++; |
Christopher Faulet | 9857232 | 2020-03-30 13:16:44 +0200 | [diff] [blame] | 1240 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1241 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1242 | /* A task for a auxiliary agent check */ |
| 1243 | if (s->agent.state & CHK_ST_CONFIGURED) { |
| 1244 | if (!start_check_task(&s->agent, mininter, nbcheck, srvpos)) { |
| 1245 | return ERR_ALERT | ERR_FATAL; |
| 1246 | } |
| 1247 | srvpos++; |
| 1248 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1249 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1250 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1251 | return 0; |
| 1252 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1253 | |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1254 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1255 | /* |
| 1256 | * Return value: |
| 1257 | * the port to be used for the health check |
| 1258 | * 0 in case no port could be found for the check |
| 1259 | */ |
| 1260 | static int srv_check_healthcheck_port(struct check *chk) |
| 1261 | { |
| 1262 | int i = 0; |
| 1263 | struct server *srv = NULL; |
| 1264 | |
| 1265 | srv = chk->server; |
| 1266 | |
| 1267 | /* by default, we use the health check port ocnfigured */ |
| 1268 | if (chk->port > 0) |
| 1269 | return chk->port; |
| 1270 | |
| 1271 | /* try to get the port from check_core.addr if check.port not set */ |
| 1272 | i = get_host_port(&chk->addr); |
| 1273 | if (i > 0) |
| 1274 | return i; |
| 1275 | |
| 1276 | /* try to get the port from server address */ |
| 1277 | /* prevent MAPPORTS from working at this point, since checks could |
| 1278 | * not be performed in such case (MAPPORTS impose a relative ports |
| 1279 | * based on live traffic) |
| 1280 | */ |
| 1281 | if (srv->flags & SRV_F_MAPPORTS) |
| 1282 | return 0; |
| 1283 | |
| 1284 | i = srv->svc_port; /* by default */ |
| 1285 | if (i > 0) |
| 1286 | return i; |
| 1287 | |
| 1288 | return 0; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1289 | } |
| 1290 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1291 | /* Initializes an health-check attached to the server <srv>. Non-zero is returned |
| 1292 | * if an error occurred. |
| 1293 | */ |
| 1294 | static int init_srv_check(struct server *srv) |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1295 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1296 | const char *err; |
| 1297 | struct tcpcheck_rule *r; |
| 1298 | int ret = 0; |
Amaury Denoyelle | a940bcb | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1299 | int check_type; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1300 | |
Christopher Faulet | 0a5e713 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 1301 | if (!srv->do_check || !(srv->proxy->cap & PR_CAP_BE)) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1302 | goto out; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1303 | |
Amaury Denoyelle | a940bcb | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1304 | check_type = srv->check.tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK; |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1305 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1306 | /* If neither a port nor an addr was specified and no check transport |
| 1307 | * layer is forced, then the transport layer used by the checks is the |
| 1308 | * same as for the production traffic. Otherwise we use raw_sock by |
| 1309 | * default, unless one is specified. |
| 1310 | */ |
| 1311 | if (!srv->check.port && !is_addr(&srv->check.addr)) { |
| 1312 | if (!srv->check.use_ssl && srv->use_ssl != -1) { |
| 1313 | srv->check.use_ssl = srv->use_ssl; |
| 1314 | srv->check.xprt = srv->xprt; |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1315 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1316 | else if (srv->check.use_ssl == 1) |
| 1317 | srv->check.xprt = xprt_get(XPRT_SSL); |
| 1318 | srv->check.send_proxy |= (srv->pp_opts); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1319 | } |
Christopher Faulet | 66163ec | 2020-05-20 22:36:24 +0200 | [diff] [blame] | 1320 | else if (srv->check.use_ssl == 1) |
| 1321 | srv->check.xprt = xprt_get(XPRT_SSL); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1322 | |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1323 | /* Inherit the mux protocol from the server if not already defined for |
| 1324 | * the check |
| 1325 | */ |
Amaury Denoyelle | a940bcb | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1326 | if (srv->mux_proto && !srv->check.mux_proto && |
| 1327 | ((srv->mux_proto->mode == PROTO_MODE_HTTP && check_type == TCPCHK_RULES_HTTP_CHK) || |
| 1328 | (srv->mux_proto->mode == PROTO_MODE_TCP && check_type != TCPCHK_RULES_HTTP_CHK))) { |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1329 | srv->check.mux_proto = srv->mux_proto; |
Amaury Denoyelle | a940bcb | 2020-11-13 12:34:56 +0100 | [diff] [blame] | 1330 | } |
Amaury Denoyelle | 92c8ac1 | 2020-11-13 12:34:57 +0100 | [diff] [blame] | 1331 | /* test that check proto is valid if explicitly defined */ |
| 1332 | else if (srv->check.mux_proto && |
| 1333 | ((srv->check.mux_proto->mode == PROTO_MODE_HTTP && check_type != TCPCHK_RULES_HTTP_CHK) || |
| 1334 | (srv->check.mux_proto->mode == PROTO_MODE_TCP && check_type == TCPCHK_RULES_HTTP_CHK))) { |
| 1335 | ha_alert("config: %s '%s': server '%s' uses an incompatible MUX protocol for the selected check type\n", |
| 1336 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1337 | ret |= ERR_ALERT | ERR_FATAL; |
| 1338 | goto out; |
| 1339 | } |
Christopher Faulet | 12882cf | 2020-04-23 15:50:18 +0200 | [diff] [blame] | 1340 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1341 | /* validate <srv> server health-check settings */ |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1342 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1343 | /* We need at least a service port, a check port or the first tcp-check |
| 1344 | * rule must be a 'connect' one when checking an IPv4/IPv6 server. |
| 1345 | */ |
| 1346 | if ((srv_check_healthcheck_port(&srv->check) != 0) || |
| 1347 | (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr)))) |
| 1348 | goto init; |
Christopher Faulet | f50f4e9 | 2020-03-30 19:52:29 +0200 | [diff] [blame] | 1349 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1350 | if (!srv->proxy->tcpcheck_rules.list || LIST_ISEMPTY(srv->proxy->tcpcheck_rules.list)) { |
| 1351 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port.\n", |
| 1352 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1353 | ret |= ERR_ALERT | ERR_ABORT; |
| 1354 | goto out; |
| 1355 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1356 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1357 | /* search the first action (connect / send / expect) in the list */ |
| 1358 | r = get_first_tcpcheck_rule(&srv->proxy->tcpcheck_rules); |
| 1359 | if (!r || (r->action != TCPCHK_ACT_CONNECT) || (!r->connect.port && !get_host_port(&r->connect.addr))) { |
| 1360 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port " |
| 1361 | "nor tcp_check rule 'connect' with port information.\n", |
| 1362 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1363 | ret |= ERR_ALERT | ERR_ABORT; |
| 1364 | goto out; |
| 1365 | } |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1366 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1367 | /* scan the tcp-check ruleset to ensure a port has been configured */ |
| 1368 | list_for_each_entry(r, srv->proxy->tcpcheck_rules.list, list) { |
| 1369 | if ((r->action == TCPCHK_ACT_CONNECT) && (!r->connect.port || !get_host_port(&r->connect.addr))) { |
| 1370 | ha_alert("config: %s '%s': server '%s' has neither service port nor check port, " |
| 1371 | "and a tcp_check rule 'connect' with no port information.\n", |
| 1372 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1373 | ret |= ERR_ALERT | ERR_ABORT; |
| 1374 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1375 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1376 | } |
| 1377 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1378 | init: |
| 1379 | if (!(srv->proxy->options2 & PR_O2_CHK_ANY)) { |
| 1380 | struct tcpcheck_ruleset *rs = NULL; |
| 1381 | struct tcpcheck_rules *rules = &srv->proxy->tcpcheck_rules; |
| 1382 | //char *errmsg = NULL; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1383 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1384 | srv->proxy->options2 &= ~PR_O2_CHK_ANY; |
| 1385 | srv->proxy->options2 |= PR_O2_TCPCHK_CHK; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1386 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1387 | rs = find_tcpcheck_ruleset("*tcp-check"); |
| 1388 | if (!rs) { |
| 1389 | rs = create_tcpcheck_ruleset("*tcp-check"); |
| 1390 | if (rs == NULL) { |
| 1391 | ha_alert("config: %s '%s': out of memory.\n", |
| 1392 | proxy_type_str(srv->proxy), srv->proxy->id); |
| 1393 | ret |= ERR_ALERT | ERR_FATAL; |
| 1394 | goto out; |
| 1395 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1396 | } |
| 1397 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1398 | free_tcpcheck_vars(&rules->preset_vars); |
| 1399 | rules->list = &rs->rules; |
| 1400 | rules->flags = 0; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1401 | } |
| 1402 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1403 | err = init_check(&srv->check, srv->proxy->options2 & PR_O2_CHK_ANY); |
| 1404 | if (err) { |
| 1405 | ha_alert("config: %s '%s': unable to init check for server '%s' (%s).\n", |
| 1406 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 1407 | ret |= ERR_ALERT | ERR_ABORT; |
| 1408 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1409 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1410 | srv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED; |
| 1411 | global.maxsock++; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1412 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1413 | out: |
| 1414 | return ret; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1415 | } |
| 1416 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1417 | /* Initializes an agent-check attached to the server <srv>. Non-zero is returned |
| 1418 | * if an error occurred. |
| 1419 | */ |
| 1420 | static int init_srv_agent_check(struct server *srv) |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1421 | { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1422 | struct tcpcheck_rule *chk; |
| 1423 | const char *err; |
| 1424 | int ret = 0; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1425 | |
Christopher Faulet | 0a5e713 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 1426 | if (!srv->do_agent || !(srv->proxy->cap & PR_CAP_BE)) |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1427 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1428 | |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1429 | /* If there is no connect rule preceding all send / expect rules, an |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1430 | * implicit one is inserted before all others. |
| 1431 | */ |
| 1432 | chk = get_first_tcpcheck_rule(srv->agent.tcpcheck_rules); |
| 1433 | if (!chk || chk->action != TCPCHK_ACT_CONNECT) { |
| 1434 | chk = calloc(1, sizeof(*chk)); |
| 1435 | if (!chk) { |
| 1436 | ha_alert("config : %s '%s': unable to add implicit tcp-check connect rule" |
| 1437 | " to agent-check for server '%s' (out of memory).\n", |
| 1438 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id); |
| 1439 | ret |= ERR_ALERT | ERR_FATAL; |
| 1440 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1441 | } |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1442 | chk->action = TCPCHK_ACT_CONNECT; |
| 1443 | chk->connect.options = (TCPCHK_OPT_DEFAULT_CONNECT|TCPCHK_OPT_IMPLICIT); |
| 1444 | LIST_ADD(srv->agent.tcpcheck_rules->list, &chk->list); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1445 | } |
| 1446 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1447 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1448 | err = init_check(&srv->agent, PR_O2_TCPCHK_CHK); |
| 1449 | if (err) { |
| 1450 | ha_alert("config: %s '%s': unable to init agent-check for server '%s' (%s).\n", |
| 1451 | proxy_type_str(srv->proxy), srv->proxy->id, srv->id, err); |
| 1452 | ret |= ERR_ALERT | ERR_ABORT; |
| 1453 | goto out; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1454 | } |
| 1455 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1456 | if (!srv->agent.inter) |
| 1457 | srv->agent.inter = srv->check.inter; |
| 1458 | |
| 1459 | srv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT; |
| 1460 | global.maxsock++; |
| 1461 | |
| 1462 | out: |
| 1463 | return ret; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1464 | } |
| 1465 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1466 | static void deinit_srv_check(struct server *srv) |
| 1467 | { |
| 1468 | if (srv->check.state & CHK_ST_CONFIGURED) |
| 1469 | free_check(&srv->check); |
| 1470 | srv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED; |
| 1471 | srv->do_check = 0; |
| 1472 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1473 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1474 | |
| 1475 | static void deinit_srv_agent_check(struct server *srv) |
| 1476 | { |
| 1477 | if (srv->agent.tcpcheck_rules) { |
| 1478 | free_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars); |
| 1479 | free(srv->agent.tcpcheck_rules); |
| 1480 | srv->agent.tcpcheck_rules = NULL; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1481 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1482 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1483 | if (srv->agent.state & CHK_ST_CONFIGURED) |
| 1484 | free_check(&srv->agent); |
| 1485 | |
| 1486 | srv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT; |
| 1487 | srv->do_agent = 0; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1488 | } |
| 1489 | |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1490 | REGISTER_POST_SERVER_CHECK(init_srv_check); |
| 1491 | REGISTER_POST_SERVER_CHECK(init_srv_agent_check); |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1492 | REGISTER_POST_CHECK(start_checks); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1493 | |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 1494 | REGISTER_SERVER_DEINIT(deinit_srv_check); |
| 1495 | REGISTER_SERVER_DEINIT(deinit_srv_agent_check); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1496 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1497 | |
| 1498 | /**************************************************************************/ |
| 1499 | /************************** Check sample fetches **************************/ |
| 1500 | /**************************************************************************/ |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 1501 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1502 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1503 | { /* END */ }, |
| 1504 | }}; |
| 1505 | |
| 1506 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 1507 | |
| 1508 | |
| 1509 | /**************************************************************************/ |
| 1510 | /************************ Check's parsing functions ***********************/ |
| 1511 | /**************************************************************************/ |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1512 | /* Parses the "http-check" proxy keyword */ |
| 1513 | static int proxy_parse_httpcheck(char **args, int section, struct proxy *curpx, |
| 1514 | struct proxy *defpx, const char *file, int line, |
| 1515 | char **errmsg) |
| 1516 | { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1517 | struct tcpcheck_ruleset *rs = NULL; |
| 1518 | struct tcpcheck_rule *chk = NULL; |
| 1519 | int index, cur_arg, ret = 0; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1520 | |
| 1521 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[0], NULL)) |
| 1522 | ret = 1; |
| 1523 | |
| 1524 | cur_arg = 1; |
| 1525 | if (strcmp(args[cur_arg], "disable-on-404") == 0) { |
| 1526 | /* enable a graceful server shutdown on an HTTP 404 response */ |
| 1527 | curpx->options |= PR_O_DISABLE404; |
| 1528 | if (too_many_args(1, args, errmsg, NULL)) |
| 1529 | goto error; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1530 | goto out; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1531 | } |
| 1532 | else if (strcmp(args[cur_arg], "send-state") == 0) { |
| 1533 | /* enable emission of the apparent state of a server in HTTP checks */ |
| 1534 | curpx->options2 |= PR_O2_CHK_SNDST; |
| 1535 | if (too_many_args(1, args, errmsg, NULL)) |
| 1536 | goto error; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1537 | goto out; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1538 | } |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1539 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1540 | /* Deduce the ruleset name from the proxy info */ |
| 1541 | chunk_printf(&trash, "*http-check-%s_%s-%d", |
| 1542 | ((curpx == defpx) ? "defaults" : curpx->id), |
| 1543 | curpx->conf.file, curpx->conf.line); |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1544 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1545 | rs = find_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1546 | if (rs == NULL) { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1547 | rs = create_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1548 | if (rs == NULL) { |
| 1549 | memprintf(errmsg, "out of memory.\n"); |
| 1550 | goto error; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1551 | } |
| 1552 | } |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1553 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1554 | index = 0; |
| 1555 | if (!LIST_ISEMPTY(&rs->rules)) { |
| 1556 | chk = LIST_PREV(&rs->rules, typeof(chk), list); |
| 1557 | if (chk->action != TCPCHK_ACT_SEND || !(chk->send.http.flags & TCPCHK_SND_HTTP_FROM_OPT)) |
| 1558 | index = chk->index + 1; |
Christopher Faulet | 37e583d | 2021-03-12 12:00:14 +0100 | [diff] [blame] | 1559 | chk = NULL; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1560 | } |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1561 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1562 | if (strcmp(args[cur_arg], "connect") == 0) |
| 1563 | chk = parse_tcpcheck_connect(args, cur_arg, curpx, &rs->rules, file, line, errmsg); |
| 1564 | else if (strcmp(args[cur_arg], "send") == 0) |
| 1565 | chk = parse_tcpcheck_send_http(args, cur_arg, curpx, &rs->rules, file, line, errmsg); |
| 1566 | else if (strcmp(args[cur_arg], "expect") == 0) |
| 1567 | chk = parse_tcpcheck_expect(args, cur_arg, curpx, &rs->rules, TCPCHK_RULES_HTTP_CHK, |
| 1568 | file, line, errmsg); |
| 1569 | else if (strcmp(args[cur_arg], "comment") == 0) |
| 1570 | chk = parse_tcpcheck_comment(args, cur_arg, curpx, &rs->rules, file, line, errmsg); |
| 1571 | else { |
| 1572 | struct action_kw *kw = action_kw_tcp_check_lookup(args[cur_arg]); |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1573 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1574 | if (!kw) { |
| 1575 | action_kw_tcp_check_build_list(&trash); |
| 1576 | memprintf(errmsg, "'%s' only supports 'disable-on-404', 'send-state', 'comment', 'connect'," |
| 1577 | " 'send', 'expect'%s%s. but got '%s'", |
| 1578 | args[0], (*trash.area ? ", " : ""), trash.area, args[1]); |
| 1579 | goto error; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1580 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1581 | chk = parse_tcpcheck_action(args, cur_arg, curpx, &rs->rules, kw, file, line, errmsg); |
| 1582 | } |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1583 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1584 | if (!chk) { |
| 1585 | memprintf(errmsg, "'%s %s' : %s.", args[0], args[1], *errmsg); |
| 1586 | goto error; |
| 1587 | } |
| 1588 | ret = (*errmsg != NULL); /* Handle warning */ |
| 1589 | |
| 1590 | chk->index = index; |
| 1591 | if ((curpx->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK && |
| 1592 | (curpx->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) { |
| 1593 | /* Use this ruleset if the proxy already has http-check enabled */ |
| 1594 | curpx->tcpcheck_rules.list = &rs->rules; |
| 1595 | curpx->tcpcheck_rules.flags &= ~TCPCHK_RULES_UNUSED_HTTP_RS; |
| 1596 | if (!tcpcheck_add_http_rule(chk, &curpx->tcpcheck_rules, errmsg)) { |
| 1597 | memprintf(errmsg, "'%s %s' : %s.", args[0], args[1], *errmsg); |
| 1598 | curpx->tcpcheck_rules.list = NULL; |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1599 | goto error; |
| 1600 | } |
| 1601 | } |
| 1602 | else { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1603 | /* mark this ruleset as unused for now */ |
| 1604 | curpx->tcpcheck_rules.flags |= TCPCHK_RULES_UNUSED_HTTP_RS; |
| 1605 | LIST_ADDQ(&rs->rules, &chk->list); |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1606 | } |
| 1607 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1608 | out: |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1609 | return ret; |
| 1610 | |
| 1611 | error: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1612 | free_tcpcheck(chk, 0); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1613 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 51b129f | 2020-04-09 15:54:18 +0200 | [diff] [blame] | 1614 | return -1; |
| 1615 | } |
| 1616 | |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1617 | /* Parses the "option tcp-check" proxy keyword */ |
| 1618 | int proxy_parse_tcp_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 1619 | const char *file, int line) |
| 1620 | { |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1621 | struct tcpcheck_ruleset *rs = NULL; |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1622 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 1623 | int err_code = 0; |
| 1624 | |
| 1625 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 1626 | err_code |= ERR_WARN; |
| 1627 | |
| 1628 | if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code)) |
| 1629 | goto out; |
| 1630 | |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1631 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 1632 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 1633 | |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 1634 | if ((rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_TCP_CHK) { |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1635 | /* If a tcp-check rulesset is already set, do nothing */ |
| 1636 | if (rules->list) |
| 1637 | goto out; |
| 1638 | |
| 1639 | /* If a tcp-check ruleset is waiting to be used for the current proxy, |
| 1640 | * get it. |
| 1641 | */ |
| 1642 | if (rules->flags & TCPCHK_RULES_UNUSED_TCP_RS) |
| 1643 | goto curpx_ruleset; |
| 1644 | |
| 1645 | /* Otherwise, try to get the tcp-check ruleset of the default proxy */ |
| 1646 | chunk_printf(&trash, "*tcp-check-defaults_%s-%d", defpx->conf.file, defpx->conf.line); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1647 | rs = find_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1648 | if (rs) |
| 1649 | goto ruleset_found; |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1650 | } |
| 1651 | |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1652 | curpx_ruleset: |
| 1653 | /* Deduce the ruleset name from the proxy info */ |
| 1654 | chunk_printf(&trash, "*tcp-check-%s_%s-%d", |
| 1655 | ((curpx == defpx) ? "defaults" : curpx->id), |
| 1656 | curpx->conf.file, curpx->conf.line); |
| 1657 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1658 | rs = find_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1659 | if (rs == NULL) { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1660 | rs = create_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1661 | if (rs == NULL) { |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1662 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 1663 | goto error; |
| 1664 | } |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1665 | } |
| 1666 | |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1667 | ruleset_found: |
| 1668 | free_tcpcheck_vars(&rules->preset_vars); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1669 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 1670 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | d7e6396 | 2020-04-17 20:15:59 +0200 | [diff] [blame] | 1671 | rules->flags |= TCPCHK_RULES_TCP_CHK; |
Christopher Faulet | 430e480 | 2020-04-09 15:28:16 +0200 | [diff] [blame] | 1672 | |
| 1673 | out: |
| 1674 | return err_code; |
| 1675 | |
| 1676 | error: |
| 1677 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1678 | goto out; |
| 1679 | } |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1680 | |
| 1681 | /* Parses the "option redis-check" proxy keyword */ |
| 1682 | int proxy_parse_redis_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 1683 | const char *file, int line) |
| 1684 | { |
| 1685 | static char *redis_req = "*1\r\n$4\r\nPING\r\n"; |
| 1686 | static char *redis_res = "+PONG\r\n"; |
| 1687 | |
| 1688 | struct tcpcheck_ruleset *rs = NULL; |
| 1689 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 1690 | struct tcpcheck_rule *chk; |
| 1691 | char *errmsg = NULL; |
| 1692 | int err_code = 0; |
| 1693 | |
| 1694 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 1695 | err_code |= ERR_WARN; |
| 1696 | |
| 1697 | if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code)) |
| 1698 | goto out; |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1699 | |
| 1700 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 1701 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 1702 | |
| 1703 | free_tcpcheck_vars(&rules->preset_vars); |
| 1704 | rules->list = NULL; |
| 1705 | rules->flags = 0; |
| 1706 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1707 | rs = find_tcpcheck_ruleset("*redis-check"); |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1708 | if (rs) |
| 1709 | goto ruleset_found; |
| 1710 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1711 | rs = create_tcpcheck_ruleset("*redis-check"); |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1712 | if (rs == NULL) { |
| 1713 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 1714 | goto error; |
| 1715 | } |
| 1716 | |
| 1717 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send", redis_req, ""}, |
| 1718 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 1719 | if (!chk) { |
| 1720 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1721 | goto error; |
| 1722 | } |
| 1723 | chk->index = 0; |
| 1724 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1725 | |
| 1726 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "string", redis_res, |
| 1727 | "error-status", "L7STS", |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 1728 | "on-error", "%[res.payload(0,0),cut_crlf]", |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1729 | "on-success", "Redis server is ok", |
| 1730 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1731 | 1, curpx, &rs->rules, TCPCHK_RULES_REDIS_CHK, file, line, &errmsg); |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1732 | if (!chk) { |
| 1733 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1734 | goto error; |
| 1735 | } |
| 1736 | chk->index = 1; |
| 1737 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1738 | |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1739 | ruleset_found: |
| 1740 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 1741 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1742 | rules->flags |= TCPCHK_RULES_REDIS_CHK; |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1743 | |
| 1744 | out: |
| 1745 | free(errmsg); |
| 1746 | return err_code; |
| 1747 | |
| 1748 | error: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1749 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 33f05df | 2020-04-01 11:08:50 +0200 | [diff] [blame] | 1750 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1751 | goto out; |
| 1752 | } |
| 1753 | |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1754 | |
| 1755 | /* Parses the "option ssl-hello-chk" proxy keyword */ |
| 1756 | int proxy_parse_ssl_hello_chk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 1757 | const char *file, int line) |
| 1758 | { |
| 1759 | /* This is the SSLv3 CLIENT HELLO packet used in conjunction with the |
| 1760 | * ssl-hello-chk option to ensure that the remote server speaks SSL. |
| 1761 | * |
| 1762 | * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details. |
| 1763 | */ |
| 1764 | static char sslv3_client_hello[] = { |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1765 | "16" /* ContentType : 0x16 = Handshake */ |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1766 | "0300" /* ProtocolVersion : 0x0300 = SSLv3 */ |
| 1767 | "0079" /* ContentLength : 0x79 bytes after this one */ |
| 1768 | "01" /* HanshakeType : 0x01 = CLIENT HELLO */ |
| 1769 | "000075" /* HandshakeLength : 0x75 bytes after this one */ |
| 1770 | "0300" /* Hello Version : 0x0300 = v3 */ |
| 1771 | "%[date(),htonl,hex]" /* Unix GMT Time (s) : filled with <now> (@0x0B) */ |
| 1772 | "%[str(HAPROXYSSLCHK\nHAPROXYSSLCHK\n),hex]" /* Random : must be exactly 28 bytes */ |
| 1773 | "00" /* Session ID length : empty (no session ID) */ |
| 1774 | "004E" /* Cipher Suite Length : 78 bytes after this one */ |
| 1775 | "0001" "0002" "0003" "0004" /* 39 most common ciphers : */ |
| 1776 | "0005" "0006" "0007" "0008" /* 0x01...0x1B, 0x2F...0x3A */ |
| 1777 | "0009" "000A" "000B" "000C" /* This covers RSA/DH, */ |
| 1778 | "000D" "000E" "000F" "0010" /* various bit lengths, */ |
| 1779 | "0011" "0012" "0013" "0014" /* SHA1/MD5, DES/3DES/AES... */ |
| 1780 | "0015" "0016" "0017" "0018" |
| 1781 | "0019" "001A" "001B" "002F" |
| 1782 | "0030" "0031" "0032" "0033" |
| 1783 | "0034" "0035" "0036" "0037" |
| 1784 | "0038" "0039" "003A" |
| 1785 | "01" /* Compression Length : 0x01 = 1 byte for types */ |
| 1786 | "00" /* Compression Type : 0x00 = NULL compression */ |
| 1787 | }; |
| 1788 | |
| 1789 | struct tcpcheck_ruleset *rs = NULL; |
| 1790 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 1791 | struct tcpcheck_rule *chk; |
| 1792 | char *errmsg = NULL; |
| 1793 | int err_code = 0; |
| 1794 | |
| 1795 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 1796 | err_code |= ERR_WARN; |
| 1797 | |
| 1798 | if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code)) |
| 1799 | goto out; |
| 1800 | |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1801 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 1802 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 1803 | |
| 1804 | free_tcpcheck_vars(&rules->preset_vars); |
| 1805 | rules->list = NULL; |
| 1806 | rules->flags = 0; |
| 1807 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1808 | rs = find_tcpcheck_ruleset("*ssl-hello-check"); |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1809 | if (rs) |
| 1810 | goto ruleset_found; |
| 1811 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1812 | rs = create_tcpcheck_ruleset("*ssl-hello-check"); |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1813 | if (rs == NULL) { |
| 1814 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 1815 | goto error; |
| 1816 | } |
| 1817 | |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 1818 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", sslv3_client_hello, ""}, |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1819 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 1820 | if (!chk) { |
| 1821 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1822 | goto error; |
| 1823 | } |
| 1824 | chk->index = 0; |
| 1825 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1826 | |
| 1827 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^1[56]", |
Christopher Faulet | ec07e38 | 2020-04-07 14:56:26 +0200 | [diff] [blame] | 1828 | "min-recv", "5", "ok-status", "L6OK", |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1829 | "error-status", "L6RSP", "tout-status", "L6TOUT", |
| 1830 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1831 | 1, curpx, &rs->rules, TCPCHK_RULES_SSL3_CHK, file, line, &errmsg); |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1832 | if (!chk) { |
| 1833 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1834 | goto error; |
| 1835 | } |
| 1836 | chk->index = 1; |
| 1837 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1838 | |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1839 | ruleset_found: |
| 1840 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 1841 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1842 | rules->flags |= TCPCHK_RULES_SSL3_CHK; |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1843 | |
| 1844 | out: |
| 1845 | free(errmsg); |
| 1846 | return err_code; |
| 1847 | |
| 1848 | error: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1849 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1850 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1851 | goto out; |
| 1852 | } |
| 1853 | |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1854 | /* Parses the "option smtpchk" proxy keyword */ |
| 1855 | int proxy_parse_smtpchk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 1856 | const char *file, int line) |
| 1857 | { |
| 1858 | static char *smtp_req = "%[var(check.smtp_cmd)]\r\n"; |
| 1859 | |
| 1860 | struct tcpcheck_ruleset *rs = NULL; |
| 1861 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 1862 | struct tcpcheck_rule *chk; |
| 1863 | struct tcpcheck_var *var = NULL; |
| 1864 | char *cmd = NULL, *errmsg = NULL; |
| 1865 | int err_code = 0; |
| 1866 | |
| 1867 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 1868 | err_code |= ERR_WARN; |
| 1869 | |
| 1870 | if (alertif_too_many_args_idx(2, 1, file, line, args, &err_code)) |
| 1871 | goto out; |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1872 | |
| 1873 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 1874 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 1875 | |
| 1876 | free_tcpcheck_vars(&rules->preset_vars); |
| 1877 | rules->list = NULL; |
| 1878 | rules->flags = 0; |
| 1879 | |
| 1880 | cur_arg += 2; |
| 1881 | if (*args[cur_arg] && *args[cur_arg+1] && |
| 1882 | (strcmp(args[cur_arg], "EHLO") == 0 || strcmp(args[cur_arg], "HELO") == 0)) { |
Tim Duesterhus | 2867b40 | 2020-06-12 15:58:48 +0200 | [diff] [blame] | 1883 | /* <EHLO|HELO> + space (1) + <host> + null byte (1) */ |
| 1884 | cmd = calloc(strlen(args[cur_arg]) + 1 + strlen(args[cur_arg+1]) + 1, sizeof(*cmd)); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1885 | if (cmd) |
| 1886 | sprintf(cmd, "%s %s", args[cur_arg], args[cur_arg+1]); |
| 1887 | } |
| 1888 | else { |
| 1889 | /* this just hits the default for now, but you could potentially expand it to allow for other stuff |
| 1890 | though, it's unlikely you'd want to send anything other than an EHLO or HELO */ |
| 1891 | cmd = strdup("HELO localhost"); |
| 1892 | } |
| 1893 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 1894 | var = create_tcpcheck_var(ist("check.smtp_cmd")); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1895 | if (cmd == NULL || var == NULL) { |
| 1896 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 1897 | goto error; |
| 1898 | } |
| 1899 | var->data.type = SMP_T_STR; |
| 1900 | var->data.u.str.area = cmd; |
| 1901 | var->data.u.str.data = strlen(cmd); |
| 1902 | LIST_INIT(&var->list); |
| 1903 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 1904 | cmd = NULL; |
| 1905 | var = NULL; |
| 1906 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1907 | rs = find_tcpcheck_ruleset("*smtp-check"); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1908 | if (rs) |
| 1909 | goto ruleset_found; |
| 1910 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1911 | rs = create_tcpcheck_ruleset("*smtp-check"); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1912 | if (rs == NULL) { |
| 1913 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 1914 | goto error; |
| 1915 | } |
| 1916 | |
| 1917 | chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""}, |
| 1918 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 1919 | if (!chk) { |
| 1920 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1921 | goto error; |
| 1922 | } |
| 1923 | chk->index = 0; |
| 1924 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1925 | |
| 1926 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^[0-9]{3}[ \r]", |
| 1927 | "min-recv", "4", |
| 1928 | "error-status", "L7RSP", |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 1929 | "on-error", "%[res.payload(0,0),cut_crlf]", |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1930 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1931 | 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1932 | if (!chk) { |
| 1933 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1934 | goto error; |
| 1935 | } |
| 1936 | chk->index = 1; |
| 1937 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1938 | |
| 1939 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^2[0-9]{2}[ \r]", |
| 1940 | "min-recv", "4", |
| 1941 | "error-status", "L7STS", |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 1942 | "on-error", "%[res.payload(4,0),ltrim(' '),cut_crlf]", |
| 1943 | "status-code", "res.payload(0,3)", |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1944 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1945 | 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1946 | if (!chk) { |
| 1947 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1948 | goto error; |
| 1949 | } |
| 1950 | chk->index = 2; |
| 1951 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1952 | |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 1953 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", smtp_req, ""}, |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1954 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 1955 | if (!chk) { |
| 1956 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1957 | goto error; |
| 1958 | } |
| 1959 | chk->index = 3; |
| 1960 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1961 | |
| 1962 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rstring", "^2[0-9]{2}[- \r]", |
| 1963 | "min-recv", "4", |
| 1964 | "error-status", "L7STS", |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 1965 | "on-error", "%[res.payload(4,0),ltrim(' '),cut_crlf]", |
| 1966 | "on-success", "%[res.payload(4,0),ltrim(' '),cut_crlf]", |
| 1967 | "status-code", "res.payload(0,3)", |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1968 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 1969 | 1, curpx, &rs->rules, TCPCHK_RULES_SMTP_CHK, file, line, &errmsg); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1970 | if (!chk) { |
| 1971 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 1972 | goto error; |
| 1973 | } |
| 1974 | chk->index = 4; |
| 1975 | LIST_ADDQ(&rs->rules, &chk->list); |
| 1976 | |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1977 | ruleset_found: |
| 1978 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 1979 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 1980 | rules->flags |= TCPCHK_RULES_SMTP_CHK; |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1981 | |
| 1982 | out: |
| 1983 | free(errmsg); |
| 1984 | return err_code; |
| 1985 | |
| 1986 | error: |
| 1987 | free(cmd); |
| 1988 | free(var); |
| 1989 | free_tcpcheck_vars(&rules->preset_vars); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 1990 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | fbcc77c | 2020-04-01 20:54:05 +0200 | [diff] [blame] | 1991 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1992 | goto out; |
| 1993 | } |
Christopher Faulet | 811f78c | 2020-04-01 11:10:27 +0200 | [diff] [blame] | 1994 | |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 1995 | /* Parses the "option pgsql-check" proxy keyword */ |
| 1996 | int proxy_parse_pgsql_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 1997 | const char *file, int line) |
| 1998 | { |
| 1999 | static char pgsql_req[] = { |
| 2000 | "%[var(check.plen),htonl,hex]" /* The packet length*/ |
| 2001 | "00030000" /* the version 3.0 */ |
| 2002 | "7573657200" /* "user" key */ |
| 2003 | "%[var(check.username),hex]00" /* the username */ |
| 2004 | "00" |
| 2005 | }; |
| 2006 | |
| 2007 | struct tcpcheck_ruleset *rs = NULL; |
| 2008 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 2009 | struct tcpcheck_rule *chk; |
| 2010 | struct tcpcheck_var *var = NULL; |
| 2011 | char *user = NULL, *errmsg = NULL; |
| 2012 | size_t packetlen = 0; |
| 2013 | int err_code = 0; |
| 2014 | |
| 2015 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 2016 | err_code |= ERR_WARN; |
| 2017 | |
| 2018 | if (alertif_too_many_args_idx(2, 1, file, line, args, &err_code)) |
| 2019 | goto out; |
| 2020 | |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2021 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 2022 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 2023 | |
| 2024 | free_tcpcheck_vars(&rules->preset_vars); |
| 2025 | rules->list = NULL; |
| 2026 | rules->flags = 0; |
| 2027 | |
| 2028 | cur_arg += 2; |
| 2029 | if (!*args[cur_arg] || !*args[cur_arg+1]) { |
| 2030 | ha_alert("parsing [%s:%d] : '%s %s' expects 'user <username>' as argument.\n", |
| 2031 | file, line, args[0], args[1]); |
| 2032 | goto error; |
| 2033 | } |
| 2034 | if (strcmp(args[cur_arg], "user") == 0) { |
| 2035 | packetlen = 15 + strlen(args[cur_arg+1]); |
| 2036 | user = strdup(args[cur_arg+1]); |
| 2037 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2038 | var = create_tcpcheck_var(ist("check.username")); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2039 | if (user == NULL || var == NULL) { |
| 2040 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2041 | goto error; |
| 2042 | } |
| 2043 | var->data.type = SMP_T_STR; |
| 2044 | var->data.u.str.area = user; |
| 2045 | var->data.u.str.data = strlen(user); |
| 2046 | LIST_INIT(&var->list); |
| 2047 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 2048 | user = NULL; |
| 2049 | var = NULL; |
| 2050 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2051 | var = create_tcpcheck_var(ist("check.plen")); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2052 | if (var == NULL) { |
| 2053 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2054 | goto error; |
| 2055 | } |
| 2056 | var->data.type = SMP_T_SINT; |
| 2057 | var->data.u.sint = packetlen; |
| 2058 | LIST_INIT(&var->list); |
| 2059 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 2060 | var = NULL; |
| 2061 | } |
| 2062 | else { |
| 2063 | ha_alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user'.\n", |
| 2064 | file, line, args[0], args[1]); |
| 2065 | goto error; |
| 2066 | } |
| 2067 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2068 | rs = find_tcpcheck_ruleset("*pgsql-check"); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2069 | if (rs) |
| 2070 | goto ruleset_found; |
| 2071 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2072 | rs = create_tcpcheck_ruleset("*pgsql-check"); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2073 | if (rs == NULL) { |
| 2074 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2075 | goto error; |
| 2076 | } |
| 2077 | |
| 2078 | chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""}, |
| 2079 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2080 | if (!chk) { |
| 2081 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2082 | goto error; |
| 2083 | } |
| 2084 | chk->index = 0; |
| 2085 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2086 | |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 2087 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", pgsql_req, ""}, |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2088 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2089 | if (!chk) { |
| 2090 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2091 | goto error; |
| 2092 | } |
| 2093 | chk->index = 1; |
| 2094 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2095 | |
| 2096 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "!rstring", "^E", |
| 2097 | "min-recv", "5", |
| 2098 | "error-status", "L7RSP", |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 2099 | "on-error", "%[res.payload(6,0)]", |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2100 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2101 | 1, curpx, &rs->rules, TCPCHK_RULES_PGSQL_CHK, file, line, &errmsg); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2102 | if (!chk) { |
| 2103 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2104 | goto error; |
| 2105 | } |
| 2106 | chk->index = 2; |
| 2107 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2108 | |
Christopher Faulet | b841c74 | 2020-04-27 18:29:49 +0200 | [diff] [blame] | 2109 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^52000000(08|0A|0C)000000(00|02|03|04|05|06)", |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2110 | "min-recv", "9", |
| 2111 | "error-status", "L7STS", |
| 2112 | "on-success", "PostgreSQL server is ok", |
| 2113 | "on-error", "PostgreSQL unknown error", |
| 2114 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2115 | 1, curpx, &rs->rules, TCPCHK_RULES_PGSQL_CHK, file, line, &errmsg); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2116 | if (!chk) { |
| 2117 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2118 | goto error; |
| 2119 | } |
| 2120 | chk->index = 3; |
| 2121 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2122 | |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2123 | ruleset_found: |
| 2124 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2125 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 2126 | rules->flags |= TCPCHK_RULES_PGSQL_CHK; |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2127 | |
| 2128 | out: |
| 2129 | free(errmsg); |
| 2130 | return err_code; |
| 2131 | |
| 2132 | error: |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2133 | free(user); |
| 2134 | free(var); |
| 2135 | free_tcpcheck_vars(&rules->preset_vars); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2136 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2137 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2138 | goto out; |
| 2139 | } |
| 2140 | |
| 2141 | |
| 2142 | /* Parses the "option mysql-check" proxy keyword */ |
| 2143 | int proxy_parse_mysql_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 2144 | const char *file, int line) |
| 2145 | { |
| 2146 | /* This is an example of a MySQL >=4.0 client Authentication packet kindly provided by Cyril Bonte. |
| 2147 | * const char mysql40_client_auth_pkt[] = { |
| 2148 | * "\x0e\x00\x00" // packet length |
| 2149 | * "\x01" // packet number |
| 2150 | * "\x00\x00" // client capabilities |
| 2151 | * "\x00\x00\x01" // max packet |
| 2152 | * "haproxy\x00" // username (null terminated string) |
| 2153 | * "\x00" // filler (always 0x00) |
| 2154 | * "\x01\x00\x00" // packet length |
| 2155 | * "\x00" // packet number |
| 2156 | * "\x01" // COM_QUIT command |
| 2157 | * }; |
| 2158 | */ |
| 2159 | static char mysql40_rsname[] = "*mysql40-check"; |
| 2160 | static char mysql40_req[] = { |
| 2161 | "%[var(check.header),hex]" /* 3 bytes for the packet length and 1 byte for the sequence ID */ |
| 2162 | "0080" /* client capabilities */ |
| 2163 | "000001" /* max packet */ |
| 2164 | "%[var(check.username),hex]00" /* the username */ |
| 2165 | "00" /* filler (always 0x00) */ |
| 2166 | "010000" /* packet length*/ |
| 2167 | "00" /* sequence ID */ |
| 2168 | "01" /* COM_QUIT command */ |
| 2169 | }; |
| 2170 | |
| 2171 | /* This is an example of a MySQL >=4.1 client Authentication packet provided by Nenad Merdanovic. |
| 2172 | * const char mysql41_client_auth_pkt[] = { |
| 2173 | * "\x0e\x00\x00\" // packet length |
| 2174 | * "\x01" // packet number |
| 2175 | * "\x00\x00\x00\x00" // client capabilities |
| 2176 | * "\x00\x00\x00\x01" // max packet |
| 2177 | * "\x21" // character set (UTF-8) |
| 2178 | * char[23] // All zeroes |
| 2179 | * "haproxy\x00" // username (null terminated string) |
| 2180 | * "\x00" // filler (always 0x00) |
| 2181 | * "\x01\x00\x00" // packet length |
| 2182 | * "\x00" // packet number |
| 2183 | * "\x01" // COM_QUIT command |
| 2184 | * }; |
| 2185 | */ |
| 2186 | static char mysql41_rsname[] = "*mysql41-check"; |
| 2187 | static char mysql41_req[] = { |
| 2188 | "%[var(check.header),hex]" /* 3 bytes for the packet length and 1 byte for the sequence ID */ |
| 2189 | "00820000" /* client capabilities */ |
| 2190 | "00800001" /* max packet */ |
| 2191 | "21" /* character set (UTF-8) */ |
| 2192 | "000000000000000000000000" /* 23 bytes, al zeroes */ |
| 2193 | "0000000000000000000000" |
| 2194 | "%[var(check.username),hex]00" /* the username */ |
| 2195 | "00" /* filler (always 0x00) */ |
| 2196 | "010000" /* packet length*/ |
| 2197 | "00" /* sequence ID */ |
| 2198 | "01" /* COM_QUIT command */ |
| 2199 | }; |
| 2200 | |
| 2201 | struct tcpcheck_ruleset *rs = NULL; |
| 2202 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 2203 | struct tcpcheck_rule *chk; |
| 2204 | struct tcpcheck_var *var = NULL; |
| 2205 | char *mysql_rsname = "*mysql-check"; |
| 2206 | char *mysql_req = NULL, *hdr = NULL, *user = NULL, *errmsg = NULL; |
| 2207 | int index = 0, err_code = 0; |
| 2208 | |
| 2209 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 2210 | err_code |= ERR_WARN; |
| 2211 | |
| 2212 | if (alertif_too_many_args_idx(3, 1, file, line, args, &err_code)) |
| 2213 | goto out; |
| 2214 | |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2215 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 2216 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 2217 | |
| 2218 | free_tcpcheck_vars(&rules->preset_vars); |
| 2219 | rules->list = NULL; |
| 2220 | rules->flags = 0; |
| 2221 | |
| 2222 | cur_arg += 2; |
| 2223 | if (*args[cur_arg]) { |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2224 | int packetlen, userlen; |
| 2225 | |
| 2226 | if (strcmp(args[cur_arg], "user") != 0) { |
| 2227 | ha_alert("parsing [%s:%d] : '%s %s' only supports optional values: 'user' (got '%s').\n", |
| 2228 | file, line, args[0], args[1], args[cur_arg]); |
| 2229 | goto error; |
| 2230 | } |
| 2231 | |
| 2232 | if (*(args[cur_arg+1]) == 0) { |
| 2233 | ha_alert("parsing [%s:%d] : '%s %s %s' expects <username> as argument.\n", |
| 2234 | file, line, args[0], args[1], args[cur_arg]); |
| 2235 | goto error; |
| 2236 | } |
| 2237 | |
| 2238 | hdr = calloc(4, sizeof(*hdr)); |
| 2239 | user = strdup(args[cur_arg+1]); |
| 2240 | userlen = strlen(args[cur_arg+1]); |
| 2241 | |
| 2242 | if (hdr == NULL || user == NULL) { |
| 2243 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2244 | goto error; |
| 2245 | } |
| 2246 | |
Christopher Faulet | 62f79fe | 2020-05-18 18:13:03 +0200 | [diff] [blame] | 2247 | if (!*args[cur_arg+2] || strcmp(args[cur_arg+2], "post-41") == 0) { |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2248 | packetlen = userlen + 7 + 27; |
| 2249 | mysql_req = mysql41_req; |
| 2250 | mysql_rsname = mysql41_rsname; |
| 2251 | } |
Christopher Faulet | 62f79fe | 2020-05-18 18:13:03 +0200 | [diff] [blame] | 2252 | else if (strcmp(args[cur_arg+2], "pre-41") == 0) { |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2253 | packetlen = userlen + 7; |
| 2254 | mysql_req = mysql40_req; |
| 2255 | mysql_rsname = mysql40_rsname; |
| 2256 | } |
Christopher Faulet | 62f79fe | 2020-05-18 18:13:03 +0200 | [diff] [blame] | 2257 | else { |
| 2258 | ha_alert("parsing [%s:%d] : keyword '%s' only supports 'post-41' and 'pre-41' (got '%s').\n", |
| 2259 | file, line, args[cur_arg], args[cur_arg+2]); |
| 2260 | goto error; |
| 2261 | } |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2262 | |
| 2263 | hdr[0] = (unsigned char)(packetlen & 0xff); |
| 2264 | hdr[1] = (unsigned char)((packetlen >> 8) & 0xff); |
| 2265 | hdr[2] = (unsigned char)((packetlen >> 16) & 0xff); |
| 2266 | hdr[3] = 1; |
| 2267 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2268 | var = create_tcpcheck_var(ist("check.header")); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2269 | if (var == NULL) { |
| 2270 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2271 | goto error; |
| 2272 | } |
| 2273 | var->data.type = SMP_T_STR; |
| 2274 | var->data.u.str.area = hdr; |
| 2275 | var->data.u.str.data = 4; |
| 2276 | LIST_INIT(&var->list); |
| 2277 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 2278 | hdr = NULL; |
| 2279 | var = NULL; |
| 2280 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2281 | var = create_tcpcheck_var(ist("check.username")); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2282 | if (var == NULL) { |
| 2283 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2284 | goto error; |
| 2285 | } |
| 2286 | var->data.type = SMP_T_STR; |
| 2287 | var->data.u.str.area = user; |
| 2288 | var->data.u.str.data = strlen(user); |
| 2289 | LIST_INIT(&var->list); |
| 2290 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 2291 | user = NULL; |
| 2292 | var = NULL; |
| 2293 | } |
| 2294 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2295 | rs = find_tcpcheck_ruleset(mysql_rsname); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2296 | if (rs) |
| 2297 | goto ruleset_found; |
| 2298 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2299 | rs = create_tcpcheck_ruleset(mysql_rsname); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2300 | if (rs == NULL) { |
| 2301 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2302 | goto error; |
| 2303 | } |
| 2304 | |
| 2305 | chk = parse_tcpcheck_connect((char *[]){"tcp-check", "connect", "default", "linger", ""}, |
| 2306 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2307 | if (!chk) { |
| 2308 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2309 | goto error; |
| 2310 | } |
| 2311 | chk->index = index++; |
| 2312 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2313 | |
| 2314 | if (mysql_req) { |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 2315 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary-lf", mysql_req, ""}, |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2316 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2317 | if (!chk) { |
| 2318 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2319 | goto error; |
| 2320 | } |
| 2321 | chk->index = index++; |
| 2322 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2323 | } |
| 2324 | |
| 2325 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2326 | 1, curpx, &rs->rules, TCPCHK_RULES_MYSQL_CHK, file, line, &errmsg); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2327 | if (!chk) { |
| 2328 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2329 | goto error; |
| 2330 | } |
| 2331 | chk->expect.custom = tcpcheck_mysql_expect_iniths; |
| 2332 | chk->index = index++; |
| 2333 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2334 | |
| 2335 | if (mysql_req) { |
| 2336 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2337 | 1, curpx, &rs->rules, TCPCHK_RULES_MYSQL_CHK, file, line, &errmsg); |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2338 | if (!chk) { |
| 2339 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2340 | goto error; |
| 2341 | } |
| 2342 | chk->expect.custom = tcpcheck_mysql_expect_ok; |
| 2343 | chk->index = index++; |
| 2344 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2345 | } |
| 2346 | |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2347 | ruleset_found: |
| 2348 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2349 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 2350 | rules->flags |= TCPCHK_RULES_MYSQL_CHK; |
Christopher Faulet | f2b3be5 | 2020-04-02 18:07:37 +0200 | [diff] [blame] | 2351 | |
| 2352 | out: |
| 2353 | free(errmsg); |
| 2354 | return err_code; |
| 2355 | |
| 2356 | error: |
| 2357 | free(hdr); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2358 | free(user); |
| 2359 | free(var); |
| 2360 | free_tcpcheck_vars(&rules->preset_vars); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2361 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2362 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2363 | goto out; |
| 2364 | } |
| 2365 | |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2366 | int proxy_parse_ldap_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 2367 | const char *file, int line) |
| 2368 | { |
| 2369 | static char *ldap_req = "300C020101600702010304008000"; |
| 2370 | |
| 2371 | struct tcpcheck_ruleset *rs = NULL; |
| 2372 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 2373 | struct tcpcheck_rule *chk; |
| 2374 | char *errmsg = NULL; |
| 2375 | int err_code = 0; |
| 2376 | |
| 2377 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 2378 | err_code |= ERR_WARN; |
| 2379 | |
| 2380 | if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code)) |
| 2381 | goto out; |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2382 | |
| 2383 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 2384 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 2385 | |
| 2386 | free_tcpcheck_vars(&rules->preset_vars); |
| 2387 | rules->list = NULL; |
| 2388 | rules->flags = 0; |
| 2389 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2390 | rs = find_tcpcheck_ruleset("*ldap-check"); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2391 | if (rs) |
| 2392 | goto ruleset_found; |
| 2393 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2394 | rs = create_tcpcheck_ruleset("*ldap-check"); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2395 | if (rs == NULL) { |
| 2396 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2397 | goto error; |
| 2398 | } |
| 2399 | |
| 2400 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary", ldap_req, ""}, |
| 2401 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2402 | if (!chk) { |
| 2403 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2404 | goto error; |
| 2405 | } |
| 2406 | chk->index = 0; |
| 2407 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2408 | |
| 2409 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "rbinary", "^30", |
| 2410 | "min-recv", "14", |
| 2411 | "on-error", "Not LDAPv3 protocol", |
| 2412 | ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2413 | 1, curpx, &rs->rules, TCPCHK_RULES_LDAP_CHK, file, line, &errmsg); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2414 | if (!chk) { |
| 2415 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2416 | goto error; |
| 2417 | } |
| 2418 | chk->index = 1; |
| 2419 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2420 | |
| 2421 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2422 | 1, curpx, &rs->rules, TCPCHK_RULES_LDAP_CHK, file, line, &errmsg); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2423 | if (!chk) { |
| 2424 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2425 | goto error; |
| 2426 | } |
| 2427 | chk->expect.custom = tcpcheck_ldap_expect_bindrsp; |
| 2428 | chk->index = 2; |
| 2429 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2430 | |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2431 | ruleset_found: |
| 2432 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2433 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 2434 | rules->flags |= TCPCHK_RULES_LDAP_CHK; |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2435 | |
| 2436 | out: |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2437 | free(errmsg); |
| 2438 | return err_code; |
| 2439 | |
| 2440 | error: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2441 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2442 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2443 | goto out; |
| 2444 | } |
| 2445 | |
| 2446 | int proxy_parse_spop_check_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 2447 | const char *file, int line) |
| 2448 | { |
| 2449 | struct tcpcheck_ruleset *rs = NULL; |
| 2450 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 2451 | struct tcpcheck_rule *chk; |
| 2452 | char *spop_req = NULL; |
| 2453 | char *errmsg = NULL; |
| 2454 | int spop_len = 0, err_code = 0; |
| 2455 | |
| 2456 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 2457 | err_code |= ERR_WARN; |
| 2458 | |
| 2459 | if (alertif_too_many_args_idx(0, 1, file, line, args, &err_code)) |
| 2460 | goto out; |
| 2461 | |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2462 | curpx->options2 &= ~PR_O2_CHK_ANY; |
| 2463 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
| 2464 | |
| 2465 | free_tcpcheck_vars(&rules->preset_vars); |
| 2466 | rules->list = NULL; |
| 2467 | rules->flags = 0; |
| 2468 | |
| 2469 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2470 | rs = find_tcpcheck_ruleset("*spop-check"); |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2471 | if (rs) |
| 2472 | goto ruleset_found; |
| 2473 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2474 | rs = create_tcpcheck_ruleset("*spop-check"); |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2475 | if (rs == NULL) { |
| 2476 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2477 | goto error; |
| 2478 | } |
| 2479 | |
| 2480 | if (spoe_prepare_healthcheck_request(&spop_req, &spop_len) == -1) { |
| 2481 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2482 | goto error; |
| 2483 | } |
| 2484 | chunk_reset(&trash); |
| 2485 | dump_binary(&trash, spop_req, spop_len); |
| 2486 | trash.area[trash.data] = '\0'; |
| 2487 | |
| 2488 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-binary", b_head(&trash), ""}, |
| 2489 | 1, curpx, &rs->rules, file, line, &errmsg); |
| 2490 | if (!chk) { |
| 2491 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2492 | goto error; |
| 2493 | } |
| 2494 | chk->index = 0; |
| 2495 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2496 | |
| 2497 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", "min-recv", "4", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2498 | 1, curpx, &rs->rules, TCPCHK_RULES_SPOP_CHK, file, line, &errmsg); |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2499 | if (!chk) { |
| 2500 | ha_alert("parsing [%s:%d] : %s\n", file, line, errmsg); |
| 2501 | goto error; |
| 2502 | } |
| 2503 | chk->expect.custom = tcpcheck_spop_expect_agenthello; |
| 2504 | chk->index = 1; |
| 2505 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2506 | |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2507 | ruleset_found: |
| 2508 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2509 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 2510 | rules->flags |= TCPCHK_RULES_SPOP_CHK; |
Christopher Faulet | 267b01b | 2020-04-04 10:27:09 +0200 | [diff] [blame] | 2511 | |
| 2512 | out: |
| 2513 | free(spop_req); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2514 | free(errmsg); |
| 2515 | return err_code; |
| 2516 | |
| 2517 | error: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2518 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 1997eca | 2020-04-03 23:13:50 +0200 | [diff] [blame] | 2519 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2520 | goto out; |
| 2521 | } |
Christopher Faulet | ce35507 | 2020-04-02 11:44:39 +0200 | [diff] [blame] | 2522 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2523 | |
| 2524 | struct tcpcheck_rule *proxy_parse_httpchk_req(char **args, int cur_arg, struct proxy *px, char **errmsg) |
| 2525 | { |
| 2526 | struct tcpcheck_rule *chk = NULL; |
| 2527 | struct tcpcheck_http_hdr *hdr = NULL; |
| 2528 | char *meth = NULL, *uri = NULL, *vsn = NULL; |
| 2529 | char *hdrs, *body; |
| 2530 | |
| 2531 | hdrs = (*args[cur_arg+2] ? strstr(args[cur_arg+2], "\r\n") : NULL); |
| 2532 | body = (*args[cur_arg+2] ? strstr(args[cur_arg+2], "\r\n\r\n") : NULL); |
| 2533 | if (hdrs == body) |
| 2534 | hdrs = NULL; |
| 2535 | if (hdrs) { |
| 2536 | *hdrs = '\0'; |
| 2537 | hdrs +=2; |
| 2538 | } |
| 2539 | if (body) { |
| 2540 | *body = '\0'; |
| 2541 | body += 4; |
| 2542 | } |
| 2543 | if (hdrs || body) { |
| 2544 | memprintf(errmsg, "hiding headers or body at the end of the version string is deprecated." |
| 2545 | " Please, consider to use 'http-check send' directive instead."); |
| 2546 | } |
| 2547 | |
| 2548 | chk = calloc(1, sizeof(*chk)); |
| 2549 | if (!chk) { |
| 2550 | memprintf(errmsg, "out of memory"); |
| 2551 | goto error; |
| 2552 | } |
| 2553 | chk->action = TCPCHK_ACT_SEND; |
| 2554 | chk->send.type = TCPCHK_SEND_HTTP; |
| 2555 | chk->send.http.flags |= TCPCHK_SND_HTTP_FROM_OPT; |
| 2556 | chk->send.http.meth.meth = HTTP_METH_OPTIONS; |
| 2557 | LIST_INIT(&chk->send.http.hdrs); |
| 2558 | |
| 2559 | /* Copy the method, uri and version */ |
| 2560 | if (*args[cur_arg]) { |
| 2561 | if (!*args[cur_arg+1]) |
| 2562 | uri = args[cur_arg]; |
| 2563 | else |
| 2564 | meth = args[cur_arg]; |
| 2565 | } |
| 2566 | if (*args[cur_arg+1]) |
| 2567 | uri = args[cur_arg+1]; |
| 2568 | if (*args[cur_arg+2]) |
| 2569 | vsn = args[cur_arg+2]; |
| 2570 | |
| 2571 | if (meth) { |
| 2572 | chk->send.http.meth.meth = find_http_meth(meth, strlen(meth)); |
| 2573 | chk->send.http.meth.str.area = strdup(meth); |
| 2574 | chk->send.http.meth.str.data = strlen(meth); |
| 2575 | if (!chk->send.http.meth.str.area) { |
| 2576 | memprintf(errmsg, "out of memory"); |
| 2577 | goto error; |
| 2578 | } |
| 2579 | } |
| 2580 | if (uri) { |
| 2581 | chk->send.http.uri = ist2(strdup(uri), strlen(uri)); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2582 | if (!isttest(chk->send.http.uri)) { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2583 | memprintf(errmsg, "out of memory"); |
| 2584 | goto error; |
| 2585 | } |
| 2586 | } |
| 2587 | if (vsn) { |
| 2588 | chk->send.http.vsn = ist2(strdup(vsn), strlen(vsn)); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2589 | if (!isttest(chk->send.http.vsn)) { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2590 | memprintf(errmsg, "out of memory"); |
| 2591 | goto error; |
| 2592 | } |
| 2593 | } |
| 2594 | |
| 2595 | /* Copy the header */ |
| 2596 | if (hdrs) { |
| 2597 | struct http_hdr tmp_hdrs[global.tune.max_http_hdr]; |
| 2598 | struct h1m h1m; |
| 2599 | int i, ret; |
| 2600 | |
| 2601 | /* Build and parse the request */ |
| 2602 | chunk_printf(&trash, "%s\r\n\r\n", hdrs); |
| 2603 | |
| 2604 | h1m.flags = H1_MF_HDRS_ONLY; |
| 2605 | ret = h1_headers_to_hdr_list(b_orig(&trash), b_tail(&trash), |
| 2606 | tmp_hdrs, sizeof(tmp_hdrs)/sizeof(tmp_hdrs[0]), |
| 2607 | &h1m, NULL); |
| 2608 | if (ret <= 0) { |
| 2609 | memprintf(errmsg, "unable to parse the request '%s'.", b_orig(&trash)); |
| 2610 | goto error; |
| 2611 | } |
| 2612 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2613 | for (i = 0; istlen(tmp_hdrs[i].n); i++) { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2614 | hdr = calloc(1, sizeof(*hdr)); |
| 2615 | if (!hdr) { |
| 2616 | memprintf(errmsg, "out of memory"); |
| 2617 | goto error; |
| 2618 | } |
| 2619 | LIST_INIT(&hdr->value); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2620 | hdr->name = istdup(tmp_hdrs[i].n); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2621 | if (!hdr->name.ptr) { |
| 2622 | memprintf(errmsg, "out of memory"); |
| 2623 | goto error; |
| 2624 | } |
| 2625 | |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2626 | ist0(tmp_hdrs[i].v); |
| 2627 | if (!parse_logformat_string(istptr(tmp_hdrs[i].v), px, &hdr->value, 0, SMP_VAL_BE_CHK_RUL, errmsg)) |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2628 | goto error; |
| 2629 | LIST_ADDQ(&chk->send.http.hdrs, &hdr->list); |
| 2630 | } |
| 2631 | } |
| 2632 | |
| 2633 | /* Copy the body */ |
| 2634 | if (body) { |
| 2635 | chk->send.http.body = ist2(strdup(body), strlen(body)); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2636 | if (!isttest(chk->send.http.body)) { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2637 | memprintf(errmsg, "out of memory"); |
| 2638 | goto error; |
| 2639 | } |
| 2640 | } |
| 2641 | |
| 2642 | return chk; |
| 2643 | |
| 2644 | error: |
| 2645 | free_tcpcheck_http_hdr(hdr); |
| 2646 | free_tcpcheck(chk, 0); |
| 2647 | return NULL; |
| 2648 | } |
| 2649 | |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2650 | int proxy_parse_httpchk_opt(char **args, int cur_arg, struct proxy *curpx, struct proxy *defpx, |
| 2651 | const char *file, int line) |
| 2652 | { |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2653 | struct tcpcheck_ruleset *rs = NULL; |
| 2654 | struct tcpcheck_rules *rules = &curpx->tcpcheck_rules; |
| 2655 | struct tcpcheck_rule *chk; |
| 2656 | char *errmsg = NULL; |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2657 | int err_code = 0; |
| 2658 | |
| 2659 | if (warnifnotcap(curpx, PR_CAP_BE, file, line, args[cur_arg+1], NULL)) |
| 2660 | err_code |= ERR_WARN; |
| 2661 | |
| 2662 | if (alertif_too_many_args_idx(3, 1, file, line, args, &err_code)) |
| 2663 | goto out; |
| 2664 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2665 | chk = proxy_parse_httpchk_req(args, cur_arg+2, curpx, &errmsg); |
| 2666 | if (!chk) { |
| 2667 | ha_alert("parsing [%s:%d] : '%s %s' : %s.\n", file, line, args[0], args[1], errmsg); |
| 2668 | goto error; |
| 2669 | } |
| 2670 | if (errmsg) { |
| 2671 | ha_warning("parsing [%s:%d]: '%s %s' : %s\n", file, line, args[0], args[1], errmsg); |
| 2672 | err_code |= ERR_WARN; |
| 2673 | free(errmsg); |
| 2674 | errmsg = NULL; |
| 2675 | } |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2676 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2677 | no_request: |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2678 | curpx->options2 &= ~PR_O2_CHK_ANY; |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2679 | curpx->options2 |= PR_O2_TCPCHK_CHK; |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2680 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2681 | free_tcpcheck_vars(&rules->preset_vars); |
| 2682 | rules->list = NULL; |
| 2683 | rules->flags |= TCPCHK_SND_HTTP_FROM_OPT; |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2684 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2685 | /* Deduce the ruleset name from the proxy info */ |
| 2686 | chunk_printf(&trash, "*http-check-%s_%s-%d", |
| 2687 | ((curpx == defpx) ? "defaults" : curpx->id), |
| 2688 | curpx->conf.file, curpx->conf.line); |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2689 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2690 | rs = find_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2691 | if (rs == NULL) { |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2692 | rs = create_tcpcheck_ruleset(b_orig(&trash)); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2693 | if (rs == NULL) { |
| 2694 | ha_alert("parsing [%s:%d] : out of memory.\n", file, line); |
| 2695 | goto error; |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2696 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2697 | } |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2698 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2699 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2700 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2701 | rules->flags |= TCPCHK_RULES_HTTP_CHK; |
| 2702 | if (!tcpcheck_add_http_rule(chk, rules, &errmsg)) { |
| 2703 | ha_alert("parsing [%s:%d] : '%s %s' : %s.\n", file, line, args[0], args[1], errmsg); |
| 2704 | rules->list = NULL; |
| 2705 | goto error; |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2706 | } |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2707 | |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2708 | out: |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2709 | free(errmsg); |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2710 | return err_code; |
| 2711 | |
| 2712 | error: |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2713 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2714 | free_tcpcheck(chk, 0); |
Christopher Faulet | 6c2a743 | 2020-04-09 14:48:48 +0200 | [diff] [blame] | 2715 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2716 | goto out; |
| 2717 | } |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2718 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2719 | /* Parse the "addr" server keyword */ |
| 2720 | static int srv_parse_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2721 | char **errmsg) |
| 2722 | { |
| 2723 | struct sockaddr_storage *sk; |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2724 | int port1, port2, err_code = 0; |
| 2725 | |
| 2726 | |
| 2727 | if (!*args[*cur_arg+1]) { |
| 2728 | memprintf(errmsg, "'%s' expects <ipv4|ipv6> as argument.", args[*cur_arg]); |
| 2729 | goto error; |
| 2730 | } |
| 2731 | |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 2732 | sk = str2sa_range(args[*cur_arg+1], NULL, &port1, &port2, NULL, NULL, errmsg, NULL, NULL, |
| 2733 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT); |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2734 | if (!sk) { |
| 2735 | memprintf(errmsg, "'%s' : %s", args[*cur_arg], *errmsg); |
| 2736 | goto error; |
| 2737 | } |
| 2738 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2739 | srv->check.addr = srv->agent.addr = *sk; |
| 2740 | srv->flags |= SRV_F_CHECKADDR; |
| 2741 | srv->flags |= SRV_F_AGENTADDR; |
| 2742 | |
| 2743 | out: |
| 2744 | return err_code; |
| 2745 | |
| 2746 | error: |
| 2747 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2748 | goto out; |
| 2749 | } |
| 2750 | |
| 2751 | |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2752 | /* Parse the "agent-addr" server keyword */ |
| 2753 | static int srv_parse_agent_addr(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2754 | char **errmsg) |
| 2755 | { |
| 2756 | int err_code = 0; |
| 2757 | |
| 2758 | if (!*(args[*cur_arg+1])) { |
| 2759 | memprintf(errmsg, "'%s' expects an address as argument.", args[*cur_arg]); |
| 2760 | goto error; |
| 2761 | } |
| 2762 | if(str2ip(args[*cur_arg+1], &srv->agent.addr) == NULL) { |
| 2763 | memprintf(errmsg, "parsing agent-addr failed. Check if '%s' is correct address.", args[*cur_arg+1]); |
| 2764 | goto error; |
| 2765 | } |
| 2766 | |
| 2767 | out: |
| 2768 | return err_code; |
| 2769 | |
| 2770 | error: |
| 2771 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2772 | goto out; |
| 2773 | } |
| 2774 | |
| 2775 | /* Parse the "agent-check" server keyword */ |
| 2776 | static int srv_parse_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2777 | char **errmsg) |
| 2778 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2779 | struct tcpcheck_ruleset *rs = NULL; |
| 2780 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
| 2781 | struct tcpcheck_rule *chk; |
| 2782 | int err_code = 0; |
| 2783 | |
| 2784 | if (srv->do_agent) |
| 2785 | goto out; |
| 2786 | |
Christopher Faulet | 0a5e713 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 2787 | if (!(curpx->cap & PR_CAP_BE)) { |
| 2788 | memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability", |
| 2789 | args[*cur_arg], proxy_type_str(curpx), curpx->id); |
| 2790 | return ERR_WARN; |
| 2791 | } |
| 2792 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2793 | if (!rules) { |
| 2794 | rules = calloc(1, sizeof(*rules)); |
| 2795 | if (!rules) { |
| 2796 | memprintf(errmsg, "out of memory."); |
| 2797 | goto error; |
| 2798 | } |
| 2799 | LIST_INIT(&rules->preset_vars); |
| 2800 | srv->agent.tcpcheck_rules = rules; |
| 2801 | } |
| 2802 | rules->list = NULL; |
| 2803 | rules->flags = 0; |
| 2804 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2805 | rs = find_tcpcheck_ruleset("*agent-check"); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2806 | if (rs) |
| 2807 | goto ruleset_found; |
| 2808 | |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2809 | rs = create_tcpcheck_ruleset("*agent-check"); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2810 | if (rs == NULL) { |
| 2811 | memprintf(errmsg, "out of memory."); |
| 2812 | goto error; |
| 2813 | } |
| 2814 | |
Christopher Faulet | b50b3e6 | 2020-05-05 18:43:43 +0200 | [diff] [blame] | 2815 | chk = parse_tcpcheck_send((char *[]){"tcp-check", "send-lf", "%[var(check.agent_string)]", ""}, |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2816 | 1, curpx, &rs->rules, srv->conf.file, srv->conf.line, errmsg); |
| 2817 | if (!chk) { |
| 2818 | memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg); |
| 2819 | goto error; |
| 2820 | } |
| 2821 | chk->index = 0; |
| 2822 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2823 | |
| 2824 | chk = parse_tcpcheck_expect((char *[]){"tcp-check", "expect", "custom", ""}, |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2825 | 1, curpx, &rs->rules, TCPCHK_RULES_AGENT_CHK, |
| 2826 | srv->conf.file, srv->conf.line, errmsg); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2827 | if (!chk) { |
| 2828 | memprintf(errmsg, "'%s': %s", args[*cur_arg], *errmsg); |
| 2829 | goto error; |
| 2830 | } |
| 2831 | chk->expect.custom = tcpcheck_agent_expect_reply; |
| 2832 | chk->index = 1; |
| 2833 | LIST_ADDQ(&rs->rules, &chk->list); |
| 2834 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2835 | ruleset_found: |
| 2836 | rules->list = &rs->rules; |
Christopher Faulet | b9492cf | 2020-11-25 16:43:12 +0100 | [diff] [blame] | 2837 | rules->flags &= ~(TCPCHK_RULES_PROTO_CHK|TCPCHK_RULES_UNUSED_RS); |
Christopher Faulet | 404f919 | 2020-04-09 23:13:54 +0200 | [diff] [blame] | 2838 | rules->flags |= TCPCHK_RULES_AGENT_CHK; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2839 | srv->do_agent = 1; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2840 | |
| 2841 | out: |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2842 | return 0; |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2843 | |
| 2844 | error: |
| 2845 | deinit_srv_agent_check(srv); |
Christopher Faulet | 61cc852 | 2020-04-20 14:54:42 +0200 | [diff] [blame] | 2846 | free_tcpcheck_ruleset(rs); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2847 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2848 | goto out; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | /* Parse the "agent-inter" server keyword */ |
| 2852 | static int srv_parse_agent_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2853 | char **errmsg) |
| 2854 | { |
| 2855 | const char *err = NULL; |
| 2856 | unsigned int delay; |
| 2857 | int err_code = 0; |
| 2858 | |
| 2859 | if (!*(args[*cur_arg+1])) { |
| 2860 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 2861 | goto error; |
| 2862 | } |
| 2863 | |
| 2864 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 2865 | if (err == PARSE_TIME_OVER) { |
| 2866 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 2867 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2868 | goto error; |
| 2869 | } |
| 2870 | else if (err == PARSE_TIME_UNDER) { |
| 2871 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 2872 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 2873 | goto error; |
| 2874 | } |
| 2875 | else if (err) { |
| 2876 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 2877 | *err, srv->id); |
| 2878 | goto error; |
| 2879 | } |
| 2880 | if (delay <= 0) { |
| 2881 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 2882 | delay, args[*cur_arg], srv->id); |
| 2883 | goto error; |
| 2884 | } |
| 2885 | srv->agent.inter = delay; |
| 2886 | |
| 2887 | out: |
| 2888 | return err_code; |
| 2889 | |
| 2890 | error: |
| 2891 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2892 | goto out; |
| 2893 | } |
| 2894 | |
| 2895 | /* Parse the "agent-port" server keyword */ |
| 2896 | static int srv_parse_agent_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2897 | char **errmsg) |
| 2898 | { |
| 2899 | int err_code = 0; |
| 2900 | |
| 2901 | if (!*(args[*cur_arg+1])) { |
| 2902 | memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]); |
| 2903 | goto error; |
| 2904 | } |
| 2905 | |
| 2906 | global.maxsock++; |
| 2907 | srv->agent.port = atol(args[*cur_arg+1]); |
| 2908 | |
| 2909 | out: |
| 2910 | return err_code; |
| 2911 | |
| 2912 | error: |
| 2913 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2914 | goto out; |
| 2915 | } |
| 2916 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2917 | int set_srv_agent_send(struct server *srv, const char *send) |
| 2918 | { |
| 2919 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
| 2920 | struct tcpcheck_var *var = NULL; |
| 2921 | char *str; |
| 2922 | |
| 2923 | str = strdup(send); |
Christopher Faulet | b61caf4 | 2020-04-21 10:57:42 +0200 | [diff] [blame] | 2924 | var = create_tcpcheck_var(ist("check.agent_string")); |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2925 | if (str == NULL || var == NULL) |
| 2926 | goto error; |
| 2927 | |
| 2928 | free_tcpcheck_vars(&rules->preset_vars); |
| 2929 | |
| 2930 | var->data.type = SMP_T_STR; |
| 2931 | var->data.u.str.area = str; |
| 2932 | var->data.u.str.data = strlen(str); |
| 2933 | LIST_INIT(&var->list); |
| 2934 | LIST_ADDQ(&rules->preset_vars, &var->list); |
| 2935 | |
| 2936 | return 1; |
| 2937 | |
| 2938 | error: |
| 2939 | free(str); |
| 2940 | free(var); |
| 2941 | return 0; |
| 2942 | } |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2943 | |
| 2944 | /* Parse the "agent-send" server keyword */ |
| 2945 | static int srv_parse_agent_send(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2946 | char **errmsg) |
| 2947 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2948 | struct tcpcheck_rules *rules = srv->agent.tcpcheck_rules; |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2949 | int err_code = 0; |
| 2950 | |
| 2951 | if (!*(args[*cur_arg+1])) { |
| 2952 | memprintf(errmsg, "'%s' expects a string as argument.", args[*cur_arg]); |
| 2953 | goto error; |
| 2954 | } |
| 2955 | |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2956 | if (!rules) { |
| 2957 | rules = calloc(1, sizeof(*rules)); |
| 2958 | if (!rules) { |
| 2959 | memprintf(errmsg, "out of memory."); |
| 2960 | goto error; |
| 2961 | } |
| 2962 | LIST_INIT(&rules->preset_vars); |
| 2963 | srv->agent.tcpcheck_rules = rules; |
| 2964 | } |
| 2965 | |
| 2966 | if (!set_srv_agent_send(srv, args[*cur_arg+1])) { |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2967 | memprintf(errmsg, "out of memory."); |
| 2968 | goto error; |
| 2969 | } |
| 2970 | |
| 2971 | out: |
| 2972 | return err_code; |
| 2973 | |
| 2974 | error: |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2975 | deinit_srv_agent_check(srv); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2976 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2977 | goto out; |
| 2978 | } |
| 2979 | |
| 2980 | /* Parse the "no-agent-send" server keyword */ |
| 2981 | static int srv_parse_no_agent_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2982 | char **errmsg) |
| 2983 | { |
Christopher Faulet | 0ae3d1d | 2020-04-06 17:54:24 +0200 | [diff] [blame] | 2984 | deinit_srv_agent_check(srv); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 2985 | return 0; |
| 2986 | } |
| 2987 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2988 | /* Parse the "check" server keyword */ |
| 2989 | static int srv_parse_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 2990 | char **errmsg) |
| 2991 | { |
Christopher Faulet | 0a5e713 | 2021-01-12 17:29:45 +0100 | [diff] [blame] | 2992 | if (!(curpx->cap & PR_CAP_BE)) { |
| 2993 | memprintf(errmsg, "'%s' ignored because %s '%s' has no backend capability", |
| 2994 | args[*cur_arg], proxy_type_str(curpx), curpx->id); |
| 2995 | return ERR_WARN; |
| 2996 | } |
| 2997 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 2998 | srv->do_check = 1; |
| 2999 | return 0; |
| 3000 | } |
| 3001 | |
| 3002 | /* Parse the "check-send-proxy" server keyword */ |
| 3003 | static int srv_parse_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3004 | char **errmsg) |
| 3005 | { |
| 3006 | srv->check.send_proxy = 1; |
| 3007 | return 0; |
| 3008 | } |
| 3009 | |
| 3010 | /* Parse the "check-via-socks4" server keyword */ |
| 3011 | static int srv_parse_check_via_socks4(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3012 | char **errmsg) |
| 3013 | { |
| 3014 | srv->check.via_socks4 = 1; |
| 3015 | return 0; |
| 3016 | } |
| 3017 | |
| 3018 | /* Parse the "no-check" server keyword */ |
| 3019 | static int srv_parse_no_check(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3020 | char **errmsg) |
| 3021 | { |
| 3022 | deinit_srv_check(srv); |
| 3023 | return 0; |
| 3024 | } |
| 3025 | |
| 3026 | /* Parse the "no-check-send-proxy" server keyword */ |
| 3027 | static int srv_parse_no_check_send_proxy(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3028 | char **errmsg) |
| 3029 | { |
| 3030 | srv->check.send_proxy = 0; |
| 3031 | return 0; |
| 3032 | } |
| 3033 | |
Christopher Faulet | edc6ed9 | 2020-04-23 16:27:59 +0200 | [diff] [blame] | 3034 | /* parse the "check-proto" server keyword */ |
| 3035 | static int srv_parse_check_proto(char **args, int *cur_arg, |
| 3036 | struct proxy *px, struct server *newsrv, char **err) |
| 3037 | { |
| 3038 | int err_code = 0; |
| 3039 | |
| 3040 | if (!*args[*cur_arg + 1]) { |
| 3041 | memprintf(err, "'%s' : missing value", args[*cur_arg]); |
| 3042 | goto error; |
| 3043 | } |
| 3044 | newsrv->check.mux_proto = get_mux_proto(ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]))); |
| 3045 | if (!newsrv->check.mux_proto) { |
| 3046 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]); |
| 3047 | goto error; |
| 3048 | } |
| 3049 | |
| 3050 | out: |
| 3051 | return err_code; |
| 3052 | |
| 3053 | error: |
| 3054 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3055 | goto out; |
| 3056 | } |
| 3057 | |
| 3058 | |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 3059 | /* Parse the "rise" server keyword */ |
| 3060 | static int srv_parse_check_rise(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3061 | char **errmsg) |
| 3062 | { |
| 3063 | int err_code = 0; |
| 3064 | |
| 3065 | if (!*args[*cur_arg + 1]) { |
| 3066 | memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]); |
| 3067 | goto error; |
| 3068 | } |
| 3069 | |
| 3070 | srv->check.rise = atol(args[*cur_arg+1]); |
| 3071 | if (srv->check.rise <= 0) { |
| 3072 | memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]); |
| 3073 | goto error; |
| 3074 | } |
| 3075 | |
| 3076 | if (srv->check.health) |
| 3077 | srv->check.health = srv->check.rise; |
| 3078 | |
| 3079 | out: |
| 3080 | return err_code; |
| 3081 | |
| 3082 | error: |
| 3083 | deinit_srv_agent_check(srv); |
| 3084 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3085 | goto out; |
| 3086 | return 0; |
| 3087 | } |
| 3088 | |
| 3089 | /* Parse the "fall" server keyword */ |
| 3090 | static int srv_parse_check_fall(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3091 | char **errmsg) |
| 3092 | { |
| 3093 | int err_code = 0; |
| 3094 | |
| 3095 | if (!*args[*cur_arg + 1]) { |
| 3096 | memprintf(errmsg, "'%s' expects an integer argument.", args[*cur_arg]); |
| 3097 | goto error; |
| 3098 | } |
| 3099 | |
| 3100 | srv->check.fall = atol(args[*cur_arg+1]); |
| 3101 | if (srv->check.fall <= 0) { |
| 3102 | memprintf(errmsg, "'%s' has to be > 0.", args[*cur_arg]); |
| 3103 | goto error; |
| 3104 | } |
| 3105 | |
| 3106 | out: |
| 3107 | return err_code; |
| 3108 | |
| 3109 | error: |
| 3110 | deinit_srv_agent_check(srv); |
| 3111 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3112 | goto out; |
| 3113 | return 0; |
| 3114 | } |
| 3115 | |
| 3116 | /* Parse the "inter" server keyword */ |
| 3117 | static int srv_parse_check_inter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3118 | char **errmsg) |
| 3119 | { |
| 3120 | const char *err = NULL; |
| 3121 | unsigned int delay; |
| 3122 | int err_code = 0; |
| 3123 | |
| 3124 | if (!*(args[*cur_arg+1])) { |
| 3125 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 3126 | goto error; |
| 3127 | } |
| 3128 | |
| 3129 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 3130 | if (err == PARSE_TIME_OVER) { |
| 3131 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 3132 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3133 | goto error; |
| 3134 | } |
| 3135 | else if (err == PARSE_TIME_UNDER) { |
| 3136 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 3137 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3138 | goto error; |
| 3139 | } |
| 3140 | else if (err) { |
| 3141 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 3142 | *err, srv->id); |
| 3143 | goto error; |
| 3144 | } |
| 3145 | if (delay <= 0) { |
| 3146 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 3147 | delay, args[*cur_arg], srv->id); |
| 3148 | goto error; |
| 3149 | } |
| 3150 | srv->check.inter = delay; |
| 3151 | |
| 3152 | out: |
| 3153 | return err_code; |
| 3154 | |
| 3155 | error: |
| 3156 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3157 | goto out; |
| 3158 | } |
| 3159 | |
| 3160 | |
| 3161 | /* Parse the "fastinter" server keyword */ |
| 3162 | static int srv_parse_check_fastinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3163 | char **errmsg) |
| 3164 | { |
| 3165 | const char *err = NULL; |
| 3166 | unsigned int delay; |
| 3167 | int err_code = 0; |
| 3168 | |
| 3169 | if (!*(args[*cur_arg+1])) { |
| 3170 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 3171 | goto error; |
| 3172 | } |
| 3173 | |
| 3174 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 3175 | if (err == PARSE_TIME_OVER) { |
| 3176 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 3177 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3178 | goto error; |
| 3179 | } |
| 3180 | else if (err == PARSE_TIME_UNDER) { |
| 3181 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 3182 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3183 | goto error; |
| 3184 | } |
| 3185 | else if (err) { |
| 3186 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 3187 | *err, srv->id); |
| 3188 | goto error; |
| 3189 | } |
| 3190 | if (delay <= 0) { |
| 3191 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 3192 | delay, args[*cur_arg], srv->id); |
| 3193 | goto error; |
| 3194 | } |
| 3195 | srv->check.fastinter = delay; |
| 3196 | |
| 3197 | out: |
| 3198 | return err_code; |
| 3199 | |
| 3200 | error: |
| 3201 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3202 | goto out; |
| 3203 | } |
| 3204 | |
| 3205 | |
| 3206 | /* Parse the "downinter" server keyword */ |
| 3207 | static int srv_parse_check_downinter(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3208 | char **errmsg) |
| 3209 | { |
| 3210 | const char *err = NULL; |
| 3211 | unsigned int delay; |
| 3212 | int err_code = 0; |
| 3213 | |
| 3214 | if (!*(args[*cur_arg+1])) { |
| 3215 | memprintf(errmsg, "'%s' expects a delay as argument.", args[*cur_arg]); |
| 3216 | goto error; |
| 3217 | } |
| 3218 | |
| 3219 | err = parse_time_err(args[*cur_arg+1], &delay, TIME_UNIT_MS); |
| 3220 | if (err == PARSE_TIME_OVER) { |
| 3221 | memprintf(errmsg, "timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).", |
| 3222 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3223 | goto error; |
| 3224 | } |
| 3225 | else if (err == PARSE_TIME_UNDER) { |
| 3226 | memprintf(errmsg, "timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.", |
| 3227 | args[*cur_arg+1], args[*cur_arg], srv->id); |
| 3228 | goto error; |
| 3229 | } |
| 3230 | else if (err) { |
| 3231 | memprintf(errmsg, "unexpected character '%c' in 'agent-inter' argument of server %s.", |
| 3232 | *err, srv->id); |
| 3233 | goto error; |
| 3234 | } |
| 3235 | if (delay <= 0) { |
| 3236 | memprintf(errmsg, "invalid value %d for argument '%s' of server %s.", |
| 3237 | delay, args[*cur_arg], srv->id); |
| 3238 | goto error; |
| 3239 | } |
| 3240 | srv->check.downinter = delay; |
| 3241 | |
| 3242 | out: |
| 3243 | return err_code; |
| 3244 | |
| 3245 | error: |
| 3246 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3247 | goto out; |
| 3248 | } |
| 3249 | |
| 3250 | /* Parse the "port" server keyword */ |
| 3251 | static int srv_parse_check_port(char **args, int *cur_arg, struct proxy *curpx, struct server *srv, |
| 3252 | char **errmsg) |
| 3253 | { |
| 3254 | int err_code = 0; |
| 3255 | |
| 3256 | if (!*(args[*cur_arg+1])) { |
| 3257 | memprintf(errmsg, "'%s' expects a port number as argument.", args[*cur_arg]); |
| 3258 | goto error; |
| 3259 | } |
| 3260 | |
| 3261 | global.maxsock++; |
| 3262 | srv->check.port = atol(args[*cur_arg+1]); |
| 3263 | srv->flags |= SRV_F_CHECKPORT; |
| 3264 | |
| 3265 | out: |
| 3266 | return err_code; |
| 3267 | |
| 3268 | error: |
| 3269 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3270 | goto out; |
| 3271 | } |
| 3272 | |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 3273 | static struct cfg_kw_list cfg_kws = {ILH, { |
Christopher Faulet | e9111b6 | 2020-04-09 18:12:08 +0200 | [diff] [blame] | 3274 | { CFG_LISTEN, "http-check", proxy_parse_httpcheck }, |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 3275 | { 0, NULL, NULL }, |
| 3276 | }}; |
| 3277 | |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 3278 | static struct srv_kw_list srv_kws = { "CHK", { }, { |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 3279 | { "addr", srv_parse_addr, 1, 1 }, /* IP address to send health to or to probe from agent-check */ |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 3280 | { "agent-addr", srv_parse_agent_addr, 1, 1 }, /* Enable an auxiliary agent check */ |
| 3281 | { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable agent checks */ |
| 3282 | { "agent-inter", srv_parse_agent_inter, 1, 1 }, /* Set the interval between two agent checks */ |
| 3283 | { "agent-port", srv_parse_agent_port, 1, 1 }, /* Set the TCP port used for agent checks. */ |
| 3284 | { "agent-send", srv_parse_agent_send, 1, 1 }, /* Set string to send to agent. */ |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 3285 | { "check", srv_parse_check, 0, 1 }, /* Enable health checks */ |
Christopher Faulet | edc6ed9 | 2020-04-23 16:27:59 +0200 | [diff] [blame] | 3286 | { "check-proto", srv_parse_check_proto, 1, 1 }, /* Set the mux protocol for health checks */ |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 3287 | { "check-send-proxy", srv_parse_check_send_proxy, 0, 1 }, /* Enable PROXY protocol for health checks */ |
| 3288 | { "check-via-socks4", srv_parse_check_via_socks4, 0, 1 }, /* Enable socks4 proxy for health checks */ |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 3289 | { "no-agent-check", srv_parse_no_agent_check, 0, 1 }, /* Do not enable any auxiliary agent check */ |
Christopher Faulet | ce8111e | 2020-04-06 15:04:11 +0200 | [diff] [blame] | 3290 | { "no-check", srv_parse_no_check, 0, 1 }, /* Disable health checks */ |
| 3291 | { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1 }, /* Disable PROXY protol for health checks */ |
| 3292 | { "rise", srv_parse_check_rise, 1, 1 }, /* Set rise value for health checks */ |
| 3293 | { "fall", srv_parse_check_fall, 1, 1 }, /* Set fall value for health checks */ |
| 3294 | { "inter", srv_parse_check_inter, 1, 1 }, /* Set inter value for health checks */ |
| 3295 | { "fastinter", srv_parse_check_fastinter, 1, 1 }, /* Set fastinter value for health checks */ |
| 3296 | { "downinter", srv_parse_check_downinter, 1, 1 }, /* Set downinter value for health checks */ |
| 3297 | { "port", srv_parse_check_port, 1, 1 }, /* Set the TCP port used for health checks. */ |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 3298 | { NULL, NULL, 0 }, |
| 3299 | }}; |
| 3300 | |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 3301 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Christopher Faulet | cbba66c | 2020-04-06 14:26:30 +0200 | [diff] [blame] | 3302 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
Christopher Faulet | fd6c229 | 2020-03-25 18:20:15 +0100 | [diff] [blame] | 3303 | |
Willy Tarreau | bd74154 | 2010-03-16 18:46:54 +0100 | [diff] [blame] | 3304 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3305 | * Local variables: |
| 3306 | * c-indent-level: 8 |
| 3307 | * c-basic-offset: 8 |
| 3308 | * End: |
| 3309 | */ |