blob: 5e3c19d7e0b8a9315ec26a935428d59dbd925b23 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Health-checks functions.
3 *
Willy Tarreaue8c66af2008-01-13 18:40:14 +01004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
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 Tarreaub8816082008-01-18 12:18:15 +010014#include <assert.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020015#include <errno.h>
16#include <fcntl.h>
17#include <stdio.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020018#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020019#include <string.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021#include <unistd.h>
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
25
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/compat.h>
27#include <common/config.h>
28#include <common/mini-clist.h>
Willy Tarreau83749182007-04-15 20:56:27 +020029#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
32#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
34#include <proto/backend.h>
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +010035#include <proto/buffers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#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 Tarreaue8c66af2008-01-13 18:40:14 +010040#include <proto/proto_tcp.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010041#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/server.h>
43#include <proto/task.h>
44
Willy Tarreau48494c02007-11-30 10:41:39 +010045/* sends a log message when a backend goes down, and also sets last
46 * change date.
47 */
48static void set_backend_down(struct proxy *be)
49{
50 be->last_change = now.tv_sec;
51 be->down_trans++;
52
53 Alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id);
54 send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id);
55}
56
57/* Redistribute pending connections when a server goes down. The number of
58 * connections redistributed is returned.
59 */
60static int redistribute_pending(struct server *s)
61{
62 struct pendconn *pc, *pc_bck, *pc_end;
63 int xferred = 0;
64
65 FOREACH_ITEM_SAFE(pc, pc_bck, &s->pendconns, pc_end, struct pendconn *, list) {
66 struct session *sess = pc->sess;
67 if (sess->be->options & PR_O_REDISP) {
68 /* The REDISP option was specified. We will ignore
69 * cookie and force to balance or use the dispatcher.
70 */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010071
Krzysztof Piotr Oledzki5a329cf2008-02-22 03:50:19 +010072 /* it's left to the dispatcher to choose a server */
Willy Tarreau48494c02007-11-30 10:41:39 +010073 sess->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010074
Willy Tarreau48494c02007-11-30 10:41:39 +010075 pendconn_free(pc);
76 task_wakeup(sess->task);
77 xferred++;
78 }
79 }
80 return xferred;
81}
82
83/* Check for pending connections at the backend, and assign some of them to
84 * the server coming up. The server's weight is checked before being assigned
85 * connections it may not be able to handle. The total number of transferred
86 * connections is returned.
87 */
88static int check_for_pending(struct server *s)
89{
90 int xferred;
91
92 if (!s->eweight)
93 return 0;
94
95 for (xferred = 0; !s->maxconn || xferred < srv_dynamic_maxconn(s); xferred++) {
96 struct session *sess;
97 struct pendconn *p;
98
99 p = pendconn_from_px(s->proxy);
100 if (!p)
101 break;
102 p->sess->srv = s;
103 sess = p->sess;
104 pendconn_free(p);
105 task_wakeup(sess->task);
106 }
107 return xferred;
108}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109
110/* Sets server <s> down, notifies by all available means, recounts the
111 * remaining servers on the proxy and transfers queued sessions whenever
Willy Tarreau5af3a692007-07-24 23:32:33 +0200112 * possible to other servers. It automatically recomputes the number of
113 * servers, but not the map.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 */
Willy Tarreau83749182007-04-15 20:56:27 +0200115static void set_server_down(struct server *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116{
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100117 struct server *srv;
118 struct chunk msg;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 int xferred;
120
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100121 if (s->health == s->rise || s->tracked) {
Willy Tarreau48494c02007-11-30 10:41:39 +0100122 int srv_was_paused = s->state & SRV_GOINGDOWN;
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200123
124 s->last_change = now.tv_sec;
Willy Tarreau48494c02007-11-30 10:41:39 +0100125 s->state &= ~(SRV_RUNNING | SRV_GOINGDOWN);
Willy Tarreaub625a082007-11-26 01:15:43 +0100126 s->proxy->lbprm.set_server_status_down(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127
128 /* we might have sessions queued on this server and waiting for
129 * a connection. Those which are redispatchable will be queued
130 * to another server or to the proxy itself.
131 */
Willy Tarreau48494c02007-11-30 10:41:39 +0100132 xferred = redistribute_pending(s);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100133
134 msg.len = 0;
135 msg.str = trash;
136
137 chunk_printf(&msg, sizeof(trash),
138 "%sServer %s/%s is DOWN", s->state & SRV_BACKUP ? "Backup " : "",
139 s->proxy->id, s->id);
140
141 if (s->tracked)
142 chunk_printf(&msg, sizeof(trash), " via %s/%s",
143 s->tracked->proxy->id, s->tracked->id);
144
145 chunk_printf(&msg, sizeof(trash), ". %d active and %d backup servers left.%s"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146 " %d sessions active, %d requeued, %d remaining in queue.\n",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100147 s->proxy->srv_act, s->proxy->srv_bck,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
149 s->cur_sess, xferred, s->nbpend);
150
151 Warning("%s", trash);
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200152
Willy Tarreau48494c02007-11-30 10:41:39 +0100153 /* we don't send an alert if the server was previously paused */
154 if (srv_was_paused)
155 send_log(s->proxy, LOG_NOTICE, "%s", trash);
156 else
157 send_log(s->proxy, LOG_ALERT, "%s", trash);
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200158
Willy Tarreau48494c02007-11-30 10:41:39 +0100159 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
160 set_backend_down(s->proxy);
161
Willy Tarreaubaaee002006-06-26 02:48:02 +0200162 s->down_trans++;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100163
164 if (s->state && SRV_CHECKED)
165 for(srv = s->tracknext; srv; srv = srv->tracknext)
166 set_server_down(srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167 }
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100168
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169 s->health = 0; /* failure */
170}
171
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100172static void set_server_up(struct server *s) {
173
174 struct server *srv;
175 struct chunk msg;
176 int xferred;
177
178 if (s->health == s->rise || s->tracked) {
179 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
180 if (s->proxy->last_change < now.tv_sec) // ignore negative times
181 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
182 s->proxy->last_change = now.tv_sec;
183 }
184
185 if (s->last_change < now.tv_sec) // ignore negative times
186 s->down_time += now.tv_sec - s->last_change;
187
188 s->last_change = now.tv_sec;
189 s->state |= SRV_RUNNING;
190
191 if (s->slowstart > 0) {
192 s->state |= SRV_WARMINGUP;
193 if (s->proxy->lbprm.algo & BE_LB_PROP_DYN) {
194 /* For dynamic algorithms, start at the first step of the weight,
195 * without multiplying by BE_WEIGHT_SCALE.
196 */
197 s->eweight = s->uweight;
198 if (s->proxy->lbprm.update_server_eweight)
199 s->proxy->lbprm.update_server_eweight(s);
200 }
201 }
202 s->proxy->lbprm.set_server_status_up(s);
203
204 /* check if we can handle some connections queued at the proxy. We
205 * will take as many as we can handle.
206 */
207 xferred = check_for_pending(s);
208
209 msg.len = 0;
210 msg.str = trash;
211
212 chunk_printf(&msg, sizeof(trash),
213 "%sServer %s/%s is UP", s->state & SRV_BACKUP ? "Backup " : "",
214 s->proxy->id, s->id);
215
216 if (s->tracked)
217 chunk_printf(&msg, sizeof(trash), " via %s/%s",
218 s->tracked->proxy->id, s->tracked->id);
219
220 chunk_printf(&msg, sizeof(trash), ". %d active and %d backup servers online.%s"
221 " %d sessions requeued, %d total in queue.\n",
222 s->proxy->srv_act, s->proxy->srv_bck,
223 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
224 s->cur_sess, xferred, s->nbpend);
225
226 Warning("%s", trash);
227 send_log(s->proxy, LOG_NOTICE, "%s", trash);
228
229 if (s->state && SRV_CHECKED)
230 for(srv = s->tracknext; srv; srv = srv->tracknext)
231 set_server_up(srv);
232 }
233
234 if (s->health >= s->rise)
235 s->health = s->rise + s->fall - 1; /* OK now */
236
237}
238
239static void set_server_disabled(struct server *s) {
240
241 struct server *srv;
242 struct chunk msg;
243 int xferred;
244
245 s->state |= SRV_GOINGDOWN;
246 s->proxy->lbprm.set_server_status_down(s);
247
248 /* we might have sessions queued on this server and waiting for
249 * a connection. Those which are redispatchable will be queued
250 * to another server or to the proxy itself.
251 */
252 xferred = redistribute_pending(s);
253
254 msg.len = 0;
255 msg.str = trash;
256
257 chunk_printf(&msg, sizeof(trash),
258 "Load-balancing on %sServer %s/%s is disabled",
259 s->state & SRV_BACKUP ? "Backup " : "",
260 s->proxy->id, s->id);
261
262 if (s->tracked)
263 chunk_printf(&msg, sizeof(trash), " via %s/%s",
264 s->tracked->proxy->id, s->tracked->id);
265
266
267 chunk_printf(&msg, sizeof(trash),". %d active and %d backup servers online.%s"
268 " %d sessions requeued, %d total in queue.\n",
269 s->proxy->srv_act, s->proxy->srv_bck,
270 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
271 xferred, s->nbpend);
272
273 Warning("%s", trash);
274
275 send_log(s->proxy, LOG_NOTICE, "%s", trash);
276
277 if (!s->proxy->srv_bck && !s->proxy->srv_act)
278 set_backend_down(s->proxy);
279
280 if (s->state && SRV_CHECKED)
281 for(srv = s->tracknext; srv; srv = srv->tracknext)
282 set_server_disabled(srv);
283}
284
285static void set_server_enabled(struct server *s) {
286
287 struct server *srv;
288 struct chunk msg;
289 int xferred;
290
291 s->state &= ~SRV_GOINGDOWN;
292 s->proxy->lbprm.set_server_status_up(s);
293
294 /* check if we can handle some connections queued at the proxy. We
295 * will take as many as we can handle.
296 */
297 xferred = check_for_pending(s);
298
299 msg.len = 0;
300 msg.str = trash;
301
302 chunk_printf(&msg, sizeof(trash),
303 "Load-balancing on %sServer %s/%s is enabled again",
304 s->state & SRV_BACKUP ? "Backup " : "",
305 s->proxy->id, s->id);
306
307 if (s->tracked)
308 chunk_printf(&msg, sizeof(trash), " via %s/%s",
309 s->tracked->proxy->id, s->tracked->id);
310
311 chunk_printf(&msg, sizeof(trash), ". %d active and %d backup servers online.%s"
312 " %d sessions requeued, %d total in queue.\n",
313 s->proxy->srv_act, s->proxy->srv_bck,
314 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
315 xferred, s->nbpend);
316
317 Warning("%s", trash);
318 send_log(s->proxy, LOG_NOTICE, "%s", trash);
319
320 if (s->state && SRV_CHECKED)
321 for(srv = s->tracknext; srv; srv = srv->tracknext)
322 set_server_enabled(srv);
323}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324
325/*
326 * This function is used only for server health-checks. It handles
327 * the connection acknowledgement. If the proxy requires HTTP health-checks,
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100328 * it sends the request. In other cases, it fills s->result with SRV_CHK_*.
Willy Tarreau83749182007-04-15 20:56:27 +0200329 * The function itself returns 0 if it needs some polling before being called
330 * again, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200331 */
Willy Tarreau83749182007-04-15 20:56:27 +0200332static int event_srv_chk_w(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200333{
Willy Tarreau6996e152007-04-30 14:37:43 +0200334 __label__ out_wakeup, out_nowake, out_poll, out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200335 struct task *t = fdtab[fd].owner;
336 struct server *s = t->context;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100338 //fprintf(stderr, "event_srv_chk_w, state=%ld\n", unlikely(fdtab[fd].state));
Willy Tarreau6996e152007-04-30 14:37:43 +0200339 if (unlikely(fdtab[fd].state == FD_STERROR || (fdtab[fd].ev & FD_POLL_ERR)))
340 goto out_error;
341
342 /* here, we know that the connection is established */
Willy Tarreau83749182007-04-15 20:56:27 +0200343
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100344 if (!(s->result & SRV_CHK_ERROR)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200345 /* we don't want to mark 'UP' a server on which we detected an error earlier */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200346 if ((s->proxy->options & PR_O_HTTP_CHK) ||
Willy Tarreau23677902007-05-08 23:50:35 +0200347 (s->proxy->options & PR_O_SSL3_CHK) ||
348 (s->proxy->options & PR_O_SMTP_CHK)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200349 int ret;
Willy Tarreauf3c69202006-07-09 16:42:34 +0200350 /* we want to check if this host replies to HTTP or SSLv3 requests
Willy Tarreaubaaee002006-06-26 02:48:02 +0200351 * so we'll send the request, and won't wake the checker up now.
352 */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200353
354 if (s->proxy->options & PR_O_SSL3_CHK) {
355 /* SSL requires that we put Unix time in the request */
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200356 int gmt_time = htonl(date.tv_sec);
Willy Tarreauf3c69202006-07-09 16:42:34 +0200357 memcpy(s->proxy->check_req + 11, &gmt_time, 4);
358 }
359
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360#ifndef MSG_NOSIGNAL
361 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT);
362#else
363 ret = send(fd, s->proxy->check_req, s->proxy->check_len, MSG_DONTWAIT | MSG_NOSIGNAL);
364#endif
365 if (ret == s->proxy->check_len) {
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100366 /* we allow up to <timeout.check> if nonzero for a responce */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200367 t->expire = tick_add_ifset(now_ms, s->proxy->timeout.check);
Willy Tarreauf161a342007-04-08 16:59:42 +0200368 EV_FD_SET(fd, DIR_RD); /* prepare for reading reply */
Willy Tarreau83749182007-04-15 20:56:27 +0200369 goto out_nowake;
370 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200371 else if (ret == 0 || errno == EAGAIN)
372 goto out_poll;
373 else
374 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375 }
376 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200377 /* We have no data to send to check the connection, and
378 * getsockopt() will not inform us whether the connection
379 * is still pending. So we'll reuse connect() to check the
380 * state of the socket. This has the advantage of givig us
381 * the following info :
382 * - error
383 * - connecting (EALREADY, EINPROGRESS)
384 * - connected (EISCONN, 0)
385 */
386
387 struct sockaddr_in sa;
388
389 sa = (s->check_addr.sin_addr.s_addr) ? s->check_addr : s->addr;
390 sa.sin_port = htons(s->check_port);
391
392 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == 0)
393 errno = 0;
394
395 if (errno == EALREADY || errno == EINPROGRESS)
396 goto out_poll;
397
398 if (errno && errno != EISCONN)
399 goto out_error;
400
Willy Tarreaubaaee002006-06-26 02:48:02 +0200401 /* good TCP connection is enough */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100402 s->result |= SRV_CHK_RUNNING;
Willy Tarreau6996e152007-04-30 14:37:43 +0200403 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 }
405 }
Willy Tarreau83749182007-04-15 20:56:27 +0200406 out_wakeup:
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200407 task_wakeup(t);
Willy Tarreau83749182007-04-15 20:56:27 +0200408 out_nowake:
409 EV_FD_CLR(fd, DIR_WR); /* nothing more to write */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100410 fdtab[fd].ev &= ~FD_POLL_OUT;
Willy Tarreau83749182007-04-15 20:56:27 +0200411 return 1;
Willy Tarreau6996e152007-04-30 14:37:43 +0200412 out_poll:
413 /* The connection is still pending. We'll have to poll it
414 * before attempting to go further. */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100415 fdtab[fd].ev &= ~FD_POLL_OUT;
Willy Tarreau6996e152007-04-30 14:37:43 +0200416 return 0;
417 out_error:
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100418 s->result |= SRV_CHK_ERROR;
Willy Tarreau6996e152007-04-30 14:37:43 +0200419 fdtab[fd].state = FD_STERROR;
420 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200421}
422
423
424/*
Willy Tarreauf3c69202006-07-09 16:42:34 +0200425 * This function is used only for server health-checks. It handles the server's
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100426 * reply to an HTTP request or SSL HELLO. It sets s->result to SRV_CHK_RUNNING
427 * if an HTTP server replies HTTP 2xx or 3xx (valid responses), if an SMTP
428 * server returns 2xx, or if an SSL server returns at least 5 bytes in response
429 * to an SSL HELLO (the principle is that this is enough to distinguish between
430 * an SSL server and a pure TCP relay). All other cases will set s->result to
431 * SRV_CHK_ERROR. The function returns 0 if it needs to be called again after
432 * some polling, otherwise non-zero..
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 */
Willy Tarreau83749182007-04-15 20:56:27 +0200434static int event_srv_chk_r(int fd)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435{
Willy Tarreau83749182007-04-15 20:56:27 +0200436 __label__ out_wakeup;
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100437 int len;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200438 struct task *t = fdtab[fd].owner;
439 struct server *s = t->context;
440 int skerr;
441 socklen_t lskerr = sizeof(skerr);
442
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100443 len = -1;
Willy Tarreau83749182007-04-15 20:56:27 +0200444
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100445 if (unlikely((s->result & SRV_CHK_ERROR) ||
446 (fdtab[fd].state == FD_STERROR) ||
Willy Tarreau83749182007-04-15 20:56:27 +0200447 (fdtab[fd].ev & FD_POLL_ERR) ||
448 (getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == -1) ||
449 (skerr != 0))) {
450 /* in case of TCP only, this tells us if the connection failed */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100451 s->result |= SRV_CHK_ERROR;
Willy Tarreau83749182007-04-15 20:56:27 +0200452 goto out_wakeup;
453 }
454
Willy Tarreaubaaee002006-06-26 02:48:02 +0200455#ifndef MSG_NOSIGNAL
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200456 len = recv(fd, trash, sizeof(trash), 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200457#else
Willy Tarreau83749182007-04-15 20:56:27 +0200458 /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available
459 * but the connection was closed on the remote end. Fortunately, recv still
460 * works correctly and we don't need to do the getsockopt() on linux.
461 */
Krzysztof Oledzki6b3f8b42007-10-11 18:41:08 +0200462 len = recv(fd, trash, sizeof(trash), MSG_NOSIGNAL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200463#endif
Willy Tarreau83749182007-04-15 20:56:27 +0200464 if (unlikely(len < 0 && errno == EAGAIN)) {
465 /* we want some polling to happen first */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100466 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200467 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468 }
469
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100470 /* Note: the response will only be accepted if read at once */
471 if (s->proxy->options & PR_O_HTTP_CHK) {
472 /* Check if the server speaks HTTP 1.X */
473 if ((len < strlen("HTTP/1.0 000\r")) ||
474 (memcmp(trash, "HTTP/1.", 7) != 0)) {
475 s->result |= SRV_CHK_ERROR;
476 goto out_wakeup;
477 }
478
479 /* check the reply : HTTP/1.X 2xx and 3xx are OK */
480 if (trash[9] == '2' || trash[9] == '3')
481 s->result |= SRV_CHK_RUNNING;
Willy Tarreau48494c02007-11-30 10:41:39 +0100482 else if ((s->proxy->options & PR_O_DISABLE404) &&
483 (s->state & SRV_RUNNING) &&
484 (memcmp(&trash[9], "404", 3) == 0)) {
485 /* 404 may be accepted as "stopping" only if the server was up */
486 s->result |= SRV_CHK_RUNNING | SRV_CHK_DISABLE;
487 }
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100488 else
489 s->result |= SRV_CHK_ERROR;
490 }
491 else if (s->proxy->options & PR_O_SSL3_CHK) {
492 /* Check for SSLv3 alert or handshake */
493 if ((len >= 5) && (trash[0] == 0x15 || trash[0] == 0x16))
494 s->result |= SRV_CHK_RUNNING;
495 else
496 s->result |= SRV_CHK_ERROR;
Willy Tarreau6996e152007-04-30 14:37:43 +0200497 }
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100498 else if (s->proxy->options & PR_O_SMTP_CHK) {
499 /* Check for SMTP code 2xx (should be 250) */
500 if ((len >= 3) && (trash[0] == '2'))
501 s->result |= SRV_CHK_RUNNING;
502 else
503 s->result |= SRV_CHK_ERROR;
Willy Tarreau6996e152007-04-30 14:37:43 +0200504 }
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100505 else {
506 /* other checks are valid if the connection succeeded anyway */
507 s->result |= SRV_CHK_RUNNING;
Willy Tarreau23677902007-05-08 23:50:35 +0200508 }
Willy Tarreau83749182007-04-15 20:56:27 +0200509
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100510 out_wakeup:
511 if (s->result & SRV_CHK_ERROR)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200512 fdtab[fd].state = FD_STERROR;
513
Willy Tarreauf161a342007-04-08 16:59:42 +0200514 EV_FD_CLR(fd, DIR_RD);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200515 task_wakeup(t);
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100516 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200517 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200518}
519
520/*
521 * manages a server health-check. Returns
522 * the time the task accepts to wait, or TIME_ETERNITY for infinity.
523 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200524void process_chk(struct task *t, int *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525{
Willy Tarreau7317eb52007-05-09 00:54:10 +0200526 __label__ new_chk, out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200527 struct server *s = t->context;
528 struct sockaddr_in sa;
529 int fd;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200530 int rv;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200531
532 //fprintf(stderr, "process_chk: task=%p\n", t);
533
534 new_chk:
535 fd = s->curfd;
536 if (fd < 0) { /* no check currently running */
537 //fprintf(stderr, "process_chk: 2\n");
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200538 if (!tick_is_expired(t->expire, now_ms)) { /* not good time yet */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200539 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200540 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200541 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200542 }
543
544 /* we don't send any health-checks when the proxy is stopped or when
545 * the server should not be checked.
546 */
547 if (!(s->state & SRV_CHECKED) || s->proxy->state == PR_STSTOPPED) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200548 while (tick_is_expired(t->expire, now_ms))
549 t->expire = tick_add(t->expire, MS_TO_TICKS(s->inter));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200550 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200551 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200552 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200553 }
554
555 /* we'll initiate a new check */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100556 s->result = SRV_CHK_UNKNOWN; /* no result yet */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200557 if ((fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) != -1) {
558 if ((fd < global.maxsock) &&
559 (fcntl(fd, F_SETFL, O_NONBLOCK) != -1) &&
560 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)) != -1)) {
561 //fprintf(stderr, "process_chk: 3\n");
562
Willy Tarreau9edd1612007-10-18 18:07:48 +0200563 if (s->proxy->options & PR_O_TCP_NOLING) {
564 /* We don't want to useless data */
565 setsockopt(fd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
566 }
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200567
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200568 if (s->check_addr.sin_addr.s_addr)
569 /* we'll connect to the check addr specified on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200570 sa = s->check_addr;
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200571 else
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200572 /* we'll connect to the addr on the server */
Willy Tarreau2ea3abb2007-03-25 16:45:16 +0200573 sa = s->addr;
Willy Tarreau0f03c6f2007-03-25 20:46:19 +0200574
Willy Tarreaubaaee002006-06-26 02:48:02 +0200575 /* we'll connect to the check port on the server */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200576 sa.sin_port = htons(s->check_port);
577
578 /* allow specific binding :
579 * - server-specific at first
580 * - proxy-specific next
581 */
582 if (s->state & SRV_BIND_SRC) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100583 struct sockaddr_in *remote = NULL;
584 int ret, flags = 0;
Willy Tarreau163c5322006-11-14 16:18:41 +0100585
Willy Tarreaucf1d5722008-02-14 20:28:18 +0100586#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100587 if ((s->state & SRV_TPROXY_MASK) == SRV_TPROXY_ADDR) {
588 remote = (struct sockaddr_in *)&s->tproxy_addr;
589 flags = 3;
590 }
Willy Tarreaucf1d5722008-02-14 20:28:18 +0100591#endif
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100592 ret = tcpv4_bind_socket(fd, flags, &s->source_addr, remote);
593 if (ret) {
594 s->result |= SRV_CHK_ERROR;
595 switch (ret) {
596 case 1:
597 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
598 s->proxy->id, s->id);
599 break;
600 case 2:
Willy Tarreau163c5322006-11-14 16:18:41 +0100601 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
602 s->proxy->id, s->id);
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100603 break;
Willy Tarreau163c5322006-11-14 16:18:41 +0100604 }
605 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200606 }
607 else if (s->proxy->options & PR_O_BIND_SRC) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100608 struct sockaddr_in *remote = NULL;
609 int ret, flags = 0;
610
Willy Tarreaucf1d5722008-02-14 20:28:18 +0100611#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY)
Willy Tarreau163c5322006-11-14 16:18:41 +0100612 if ((s->proxy->options & PR_O_TPXY_MASK) == PR_O_TPXY_ADDR) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100613 remote = (struct sockaddr_in *)&s->proxy->tproxy_addr;
614 flags = 3;
615 }
Willy Tarreaucf1d5722008-02-14 20:28:18 +0100616#endif
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100617 ret = tcpv4_bind_socket(fd, flags, &s->proxy->source_addr, remote);
618 if (ret) {
619 s->result |= SRV_CHK_ERROR;
620 switch (ret) {
621 case 1:
622 Alert("Cannot bind to source address before connect() for %s '%s'. Aborting.\n",
623 proxy_type_str(s->proxy), s->proxy->id);
624 break;
625 case 2:
Willy Tarreau2b5652f2006-12-31 17:46:05 +0100626 Alert("Cannot bind to tproxy source address before connect() for %s '%s'. Aborting.\n",
627 proxy_type_str(s->proxy), s->proxy->id);
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100628 break;
Willy Tarreau163c5322006-11-14 16:18:41 +0100629 }
630 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 }
632
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100633 if (s->result == SRV_CHK_UNKNOWN) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 if ((connect(fd, (struct sockaddr *)&sa, sizeof(sa)) != -1) || (errno == EINPROGRESS)) {
635 /* OK, connection in progress or established */
636
637 //fprintf(stderr, "process_chk: 4\n");
638
639 s->curfd = fd; /* that's how we know a test is in progress ;-) */
Willy Tarreau7a966482007-04-15 10:58:02 +0200640 fd_insert(fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200641 fdtab[fd].owner = t;
Willy Tarreau54469402006-07-29 16:59:06 +0200642 fdtab[fd].cb[DIR_RD].f = &event_srv_chk_r;
643 fdtab[fd].cb[DIR_RD].b = NULL;
644 fdtab[fd].cb[DIR_WR].f = &event_srv_chk_w;
645 fdtab[fd].cb[DIR_WR].b = NULL;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200646 fdtab[fd].peeraddr = (struct sockaddr *)&sa;
647 fdtab[fd].peerlen = sizeof(sa);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200648 fdtab[fd].state = FD_STCONN; /* connection in progress */
Willy Tarreauf161a342007-04-08 16:59:42 +0200649 EV_FD_SET(fd, DIR_WR); /* for connect status */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200650#ifdef DEBUG_FULL
Willy Tarreauf161a342007-04-08 16:59:42 +0200651 assert (!EV_FD_ISSET(fd, DIR_RD));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200652#endif
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100653 //fprintf(stderr, "process_chk: 4+, %lu\n", __tv_to_ms(&s->proxy->timeout.connect));
654 /* we allow up to min(inter, timeout.connect) for a connection
655 * to establish but only when timeout.check is set
656 * as it may be to short for a full check otherwise
657 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200658 t->expire = tick_add(now_ms, MS_TO_TICKS(s->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100659
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200660 if (s->proxy->timeout.check && s->proxy->timeout.connect) {
661 int t_con = tick_add(now_ms, s->proxy->timeout.connect);
662 t->expire = tick_first(t->expire, t_con);
Willy Tarreau60548192008-02-17 11:34:10 +0100663 }
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100664
Willy Tarreaubaaee002006-06-26 02:48:02 +0200665 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200666 *next = t->expire;
Willy Tarreau8eee9c82007-05-14 03:40:11 +0200667 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200668 }
669 else if (errno != EALREADY && errno != EISCONN && errno != EAGAIN) {
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100670 s->result |= SRV_CHK_ERROR; /* a real error */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671 }
672 }
673 }
674 close(fd); /* socket creation error */
675 }
676
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100677 if (s->result == SRV_CHK_UNKNOWN) { /* nothing done */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200678 //fprintf(stderr, "process_chk: 6\n");
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200679 while (tick_is_expired(t->expire, now_ms))
680 t->expire = tick_add(t->expire, MS_TO_TICKS(s->inter));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200681 goto new_chk; /* may be we should initialize a new check */
682 }
683
684 /* here, we have seen a failure */
685 if (s->health > s->rise) {
686 s->health--; /* still good */
687 s->failed_checks++;
688 }
689 else
690 set_server_down(s);
691
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100692 //fprintf(stderr, "process_chk: 7, %lu\n", __tv_to_ms(&s->proxy->timeout.connect));
693 /* we allow up to min(inter, timeout.connect) for a connection
694 * to establish but only when timeout.check is set
695 * as it may be to short for a full check otherwise
696 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200697 while (tick_is_expired(t->expire, now_ms)) {
698 int t_con;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100699
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200700 t_con = tick_add(t->expire, s->proxy->timeout.connect);
701 t->expire = tick_add(t->expire, MS_TO_TICKS(s->inter));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100702
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200703 if (s->proxy->timeout.check)
704 t->expire = tick_first(t->expire, t_con);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100705 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200706 goto new_chk;
707 }
708 else {
709 //fprintf(stderr, "process_chk: 8\n");
710 /* there was a test running */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100711 if ((s->result & (SRV_CHK_ERROR|SRV_CHK_RUNNING)) == SRV_CHK_RUNNING) { /* good server detected */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200712 //fprintf(stderr, "process_chk: 9\n");
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200713
Willy Tarreau9909fc12007-11-30 17:42:05 +0100714 if (s->state & SRV_WARMINGUP) {
715 if (now.tv_sec < s->last_change || now.tv_sec >= s->last_change + s->slowstart) {
716 s->state &= ~SRV_WARMINGUP;
717 if (s->proxy->lbprm.algo & BE_LB_PROP_DYN)
718 s->eweight = s->uweight * BE_WEIGHT_SCALE;
719 if (s->proxy->lbprm.update_server_eweight)
720 s->proxy->lbprm.update_server_eweight(s);
721 }
722 else if (s->proxy->lbprm.algo & BE_LB_PROP_DYN) {
723 /* for dynamic algorithms, let's update the weight */
Willy Tarreau5542af62007-12-03 02:04:00 +0100724 s->eweight = (BE_WEIGHT_SCALE * (now.tv_sec - s->last_change) +
725 s->slowstart - 1) / s->slowstart;
Willy Tarreau9909fc12007-11-30 17:42:05 +0100726 s->eweight *= s->uweight;
727 if (s->proxy->lbprm.update_server_eweight)
728 s->proxy->lbprm.update_server_eweight(s);
729 }
730 /* probably that we can refill this server with a bit more connections */
731 check_for_pending(s);
732 }
733
Willy Tarreau48494c02007-11-30 10:41:39 +0100734 /* we may have to add/remove this server from the LB group */
735 if ((s->state & SRV_RUNNING) && (s->proxy->options & PR_O_DISABLE404)) {
736 if ((s->state & SRV_GOINGDOWN) &&
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100737 ((s->result & (SRV_CHK_RUNNING|SRV_CHK_DISABLE)) == SRV_CHK_RUNNING))
738 set_server_enabled(s);
Willy Tarreau48494c02007-11-30 10:41:39 +0100739 else if (!(s->state & SRV_GOINGDOWN) &&
740 ((s->result & (SRV_CHK_RUNNING | SRV_CHK_DISABLE)) ==
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100741 (SRV_CHK_RUNNING | SRV_CHK_DISABLE)))
742 set_server_disabled(s);
Willy Tarreau48494c02007-11-30 10:41:39 +0100743 }
744
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200745 if (s->health < s->rise + s->fall - 1) {
746 s->health++; /* was bad, stays for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200747
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100748 set_server_up(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200749 }
750 s->curfd = -1; /* no check running anymore */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200751 fd_delete(fd);
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200752
753 rv = 0;
754 if (global.spread_checks > 0) {
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100755 rv = srv_getinter(s) * global.spread_checks / 100;
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200756 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100757 //fprintf(stderr, "process_chk(%p): (%d+/-%d%%) random=%d\n", s, srv_getinter(s), global.spread_checks, rv);
Willy Tarreau44ec0f02007-10-14 23:47:04 +0200758 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200759 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(s) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200760 goto new_chk;
761 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200762 else if ((s->result & SRV_CHK_ERROR) || tick_is_expired(t->expire, now_ms)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200763 //fprintf(stderr, "process_chk: 10\n");
764 /* failure or timeout detected */
765 if (s->health > s->rise) {
766 s->health--; /* still good */
767 s->failed_checks++;
768 }
769 else
770 set_server_down(s);
771 s->curfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772 fd_delete(fd);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200773
774 rv = 0;
775 if (global.spread_checks > 0) {
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100776 rv = srv_getinter(s) * global.spread_checks / 100;
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200777 rv -= (int) (2 * rv * (rand() / (RAND_MAX + 1.0)));
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100778 //fprintf(stderr, "process_chk(%p): (%d+/-%d%%) random=%d\n", s, srv_getinter(s), global.spread_checks, rv);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200779 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200780 t->expire = tick_add(now_ms, MS_TO_TICKS(srv_getinter(s) + rv));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781 goto new_chk;
782 }
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100783 /* if result is unknown and there's no timeout, we have to wait again */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200784 }
785 //fprintf(stderr, "process_chk: 11\n");
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100786 s->result = SRV_CHK_UNKNOWN;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787 task_queue(t); /* restore t to its place in the task list */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200788 *next = t->expire;
Willy Tarreau7317eb52007-05-09 00:54:10 +0200789 out:
Willy Tarreaud825eef2007-05-12 22:35:00 +0200790 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200791}
792
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200793/*
794 * Start health-check.
795 * Returns 0 if OK, -1 if error, and prints the error in this case.
796 */
797int start_checks() {
798
799 struct proxy *px;
800 struct server *s;
801 struct task *t;
802 int nbchk=0, mininter=0, srvpos=0;
803
Willy Tarreau2c43a1e2007-10-14 23:05:39 +0200804 /* 1- count the checkers to run simultaneously.
805 * We also determine the minimum interval among all of those which
806 * have an interval larger than SRV_CHK_INTER_THRES. This interval
807 * will be used to spread their start-up date. Those which have
808 * a shorter interval will start independantly and will not dictate
809 * too short an interval for all others.
810 */
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200811 for (px = proxy; px; px = px->next) {
812 for (s = px->srv; s; s = s->next) {
813 if (!(s->state & SRV_CHECKED))
814 continue;
815
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100816 if ((srv_getinter(s) >= SRV_CHK_INTER_THRES) &&
817 (!mininter || mininter > srv_getinter(s)))
818 mininter = srv_getinter(s);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200819
820 nbchk++;
821 }
822 }
823
824 if (!nbchk)
825 return 0;
826
827 srand((unsigned)time(NULL));
828
829 /*
830 * 2- start them as far as possible from each others. For this, we will
831 * start them after their interval set to the min interval divided by
832 * the number of servers, weighted by the server's position in the list.
833 */
834 for (px = proxy; px; px = px->next) {
835 for (s = px->srv; s; s = s->next) {
836 if (!(s->state & SRV_CHECKED))
837 continue;
838
839 if ((t = pool_alloc2(pool2_task)) == NULL) {
840 Alert("Starting [%s:%s] check: out of memory.\n", px->id, s->id);
841 return -1;
842 }
843
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200844 s->check = t;
845
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200846 task_init(t);
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200847 t->process = process_chk;
848 t->context = s;
849
850 /* check this every ms */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200851 t->expire = tick_add(now_ms,
852 MS_TO_TICKS(((mininter && mininter >= srv_getinter(s)) ?
853 mininter : srv_getinter(s)) * srvpos / nbchk));
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200854 task_queue(t);
855
856 srvpos++;
857 }
858 }
859 return 0;
860}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200861
862/*
863 * Local variables:
864 * c-indent-level: 8
865 * c-basic-offset: 8
866 * End:
867 */