blob: bc7b2547eaf5f4fc3dcbeaa3c490962d5b5344de [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 Tarreaudded32d2008-11-30 19:48:07 +010037#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038#include <proto/stream_sock.h>
39#include <proto/task.h>
40
41
Willy Tarreau14c8aac2007-05-08 19:46:30 +020042/* Retrieves the original destination address used by the client, and sets the
43 * SN_FRT_ADDR_SET flag.
44 */
45void get_frt_addr(struct session *s)
46{
47 socklen_t namelen = sizeof(s->frt_addr);
48
49 if (get_original_dst(s->cli_fd, (struct sockaddr_in *)&s->frt_addr, &namelen) == -1)
50 getsockname(s->cli_fd, (struct sockaddr *)&s->frt_addr, &namelen);
51 s->flags |= SN_FRT_ADDR_SET;
52}
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
54/*
55 * FIXME: This should move to the STREAM_SOCK code then split into TCP and HTTP.
56 */
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010057
Willy Tarreaubaaee002006-06-26 02:48:02 +020058/*
59 * this function is called on a read event from a listen socket, corresponding
60 * to an accept. It tries to accept as many connections as possible.
61 * It returns 0.
62 */
63int event_accept(int fd) {
Willy Tarreaueabf3132008-08-29 23:36:51 +020064 struct listener *l = fdtab[fd].owner;
Willy Tarreaue6b98942007-10-29 01:09:36 +010065 struct proxy *p = (struct proxy *)l->private; /* attached frontend */
Willy Tarreaubaaee002006-06-26 02:48:02 +020066 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010067 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020068 struct task *t;
69 int cfd;
Willy Tarreaua0250ba2008-01-06 11:22:57 +010070 int max_accept = global.tune.maxaccept;
Willy Tarreaubaaee002006-06-26 02:48:02 +020071
Willy Tarreauf1221aa2006-12-17 22:14:12 +010072 while (p->feconn < p->maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020073 struct sockaddr_storage addr;
74 socklen_t laddr = sizeof(addr);
75
76 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
77 switch (errno) {
78 case EAGAIN:
79 case EINTR:
80 case ECONNABORTED:
81 return 0; /* nothing more to accept */
82 case ENFILE:
83 send_log(p, LOG_EMERG,
84 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
85 p->id, maxfd);
86 return 0;
87 case EMFILE:
88 send_log(p, LOG_EMERG,
89 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
90 p->id, maxfd);
91 return 0;
92 case ENOBUFS:
93 case ENOMEM:
94 send_log(p, LOG_EMERG,
95 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
96 p->id, maxfd);
97 return 0;
98 default:
99 return 0;
100 }
101 }
102
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200103 if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200105 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100107 goto out_close;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108 }
109
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100110 LIST_ADDQ(&sessions, &s->list);
111
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200112 s->flags = 0;
Willy Tarreauf8533202008-08-16 14:55:08 +0200113 s->term_trace = 0;
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200114
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 /* if this session comes from a known monitoring system, we want to ignore
116 * it as soon as possible, which means closing it immediately for TCP.
117 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 if (addr.ss_family == AF_INET &&
119 p->mon_mask.s_addr &&
120 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
121 if (p->mode == PR_MODE_TCP) {
122 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200123 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124 continue;
125 }
126 s->flags |= SN_MONITOR;
127 }
128
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200129 if ((t = pool_alloc2(pool2_task)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200131 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100133 goto out_free_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134 }
135
136 s->cli_addr = addr;
137 if (cfd >= global.maxsock) {
138 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100139 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 }
141
142 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
143 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
144 (char *) &one, sizeof(one)) == -1)) {
145 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100146 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 }
148
149 if (p->options & PR_O_TCP_CLI_KA)
150 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
151
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200152 if (p->options & PR_O_TCP_NOLING)
153 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
154
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200155 task_init(t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156 t->process = process_session;
157 t->context = s;
158
159 s->task = t;
Willy Tarreau830ff452006-12-17 19:31:23 +0100160 s->be = s->fe = p;
Willy Tarreau73de9892006-11-30 11:40:23 +0100161
Willy Tarreaua7e76142007-11-03 14:28:39 +0100162 /* in HTTP mode, content switching requires that the backend
163 * first points to the same proxy as the frontend. However, in
164 * TCP mode there will be no header processing so any default
165 * backend must be assigned if set.
166 */
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200167 if (p->mode == PR_MODE_TCP) {
168 if (p->defbe.be)
169 s->be = p->defbe.be;
170 s->flags |= SN_BE_ASSIGNED;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100171 }
172
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200173 s->cli_state = CL_STDATA;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174 s->req = s->rep = NULL; /* will be allocated later */
175
Willy Tarreau35374672008-09-03 18:11:02 +0200176 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200177 s->si[0].err_type = SI_ET_NONE;
178 s->si[0].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200179 s->si[0].owner = t;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200180 s->si[0].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200181 s->si[0].shutw = stream_sock_shutw;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200182 s->si[0].fd = cfd;
Willy Tarreaud7704b52008-09-04 11:51:16 +0200183 s->si[0].flags = SI_FL_NONE;
Willy Tarreau35374672008-09-03 18:11:02 +0200184 s->si[0].exp = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200185 s->cli_fd = cfd;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200186
Willy Tarreau35374672008-09-03 18:11:02 +0200187 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200188 s->si[1].err_type = SI_ET_NONE;
189 s->si[1].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200190 s->si[1].owner = t;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200191 s->si[1].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200192 s->si[1].shutw = stream_sock_shutw;
Willy Tarreau35374672008-09-03 18:11:02 +0200193 s->si[1].exp = TICK_ETERNITY;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200194 s->si[1].fd = -1; /* just to help with debugging */
Willy Tarreaud7704b52008-09-04 11:51:16 +0200195 s->si[1].flags = SI_FL_NONE;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200196
Willy Tarreau7c669d72008-06-20 15:04:11 +0200197 s->srv = s->prev_srv = s->srv_conn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200198 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100199 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100200
201 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200202 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100203 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204
205 if (s->flags & SN_MONITOR)
206 s->logs.logwait = 0;
207 else
208 s->logs.logwait = p->to_log;
209
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100210 if (s->logs.logwait & LW_REQ)
211 s->do_log = http_sess_log;
212 else
213 s->do_log = tcp_sess_log;
214
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200215 s->logs.accept_date = date; /* user-visible date for logging */
216 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau70089872008-06-13 21:12:51 +0200217 tv_zero(&s->logs.tv_request);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200218 s->logs.t_queue = -1;
219 s->logs.t_connect = -1;
220 s->logs.t_data = -1;
221 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100222 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200223 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
224 s->logs.srv_queue_size = 0; /* we will get this number soon */
225
226 s->data_source = DATA_SRC_NONE;
227
228 s->uniq_id = totalconn;
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100229 p->cum_feconn++; /* cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230
Willy Tarreauc2168d32007-03-03 20:51:44 +0100231 txn = &s->txn;
Willy Tarreau3d300592007-03-18 18:34:41 +0100232 txn->flags = 0;
Willy Tarreau042cc792007-03-19 16:20:06 +0100233 /* Those variables will be checked and freed if non-NULL in
234 * session.c:session_free(). It is important that they are
235 * properly initialized.
236 */
237 txn->srv_cookie = NULL;
238 txn->cli_cookie = NULL;
239 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100240 txn->req.cap = NULL;
241 txn->rsp.cap = NULL;
242 txn->hdr_idx.v = NULL;
243 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100244
245 if (p->mode == PR_MODE_HTTP) {
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100246 txn->status = -1;
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200247 txn->req.hdr_content_len = 0LL;
248 txn->rsp.hdr_content_len = 0LL;
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 Tarreau8ced9a42007-11-04 17:51:50 +0100256 if ((txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL)
257 goto out_fail_reqcap; /* no memory */
258
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200259 memset(txn->req.cap, 0, p->nb_req_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200260 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261
Willy Tarreau45e73e32006-12-17 00:05:15 +0100262
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200263 if (p->nb_rsp_cap > 0) {
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100264 if ((txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL)
265 goto out_fail_rspcap; /* no memory */
266
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200267 memset(txn->rsp.cap, 0, p->nb_rsp_cap*sizeof(char *));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200269
Willy Tarreau45e73e32006-12-17 00:05:15 +0100270
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200271 txn->hdr_idx.size = MAX_HTTP_HDR;
272
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100273 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL)
274 goto out_fail_idx; /* no memory */
275
Willy Tarreauc2168d32007-03-03 20:51:44 +0100276 hdr_idx_init(&txn->hdr_idx);
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100277 }
278
Willy Tarreaubaaee002006-06-26 02:48:02 +0200279 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
280 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200281 if (p->to_log) {
282 /* we have the client ip */
283 if (s->logs.logwait & LW_CLIP)
284 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100285 s->do_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200286 }
287 else if (s->cli_addr.ss_family == AF_INET) {
288 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200289
290 if (!(s->flags & SN_FRT_ADDR_SET))
291 get_frt_addr(s);
292
293 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200294 sn, sizeof(sn)) &&
295 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
296 pn, sizeof(pn))) {
297 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
298 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200299 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200300 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
301 }
302 }
303 else {
304 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200305
306 if (!(s->flags & SN_FRT_ADDR_SET))
307 get_frt_addr(s);
308
309 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200310 sn, sizeof(sn)) &&
311 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
312 pn, sizeof(pn))) {
313 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
314 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200315 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200316 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
317 }
318 }
319 }
320
321 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200323
324 if (!(s->flags & SN_FRT_ADDR_SET))
325 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326
327 if (s->cli_addr.ss_family == AF_INET) {
328 char pn[INET_ADDRSTRLEN];
329 inet_ntop(AF_INET,
330 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
331 pn, sizeof(pn));
332
333 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
334 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
335 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
336 }
337 else {
338 char pn[INET6_ADDRSTRLEN];
339 inet_ntop(AF_INET6,
340 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
341 pn, sizeof(pn));
342
343 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
344 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
345 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
346 }
347
348 write(1, trash, len);
349 }
350
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100351 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
352 goto out_fail_req; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353
Willy Tarreau54469402006-07-29 16:59:06 +0200354 buffer_init(s->req);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200355 s->req->prod = &s->si[0];
356 s->req->cons = &s->si[1];
Willy Tarreau48adac52008-08-30 04:58:38 +0200357 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200358
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200359 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
360
Willy Tarreaub6866442008-07-14 23:54:42 +0200361 if (p->mode == PR_MODE_HTTP) /* reserve some space for header rewriting */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362 s->req->rlim -= MAXREWRITE;
363
Willy Tarreau2df28e82008-08-17 15:20:19 +0200364 if (s->fe->tcp_req.inspect_delay)
365 s->req->analysers |= AN_REQ_INSPECT;
366
367 if (p->mode == PR_MODE_HTTP)
368 s->req->analysers |= AN_REQ_HTTP_HDR;
369
370 if (!s->req->analysers)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200371 buffer_write_ena(s->req); /* don't wait to establish connection */
Willy Tarreaudc0a6a02008-08-03 20:38:13 +0200372
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100373 s->req->rto = s->fe->timeout.client;
374 s->req->wto = s->be->timeout.server;
375 s->req->cto = s->be->timeout.connect;
Willy Tarreaud7971282006-07-29 18:36:34 +0200376
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100377 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
378 goto out_fail_rep; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200379
Willy Tarreau54469402006-07-29 16:59:06 +0200380 buffer_init(s->rep);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200381 s->rep->prod = &s->si[1];
382 s->rep->cons = &s->si[0];
Willy Tarreau48adac52008-08-30 04:58:38 +0200383 s->si[0].ob = s->si[1].ib = s->rep;
Willy Tarreau54469402006-07-29 16:59:06 +0200384
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100385 s->rep->rto = s->be->timeout.server;
386 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200387 s->rep->cto = TICK_ETERNITY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200388
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200389 s->req->rex = TICK_ETERNITY;
390 s->req->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200391 s->req->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200392 s->rep->rex = TICK_ETERNITY;
393 s->rep->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200394 s->rep->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200395 t->expire = TICK_ETERNITY;
396
Willy Tarreau7a966482007-04-15 10:58:02 +0200397 fd_insert(cfd);
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200398 fdtab[cfd].owner = &s->si[0];
Willy Tarreaue6b98942007-10-29 01:09:36 +0100399 fdtab[cfd].listener = l;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400 fdtab[cfd].state = FD_STREADY;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100401 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
Willy Tarreau54469402006-07-29 16:59:06 +0200402 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100403 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
Willy Tarreau54469402006-07-29 16:59:06 +0200404 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreaue94ebd02007-10-09 17:14:37 +0200405 fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
406 fdtab[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407
408 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100409 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 /* Either we got a request from a monitoring system on an HTTP instance,
411 * or we're in health check mode with the 'httpchk' option enabled. In
412 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
413 */
Willy Tarreau0f772532006-12-23 20:51:41 +0100414 struct chunk msg = { .str = "HTTP/1.0 200 OK\r\n\r\n", .len = 19 };
Willy Tarreaudded32d2008-11-30 19:48:07 +0100415 stream_int_retnclose(&s->si[0], &msg); /* forge a 200 response */
Willy Tarreauf8533202008-08-16 14:55:08 +0200416 trace_term(s, TT_CLIENT_1);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200417 t->expire = s->rep->wex;
Willy Tarreau0f772532006-12-23 20:51:41 +0100418 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Willy Tarreau0f772532006-12-23 20:51:41 +0100420 struct chunk msg = { .str = "OK\n", .len = 3 };
Willy Tarreaudded32d2008-11-30 19:48:07 +0100421 stream_int_retnclose(&s->si[0], &msg); /* forge an "OK" response */
Willy Tarreauf8533202008-08-16 14:55:08 +0200422 trace_term(s, TT_CLIENT_2);
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200423 t->expire = s->rep->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200424 }
425 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200426 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200427 }
428
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200429 /* it is important not to call the wakeup function directly but to
430 * pass through task_wakeup(), because this one knows how to apply
431 * priorities to tasks.
432 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 if (p->mode != PR_MODE_HEALTH)
Willy Tarreaufdccded2008-08-29 18:19:04 +0200434 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100436 p->feconn++; /* beconn will be increased later */
437 if (p->feconn > p->feconn_max)
438 p->feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100439
440 if (s->flags & SN_BE_ASSIGNED) {
441 s->be->cum_beconn++;
442 s->be->beconn++;
443 if (s->be->beconn > s->be->beconn_max)
444 s->be->beconn_max = s->be->beconn;
445 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 actconn++;
447 totalconn++;
448
449 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100450 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451 return 0;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100452
453 /* Error unrolling */
454 out_fail_rep:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200455 pool_free2(pool2_buffer, s->req);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100456 out_fail_req:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200457 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100458 out_fail_idx:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200459 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100460 out_fail_rspcap:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200461 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100462 out_fail_reqcap:
463 out_free_task:
464 pool_free2(pool2_task, t);
465 out_free_session:
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100466 LIST_DEL(&s->list);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100467 pool_free2(pool2_session, s);
468 out_close:
469 close(cfd);
470 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200471}
472
473
474
Willy Tarreau8797c062007-05-07 00:55:35 +0200475/************************************************************************/
476/* All supported keywords must be declared here. */
477/************************************************************************/
478
479/* set test->ptr to point to the source IPv4/IPv6 address and test->i to the family */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200480static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200481acl_fetch_src(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 test->i = l4->cli_addr.ss_family;
485 if (test->i == AF_INET)
486 test->ptr = (void *)&((struct sockaddr_in *)&l4->cli_addr)->sin_addr;
487 else
488 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_addr;
489 test->flags = ACL_TEST_F_READ_ONLY;
490 return 1;
491}
492
493
494/* set test->i to the connexion's source port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200495static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200496acl_fetch_sport(struct proxy *px, struct session *l4, void *l7, int dir,
497 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200498{
499 if (l4->cli_addr.ss_family == AF_INET)
500 test->i = ntohs(((struct sockaddr_in *)&l4->cli_addr)->sin_port);
501 else
502 test->i = ntohs(((struct sockaddr_in6 *)(&l4->cli_addr))->sin6_port);
503 test->flags = 0;
504 return 1;
505}
506
Willy Tarreau662b2d82007-05-08 19:56:15 +0200507
508/* 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 +0200509static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200510acl_fetch_dst(struct proxy *px, struct session *l4, void *l7, int dir,
511 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200512{
513 if (!(l4->flags & SN_FRT_ADDR_SET))
514 get_frt_addr(l4);
515
516 test->i = l4->frt_addr.ss_family;
517 if (test->i == AF_INET)
518 test->ptr = (void *)&((struct sockaddr_in *)&l4->frt_addr)->sin_addr;
519 else
520 test->ptr = (void *)&((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_addr;
521 test->flags = ACL_TEST_F_READ_ONLY;
522 return 1;
523}
524
525
526/* set test->i to the frontend connexion's destination port */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200527static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200528acl_fetch_dport(struct proxy *px, struct session *l4, void *l7, int dir,
529 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200530{
531 if (!(l4->flags & SN_FRT_ADDR_SET))
532 get_frt_addr(l4);
533
534 if (l4->frt_addr.ss_family == AF_INET)
535 test->i = ntohs(((struct sockaddr_in *)&l4->frt_addr)->sin_port);
536 else
537 test->i = ntohs(((struct sockaddr_in6 *)(&l4->frt_addr))->sin6_port);
538 test->flags = 0;
539 return 1;
540}
541
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100542
Willy Tarreau8797c062007-05-07 00:55:35 +0200543/* set test->i to the number of connexions to the proxy */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200544static int
Willy Tarreau97be1452007-06-10 11:47:14 +0200545acl_fetch_dconn(struct proxy *px, struct session *l4, void *l7, int dir,
546 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200547{
548 test->i = px->feconn;
549 return 1;
550}
551
552
553/* Note: must not be declared <const> as its list will be overwritten */
554static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200555 { "src_port", acl_parse_int, acl_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT },
556 { "src", acl_parse_ip, acl_fetch_src, acl_match_ip, ACL_USE_TCP4_PERMANENT },
557 { "dst", acl_parse_ip, acl_fetch_dst, acl_match_ip, ACL_USE_TCP4_PERMANENT },
558 { "dst_port", acl_parse_int, acl_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT },
Willy Tarreau662b2d82007-05-08 19:56:15 +0200559#if 0
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100560 { "src_limit", acl_parse_int, acl_fetch_sconn, acl_match_int },
Willy Tarreau8797c062007-05-07 00:55:35 +0200561#endif
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200562 { "dst_conn", acl_parse_int, acl_fetch_dconn, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau8797c062007-05-07 00:55:35 +0200563 { NULL, NULL, NULL, NULL },
564}};
565
566
567__attribute__((constructor))
568static void __client_init(void)
569{
570 acl_register_keywords(&acl_kws);
571}
572
573
Willy Tarreaubaaee002006-06-26 02:48:02 +0200574/*
575 * Local variables:
576 * c-indent-level: 8
577 * c-basic-offset: 8
578 * End:
579 */