blob: 2d7d16e59e6f561df60c671085a8d5e4925b7b85 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Client-side variables and functions.
3 *
Willy Tarreaud825eef2007-05-12 22:35:00 +02004 * Copyright 2000-2007 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) {
71 struct proxy *p = (struct proxy *)fdtab[fd].owner;
72 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010073 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020074 struct task *t;
75 int cfd;
76 int max_accept;
77
78 if (global.nbproc > 1)
79 max_accept = 8; /* let other processes catch some connections too */
80 else
81 max_accept = -1;
82
Willy Tarreauf1221aa2006-12-17 22:14:12 +010083 while (p->feconn < p->maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020084 struct sockaddr_storage addr;
85 socklen_t laddr = sizeof(addr);
86
87 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
88 switch (errno) {
89 case EAGAIN:
90 case EINTR:
91 case ECONNABORTED:
92 return 0; /* nothing more to accept */
93 case ENFILE:
94 send_log(p, LOG_EMERG,
95 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
96 p->id, maxfd);
97 return 0;
98 case EMFILE:
99 send_log(p, LOG_EMERG,
100 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
101 p->id, maxfd);
102 return 0;
103 case ENOBUFS:
104 case ENOMEM:
105 send_log(p, LOG_EMERG,
106 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
107 p->id, maxfd);
108 return 0;
109 default:
110 return 0;
111 }
112 }
113
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200114 if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200116 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 p->state = PR_STIDLE;
118 close(cfd);
119 return 0;
120 }
121
122 /* if this session comes from a known monitoring system, we want to ignore
123 * it as soon as possible, which means closing it immediately for TCP.
124 */
125 s->flags = 0;
126 if (addr.ss_family == AF_INET &&
127 p->mon_mask.s_addr &&
128 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
129 if (p->mode == PR_MODE_TCP) {
130 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200131 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 continue;
133 }
134 s->flags |= SN_MONITOR;
135 }
136
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200137 if ((t = pool_alloc2(pool2_task)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200138 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200139 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 p->state = PR_STIDLE;
141 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200142 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143 return 0;
144 }
145
146 s->cli_addr = addr;
147 if (cfd >= global.maxsock) {
148 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
149 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200150 pool_free2(pool2_task, t);
151 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200152 return 0;
153 }
154
155 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
156 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
157 (char *) &one, sizeof(one)) == -1)) {
158 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
159 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200160 pool_free2(pool2_task, t);
161 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200162 return 0;
163 }
164
165 if (p->options & PR_O_TCP_CLI_KA)
166 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
167
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200168 if (p->options & PR_O_TCP_NOLING)
169 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
170
Willy Tarreau964c9362007-01-07 00:38:00 +0100171 t->wq = NULL;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200172 t->qlist.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 t->state = TASK_IDLE;
174 t->process = process_session;
175 t->context = s;
176
177 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100178 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100179
Willy Tarreaua7e76142007-11-03 14:28:39 +0100180 /* in HTTP mode, content switching requires that the backend
181 * first points to the same proxy as the frontend. However, in
182 * TCP mode there will be no header processing so any default
183 * backend must be assigned if set.
184 */
185 if (p->mode == PR_MODE_HTTP) {
186 s->cli_state = CL_STHEADERS;
187 } else {
188 /* We must assign any default backend now since
189 * there will be no header processing.
190 */
191 if (p->mode == PR_MODE_TCP) {
192 if (p->defbe.be)
193 s->be = p->defbe.be;
194 s->flags |= SN_BE_ASSIGNED;
195 }
196 s->cli_state = CL_STDATA; /* no HTTP headers for non-HTTP proxies */
197 }
198
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199 s->srv_state = SV_STIDLE;
200 s->req = s->rep = NULL; /* will be allocated later */
201
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202 s->cli_fd = cfd;
203 s->srv_fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204 s->srv = NULL;
205 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100206 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100207
208 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200209 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100210 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200211
212 if (s->flags & SN_MONITOR)
213 s->logs.logwait = 0;
214 else
215 s->logs.logwait = p->to_log;
216
217 s->logs.tv_accept = now;
218 s->logs.t_request = -1;
219 s->logs.t_queue = -1;
220 s->logs.t_connect = -1;
221 s->logs.t_data = -1;
222 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100223 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200224 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
225 s->logs.srv_queue_size = 0; /* we will get this number soon */
226
227 s->data_source = DATA_SRC_NONE;
228
229 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100230 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200231
Willy Tarreauc2168d32007-03-03 20:51:44 +0100232 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100233 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100234 /* Those variables will be checked and freed if non-NULL in
235 * session.c:session_free(). It is important that they are
236 * properly initialized.
237 */
238 txn->srv_cookie = NULL;
239 txn->cli_cookie = NULL;
240 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100241 txn->req.cap = NULL;
242 txn->rsp.cap = NULL;
243 txn->hdr_idx.v = NULL;
244 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100245
246 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100247 txn->status = -1;
248
Willy Tarreauc2168d32007-03-03 20:51:44 +0100249 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
Willy Tarreauc11416f2007-06-17 16:58:38 +0200250 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100251 txn->req.sol = txn->req.eol = NULL;
252 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
253 txn->auth_hdr.len = -1;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100254
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200255 if (p->nb_req_cap > 0) {
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200256 if ((txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL) {
257 /* no memory */
Willy Tarreau45e73e32006-12-17 00:05:15 +0100258 close(cfd); /* nothing can be done for this fd without memory */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200259 pool_free2(pool2_task, t);
260 pool_free2(pool2_session, s);
Willy Tarreau45e73e32006-12-17 00:05:15 +0100261 return 0;
262 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200263 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200264 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200265
Willy Tarreau45e73e32006-12-17 00:05:15 +0100266
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200267 if (p->nb_rsp_cap > 0) {
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200268 if ((txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL) {
269 /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100270 if (txn->req.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200271 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreau45e73e32006-12-17 00:05:15 +0100272 close(cfd); /* nothing can be done for this fd without memory */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200273 pool_free2(pool2_task, t);
274 pool_free2(pool2_session, s);
Willy Tarreau45e73e32006-12-17 00:05:15 +0100275 return 0;
276 }
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200277 memset(txn->rsp.cap, 0, p->nb_rsp_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200279
Willy Tarreau45e73e32006-12-17 00:05:15 +0100280
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200281 txn->hdr_idx.size = MAX_HTTP_HDR;
282
283 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL) {
284 /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100285 if (txn->rsp.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200286 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100287 if (txn->req.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200288 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100289 close(cfd); /* nothing can be done for this fd without memory */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200290 pool_free2(pool2_task, t);
291 pool_free2(pool2_session, s);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100292 return 0;
293 }
Willy Tarreauc2168d32007-03-03 20:51:44 +0100294 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100295 }
296
Willy Tarreaubaaee002006-06-26 02:48:02 +0200297 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
298 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299 if (p->to_log) {
300 /* we have the client ip */
301 if (s->logs.logwait & LW_CLIP)
302 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreau42250582007-04-01 01:30:43 +0200303 tcp_sess_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200304 }
305 else if (s->cli_addr.ss_family == AF_INET) {
306 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200307
308 if (!(s->flags & SN_FRT_ADDR_SET))
309 get_frt_addr(s);
310
311 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200312 sn, sizeof(sn)) &&
313 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
314 pn, sizeof(pn))) {
315 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
316 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200317 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200318 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
319 }
320 }
321 else {
322 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200323
324 if (!(s->flags & SN_FRT_ADDR_SET))
325 get_frt_addr(s);
326
327 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200328 sn, sizeof(sn)) &&
329 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
330 pn, sizeof(pn))) {
331 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
332 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200333 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200334 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
335 }
336 }
337 }
338
339 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200340 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200341
342 if (!(s->flags & SN_FRT_ADDR_SET))
343 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200344
345 if (s->cli_addr.ss_family == AF_INET) {
346 char pn[INET_ADDRSTRLEN];
347 inet_ntop(AF_INET,
348 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
349 pn, sizeof(pn));
350
351 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
352 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
353 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
354 }
355 else {
356 char pn[INET6_ADDRSTRLEN];
357 inet_ntop(AF_INET6,
358 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
359 pn, sizeof(pn));
360
361 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
362 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
363 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
364 }
365
366 write(1, trash, len);
367 }
368
Willy Tarreau7341d942007-05-13 19:56:02 +0200369 if ((s->req = pool_alloc2(pool2_buffer)) == NULL) { /* no memory */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100370 if (txn->hdr_idx.v != NULL)
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200371 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100372 if (txn->rsp.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200373 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100374 if (txn->req.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200375 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200376 close(cfd); /* nothing can be done for this fd without memory */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200377 pool_free2(pool2_task, t);
378 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200379 return 0;
380 }
381
Willy Tarreau54469402006-07-29 16:59:06 +0200382 buffer_init(s->req);
383 s->req->rlim += BUFSIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 if (s->cli_state == CL_STHEADERS) /* reserve some space for header rewriting */
385 s->req->rlim -= MAXREWRITE;
386
Willy Tarreau73de9892006-11-30 11:40:23 +0100387 s->req->rto = s->fe->clitimeout;
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200388 s->req->wto = s->be->srvtimeout;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100389 s->req->cto = s->be->contimeout;
Willy Tarreaud7971282006-07-29 18:36:34 +0200390
Willy Tarreau7341d942007-05-13 19:56:02 +0200391 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL) { /* no memory */
392 pool_free2(pool2_buffer, s->req);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100393 if (txn->hdr_idx.v != NULL)
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200394 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100395 if (txn->rsp.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200396 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreauc2168d32007-03-03 20:51:44 +0100397 if (txn->req.cap != NULL)
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200398 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399 close(cfd); /* nothing can be done for this fd without memory */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200400 pool_free2(pool2_task, t);
401 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200402 return 0;
403 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404
Willy Tarreau54469402006-07-29 16:59:06 +0200405 buffer_init(s->rep);
406
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200407 s->rep->rto = s->be->srvtimeout;
Willy Tarreau830ff452006-12-17 19:31:23 +0100408 s->rep->wto = s->fe->clitimeout;
Willy Tarreauee991362007-05-14 14:37:50 +0200409 tv_eternity(&s->rep->cto);
Willy Tarreaud7971282006-07-29 18:36:34 +0200410
Willy Tarreau7a966482007-04-15 10:58:02 +0200411 fd_insert(cfd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200412 fdtab[cfd].owner = t;
413 fdtab[cfd].state = FD_STREADY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200414 fdtab[cfd].cb[DIR_RD].f = &stream_sock_read;
Willy Tarreau54469402006-07-29 16:59:06 +0200415 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreauf8306d52006-07-29 19:01:31 +0200416 fdtab[cfd].cb[DIR_WR].f = &stream_sock_write;
Willy Tarreau54469402006-07-29 16:59:06 +0200417 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200418 fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
419 fdtab[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200420 fdtab[cfd].ev = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200421
422 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100423 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200424 /* Either we got a request from a monitoring system on an HTTP instance,
425 * or we're in health check mode with the 'httpchk' option enabled. In
426 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
427 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100428 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
429 client_retnclose(s, &msg); /* forge a 200 response */
430 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200431 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100432 struct chunk msg = { .str = "OK\n", .len = 3 };
433 client_retnclose(s, &msg); /* forge an "OK" response */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200434 }
435 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200436 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200437 }
438
Willy Tarreaud7971282006-07-29 18:36:34 +0200439 tv_eternity(&s->req->rex);
440 tv_eternity(&s->req->wex);
441 tv_eternity(&s->req->cex);
442 tv_eternity(&s->rep->rex);
443 tv_eternity(&s->rep->wex);
Willy Tarreau5465e112007-04-29 19:09:47 +0200444 tv_eternity(&t->expire);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200445
Willy Tarreaud825eef2007-05-12 22:35:00 +0200446 if (tv_isset(&s->fe->clitimeout)) {
Willy Tarreau5465e112007-04-29 19:09:47 +0200447 if (EV_FD_ISSET(cfd, DIR_RD)) {
Willy Tarreaud825eef2007-05-12 22:35:00 +0200448 tv_add(&s->req->rex, &now, &s->fe->clitimeout);
Willy Tarreau5465e112007-04-29 19:09:47 +0200449 t->expire = s->req->rex;
450 }
451 if (EV_FD_ISSET(cfd, DIR_WR)) {
Willy Tarreaud825eef2007-05-12 22:35:00 +0200452 tv_add(&s->rep->wex, &now, &s->fe->clitimeout);
Willy Tarreaud95dcb52007-10-15 20:36:37 +0200453 t->expire = s->rep->wex;
Willy Tarreau5465e112007-04-29 19:09:47 +0200454 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200455 }
456
Willy Tarreaubaaee002006-06-26 02:48:02 +0200457 task_queue(t);
458
459 if (p->mode != PR_MODE_HEALTH)
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200460 task_wakeup(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200461
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100462 p->feconn++; /* beconn will be increased later */
463 if (p->feconn > p->feconn_max)
464 p->feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100465
466 if (s->flags & SN_BE_ASSIGNED) {
467 s->be->cum_beconn++;
468 s->be->beconn++;
469 if (s->be->beconn > s->be->beconn_max)
470 s->be->beconn_max = s->be->beconn;
471 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200472 actconn++;
473 totalconn++;
474
475 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100476 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200477 return 0;
478}
479
480
481
Willy Tarreau8797c062007-05-07 00:55:35 +0200482/************************************************************************/
483/* All supported keywords must be declared here. */
484/************************************************************************/
485
486/* set test->ptr to point to the source IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200487static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200488acl_fetch_src(struct proxy *px, struct session *l4, void *l7, int dir,
489 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200490{
491 test->i = l4->cli_addr.ss_family;
492 if (test->i == AF_INET)
493 test->ptr = (void *)&((struct sockaddr_in *)&l4->cli_addr)->sin_addr;
494 else
495 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_addr;
496 test->flags = ACL_TEST_F_READ_ONLY;
497 return 1;
498}
499
500
501/* set test->i to the connexion's source port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200502static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200503acl_fetch_sport(struct proxy *px, struct session *l4, void *l7, int dir,
504 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200505{
506 if (l4->cli_addr.ss_family == AF_INET)
507 test->i = ntohs(((struct sockaddr_in *)&l4->cli_addr)->sin_port);
508 else
509 test->i = ntohs(((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_port);
510 test->flags = 0;
511 return 1;
512}
513
Willy Tarreau662b2d82007-05-08 19:56:15 +0200514
515/* 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 +0200516static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200517acl_fetch_dst(struct proxy *px, struct session *l4, void *l7, int dir,
518 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200519{
520 if (!(l4->flags & SN_FRT_ADDR_SET))
521 get_frt_addr(l4);
522
523 test->i = l4->frt_addr.ss_family;
524 if (test->i == AF_INET)
525 test->ptr = (void *)&((struct sockaddr_in *)&l4->frt_addr)->sin_addr;
526 else
527 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_addr;
528 test->flags = ACL_TEST_F_READ_ONLY;
529 return 1;
530}
531
532
533/* set test->i to the frontend connexion's destination port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200534static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200535acl_fetch_dport(struct proxy *px, struct session *l4, void *l7, int dir,
536 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200537{
538 if (!(l4->flags & SN_FRT_ADDR_SET))
539 get_frt_addr(l4);
540
541 if (l4->frt_addr.ss_family == AF_INET)
542 test->i = ntohs(((struct sockaddr_in *)&l4->frt_addr)->sin_port);
543 else
544 test->i = ntohs(((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_port);
545 test->flags = 0;
546 return 1;
547}
548
Willy Tarreau8797c062007-05-07 00:55:35 +0200549/* set test->i to the number of connexions to the proxy */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200550static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200551acl_fetch_dconn(struct proxy *px, struct session *l4, void *l7, int dir,
552 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200553{
554 test->i = px->feconn;
555 return 1;
556}
557
558
559/* Note: must not be declared <const> as its list will be overwritten */
560static struct acl_kw_list acl_kws = {{ },{
Willy Tarreauae8b7962007-06-09 23:10:04 +0200561 { "src_port", acl_parse_int, acl_fetch_sport, acl_match_int },
562 { "src", acl_parse_ip, acl_fetch_src, acl_match_ip },
563 { "dst", acl_parse_ip, acl_fetch_dst, acl_match_ip },
564 { "dst_port", acl_parse_int, acl_fetch_dport, acl_match_int },
Willy Tarreau662b2d82007-05-08 19:56:15 +0200565#if 0
Willy Tarreauae8b7962007-06-09 23:10:04 +0200566 { "src_limit", acl_parse_int, acl_fetch_sconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200567#endif
Willy Tarreauae8b7962007-06-09 23:10:04 +0200568 { "dst_conn", acl_parse_int, acl_fetch_dconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200569 { NULL, NULL, NULL, NULL },
570}};
571
572
573__attribute__((constructor))
574static void __client_init(void)
575{
576 acl_register_keywords(&acl_kws);
577}
578
579
Willy Tarreaubaaee002006-06-26 02:48:02 +0200580/*
581 * Local variables:
582 * c-indent-level: 8
583 * c-basic-offset: 8
584 * End:
585 */