blob: b2b6b1141c792146eceac7fb8c4969fa92191f7e [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 Tarreaua73fcaf2011-03-20 10:15:22 +01004 * Copyright 2000-2011 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 Tarreau48a7e722010-12-24 15:26:39 +010023#include <netinet/tcp.h>
24
Willy Tarreauc7e42382012-08-24 19:22:53 +020025#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020027#include <common/config.h>
Willy Tarreau8b0cbf92010-10-15 23:23:19 +020028#include <common/debug.h>
29#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreaubaaee002006-06-26 02:48:02 +020032#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
Willy Tarreau8797c062007-05-07 00:55:35 +020034#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020035#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020036#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020038#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010040#include <proto/hdr_idx.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020041#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010043#include <proto/proxy.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020044#include <proto/session.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010045#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046#include <proto/task.h>
47
Willy Tarreau81f9aa32010-06-01 17:45:26 +020048/* Finish a session accept() for a proxy (TCP or HTTP). It returns a negative
Willy Tarreauabe8ea52010-11-11 10:56:04 +010049 * value in case of a critical failure which must cause the listener to be
50 * disabled, a positive value in case of success, or zero if it is a success
51 * but the session must be closed ASAP (eg: monitoring).
Willy Tarreaubaaee002006-06-26 02:48:02 +020052 */
Willy Tarreau81f9aa32010-06-01 17:45:26 +020053int frontend_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +020054{
Willy Tarreaufb7508a2012-05-21 16:47:54 +020055 int cfd = si_fd(&s->si[0]);
Emeric Brunb982a3d2010-01-04 15:45:53 +010056
Willy Tarreaueb472682010-05-28 18:46:57 +020057 tv_zero(&s->logs.tv_request);
58 s->logs.t_queue = -1;
59 s->logs.t_connect = -1;
60 s->logs.t_data = -1;
61 s->logs.t_close = 0;
62 s->logs.bytes_in = s->logs.bytes_out = 0;
63 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
64 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaubaaee002006-06-26 02:48:02 +020065
Willy Tarreau35a09942010-06-01 17:12:40 +020066 /* FIXME: the logs are horribly complicated now, because they are
67 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreaueb472682010-05-28 18:46:57 +020068 */
William Lallemandbddd4fd2012-02-27 11:23:10 +010069 s->do_log = sess_log;
Willy Tarreau35a09942010-06-01 17:12:40 +020070
71 /* default error reporting function, may be changed by analysers */
72 s->srv_error = default_srv_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +020073
Willy Tarreauf67c9782010-05-23 22:59:00 +020074 /* Adjust some socket options */
Willy Tarreau9c3bc222010-12-24 14:49:37 +010075 if (s->listener->addr.ss_family == AF_INET || s->listener->addr.ss_family == AF_INET6) {
76 if (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
77 (char *) &one, sizeof(one)) == -1)
78 goto out_return;
Willy Tarreauf67c9782010-05-23 22:59:00 +020079
Willy Tarreau9c3bc222010-12-24 14:49:37 +010080 if (s->fe->options & PR_O_TCP_CLI_KA)
81 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE,
82 (char *) &one, sizeof(one));
Willy Tarreauf67c9782010-05-23 22:59:00 +020083
Willy Tarreau9c3bc222010-12-24 14:49:37 +010084 if (s->fe->options & PR_O_TCP_NOLING)
85 setsockopt(cfd, SOL_SOCKET, SO_LINGER,
86 (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreau48a7e722010-12-24 15:26:39 +010087#if defined(TCP_MAXSEG)
88 if (s->listener->maxseg < 0) {
89 /* we just want to reduce the current MSS by that value */
90 int mss;
Willy Tarreau7d286a02011-01-05 15:42:54 +010091 socklen_t mss_len = sizeof(mss);
Willy Tarreau48a7e722010-12-24 15:26:39 +010092 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
93 mss += s->listener->maxseg; /* remember, it's < 0 */
94 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
95 }
96 }
97#endif
Willy Tarreau9c3bc222010-12-24 14:49:37 +010098 }
Willy Tarreauf67c9782010-05-23 22:59:00 +020099
100 if (global.tune.client_sndbuf)
101 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
102
103 if (global.tune.client_rcvbuf)
104 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
105
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200106 if (s->fe->mode == PR_MODE_HTTP) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200107 /* the captures are only used in HTTP frontends */
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200108 if (unlikely(s->fe->nb_req_cap > 0 &&
109 (s->txn.req.cap = pool_alloc2(s->fe->req_cap_pool)) == NULL))
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100110 goto out_return; /* no memory */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200112 if (unlikely(s->fe->nb_rsp_cap > 0 &&
113 (s->txn.rsp.cap = pool_alloc2(s->fe->rsp_cap_pool)) == NULL))
Willy Tarreau35a09942010-06-01 17:12:40 +0200114 goto out_free_reqcap; /* no memory */
Willy Tarreaueb472682010-05-28 18:46:57 +0200115 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200117 if (s->fe->acl_requires & ACL_USE_L7_ANY) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200118 /* we have to allocate header indexes only if we know
119 * that we may make use of them. This of course includes
120 * (mode == PR_MODE_HTTP).
Willy Tarreau042cc792007-03-19 16:20:06 +0100121 */
Willy Tarreauac1932d2011-10-24 19:14:41 +0200122 s->txn.hdr_idx.size = global.tune.max_http_hdr;
Willy Tarreau45e73e32006-12-17 00:05:15 +0100123
Willy Tarreau34eb6712011-10-24 18:15:04 +0200124 if (unlikely((s->txn.hdr_idx.v = pool_alloc2(pool2_hdr_idx)) == NULL))
Willy Tarreau35a09942010-06-01 17:12:40 +0200125 goto out_free_rspcap; /* no memory */
Willy Tarreau45e73e32006-12-17 00:05:15 +0100126
Willy Tarreaueb472682010-05-28 18:46:57 +0200127 /* and now initialize the HTTP transaction state */
128 http_init_txn(s);
129 }
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100130
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200131 if ((s->fe->mode == PR_MODE_TCP || s->fe->mode == PR_MODE_HTTP)
William Lallemand0f99e342011-10-12 17:50:54 +0200132 && (!LIST_ISEMPTY(&s->fe->logsrvs))) {
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200133 if (likely(s->fe->to_log)) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200134 /* we have the client ip */
135 if (s->logs.logwait & LW_CLIP)
136 if (!(s->logs.logwait &= ~LW_CLIP))
137 s->do_log(s);
Willy Tarreaua3445fc2010-05-20 16:17:07 +0200138 }
Willy Tarreau631f01c2011-09-05 00:36:48 +0200139 else {
Willy Tarreaueb472682010-05-28 18:46:57 +0200140 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200141
Willy Tarreau986a9d22012-08-30 21:11:38 +0200142 conn_get_from_addr(&s->req->prod->conn);
143 conn_get_to_addr(&s->req->prod->conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
Willy Tarreau986a9d22012-08-30 21:11:38 +0200145 switch (addr_to_str(&s->req->prod->conn.addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200146 case AF_INET:
147 case AF_INET6:
Willy Tarreau986a9d22012-08-30 21:11:38 +0200148 addr_to_str(&s->req->prod->conn.addr.to, sn, sizeof(sn));
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200149 send_log(s->fe, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
Willy Tarreau986a9d22012-08-30 21:11:38 +0200150 pn, get_host_port(&s->req->prod->conn.addr.from),
151 sn, get_host_port(&s->req->prod->conn.addr.to),
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200152 s->fe->id, (s->fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
Willy Tarreau631f01c2011-09-05 00:36:48 +0200153 break;
154 case AF_UNIX:
155 /* UNIX socket, only the destination is known */
156 send_log(s->fe, LOG_INFO, "Connect to unix:%d (%s/%s)\n",
157 s->listener->luid,
158 s->fe->id, (s->fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
159 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200161 }
162 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200163
Willy Tarreau2281b7f2010-05-28 19:29:49 +0200164 if (unlikely((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200165 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub0f75322011-09-09 11:21:06 +0200166 int len = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167
Willy Tarreau986a9d22012-08-30 21:11:38 +0200168 conn_get_from_addr(&s->req->prod->conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169
Willy Tarreau986a9d22012-08-30 21:11:38 +0200170 switch (addr_to_str(&s->req->prod->conn.addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200171 case AF_INET:
172 case AF_INET6:
Willy Tarreaueb472682010-05-28 18:46:57 +0200173 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200174 s->uniq_id, s->fe->id, (unsigned short)s->listener->fd, (unsigned short)cfd,
Willy Tarreau986a9d22012-08-30 21:11:38 +0200175 pn, get_host_port(&s->req->prod->conn.addr.from));
Willy Tarreau631f01c2011-09-05 00:36:48 +0200176 break;
177 case AF_UNIX:
178 /* UNIX socket, only the destination is known */
Emeric Brunab844ea2010-10-22 16:33:18 +0200179 len = sprintf(trash, "%08x:%s.accept(%04x)=%04x from [unix:%d]\n",
180 s->uniq_id, s->fe->id, (unsigned short)s->listener->fd, (unsigned short)cfd,
181 s->listener->luid);
Willy Tarreau631f01c2011-09-05 00:36:48 +0200182 break;
Emeric Brunab844ea2010-10-22 16:33:18 +0200183 }
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200184
Willy Tarreau21337822012-04-29 14:11:38 +0200185 if (write(1, trash, len) < 0) /* shut gcc warning */;
Willy Tarreaueb472682010-05-28 18:46:57 +0200186 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200187
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200188 if (s->fe->mode == PR_MODE_HTTP)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200189 s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190
Willy Tarreaueb472682010-05-28 18:46:57 +0200191 /* note: this should not happen anymore since there's always at least the switching rules */
192 if (!s->req->analysers) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200193 channel_auto_connect(s->req); /* don't wait to establish connection */
194 channel_auto_close(s->req); /* let the producer forward close requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200195 }
Willy Tarreaud7971282006-07-29 18:36:34 +0200196
Willy Tarreaueb472682010-05-28 18:46:57 +0200197 s->req->rto = s->fe->timeout.client;
Willy Tarreaueb472682010-05-28 18:46:57 +0200198 s->rep->wto = s->fe->timeout.client;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200200 if (unlikely((s->fe->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
Willy Tarreau1620ec32011-08-06 17:05:02 +0200201 (s->fe->mode == PR_MODE_HEALTH && ((s->fe->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK)))) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200202 /* Either we got a request from a monitoring system on an HTTP instance,
203 * or we're in health check mode with the 'httpchk' option enabled. In
204 * both cases, we return a fake "HTTP/1.0 200 OK" response and we exit.
205 */
206 struct chunk msg;
207 chunk_initstr(&msg, "HTTP/1.0 200 OK\r\n\r\n");
208 stream_int_retnclose(&s->si[0], &msg); /* forge a 200 response */
209 s->req->analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200210 s->task->expire = s->rep->wex;
Willy Tarreau49b046d2012-08-09 12:11:58 +0200211 fd_stop_recv(cfd);
Willy Tarreaueb472682010-05-28 18:46:57 +0200212 }
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200213 else if (unlikely(s->fe->mode == PR_MODE_HEALTH)) { /* health check mode, no client reading */
Willy Tarreaueb472682010-05-28 18:46:57 +0200214 struct chunk msg;
215 chunk_initstr(&msg, "OK\n");
216 stream_int_retnclose(&s->si[0], &msg); /* forge an "OK" response */
217 s->req->analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200218 s->task->expire = s->rep->wex;
Willy Tarreau49b046d2012-08-09 12:11:58 +0200219 fd_stop_recv(cfd);
Willy Tarreaueb472682010-05-28 18:46:57 +0200220 }
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200221 /* everything's OK, let's go on */
Willy Tarreaueb472682010-05-28 18:46:57 +0200222 return 1;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100223
224 /* Error unrolling */
Willy Tarreau35a09942010-06-01 17:12:40 +0200225 out_free_rspcap:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200226 pool_free2(s->fe->rsp_cap_pool, s->txn.rsp.cap);
Willy Tarreau35a09942010-06-01 17:12:40 +0200227 out_free_reqcap:
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200228 pool_free2(s->fe->req_cap_pool, s->txn.req.cap);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100229 out_return:
Willy Tarreaueb472682010-05-28 18:46:57 +0200230 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200231}
232
Willy Tarreau22cda212012-08-31 17:43:29 +0200233/* This handshake handler waits a PROXY protocol header at the beginning of the
234 * raw data stream. The header looks like this :
235 *
236 * "PROXY" <SP> PROTO <SP> SRC3 <SP> DST3 <SP> SRC4 <SP> <DST4> "\r\n"
237 *
238 * There must be exactly one space between each field. Fields are :
239 * - PROTO : layer 4 protocol, which must be "TCP4" or "TCP6".
240 * - SRC3 : layer 3 (eg: IP) source address in standard text form
241 * - DST3 : layer 3 (eg: IP) destination address in standard text form
242 * - SRC4 : layer 4 (eg: TCP port) source address in standard text form
243 * - DST4 : layer 4 (eg: TCP port) destination address in standard text form
244 *
245 * This line MUST be at the beginning of the buffer and MUST NOT wrap.
246 *
247 * The header line is small and in all cases smaller than the smallest normal
248 * TCP MSS. So it MUST always be delivered as one segment, which ensures we
249 * can safely use MSG_PEEK and avoid buffering.
250 *
251 * Once the data is fetched, the values are set in the connection's address
252 * fields, and data are removed from the socket's buffer. The function returns
253 * zero if it needs to wait for more data or if it fails, or 1 if it completed
254 * and removed itself.
255 */
256int conn_recv_proxy(struct connection *conn, int flag)
257{
258 char *line, *end;
259 int len;
260
261 /* we might have been called just after an asynchronous shutr */
262 if (conn->flags & CO_FL_SOCK_RD_SH)
263 goto fail;
264
265 do {
266 len = recv(conn->t.sock.fd, trash, trashlen, MSG_PEEK);
267 if (len < 0) {
268 if (errno == EINTR)
269 continue;
270 if (errno == EAGAIN) {
271 conn_sock_poll_recv(conn);
272 return 0;
273 }
274 goto fail;
275 }
276 } while (0);
277
278 if (len < 6)
279 goto missing;
280
281 line = trash;
282 end = trash + len;
283
284 /* Decode a possible proxy request, fail early if it does not match */
285 if (strncmp(line, "PROXY ", 6) != 0)
286 goto fail;
287
288 line += 6;
289 if (len < 18) /* shortest possible line */
290 goto missing;
291
292 if (!memcmp(line, "TCP4 ", 5) != 0) {
293 u32 src3, dst3, sport, dport;
294
295 line += 5;
296
297 src3 = inetaddr_host_lim_ret(line, end, &line);
298 if (line == end)
299 goto missing;
300 if (*line++ != ' ')
301 goto fail;
302
303 dst3 = inetaddr_host_lim_ret(line, end, &line);
304 if (line == end)
305 goto missing;
306 if (*line++ != ' ')
307 goto fail;
308
309 sport = read_uint((const char **)&line, end);
310 if (line == end)
311 goto missing;
312 if (*line++ != ' ')
313 goto fail;
314
315 dport = read_uint((const char **)&line, end);
316 if (line > end - 2)
317 goto missing;
318 if (*line++ != '\r')
319 goto fail;
320 if (*line++ != '\n')
321 goto fail;
322
323 /* update the session's addresses and mark them set */
324 ((struct sockaddr_in *)&conn->addr.from)->sin_family = AF_INET;
325 ((struct sockaddr_in *)&conn->addr.from)->sin_addr.s_addr = htonl(src3);
326 ((struct sockaddr_in *)&conn->addr.from)->sin_port = htons(sport);
327
328 ((struct sockaddr_in *)&conn->addr.to)->sin_family = AF_INET;
329 ((struct sockaddr_in *)&conn->addr.to)->sin_addr.s_addr = htonl(dst3);
330 ((struct sockaddr_in *)&conn->addr.to)->sin_port = htons(dport);
331 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
332 }
333 else if (!memcmp(line, "TCP6 ", 5) != 0) {
334 u32 sport, dport;
335 char *src_s;
336 char *dst_s, *sport_s, *dport_s;
337 struct in6_addr src3, dst3;
338
339 line += 5;
340
341 src_s = line;
342 dst_s = sport_s = dport_s = NULL;
343 while (1) {
344 if (line > end - 2) {
345 goto missing;
346 }
347 else if (*line == '\r') {
348 *line = 0;
349 line++;
350 if (*line++ != '\n')
351 goto fail;
352 break;
353 }
354
355 if (*line == ' ') {
356 *line = 0;
357 if (!dst_s)
358 dst_s = line + 1;
359 else if (!sport_s)
360 sport_s = line + 1;
361 else if (!dport_s)
362 dport_s = line + 1;
363 }
364 line++;
365 }
366
367 if (!dst_s || !sport_s || !dport_s)
368 goto fail;
369
370 sport = read_uint((const char **)&sport_s,dport_s - 1);
371 if (*sport_s != 0)
372 goto fail;
373
374 dport = read_uint((const char **)&dport_s,line - 2);
375 if (*dport_s != 0)
376 goto fail;
377
378 if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1)
379 goto fail;
380
381 if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1)
382 goto fail;
383
384 /* update the session's addresses and mark them set */
385 ((struct sockaddr_in6 *)&conn->addr.from)->sin6_family = AF_INET6;
386 memcpy(&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr, &src3, sizeof(struct in6_addr));
387 ((struct sockaddr_in6 *)&conn->addr.from)->sin6_port = htons(sport);
388
389 ((struct sockaddr_in6 *)&conn->addr.to)->sin6_family = AF_INET6;
390 memcpy(&((struct sockaddr_in6 *)&conn->addr.to)->sin6_addr, &dst3, sizeof(struct in6_addr));
391 ((struct sockaddr_in6 *)&conn->addr.to)->sin6_port = htons(dport);
392 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
393 }
394 else {
395 goto fail;
396 }
397
398 /* remove the PROXY line from the request. For this we re-read the
399 * exact line at once. If we don't get the exact same result, we
400 * fail.
401 */
402 len = line - trash;
403 do {
404 int len2 = recv(conn->t.sock.fd, trash, len, 0);
405 if (len2 < 0 && errno == EINTR)
406 continue;
407 if (len2 != len)
408 goto fail;
409 } while (0);
410
411 conn->flags &= ~flag;
412 return 1;
413
414 missing:
415 /* Missing data. Since we're using MSG_PEEK, we can only poll again if
416 * we have not read anything. Otherwise we need to fail because we won't
417 * be able to poll anymore.
418 */
419 fail:
420 conn_sock_stop_both(conn);
421 conn->flags |= CO_FL_ERROR;
422 conn->flags &= ~flag;
423 return 0;
424}
425
Willy Tarreaua73fcaf2011-03-20 10:15:22 +0100426/* Makes a PROXY protocol line from the two addresses. The output is sent to
427 * buffer <buf> for a maximum size of <buf_len> (including the trailing zero).
428 * It returns the number of bytes composing this line (including the trailing
429 * LF), or zero in case of failure (eg: not enough space). It supports TCP4,
430 * TCP6 and "UNKNOWN" formats.
431 */
432int make_proxy_line(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst)
433{
434 int ret = 0;
435
436 if (src->ss_family == dst->ss_family && src->ss_family == AF_INET) {
437 ret = snprintf(buf + ret, buf_len - ret, "PROXY TCP4 ");
438 if (ret >= buf_len)
439 return 0;
440
441 /* IPv4 src */
442 if (!inet_ntop(src->ss_family, &((struct sockaddr_in *)src)->sin_addr, buf + ret, buf_len - ret))
443 return 0;
444
445 ret += strlen(buf + ret);
446 if (ret >= buf_len)
447 return 0;
448
449 buf[ret++] = ' ';
450
451 /* IPv4 dst */
452 if (!inet_ntop(dst->ss_family, &((struct sockaddr_in *)dst)->sin_addr, buf + ret, buf_len - ret))
453 return 0;
454
455 ret += strlen(buf + ret);
456 if (ret >= buf_len)
457 return 0;
458
459 /* source and destination ports */
460 ret += snprintf(buf + ret, buf_len - ret, " %u %u\r\n",
461 ntohs(((struct sockaddr_in *)src)->sin_port),
462 ntohs(((struct sockaddr_in *)dst)->sin_port));
463 if (ret >= buf_len)
464 return 0;
465 }
466 else if (src->ss_family == dst->ss_family && src->ss_family == AF_INET6) {
467 ret = snprintf(buf + ret, buf_len - ret, "PROXY TCP6 ");
468 if (ret >= buf_len)
469 return 0;
470
471 /* IPv6 src */
472 if (!inet_ntop(src->ss_family, &((struct sockaddr_in6 *)src)->sin6_addr, buf + ret, buf_len - ret))
473 return 0;
474
475 ret += strlen(buf + ret);
476 if (ret >= buf_len)
477 return 0;
478
479 buf[ret++] = ' ';
480
481 /* IPv6 dst */
482 if (!inet_ntop(dst->ss_family, &((struct sockaddr_in6 *)dst)->sin6_addr, buf + ret, buf_len - ret))
483 return 0;
484
485 ret += strlen(buf + ret);
486 if (ret >= buf_len)
487 return 0;
488
489 /* source and destination ports */
490 ret += snprintf(buf + ret, buf_len - ret, " %u %u\r\n",
491 ntohs(((struct sockaddr_in6 *)src)->sin6_port),
492 ntohs(((struct sockaddr_in6 *)dst)->sin6_port));
493 if (ret >= buf_len)
494 return 0;
495 }
496 else {
497 /* unknown family combination */
498 ret = snprintf(buf, buf_len, "PROXY UNKNOWN\r\n");
499 if (ret >= buf_len)
500 return 0;
501 }
502 return ret;
503}
504
Willy Tarreaua5e37562011-12-16 17:06:15 +0100505/* set temp integer to the id of the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200506static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200507acl_fetch_fe_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200508 const struct arg *args, struct sample *smp)
Willy Tarreau37406352012-04-23 16:16:37 +0200509{
Willy Tarreauf853c462012-04-23 18:53:56 +0200510 smp->flags = SMP_F_VOL_SESS;
511 smp->type = SMP_T_UINT;
512 smp->data.uint = l4->fe->uuid;
Emeric Brun5d16eda2010-01-04 15:47:45 +0100513 return 1;
514}
515
Willy Tarreau34db1082012-04-19 17:16:54 +0200516/* set temp integer to the number of connections per second reaching the frontend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200517 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200518 * an undefined behaviour.
519 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200520static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200521acl_fetch_fe_sess_rate(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200522 const struct arg *args, struct sample *smp)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200523{
Willy Tarreau37406352012-04-23 16:16:37 +0200524 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +0200525 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +0200526 smp->data.uint = read_freq_ctr(&args->data.prx->fe_sess_per_sec);
Emeric Brun5d16eda2010-01-04 15:47:45 +0100527 return 1;
528}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100529
Willy Tarreau34db1082012-04-19 17:16:54 +0200530/* set temp integer to the number of concurrent connections on the frontend
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200531 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200532 * an undefined behaviour.
533 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200534static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200535acl_fetch_fe_conn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +0200536 const struct arg *args, struct sample *smp)
Willy Tarreau8797c062007-05-07 00:55:35 +0200537{
Willy Tarreau37406352012-04-23 16:16:37 +0200538 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +0200539 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +0200540 smp->data.uint = args->data.prx->feconn;
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +0100541 return 1;
542}
543
Willy Tarreau8797c062007-05-07 00:55:35 +0200544
Willy Tarreau61612d42012-04-19 18:42:05 +0200545/* Note: must not be declared <const> as its list will be overwritten.
546 * Please take care of keeping this list alphabetically sorted.
547 */
Willy Tarreau8797c062007-05-07 00:55:35 +0200548static struct acl_kw_list acl_kws = {{ },{
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +0200549 { "fe_conn", acl_parse_int, acl_fetch_fe_conn, acl_match_int, ACL_USE_NOTHING, ARG1(1,FE) },
Willy Tarreau61612d42012-04-19 18:42:05 +0200550 { "fe_id", acl_parse_int, acl_fetch_fe_id, acl_match_int, ACL_USE_NOTHING, 0 },
Willy Tarreaufc2c1fd2012-04-19 23:35:54 +0200551 { "fe_sess_rate", acl_parse_int, acl_fetch_fe_sess_rate, acl_match_int, ACL_USE_NOTHING, ARG1(1,FE) },
Willy Tarreau8797c062007-05-07 00:55:35 +0200552 { NULL, NULL, NULL, NULL },
553}};
554
555
556__attribute__((constructor))
Willy Tarreau03fa5df2010-05-24 21:02:37 +0200557static void __frontend_init(void)
Willy Tarreau8797c062007-05-07 00:55:35 +0200558{
559 acl_register_keywords(&acl_kws);
560}
561
562
Willy Tarreaubaaee002006-06-26 02:48:02 +0200563/*
564 * Local variables:
565 * c-indent-level: 8
566 * c-basic-offset: 8
567 * End:
568 */