blob: 8e8dc53f8944bb638e1fae25ba02ca7513fae3f0 [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 */
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010056
Willy Tarreaubaaee002006-06-26 02:48:02 +020057/*
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 Tarreaueabf3132008-08-29 23:36:51 +020063 struct listener *l = fdtab[fd].owner;
Willy Tarreaue6b98942007-10-29 01:09:36 +010064 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
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100109 LIST_ADDQ(&sessions, &s->list);
110
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200111 s->flags = 0;
Willy Tarreauf8533202008-08-16 14:55:08 +0200112 s->term_trace = 0;
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200113
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114 /* if this session comes from a known monitoring system, we want to ignore
115 * it as soon as possible, which means closing it immediately for TCP.
116 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 if (addr.ss_family == AF_INET &&
118 p->mon_mask.s_addr &&
119 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
120 if (p->mode == PR_MODE_TCP) {
121 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200122 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123 continue;
124 }
125 s->flags |= SN_MONITOR;
126 }
127
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200128 if ((t = pool_alloc2(pool2_task)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200130 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100132 goto out_free_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 }
134
135 s->cli_addr = addr;
136 if (cfd >= global.maxsock) {
137 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100138 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139 }
140
141 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
142 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
143 (char *) &one, sizeof(one)) == -1)) {
144 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100145 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146 }
147
148 if (p->options & PR_O_TCP_CLI_KA)
149 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
150
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200151 if (p->options & PR_O_TCP_NOLING)
152 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
153
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200154 task_init(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200155 t->process = process_session;
156 t->context = s;
157
158 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100159 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100160
Willy Tarreaua7e76142007-11-03 14:28:39 +0100161 /* in HTTP mode, content switching requires that the backend
162 * first points to the same proxy as the frontend. However, in
163 * TCP mode there will be no header processing so any default
164 * backend must be assigned if set.
165 */
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200166 if (p->mode == PR_MODE_TCP) {
167 if (p->defbe.be)
168 s->be = p->defbe.be;
169 s->flags |= SN_BE_ASSIGNED;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100170 }
171
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200172 s->cli_state = CL_STDATA;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 s->req = s->rep = NULL; /* will be allocated later */
174
Willy Tarreau35374672008-09-03 18:11:02 +0200175 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200176 s->si[0].err_type = SI_ET_NONE;
177 s->si[0].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200178 s->si[0].owner = t;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200179 s->si[0].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200180 s->si[0].shutw = stream_sock_shutw;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200181 s->si[0].fd = cfd;
Willy Tarreaud7704b52008-09-04 11:51:16 +0200182 s->si[0].flags = SI_FL_NONE;
Willy Tarreau35374672008-09-03 18:11:02 +0200183 s->si[0].exp = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200184 s->cli_fd = cfd;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200185
Willy Tarreau35374672008-09-03 18:11:02 +0200186 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200187 s->si[1].err_type = SI_ET_NONE;
188 s->si[1].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200189 s->si[1].owner = t;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200190 s->si[1].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200191 s->si[1].shutw = stream_sock_shutw;
Willy Tarreau35374672008-09-03 18:11:02 +0200192 s->si[1].exp = TICK_ETERNITY;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200193 s->si[1].fd = -1; /* just to help with debugging */
Willy Tarreaud7704b52008-09-04 11:51:16 +0200194 s->si[1].flags = SI_FL_NONE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200195
Willy Tarreau7c669d72008-06-20 15:04:11 +0200196 s->srv = s->prev_srv = s->srv_conn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100198 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100199
200 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200201 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100202 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203
204 if (s->flags & SN_MONITOR)
205 s->logs.logwait = 0;
206 else
207 s->logs.logwait = p->to_log;
208
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100209 if (s->logs.logwait & LW_REQ)
210 s->do_log = http_sess_log;
211 else
212 s->do_log = tcp_sess_log;
213
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200214 s->logs.accept_date = date; /* user-visible date for logging */
215 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau70089872008-06-13 21:12:51 +0200216 tv_zero(&s->logs.tv_request);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200217 s->logs.t_queue = -1;
218 s->logs.t_connect = -1;
219 s->logs.t_data = -1;
220 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100221 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
223 s->logs.srv_queue_size = 0; /* we will get this number soon */
224
225 s->data_source = DATA_SRC_NONE;
226
227 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100228 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200229
Willy Tarreauc2168d32007-03-03 20:51:44 +0100230 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100231 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100232 /* Those variables will be checked and freed if non-NULL in
233 * session.c:session_free(). It is important that they are
234 * properly initialized.
235 */
236 txn->srv_cookie = NULL;
237 txn->cli_cookie = NULL;
238 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100239 txn->req.cap = NULL;
240 txn->rsp.cap = NULL;
241 txn->hdr_idx.v = NULL;
242 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100243
244 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100245 txn->status = -1;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200246 txn->req.hdr_content_len = 0LL;
247 txn->rsp.hdr_content_len = 0LL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100248 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
Willy Tarreauc11416f2007-06-17 16:58:38 +0200249 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
Willy Tarreauc2168d32007-03-03 20:51:44 +0100250 txn->req.sol = txn->req.eol = NULL;
251 txn->req.som = txn->req.eoh = 0; /* relative to the buffer */
252 txn->auth_hdr.len = -1;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100253
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200254 if (p->nb_req_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100255 if ((txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL)
256 goto out_fail_reqcap; /* no memory */
257
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200258 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200259 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200260
Willy Tarreau45e73e32006-12-17 00:05:15 +0100261
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200262 if (p->nb_rsp_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100263 if ((txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL)
264 goto out_fail_rspcap; /* no memory */
265
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200266 memset(txn->rsp.cap, 0, p->nb_rsp_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200267 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268
Willy Tarreau45e73e32006-12-17 00:05:15 +0100269
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200270 txn->hdr_idx.size = MAX_HTTP_HDR;
271
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100272 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL)
273 goto out_fail_idx; /* no memory */
274
Willy Tarreauc2168d32007-03-03 20:51:44 +0100275 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100276 }
277
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
279 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200280 if (p->to_log) {
281 /* we have the client ip */
282 if (s->logs.logwait & LW_CLIP)
283 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100284 s->do_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200285 }
286 else if (s->cli_addr.ss_family == AF_INET) {
287 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200288
289 if (!(s->flags & SN_FRT_ADDR_SET))
290 get_frt_addr(s);
291
292 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200293 sn, sizeof(sn)) &&
294 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
295 pn, sizeof(pn))) {
296 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
297 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200298 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
300 }
301 }
302 else {
303 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200304
305 if (!(s->flags & SN_FRT_ADDR_SET))
306 get_frt_addr(s);
307
308 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200309 sn, sizeof(sn)) &&
310 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
311 pn, sizeof(pn))) {
312 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
313 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200314 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200315 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
316 }
317 }
318 }
319
320 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200321 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200322
323 if (!(s->flags & SN_FRT_ADDR_SET))
324 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200325
326 if (s->cli_addr.ss_family == AF_INET) {
327 char pn[INET_ADDRSTRLEN];
328 inet_ntop(AF_INET,
329 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_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_in *)&s->cli_addr)->sin_port));
335 }
336 else {
337 char pn[INET6_ADDRSTRLEN];
338 inet_ntop(AF_INET6,
339 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
340 pn, sizeof(pn));
341
342 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
343 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
344 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
345 }
346
347 write(1, trash, len);
348 }
349
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100350 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
351 goto out_fail_req; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352
Willy Tarreau54469402006-07-29 16:59:06 +0200353 buffer_init(s->req);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200354 s->req->prod = &s->si[0];
355 s->req->cons = &s->si[1];
Willy Tarreau48adac52008-08-30 04:58:38 +0200356 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200357
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200358 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
359
Willy Tarreaub6866442008-07-14 23:54:42 +0200360 if (p->mode == PR_MODE_HTTP) /* reserve some space for header rewriting */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200361 s->req->rlim -= MAXREWRITE;
362
Willy Tarreau2df28e82008-08-17 15:20:19 +0200363 if (s->fe->tcp_req.inspect_delay)
364 s->req->analysers |= AN_REQ_INSPECT;
365
366 if (p->mode == PR_MODE_HTTP)
367 s->req->analysers |= AN_REQ_HTTP_HDR;
368
369 if (!s->req->analysers)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200370 buffer_write_ena(s->req); /* don't wait to establish connection */
Willy Tarreaudc0a6a02008-08-03 20:38:13 +0200371
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100372 s->req->rto = s->fe->timeout.client;
373 s->req->wto = s->be->timeout.server;
374 s->req->cto = s->be->timeout.connect;
Willy Tarreaud7971282006-07-29 18:36:34 +0200375
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100376 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
377 goto out_fail_rep; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200378
Willy Tarreau54469402006-07-29 16:59:06 +0200379 buffer_init(s->rep);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200380 s->rep->prod = &s->si[1];
381 s->rep->cons = &s->si[0];
Willy Tarreau48adac52008-08-30 04:58:38 +0200382 s->si[0].ob = s->si[1].ib = s->rep;
Willy Tarreau54469402006-07-29 16:59:06 +0200383
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100384 s->rep->rto = s->be->timeout.server;
385 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200386 s->rep->cto = TICK_ETERNITY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200387
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200388 s->req->rex = TICK_ETERNITY;
389 s->req->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200390 s->req->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200391 s->rep->rex = TICK_ETERNITY;
392 s->rep->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200393 s->rep->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200394 t->expire = TICK_ETERNITY;
395
Willy Tarreau7a966482007-04-15 10:58:02 +0200396 fd_insert(cfd);
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200397 fdtab[cfd].owner = &s->si[0];
Willy Tarreaue6b98942007-10-29 01:09:36 +0100398 fdtab[cfd].listener = l;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399 fdtab[cfd].state = FD_STREADY;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100400 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
Willy Tarreau54469402006-07-29 16:59:06 +0200401 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100402 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
Willy Tarreau54469402006-07-29 16:59:06 +0200403 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200404 fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
405 fdtab[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406
407 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100408 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409 /* Either we got a request from a monitoring system on an HTTP instance,
410 * or we're in health check mode with the 'httpchk' option enabled. In
411 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
412 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100413 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
414 client_retnclose(s, &msg); /* forge a 200 response */
Willy Tarreauf8533202008-08-16 14:55:08 +0200415 trace_term(s, TT_CLIENT_1);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200416 t->expire = s->rep->wex;
Willy Tarreau0f772532006-12-23 20:51:41 +0100417 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100419 struct chunk msg = { .str = "OK\n", .len = 3 };
420 client_retnclose(s, &msg); /* forge an "OK" response */
Willy Tarreauf8533202008-08-16 14:55:08 +0200421 trace_term(s, TT_CLIENT_2);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200422 t->expire = s->rep->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200423 }
424 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200425 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426 }
427
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200428 /* it is important not to call the wakeup function directly but to
429 * pass through task_wakeup(), because this one knows how to apply
430 * priorities to tasks.
431 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200432 if (p->mode != PR_MODE_HEALTH)
Willy Tarreaufdccded2008-08-29 18:19:04 +0200433 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200434
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100435 p->feconn++; /* beconn will be increased later */
436 if (p->feconn > p->feconn_max)
437 p->feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100438
439 if (s->flags & SN_BE_ASSIGNED) {
440 s->be->cum_beconn++;
441 s->be->beconn++;
442 if (s->be->beconn > s->be->beconn_max)
443 s->be->beconn_max = s->be->beconn;
444 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200445 actconn++;
446 totalconn++;
447
448 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100449 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200450 return 0;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100451
452 /* Error unrolling */
453 out_fail_rep:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200454 pool_free2(pool2_buffer, s->req);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100455 out_fail_req:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200456 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100457 out_fail_idx:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200458 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100459 out_fail_rspcap:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200460 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100461 out_fail_reqcap:
462 out_free_task:
463 pool_free2(pool2_task, t);
464 out_free_session:
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100465 LIST_DEL(&s->list);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100466 pool_free2(pool2_session, s);
467 out_close:
468 close(cfd);
469 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200470}
471
472
473
Willy Tarreau8797c062007-05-07 00:55:35 +0200474/************************************************************************/
475/* All supported keywords must be declared here. */
476/************************************************************************/
477
478/* set test->ptr to point to the source IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200479static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200480acl_fetch_src(struct proxy *px, struct session *l4, void *l7, int dir,
481 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200482{
483 test->i = l4->cli_addr.ss_family;
484 if (test->i == AF_INET)
485 test->ptr = (void *)&((struct sockaddr_in *)&l4->cli_addr)->sin_addr;
486 else
487 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_addr;
488 test->flags = ACL_TEST_F_READ_ONLY;
489 return 1;
490}
491
492
493/* set test->i to the connexion's source port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200494static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200495acl_fetch_sport(struct proxy *px, struct session *l4, void *l7, int dir,
496 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200497{
498 if (l4->cli_addr.ss_family == AF_INET)
499 test->i = ntohs(((struct sockaddr_in *)&l4->cli_addr)->sin_port);
500 else
501 test->i = ntohs(((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_port);
502 test->flags = 0;
503 return 1;
504}
505
Willy Tarreau662b2d82007-05-08 19:56:15 +0200506
507/* 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 +0200508static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200509acl_fetch_dst(struct proxy *px, struct session *l4, void *l7, int dir,
510 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200511{
512 if (!(l4->flags & SN_FRT_ADDR_SET))
513 get_frt_addr(l4);
514
515 test->i = l4->frt_addr.ss_family;
516 if (test->i == AF_INET)
517 test->ptr = (void *)&((struct sockaddr_in *)&l4->frt_addr)->sin_addr;
518 else
519 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_addr;
520 test->flags = ACL_TEST_F_READ_ONLY;
521 return 1;
522}
523
524
525/* set test->i to the frontend connexion's destination port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200526static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200527acl_fetch_dport(struct proxy *px, struct session *l4, void *l7, int dir,
528 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200529{
530 if (!(l4->flags & SN_FRT_ADDR_SET))
531 get_frt_addr(l4);
532
533 if (l4->frt_addr.ss_family == AF_INET)
534 test->i = ntohs(((struct sockaddr_in *)&l4->frt_addr)->sin_port);
535 else
536 test->i = ntohs(((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_port);
537 test->flags = 0;
538 return 1;
539}
540
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100541
Willy Tarreau8797c062007-05-07 00:55:35 +0200542/* set test->i to the number of connexions to the proxy */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200543static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200544acl_fetch_dconn(struct proxy *px, struct session *l4, void *l7, int dir,
545 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200546{
547 test->i = px->feconn;
548 return 1;
549}
550
551
552/* Note: must not be declared <const> as its list will be overwritten */
553static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200554 { "src_port", acl_parse_int, acl_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT },
555 { "src", acl_parse_ip, acl_fetch_src, acl_match_ip, ACL_USE_TCP4_PERMANENT },
556 { "dst", acl_parse_ip, acl_fetch_dst, acl_match_ip, ACL_USE_TCP4_PERMANENT },
557 { "dst_port", acl_parse_int, acl_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT },
Willy Tarreau662b2d82007-05-08 19:56:15 +0200558#if 0
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100559 { "src_limit", acl_parse_int, acl_fetch_sconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200560#endif
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200561 { "dst_conn", acl_parse_int, acl_fetch_dconn, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau8797c062007-05-07 00:55:35 +0200562 { NULL, NULL, NULL, NULL },
563}};
564
565
566__attribute__((constructor))
567static void __client_init(void)
568{
569 acl_register_keywords(&acl_kws);
570}
571
572
Willy Tarreaubaaee002006-06-26 02:48:02 +0200573/*
574 * Local variables:
575 * c-indent-level: 8
576 * c-basic-offset: 8
577 * End:
578 */