blob: 77e9b513f0ccab60a470ea5afc7989ae3a90f0f3 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Health-checks functions.
3 *
Willy Tarreaud825eef2007-05-12 22:35:00 +02004 * Copyright 2000-2007 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020016#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020017#include <string.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020018#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020019#include <unistd.h>
20#include <sys/socket.h>
21#include <netinet/in.h>
22#include <arpa/inet.h>
23
Willy Tarreau2dd0d472006-06-29 17:53:05 +020024#include <common/compat.h>
25#include <common/config.h>
26#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020027#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020028#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
30#include <types/global.h>
31#include <types/polling.h>
32#include <types/proxy.h>
33#include <types/session.h>
34
35#include <proto/backend.h>
36#include <proto/fd.h>
37#include <proto/log.h>
38#include <proto/queue.h>
Willy Tarreau3d300592007-03-18 18:34:41 +010039#include <proto/proto_http.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010040#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/server.h>
42#include <proto/task.h>
43
Willy Tarreau163c5322006-11-14 16:18:41 +010044#ifdef CONFIG_HAP_CTTPROXY
45#include <import/ip_tproxy.h>
46#endif
47
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
49/* Sets server <s> down, notifies by all available means, recounts the
50 * remaining servers on the proxy and transfers queued sessions whenever
Willy Tarreau5af3a692007-07-24 23:32:33 +020051 * possible to other servers. It automatically recomputes the number of
52 * servers, but not the map.
Willy Tarreaubaaee002006-06-26 02:48:02 +020053 */
Willy Tarreau83749182007-04-15 20:56:27 +020054static void set_server_down(struct server *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +020055{
56 struct pendconn *pc, *pc_bck, *pc_end;
57 struct session *sess;
58 int xferred;
59
Willy Tarreaubaaee002006-06-26 02:48:02 +020060 if (s->health == s->rise) {
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061
62 s->last_change = now.tv_sec;
63 s->state &= ~SRV_RUNNING;
64
Willy Tarreaubaaee002006-06-26 02:48:02 +020065 recount_servers(s->proxy);
Willy Tarreau5af3a692007-07-24 23:32:33 +020066 s->proxy->map_state |= PR_MAP_RECALC;
Willy Tarreaubaaee002006-06-26 02:48:02 +020067
68 /* we might have sessions queued on this server and waiting for
69 * a connection. Those which are redispatchable will be queued
70 * to another server or to the proxy itself.
71 */
72 xferred = 0;
73 FOREACH_ITEM_SAFE(pc, pc_bck, &s->pendconns, pc_end, struct pendconn *, list) {
74 sess = pc->sess;
Willy Tarreaue2e27a52007-04-01 00:01:37 +020075 if ((sess->be->options & PR_O_REDISP)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020076 /* The REDISP option was specified. We will ignore
77 * cookie and force to balance or use the dispatcher.
78 */
79 sess->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
80 sess->srv = NULL; /* it's left to the dispatcher to choose a server */
Willy Tarreau3d300592007-03-18 18:34:41 +010081 http_flush_cookie_flags(&sess->txn);
Willy Tarreaubaaee002006-06-26 02:48:02 +020082 pendconn_free(pc);
Willy Tarreau96bcfd72007-04-29 10:41:56 +020083 task_wakeup(sess->task);
Willy Tarreaubaaee002006-06-26 02:48:02 +020084 xferred++;
85 }
86 }
87
88 sprintf(trash, "%sServer %s/%s is DOWN. %d active and %d backup servers left.%s"
89 " %d sessions active, %d requeued, %d remaining in queue.\n",
90 s->state & SRV_BACKUP ? "Backup " : "",
91 s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck,
92 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
93 s->cur_sess, xferred, s->nbpend);
94
95 Warning("%s", trash);
96 send_log(s->proxy, LOG_ALERT, "%s", trash);
Krzysztof Oledzki85130942007-10-22 16:21:10 +020097
Willy Tarreaubaaee002006-06-26 02:48:02 +020098 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
Krzysztof Oledzki85130942007-10-22 16:21:10 +020099 s->proxy->last_change = now.tv_sec;
100 s->proxy->down_trans++;
101
102 Alert("%s '%s' has no server available!\n", proxy_type_str(s->proxy), s->proxy->id);
103 send_log(s->proxy, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104 }
105 s->down_trans++;
106 }
107 s->health = 0; /* failure */
108}
109
110
111/*
112 * This function is used only for server health-checks. It handles
113 * the connection acknowledgement. If the proxy requires HTTP health-checks,
Willy Tarreau83749182007-04-15 20:56:27 +0200114 * it sends the request. In other cases, it returns 1 in s->result if the
115 * socket is OK, or -1 if an error occured.
116 * The function itself returns 0 if it needs some polling before being called
117 * again, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 */
Willy Tarreau83749182007-04-15 20:56:27 +0200119static int event_srv_chk_w(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120{
Willy Tarreau6996e152007-04-30 14:37:43 +0200121 __label__ out_wakeup, out_nowake, out_poll, out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122 struct task *t = fdtab[fd].owner;
123 struct server *s = t->context;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124
Willy Tarreau6996e152007-04-30 14:37:43 +0200125 if (unlikely(fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR)))
126 goto out_error;
127
128 /* here, we know that the connection is established */
Willy Tarreau83749182007-04-15 20:56:27 +0200129
130 if (s->result != -1) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 /* we don't want to mark 'UP' a server on which we detected an error earlier */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200132 if ((s->proxy->options & PR_O_HTTP_CHK) ||
Willy Tarreau23677902007-05-08 23:50:35 +0200133 (s->proxy->options & PR_O_SSL3_CHK) ||
134 (s->proxy->options & PR_O_SMTP_CHK)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135 int ret;
Willy Tarreauf3c69202006-07-09 16:42:34 +0200136 /* we want to check if this host replies to HTTP or SSLv3 requests
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 * so we'll send the request, and won't wake the checker up now.
138 */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200139
140 if (s->proxy->options & PR_O_SSL3_CHK) {
141 /* SSL requires that we put Unix time in the request */
142 int gmt_time = htonl(now.tv_sec);
143 memcpy(s->proxy->check_req + 11, &gmt_time, 4);
144 }
145
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146#ifndef MSG_NOSIGNAL
147 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT);
148#else
149 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT | MSG_NOSIGNAL);
150#endif
151 if (ret == s->proxy->check_len) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200152 EV_FD_SET(fd, DIR_RD); /* prepare for reading reply */
Willy Tarreau83749182007-04-15 20:56:27 +0200153 goto out_nowake;
154 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200155 else if (ret == 0 || errno == EAGAIN)
156 goto out_poll;
157 else
158 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159 }
160 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200161 /* We have no data to send to check the connection, and
162 * getsockopt() will not inform us whether the connection
163 * is still pending. So we'll reuse connect() to check the
164 * state of the socket. This has the advantage of givig us
165 * the following info :
166 * - error
167 * - connecting (EALREADY, EINPROGRESS)
168 * - connected (EISCONN, 0)
169 */
170
171 struct sockaddr_in sa;
172
173 sa = (s->check_addr.sin_addr.s_addr) ? s->check_addr : s->addr;
174 sa.sin_port = htons(s->check_port);
175
176 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == 0)
177 errno = 0;
178
179 if (errno == EALREADY || errno == EINPROGRESS)
180 goto out_poll;
181
182 if (errno && errno != EISCONN)
183 goto out_error;
184
Willy Tarreaubaaee002006-06-26 02:48:02 +0200185 /* good TCP connection is enough */
186 s->result = 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200187 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188 }
189 }
Willy Tarreau83749182007-04-15 20:56:27 +0200190 out_wakeup:
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200191 task_wakeup(t);
Willy Tarreau83749182007-04-15 20:56:27 +0200192 out_nowake:
193 EV_FD_CLR(fd, DIR_WR); /* nothing more to write */
194 fdtab[fd].ev &= ~FD_POLL_WR;
195 return 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200196 out_poll:
197 /* The connection is still pending. We'll have to poll it
198 * before attempting to go further. */
199 fdtab[fd].ev &= ~FD_POLL_WR;
200 return 0;
201 out_error:
202 s->result = -1;
203 fdtab[fd].state = FD_STERROR;
204 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200205}
206
207
208/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200209 * This function is used only for server health-checks. It handles the server's
210 * reply to an HTTP request or SSL HELLO. It returns 1 in s->result if the
211 * server replies HTTP 2xx or 3xx (valid responses), or if it returns at least
212 * 5 bytes in response to SSL HELLO. The principle is that this is enough to
213 * distinguish between an SSL server and a pure TCP relay. All other cases will
Willy Tarreau83749182007-04-15 20:56:27 +0200214 * return -1. The function returns 0 if it needs to be called again after some
215 * polling, otherwise non-zero..
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216 */
Willy Tarreau83749182007-04-15 20:56:27 +0200217static int event_srv_chk_r(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200218{
Willy Tarreau83749182007-04-15 20:56:27 +0200219 __label__ out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200220 int len, result;
221 struct task *t = fdtab[fd].owner;
222 struct server *s = t->context;
223 int skerr;
224 socklen_t lskerr = sizeof(skerr);
225
226 result = len = -1;
Willy Tarreau83749182007-04-15 20:56:27 +0200227
228 if (unlikely(fdtab[fd].state == FD_STERROR ||
229 (fdtab[fd].ev & FD_POLL_ERR) ||
230 (getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == -1) ||
231 (skerr != 0))) {
232 /* in case of TCP only, this tells us if the connection failed */
233 s->result = -1;
234 fdtab[fd].state = FD_STERROR;
235 goto out_wakeup;
236 }
237
Willy Tarreaubaaee002006-06-26 02:48:02 +0200238#ifndef MSG_NOSIGNAL
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200239 len = recv(fd, trash, sizeof(trash), 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200240#else
Willy Tarreau83749182007-04-15 20:56:27 +0200241 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
242 * but the connection was closed on the remote end. Fortunately, recv still
243 * works correctly and we don't need to do the getsockopt() on linux.
244 */
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200245 len = recv(fd, trash, sizeof(trash), MSG_NOSIGNAL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200246#endif
Willy Tarreau83749182007-04-15 20:56:27 +0200247 if (unlikely(len < 0 && errno == EAGAIN)) {
248 /* we want some polling to happen first */
249 fdtab[fd].ev &= ~FD_POLL_RD;
250 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200251 }
252
Willy Tarreau6996e152007-04-30 14:37:43 +0200253 if ((s->proxy->options & PR_O_HTTP_CHK) && (len >= sizeof("HTTP/1.0 000")) &&
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200254 (memcmp(trash, "HTTP/1.", 7) == 0) && (trash[9] == '2' || trash[9] == '3')) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200255 /* HTTP/1.X 2xx or 3xx */
Willy Tarreau83749182007-04-15 20:56:27 +0200256 result = 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200257 }
258 else if ((s->proxy->options & PR_O_SSL3_CHK) && (len >= 5) &&
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200259 (trash[0] == 0x15 || trash[0] == 0x16)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200260 /* SSLv3 alert or handshake */
261 result = 1;
262 }
Willy Tarreau23677902007-05-08 23:50:35 +0200263 else if ((s->proxy->options & PR_O_SMTP_CHK) && (len >= 3) &&
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200264 (trash[0] == '2')) /* 2xx (should be 250) */ {
Willy Tarreau23677902007-05-08 23:50:35 +0200265 result = 1;
266 }
Willy Tarreau83749182007-04-15 20:56:27 +0200267
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268 if (result == -1)
269 fdtab[fd].state = FD_STERROR;
270
271 if (s->result != -1)
272 s->result = result;
273
Willy Tarreau83749182007-04-15 20:56:27 +0200274 out_wakeup:
Willy Tarreauf161a342007-04-08 16:59:42 +0200275 EV_FD_CLR(fd, DIR_RD);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200276 task_wakeup(t);
Willy Tarreau83749182007-04-15 20:56:27 +0200277 fdtab[fd].ev &= ~FD_POLL_RD;
278 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200279}
280
281/*
282 * manages a server health-check. Returns
283 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
284 */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200285void process_chk(struct task *t, struct timeval *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200286{
Willy Tarreau7317eb52007-05-09 00:54:10 +0200287 __label__ new_chk, out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200288 struct server *s = t->context;
289 struct sockaddr_in sa;
290 int fd;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200291 int rv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200292
293 //fprintf(stderr, "process_chk: task=%p\n", t);
294
295 new_chk:
296 fd = s->curfd;
297 if (fd < 0) { /* no check currently running */
298 //fprintf(stderr, "process_chk: 2\n");
Willy Tarreaua8b55e32007-05-13 16:08:19 +0200299 if (!tv_isle(&t->expire, &now)) { /* not good time yet */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200300 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200301 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200302 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200303 }
304
305 /* we don't send any health-checks when the proxy is stopped or when
306 * the server should not be checked.
307 */
308 if (!(s->state & SRV_CHECKED) || s->proxy->state == PR_STSTOPPED) {
Willy Tarreaua8b55e32007-05-13 16:08:19 +0200309 while (tv_isle(&t->expire, &now))
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200310 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200312 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200313 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200314 }
315
316 /* we'll initiate a new check */
317 s->result = 0; /* no result yet */
318 if ((fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) != -1) {
319 if ((fd < global.maxsock) &&
320 (fcntl(fd, F_SETFL, O_NONBLOCK) != -1) &&
321 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)) != -1)) {
322 //fprintf(stderr, "process_chk: 3\n");
323
Willy Tarreau9edd1612007-10-18 18:07:48 +0200324 if (s->proxy->options & PR_O_TCP_NOLING) {
325 /* We don't want to useless data */
326 setsockopt(fd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
327 }
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200328
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200329 if (s->check_addr.sin_addr.s_addr)
330 /* we'll connect to the check addr specified on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200331 sa = s->check_addr;
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200332 else
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200333 /* we'll connect to the addr on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200334 sa = s->addr;
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200335
Willy Tarreaubaaee002006-06-26 02:48:02 +0200336 /* we'll connect to the check port on the server */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337 sa.sin_port = htons(s->check_port);
338
339 /* allow specific binding :
340 * - server-specific at first
341 * - proxy-specific next
342 */
343 if (s->state & SRV_BIND_SRC) {
344 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one));
345 if (bind(fd, (struct sockaddr *)&s->source_addr, sizeof(s->source_addr)) == -1) {
346 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
347 s->proxy->id, s->id);
348 s->result = -1;
349 }
Willy Tarreau163c5322006-11-14 16:18:41 +0100350#ifdef CONFIG_HAP_CTTPROXY
351 if ((s->state & SRV_TPROXY_MASK) == SRV_TPROXY_ADDR) {
352 struct in_tproxy itp1, itp2;
353 memset(&itp1, 0, sizeof(itp1));
354
355 itp1.op = TPROXY_ASSIGN;
356 itp1.v.addr.faddr = s->tproxy_addr.sin_addr;
357 itp1.v.addr.fport = s->tproxy_addr.sin_port;
358
359 /* set connect flag on socket */
360 itp2.op = TPROXY_FLAGS;
361 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
362
363 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 ||
364 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) {
365 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
366 s->proxy->id, s->id);
367 s->result = -1;
368 }
369 }
370#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200371 }
372 else if (s->proxy->options & PR_O_BIND_SRC) {
373 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one));
374 if (bind(fd, (struct sockaddr *)&s->proxy->source_addr, sizeof(s->proxy->source_addr)) == -1) {
Willy Tarreau2b5652f2006-12-31 17:46:05 +0100375 Alert("Cannot bind to source address before connect() for %s '%s'. Aborting.\n",
376 proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200377 s->result = -1;
378 }
Willy Tarreau163c5322006-11-14 16:18:41 +0100379#ifdef CONFIG_HAP_CTTPROXY
380 if ((s->proxy->options & PR_O_TPXY_MASK) == PR_O_TPXY_ADDR) {
381 struct in_tproxy itp1, itp2;
382 memset(&itp1, 0, sizeof(itp1));
383
384 itp1.op = TPROXY_ASSIGN;
385 itp1.v.addr.faddr = s->tproxy_addr.sin_addr;
386 itp1.v.addr.fport = s->tproxy_addr.sin_port;
387
388 /* set connect flag on socket */
389 itp2.op = TPROXY_FLAGS;
390 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
391
392 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 ||
393 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) {
Willy Tarreau2b5652f2006-12-31 17:46:05 +0100394 Alert("Cannot bind to tproxy source address before connect() for %s '%s'. Aborting.\n",
395 proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreau163c5322006-11-14 16:18:41 +0100396 s->result = -1;
397 }
398 }
399#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400 }
401
402 if (!s->result) {
403 if ((connect(fd, (struct sockaddr *)&sa, sizeof(sa)) != -1) || (errno == EINPROGRESS)) {
404 /* OK, connection in progress or established */
405
406 //fprintf(stderr, "process_chk: 4\n");
407
408 s->curfd = fd; /* that's how we know a test is in progress ;-) */
Willy Tarreau7a966482007-04-15 10:58:02 +0200409 fd_insert(fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 fdtab[fd].owner = t;
Willy Tarreau54469402006-07-29 16:59:06 +0200411 fdtab[fd].cb[DIR_RD].f = &event_srv_chk_r;
412 fdtab[fd].cb[DIR_RD].b = NULL;
413 fdtab[fd].cb[DIR_WR].f = &event_srv_chk_w;
414 fdtab[fd].cb[DIR_WR].b = NULL;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200415 fdtab[fd].peeraddr = (struct sockaddr *)&sa;
416 fdtab[fd].peerlen = sizeof(sa);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417 fdtab[fd].state = FD_STCONN; /* connection in progress */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200418 fdtab[fd].ev = 0;
Willy Tarreauf161a342007-04-08 16:59:42 +0200419 EV_FD_SET(fd, DIR_WR); /* for connect status */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420#ifdef DEBUG_FULL
Willy Tarreauf161a342007-04-08 16:59:42 +0200421 assert (!EV_FD_ISSET(fd, DIR_RD));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200422#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200423 /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200424 tv_ms_add(&t->expire, &now, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200426 *next = t->expire;
Willy Tarreau8eee9c82007-05-14 03:40:11 +0200427 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200428 }
429 else if (errno != EALREADY && errno != EISCONN && errno != EAGAIN) {
430 s->result = -1; /* a real error */
431 }
432 }
433 }
434 close(fd); /* socket creation error */
435 }
436
437 if (!s->result) { /* nothing done */
438 //fprintf(stderr, "process_chk: 6\n");
Willy Tarreaua8b55e32007-05-13 16:08:19 +0200439 while (tv_isle(&t->expire, &now))
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200440 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200441 goto new_chk; /* may be we should initialize a new check */
442 }
443
444 /* here, we have seen a failure */
445 if (s->health > s->rise) {
446 s->health--; /* still good */
447 s->failed_checks++;
448 }
449 else
450 set_server_down(s);
451
452 //fprintf(stderr, "process_chk: 7\n");
453 /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */
Willy Tarreaua8b55e32007-05-13 16:08:19 +0200454 while (tv_isle(&t->expire, &now))
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200455 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456 goto new_chk;
457 }
458 else {
459 //fprintf(stderr, "process_chk: 8\n");
460 /* there was a test running */
461 if (s->result > 0) { /* good server detected */
462 //fprintf(stderr, "process_chk: 9\n");
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200463
464 if (s->health < s->rise + s->fall - 1) {
465 s->health++; /* was bad, stays for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200466
467 if (s->health == s->rise) {
468 int xferred;
469
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200470 if (s->last_change < now.tv_sec) // ignore negative times
471 s->down_time += now.tv_sec - s->last_change;
472 s->last_change = now.tv_sec;
473 s->state |= SRV_RUNNING;
474
475 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
476 if (s->proxy->last_change < now.tv_sec) // ignore negative times
477 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
478 s->proxy->last_change = now.tv_sec;
479 }
480
Willy Tarreaubaaee002006-06-26 02:48:02 +0200481 recount_servers(s->proxy);
Willy Tarreau5af3a692007-07-24 23:32:33 +0200482 s->proxy->map_state |= PR_MAP_RECALC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200483
484 /* check if we can handle some connections queued at the proxy. We
485 * will take as many as we can handle.
486 */
487 for (xferred = 0; !s->maxconn || xferred < srv_dynamic_maxconn(s); xferred++) {
488 struct session *sess;
489 struct pendconn *p;
490
491 p = pendconn_from_px(s->proxy);
492 if (!p)
493 break;
494 p->sess->srv = s;
495 sess = p->sess;
496 pendconn_free(p);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200497 task_wakeup(sess->task);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200498 }
499
500 sprintf(trash,
501 "%sServer %s/%s is UP. %d active and %d backup servers online.%s"
502 " %d sessions requeued, %d total in queue.\n",
503 s->state & SRV_BACKUP ? "Backup " : "",
504 s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck,
505 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
506 xferred, s->nbpend);
507
508 Warning("%s", trash);
509 send_log(s->proxy, LOG_NOTICE, "%s", trash);
510 }
511
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200512 if (s->health >= s->rise)
513 s->health = s->rise + s->fall - 1; /* OK now */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200514 }
515 s->curfd = -1; /* no check running anymore */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200516 fd_delete(fd);
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200517
518 rv = 0;
519 if (global.spread_checks > 0) {
520 rv = s->inter * global.spread_checks / 100;
521 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
522 //fprintf(stderr, "process_chk(%p): (%d+/-%d%%) random=%d\n", s, s->inter, global.spread_checks, rv);
523 }
524 tv_ms_add(&t->expire, &now, s->inter + rv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525 goto new_chk;
526 }
Willy Tarreaua8b55e32007-05-13 16:08:19 +0200527 else if (s->result < 0 || tv_isle(&t->expire, &now)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200528 //fprintf(stderr, "process_chk: 10\n");
529 /* failure or timeout detected */
530 if (s->health > s->rise) {
531 s->health--; /* still good */
532 s->failed_checks++;
533 }
534 else
535 set_server_down(s);
536 s->curfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537 fd_delete(fd);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200538
539 rv = 0;
540 if (global.spread_checks > 0) {
541 rv = s->inter * global.spread_checks / 100;
542 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200543 //fprintf(stderr, "process_chk(%p): (%d+/-%d%%) random=%d\n", s, s->inter, global.spread_checks, rv);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200544 }
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200545 tv_ms_add(&t->expire, &now, s->inter + rv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200546 goto new_chk;
547 }
548 /* if result is 0 and there's no timeout, we have to wait again */
549 }
550 //fprintf(stderr, "process_chk: 11\n");
551 s->result = 0;
552 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200553 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200554 out:
Willy Tarreaud825eef2007-05-12 22:35:00 +0200555 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200556}
557
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200558/*
559 * Start health-check.
560 * Returns 0 if OK, -1 if error, and prints the error in this case.
561 */
562int start_checks() {
563
564 struct proxy *px;
565 struct server *s;
566 struct task *t;
567 int nbchk=0, mininter=0, srvpos=0;
568
Willy Tarreau2c43a1e2007-10-14 23:05:39 +0200569 /* 1- count the checkers to run simultaneously.
570 * We also determine the minimum interval among all of those which
571 * have an interval larger than SRV_CHK_INTER_THRES. This interval
572 * will be used to spread their start-up date. Those which have
573 * a shorter interval will start independantly and will not dictate
574 * too short an interval for all others.
575 */
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200576 for (px = proxy; px; px = px->next) {
577 for (s = px->srv; s; s = s->next) {
578 if (!(s->state & SRV_CHECKED))
579 continue;
580
Willy Tarreau2c43a1e2007-10-14 23:05:39 +0200581 if ((s->inter >= SRV_CHK_INTER_THRES) &&
582 (!mininter || mininter > s->inter))
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200583 mininter = s->inter;
584
585 nbchk++;
586 }
587 }
588
589 if (!nbchk)
590 return 0;
591
592 srand((unsigned)time(NULL));
593
594 /*
595 * 2- start them as far as possible from each others. For this, we will
596 * start them after their interval set to the min interval divided by
597 * the number of servers, weighted by the server's position in the list.
598 */
599 for (px = proxy; px; px = px->next) {
600 for (s = px->srv; s; s = s->next) {
601 if (!(s->state & SRV_CHECKED))
602 continue;
603
604 if ((t = pool_alloc2(pool2_task)) == NULL) {
605 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
606 return -1;
607 }
608
609 t->wq = NULL;
610 t->qlist.p = NULL;
611 t->state = TASK_IDLE;
612 t->process = process_chk;
613 t->context = s;
614
615 /* check this every ms */
Willy Tarreau2c43a1e2007-10-14 23:05:39 +0200616 tv_ms_add(&t->expire, &now,
617 ((mininter && mininter >= s->inter) ? mininter : s->inter) * srvpos / nbchk);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200618 task_queue(t);
619
620 srvpos++;
621 }
622 }
623 return 0;
624}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200625
626/*
627 * Local variables:
628 * c-indent-level: 8
629 * c-basic-offset: 8
630 * End:
631 */