blob: e04a066ff2f2600f91a473fcf09ef91f584f3a09 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Client-side variables and functions.
3 *
Willy Tarreaub7f694f2008-06-22 17:18:02 +02004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
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
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau8797c062007-05-07 00:55:35 +020029#include <proto/acl.h>
Willy Tarreau54469402006-07-29 16:59:06 +020030#include <proto/buffers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <proto/client.h>
32#include <proto/fd.h>
33#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010034#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035#include <proto/proto_http.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020036#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/stream_sock.h>
38#include <proto/task.h>
39
40
Willy Tarreau14c8aac2007-05-08 19:46:30 +020041/* Retrieves the original destination address used by the client, and sets the
42 * SN_FRT_ADDR_SET flag.
43 */
44void get_frt_addr(struct session *s)
45{
46 socklen_t namelen = sizeof(s->frt_addr);
47
48 if (get_original_dst(s->cli_fd, (struct sockaddr_in *)&s->frt_addr, &namelen) == -1)
49 getsockname(s->cli_fd, (struct sockaddr *)&s->frt_addr, &namelen);
50 s->flags |= SN_FRT_ADDR_SET;
51}
Willy Tarreaubaaee002006-06-26 02:48:02 +020052
53/*
54 * FIXME: This should move to the STREAM_SOCK code then split into TCP and HTTP.
55 */
56
57/*
58 * this function is called on a read event from a listen socket, corresponding
59 * to an accept. It tries to accept as many connections as possible.
60 * It returns 0.
61 */
62int event_accept(int fd) {
Willy Tarreaue6b98942007-10-29 01:09:36 +010063 struct listener *l = (struct listener *)fdtab[fd].owner;
64 struct proxy *p = (struct proxy *)l->private; /* attached frontend */
Willy Tarreaubaaee002006-06-26 02:48:02 +020065 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010066 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020067 struct task *t;
68 int cfd;
Willy Tarreaua0250ba2008-01-06 11:22:57 +010069 int max_accept = global.tune.maxaccept;
Willy Tarreaubaaee002006-06-26 02:48:02 +020070
Willy Tarreauf1221aa2006-12-17 22:14:12 +010071 while (p->feconn < p->maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020072 struct sockaddr_storage addr;
73 socklen_t laddr = sizeof(addr);
74
75 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
76 switch (errno) {
77 case EAGAIN:
78 case EINTR:
79 case ECONNABORTED:
80 return 0; /* nothing more to accept */
81 case ENFILE:
82 send_log(p, LOG_EMERG,
83 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
84 p->id, maxfd);
85 return 0;
86 case EMFILE:
87 send_log(p, LOG_EMERG,
88 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
89 p->id, maxfd);
90 return 0;
91 case ENOBUFS:
92 case ENOMEM:
93 send_log(p, LOG_EMERG,
94 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
95 p->id, maxfd);
96 return 0;
97 default:
98 return 0;
99 }
100 }
101
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200102 if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200104 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100106 goto out_close;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200107 }
108
109 /* if this session comes from a known monitoring system, we want to ignore
110 * it as soon as possible, which means closing it immediately for TCP.
111 */
112 s->flags = 0;
113 if (addr.ss_family == AF_INET &&
114 p->mon_mask.s_addr &&
115 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
116 if (p->mode == PR_MODE_TCP) {
117 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200118 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 continue;
120 }
121 s->flags |= SN_MONITOR;
122 }
123
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200124 if ((t = pool_alloc2(pool2_task)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200126 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100128 goto out_free_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 }
130
131 s->cli_addr = addr;
132 if (cfd >= global.maxsock) {
133 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100134 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135 }
136
137 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
138 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
139 (char *) &one, sizeof(one)) == -1)) {
140 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100141 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200142 }
143
144 if (p->options & PR_O_TCP_CLI_KA)
145 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
146
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200147 if (p->options & PR_O_TCP_NOLING)
148 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
149
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200150 task_init(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 t->process = process_session;
152 t->context = s;
153
154 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100155 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100156
Willy Tarreaua7e76142007-11-03 14:28:39 +0100157 /* in HTTP mode, content switching requires that the backend
158 * first points to the same proxy as the frontend. However, in
159 * TCP mode there will be no header processing so any default
160 * backend must be assigned if set.
161 */
162 if (p->mode == PR_MODE_HTTP) {
Willy Tarreaub6866442008-07-14 23:54:42 +0200163 if (s->fe->tcp_req.inspect_delay)
164 s->cli_state = CL_STINSPECT;
165 else
166 s->cli_state = CL_STHEADERS;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100167 } else {
168 /* We must assign any default backend now since
169 * there will be no header processing.
170 */
171 if (p->mode == PR_MODE_TCP) {
172 if (p->defbe.be)
173 s->be = p->defbe.be;
174 s->flags |= SN_BE_ASSIGNED;
175 }
Willy Tarreaub6866442008-07-14 23:54:42 +0200176 if (s->fe->tcp_req.inspect_delay)
177 s->cli_state = CL_STINSPECT;
178 else
179 s->cli_state = CL_STDATA; /* no HTTP headers for non-HTTP proxies */
Willy Tarreaua7e76142007-11-03 14:28:39 +0100180 }
181
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182 s->srv_state = SV_STIDLE;
183 s->req = s->rep = NULL; /* will be allocated later */
184
Willy Tarreaubaaee002006-06-26 02:48:02 +0200185 s->cli_fd = cfd;
186 s->srv_fd = -1;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200187 s->srv = s->prev_srv = s->srv_conn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100189 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100190
191 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200192 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100193 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194
195 if (s->flags & SN_MONITOR)
196 s->logs.logwait = 0;
197 else
198 s->logs.logwait = p->to_log;
199
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200200 s->logs.accept_date = date; /* user-visible date for logging */
201 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau70089872008-06-13 21:12:51 +0200202 tv_zero(&s->logs.tv_request);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203 s->logs.t_queue = -1;
204 s->logs.t_connect = -1;
205 s->logs.t_data = -1;
206 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100207 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
209 s->logs.srv_queue_size = 0; /* we will get this number soon */
210
211 s->data_source = DATA_SRC_NONE;
212
213 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100214 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200215
Willy Tarreauc2168d32007-03-03 20:51:44 +0100216 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100217 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100218 /* Those variables will be checked and freed if non-NULL in
219 * session.c:session_free(). It is important that they are
220 * properly initialized.
221 */
222 txn->srv_cookie = NULL;
223 txn->cli_cookie = NULL;
224 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100225 txn->req.cap = NULL;
226 txn->rsp.cap = NULL;
227 txn->hdr_idx.v = NULL;
228 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100229
230 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100231 txn->status = -1;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200232 txn->req.hdr_content_len = 0LL;
233 txn->rsp.hdr_content_len = 0LL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100234 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
Willy Tarreauc11416f2007-06-17 16:58:38 +0200235 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100236 txn->req.sol = txn->req.eol = NULL;
237 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
238 txn->auth_hdr.len = -1;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100239
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200240 if (p->nb_req_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100241 if ((txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL)
242 goto out_fail_reqcap; /* no memory */
243
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200244 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200245 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200246
Willy Tarreau45e73e32006-12-17 00:05:15 +0100247
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200248 if (p->nb_rsp_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100249 if ((txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL)
250 goto out_fail_rspcap; /* no memory */
251
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200252 memset(txn->rsp.cap, 0, p->nb_rsp_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200253 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200254
Willy Tarreau45e73e32006-12-17 00:05:15 +0100255
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200256 txn->hdr_idx.size = MAX_HTTP_HDR;
257
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100258 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL)
259 goto out_fail_idx; /* no memory */
260
Willy Tarreauc2168d32007-03-03 20:51:44 +0100261 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100262 }
263
Willy Tarreaubaaee002006-06-26 02:48:02 +0200264 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
265 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200266 if (p->to_log) {
267 /* we have the client ip */
268 if (s->logs.logwait & LW_CLIP)
269 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreau42250582007-04-01 01:30:43 +0200270 tcp_sess_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200271 }
272 else if (s->cli_addr.ss_family == AF_INET) {
273 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200274
275 if (!(s->flags & SN_FRT_ADDR_SET))
276 get_frt_addr(s);
277
278 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200279 sn, sizeof(sn)) &&
280 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
281 pn, sizeof(pn))) {
282 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
283 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200284 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200285 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
286 }
287 }
288 else {
289 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200290
291 if (!(s->flags & SN_FRT_ADDR_SET))
292 get_frt_addr(s);
293
294 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200295 sn, sizeof(sn)) &&
296 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
297 pn, sizeof(pn))) {
298 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
299 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200300 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200301 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
302 }
303 }
304 }
305
306 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200308
309 if (!(s->flags & SN_FRT_ADDR_SET))
310 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311
312 if (s->cli_addr.ss_family == AF_INET) {
313 char pn[INET_ADDRSTRLEN];
314 inet_ntop(AF_INET,
315 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
316 pn, sizeof(pn));
317
318 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
319 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
320 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
321 }
322 else {
323 char pn[INET6_ADDRSTRLEN];
324 inet_ntop(AF_INET6,
325 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
326 pn, sizeof(pn));
327
328 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
329 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
330 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
331 }
332
333 write(1, trash, len);
334 }
335
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100336 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
337 goto out_fail_req; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200338
Willy Tarreau54469402006-07-29 16:59:06 +0200339 buffer_init(s->req);
340 s->req->rlim += BUFSIZE;
Willy Tarreaub6866442008-07-14 23:54:42 +0200341 if (p->mode == PR_MODE_HTTP) /* reserve some space for header rewriting */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200342 s->req->rlim -= MAXREWRITE;
343
Willy Tarreaudc0a6a02008-08-03 20:38:13 +0200344 if (s->cli_state == CL_STDATA)
345 s->req->flags |= BF_MAY_CONNECT; /* don't wait to establish connection */
346
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100347 s->req->rto = s->fe->timeout.client;
348 s->req->wto = s->be->timeout.server;
349 s->req->cto = s->be->timeout.connect;
Willy Tarreaud7971282006-07-29 18:36:34 +0200350
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100351 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
352 goto out_fail_rep; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353
Willy Tarreau54469402006-07-29 16:59:06 +0200354 buffer_init(s->rep);
355
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100356 s->rep->rto = s->be->timeout.server;
357 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200358 s->rep->cto = TICK_ETERNITY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200359
Willy Tarreau7a966482007-04-15 10:58:02 +0200360 fd_insert(cfd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200361 fdtab[cfd].owner = t;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100362 fdtab[cfd].listener = l;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363 fdtab[cfd].state = FD_STREADY;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100364 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
Willy Tarreau54469402006-07-29 16:59:06 +0200365 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100366 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
Willy Tarreau54469402006-07-29 16:59:06 +0200367 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200368 fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
369 fdtab[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370
371 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100372 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200373 /* Either we got a request from a monitoring system on an HTTP instance,
374 * or we're in health check mode with the 'httpchk' option enabled. In
375 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
376 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100377 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
378 client_retnclose(s, &msg); /* forge a 200 response */
379 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200380 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100381 struct chunk msg = { .str = "OK\n", .len = 3 };
382 client_retnclose(s, &msg); /* forge an "OK" response */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200383 }
384 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200385 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200386 }
387
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200388 s->req->rex = TICK_ETERNITY;
389 s->req->wex = TICK_ETERNITY;
390 s->req->cex = TICK_ETERNITY;
391 s->rep->rex = TICK_ETERNITY;
392 s->rep->wex = TICK_ETERNITY;
393 s->txn.exp = TICK_ETERNITY;
Willy Tarreaub6866442008-07-14 23:54:42 +0200394 s->inspect_exp = TICK_ETERNITY;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200395 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200397 if (s->fe->timeout.client) {
Willy Tarreau5465e112007-04-29 19:09:47 +0200398 if (EV_FD_ISSET(cfd, DIR_RD)) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200399 s->req->rex = tick_add(now_ms, s->fe->timeout.client);
Willy Tarreau5465e112007-04-29 19:09:47 +0200400 t->expire = s->req->rex;
401 }
402 if (EV_FD_ISSET(cfd, DIR_WR)) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200403 s->rep->wex = tick_add(now_ms, s->fe->timeout.client);
Willy Tarreaud95dcb52007-10-15 20:36:37 +0200404 t->expire = s->rep->wex;
Willy Tarreau5465e112007-04-29 19:09:47 +0200405 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406 }
407
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200408 if (s->cli_state == CL_STHEADERS && s->fe->timeout.httpreq) {
409 s->txn.exp = tick_add(now_ms, s->fe->timeout.httpreq);
410 t->expire = tick_first(t->expire, s->txn.exp);
Willy Tarreau036fae02008-01-06 13:24:40 +0100411 }
Willy Tarreaub6866442008-07-14 23:54:42 +0200412 else if (s->cli_state == CL_STINSPECT && s->fe->tcp_req.inspect_delay) {
413 s->inspect_exp = tick_add(now_ms, s->fe->tcp_req.inspect_delay);
414 t->expire = tick_first(t->expire, s->inspect_exp);
415 }
Willy Tarreau036fae02008-01-06 13:24:40 +0100416
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417 if (p->mode != PR_MODE_HEALTH)
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200418 task_wakeup(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100420 p->feconn++; /* beconn will be increased later */
421 if (p->feconn > p->feconn_max)
422 p->feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100423
424 if (s->flags & SN_BE_ASSIGNED) {
425 s->be->cum_beconn++;
426 s->be->beconn++;
427 if (s->be->beconn > s->be->beconn_max)
428 s->be->beconn_max = s->be->beconn;
429 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200430 actconn++;
431 totalconn++;
432
433 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100434 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435 return 0;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100436
437 /* Error unrolling */
438 out_fail_rep:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200439 pool_free2(pool2_buffer, s->req);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100440 out_fail_req:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200441 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100442 out_fail_idx:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200443 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100444 out_fail_rspcap:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200445 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100446 out_fail_reqcap:
447 out_free_task:
448 pool_free2(pool2_task, t);
449 out_free_session:
450 pool_free2(pool2_session, s);
451 out_close:
452 close(cfd);
453 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200454}
455
456
457
Willy Tarreau8797c062007-05-07 00:55:35 +0200458/************************************************************************/
459/* All supported keywords must be declared here. */
460/************************************************************************/
461
462/* set test->ptr to point to the source IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200463static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200464acl_fetch_src(struct proxy *px, struct session *l4, void *l7, int dir,
465 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200466{
467 test->i = l4->cli_addr.ss_family;
468 if (test->i == AF_INET)
469 test->ptr = (void *)&((struct sockaddr_in *)&l4->cli_addr)->sin_addr;
470 else
471 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_addr;
472 test->flags = ACL_TEST_F_READ_ONLY;
473 return 1;
474}
475
476
477/* set test->i to the connexion's source port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200478static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200479acl_fetch_sport(struct proxy *px, struct session *l4, void *l7, int dir,
480 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200481{
482 if (l4->cli_addr.ss_family == AF_INET)
483 test->i = ntohs(((struct sockaddr_in *)&l4->cli_addr)->sin_port);
484 else
485 test->i = ntohs(((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_port);
486 test->flags = 0;
487 return 1;
488}
489
Willy Tarreau662b2d82007-05-08 19:56:15 +0200490
491/* set test->ptr to point to the frontend's IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200492static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200493acl_fetch_dst(struct proxy *px, struct session *l4, void *l7, int dir,
494 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200495{
496 if (!(l4->flags & SN_FRT_ADDR_SET))
497 get_frt_addr(l4);
498
499 test->i = l4->frt_addr.ss_family;
500 if (test->i == AF_INET)
501 test->ptr = (void *)&((struct sockaddr_in *)&l4->frt_addr)->sin_addr;
502 else
503 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_addr;
504 test->flags = ACL_TEST_F_READ_ONLY;
505 return 1;
506}
507
508
509/* set test->i to the frontend connexion's destination port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200510static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200511acl_fetch_dport(struct proxy *px, struct session *l4, void *l7, int dir,
512 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200513{
514 if (!(l4->flags & SN_FRT_ADDR_SET))
515 get_frt_addr(l4);
516
517 if (l4->frt_addr.ss_family == AF_INET)
518 test->i = ntohs(((struct sockaddr_in *)&l4->frt_addr)->sin_port);
519 else
520 test->i = ntohs(((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_port);
521 test->flags = 0;
522 return 1;
523}
524
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100525
Willy Tarreau8797c062007-05-07 00:55:35 +0200526/* set test->i to the number of connexions to the proxy */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200527static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200528acl_fetch_dconn(struct proxy *px, struct session *l4, void *l7, int dir,
529 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200530{
531 test->i = px->feconn;
532 return 1;
533}
534
535
536/* Note: must not be declared <const> as its list will be overwritten */
537static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200538 { "src_port", acl_parse_int, acl_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT },
539 { "src", acl_parse_ip, acl_fetch_src, acl_match_ip, ACL_USE_TCP4_PERMANENT },
540 { "dst", acl_parse_ip, acl_fetch_dst, acl_match_ip, ACL_USE_TCP4_PERMANENT },
541 { "dst_port", acl_parse_int, acl_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT },
Willy Tarreau662b2d82007-05-08 19:56:15 +0200542#if 0
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100543 { "src_limit", acl_parse_int, acl_fetch_sconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200544#endif
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200545 { "dst_conn", acl_parse_int, acl_fetch_dconn, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau8797c062007-05-07 00:55:35 +0200546 { NULL, NULL, NULL, NULL },
547}};
548
549
550__attribute__((constructor))
551static void __client_init(void)
552{
553 acl_register_keywords(&acl_kws);
554}
555
556
Willy Tarreaubaaee002006-06-26 02:48:02 +0200557/*
558 * Local variables:
559 * c-indent-level: 8
560 * c-basic-offset: 8
561 * End:
562 */