blob: a8895b1a450cf40a8d78fe243f118e674789c90d [file] [log] [blame]
Willy Tarreau8987e7a2020-08-28 11:37:21 +02001/*
2 * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp)
3 *
4 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
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/* this is to have tcp_info defined on systems using musl
14 * library, such as Alpine Linux.
15 */
16#define _GNU_SOURCE
17
18#include <ctype.h>
19#include <errno.h>
Willy Tarreau8987e7a2020-08-28 11:37:21 +020020#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <time.h>
24
25#include <sys/param.h>
26#include <sys/socket.h>
27#include <sys/types.h>
28
29#include <netinet/tcp.h>
30#include <netinet/in.h>
31
32#include <haproxy/api.h>
33#include <haproxy/arg.h>
34#include <haproxy/connection.h>
Christopher Faulet8da67aa2022-03-29 17:53:09 +020035#include <haproxy/cs_utils.h>
Willy Tarreau6cd007d2021-10-06 19:01:21 +020036#include <haproxy/errors.h>
Willy Tarreau8987e7a2020-08-28 11:37:21 +020037#include <haproxy/global.h>
38#include <haproxy/listener-t.h>
39#include <haproxy/namespace.h>
40#include <haproxy/proxy-t.h>
41#include <haproxy/sample.h>
Christopher Fauletc03be1a2021-10-25 08:01:20 +020042#include <haproxy/session.h>
Willy Tarreau8987e7a2020-08-28 11:37:21 +020043#include <haproxy/tools.h>
44
Christopher Faulet7d081f02021-04-15 09:38:37 +020045/* Fetch the connection's source IPv4/IPv6 address. Depending on the keyword, it
46 * may be the frontend or the backend connection.
Willy Tarreau8987e7a2020-08-28 11:37:21 +020047 */
48static int
49smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
50{
Christopher Fauletc03be1a2021-10-25 08:01:20 +020051 const struct sockaddr_storage *src = NULL;
Christopher Faulet003df1c2021-04-15 09:39:38 +020052
Christopher Faulet888cd702021-10-25 16:58:50 +020053 if (kw[0] == 'b') { /* bc_src */
Christopher Fauletc03be1a2021-10-25 08:01:20 +020054 struct connection *conn = ((obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Willy Tarreaufd9417b2022-05-18 16:23:22 +020055 ? sc_conn(__objt_check(smp->sess->origin)->cs)
56 : (smp->strm ? sc_conn(smp->strm->scb): NULL));
Christopher Fauletc03be1a2021-10-25 08:01:20 +020057 if (conn && conn_get_src(conn))
58 src = conn_src(conn);
59 }
Christopher Faulet888cd702021-10-25 16:58:50 +020060 else if (kw[0] == 'f') { /* fc_src */
61 struct connection *conn = objt_conn(smp->sess->origin);
62
63 if (conn && conn_get_src(conn))
64 src = conn_src(conn);
65 }
66 else /* src */
Willy Tarreaud68ff012022-05-27 08:57:21 +020067 src = (smp->strm ? sc_src(smp->strm->scf) : sess_src(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +020068
Christopher Fauletc03be1a2021-10-25 08:01:20 +020069 if (!src)
Willy Tarreau8987e7a2020-08-28 11:37:21 +020070 return 0;
71
Christopher Fauletc03be1a2021-10-25 08:01:20 +020072 switch (src->ss_family) {
Willy Tarreau8987e7a2020-08-28 11:37:21 +020073 case AF_INET:
Christopher Fauletc03be1a2021-10-25 08:01:20 +020074 smp->data.u.ipv4 = ((struct sockaddr_in *)src)->sin_addr;
Willy Tarreau8987e7a2020-08-28 11:37:21 +020075 smp->data.type = SMP_T_IPV4;
76 break;
77 case AF_INET6:
Christopher Fauletc03be1a2021-10-25 08:01:20 +020078 smp->data.u.ipv6 = ((struct sockaddr_in6 *)src)->sin6_addr;
Willy Tarreau8987e7a2020-08-28 11:37:21 +020079 smp->data.type = SMP_T_IPV6;
80 break;
81 default:
82 return 0;
83 }
84
85 smp->flags = 0;
86 return 1;
87}
88
Christopher Faulet7d081f02021-04-15 09:38:37 +020089/* set temp integer to the connection's source port. Depending on the
90 * keyword, it may be the frontend or the backend connection.
91 */
Willy Tarreau8987e7a2020-08-28 11:37:21 +020092static int
Christopher Faulet7d081f02021-04-15 09:38:37 +020093smp_fetch_sport(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8987e7a2020-08-28 11:37:21 +020094{
Christopher Fauletc03be1a2021-10-25 08:01:20 +020095 const struct sockaddr_storage *src = NULL;
Christopher Faulet003df1c2021-04-15 09:39:38 +020096
Christopher Faulet888cd702021-10-25 16:58:50 +020097 if (kw[0] == 'b') { /* bc_src_port */
Christopher Fauletc03be1a2021-10-25 08:01:20 +020098 struct connection *conn = ((obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Willy Tarreaufd9417b2022-05-18 16:23:22 +020099 ? sc_conn(__objt_check(smp->sess->origin)->cs)
100 : (smp->strm ? sc_conn(smp->strm->scb): NULL));
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200101 if (conn && conn_get_src(conn))
102 src = conn_src(conn);
103 }
Christopher Faulet888cd702021-10-25 16:58:50 +0200104 else if (kw[0] == 'f') { /* fc_src_port */
105 struct connection *conn = objt_conn(smp->sess->origin);
106
107 if (conn && conn_get_src(conn))
108 src = conn_src(conn);
109 }
110 else /* src_port */
Willy Tarreaud68ff012022-05-27 08:57:21 +0200111 src = (smp->strm ? sc_src(smp->strm->scf) : sess_src(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200112
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200113 if (!src)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200114 return 0;
115
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200116 smp->data.type = SMP_T_SINT;
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200117 if (!(smp->data.u.sint = get_host_port(src)))
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200118 return 0;
119
120 smp->flags = 0;
121 return 1;
122}
123
Christopher Faulet7d081f02021-04-15 09:38:37 +0200124/* fetch the connection's destination IPv4/IPv6 address. Depending on the
125 * keyword, it may be the frontend or the backend connection.
126 */
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200127static int
128smp_fetch_dst(const struct arg *args, struct sample *smp, const char *kw, void *private)
129{
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200130 const struct sockaddr_storage *dst = NULL;
Christopher Faulet003df1c2021-04-15 09:39:38 +0200131
Christopher Faulet888cd702021-10-25 16:58:50 +0200132 if (kw[0] == 'b') { /* bc_dst */
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200133 struct connection *conn = ((obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Willy Tarreaufd9417b2022-05-18 16:23:22 +0200134 ? sc_conn(__objt_check(smp->sess->origin)->cs)
135 : (smp->strm ? sc_conn(smp->strm->scb): NULL));
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200136 if (conn && conn_get_dst(conn))
137 dst = conn_dst(conn);
138 }
Christopher Faulet888cd702021-10-25 16:58:50 +0200139 else if (kw[0] == 'f') { /* fc_dst */
140 struct connection *conn = objt_conn(smp->sess->origin);
141
142 if (conn && conn_get_dst(conn))
143 dst = conn_dst(conn);
144 }
145 else /* dst */
Willy Tarreaud68ff012022-05-27 08:57:21 +0200146 dst = (smp->strm ? sc_dst(smp->strm->scf) : sess_dst(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200147
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200148 if (!dst)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200149 return 0;
150
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200151 switch (dst->ss_family) {
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200152 case AF_INET:
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200153 smp->data.u.ipv4 = ((struct sockaddr_in *)dst)->sin_addr;
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200154 smp->data.type = SMP_T_IPV4;
155 break;
156 case AF_INET6:
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200157 smp->data.u.ipv6 = ((struct sockaddr_in6 *)dst)->sin6_addr;
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200158 smp->data.type = SMP_T_IPV6;
159 break;
160 default:
161 return 0;
162 }
163
164 smp->flags = 0;
165 return 1;
166}
167
168/* check if the destination address of the front connection is local to the
169 * system or if it was intercepted.
170 */
171int smp_fetch_dst_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
172{
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200173 struct listener *li = smp->sess->listener;
Christopher Faulet888cd702021-10-25 16:58:50 +0200174 const struct sockaddr_storage *dst = NULL;
175
176 if (kw[0] == 'f') { /* fc_dst_is_local */
177 struct connection *conn = objt_conn(smp->sess->origin);
178
179 if (conn && conn_get_src(conn))
180 dst = conn_dst(conn);
181 }
182 else /* dst_is_local */
Willy Tarreaud68ff012022-05-27 08:57:21 +0200183 dst = (smp->strm ? sc_dst(smp->strm->scf) : sess_dst(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200184
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200185 if (!dst)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200186 return 0;
187
188 smp->data.type = SMP_T_BOOL;
189 smp->flags = 0;
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200190 smp->data.u.sint = addr_is_local(li->rx.settings->netns, dst);
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200191 return smp->data.u.sint >= 0;
192}
193
194/* check if the source address of the front connection is local to the system
195 * or not.
196 */
197int smp_fetch_src_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
198{
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200199 struct listener *li = smp->sess->listener;
Christopher Faulet888cd702021-10-25 16:58:50 +0200200 const struct sockaddr_storage *src = NULL;
201
202 if (kw[0] == 'f') { /* fc_src_is_local */
203 struct connection *conn = objt_conn(smp->sess->origin);
204
205 if (conn && conn_get_src(conn))
206 src = conn_src(conn);
207 }
208 else /* src_is_local */
Willy Tarreaud68ff012022-05-27 08:57:21 +0200209 src = (smp->strm ? sc_src(smp->strm->scf) : sess_src(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200210
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200211 if (!src)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200212 return 0;
213
214 smp->data.type = SMP_T_BOOL;
215 smp->flags = 0;
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200216 smp->data.u.sint = addr_is_local(li->rx.settings->netns, src);
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200217 return smp->data.u.sint >= 0;
218}
219
Christopher Faulet7d081f02021-04-15 09:38:37 +0200220/* set temp integer to the connexion's destination port. Depending on the
221 * keyword, it may be the frontend or the backend connection.
222 */
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200223static int
224smp_fetch_dport(const struct arg *args, struct sample *smp, const char *kw, void *private)
225{
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200226 const struct sockaddr_storage *dst = NULL;
Christopher Faulet003df1c2021-04-15 09:39:38 +0200227
Christopher Faulet888cd702021-10-25 16:58:50 +0200228 if (kw[0] == 'b') { /* bc_dst_port */
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200229 struct connection *conn = ((obj_type(smp->sess->origin) == OBJ_TYPE_CHECK)
Willy Tarreaufd9417b2022-05-18 16:23:22 +0200230 ? sc_conn(__objt_check(smp->sess->origin)->cs)
231 : (smp->strm ? sc_conn(smp->strm->scb): NULL));
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200232 if (conn && conn_get_dst(conn))
233 dst = conn_dst(conn);
234 }
Christopher Faulet888cd702021-10-25 16:58:50 +0200235 else if (kw[0] == 'f') { /* fc_dst_post */
236 struct connection *conn = objt_conn(smp->sess->origin);
237
238 if (conn && conn_get_src(conn))
239 dst = conn_dst(conn);
240 }
241 else /* dst_port */
Willy Tarreaud68ff012022-05-27 08:57:21 +0200242 dst = (smp->strm ? sc_dst(smp->strm->scf) : sess_dst(smp->sess));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200243
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200244 if (!dst)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200245 return 0;
246
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200247 smp->data.type = SMP_T_SINT;
Christopher Fauletc03be1a2021-10-25 08:01:20 +0200248 if (!(smp->data.u.sint = get_host_port(dst)))
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200249 return 0;
250
251 smp->flags = 0;
252 return 1;
253}
254
255#ifdef TCP_INFO
256
257
258/* Validates the arguments passed to "fc_*" fetch keywords returning a time
259 * value. These keywords support an optional string representing the unit of the
260 * result: "us" for microseconds and "ms" for milliseconds". Returns 0 on error
261 * and non-zero if OK.
262 */
263static int val_fc_time_value(struct arg *args, char **err)
264{
265 if (args[0].type == ARGT_STR) {
266 if (strcmp(args[0].data.str.area, "us") == 0) {
267 chunk_destroy(&args[0].data.str);
268 args[0].type = ARGT_SINT;
269 args[0].data.sint = TIME_UNIT_US;
270 }
271 else if (strcmp(args[0].data.str.area, "ms") == 0) {
272 chunk_destroy(&args[0].data.str);
273 args[0].type = ARGT_SINT;
274 args[0].data.sint = TIME_UNIT_MS;
275 }
276 else {
277 memprintf(err, "expects 'us' or 'ms', got '%s'",
278 args[0].data.str.area);
279 return 0;
280 }
281 }
282 else {
283 memprintf(err, "Unexpected arg type");
284 return 0;
285 }
286
287 return 1;
288}
289
290/* Validates the arguments passed to "fc_*" fetch keywords returning a
291 * counter. These keywords should be used without any keyword, but because of a
292 * bug in previous versions, an optional string argument may be passed. In such
293 * case, the argument is ignored and a warning is emitted. Returns 0 on error
294 * and non-zero if OK.
295 */
296static int var_fc_counter(struct arg *args, char **err)
297{
298 if (args[0].type != ARGT_STOP) {
299 ha_warning("no argument supported for 'fc_*' sample expressions returning counters.\n");
300 if (args[0].type == ARGT_STR)
301 chunk_destroy(&args[0].data.str);
302 args[0].type = ARGT_STOP;
303 }
304
305 return 1;
306}
307
308/* Returns some tcp_info data if it's available. "dir" must be set to 0 if
309 * the client connection is required, otherwise it is set to 1. "val" represents
310 * the required value.
311 * If the function fails it returns 0, otherwise it returns 1 and "result" is filled.
312 */
313static inline int get_tcp_info(const struct arg *args, struct sample *smp,
314 int dir, int val)
315{
316 struct connection *conn;
317 struct tcp_info info;
318 socklen_t optlen;
319
320 /* strm can be null. */
321 if (!smp->strm)
322 return 0;
323
Willy Tarreau4596fe22022-05-17 19:07:51 +0200324 /* get the object associated with the stream connector.The
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200325 * object can be other thing than a connection. For example,
Willy Tarreau4596fe22022-05-17 19:07:51 +0200326 * it be a appctx.
327 */
Willy Tarreaufd9417b2022-05-18 16:23:22 +0200328 conn = (dir == 0 ? sc_conn(smp->strm->scf) : sc_conn(smp->strm->scb));
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200329 if (!conn)
330 return 0;
331
332 /* The fd may not be available for the tcp_info struct, and the
333 syscal can fail. */
334 optlen = sizeof(info);
Willy Tarreaue2226792022-04-11 18:04:33 +0200335 if ((conn->flags & CO_FL_FDLESS) ||
336 getsockopt(conn->handle.fd, IPPROTO_TCP, TCP_INFO, &info, &optlen) == -1)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200337 return 0;
338
339 /* extract the value. */
340 smp->data.type = SMP_T_SINT;
341 switch (val) {
David CARLIER7747d462022-04-11 12:53:11 +0100342#if defined(__APPLE__)
343 case 0: smp->data.u.sint = info.tcpi_rttcur; break;
344 case 1: smp->data.u.sint = info.tcpi_rttvar; break;
345 case 2: smp->data.u.sint = info.tcpi_tfo_syn_data_acked; break;
346 case 4: smp->data.u.sint = info.tcpi_tfo_syn_loss; break;
347 case 5: smp->data.u.sint = info.tcpi_rto; break;
348#else
349 /* all other platforms supporting TCP_INFO have these ones */
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200350 case 0: smp->data.u.sint = info.tcpi_rtt; break;
351 case 1: smp->data.u.sint = info.tcpi_rttvar; break;
David CARLIER7747d462022-04-11 12:53:11 +0100352# if defined(__linux__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200353 /* these ones are common to all Linux versions */
354 case 2: smp->data.u.sint = info.tcpi_unacked; break;
355 case 3: smp->data.u.sint = info.tcpi_sacked; break;
356 case 4: smp->data.u.sint = info.tcpi_lost; break;
357 case 5: smp->data.u.sint = info.tcpi_retrans; break;
358 case 6: smp->data.u.sint = info.tcpi_fackets; break;
359 case 7: smp->data.u.sint = info.tcpi_reordering; break;
David CARLIER7747d462022-04-11 12:53:11 +0100360# elif defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200361 /* the ones are found on FreeBSD and NetBSD featuring TCP_INFO */
362 case 2: smp->data.u.sint = info.__tcpi_unacked; break;
363 case 3: smp->data.u.sint = info.__tcpi_sacked; break;
364 case 4: smp->data.u.sint = info.__tcpi_lost; break;
365 case 5: smp->data.u.sint = info.__tcpi_retrans; break;
366 case 6: smp->data.u.sint = info.__tcpi_fackets; break;
367 case 7: smp->data.u.sint = info.__tcpi_reordering; break;
David CARLIER7747d462022-04-11 12:53:11 +0100368# endif
369#endif // apple
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200370 default: return 0;
371 }
372
373 return 1;
374}
375
David CARLIER7747d462022-04-11 12:53:11 +0100376#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200377/* get the mean rtt of a client connection */
378static int
379smp_fetch_fc_rtt(const struct arg *args, struct sample *smp, const char *kw, void *private)
380{
381 if (!get_tcp_info(args, smp, 0, 0))
382 return 0;
383
384 /* By default or if explicitly specified, convert rtt to ms */
385 if (!args || args[0].type == ARGT_STOP || args[0].data.sint == TIME_UNIT_MS)
386 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
387
388 return 1;
389}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100390#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200391
David CARLIER7747d462022-04-11 12:53:11 +0100392#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200393/* get the variance of the mean rtt of a client connection */
394static int
395smp_fetch_fc_rttvar(const struct arg *args, struct sample *smp, const char *kw, void *private)
396{
397 if (!get_tcp_info(args, smp, 0, 1))
398 return 0;
399
400 /* By default or if explicitly specified, convert rttvar to ms */
401 if (!args || args[0].type == ARGT_STOP || args[0].data.sint == TIME_UNIT_MS)
402 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
403
404 return 1;
405}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100406#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200407
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200408
David CARLIER7747d462022-04-11 12:53:11 +0100409#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200410/* get the unacked counter on a client connection */
411static int
412smp_fetch_fc_unacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
413{
414 if (!get_tcp_info(args, smp, 0, 2))
415 return 0;
416 return 1;
417}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100418#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200419
David CARLIER5c83e3a2022-04-11 12:41:24 +0100420#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200421/* get the sacked counter on a client connection */
422static int
423smp_fetch_fc_sacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
424{
425 if (!get_tcp_info(args, smp, 0, 3))
426 return 0;
427 return 1;
428}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100429#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200430
David CARLIER7747d462022-04-11 12:53:11 +0100431#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200432/* get the lost counter on a client connection */
433static int
434smp_fetch_fc_lost(const struct arg *args, struct sample *smp, const char *kw, void *private)
435{
436 if (!get_tcp_info(args, smp, 0, 4))
437 return 0;
438 return 1;
439}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100440#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200441
David CARLIER7747d462022-04-11 12:53:11 +0100442#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200443/* get the retrans counter on a client connection */
444static int
445smp_fetch_fc_retrans(const struct arg *args, struct sample *smp, const char *kw, void *private)
446{
447 if (!get_tcp_info(args, smp, 0, 5))
448 return 0;
449 return 1;
450}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100451#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200452
David CARLIER5c83e3a2022-04-11 12:41:24 +0100453#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200454/* get the fackets counter on a client connection */
455static int
456smp_fetch_fc_fackets(const struct arg *args, struct sample *smp, const char *kw, void *private)
457{
458 if (!get_tcp_info(args, smp, 0, 6))
459 return 0;
460 return 1;
461}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100462#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200463
David CARLIER5c83e3a2022-04-11 12:41:24 +0100464#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200465/* get the reordering counter on a client connection */
466static int
467smp_fetch_fc_reordering(const struct arg *args, struct sample *smp, const char *kw, void *private)
468{
469 if (!get_tcp_info(args, smp, 0, 7))
470 return 0;
471 return 1;
472}
David CARLIER5c83e3a2022-04-11 12:41:24 +0100473#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200474#endif // TCP_INFO
475
476/* Note: must not be declared <const> as its list will be overwritten.
477 * Note: fetches that may return multiple types must be declared as the lowest
478 * common denominator, the type that can be casted into all other ones. For
479 * instance v4/v6 must be declared v4.
480 */
481static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Christopher Faulet7d081f02021-04-15 09:38:37 +0200482 { "bc_dst", smp_fetch_dst, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
483 { "bc_dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
484 { "bc_src", smp_fetch_src, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
485 { "bc_src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
486
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200487 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
488 { "dst_is_local", smp_fetch_dst_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
489 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Christopher Faulet888cd702021-10-25 16:58:50 +0200490
491 { "fc_dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
492 { "fc_dst_is_local", smp_fetch_dst_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
493 { "fc_dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
494
495 { "fc_src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
496 { "fc_src_is_local", smp_fetch_src_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
497 { "fc_src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
498
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200499 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
500 { "src_is_local", smp_fetch_src_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
501 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
502#ifdef TCP_INFO
503 { "fc_rtt", smp_fetch_fc_rtt, ARG1(0,STR), val_fc_time_value, SMP_T_SINT, SMP_USE_L4CLI },
504 { "fc_rttvar", smp_fetch_fc_rttvar, ARG1(0,STR), val_fc_time_value, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER7747d462022-04-11 12:53:11 +0100505#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200506 { "fc_unacked", smp_fetch_fc_unacked, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100507#endif
508#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200509 { "fc_sacked", smp_fetch_fc_sacked, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100510#endif
David CARLIER7747d462022-04-11 12:53:11 +0100511#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200512 { "fc_retrans", smp_fetch_fc_retrans, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100513#endif
514#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200515 { "fc_fackets", smp_fetch_fc_fackets, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100516#endif
David CARLIER7747d462022-04-11 12:53:11 +0100517#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200518 { "fc_lost", smp_fetch_fc_lost, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100519#endif
520#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200521 { "fc_reordering", smp_fetch_fc_reordering, ARG1(0,STR), var_fc_counter, SMP_T_SINT, SMP_USE_L4CLI },
David CARLIER5c83e3a2022-04-11 12:41:24 +0100522#endif
Willy Tarreau8987e7a2020-08-28 11:37:21 +0200523#endif // TCP_INFO
524 { /* END */ },
525}};
526
527INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
528
529
530/*
531 * Local variables:
532 * c-indent-level: 8
533 * c-basic-offset: 8
534 * End:
535 */