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