blob: 83a539eea1b02c4c875e15545ea5e4316ae01fb8 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Health-checks functions.
3 *
4 * Copyright 2000-2006 Willy Tarreau <w@1wt.eu>
5 *
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>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020016#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020017#include <unistd.h>
18#include <sys/socket.h>
19#include <netinet/in.h>
20#include <arpa/inet.h>
21
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
23#include <common/config.h>
24#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020025#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
28#include <types/global.h>
29#include <types/polling.h>
30#include <types/proxy.h>
31#include <types/session.h>
32
33#include <proto/backend.h>
34#include <proto/fd.h>
35#include <proto/log.h>
36#include <proto/queue.h>
Willy Tarreau3d300592007-03-18 18:34:41 +010037#include <proto/proto_http.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010038#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/server.h>
40#include <proto/task.h>
41
Willy Tarreau163c5322006-11-14 16:18:41 +010042#ifdef CONFIG_HAP_CTTPROXY
43#include <import/ip_tproxy.h>
44#endif
45
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47/* Sets server <s> down, notifies by all available means, recounts the
48 * remaining servers on the proxy and transfers queued sessions whenever
49 * possible to other servers.
50 */
Willy Tarreau83749182007-04-15 20:56:27 +020051static void set_server_down(struct server *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +020052{
53 struct pendconn *pc, *pc_bck, *pc_end;
54 struct session *sess;
55 int xferred;
56
57 s->state &= ~SRV_RUNNING;
58
59 if (s->health == s->rise) {
60 recount_servers(s->proxy);
61 recalc_server_map(s->proxy);
62
63 /* we might have sessions queued on this server and waiting for
64 * a connection. Those which are redispatchable will be queued
65 * to another server or to the proxy itself.
66 */
67 xferred = 0;
68 FOREACH_ITEM_SAFE(pc, pc_bck, &s->pendconns, pc_end, struct pendconn *, list) {
69 sess = pc->sess;
Willy Tarreaue2e27a52007-04-01 00:01:37 +020070 if ((sess->be->options & PR_O_REDISP)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020071 /* The REDISP option was specified. We will ignore
72 * cookie and force to balance or use the dispatcher.
73 */
74 sess->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
75 sess->srv = NULL; /* it's left to the dispatcher to choose a server */
Willy Tarreau3d300592007-03-18 18:34:41 +010076 http_flush_cookie_flags(&sess->txn);
Willy Tarreaubaaee002006-06-26 02:48:02 +020077 pendconn_free(pc);
Willy Tarreau96bcfd72007-04-29 10:41:56 +020078 task_wakeup(sess->task);
Willy Tarreaubaaee002006-06-26 02:48:02 +020079 xferred++;
80 }
81 }
82
83 sprintf(trash, "%sServer %s/%s is DOWN. %d active and %d backup servers left.%s"
84 " %d sessions active, %d requeued, %d remaining in queue.\n",
85 s->state & SRV_BACKUP ? "Backup " : "",
86 s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck,
87 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
88 s->cur_sess, xferred, s->nbpend);
89
90 Warning("%s", trash);
91 send_log(s->proxy, LOG_ALERT, "%s", trash);
92
93 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
Willy Tarreau2b5652f2006-12-31 17:46:05 +010094 Alert("%s '%s' has no server available !\n", proxy_type_str(s->proxy), s->proxy->id);
95 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 +020096 }
97 s->down_trans++;
98 }
99 s->health = 0; /* failure */
100}
101
102
103/*
104 * This function is used only for server health-checks. It handles
105 * the connection acknowledgement. If the proxy requires HTTP health-checks,
Willy Tarreau83749182007-04-15 20:56:27 +0200106 * it sends the request. In other cases, it returns 1 in s->result if the
107 * socket is OK, or -1 if an error occured.
108 * The function itself returns 0 if it needs some polling before being called
109 * again, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110 */
Willy Tarreau83749182007-04-15 20:56:27 +0200111static int event_srv_chk_w(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112{
Willy Tarreau6996e152007-04-30 14:37:43 +0200113 __label__ out_wakeup, out_nowake, out_poll, out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 struct task *t = fdtab[fd].owner;
115 struct server *s = t->context;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116
Willy Tarreau6996e152007-04-30 14:37:43 +0200117 if (unlikely(fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR)))
118 goto out_error;
119
120 /* here, we know that the connection is established */
Willy Tarreau83749182007-04-15 20:56:27 +0200121
122 if (s->result != -1) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123 /* we don't want to mark 'UP' a server on which we detected an error earlier */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200124 if ((s->proxy->options & PR_O_HTTP_CHK) ||
Willy Tarreau23677902007-05-08 23:50:35 +0200125 (s->proxy->options & PR_O_SSL3_CHK) ||
126 (s->proxy->options & PR_O_SMTP_CHK)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 int ret;
Willy Tarreauf3c69202006-07-09 16:42:34 +0200128 /* we want to check if this host replies to HTTP or SSLv3 requests
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 * so we'll send the request, and won't wake the checker up now.
130 */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200131
132 if (s->proxy->options & PR_O_SSL3_CHK) {
133 /* SSL requires that we put Unix time in the request */
134 int gmt_time = htonl(now.tv_sec);
135 memcpy(s->proxy->check_req + 11, &gmt_time, 4);
136 }
137
Willy Tarreaubaaee002006-06-26 02:48:02 +0200138#ifndef MSG_NOSIGNAL
139 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT);
140#else
141 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT | MSG_NOSIGNAL);
142#endif
143 if (ret == s->proxy->check_len) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200144 EV_FD_SET(fd, DIR_RD); /* prepare for reading reply */
Willy Tarreau83749182007-04-15 20:56:27 +0200145 goto out_nowake;
146 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200147 else if (ret == 0 || errno == EAGAIN)
148 goto out_poll;
149 else
150 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 }
152 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200153 /* We have no data to send to check the connection, and
154 * getsockopt() will not inform us whether the connection
155 * is still pending. So we'll reuse connect() to check the
156 * state of the socket. This has the advantage of givig us
157 * the following info :
158 * - error
159 * - connecting (EALREADY, EINPROGRESS)
160 * - connected (EISCONN, 0)
161 */
162
163 struct sockaddr_in sa;
164
165 sa = (s->check_addr.sin_addr.s_addr) ? s->check_addr : s->addr;
166 sa.sin_port = htons(s->check_port);
167
168 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == 0)
169 errno = 0;
170
171 if (errno == EALREADY || errno == EINPROGRESS)
172 goto out_poll;
173
174 if (errno && errno != EISCONN)
175 goto out_error;
176
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177 /* good TCP connection is enough */
178 s->result = 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200179 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180 }
181 }
Willy Tarreau83749182007-04-15 20:56:27 +0200182 out_wakeup:
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200183 task_wakeup(t);
Willy Tarreau83749182007-04-15 20:56:27 +0200184 out_nowake:
185 EV_FD_CLR(fd, DIR_WR); /* nothing more to write */
186 fdtab[fd].ev &= ~FD_POLL_WR;
187 return 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200188 out_poll:
189 /* The connection is still pending. We'll have to poll it
190 * before attempting to go further. */
191 fdtab[fd].ev &= ~FD_POLL_WR;
192 return 0;
193 out_error:
194 s->result = -1;
195 fdtab[fd].state = FD_STERROR;
196 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197}
198
199
200/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200201 * This function is used only for server health-checks. It handles the server's
202 * reply to an HTTP request or SSL HELLO. It returns 1 in s->result if the
203 * server replies HTTP 2xx or 3xx (valid responses), or if it returns at least
204 * 5 bytes in response to SSL HELLO. The principle is that this is enough to
205 * distinguish between an SSL server and a pure TCP relay. All other cases will
Willy Tarreau83749182007-04-15 20:56:27 +0200206 * return -1. The function returns 0 if it needs to be called again after some
207 * polling, otherwise non-zero..
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208 */
Willy Tarreau83749182007-04-15 20:56:27 +0200209static int event_srv_chk_r(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210{
Willy Tarreau83749182007-04-15 20:56:27 +0200211 __label__ out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212 char reply[64];
213 int len, result;
214 struct task *t = fdtab[fd].owner;
215 struct server *s = t->context;
216 int skerr;
217 socklen_t lskerr = sizeof(skerr);
218
219 result = len = -1;
Willy Tarreau83749182007-04-15 20:56:27 +0200220
221 if (unlikely(fdtab[fd].state == FD_STERROR ||
222 (fdtab[fd].ev & FD_POLL_ERR) ||
223 (getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == -1) ||
224 (skerr != 0))) {
225 /* in case of TCP only, this tells us if the connection failed */
226 s->result = -1;
227 fdtab[fd].state = FD_STERROR;
228 goto out_wakeup;
229 }
230
Willy Tarreaubaaee002006-06-26 02:48:02 +0200231#ifndef MSG_NOSIGNAL
Willy Tarreau83749182007-04-15 20:56:27 +0200232 len = recv(fd, reply, sizeof(reply), 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200233#else
Willy Tarreau83749182007-04-15 20:56:27 +0200234 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
235 * but the connection was closed on the remote end. Fortunately, recv still
236 * works correctly and we don't need to do the getsockopt() on linux.
237 */
238 len = recv(fd, reply, sizeof(reply), MSG_NOSIGNAL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200239#endif
Willy Tarreau83749182007-04-15 20:56:27 +0200240 if (unlikely(len < 0 && errno == EAGAIN)) {
241 /* we want some polling to happen first */
242 fdtab[fd].ev &= ~FD_POLL_RD;
243 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200244 }
245
Willy Tarreau6996e152007-04-30 14:37:43 +0200246 if ((s->proxy->options & PR_O_HTTP_CHK) && (len >= sizeof("HTTP/1.0 000")) &&
247 (memcmp(reply, "HTTP/1.", 7) == 0) && (reply[9] == '2' || reply[9] == '3')) {
248 /* HTTP/1.X 2xx or 3xx */
Willy Tarreau83749182007-04-15 20:56:27 +0200249 result = 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200250 }
251 else if ((s->proxy->options & PR_O_SSL3_CHK) && (len >= 5) &&
252 (reply[0] == 0x15 || reply[0] == 0x16)) {
253 /* SSLv3 alert or handshake */
254 result = 1;
255 }
Willy Tarreau23677902007-05-08 23:50:35 +0200256 else if ((s->proxy->options & PR_O_SMTP_CHK) && (len >= 3) &&
257 (reply[0] == '2')) /* 2xx (should be 250) */ {
258 result = 1;
259 }
Willy Tarreau83749182007-04-15 20:56:27 +0200260
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261 if (result == -1)
262 fdtab[fd].state = FD_STERROR;
263
264 if (s->result != -1)
265 s->result = result;
266
Willy Tarreau83749182007-04-15 20:56:27 +0200267 out_wakeup:
Willy Tarreauf161a342007-04-08 16:59:42 +0200268 EV_FD_CLR(fd, DIR_RD);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200269 task_wakeup(t);
Willy Tarreau83749182007-04-15 20:56:27 +0200270 fdtab[fd].ev &= ~FD_POLL_RD;
271 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200272}
273
274/*
275 * manages a server health-check. Returns
276 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
277 */
278int process_chk(struct task *t)
279{
Willy Tarreau7317eb52007-05-09 00:54:10 +0200280 __label__ new_chk, out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200281 struct server *s = t->context;
282 struct sockaddr_in sa;
283 int fd;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200284 int next_time;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200285
286 //fprintf(stderr, "process_chk: task=%p\n", t);
287
288 new_chk:
289 fd = s->curfd;
290 if (fd < 0) { /* no check currently running */
291 //fprintf(stderr, "process_chk: 2\n");
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200292 if (!tv_ms_le2(&t->expire, &now)) { /* not good time yet */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200293 task_queue(t); /* restore t to its place in the task list */
Willy Tarreau7317eb52007-05-09 00:54:10 +0200294 next_time = tv_ms_remain2(&now, &t->expire);
295 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200296 }
297
298 /* we don't send any health-checks when the proxy is stopped or when
299 * the server should not be checked.
300 */
301 if (!(s->state & SRV_CHECKED) || s->proxy->state == PR_STSTOPPED) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200302 while (tv_ms_le2(&t->expire, &now))
303 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200304 task_queue(t); /* restore t to its place in the task list */
Willy Tarreau7317eb52007-05-09 00:54:10 +0200305 next_time = tv_ms_remain2(&now, &t->expire);
306 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307 }
308
309 /* we'll initiate a new check */
310 s->result = 0; /* no result yet */
311 if ((fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) != -1) {
312 if ((fd < global.maxsock) &&
313 (fcntl(fd, F_SETFL, O_NONBLOCK) != -1) &&
314 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)) != -1)) {
315 //fprintf(stderr, "process_chk: 3\n");
316
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200317
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200318 if (s->check_addr.sin_addr.s_addr)
319 /* we'll connect to the check addr specified on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200320 sa = s->check_addr;
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200321 else
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200322 /* we'll connect to the addr on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200323 sa = s->addr;
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200324
Willy Tarreaubaaee002006-06-26 02:48:02 +0200325 /* we'll connect to the check port on the server */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326 sa.sin_port = htons(s->check_port);
327
328 /* allow specific binding :
329 * - server-specific at first
330 * - proxy-specific next
331 */
332 if (s->state & SRV_BIND_SRC) {
333 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one));
334 if (bind(fd, (struct sockaddr *)&s->source_addr, sizeof(s->source_addr)) == -1) {
335 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
336 s->proxy->id, s->id);
337 s->result = -1;
338 }
Willy Tarreau163c5322006-11-14 16:18:41 +0100339#ifdef CONFIG_HAP_CTTPROXY
340 if ((s->state & SRV_TPROXY_MASK) == SRV_TPROXY_ADDR) {
341 struct in_tproxy itp1, itp2;
342 memset(&itp1, 0, sizeof(itp1));
343
344 itp1.op = TPROXY_ASSIGN;
345 itp1.v.addr.faddr = s->tproxy_addr.sin_addr;
346 itp1.v.addr.fport = s->tproxy_addr.sin_port;
347
348 /* set connect flag on socket */
349 itp2.op = TPROXY_FLAGS;
350 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
351
352 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 ||
353 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) {
354 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
355 s->proxy->id, s->id);
356 s->result = -1;
357 }
358 }
359#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360 }
361 else if (s->proxy->options & PR_O_BIND_SRC) {
362 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one));
363 if (bind(fd, (struct sockaddr *)&s->proxy->source_addr, sizeof(s->proxy->source_addr)) == -1) {
Willy Tarreau2b5652f2006-12-31 17:46:05 +0100364 Alert("Cannot bind to source address before connect() for %s '%s'. Aborting.\n",
365 proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200366 s->result = -1;
367 }
Willy Tarreau163c5322006-11-14 16:18:41 +0100368#ifdef CONFIG_HAP_CTTPROXY
369 if ((s->proxy->options & PR_O_TPXY_MASK) == PR_O_TPXY_ADDR) {
370 struct in_tproxy itp1, itp2;
371 memset(&itp1, 0, sizeof(itp1));
372
373 itp1.op = TPROXY_ASSIGN;
374 itp1.v.addr.faddr = s->tproxy_addr.sin_addr;
375 itp1.v.addr.fport = s->tproxy_addr.sin_port;
376
377 /* set connect flag on socket */
378 itp2.op = TPROXY_FLAGS;
379 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
380
381 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 ||
382 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) {
Willy Tarreau2b5652f2006-12-31 17:46:05 +0100383 Alert("Cannot bind to tproxy source address before connect() for %s '%s'. Aborting.\n",
384 proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreau163c5322006-11-14 16:18:41 +0100385 s->result = -1;
386 }
387 }
388#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200389 }
390
391 if (!s->result) {
392 if ((connect(fd, (struct sockaddr *)&sa, sizeof(sa)) != -1) || (errno == EINPROGRESS)) {
393 /* OK, connection in progress or established */
394
395 //fprintf(stderr, "process_chk: 4\n");
396
397 s->curfd = fd; /* that's how we know a test is in progress ;-) */
Willy Tarreau7a966482007-04-15 10:58:02 +0200398 fd_insert(fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399 fdtab[fd].owner = t;
Willy Tarreau54469402006-07-29 16:59:06 +0200400 fdtab[fd].cb[DIR_RD].f = &event_srv_chk_r;
401 fdtab[fd].cb[DIR_RD].b = NULL;
402 fdtab[fd].cb[DIR_WR].f = &event_srv_chk_w;
403 fdtab[fd].cb[DIR_WR].b = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 fdtab[fd].state = FD_STCONN; /* connection in progress */
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200405 fdtab[fd].ev = 0;
Willy Tarreauf161a342007-04-08 16:59:42 +0200406 EV_FD_SET(fd, DIR_WR); /* for connect status */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407#ifdef DEBUG_FULL
Willy Tarreauf161a342007-04-08 16:59:42 +0200408 assert (!EV_FD_ISSET(fd, DIR_RD));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200411 tv_ms_add(&t->expire, &now, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200412 task_queue(t); /* restore t to its place in the task list */
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200413 return tv_ms_remain(&now, &t->expire);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414 }
415 else if (errno != EALREADY && errno != EISCONN && errno != EAGAIN) {
416 s->result = -1; /* a real error */
417 }
418 }
419 }
420 close(fd); /* socket creation error */
421 }
422
423 if (!s->result) { /* nothing done */
424 //fprintf(stderr, "process_chk: 6\n");
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200425 while (tv_ms_le2(&t->expire, &now))
426 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200427 goto new_chk; /* may be we should initialize a new check */
428 }
429
430 /* here, we have seen a failure */
431 if (s->health > s->rise) {
432 s->health--; /* still good */
433 s->failed_checks++;
434 }
435 else
436 set_server_down(s);
437
438 //fprintf(stderr, "process_chk: 7\n");
439 /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200440 while (tv_ms_le2(&t->expire, &now))
441 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200442 goto new_chk;
443 }
444 else {
445 //fprintf(stderr, "process_chk: 8\n");
446 /* there was a test running */
447 if (s->result > 0) { /* good server detected */
448 //fprintf(stderr, "process_chk: 9\n");
449 s->health++; /* was bad, stays for a while */
450 if (s->health >= s->rise) {
451 s->state |= SRV_RUNNING;
452
453 if (s->health == s->rise) {
454 int xferred;
455
456 recount_servers(s->proxy);
457 recalc_server_map(s->proxy);
458
459 /* check if we can handle some connections queued at the proxy. We
460 * will take as many as we can handle.
461 */
462 for (xferred = 0; !s->maxconn || xferred < srv_dynamic_maxconn(s); xferred++) {
463 struct session *sess;
464 struct pendconn *p;
465
466 p = pendconn_from_px(s->proxy);
467 if (!p)
468 break;
469 p->sess->srv = s;
470 sess = p->sess;
471 pendconn_free(p);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200472 task_wakeup(sess->task);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200473 }
474
475 sprintf(trash,
476 "%sServer %s/%s is UP. %d active and %d backup servers online.%s"
477 " %d sessions requeued, %d total in queue.\n",
478 s->state & SRV_BACKUP ? "Backup " : "",
479 s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck,
480 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
481 xferred, s->nbpend);
482
483 Warning("%s", trash);
484 send_log(s->proxy, LOG_NOTICE, "%s", trash);
485 }
486
487 s->health = s->rise + s->fall - 1; /* OK now */
488 }
489 s->curfd = -1; /* no check running anymore */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200490 fd_delete(fd);
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200491 while (tv_ms_le2(&t->expire, &now))
492 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200493 goto new_chk;
494 }
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200495 else if (s->result < 0 || tv_ms_le2(&t->expire, &now)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200496 //fprintf(stderr, "process_chk: 10\n");
497 /* failure or timeout detected */
498 if (s->health > s->rise) {
499 s->health--; /* still good */
500 s->failed_checks++;
501 }
502 else
503 set_server_down(s);
504 s->curfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200505 fd_delete(fd);
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200506 while (tv_ms_le2(&t->expire, &now))
507 tv_ms_add(&t->expire, &t->expire, s->inter);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200508 goto new_chk;
509 }
510 /* if result is 0 and there's no timeout, we have to wait again */
511 }
512 //fprintf(stderr, "process_chk: 11\n");
513 s->result = 0;
514 task_queue(t); /* restore t to its place in the task list */
Willy Tarreau7317eb52007-05-09 00:54:10 +0200515 next_time = tv_ms_remain2(&now, &t->expire);
516 out:
517 /* Ensure that we don't report sub-millisecond timeouts */
518 if (next_time != TIME_ETERNITY)
519 next_time++;
520 return next_time;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200521}
522
523
524/*
525 * Local variables:
526 * c-indent-level: 8
527 * c-basic-offset: 8
528 * End:
529 */