Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 16 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 17 | #include <unistd.h> |
| 18 | #include <sys/socket.h> |
| 19 | #include <netinet/in.h> |
| 20 | #include <arpa/inet.h> |
| 21 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <common/compat.h> |
| 23 | #include <common/config.h> |
| 24 | #include <common/mini-clist.h> |
| 25 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | |
| 27 | #include <types/global.h> |
| 28 | #include <types/polling.h> |
| 29 | #include <types/proxy.h> |
| 30 | #include <types/session.h> |
| 31 | |
| 32 | #include <proto/backend.h> |
| 33 | #include <proto/fd.h> |
| 34 | #include <proto/log.h> |
| 35 | #include <proto/queue.h> |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 36 | #include <proto/proto_http.h> |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 37 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 38 | #include <proto/server.h> |
| 39 | #include <proto/task.h> |
| 40 | |
Willy Tarreau | 163c532 | 2006-11-14 16:18:41 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_HAP_CTTPROXY |
| 42 | #include <import/ip_tproxy.h> |
| 43 | #endif |
| 44 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | |
| 46 | /* Sets server <s> down, notifies by all available means, recounts the |
| 47 | * remaining servers on the proxy and transfers queued sessions whenever |
| 48 | * possible to other servers. |
| 49 | */ |
| 50 | void set_server_down(struct server *s) |
| 51 | { |
| 52 | struct pendconn *pc, *pc_bck, *pc_end; |
| 53 | struct session *sess; |
| 54 | int xferred; |
| 55 | |
| 56 | s->state &= ~SRV_RUNNING; |
| 57 | |
| 58 | if (s->health == s->rise) { |
| 59 | recount_servers(s->proxy); |
| 60 | recalc_server_map(s->proxy); |
| 61 | |
| 62 | /* we might have sessions queued on this server and waiting for |
| 63 | * a connection. Those which are redispatchable will be queued |
| 64 | * to another server or to the proxy itself. |
| 65 | */ |
| 66 | xferred = 0; |
| 67 | FOREACH_ITEM_SAFE(pc, pc_bck, &s->pendconns, pc_end, struct pendconn *, list) { |
| 68 | sess = pc->sess; |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 69 | if ((sess->be->options & PR_O_REDISP)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 70 | /* The REDISP option was specified. We will ignore |
| 71 | * cookie and force to balance or use the dispatcher. |
| 72 | */ |
| 73 | sess->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET); |
| 74 | sess->srv = NULL; /* it's left to the dispatcher to choose a server */ |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 75 | http_flush_cookie_flags(&sess->txn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 76 | pendconn_free(pc); |
| 77 | task_wakeup(&rq, sess->task); |
| 78 | xferred++; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | sprintf(trash, "%sServer %s/%s is DOWN. %d active and %d backup servers left.%s" |
| 83 | " %d sessions active, %d requeued, %d remaining in queue.\n", |
| 84 | s->state & SRV_BACKUP ? "Backup " : "", |
| 85 | s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck, |
| 86 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 87 | s->cur_sess, xferred, s->nbpend); |
| 88 | |
| 89 | Warning("%s", trash); |
| 90 | send_log(s->proxy, LOG_ALERT, "%s", trash); |
| 91 | |
| 92 | if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) { |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 93 | Alert("%s '%s' has no server available !\n", proxy_type_str(s->proxy), s->proxy->id); |
| 94 | send_log(s->proxy, LOG_EMERG, "%s %s has no server available !\n", proxy_type_str(s->proxy), s->proxy->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 95 | } |
| 96 | s->down_trans++; |
| 97 | } |
| 98 | s->health = 0; /* failure */ |
| 99 | } |
| 100 | |
| 101 | |
| 102 | /* |
| 103 | * This function is used only for server health-checks. It handles |
| 104 | * the connection acknowledgement. If the proxy requires HTTP health-checks, |
| 105 | * it sends the request. In other cases, it returns 1 if the socket is OK, |
| 106 | * or -1 if an error occured. |
| 107 | */ |
| 108 | int event_srv_chk_w(int fd) |
| 109 | { |
| 110 | struct task *t = fdtab[fd].owner; |
| 111 | struct server *s = t->context; |
| 112 | int skerr; |
| 113 | socklen_t lskerr = sizeof(skerr); |
| 114 | |
| 115 | skerr = 1; |
| 116 | if ((getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) == -1) |
| 117 | || (skerr != 0)) { |
| 118 | /* in case of TCP only, this tells us if the connection failed */ |
| 119 | s->result = -1; |
| 120 | fdtab[fd].state = FD_STERROR; |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 121 | EV_FD_CLR(fd, DIR_WR); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 122 | } |
| 123 | else if (s->result != -1) { |
| 124 | /* we don't want to mark 'UP' a server on which we detected an error earlier */ |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 125 | if ((s->proxy->options & PR_O_HTTP_CHK) || |
| 126 | (s->proxy->options & PR_O_SSL3_CHK)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 127 | int ret; |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 128 | /* we want to check if this host replies to HTTP or SSLv3 requests |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 129 | * so we'll send the request, and won't wake the checker up now. |
| 130 | */ |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 131 | |
| 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 138 | #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 Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 144 | EV_FD_SET(fd, DIR_RD); /* prepare for reading reply */ |
| 145 | EV_FD_CLR(fd, DIR_WR); /* nothing more to write */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 146 | return 0; |
| 147 | } |
| 148 | else { |
| 149 | s->result = -1; |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 150 | EV_FD_CLR(fd, DIR_WR); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | else { |
| 154 | /* good TCP connection is enough */ |
| 155 | s->result = 1; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | task_wakeup(&rq, t); |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | /* |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 165 | * This function is used only for server health-checks. It handles the server's |
| 166 | * reply to an HTTP request or SSL HELLO. It returns 1 in s->result if the |
| 167 | * server replies HTTP 2xx or 3xx (valid responses), or if it returns at least |
| 168 | * 5 bytes in response to SSL HELLO. The principle is that this is enough to |
| 169 | * distinguish between an SSL server and a pure TCP relay. All other cases will |
| 170 | * return -1. The function returns 0. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 171 | */ |
| 172 | int event_srv_chk_r(int fd) |
| 173 | { |
| 174 | char reply[64]; |
| 175 | int len, result; |
| 176 | struct task *t = fdtab[fd].owner; |
| 177 | struct server *s = t->context; |
| 178 | int skerr; |
| 179 | socklen_t lskerr = sizeof(skerr); |
| 180 | |
| 181 | result = len = -1; |
Willy Tarreau | c642348 | 2006-10-15 14:59:03 +0200 | [diff] [blame] | 182 | if (!getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) && !skerr) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 183 | #ifndef MSG_NOSIGNAL |
| 184 | len = recv(fd, reply, sizeof(reply), 0); |
| 185 | #else |
| 186 | /* Warning! Linux returns EAGAIN on SO_ERROR if data are still available |
| 187 | * but the connection was closed on the remote end. Fortunately, recv still |
| 188 | * works correctly and we don't need to do the getsockopt() on linux. |
| 189 | */ |
| 190 | len = recv(fd, reply, sizeof(reply), MSG_NOSIGNAL); |
| 191 | #endif |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 192 | if (((s->proxy->options & PR_O_HTTP_CHK) && |
| 193 | (len >= sizeof("HTTP/1.0 000")) && |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 194 | !memcmp(reply, "HTTP/1.", 7) && |
| 195 | (reply[9] == '2' || reply[9] == '3')) /* 2xx or 3xx */ |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 196 | || ((s->proxy->options & PR_O_SSL3_CHK) && (len >= 5) && |
| 197 | (reply[0] == 0x15 || reply[0] == 0x16))) /* alert or handshake */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 198 | result = 1; |
| 199 | } |
| 200 | |
| 201 | if (result == -1) |
| 202 | fdtab[fd].state = FD_STERROR; |
| 203 | |
| 204 | if (s->result != -1) |
| 205 | s->result = result; |
| 206 | |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 207 | EV_FD_CLR(fd, DIR_RD); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 208 | task_wakeup(&rq, t); |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | /* |
| 213 | * manages a server health-check. Returns |
| 214 | * the time the task accepts to wait, or TIME_ETERNITY for infinity. |
| 215 | */ |
| 216 | int process_chk(struct task *t) |
| 217 | { |
| 218 | struct server *s = t->context; |
| 219 | struct sockaddr_in sa; |
| 220 | int fd; |
| 221 | |
| 222 | //fprintf(stderr, "process_chk: task=%p\n", t); |
| 223 | |
| 224 | new_chk: |
| 225 | fd = s->curfd; |
| 226 | if (fd < 0) { /* no check currently running */ |
| 227 | //fprintf(stderr, "process_chk: 2\n"); |
| 228 | if (tv_cmp2_ms(&t->expire, &now) > 0) { /* not good time yet */ |
| 229 | task_queue(t); /* restore t to its place in the task list */ |
| 230 | return tv_remain2(&now, &t->expire); |
| 231 | } |
| 232 | |
| 233 | /* we don't send any health-checks when the proxy is stopped or when |
| 234 | * the server should not be checked. |
| 235 | */ |
| 236 | if (!(s->state & SRV_CHECKED) || s->proxy->state == PR_STSTOPPED) { |
| 237 | while (tv_cmp2_ms(&t->expire, &now) <= 0) |
| 238 | tv_delayfrom(&t->expire, &t->expire, s->inter); |
| 239 | task_queue(t); /* restore t to its place in the task list */ |
| 240 | return tv_remain2(&now, &t->expire); |
| 241 | } |
| 242 | |
| 243 | /* we'll initiate a new check */ |
| 244 | s->result = 0; /* no result yet */ |
| 245 | if ((fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) != -1) { |
| 246 | if ((fd < global.maxsock) && |
| 247 | (fcntl(fd, F_SETFL, O_NONBLOCK) != -1) && |
| 248 | (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)) != -1)) { |
| 249 | //fprintf(stderr, "process_chk: 3\n"); |
| 250 | |
Willy Tarreau | 2ea3abb | 2007-03-25 16:45:16 +0200 | [diff] [blame] | 251 | |
Willy Tarreau | 0f03c6f | 2007-03-25 20:46:19 +0200 | [diff] [blame] | 252 | if (s->check_addr.sin_addr.s_addr) |
| 253 | /* we'll connect to the check addr specified on the server */ |
Willy Tarreau | 2ea3abb | 2007-03-25 16:45:16 +0200 | [diff] [blame] | 254 | sa = s->check_addr; |
Willy Tarreau | 2ea3abb | 2007-03-25 16:45:16 +0200 | [diff] [blame] | 255 | else |
Willy Tarreau | 0f03c6f | 2007-03-25 20:46:19 +0200 | [diff] [blame] | 256 | /* we'll connect to the addr on the server */ |
Willy Tarreau | 2ea3abb | 2007-03-25 16:45:16 +0200 | [diff] [blame] | 257 | sa = s->addr; |
Willy Tarreau | 0f03c6f | 2007-03-25 20:46:19 +0200 | [diff] [blame] | 258 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 259 | /* we'll connect to the check port on the server */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 260 | sa.sin_port = htons(s->check_port); |
| 261 | |
| 262 | /* allow specific binding : |
| 263 | * - server-specific at first |
| 264 | * - proxy-specific next |
| 265 | */ |
| 266 | if (s->state & SRV_BIND_SRC) { |
| 267 | setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one)); |
| 268 | if (bind(fd, (struct sockaddr *)&s->source_addr, sizeof(s->source_addr)) == -1) { |
| 269 | Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n", |
| 270 | s->proxy->id, s->id); |
| 271 | s->result = -1; |
| 272 | } |
Willy Tarreau | 163c532 | 2006-11-14 16:18:41 +0100 | [diff] [blame] | 273 | #ifdef CONFIG_HAP_CTTPROXY |
| 274 | if ((s->state & SRV_TPROXY_MASK) == SRV_TPROXY_ADDR) { |
| 275 | struct in_tproxy itp1, itp2; |
| 276 | memset(&itp1, 0, sizeof(itp1)); |
| 277 | |
| 278 | itp1.op = TPROXY_ASSIGN; |
| 279 | itp1.v.addr.faddr = s->tproxy_addr.sin_addr; |
| 280 | itp1.v.addr.fport = s->tproxy_addr.sin_port; |
| 281 | |
| 282 | /* set connect flag on socket */ |
| 283 | itp2.op = TPROXY_FLAGS; |
| 284 | itp2.v.flags = ITP_CONNECT | ITP_ONCE; |
| 285 | |
| 286 | if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 || |
| 287 | setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) { |
| 288 | Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n", |
| 289 | s->proxy->id, s->id); |
| 290 | s->result = -1; |
| 291 | } |
| 292 | } |
| 293 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 294 | } |
| 295 | else if (s->proxy->options & PR_O_BIND_SRC) { |
| 296 | setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one)); |
| 297 | if (bind(fd, (struct sockaddr *)&s->proxy->source_addr, sizeof(s->proxy->source_addr)) == -1) { |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 298 | Alert("Cannot bind to source address before connect() for %s '%s'. Aborting.\n", |
| 299 | proxy_type_str(s->proxy), s->proxy->id); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 300 | s->result = -1; |
| 301 | } |
Willy Tarreau | 163c532 | 2006-11-14 16:18:41 +0100 | [diff] [blame] | 302 | #ifdef CONFIG_HAP_CTTPROXY |
| 303 | if ((s->proxy->options & PR_O_TPXY_MASK) == PR_O_TPXY_ADDR) { |
| 304 | struct in_tproxy itp1, itp2; |
| 305 | memset(&itp1, 0, sizeof(itp1)); |
| 306 | |
| 307 | itp1.op = TPROXY_ASSIGN; |
| 308 | itp1.v.addr.faddr = s->tproxy_addr.sin_addr; |
| 309 | itp1.v.addr.fport = s->tproxy_addr.sin_port; |
| 310 | |
| 311 | /* set connect flag on socket */ |
| 312 | itp2.op = TPROXY_FLAGS; |
| 313 | itp2.v.flags = ITP_CONNECT | ITP_ONCE; |
| 314 | |
| 315 | if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) == -1 || |
| 316 | setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) == -1) { |
Willy Tarreau | 2b5652f | 2006-12-31 17:46:05 +0100 | [diff] [blame] | 317 | Alert("Cannot bind to tproxy source address before connect() for %s '%s'. Aborting.\n", |
| 318 | proxy_type_str(s->proxy), s->proxy->id); |
Willy Tarreau | 163c532 | 2006-11-14 16:18:41 +0100 | [diff] [blame] | 319 | s->result = -1; |
| 320 | } |
| 321 | } |
| 322 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | if (!s->result) { |
| 326 | if ((connect(fd, (struct sockaddr *)&sa, sizeof(sa)) != -1) || (errno == EINPROGRESS)) { |
| 327 | /* OK, connection in progress or established */ |
| 328 | |
| 329 | //fprintf(stderr, "process_chk: 4\n"); |
| 330 | |
| 331 | s->curfd = fd; /* that's how we know a test is in progress ;-) */ |
Willy Tarreau | 7a96648 | 2007-04-15 10:58:02 +0200 | [diff] [blame] | 332 | fd_insert(fd); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 333 | fdtab[fd].owner = t; |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 334 | fdtab[fd].cb[DIR_RD].f = &event_srv_chk_r; |
| 335 | fdtab[fd].cb[DIR_RD].b = NULL; |
| 336 | fdtab[fd].cb[DIR_WR].f = &event_srv_chk_w; |
| 337 | fdtab[fd].cb[DIR_WR].b = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 338 | fdtab[fd].state = FD_STCONN; /* connection in progress */ |
Willy Tarreau | 3d32d3a | 2007-04-15 11:31:05 +0200 | [diff] [blame^] | 339 | fdtab[fd].ev = 0; |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 340 | EV_FD_SET(fd, DIR_WR); /* for connect status */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 341 | #ifdef DEBUG_FULL |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 342 | assert (!EV_FD_ISSET(fd, DIR_RD)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 343 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 344 | /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */ |
| 345 | tv_delayfrom(&t->expire, &now, s->inter); |
| 346 | task_queue(t); /* restore t to its place in the task list */ |
| 347 | return tv_remain(&now, &t->expire); |
| 348 | } |
| 349 | else if (errno != EALREADY && errno != EISCONN && errno != EAGAIN) { |
| 350 | s->result = -1; /* a real error */ |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | close(fd); /* socket creation error */ |
| 355 | } |
| 356 | |
| 357 | if (!s->result) { /* nothing done */ |
| 358 | //fprintf(stderr, "process_chk: 6\n"); |
| 359 | while (tv_cmp2_ms(&t->expire, &now) <= 0) |
| 360 | tv_delayfrom(&t->expire, &t->expire, s->inter); |
| 361 | goto new_chk; /* may be we should initialize a new check */ |
| 362 | } |
| 363 | |
| 364 | /* here, we have seen a failure */ |
| 365 | if (s->health > s->rise) { |
| 366 | s->health--; /* still good */ |
| 367 | s->failed_checks++; |
| 368 | } |
| 369 | else |
| 370 | set_server_down(s); |
| 371 | |
| 372 | //fprintf(stderr, "process_chk: 7\n"); |
| 373 | /* FIXME: we allow up to <inter> for a connection to establish, but we should use another parameter */ |
| 374 | while (tv_cmp2_ms(&t->expire, &now) <= 0) |
| 375 | tv_delayfrom(&t->expire, &t->expire, s->inter); |
| 376 | goto new_chk; |
| 377 | } |
| 378 | else { |
| 379 | //fprintf(stderr, "process_chk: 8\n"); |
| 380 | /* there was a test running */ |
| 381 | if (s->result > 0) { /* good server detected */ |
| 382 | //fprintf(stderr, "process_chk: 9\n"); |
| 383 | s->health++; /* was bad, stays for a while */ |
| 384 | if (s->health >= s->rise) { |
| 385 | s->state |= SRV_RUNNING; |
| 386 | |
| 387 | if (s->health == s->rise) { |
| 388 | int xferred; |
| 389 | |
| 390 | recount_servers(s->proxy); |
| 391 | recalc_server_map(s->proxy); |
| 392 | |
| 393 | /* check if we can handle some connections queued at the proxy. We |
| 394 | * will take as many as we can handle. |
| 395 | */ |
| 396 | for (xferred = 0; !s->maxconn || xferred < srv_dynamic_maxconn(s); xferred++) { |
| 397 | struct session *sess; |
| 398 | struct pendconn *p; |
| 399 | |
| 400 | p = pendconn_from_px(s->proxy); |
| 401 | if (!p) |
| 402 | break; |
| 403 | p->sess->srv = s; |
| 404 | sess = p->sess; |
| 405 | pendconn_free(p); |
| 406 | task_wakeup(&rq, sess->task); |
| 407 | } |
| 408 | |
| 409 | sprintf(trash, |
| 410 | "%sServer %s/%s is UP. %d active and %d backup servers online.%s" |
| 411 | " %d sessions requeued, %d total in queue.\n", |
| 412 | s->state & SRV_BACKUP ? "Backup " : "", |
| 413 | s->proxy->id, s->id, s->proxy->srv_act, s->proxy->srv_bck, |
| 414 | (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "", |
| 415 | xferred, s->nbpend); |
| 416 | |
| 417 | Warning("%s", trash); |
| 418 | send_log(s->proxy, LOG_NOTICE, "%s", trash); |
| 419 | } |
| 420 | |
| 421 | s->health = s->rise + s->fall - 1; /* OK now */ |
| 422 | } |
| 423 | s->curfd = -1; /* no check running anymore */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 424 | fd_delete(fd); |
| 425 | while (tv_cmp2_ms(&t->expire, &now) <= 0) |
| 426 | tv_delayfrom(&t->expire, &t->expire, s->inter); |
| 427 | goto new_chk; |
| 428 | } |
| 429 | else if (s->result < 0 || tv_cmp2_ms(&t->expire, &now) <= 0) { |
| 430 | //fprintf(stderr, "process_chk: 10\n"); |
| 431 | /* failure or timeout detected */ |
| 432 | if (s->health > s->rise) { |
| 433 | s->health--; /* still good */ |
| 434 | s->failed_checks++; |
| 435 | } |
| 436 | else |
| 437 | set_server_down(s); |
| 438 | s->curfd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 439 | fd_delete(fd); |
| 440 | while (tv_cmp2_ms(&t->expire, &now) <= 0) |
| 441 | tv_delayfrom(&t->expire, &t->expire, s->inter); |
| 442 | goto new_chk; |
| 443 | } |
| 444 | /* if result is 0 and there's no timeout, we have to wait again */ |
| 445 | } |
| 446 | //fprintf(stderr, "process_chk: 11\n"); |
| 447 | s->result = 0; |
| 448 | task_queue(t); /* restore t to its place in the task list */ |
| 449 | return tv_remain2(&now, &t->expire); |
| 450 | } |
| 451 | |
| 452 | |
| 453 | /* |
| 454 | * Local variables: |
| 455 | * c-indent-level: 8 |
| 456 | * c-basic-offset: 8 |
| 457 | * End: |
| 458 | */ |