blob: 06a8ce155ae0bd9e427caa78b04f2295fc1ca361 [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 Tarreau8797c062007-05-07 00:55:35 +020027#include <types/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <types/backend.h>
29#include <types/buffers.h>
30#include <types/global.h>
31#include <types/httperr.h>
32#include <types/polling.h>
33#include <types/proxy.h>
34#include <types/server.h>
35#include <types/session.h>
36
Willy Tarreau8797c062007-05-07 00:55:35 +020037#include <proto/acl.h>
Willy Tarreau54469402006-07-29 16:59:06 +020038#include <proto/buffers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/client.h>
40#include <proto/fd.h>
41#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010042#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <proto/proto_http.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020044#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#include <proto/stream_sock.h>
46#include <proto/task.h>
47
48
Willy Tarreau14c8aac2007-05-08 19:46:30 +020049/* Retrieves the original destination address used by the client, and sets the
50 * SN_FRT_ADDR_SET flag.
51 */
52void get_frt_addr(struct session *s)
53{
54 socklen_t namelen = sizeof(s->frt_addr);
55
56 if (get_original_dst(s->cli_fd, (struct sockaddr_in *)&s->frt_addr, &namelen) == -1)
57 getsockname(s->cli_fd, (struct sockaddr *)&s->frt_addr, &namelen);
58 s->flags |= SN_FRT_ADDR_SET;
59}
Willy Tarreaubaaee002006-06-26 02:48:02 +020060
61/*
62 * FIXME: This should move to the STREAM_SOCK code then split into TCP and HTTP.
63 */
64
65/*
66 * this function is called on a read event from a listen socket, corresponding
67 * to an accept. It tries to accept as many connections as possible.
68 * It returns 0.
69 */
70int event_accept(int fd) {
Willy Tarreaue6b98942007-10-29 01:09:36 +010071 struct listener *l = (struct listener *)fdtab[fd].owner;
72 struct proxy *p = (struct proxy *)l->private; /* attached frontend */
Willy Tarreaubaaee002006-06-26 02:48:02 +020073 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010074 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020075 struct task *t;
76 int cfd;
Willy Tarreaua0250ba2008-01-06 11:22:57 +010077 int max_accept = global.tune.maxaccept;
Willy Tarreaubaaee002006-06-26 02:48:02 +020078
Willy Tarreauf1221aa2006-12-17 22:14:12 +010079 while (p->feconn < p->maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020080 struct sockaddr_storage addr;
81 socklen_t laddr = sizeof(addr);
82
83 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
84 switch (errno) {
85 case EAGAIN:
86 case EINTR:
87 case ECONNABORTED:
88 return 0; /* nothing more to accept */
89 case ENFILE:
90 send_log(p, LOG_EMERG,
91 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
92 p->id, maxfd);
93 return 0;
94 case EMFILE:
95 send_log(p, LOG_EMERG,
96 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
97 p->id, maxfd);
98 return 0;
99 case ENOBUFS:
100 case ENOMEM:
101 send_log(p, LOG_EMERG,
102 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
103 p->id, maxfd);
104 return 0;
105 default:
106 return 0;
107 }
108 }
109
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200110 if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200112 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100114 goto out_close;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 }
116
117 /* if this session comes from a known monitoring system, we want to ignore
118 * it as soon as possible, which means closing it immediately for TCP.
119 */
120 s->flags = 0;
121 if (addr.ss_family == AF_INET &&
122 p->mon_mask.s_addr &&
123 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
124 if (p->mode == PR_MODE_TCP) {
125 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200126 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 continue;
128 }
129 s->flags |= SN_MONITOR;
130 }
131
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200132 if ((t = pool_alloc2(pool2_task)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200134 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100136 goto out_free_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 }
138
139 s->cli_addr = addr;
140 if (cfd >= global.maxsock) {
141 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100142 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143 }
144
145 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
146 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
147 (char *) &one, sizeof(one)) == -1)) {
148 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100149 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150 }
151
152 if (p->options & PR_O_TCP_CLI_KA)
153 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
154
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200155 if (p->options & PR_O_TCP_NOLING)
156 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
157
Willy Tarreau964c9362007-01-07 00:38:00 +0100158 t->wq = NULL;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200159 t->qlist.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160 t->state = TASK_IDLE;
161 t->process = process_session;
162 t->context = s;
163
164 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100165 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100166
Willy Tarreaua7e76142007-11-03 14:28:39 +0100167 /* in HTTP mode, content switching requires that the backend
168 * first points to the same proxy as the frontend. However, in
169 * TCP mode there will be no header processing so any default
170 * backend must be assigned if set.
171 */
172 if (p->mode == PR_MODE_HTTP) {
173 s->cli_state = CL_STHEADERS;
174 } else {
175 /* We must assign any default backend now since
176 * there will be no header processing.
177 */
178 if (p->mode == PR_MODE_TCP) {
179 if (p->defbe.be)
180 s->be = p->defbe.be;
181 s->flags |= SN_BE_ASSIGNED;
182 }
183 s->cli_state = CL_STDATA; /* no HTTP headers for non-HTTP proxies */
184 }
185
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186 s->srv_state = SV_STIDLE;
187 s->req = s->rep = NULL; /* will be allocated later */
188
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189 s->cli_fd = cfd;
190 s->srv_fd = -1;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200191 s->srv = s->prev_srv = s->srv_conn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100193 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100194
195 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200196 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100197 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200198
199 if (s->flags & SN_MONITOR)
200 s->logs.logwait = 0;
201 else
202 s->logs.logwait = p->to_log;
203
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200204 s->logs.accept_date = date; /* user-visible date for logging */
205 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau70089872008-06-13 21:12:51 +0200206 tv_zero(&s->logs.tv_request);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200207 s->logs.t_queue = -1;
208 s->logs.t_connect = -1;
209 s->logs.t_data = -1;
210 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100211 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
213 s->logs.srv_queue_size = 0; /* we will get this number soon */
214
215 s->data_source = DATA_SRC_NONE;
216
217 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100218 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219
Willy Tarreauc2168d32007-03-03 20:51:44 +0100220 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100221 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100222 /* Those variables will be checked and freed if non-NULL in
223 * session.c:session_free(). It is important that they are
224 * properly initialized.
225 */
226 txn->srv_cookie = NULL;
227 txn->cli_cookie = NULL;
228 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100229 txn->req.cap = NULL;
230 txn->rsp.cap = NULL;
231 txn->hdr_idx.v = NULL;
232 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100233
234 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100235 txn->status = -1;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200236 txn->req.hdr_content_len = 0LL;
237 txn->rsp.hdr_content_len = 0LL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100238 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
Willy Tarreauc11416f2007-06-17 16:58:38 +0200239 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100240 txn->req.sol = txn->req.eol = NULL;
241 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
242 txn->auth_hdr.len = -1;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100243
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200244 if (p->nb_req_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100245 if ((txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL)
246 goto out_fail_reqcap; /* no memory */
247
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200248 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200249 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200250
Willy Tarreau45e73e32006-12-17 00:05:15 +0100251
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200252 if (p->nb_rsp_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100253 if ((txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL)
254 goto out_fail_rspcap; /* no memory */
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 Tarreau1d4154a2007-05-13 22:57:02 +0200260 txn->hdr_idx.size = MAX_HTTP_HDR;
261
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100262 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL)
263 goto out_fail_idx; /* no memory */
264
Willy Tarreauc2168d32007-03-03 20:51:44 +0100265 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100266 }
267
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
269 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200270 if (p->to_log) {
271 /* we have the client ip */
272 if (s->logs.logwait & LW_CLIP)
273 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreau42250582007-04-01 01:30:43 +0200274 tcp_sess_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200275 }
276 else if (s->cli_addr.ss_family == AF_INET) {
277 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200278
279 if (!(s->flags & SN_FRT_ADDR_SET))
280 get_frt_addr(s);
281
282 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200283 sn, sizeof(sn)) &&
284 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
285 pn, sizeof(pn))) {
286 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
287 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200288 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200289 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
290 }
291 }
292 else {
293 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200294
295 if (!(s->flags & SN_FRT_ADDR_SET))
296 get_frt_addr(s);
297
298 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299 sn, sizeof(sn)) &&
300 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
301 pn, sizeof(pn))) {
302 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
303 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200304 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200305 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
306 }
307 }
308 }
309
310 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200312
313 if (!(s->flags & SN_FRT_ADDR_SET))
314 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200315
316 if (s->cli_addr.ss_family == AF_INET) {
317 char pn[INET_ADDRSTRLEN];
318 inet_ntop(AF_INET,
319 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
320 pn, sizeof(pn));
321
322 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
323 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
324 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
325 }
326 else {
327 char pn[INET6_ADDRSTRLEN];
328 inet_ntop(AF_INET6,
329 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
330 pn, sizeof(pn));
331
332 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
333 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
334 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
335 }
336
337 write(1, trash, len);
338 }
339
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100340 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
341 goto out_fail_req; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200342
Willy Tarreau54469402006-07-29 16:59:06 +0200343 buffer_init(s->req);
344 s->req->rlim += BUFSIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200345 if (s->cli_state == CL_STHEADERS) /* reserve some space for header rewriting */
346 s->req->rlim -= MAXREWRITE;
347
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100348 s->req->rto = s->fe->timeout.client;
349 s->req->wto = s->be->timeout.server;
350 s->req->cto = s->be->timeout.connect;
Willy Tarreaud7971282006-07-29 18:36:34 +0200351
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100352 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
353 goto out_fail_rep; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200354
Willy Tarreau54469402006-07-29 16:59:06 +0200355 buffer_init(s->rep);
356
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100357 s->rep->rto = s->be->timeout.server;
358 s->rep->wto = s->fe->timeout.client;
Willy Tarreauee991362007-05-14 14:37:50 +0200359 tv_eternity(&s->rep->cto);
Willy Tarreaud7971282006-07-29 18:36:34 +0200360
Willy Tarreau7a966482007-04-15 10:58:02 +0200361 fd_insert(cfd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362 fdtab[cfd].owner = t;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100363 fdtab[cfd].listener = l;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200364 fdtab[cfd].state = FD_STREADY;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100365 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
Willy Tarreau54469402006-07-29 16:59:06 +0200366 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100367 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
Willy Tarreau54469402006-07-29 16:59:06 +0200368 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200369 fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
370 fdtab[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200371
372 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100373 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200374 /* Either we got a request from a monitoring system on an HTTP instance,
375 * or we're in health check mode with the 'httpchk' option enabled. In
376 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
377 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100378 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
379 client_retnclose(s, &msg); /* forge a 200 response */
380 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200381 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100382 struct chunk msg = { .str = "OK\n", .len = 3 };
383 client_retnclose(s, &msg); /* forge an "OK" response */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 }
385 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200386 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387 }
388
Willy Tarreaud7971282006-07-29 18:36:34 +0200389 tv_eternity(&s->req->rex);
390 tv_eternity(&s->req->wex);
391 tv_eternity(&s->req->cex);
392 tv_eternity(&s->rep->rex);
393 tv_eternity(&s->rep->wex);
Willy Tarreau036fae02008-01-06 13:24:40 +0100394 tv_eternity(&s->txn.exp);
Willy Tarreau5465e112007-04-29 19:09:47 +0200395 tv_eternity(&t->expire);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100397 if (tv_isset(&s->fe->timeout.client)) {
Willy Tarreau5465e112007-04-29 19:09:47 +0200398 if (EV_FD_ISSET(cfd, DIR_RD)) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100399 tv_add(&s->req->rex, &now, &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 Tarreaud7c30f92007-12-03 01:38:36 +0100403 tv_add(&s->rep->wex, &now, &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 Tarreau036fae02008-01-06 13:24:40 +0100408 if (s->cli_state == CL_STHEADERS && tv_isset(&s->fe->timeout.httpreq)) {
409 tv_add(&s->txn.exp, &now, &s->fe->timeout.httpreq);
410 tv_bound(&t->expire, &s->txn.exp);
411 }
412
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413 task_queue(t);
414
415 if (p->mode != PR_MODE_HEALTH)
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200416 task_wakeup(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100418 p->feconn++; /* beconn will be increased later */
419 if (p->feconn > p->feconn_max)
420 p->feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100421
422 if (s->flags & SN_BE_ASSIGNED) {
423 s->be->cum_beconn++;
424 s->be->beconn++;
425 if (s->be->beconn > s->be->beconn_max)
426 s->be->beconn_max = s->be->beconn;
427 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200428 actconn++;
429 totalconn++;
430
431 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100432 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 return 0;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100434
435 /* Error unrolling */
436 out_fail_rep:
437 if (s->req)
438 pool_free2(pool2_buffer, s->req);
439 out_fail_req:
440 if (txn->hdr_idx.v != NULL)
441 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
442 out_fail_idx:
443 if (txn->rsp.cap != NULL)
444 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
445 out_fail_rspcap:
446 if (txn->req.cap != NULL)
447 pool_free2(p->req_cap_pool, txn->req.cap);
448 out_fail_reqcap:
449 out_free_task:
450 pool_free2(pool2_task, t);
451 out_free_session:
452 pool_free2(pool2_session, s);
453 out_close:
454 close(cfd);
455 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456}
457
458
459
Willy Tarreau8797c062007-05-07 00:55:35 +0200460/************************************************************************/
461/* All supported keywords must be declared here. */
462/************************************************************************/
463
464/* set test->ptr to point to the source IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200465static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200466acl_fetch_src(struct proxy *px, struct session *l4, void *l7, int dir,
467 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200468{
469 test->i = l4->cli_addr.ss_family;
470 if (test->i == AF_INET)
471 test->ptr = (void *)&((struct sockaddr_in *)&l4->cli_addr)->sin_addr;
472 else
473 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_addr;
474 test->flags = ACL_TEST_F_READ_ONLY;
475 return 1;
476}
477
478
479/* set test->i to the connexion's source port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200480static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200481acl_fetch_sport(struct proxy *px, struct session *l4, void *l7, int dir,
482 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200483{
484 if (l4->cli_addr.ss_family == AF_INET)
485 test->i = ntohs(((struct sockaddr_in *)&l4->cli_addr)->sin_port);
486 else
487 test->i = ntohs(((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_port);
488 test->flags = 0;
489 return 1;
490}
491
Willy Tarreau662b2d82007-05-08 19:56:15 +0200492
493/* 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 +0200494static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200495acl_fetch_dst(struct proxy *px, struct session *l4, void *l7, int dir,
496 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200497{
498 if (!(l4->flags & SN_FRT_ADDR_SET))
499 get_frt_addr(l4);
500
501 test->i = l4->frt_addr.ss_family;
502 if (test->i == AF_INET)
503 test->ptr = (void *)&((struct sockaddr_in *)&l4->frt_addr)->sin_addr;
504 else
505 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_addr;
506 test->flags = ACL_TEST_F_READ_ONLY;
507 return 1;
508}
509
510
511/* set test->i to the frontend connexion's destination port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200512static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200513acl_fetch_dport(struct proxy *px, struct session *l4, void *l7, int dir,
514 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200515{
516 if (!(l4->flags & SN_FRT_ADDR_SET))
517 get_frt_addr(l4);
518
519 if (l4->frt_addr.ss_family == AF_INET)
520 test->i = ntohs(((struct sockaddr_in *)&l4->frt_addr)->sin_port);
521 else
522 test->i = ntohs(((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_port);
523 test->flags = 0;
524 return 1;
525}
526
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100527
Willy Tarreau8797c062007-05-07 00:55:35 +0200528/* set test->i to the number of connexions to the proxy */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200529static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200530acl_fetch_dconn(struct proxy *px, struct session *l4, void *l7, int dir,
531 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200532{
533 test->i = px->feconn;
534 return 1;
535}
536
537
538/* Note: must not be declared <const> as its list will be overwritten */
539static struct acl_kw_list acl_kws = {{ },{
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100540 { "src_port", acl_parse_int, acl_fetch_sport, acl_match_int },
541 { "src", acl_parse_ip, acl_fetch_src, acl_match_ip },
542 { "dst", acl_parse_ip, acl_fetch_dst, acl_match_ip },
543 { "dst_port", acl_parse_int, acl_fetch_dport, acl_match_int },
Willy Tarreau662b2d82007-05-08 19:56:15 +0200544#if 0
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100545 { "src_limit", acl_parse_int, acl_fetch_sconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200546#endif
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100547 { "dst_conn", acl_parse_int, acl_fetch_dconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200548 { NULL, NULL, NULL, NULL },
549}};
550
551
552__attribute__((constructor))
553static void __client_init(void)
554{
555 acl_register_keywords(&acl_kws);
556}
557
558
Willy Tarreaubaaee002006-06-26 02:48:02 +0200559/*
560 * Local variables:
561 * c-indent-level: 8
562 * c-basic-offset: 8
563 * End:
564 */