Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 03fa5df | 2010-05-24 21:02:37 +0200 | [diff] [blame] | 2 | * Frontend variables and functions. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | d6896bc | 2013-01-07 22:48:29 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 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 Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 17 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 18 | |
| 19 | #include <sys/socket.h> |
| 20 | #include <sys/stat.h> |
| 21 | #include <sys/types.h> |
| 22 | |
Willy Tarreau | 48a7e72 | 2010-12-24 15:26:39 +0100 | [diff] [blame] | 23 | #include <netinet/tcp.h> |
| 24 | |
Willy Tarreau | dcc048a | 2020-06-04 19:11:43 +0200 | [diff] [blame] | 25 | #include <haproxy/acl.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 26 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 27 | #include <haproxy/arg.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 28 | #include <haproxy/chunk.h> |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame^] | 29 | #include <haproxy/connection.h> |
| 30 | #include <haproxy/cs_utils.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 31 | #include <haproxy/fd.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 32 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 33 | #include <haproxy/global.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 34 | #include <haproxy/http_ana.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 35 | #include <haproxy/log.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 36 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 37 | #include <haproxy/proxy.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 38 | #include <haproxy/sample.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 39 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 40 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 41 | #include <haproxy/task.h> |
Willy Tarreau | 9310f48 | 2021-10-06 16:18:40 +0200 | [diff] [blame] | 42 | #include <haproxy/ticks.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 43 | #include <haproxy/tools.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 46 | /* Finish a stream accept() for a proxy (TCP or HTTP). It returns a negative |
Willy Tarreau | abe8ea5 | 2010-11-11 10:56:04 +0100 | [diff] [blame] | 47 | * value in case of a critical failure which must cause the listener to be |
Willy Tarreau | e0232f1 | 2015-04-05 18:01:06 +0200 | [diff] [blame] | 48 | * disabled, a positive or null value in case of success. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 49 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 50 | int frontend_accept(struct stream *s) |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 51 | { |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 52 | const struct sockaddr_storage *src, *dst; |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 53 | struct session *sess = s->sess; |
Willy Tarreau | e0232f1 | 2015-04-05 18:01:06 +0200 | [diff] [blame] | 54 | struct connection *conn = objt_conn(sess->origin); |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 55 | struct listener *l = sess->listener; |
| 56 | struct proxy *fe = sess->fe; |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 57 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 58 | if ((fe->mode == PR_MODE_TCP || fe->mode == PR_MODE_HTTP) |
| 59 | && (!LIST_ISEMPTY(&fe->logsrvs))) { |
| 60 | if (likely(!LIST_ISEMPTY(&fe->logformat))) { |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 61 | /* we have the client ip */ |
| 62 | if (s->logs.logwait & LW_CLIP) |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 63 | if (!(s->logs.logwait &= ~(LW_CLIP|LW_INIT))) |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 64 | s->do_log(s); |
Willy Tarreau | a3445fc | 2010-05-20 16:17:07 +0200 | [diff] [blame] | 65 | } |
Willy Tarreau | e0232f1 | 2015-04-05 18:01:06 +0200 | [diff] [blame] | 66 | else if (conn) { |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame^] | 67 | src = cs_src(s->csf); |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 68 | if (!src) |
| 69 | send_log(fe, LOG_INFO, "Connect from unknown source to listener %d (%s/%s)\n", |
| 70 | l->luid, fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP"); |
| 71 | else { |
| 72 | char pn[INET6_ADDRSTRLEN], sn[INET6_ADDRSTRLEN]; |
| 73 | int port; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 74 | |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 75 | switch (addr_to_str(src, pn, sizeof(pn))) { |
| 76 | case AF_INET: |
| 77 | case AF_INET6: |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame^] | 78 | dst = cs_dst(s->csf); |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 79 | if (dst) { |
| 80 | addr_to_str(dst, sn, sizeof(sn)); |
| 81 | port = get_host_port(dst); |
| 82 | } else { |
| 83 | strcpy(sn, "undetermined address"); |
| 84 | port = 0; |
| 85 | } |
| 86 | send_log(fe, LOG_INFO, "Connect from %s:%d to %s:%d (%s/%s)\n", |
| 87 | pn, get_host_port(src), |
| 88 | sn, port, |
| 89 | fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP"); |
| 90 | break; |
| 91 | case AF_UNIX: |
| 92 | /* UNIX socket, only the destination is known */ |
| 93 | send_log(fe, LOG_INFO, "Connect to unix:%d (%s/%s)\n", |
| 94 | l->luid, |
| 95 | fe->id, (fe->mode == PR_MODE_HTTP) ? "HTTP" : "TCP"); |
| 96 | break; |
Willy Tarreau | a0a4b09 | 2019-07-17 11:25:46 +0200 | [diff] [blame] | 97 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 98 | } |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 99 | } |
| 100 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 101 | |
Willy Tarreau | e0232f1 | 2015-04-05 18:01:06 +0200 | [diff] [blame] | 102 | if (unlikely((global.mode & MODE_DEBUG) && conn && |
| 103 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) { |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 104 | char pn[INET6_ADDRSTRLEN]; |
Willy Tarreau | 9c26680 | 2016-12-04 19:05:24 +0100 | [diff] [blame] | 105 | char alpn[16] = "<none>"; |
Willy Tarreau | 20814ff | 2017-09-15 11:43:32 +0200 | [diff] [blame] | 106 | const char *alpn_str = NULL; |
| 107 | int alpn_len; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 108 | |
Willy Tarreau | 20814ff | 2017-09-15 11:43:32 +0200 | [diff] [blame] | 109 | /* try to report the ALPN value when available (also works for NPN) */ |
Christopher Faulet | 95a61e8 | 2021-12-22 14:22:03 +0100 | [diff] [blame] | 110 | if (conn == cs_conn(s->csf)) { |
Willy Tarreau | 20814ff | 2017-09-15 11:43:32 +0200 | [diff] [blame] | 111 | if (conn_get_alpn(conn, &alpn_str, &alpn_len) && alpn_str) { |
| 112 | int len = MIN(alpn_len, sizeof(alpn) - 1); |
| 113 | memcpy(alpn, alpn_str, len); |
| 114 | alpn[len] = 0; |
| 115 | } |
Willy Tarreau | 9c26680 | 2016-12-04 19:05:24 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame^] | 118 | src = cs_src(s->csf); |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 119 | if (!src) { |
Willy Tarreau | a0a4b09 | 2019-07-17 11:25:46 +0200 | [diff] [blame] | 120 | chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [listener:%d] ALPN=%s\n", |
Willy Tarreau | 38ba647 | 2020-08-27 08:16:52 +0200 | [diff] [blame] | 121 | s->uniq_id, fe->id, (unsigned short)l->rx.fd, (unsigned short)conn->handle.fd, |
Willy Tarreau | a0a4b09 | 2019-07-17 11:25:46 +0200 | [diff] [blame] | 122 | l->luid, alpn); |
| 123 | } |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 124 | else switch (addr_to_str(src, pn, sizeof(pn))) { |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 125 | case AF_INET: |
| 126 | case AF_INET6: |
Willy Tarreau | 9c26680 | 2016-12-04 19:05:24 +0100 | [diff] [blame] | 127 | chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [%s:%d] ALPN=%s\n", |
Willy Tarreau | 38ba647 | 2020-08-27 08:16:52 +0200 | [diff] [blame] | 128 | s->uniq_id, fe->id, (unsigned short)l->rx.fd, (unsigned short)conn->handle.fd, |
Christopher Faulet | c9c8e1c | 2021-10-22 17:39:06 +0200 | [diff] [blame] | 129 | pn, get_host_port(src), alpn); |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 130 | break; |
| 131 | case AF_UNIX: |
| 132 | /* UNIX socket, only the destination is known */ |
Willy Tarreau | 9c26680 | 2016-12-04 19:05:24 +0100 | [diff] [blame] | 133 | chunk_printf(&trash, "%08x:%s.accept(%04x)=%04x from [unix:%d] ALPN=%s\n", |
Willy Tarreau | 38ba647 | 2020-08-27 08:16:52 +0200 | [diff] [blame] | 134 | s->uniq_id, fe->id, (unsigned short)l->rx.fd, (unsigned short)conn->handle.fd, |
Willy Tarreau | 9c26680 | 2016-12-04 19:05:24 +0100 | [diff] [blame] | 135 | l->luid, alpn); |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 136 | break; |
Emeric Brun | ab844ea | 2010-10-22 16:33:18 +0200 | [diff] [blame] | 137 | } |
Willy Tarreau | 9a2d154 | 2008-08-30 12:31:07 +0200 | [diff] [blame] | 138 | |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 139 | DISGUISE(write(1, trash.area, trash.data)); |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 140 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 141 | |
Willy Tarreau | e36cbcb | 2015-04-03 15:40:56 +0200 | [diff] [blame] | 142 | if (fe->mode == PR_MODE_HTTP) |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 143 | s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 144 | |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 145 | if (unlikely(fe->nb_req_cap > 0)) { |
Willy Tarreau | ec4cfc3 | 2021-03-22 21:06:21 +0100 | [diff] [blame] | 146 | if ((s->req_cap = pool_zalloc(fe->req_cap_pool)) == NULL) |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 147 | goto out_return; /* no memory */ |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | if (unlikely(fe->nb_rsp_cap > 0)) { |
Willy Tarreau | ec4cfc3 | 2021-03-22 21:06:21 +0100 | [diff] [blame] | 151 | if ((s->res_cap = pool_zalloc(fe->rsp_cap_pool)) == NULL) |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 152 | goto out_free_reqcap; /* no memory */ |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 153 | } |
| 154 | |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 155 | if ((fe->http_needed || IS_HTX_STRM(s)) && !http_create_txn(s)) |
| 156 | goto out_free_rspcap; |
Willy Tarreau | 0a6bed2 | 2016-12-04 18:39:22 +0100 | [diff] [blame] | 157 | |
Willy Tarreau | 81f9aa3 | 2010-06-01 17:45:26 +0200 | [diff] [blame] | 158 | /* everything's OK, let's go on */ |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 159 | return 1; |
Willy Tarreau | 8ced9a4 | 2007-11-04 17:51:50 +0100 | [diff] [blame] | 160 | |
| 161 | /* Error unrolling */ |
Willy Tarreau | 35a0994 | 2010-06-01 17:12:40 +0200 | [diff] [blame] | 162 | out_free_rspcap: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 163 | pool_free(fe->rsp_cap_pool, s->res_cap); |
Willy Tarreau | 35a0994 | 2010-06-01 17:12:40 +0200 | [diff] [blame] | 164 | out_free_reqcap: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 165 | pool_free(fe->req_cap_pool, s->req_cap); |
Willy Tarreau | abe8ea5 | 2010-11-11 10:56:04 +0100 | [diff] [blame] | 166 | out_return: |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 167 | return -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 168 | } |
| 169 | |
Willy Tarreau | d6896bc | 2013-01-07 22:48:29 +0100 | [diff] [blame] | 170 | /************************************************************************/ |
| 171 | /* All supported sample and ACL keywords must be declared here. */ |
| 172 | /************************************************************************/ |
| 173 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 174 | /* set temp integer to the id of the frontend */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 175 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 176 | smp_fetch_fe_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 177 | { |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 178 | smp->flags = SMP_F_VOL_SESS; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 179 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 180 | smp->data.u.sint = smp->sess->fe->uuid; |
Emeric Brun | 5d16eda | 2010-01-04 15:47:45 +0100 | [diff] [blame] | 181 | return 1; |
| 182 | } |
| 183 | |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 184 | /* set string to the name of the frontend */ |
| 185 | static int |
| 186 | smp_fetch_fe_name(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 187 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 188 | smp->data.u.str.area = (char *)smp->sess->fe->id; |
| 189 | if (!smp->data.u.str.area) |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 190 | return 0; |
| 191 | |
| 192 | smp->data.type = SMP_T_STR; |
| 193 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 194 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 195 | return 1; |
| 196 | } |
| 197 | |
Marcin Deranek | 9a66dfb | 2018-04-13 14:37:50 +0200 | [diff] [blame] | 198 | /* set string to the name of the default backend */ |
| 199 | static int |
| 200 | smp_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 Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 204 | smp->data.u.str.area = (char *)smp->sess->fe->defbe.be->id; |
| 205 | if (!smp->data.u.str.area) |
Marcin Deranek | 9a66dfb | 2018-04-13 14:37:50 +0200 | [diff] [blame] | 206 | return 0; |
| 207 | |
| 208 | smp->data.type = SMP_T_STR; |
| 209 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 210 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Marcin Deranek | 9a66dfb | 2018-04-13 14:37:50 +0200 | [diff] [blame] | 211 | return 1; |
| 212 | } |
| 213 | |
Nenad Merdanovic | ad9a7e9 | 2016-10-03 04:57:37 +0200 | [diff] [blame] | 214 | /* 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 | */ |
| 218 | static int |
| 219 | smp_fetch_fe_req_rate(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 220 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 221 | struct proxy *px = args->data.prx; |
| 222 | |
| 223 | if (px == NULL) |
| 224 | return 0; |
| 225 | if (px->cap & PR_CAP_DEF) |
| 226 | px = smp->px; |
| 227 | |
Nenad Merdanovic | ad9a7e9 | 2016-10-03 04:57:37 +0200 | [diff] [blame] | 228 | smp->flags = SMP_F_VOL_TEST; |
| 229 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 230 | smp->data.u.sint = read_freq_ctr(&px->fe_req_per_sec); |
Nenad Merdanovic | ad9a7e9 | 2016-10-03 04:57:37 +0200 | [diff] [blame] | 231 | return 1; |
| 232 | } |
| 233 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 234 | /* set temp integer to the number of connections per second reaching the frontend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 235 | * Accepts exactly 1 argument. Argument is a frontend, other types will cause |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 236 | * an undefined behaviour. |
| 237 | */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 238 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 239 | smp_fetch_fe_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 662b2d8 | 2007-05-08 19:56:15 +0200 | [diff] [blame] | 240 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 241 | struct proxy *px = args->data.prx; |
| 242 | |
| 243 | if (px == NULL) |
| 244 | return 0; |
| 245 | if (px->cap & PR_CAP_DEF) |
| 246 | px = smp->px; |
| 247 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 248 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 249 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 250 | smp->data.u.sint = read_freq_ctr(&px->fe_sess_per_sec); |
Emeric Brun | 5d16eda | 2010-01-04 15:47:45 +0100 | [diff] [blame] | 251 | return 1; |
| 252 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 253 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 254 | /* set temp integer to the number of concurrent connections on the frontend |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 255 | * Accepts exactly 1 argument. Argument is a frontend, other types will cause |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 256 | * an undefined behaviour. |
| 257 | */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 258 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 259 | smp_fetch_fe_conn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 260 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 261 | struct proxy *px = args->data.prx; |
| 262 | |
| 263 | if (px == NULL) |
| 264 | return 0; |
| 265 | if (px->cap & PR_CAP_DEF) |
| 266 | px = smp->px; |
| 267 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 268 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 269 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 270 | smp->data.u.sint = px->feconn; |
Krzysztof Piotr Oledzki | 346f76d | 2010-01-12 21:59:30 +0100 | [diff] [blame] | 271 | return 1; |
| 272 | } |
| 273 | |
Amaury Denoyelle | da184d5 | 2020-12-10 13:43:55 +0100 | [diff] [blame] | 274 | static int |
| 275 | smp_fetch_fe_client_timeout(const struct arg *args, struct sample *smp, const char *km, void *private) |
| 276 | { |
| 277 | smp->flags = SMP_F_VOL_TXN; |
| 278 | smp->data.type = SMP_T_SINT; |
| 279 | smp->data.u.sint = TICKS_TO_MS(smp->sess->fe->timeout.client); |
| 280 | return 1; |
| 281 | } |
| 282 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 283 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 284 | /* Note: must not be declared <const> as its list will be overwritten. |
| 285 | * Please take care of keeping this list alphabetically sorted. |
| 286 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 287 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Amaury Denoyelle | da184d5 | 2020-12-10 13:43:55 +0100 | [diff] [blame] | 288 | { "fe_client_timeout", smp_fetch_fe_client_timeout, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
| 289 | { "fe_conn", smp_fetch_fe_conn, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 290 | { "fe_defbe", smp_fetch_fe_defbe, 0, NULL, SMP_T_STR, SMP_USE_FTEND, }, |
| 291 | { "fe_id", smp_fetch_fe_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
| 292 | { "fe_name", smp_fetch_fe_name, 0, NULL, SMP_T_STR, SMP_USE_FTEND, }, |
| 293 | { "fe_req_rate", smp_fetch_fe_req_rate, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 294 | { "fe_sess_rate", smp_fetch_fe_sess_rate, ARG1(1,FE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Willy Tarreau | d6896bc | 2013-01-07 22:48:29 +0100 | [diff] [blame] | 295 | { /* END */ }, |
| 296 | }}; |
| 297 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 298 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
Willy Tarreau | d6896bc | 2013-01-07 22:48:29 +0100 | [diff] [blame] | 299 | |
| 300 | /* Note: must not be declared <const> as its list will be overwritten. |
| 301 | * Please take care of keeping this list alphabetically sorted. |
| 302 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 303 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | d6896bc | 2013-01-07 22:48:29 +0100 | [diff] [blame] | 304 | { /* END */ }, |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 305 | }}; |
| 306 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 307 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 308 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 309 | /* |
| 310 | * Local variables: |
| 311 | * c-indent-level: 8 |
| 312 | * c-basic-offset: 8 |
| 313 | * End: |
| 314 | */ |