blob: 716725746085fb7ee7fc3db540dbbadcc4561df8 [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>
Willy Tarreau0108d902018-11-25 19:14:37 +010029#include <common/initcall.h>
Willy Tarreau8b0cbf92010-10-15 23:23:19 +020030#include <common/standard.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020031#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Willy Tarreau8797c062007-05-07 00:55:35 +020035#include <proto/acl.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020036#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038#include <proto/fd.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020039#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/log.h>
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010041#include <proto/hdr_idx.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020042#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010044#include <proto/proxy.h>
Willy Tarreaud6896bc2013-01-07 22:48:29 +010045#include <proto/sample.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020046#include <proto/stream.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010047#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#include <proto/task.h>
49
Willy Tarreau87b09662015-04-03 00:22:06 +020050/* Finish a stream accept() for a proxy (TCP or HTTP). It returns a negative
Willy Tarreauabe8ea52010-11-11 10:56:04 +010051 * value in case of a critical failure which must cause the listener to be
Willy Tarreaue0232f12015-04-05 18:01:06 +020052 * disabled, a positive or null value in case of success.
Willy Tarreaubaaee002006-06-26 02:48:02 +020053 */
Willy Tarreau87b09662015-04-03 00:22:06 +020054int frontend_accept(struct stream *s)
Willy Tarreaueb472682010-05-28 18:46:57 +020055{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020056 struct session *sess = s->sess;
Willy Tarreaue0232f12015-04-05 18:01:06 +020057 struct connection *conn = objt_conn(sess->origin);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020058 struct listener *l = sess->listener;
59 struct proxy *fe = sess->fe;
Willy Tarreaufb0afa72015-04-03 14:46:27 +020060
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020061 if ((fe->mode == PR_MODE_TCP || fe->mode == PR_MODE_HTTP)
62 && (!LIST_ISEMPTY(&fe->logsrvs))) {
63 if (likely(!LIST_ISEMPTY(&fe->logformat))) {
Willy Tarreaueb472682010-05-28 18:46:57 +020064 /* we have the client ip */
65 if (s->logs.logwait & LW_CLIP)
Willy Tarreaud79a3b22012-12-28 09:40:16 +010066 if (!(s->logs.logwait &= ~(LW_CLIP|LW_INIT)))
Willy Tarreaueb472682010-05-28 18:46:57 +020067 s->do_log(s);
Willy Tarreaua3445fc2010-05-20 16:17:07 +020068 }
Willy Tarreaue0232f12015-04-05 18:01:06 +020069 else if (conn) {
Willy Tarreaueb472682010-05-28 18:46:57 +020070 char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN];
Willy Tarreau14c8aac2007-05-08 19:46:30 +020071
Willy Tarreaub363a1f2013-10-01 10:45:07 +020072 conn_get_from_addr(conn);
73 conn_get_to_addr(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +020074
Willy Tarreaub363a1f2013-10-01 10:45:07 +020075 switch (addr_to_str(&conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +020076 case AF_INET:
77 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +020078 addr_to_str(&conn->addr.to, sn, sizeof(sn));
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020079 send_log(fe, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +020080 pn, get_host_port(&conn->addr.from),
81 sn, get_host_port(&conn->addr.to),
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020082 fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
Willy Tarreau631f01c2011-09-05 00:36:48 +020083 break;
84 case AF_UNIX:
85 /* UNIX socket, only the destination is known */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020086 send_log(fe, LOG_INFO, "Connect to unix:%d (%s/%s)\n",
Willy Tarreaufb0afa72015-04-03 14:46:27 +020087 l->luid,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +020088 fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP");
Willy Tarreau631f01c2011-09-05 00:36:48 +020089 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +020090 }
Willy Tarreaueb472682010-05-28 18:46:57 +020091 }
92 }
Willy Tarreaubaaee002006-06-26 02:48:02 +020093
Willy Tarreaue0232f12015-04-05 18:01:06 +020094 if (unlikely((global.mode & MODE_DEBUG) && conn &&
95 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +020096 char pn[INET6_ADDRSTRLEN];
Willy Tarreau9c266802016-12-04 19:05:24 +010097 char alpn[16] = "<none>";
Willy Tarreau20814ff2017-09-15 11:43:32 +020098 const char *alpn_str = NULL;
99 int alpn_len;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200101 conn_get_from_addr(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102
Willy Tarreau20814ff2017-09-15 11:43:32 +0200103 /* try to report the ALPN value when available (also works for NPN) */
104
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200105 if (conn && conn == cs_conn(objt_cs(s->si[0].end))) {
Willy Tarreau20814ff2017-09-15 11:43:32 +0200106 if (conn_get_alpn(conn, &alpn_str, &alpn_len) && alpn_str) {
107 int len = MIN(alpn_len, sizeof(alpn) - 1);
108 memcpy(alpn, alpn_str, len);
109 alpn[len] = 0;
110 }
Willy Tarreau9c266802016-12-04 19:05:24 +0100111 }
112
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200113 switch (addr_to_str(&conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +0200114 case AF_INET:
115 case AF_INET6:
Willy Tarreau9c266802016-12-04 19:05:24 +0100116 chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [%s:%d] ALPN=%s\n",
Willy Tarreau585744b2017-08-24 14:31:19 +0200117 s->uniq_id, fe->id, (unsigned short)l->fd, (unsigned short)conn->handle.fd,
Willy Tarreau9c266802016-12-04 19:05:24 +0100118 pn, get_host_port(&conn->addr.from), alpn);
Willy Tarreau631f01c2011-09-05 00:36:48 +0200119 break;
120 case AF_UNIX:
121 /* UNIX socket, only the destination is known */
Willy Tarreau9c266802016-12-04 19:05:24 +0100122 chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [unix:%d] ALPN=%s\n",
Willy Tarreau585744b2017-08-24 14:31:19 +0200123 s->uniq_id, fe->id, (unsigned short)l->fd, (unsigned short)conn->handle.fd,
Willy Tarreau9c266802016-12-04 19:05:24 +0100124 l->luid, alpn);
Willy Tarreau631f01c2011-09-05 00:36:48 +0200125 break;
Emeric Brunab844ea2010-10-22 16:33:18 +0200126 }
Willy Tarreau9a2d1542008-08-30 12:31:07 +0200127
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200128 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreaueb472682010-05-28 18:46:57 +0200129 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200131 if (fe->mode == PR_MODE_HTTP)
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100132 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133
Willy Tarreau0a6bed22016-12-04 18:39:22 +0100134 if (unlikely(fe->nb_req_cap > 0)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100135 if ((s->req_cap = pool_alloc(fe->req_cap_pool)) == NULL)
Willy Tarreau0a6bed22016-12-04 18:39:22 +0100136 goto out_return; /* no memory */
137 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
138 }
139
140 if (unlikely(fe->nb_rsp_cap > 0)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100141 if ((s->res_cap = pool_alloc(fe->rsp_cap_pool)) == NULL)
Willy Tarreau0a6bed22016-12-04 18:39:22 +0100142 goto out_free_reqcap; /* no memory */
143 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
144 }
145
146 if (fe->http_needed) {
147 /* we have to allocate header indexes only if we know
148 * that we may make use of them. This of course includes
149 * (mode == PR_MODE_HTTP).
150 */
151 if (unlikely(!http_alloc_txn(s)))
152 goto out_free_rspcap; /* no memory */
153
154 /* and now initialize the HTTP transaction state */
155 http_init_txn(s);
156 }
157
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200158 /* everything's OK, let's go on */
Willy Tarreaueb472682010-05-28 18:46:57 +0200159 return 1;
Willy Tarreau8ced9a42007-11-04 17:51:50 +0100160
161 /* Error unrolling */
Willy Tarreau35a09942010-06-01 17:12:40 +0200162 out_free_rspcap:
Willy Tarreaubafbe012017-11-24 17:34:44 +0100163 pool_free(fe->rsp_cap_pool, s->res_cap);
Willy Tarreau35a09942010-06-01 17:12:40 +0200164 out_free_reqcap:
Willy Tarreaubafbe012017-11-24 17:34:44 +0100165 pool_free(fe->req_cap_pool, s->req_cap);
Willy Tarreauabe8ea52010-11-11 10:56:04 +0100166 out_return:
Willy Tarreaueb472682010-05-28 18:46:57 +0200167 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168}
169
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100170/************************************************************************/
171/* All supported sample and ACL keywords must be declared here. */
172/************************************************************************/
173
Willy Tarreaua5e37562011-12-16 17:06:15 +0100174/* set temp integer to the id of the frontend */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200175static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200176smp_fetch_fe_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau37406352012-04-23 16:16:37 +0200177{
Willy Tarreauf853c462012-04-23 18:53:56 +0200178 smp->flags = SMP_F_VOL_SESS;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200179 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200180 smp->data.u.sint = smp->sess->fe->uuid;
Emeric Brun5d16eda2010-01-04 15:47:45 +0100181 return 1;
182}
183
Marcin Deranekd2471c22016-12-12 14:08:05 +0100184/* set string to the name of the frontend */
185static int
186smp_fetch_fe_name(const struct arg *args, struct sample *smp, const char *kw, void *private)
187{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200188 smp->data.u.str.area = (char *)smp->sess->fe->id;
189 if (!smp->data.u.str.area)
Marcin Deranekd2471c22016-12-12 14:08:05 +0100190 return 0;
191
192 smp->data.type = SMP_T_STR;
193 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200194 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranekd2471c22016-12-12 14:08:05 +0100195 return 1;
196}
197
Marcin Deranek9a66dfb2018-04-13 14:37:50 +0200198/* set string to the name of the default backend */
199static int
200smp_fetch_fe_defbe(const struct arg *args, struct sample *smp, const char *kw, void *private)
201{
202 if (!smp->sess->fe->defbe.be)
203 return 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200204 smp->data.u.str.area = (char *)smp->sess->fe->defbe.be->id;
205 if (!smp->data.u.str.area)
Marcin Deranek9a66dfb2018-04-13 14:37:50 +0200206 return 0;
207
208 smp->data.type = SMP_T_STR;
209 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200210 smp->data.u.str.data = strlen(smp->data.u.str.area);
Marcin Deranek9a66dfb2018-04-13 14:37:50 +0200211 return 1;
212}
213
Nenad Merdanovicad9a7e92016-10-03 04:57:37 +0200214/* set temp integer to the number of HTTP requests per second reaching the frontend.
215 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
216 * an undefined behaviour.
217 */
218static int
219smp_fetch_fe_req_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
220{
221 smp->flags = SMP_F_VOL_TEST;
222 smp->data.type = SMP_T_SINT;
223 smp->data.u.sint = read_freq_ctr(&args->data.prx->fe_req_per_sec);
224 return 1;
225}
226
Willy Tarreau34db1082012-04-19 17:16:54 +0200227/* set temp integer to the number of connections per second reaching the frontend.
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200228 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200229 * an undefined behaviour.
230 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200231static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200232smp_fetch_fe_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau662b2d82007-05-08 19:56:15 +0200233{
Willy Tarreau37406352012-04-23 16:16:37 +0200234 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200235 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200236 smp->data.u.sint = read_freq_ctr(&args->data.prx->fe_sess_per_sec);
Emeric Brun5d16eda2010-01-04 15:47:45 +0100237 return 1;
238}
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100239
Willy Tarreau34db1082012-04-19 17:16:54 +0200240/* set temp integer to the number of concurrent connections on the frontend
Willy Tarreau0146c2e2012-04-20 11:37:56 +0200241 * Accepts exactly 1 argument. Argument is a frontend, other types will cause
Willy Tarreau34db1082012-04-19 17:16:54 +0200242 * an undefined behaviour.
243 */
Willy Tarreaud41f8d82007-06-10 10:06:18 +0200244static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200245smp_fetch_fe_conn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8797c062007-05-07 00:55:35 +0200246{
Willy Tarreau37406352012-04-23 16:16:37 +0200247 smp->flags = SMP_F_VOL_TEST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200248 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200249 smp->data.u.sint = args->data.prx->feconn;
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +0100250 return 1;
251}
252
Willy Tarreau8797c062007-05-07 00:55:35 +0200253
Willy Tarreau61612d42012-04-19 18:42:05 +0200254/* Note: must not be declared <const> as its list will be overwritten.
255 * Please take care of keeping this list alphabetically sorted.
256 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200257static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200258 { "fe_conn", smp_fetch_fe_conn, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Marcin Deranek9a66dfb2018-04-13 14:37:50 +0200259 { "fe_defbe", smp_fetch_fe_defbe, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200260 { "fe_id", smp_fetch_fe_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, },
Marcin Deranekd2471c22016-12-12 14:08:05 +0100261 { "fe_name", smp_fetch_fe_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, },
Nenad Merdanovicad9a7e92016-10-03 04:57:37 +0200262 { "fe_req_rate", smp_fetch_fe_req_rate, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200263 { "fe_sess_rate", smp_fetch_fe_sess_rate, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, },
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100264 { /* END */ },
265}};
266
Willy Tarreau0108d902018-11-25 19:14:37 +0100267INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100268
269/* Note: must not be declared <const> as its list will be overwritten.
270 * Please take care of keeping this list alphabetically sorted.
271 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200272static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud6896bc2013-01-07 22:48:29 +0100273 { /* END */ },
Willy Tarreau8797c062007-05-07 00:55:35 +0200274}};
275
Willy Tarreau0108d902018-11-25 19:14:37 +0100276INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
Willy Tarreau8797c062007-05-07 00:55:35 +0200277
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278/*
279 * Local variables:
280 * c-indent-level: 8
281 * c-basic-offset: 8
282 * End:
283 */