blob: 2754b91f7220ce32d16eba2c1ae120f6158fb0ab [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Client-side variables and 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>
16#include <stdlib.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020017#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020018
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Willy Tarreau2dd0d472006-06-29 17:53:05 +020023#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020024#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
27#include <types/backend.h>
28#include <types/buffers.h>
29#include <types/global.h>
30#include <types/httperr.h>
31#include <types/polling.h>
32#include <types/proxy.h>
33#include <types/server.h>
34#include <types/session.h>
35
Willy Tarreau54469402006-07-29 16:59:06 +020036#include <proto/buffers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/client.h>
38#include <proto/fd.h>
39#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010040#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/proto_http.h>
42#include <proto/stream_sock.h>
43#include <proto/task.h>
44
45
Willy Tarreau14c8aac2007-05-08 19:46:30 +020046/* Retrieves the original destination address used by the client, and sets the
47 * SN_FRT_ADDR_SET flag.
48 */
49void get_frt_addr(struct session *s)
50{
51 socklen_t namelen = sizeof(s->frt_addr);
52
53 if (get_original_dst(s->cli_fd, (struct sockaddr_in *)&s->frt_addr, &namelen) == -1)
54 getsockname(s->cli_fd, (struct sockaddr *)&s->frt_addr, &namelen);
55 s->flags |= SN_FRT_ADDR_SET;
56}
Willy Tarreaubaaee002006-06-26 02:48:02 +020057
58/*
59 * FIXME: This should move to the STREAM_SOCK code then split into TCP and HTTP.
60 */
61
62/*
63 * this function is called on a read event from a listen socket, corresponding
64 * to an accept. It tries to accept as many connections as possible.
65 * It returns 0.
66 */
67int event_accept(int fd) {
68 struct proxy *p = (struct proxy *)fdtab[fd].owner;
69 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010070 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020071 struct task *t;
72 int cfd;
73 int max_accept;
74
75 if (global.nbproc > 1)
76 max_accept = 8; /* let other processes catch some connections too */
77 else
78 max_accept = -1;
79
Willy Tarreauf1221aa2006-12-17 22:14:12 +010080 while (p->feconn < p->maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020081 struct sockaddr_storage addr;
82 socklen_t laddr = sizeof(addr);
83
84 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
85 switch (errno) {
86 case EAGAIN:
87 case EINTR:
88 case ECONNABORTED:
89 return 0; /* nothing more to accept */
90 case ENFILE:
91 send_log(p, LOG_EMERG,
92 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
93 p->id, maxfd);
94 return 0;
95 case EMFILE:
96 send_log(p, LOG_EMERG,
97 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
98 p->id, maxfd);
99 return 0;
100 case ENOBUFS:
101 case ENOMEM:
102 send_log(p, LOG_EMERG,
103 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
104 p->id, maxfd);
105 return 0;
106 default:
107 return 0;
108 }
109 }
110
111 if ((s = pool_alloc(session)) == NULL) { /* disable this proxy for a while */
112 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200113 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 p->state = PR_STIDLE;
115 close(cfd);
116 return 0;
117 }
118
119 /* if this session comes from a known monitoring system, we want to ignore
120 * it as soon as possible, which means closing it immediately for TCP.
121 */
122 s->flags = 0;
123 if (addr.ss_family == AF_INET &&
124 p->mon_mask.s_addr &&
125 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
126 if (p->mode == PR_MODE_TCP) {
127 close(cfd);
128 pool_free(session, s);
129 continue;
130 }
131 s->flags |= SN_MONITOR;
132 }
133
134 if ((t = pool_alloc(task)) == NULL) { /* disable this proxy for a while */
135 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200136 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 p->state = PR_STIDLE;
138 close(cfd);
139 pool_free(session, s);
140 return 0;
141 }
142
143 s->cli_addr = addr;
144 if (cfd >= global.maxsock) {
145 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
146 close(cfd);
147 pool_free(task, t);
148 pool_free(session, s);
149 return 0;
150 }
151
152 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
153 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
154 (char *) &one, sizeof(one)) == -1)) {
155 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
156 close(cfd);
157 pool_free(task, t);
158 pool_free(session, s);
159 return 0;
160 }
161
162 if (p->options & PR_O_TCP_CLI_KA)
163 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
164
Willy Tarreau964c9362007-01-07 00:38:00 +0100165 t->wq = NULL;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200166 t->qlist.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167 t->state = TASK_IDLE;
168 t->process = process_session;
169 t->context = s;
170
171 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100172 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100173
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174 s->cli_state = (p->mode == PR_MODE_HTTP) ? CL_STHEADERS : CL_STDATA; /* no HTTP headers for non-HTTP proxies */
175 s->srv_state = SV_STIDLE;
176 s->req = s->rep = NULL; /* will be allocated later */
177
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178 s->cli_fd = cfd;
179 s->srv_fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180 s->srv = NULL;
181 s->pend_pos = NULL;
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200182 s->conn_retries = p->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100183
184 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200185 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100186 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200187
188 if (s->flags & SN_MONITOR)
189 s->logs.logwait = 0;
190 else
191 s->logs.logwait = p->to_log;
192
193 s->logs.tv_accept = now;
194 s->logs.t_request = -1;
195 s->logs.t_queue = -1;
196 s->logs.t_connect = -1;
197 s->logs.t_data = -1;
198 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100199 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
201 s->logs.srv_queue_size = 0; /* we will get this number soon */
202
203 s->data_source = DATA_SRC_NONE;
204
205 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100206 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200207
Willy Tarreauc2168d32007-03-03 20:51:44 +0100208 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100209 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100210 /* Those variables will be checked and freed if non-NULL in
211 * session.c:session_free(). It is important that they are
212 * properly initialized.
213 */
214 txn->srv_cookie = NULL;
215 txn->cli_cookie = NULL;
216 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100217 txn->req.cap = NULL;
218 txn->rsp.cap = NULL;
219 txn->hdr_idx.v = NULL;
220 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100221
222 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100223 txn->status = -1;
224
Willy Tarreauc2168d32007-03-03 20:51:44 +0100225 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
226 txn->req.sol = txn->req.eol = NULL;
227 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
228 txn->auth_hdr.len = -1;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100229
Willy Tarreauc2168d32007-03-03 20:51:44 +0100230 txn->hdr_idx.size = MAX_HTTP_HDR;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100231
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200232 if (p->nb_req_cap > 0) {
Willy Tarreauc2168d32007-03-03 20:51:44 +0100233 if ((txn->req.cap =
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200234 pool_alloc_from(p->req_cap_pool, p->nb_req_cap*sizeof(char *)))
Willy Tarreau45e73e32006-12-17 00:05:15 +0100235 == NULL) { /* no memory */
236 close(cfd); /* nothing can be done for this fd without memory */
237 pool_free(task, t);
238 pool_free(session, s);
239 return 0;
240 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200241 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200242 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200243
Willy Tarreau45e73e32006-12-17 00:05:15 +0100244
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200245 if (p->nb_rsp_cap > 0) {
Willy Tarreauc2168d32007-03-03 20:51:44 +0100246 if ((txn->rsp.cap =
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200247 pool_alloc_from(p->rsp_cap_pool, p->nb_rsp_cap*sizeof(char *)))
Willy Tarreau45e73e32006-12-17 00:05:15 +0100248 == NULL) { /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100249 if (txn->req.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200250 pool_free_to(p->req_cap_pool, txn->req.cap);
Willy Tarreau45e73e32006-12-17 00:05:15 +0100251 close(cfd); /* nothing can be done for this fd without memory */
252 pool_free(task, t);
253 pool_free(session, s);
254 return 0;
255 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200256 memset(txn->rsp.cap, 0, p->nb_rsp_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200258
Willy Tarreau45e73e32006-12-17 00:05:15 +0100259
Willy Tarreauc2168d32007-03-03 20:51:44 +0100260 if ((txn->hdr_idx.v =
261 pool_alloc_from(p->hdr_idx_pool, txn->hdr_idx.size*sizeof(*txn->hdr_idx.v)))
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100262 == NULL) { /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100263 if (txn->rsp.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200264 pool_free_to(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100265 if (txn->req.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200266 pool_free_to(p->req_cap_pool, txn->req.cap);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100267 close(cfd); /* nothing can be done for this fd without memory */
268 pool_free(task, t);
269 pool_free(session, s);
270 return 0;
271 }
Willy Tarreauc2168d32007-03-03 20:51:44 +0100272 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100273 }
274
Willy Tarreaubaaee002006-06-26 02:48:02 +0200275 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
276 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200277 if (p->to_log) {
278 /* we have the client ip */
279 if (s->logs.logwait & LW_CLIP)
280 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreau42250582007-04-01 01:30:43 +0200281 tcp_sess_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200282 }
283 else if (s->cli_addr.ss_family == AF_INET) {
284 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200285
286 if (!(s->flags & SN_FRT_ADDR_SET))
287 get_frt_addr(s);
288
289 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200290 sn, sizeof(sn)) &&
291 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
292 pn, sizeof(pn))) {
293 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
294 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200295 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200296 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
297 }
298 }
299 else {
300 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200301
302 if (!(s->flags & SN_FRT_ADDR_SET))
303 get_frt_addr(s);
304
305 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306 sn, sizeof(sn)) &&
307 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
308 pn, sizeof(pn))) {
309 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
310 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200311 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200312 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
313 }
314 }
315 }
316
317 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200318 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200319
320 if (!(s->flags & SN_FRT_ADDR_SET))
321 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322
323 if (s->cli_addr.ss_family == AF_INET) {
324 char pn[INET_ADDRSTRLEN];
325 inet_ntop(AF_INET,
326 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
327 pn, sizeof(pn));
328
329 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
330 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
331 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
332 }
333 else {
334 char pn[INET6_ADDRSTRLEN];
335 inet_ntop(AF_INET6,
336 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
337 pn, sizeof(pn));
338
339 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
340 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
341 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
342 }
343
344 write(1, trash, len);
345 }
346
347 if ((s->req = pool_alloc(buffer)) == NULL) { /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100348 if (txn->hdr_idx.v != NULL)
349 pool_free_to(p->hdr_idx_pool, txn->hdr_idx.v);
350 if (txn->rsp.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200351 pool_free_to(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100352 if (txn->req.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200353 pool_free_to(p->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200354 close(cfd); /* nothing can be done for this fd without memory */
355 pool_free(task, t);
356 pool_free(session, s);
357 return 0;
358 }
359
Willy Tarreau54469402006-07-29 16:59:06 +0200360 buffer_init(s->req);
361 s->req->rlim += BUFSIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362 if (s->cli_state == CL_STHEADERS) /* reserve some space for header rewriting */
363 s->req->rlim -= MAXREWRITE;
364
Willy Tarreau73de9892006-11-30 11:40:23 +0100365 s->req->rto = s->fe->clitimeout;
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200366 s->req->wto = s->be->srvtimeout;
367 s->req->cto = s->be->srvtimeout;
Willy Tarreaud7971282006-07-29 18:36:34 +0200368
Willy Tarreaubaaee002006-06-26 02:48:02 +0200369 if ((s->rep = pool_alloc(buffer)) == NULL) { /* no memory */
370 pool_free(buffer, s->req);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100371 if (txn->hdr_idx.v != NULL)
372 pool_free_to(p->hdr_idx_pool, txn->hdr_idx.v);
373 if (txn->rsp.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200374 pool_free_to(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100375 if (txn->req.cap != NULL)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200376 pool_free_to(p->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200377 close(cfd); /* nothing can be done for this fd without memory */
378 pool_free(task, t);
379 pool_free(session, s);
380 return 0;
381 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200382
Willy Tarreau54469402006-07-29 16:59:06 +0200383 buffer_init(s->rep);
384
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200385 s->rep->rto = s->be->srvtimeout;
Willy Tarreau830ff452006-12-17 19:31:23 +0100386 s->rep->wto = s->fe->clitimeout;
Willy Tarreaud7971282006-07-29 18:36:34 +0200387 s->rep->cto = 0;
388
Willy Tarreau7a966482007-04-15 10:58:02 +0200389 fd_insert(cfd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200390 fdtab[cfd].owner = t;
391 fdtab[cfd].state = FD_STREADY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200392 fdtab[cfd].cb[DIR_RD].f = &stream_sock_read;
Willy Tarreau54469402006-07-29 16:59:06 +0200393 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreauf8306d52006-07-29 19:01:31 +0200394 fdtab[cfd].cb[DIR_WR].f = &stream_sock_write;
Willy Tarreau54469402006-07-29 16:59:06 +0200395 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200396 fdtab[cfd].ev = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397
398 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100399 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400 /* Either we got a request from a monitoring system on an HTTP instance,
401 * or we're in health check mode with the 'httpchk' option enabled. In
402 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
403 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100404 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
405 client_retnclose(s, &msg); /* forge a 200 response */
406 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100408 struct chunk msg = { .str = "OK\n", .len = 3 };
409 client_retnclose(s, &msg); /* forge an "OK" response */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 }
411 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200412 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413 }
414
Willy Tarreaud7971282006-07-29 18:36:34 +0200415 tv_eternity(&s->req->rex);
416 tv_eternity(&s->req->wex);
417 tv_eternity(&s->req->cex);
418 tv_eternity(&s->rep->rex);
419 tv_eternity(&s->rep->wex);
Willy Tarreau5465e112007-04-29 19:09:47 +0200420 tv_eternity(&t->expire);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200421
Willy Tarreau73de9892006-11-30 11:40:23 +0100422 if (s->fe->clitimeout) {
Willy Tarreau5465e112007-04-29 19:09:47 +0200423 if (EV_FD_ISSET(cfd, DIR_RD)) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200424 tv_ms_add(&s->req->rex, &now, s->fe->clitimeout);
Willy Tarreau5465e112007-04-29 19:09:47 +0200425 t->expire = s->req->rex;
426 }
427 if (EV_FD_ISSET(cfd, DIR_WR)) {
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200428 tv_ms_add(&s->rep->wex, &now, s->fe->clitimeout);
Willy Tarreau5465e112007-04-29 19:09:47 +0200429 t->expire = s->req->rex;
430 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200431 }
432
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 task_queue(t);
434
435 if (p->mode != PR_MODE_HEALTH)
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200436 task_wakeup(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200437
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100438 p->feconn++; /* beconn will be increased later */
439 if (p->feconn > p->feconn_max)
440 p->feconn_max = p->feconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200441 actconn++;
442 totalconn++;
443
444 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100445 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 return 0;
447}
448
449
450
451/*
452 * Local variables:
453 * c-indent-level: 8
454 * c-basic-offset: 8
455 * End:
456 */