blob: 4ef39d06c2a60075275942dacf835025e3e1c23f [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 Tarreaud6896bc2013-01-07 22:48:29 +01004 * Copyright 2000-2013 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 Tarreaud6896bc2013-01-07 22:48:29 +010044#include <proto/sample.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020045#include <proto/stream.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010046#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <proto/task.h>
48
Willy Tarreau87b09662015-04-03 00:22:06 +020049/* Finish a stream accept() for a proxy (TCP or HTTP). It returns a negative
Willy Tarreauabe8ea52010-11-11 10:56:04 +010050 * value in case of a critical failure which must cause the listener to be
51 * disabled, a positive value in case of success, or zero if it is a success
Willy Tarreau87b09662015-04-03 00:22:06 +020052 * but the stream must be closed ASAP (eg: monitoring). It only supports
53 * streams with a connection in si[0].
Willy Tarreaubaaee002006-06-26 02:48:02 +020054 */
Willy Tarreau87b09662015-04-03 00:22:06 +020055int frontend_accept(struct stream *s)
Willy Tarreaueb472682010-05-28 18:46:57 +020056{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020057 struct session *sess = s->sess;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +020058 struct connection *conn = __objt_conn(sess->origin);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020059 struct listener *l = sess->listener;
60 struct proxy *fe = sess->fe;
Willy Tarreaufb0afa72015-04-03 14:46:27 +020061
Willy Tarreaub363a1f2013-10-01 10:45:07 +020062 int cfd = conn->t.sock.fd;
Emeric Brunb982a3d2010-01-04 15:45:53 +010063
Willy Tarreaueb472682010-05-28 18:46:57 +020064 tv_zero(&s->logs.tv_request);
65 s->logs.t_queue = -1;
66 s->logs.t_connect = -1;
67 s->logs.t_data = -1;
68 s->logs.t_close = 0;
69 s->logs.bytes_in = s->logs.bytes_out = 0;
70 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
71 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaubaaee002006-06-26 02:48:02 +020072
Willy Tarreau35a09942010-06-01 17:12:40 +020073 /* FIXME: the logs are horribly complicated now, because they are
74 * defined in <p>, <p>, and later <be> and <be>.
Willy Tarreaueb472682010-05-28 18:46:57 +020075 */
Willy Tarreau87b09662015-04-03 00:22:06 +020076 s->do_log = strm_log;
Willy Tarreau35a09942010-06-01 17:12:40 +020077
78 /* default error reporting function, may be changed by analysers */
79 s->srv_error = default_srv_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Willy Tarreauf67c9782010-05-23 22:59:00 +020081 /* Adjust some socket options */
Willy Tarreaufb0afa72015-04-03 14:46:27 +020082 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
Willy Tarreau9c3bc222010-12-24 14:49:37 +010083 if (setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY,
84 (char *) &one, sizeof(one)) == -1)
85 goto out_return;
Willy Tarreauf67c9782010-05-23 22:59:00 +020086
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020087 if (fe->options & PR_O_TCP_CLI_KA)
Willy Tarreau9c3bc222010-12-24 14:49:37 +010088 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE,
89 (char *) &one, sizeof(one));
Willy Tarreauf67c9782010-05-23 22:59:00 +020090
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020091 if (fe->options & PR_O_TCP_NOLING)
Willy Tarreauad38ace2013-12-15 14:19:38 +010092 fdtab[cfd].linger_risk = 1;
93
Willy Tarreau48a7e722010-12-24 15:26:39 +010094#if defined(TCP_MAXSEG)
Willy Tarreaufb0afa72015-04-03 14:46:27 +020095 if (l->maxseg < 0) {
Willy Tarreau48a7e722010-12-24 15:26:39 +010096 /* we just want to reduce the current MSS by that value */
97 int mss;
Willy Tarreau7d286a02011-01-05 15:42:54 +010098 socklen_t mss_len = sizeof(mss);
Willy Tarreau48a7e722010-12-24 15:26:39 +010099 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200100 mss += l->maxseg; /* remember, it's < 0 */
Willy Tarreau48a7e722010-12-24 15:26:39 +0100101 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
102 }
103 }
104#endif
Willy Tarreau9c3bc222010-12-24 14:49:37 +0100105 }
Willy Tarreauf67c9782010-05-23 22:59:00 +0200106
107 if (global.tune.client_sndbuf)
108 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
109
110 if (global.tune.client_rcvbuf)
111 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
112
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200113 if (unlikely(fe->nb_req_cap > 0)) {
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200114 if ((s->req_cap = pool_alloc2(fe->req_cap_pool)) == NULL)
Willy Tarreau9654e572014-11-18 18:49:19 +0100115 goto out_return; /* no memory */
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200116 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
Willy Tarreau9654e572014-11-18 18:49:19 +0100117 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200119 if (unlikely(fe->nb_rsp_cap > 0)) {
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200120 if ((s->res_cap = pool_alloc2(fe->rsp_cap_pool)) == NULL)
Willy Tarreau9654e572014-11-18 18:49:19 +0100121 goto out_free_reqcap; /* no memory */
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200122 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
Willy Tarreau9654e572014-11-18 18:49:19 +0100123 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200125 if (fe->http_needed) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200126 /* we have to allocate header indexes only if we know
127 * that we may make use of them. This of course includes
128 * (mode == PR_MODE_HTTP).
Willy Tarreau042cc792007-03-19 16:20:06 +0100129 */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200130 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau35a09942010-06-01 17:12:40 +0200131 goto out_free_rspcap; /* no memory */
Willy Tarreau45e73e32006-12-17 00:05:15 +0100132
Willy Tarreaueb472682010-05-28 18:46:57 +0200133 /* and now initialize the HTTP transaction state */
134 http_init_txn(s);
135 }
Willy Tarreaue5f20dc2006-12-03 15:21:35 +0100136
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200137 if ((fe->mode == PR_MODE_TCP || fe->mode == PR_MODE_HTTP)
138 && (!LIST_ISEMPTY(&fe->logsrvs))) {
139 if (likely(!LIST_ISEMPTY(&fe->logformat))) {
Willy Tarreaueb472682010-05-28 18:46:57 +0200140 /* we have the client ip */
141 if (s->logs.logwait & LW_CLIP)
Willy Tarreaud79a3b22012-12-28 09:40:16 +0100142 if (!(s->logs.logwait &= ~(LW_CLIP|LW_INIT)))
Willy Tarreaueb472682010-05-28 18:46:57 +0200143 s->do_log(s);
Willy Tarreaua3445fc2010-05-20 16:17:07 +0200144 }
Willy Tarreau631f01c2011-09-05 00:36:48 +0200145 else {
Willy Tarreaueb472682010-05-28 18:46:57 +0200146 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +0200147
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200148 conn_get_from_addr(conn);
149 conn_get_to_addr(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200151 switch (addr_to_str(&conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200152 case AF_INET:
153 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200154 addr_to_str(&conn->addr.to, sn, sizeof(sn));
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200155 send_log(fe, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200156 pn, get_host_port(&conn->addr.from),
157 sn, get_host_port(&conn->addr.to),
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200158 fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
Willy Tarreau631f01c2011-09-05 00:36:48 +0200159 break;
160 case AF_UNIX:
161 /* UNIX socket, only the destination is known */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200162 send_log(fe, LOG_INFO, "Connect to unix:%d (%s/%s)\n",
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200163 l->luid,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200164 fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
Willy Tarreau631f01c2011-09-05 00:36:48 +0200165 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200166 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200167 }
168 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169
Willy Tarreau2281b7f2010-05-28 19:29:49 +0200170 if (unlikely((global.mode & MODE_DEBUG) && (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200171 char pn[INET6_ADDRSTRLEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200172
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200173 conn_get_from_addr(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200175 switch (addr_to_str(&conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200176 case AF_INET:
177 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100178 chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [%s:%d]\n",
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200179 s->uniq_id, fe->id, (unsigned short)l->fd, (unsigned short)cfd,
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200180 pn, get_host_port(&conn->addr.from));
Willy Tarreau631f01c2011-09-05 00:36:48 +0200181 break;
182 case AF_UNIX:
183 /* UNIX socket, only the destination is known */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100184 chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [unix:%d]\n",
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200185 s->uniq_id, fe->id, (unsigned short)l->fd, (unsigned short)cfd,
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200186 l->luid);
Willy Tarreau631f01c2011-09-05 00:36:48 +0200187 break;
Emeric Brunab844ea2010-10-22 16:33:18 +0200188 }
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200189
Willy Tarreau89efaed2013-12-13 15:14:55 +0100190 shut_your_big_mouth_gcc(write(1, trash.str, trash.len));
Willy Tarreaueb472682010-05-28 18:46:57 +0200191 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200193 if (fe->mode == PR_MODE_HTTP)
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100194 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200195
Willy Tarreaueb472682010-05-28 18:46:57 +0200196 /* note: this should not happen anymore since there's always at least the switching rules */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100197 if (!s->req.analysers) {
198 channel_auto_connect(&s->req); /* don't wait to establish connection */
199 channel_auto_close(&s->req); /* let the producer forward close requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200200 }
Willy Tarreaud7971282006-07-29 18:36:34 +0200201
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200202 s->req.rto = fe->timeout.client;
203 s->res.wto = fe->timeout.client;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200205 /* everything's OK, let's go on */
Willy Tarreaueb472682010-05-28 18:46:57 +0200206 return 1;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100207
208 /* Error unrolling */
Willy Tarreau35a09942010-06-01 17:12:40 +0200209 out_free_rspcap:
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200210 pool_free2(fe->rsp_cap_pool, s->res_cap);
Willy Tarreau35a09942010-06-01 17:12:40 +0200211 out_free_reqcap:
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200212 pool_free2(fe->req_cap_pool, s->req_cap);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100213 out_return:
Willy Tarreaueb472682010-05-28 18:46:57 +0200214 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200215}
216
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100217/************************************************************************/
218/* All supported sample and ACL keywords must be declared here. */
219/************************************************************************/
220
Willy Tarreaua5e37562011-12-16 17:06:15 +0100221/* set temp integer to the id of the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200222static int
Willy Tarreau192252e2015-04-04 01:47:55 +0200223smp_fetch_fe_id(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +0100224 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +0200225{
Willy Tarreauf853c462012-04-23 18:53:56 +0200226 smp->flags = SMP_F_VOL_SESS;
227 smp->type = SMP_T_UINT;
Willy Tarreau192252e2015-04-04 01:47:55 +0200228 smp->data.uint = sess->fe->uuid;
Emeric Brun5d16eda2010-01-04 15:47:45 +0100229 return 1;
230}
231
Willy Tarreau34db1082012-04-19 17:16:54 +0200232/* set temp integer to the number of connections per second reaching the frontend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200233 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200234 * an undefined behaviour.
235 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200236static int
Willy Tarreau192252e2015-04-04 01:47:55 +0200237smp_fetch_fe_sess_rate(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +0100238 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200239{
Willy Tarreau37406352012-04-23 16:16:37 +0200240 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +0200241 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +0200242 smp->data.uint = read_freq_ctr(&args->data.prx->fe_sess_per_sec);
Emeric Brun5d16eda2010-01-04 15:47:45 +0100243 return 1;
244}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100245
Willy Tarreau34db1082012-04-19 17:16:54 +0200246/* set temp integer to the number of concurrent connections on the frontend
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200247 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200248 * an undefined behaviour.
249 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200250static int
Willy Tarreau192252e2015-04-04 01:47:55 +0200251smp_fetch_fe_conn(struct proxy *px, struct session *sess, struct stream *strm, unsigned int opt,
Thierry FOURNIERf41a8092014-12-07 18:37:57 +0100252 const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +0200253{
Willy Tarreau37406352012-04-23 16:16:37 +0200254 smp->flags = SMP_F_VOL_TEST;
Willy Tarreauf853c462012-04-23 18:53:56 +0200255 smp->type = SMP_T_UINT;
Willy Tarreau24e32d82012-04-23 23:55:44 +0200256 smp->data.uint = args->data.prx->feconn;
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +0100257 return 1;
258}
259
Willy Tarreau8797c062007-05-07 00:55:35 +0200260
Willy Tarreau61612d42012-04-19 18:42:05 +0200261/* Note: must not be declared <const> as its list will be overwritten.
262 * Please take care of keeping this list alphabetically sorted.
263 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200264static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100265 { "fe_conn", smp_fetch_fe_conn, ARG1(1,FE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
266 { "fe_id", smp_fetch_fe_id, 0, NULL, SMP_T_UINT, SMP_USE_FTEND, },
267 { "fe_sess_rate", smp_fetch_fe_sess_rate, ARG1(1,FE), NULL, SMP_T_UINT, SMP_USE_INTRN, },
268 { /* END */ },
269}};
270
271
272/* Note: must not be declared <const> as its list will be overwritten.
273 * Please take care of keeping this list alphabetically sorted.
274 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200275static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100276 { /* END */ },
Willy Tarreau8797c062007-05-07 00:55:35 +0200277}};
278
279
280__attribute__((constructor))
Willy Tarreau03fa5df2010-05-24 21:02:37 +0200281static void __frontend_init(void)
Willy Tarreau8797c062007-05-07 00:55:35 +0200282{
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100283 sample_register_fetches(&smp_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +0200284 acl_register_keywords(&acl_kws);
285}
286
287
Willy Tarreaubaaee002006-06-26 02:48:02 +0200288/*
289 * Local variables:
290 * c-indent-level: 8
291 * c-basic-offset: 8
292 * End:
293 */