blob: bc354b92222368333c6a4c41459792e9305bd2aa [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau03fa5df2010-05-24 21:02:37 +02002 * Frontend variables and functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreau03fa5df2010-05-24 21:02:37 +02004 * Copyright 2000-2010 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/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020032#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010034#include <proto/hdr_idx.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020035#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010037#include <proto/proxy.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020038#include <proto/session.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010039#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/stream_sock.h>
41#include <proto/task.h>
42
43
Willy Tarreau14c8aac2007-05-08 19:46:30 +020044/* Retrieves the original destination address used by the client, and sets the
45 * SN_FRT_ADDR_SET flag.
46 */
47void get_frt_addr(struct session *s)
48{
49 socklen_t namelen = sizeof(s->frt_addr);
50
Willy Tarreau7e5067d2008-12-07 16:27:56 +010051 if (get_original_dst(s->si[0].fd, (struct sockaddr_in *)&s->frt_addr, &namelen) == -1)
52 getsockname(s->si[0].fd, (struct sockaddr *)&s->frt_addr, &namelen);
Willy Tarreau14c8aac2007-05-08 19:46:30 +020053 s->flags |= SN_FRT_ADDR_SET;
54}
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
56/*
57 * FIXME: This should move to the STREAM_SOCK code then split into TCP and HTTP.
58 */
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010059
Willy Tarreaubaaee002006-06-26 02:48:02 +020060/*
61 * this function is called on a read event from a listen socket, corresponding
62 * to an accept. It tries to accept as many connections as possible.
63 * It returns 0.
64 */
65int event_accept(int fd) {
Willy Tarreaueabf3132008-08-29 23:36:51 +020066 struct listener *l = fdtab[fd].owner;
Willy Tarreaue6b98942007-10-29 01:09:36 +010067 struct proxy *p = (struct proxy *)l->private; /* attached frontend */
Willy Tarreaubaaee002006-06-26 02:48:02 +020068 struct session *s;
Willy Tarreauc2168d32007-03-03 20:51:44 +010069 struct http_txn *txn;
Willy Tarreaubaaee002006-06-26 02:48:02 +020070 struct task *t;
71 int cfd;
Willy Tarreaua0250ba2008-01-06 11:22:57 +010072 int max_accept = global.tune.maxaccept;
Willy Tarreaubaaee002006-06-26 02:48:02 +020073
Willy Tarreau13a34bd2009-05-10 18:52:49 +020074 if (p->fe_sps_lim) {
75 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
Willy Tarreau79584222009-03-06 09:18:27 +010076 if (max_accept > max)
77 max_accept = max;
78 }
79
Willy Tarreaub00f9c42009-03-21 22:43:12 +010080 while (p->feconn < p->maxconn && actconn < global.maxconn && max_accept--) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020081 struct sockaddr_storage addr;
82 socklen_t laddr = sizeof(addr);
83
84 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) == -1) {
85 switch (errno) {
86 case EAGAIN:
87 case EINTR:
88 case ECONNABORTED:
89 return 0; /* nothing more to accept */
90 case ENFILE:
91 send_log(p, LOG_EMERG,
92 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
93 p->id, maxfd);
94 return 0;
95 case EMFILE:
96 send_log(p, LOG_EMERG,
97 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
98 p->id, maxfd);
99 return 0;
100 case ENOBUFS:
101 case ENOMEM:
102 send_log(p, LOG_EMERG,
103 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
104 p->id, maxfd);
105 return 0;
106 default:
107 return 0;
108 }
109 }
110
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +0200111 if (l->nbconn >= l->maxconn) {
112 /* too many connections, we shoot this one and return.
113 * FIXME: it would be better to simply switch the listener's
114 * state to LI_FULL and disable the FD. We could re-enable
115 * it upon fd_delete(), but this requires all protocols to
116 * be switched.
117 */
118 goto out_close;
119 }
120
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200121 if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200123 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100125 goto out_close;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200126 }
127
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100128 LIST_ADDQ(&sessions, &s->list);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100129 LIST_INIT(&s->back_refs);
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100130
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200131 s->flags = 0;
Willy Tarreauf8533202008-08-16 14:55:08 +0200132 s->term_trace = 0;
Willy Tarreau67f0eea2008-08-10 22:55:22 +0200133
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134 /* if this session comes from a known monitoring system, we want to ignore
135 * it as soon as possible, which means closing it immediately for TCP.
136 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 if (addr.ss_family == AF_INET &&
138 p->mon_mask.s_addr &&
139 (((struct sockaddr_in *)&addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr) {
140 if (p->mode == PR_MODE_TCP) {
141 close(cfd);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200142 pool_free2(pool2_session, s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143 continue;
144 }
145 s->flags |= SN_MONITOR;
146 }
147
Willy Tarreaua4613182009-03-21 18:13:21 +0100148 if ((t = task_new()) == NULL) { /* disable this proxy for a while */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149 Alert("out of memory in event_accept().\n");
Willy Tarreauf161a342007-04-08 16:59:42 +0200150 EV_FD_CLR(fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 p->state = PR_STIDLE;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100152 goto out_free_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153 }
154
155 s->cli_addr = addr;
156 if (cfd >= global.maxsock) {
157 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100158 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159 }
160
161 if ((fcntl(cfd, F_SETFL, O_NONBLOCK) == -1) ||
162 (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
163 (char *) &one, sizeof(one)) == -1)) {
164 Alert("accept(): cannot set the socket in non blocking mode. Giving up\n");
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100165 goto out_free_task;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200166 }
167
168 if (p->options & PR_O_TCP_CLI_KA)
169 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
170
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200171 if (p->options & PR_O_TCP_NOLING)
172 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
173
Willy Tarreaue803de22010-01-21 17:43:04 +0100174 if (global.tune.client_sndbuf)
175 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
176
177 if (global.tune.client_rcvbuf)
178 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
179
Willy Tarreau3bc13772008-12-07 11:50:35 +0100180 t->process = l->handler;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200181 t->context = s;
Willy Tarreau2c9f5b12009-08-16 19:12:36 +0200182 t->nice = l->nice;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200183
184 s->task = t;
Willy Tarreaub5654f62008-12-07 16:45:10 +0100185 s->listener = l;
Willy Tarreau73de9892006-11-30 11:40:23 +0100186
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200187 /* Note: initially, the session's backend points to the frontend.
188 * This changes later when switching rules are executed or
189 * when the default backend is assigned.
Willy Tarreaua7e76142007-11-03 14:28:39 +0100190 */
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200191 s->be = s->fe = p;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100192
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193 s->req = s->rep = NULL; /* will be allocated later */
194
Willy Tarreau35374672008-09-03 18:11:02 +0200195 s->si[0].state = s->si[0].prev_state = SI_ST_EST;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200196 s->si[0].err_type = SI_ET_NONE;
197 s->si[0].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200198 s->si[0].owner = t;
Willy Tarreaudc85b392009-08-18 07:38:19 +0200199 s->si[0].update = stream_sock_data_finish;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200200 s->si[0].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200201 s->si[0].shutw = stream_sock_shutw;
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100202 s->si[0].chk_rcv = stream_sock_chk_rcv;
203 s->si[0].chk_snd = stream_sock_chk_snd;
Willy Tarreaudc85b392009-08-18 07:38:19 +0200204 s->si[0].connect = NULL;
Willy Tarreaub029f8c2009-09-05 20:57:35 +0200205 s->si[0].iohandler = NULL;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200206 s->si[0].fd = cfd;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200207 s->si[0].flags = SI_FL_NONE | SI_FL_CAP_SPLTCP; /* TCP splicing capable */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200208 if (s->fe->options2 & PR_O2_INDEPSTR)
209 s->si[0].flags |= SI_FL_INDEP_STR;
Willy Tarreau35374672008-09-03 18:11:02 +0200210 s->si[0].exp = TICK_ETERNITY;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200211
Willy Tarreau35374672008-09-03 18:11:02 +0200212 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200213 s->si[1].err_type = SI_ET_NONE;
214 s->si[1].err_loc = NULL;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200215 s->si[1].owner = t;
Willy Tarreaudc85b392009-08-18 07:38:19 +0200216 s->si[1].update = stream_sock_data_finish;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200217 s->si[1].shutr = stream_sock_shutr;
Willy Tarreau48adac52008-08-30 04:58:38 +0200218 s->si[1].shutw = stream_sock_shutw;
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100219 s->si[1].chk_rcv = stream_sock_chk_rcv;
220 s->si[1].chk_snd = stream_sock_chk_snd;
Willy Tarreaudc85b392009-08-18 07:38:19 +0200221 s->si[1].connect = tcpv4_connect_server;
Willy Tarreaub029f8c2009-09-05 20:57:35 +0200222 s->si[1].iohandler = NULL;
Willy Tarreau35374672008-09-03 18:11:02 +0200223 s->si[1].exp = TICK_ETERNITY;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200224 s->si[1].fd = -1; /* just to help with debugging */
Willy Tarreaud7704b52008-09-04 11:51:16 +0200225 s->si[1].flags = SI_FL_NONE;
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200226 if (s->be->options2 & PR_O2_INDEPSTR)
227 s->si[1].flags |= SI_FL_INDEP_STR;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200228
Willy Tarreau7c669d72008-06-20 15:04:11 +0200229 s->srv = s->prev_srv = s->srv_conn = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230 s->pend_pos = NULL;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100231 s->conn_retries = s->be->conn_retries;
Willy Tarreauddb358d2006-12-17 22:55:52 +0100232
Emeric Brunb982a3d2010-01-04 15:45:53 +0100233 /* init store persistence */
234 s->store_count = 0;
235
Willy Tarreauddb358d2006-12-17 22:55:52 +0100236 /* FIXME: the logs are horribly complicated now, because they are
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200237 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreauddb358d2006-12-17 22:55:52 +0100238 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200239
240 if (s->flags & SN_MONITOR)
241 s->logs.logwait = 0;
242 else
243 s->logs.logwait = p->to_log;
244
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100245 if (s->logs.logwait & LW_REQ)
246 s->do_log = http_sess_log;
247 else
248 s->do_log = tcp_sess_log;
249
Willy Tarreau52a0c602009-08-16 22:45:38 +0200250 /* default error reporting function, may be changed by analysers */
251 s->srv_error = default_srv_error;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100252
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200253 s->logs.accept_date = date; /* user-visible date for logging */
254 s->logs.tv_accept = now; /* corrected date for internal use */
Willy Tarreau70089872008-06-13 21:12:51 +0200255 tv_zero(&s->logs.tv_request);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200256 s->logs.t_queue = -1;
257 s->logs.t_connect = -1;
258 s->logs.t_data = -1;
259 s->logs.t_close = 0;
Willy Tarreau35d66b02007-01-02 00:28:21 +0100260 s->logs.bytes_in = s->logs.bytes_out = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
262 s->logs.srv_queue_size = 0; /* we will get this number soon */
263
264 s->data_source = DATA_SRC_NONE;
265
266 s->uniq_id = totalconn;
Willy Tarreaua93c4bb2010-05-23 17:27:44 +0200267 totalconn++;
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200268 proxy_inc_fe_ctr(l, p); /* note: cum_beconn will be increased once assigned */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200269
Willy Tarreauc2168d32007-03-03 20:51:44 +0100270 txn = &s->txn;
Willy Tarreau042cc792007-03-19 16:20:06 +0100271 /* Those variables will be checked and freed if non-NULL in
272 * session.c:session_free(). It is important that they are
273 * properly initialized.
274 */
Willy Tarreaua3377ee2010-01-10 10:49:11 +0100275 txn->sessid = NULL;
Willy Tarreau042cc792007-03-19 16:20:06 +0100276 txn->srv_cookie = NULL;
277 txn->cli_cookie = NULL;
278 txn->uri = NULL;
Willy Tarreauc2168d32007-03-03 20:51:44 +0100279 txn->req.cap = NULL;
280 txn->rsp.cap = NULL;
281 txn->hdr_idx.v = NULL;
282 txn->hdr_idx.size = txn->hdr_idx.used = 0;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100283
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200284 if (p->mode == PR_MODE_HTTP) {
285 /* the captures are only used in HTTP frontends */
Willy Tarreau0937bc42009-12-22 15:03:09 +0100286 if (p->nb_req_cap > 0 &&
287 (txn->req.cap = pool_alloc2(p->req_cap_pool)) == NULL)
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100288 goto out_fail_reqcap; /* no memory */
289
Willy Tarreau0937bc42009-12-22 15:03:09 +0100290 if (p->nb_rsp_cap > 0 &&
291 (txn->rsp.cap = pool_alloc2(p->rsp_cap_pool)) == NULL)
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100292 goto out_fail_rspcap; /* no memory */
Willy Tarreaubf288622009-07-10 23:52:51 +0200293 }
Willy Tarreau45e73e32006-12-17 00:05:15 +0100294
Willy Tarreaubf288622009-07-10 23:52:51 +0200295 if (p->acl_requires & ACL_USE_L7_ANY) {
296 /* we have to allocate header indexes only if we know
297 * that we may make use of them. This of course includes
298 * (mode == PR_MODE_HTTP).
299 */
Willy Tarreau1d4154a2007-05-13 22:57:02 +0200300 txn->hdr_idx.size = MAX_HTTP_HDR;
301
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100302 if ((txn->hdr_idx.v = pool_alloc2(p->hdr_idx_pool)) == NULL)
303 goto out_fail_idx; /* no memory */
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100304
Willy Tarreaua3445fc2010-05-20 16:17:07 +0200305 /* and now initialize the HTTP transaction state */
Willy Tarreau0937bc42009-12-22 15:03:09 +0100306 http_init_txn(s);
Willy Tarreaua3445fc2010-05-20 16:17:07 +0200307 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100308
Willy Tarreaubaaee002006-06-26 02:48:02 +0200309 if ((p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
310 && (p->logfac1 >= 0 || p->logfac2 >= 0)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311 if (p->to_log) {
312 /* we have the client ip */
313 if (s->logs.logwait & LW_CLIP)
314 if (!(s->logs.logwait &= ~LW_CLIP))
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100315 s->do_log(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200316 }
317 else if (s->cli_addr.ss_family == AF_INET) {
318 char pn[INET_ADDRSTRLEN], sn[INET_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200319
320 if (!(s->flags & SN_FRT_ADDR_SET))
321 get_frt_addr(s);
322
323 if (inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->frt_addr)->sin_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324 sn, sizeof(sn)) &&
325 inet_ntop(AF_INET, (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
326 pn, sizeof(pn))) {
327 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
328 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200329 sn, ntohs(((struct sockaddr_in *)&s->frt_addr)->sin_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
331 }
332 }
333 else {
334 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200335
336 if (!(s->flags & SN_FRT_ADDR_SET))
337 get_frt_addr(s);
338
339 if (inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->frt_addr)->sin6_addr,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200340 sn, sizeof(sn)) &&
341 inet_ntop(AF_INET6, (const void *)&((struct sockaddr_in6 *)&s->cli_addr)->sin6_addr,
342 pn, sizeof(pn))) {
343 send_log(p, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
344 pn, ntohs(((struct sockaddr_in6 *)&s->cli_addr)->sin6_port),
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200345 sn, ntohs(((struct sockaddr_in6 *)&s->frt_addr)->sin6_port),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346 p->id, (p->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
347 }
348 }
349 }
350
351 if ((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352 int len;
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200353
354 if (!(s->flags & SN_FRT_ADDR_SET))
355 get_frt_addr(s);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200356
357 if (s->cli_addr.ss_family == AF_INET) {
358 char pn[INET_ADDRSTRLEN];
359 inet_ntop(AF_INET,
360 (const void *)&((struct sockaddr_in *)&s->cli_addr)->sin_addr,
361 pn, sizeof(pn));
362
363 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
364 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
365 pn, ntohs(((struct sockaddr_in *)&s->cli_addr)->sin_port));
366 }
367 else {
368 char pn[INET6_ADDRSTRLEN];
369 inet_ntop(AF_INET6,
370 (const void *)&((struct sockaddr_in6 *)(&s->cli_addr))->sin6_addr,
371 pn, sizeof(pn));
372
373 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
374 s->uniq_id, p->id, (unsigned short)fd, (unsigned short)cfd,
375 pn, ntohs(((struct sockaddr_in6 *)(&s->cli_addr))->sin6_port));
376 }
377
378 write(1, trash, len);
379 }
380
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100381 if ((s->req = pool_alloc2(pool2_buffer)) == NULL)
382 goto out_fail_req; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200383
Willy Tarreau27a674e2009-08-17 07:23:33 +0200384 s->req->size = global.tune.bufsize;
Willy Tarreau54469402006-07-29 16:59:06 +0200385 buffer_init(s->req);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200386 s->req->prod = &s->si[0];
387 s->req->cons = &s->si[1];
Willy Tarreau48adac52008-08-30 04:58:38 +0200388 s->si[0].ib = s->si[1].ob = s->req;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200389
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200390 s->req->flags |= BF_READ_ATTACHED; /* the producer is already connected */
391
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100392 if (p->mode == PR_MODE_HTTP)
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100393 s->req->flags |= BF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200394
Willy Tarreau3bc13772008-12-07 11:50:35 +0100395 /* activate default analysers enabled for this listener */
396 s->req->analysers = l->analysers;
Willy Tarreau2df28e82008-08-17 15:20:19 +0200397
Willy Tarreauc1a21672009-08-16 22:37:44 +0200398 /* note: this should not happen anymore since there's always at least the switching rules */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200399 if (!s->req->analysers) {
400 buffer_auto_connect(s->req); /* don't wait to establish connection */
401 buffer_auto_close(s->req); /* let the producer forward close requests */
402 }
Willy Tarreaudc0a6a02008-08-03 20:38:13 +0200403
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100404 s->req->rto = s->fe->timeout.client;
405 s->req->wto = s->be->timeout.server;
406 s->req->cto = s->be->timeout.connect;
Willy Tarreaud7971282006-07-29 18:36:34 +0200407
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100408 if ((s->rep = pool_alloc2(pool2_buffer)) == NULL)
409 goto out_fail_rep; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410
Willy Tarreau27a674e2009-08-17 07:23:33 +0200411 s->rep->size = global.tune.bufsize;
Willy Tarreau54469402006-07-29 16:59:06 +0200412 buffer_init(s->rep);
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200413 s->rep->prod = &s->si[1];
414 s->rep->cons = &s->si[0];
Willy Tarreau48adac52008-08-30 04:58:38 +0200415 s->si[0].ob = s->si[1].ib = s->rep;
Willy Tarreaue29e1c52010-06-01 19:45:06 +0200416 s->rep->analysers = 0;
Willy Tarreau54469402006-07-29 16:59:06 +0200417
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100418 s->rep->rto = s->be->timeout.server;
419 s->rep->wto = s->fe->timeout.client;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200420 s->rep->cto = TICK_ETERNITY;
Willy Tarreaud7971282006-07-29 18:36:34 +0200421
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200422 s->req->rex = TICK_ETERNITY;
423 s->req->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200424 s->req->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200425 s->rep->rex = TICK_ETERNITY;
426 s->rep->wex = TICK_ETERNITY;
Willy Tarreauffab5b42008-08-17 18:03:28 +0200427 s->rep->analyse_exp = TICK_ETERNITY;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200428 t->expire = TICK_ETERNITY;
429
Willy Tarreau7a966482007-04-15 10:58:02 +0200430 fd_insert(cfd);
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200431 fdtab[cfd].owner = &s->si[0];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200432 fdtab[cfd].state = FD_STREADY;
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200433 fdtab[cfd].flags = FD_FL_TCP | FD_FL_TCP_NODELAY;
Willy Tarreau5d707e12009-06-28 11:09:07 +0200434 if (p->options & PR_O_TCP_NOLING)
435 fdtab[cfd].flags |= FD_FL_TCP_NOLING;
436
Willy Tarreaue6b98942007-10-29 01:09:36 +0100437 fdtab[cfd].cb[DIR_RD].f = l->proto->read;
Willy Tarreau54469402006-07-29 16:59:06 +0200438 fdtab[cfd].cb[DIR_RD].b = s->req;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100439 fdtab[cfd].cb[DIR_WR].f = l->proto->write;
Willy Tarreau54469402006-07-29 16:59:06 +0200440 fdtab[cfd].cb[DIR_WR].b = s->rep;
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200441 fdinfo[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
442 fdinfo[cfd].peerlen = sizeof(s->cli_addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200443
444 if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau0f772532006-12-23 20:51:41 +0100445 (p->mode == PR_MODE_HEALTH && (p->options & PR_O_HTTP_CHK))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 /* Either we got a request from a monitoring system on an HTTP instance,
447 * or we're in health check mode with the 'httpchk' option enabled. In
448 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
449 */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200450 struct chunk msg;
451 chunk_initstr(&msg, "HTTP/1.0 200 OK\r\n\r\n");
Willy Tarreaudded32d2008-11-30 19:48:07 +0100452 stream_int_retnclose(&s->si[0], &msg); /* forge a 200 response */
Willy Tarreau2ade3012009-03-06 19:16:39 +0100453 s->req->analysers = 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200454 t->expire = s->rep->wex;
Willy Tarreau0f772532006-12-23 20:51:41 +0100455 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456 else if (p->mode == PR_MODE_HEALTH) { /* health check mode, no client reading */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200457 struct chunk msg;
458 chunk_initstr(&msg, "OK\n");
Willy Tarreaudded32d2008-11-30 19:48:07 +0100459 stream_int_retnclose(&s->si[0], &msg); /* forge an "OK" response */
Willy Tarreau2ade3012009-03-06 19:16:39 +0100460 s->req->analysers = 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200461 t->expire = s->rep->wex;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200462 }
463 else {
Willy Tarreauf161a342007-04-08 16:59:42 +0200464 EV_FD_SET(cfd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200465 }
466
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200467 /* it is important not to call the wakeup function directly but to
468 * pass through task_wakeup(), because this one knows how to apply
469 * priorities to tasks.
470 */
Willy Tarreau721fdbc2009-03-08 12:25:07 +0100471 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200472
Willy Tarreau6e6fb2b2009-08-16 18:20:44 +0200473 l->nbconn++; /* warning! right now, it's up to the handler to decrease this */
474 if (l->nbconn >= l->maxconn) {
475 EV_FD_CLR(l->fd, DIR_RD);
476 l->state = LI_FULL;
477 }
478
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100479 p->feconn++; /* beconn will be increased later */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200480 if (p->feconn > p->counters.feconn_max)
481 p->counters.feconn_max = p->feconn;
Willy Tarreaua7e76142007-11-03 14:28:39 +0100482
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200483 if (l->counters) {
484 if (l->nbconn > l->counters->conn_max)
485 l->counters->conn_max = l->nbconn;
486 }
487
Willy Tarreaubaaee002006-06-26 02:48:02 +0200488 actconn++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200489
490 // fprintf(stderr, "accepting from %p => %d conn, %d total, task=%p\n", p, actconn, totalconn, t);
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100491 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200492 return 0;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100493
494 /* Error unrolling */
495 out_fail_rep:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200496 pool_free2(pool2_buffer, s->req);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100497 out_fail_req:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200498 pool_free2(p->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100499 out_fail_idx:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200500 pool_free2(p->rsp_cap_pool, txn->rsp.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100501 out_fail_rspcap:
Willy Tarreau48d63db2008-08-03 17:41:33 +0200502 pool_free2(p->req_cap_pool, txn->req.cap);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100503 out_fail_reqcap:
504 out_free_task:
Willy Tarreaua4613182009-03-21 18:13:21 +0100505 task_free(t);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100506 out_free_session:
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100507 LIST_DEL(&s->list);
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100508 pool_free2(pool2_session, s);
509 out_close:
510 close(cfd);
511 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200512}
513
Willy Tarreau645513a2010-05-24 20:55:15 +0200514/* set test->i to the id of the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200515static int
Willy Tarreau645513a2010-05-24 20:55:15 +0200516acl_fetch_fe_id(struct proxy *px, struct session *l4, void *l7, int dir,
517 struct acl_expr *expr, struct acl_test *test) {
Willy Tarreau662b2d82007-05-08 19:56:15 +0200518
Willy Tarreau662b2d82007-05-08 19:56:15 +0200519 test->flags = ACL_TEST_F_READ_ONLY;
Willy Tarreau662b2d82007-05-08 19:56:15 +0200520
Willy Tarreau645513a2010-05-24 20:55:15 +0200521 test->i = l4->fe->uuid;
Willy Tarreau662b2d82007-05-08 19:56:15 +0200522
Emeric Brun5d16eda2010-01-04 15:47:45 +0100523 return 1;
524}
525
Willy Tarreau645513a2010-05-24 20:55:15 +0200526/* set test->i to the number of connections per second reaching the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200527static int
Willy Tarreau645513a2010-05-24 20:55:15 +0200528acl_fetch_fe_sess_rate(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{
Willy Tarreau645513a2010-05-24 20:55:15 +0200531 test->flags = ACL_TEST_F_VOL_TEST;
532 if (expr->arg_len) {
533 /* another proxy was designated, we must look for it */
534 for (px = proxy; px; px = px->next)
535 if ((px->cap & PR_CAP_FE) && !strcmp(px->id, expr->arg.str))
536 break;
537 }
538 if (!px)
539 return 0;
Emeric Brun5d16eda2010-01-04 15:47:45 +0100540
Willy Tarreau645513a2010-05-24 20:55:15 +0200541 test->i = read_freq_ctr(&px->fe_sess_per_sec);
Emeric Brun5d16eda2010-01-04 15:47:45 +0100542 return 1;
543}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100544
Willy Tarreau645513a2010-05-24 20:55:15 +0200545/* set test->i to the number of concurrent connections on the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200546static int
Willy Tarreau645513a2010-05-24 20:55:15 +0200547acl_fetch_fe_conn(struct proxy *px, struct session *l4, void *l7, int dir,
548 struct acl_expr *expr, struct acl_test *test)
Willy Tarreau8797c062007-05-07 00:55:35 +0200549{
Willy Tarreau645513a2010-05-24 20:55:15 +0200550 test->flags = ACL_TEST_F_VOL_TEST;
551 if (expr->arg_len) {
552 /* another proxy was designated, we must look for it */
553 for (px = proxy; px; px = px->next)
554 if ((px->cap & PR_CAP_FE) && !strcmp(px->id, expr->arg.str))
555 break;
556 }
557 if (!px)
558 return 0;
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +0100559
Willy Tarreau645513a2010-05-24 20:55:15 +0200560 test->i = px->feconn;
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +0100561 return 1;
562}
563
Willy Tarreau8797c062007-05-07 00:55:35 +0200564
565/* Note: must not be declared <const> as its list will be overwritten */
566static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau645513a2010-05-24 20:55:15 +0200567 { "fe_id", acl_parse_int, acl_fetch_fe_id, acl_match_int, ACL_USE_NOTHING },
568 { "fe_sess_rate", acl_parse_int, acl_fetch_fe_sess_rate, acl_match_int, ACL_USE_NOTHING },
569 { "fe_conn", acl_parse_int, acl_fetch_fe_conn, acl_match_int, ACL_USE_NOTHING },
Willy Tarreau8797c062007-05-07 00:55:35 +0200570 { NULL, NULL, NULL, NULL },
571}};
572
573
574__attribute__((constructor))
Willy Tarreau03fa5df2010-05-24 21:02:37 +0200575static void __frontend_init(void)
Willy Tarreau8797c062007-05-07 00:55:35 +0200576{
577 acl_register_keywords(&acl_kws);
578}
579
580
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581/*
582 * Local variables:
583 * c-indent-level: 8
584 * c-basic-offset: 8
585 * End:
586 */