Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1 | /* |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 2 | * Sample management functions. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 5 | * Copyright (C) 2012 Willy Tarreau <w@1wt.eu> |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | */ |
| 13 | |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 14 | #include <ctype.h> |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 15 | #include <string.h> |
| 16 | #include <arpa/inet.h> |
Willy Tarreau | dd2f85e | 2012-09-02 22:34:23 +0200 | [diff] [blame] | 17 | #include <stdio.h> |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 18 | |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 19 | #include <import/mjson.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <import/sha1.h> |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 21 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #include <haproxy/api.h> |
| 23 | #include <haproxy/arg.h> |
Willy Tarreau | ac13aea | 2020-06-04 10:36:03 +0200 | [diff] [blame] | 24 | #include <haproxy/auth.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 25 | #include <haproxy/base64.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 26 | #include <haproxy/buf.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 27 | #include <haproxy/chunk.h> |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 28 | #include <haproxy/clock.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 29 | #include <haproxy/errors.h> |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 30 | #include <haproxy/fix.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 31 | #include <haproxy/global.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 32 | #include <haproxy/hash.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 33 | #include <haproxy/http.h> |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 34 | #include <haproxy/istbuf.h> |
Baptiste Assmann | e279ca6 | 2020-10-27 18:10:06 +0100 | [diff] [blame] | 35 | #include <haproxy/mqtt.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 36 | #include <haproxy/net_helper.h> |
Willy Tarreau | b23e595 | 2020-06-04 16:06:59 +0200 | [diff] [blame] | 37 | #include <haproxy/protobuf.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 38 | #include <haproxy/proxy.h> |
Willy Tarreau | 7cd8b6e | 2020-06-02 17:32:26 +0200 | [diff] [blame] | 39 | #include <haproxy/regex.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 40 | #include <haproxy/sample.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 41 | #include <haproxy/sink.h> |
| 42 | #include <haproxy/stick_table.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 43 | #include <haproxy/tools.h> |
Willy Tarreau | 8c42b8a | 2020-06-04 19:27:34 +0200 | [diff] [blame] | 44 | #include <haproxy/uri_auth-t.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 45 | #include <haproxy/vars.h> |
Tim Duesterhus | d5fc8fc | 2021-09-11 17:51:13 +0200 | [diff] [blame] | 46 | #include <haproxy/xxhash.h> |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 47 | #include <haproxy/jwt.h> |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 48 | |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 49 | /* sample type names */ |
| 50 | const char *smp_to_type[SMP_TYPES] = { |
Thierry FOURNIER | 9c627e8 | 2015-06-03 20:12:35 +0200 | [diff] [blame] | 51 | [SMP_T_ANY] = "any", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 52 | [SMP_T_BOOL] = "bool", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 53 | [SMP_T_SINT] = "sint", |
| 54 | [SMP_T_ADDR] = "addr", |
| 55 | [SMP_T_IPV4] = "ipv4", |
| 56 | [SMP_T_IPV6] = "ipv6", |
| 57 | [SMP_T_STR] = "str", |
| 58 | [SMP_T_BIN] = "bin", |
Thierry FOURNIER | 4c2479e | 2015-06-03 20:12:04 +0200 | [diff] [blame] | 59 | [SMP_T_METH] = "meth", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 62 | /* static sample used in sample_process() when <p> is NULL */ |
Emeric Brun | e5c918b | 2017-06-14 14:15:36 +0200 | [diff] [blame] | 63 | static THREAD_LOCAL struct sample temp_smp; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 64 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 65 | /* list head of all known sample fetch keywords */ |
| 66 | static struct sample_fetch_kw_list sample_fetches = { |
| 67 | .list = LIST_HEAD_INIT(sample_fetches.list) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 68 | }; |
| 69 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 70 | /* list head of all known sample format conversion keywords */ |
| 71 | static struct sample_conv_kw_list sample_convs = { |
| 72 | .list = LIST_HEAD_INIT(sample_convs.list) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 73 | }; |
| 74 | |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 75 | const unsigned int fetch_cap[SMP_SRC_ENTRIES] = { |
Willy Tarreau | be2159b | 2021-03-26 11:56:11 +0100 | [diff] [blame] | 76 | [SMP_SRC_CONST] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 77 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 78 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 79 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 80 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 81 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 82 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL_CFG_PARSER | |
| 83 | SMP_VAL_CLI_PARSER ), |
Willy Tarreau | be2159b | 2021-03-26 11:56:11 +0100 | [diff] [blame] | 84 | |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 85 | [SMP_SRC_INTRN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 86 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 87 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 88 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 89 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 90 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 91 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 92 | SMP_VAL_CLI_PARSER ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 93 | |
| 94 | [SMP_SRC_LISTN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 95 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 96 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 97 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 98 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 99 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 100 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 101 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 102 | |
| 103 | [SMP_SRC_FTEND] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 104 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 105 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 106 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 107 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 108 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 109 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 110 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 111 | |
| 112 | [SMP_SRC_L4CLI] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 113 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 114 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 115 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 116 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 117 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 118 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 119 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 120 | |
| 121 | [SMP_SRC_L5CLI] = (SMP_VAL___________ | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 122 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 123 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 124 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 125 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 126 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 127 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 128 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 129 | |
| 130 | [SMP_SRC_TRACK] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 131 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 132 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 133 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 134 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 135 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 136 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 137 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 138 | |
| 139 | [SMP_SRC_L6REQ] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT | |
| 140 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 141 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 142 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 143 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 144 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 145 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 146 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 147 | |
| 148 | [SMP_SRC_HRQHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT | |
| 149 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 150 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 151 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 152 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 153 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 154 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 155 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 156 | |
| 157 | [SMP_SRC_HRQHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT | |
| 158 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 159 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 160 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 161 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 162 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 163 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 164 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 165 | |
| 166 | [SMP_SRC_HRQBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 167 | SMP_VAL___________ | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 168 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 169 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 170 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 171 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 172 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 173 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 174 | |
| 175 | [SMP_SRC_BKEND] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 176 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 177 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 178 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 179 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 180 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 181 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 182 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 183 | |
| 184 | [SMP_SRC_SERVR] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 185 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 186 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 187 | SMP_VAL___________ | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 188 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 189 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 190 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 191 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 192 | |
| 193 | [SMP_SRC_L4SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 194 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 195 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 196 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 197 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 198 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 199 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 200 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 201 | |
| 202 | [SMP_SRC_L5SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 203 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 204 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 205 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 206 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 207 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 208 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 209 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 210 | |
| 211 | [SMP_SRC_L6RES] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 212 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 213 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 214 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 215 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 216 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 217 | SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 218 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 219 | |
| 220 | [SMP_SRC_HRSHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 221 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 222 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 223 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 224 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 225 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 226 | SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 227 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 228 | |
| 229 | [SMP_SRC_HRSHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 230 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 231 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 232 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 233 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 234 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 235 | SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 236 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 237 | |
| 238 | [SMP_SRC_HRSBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 239 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 240 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 241 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 242 | SMP_VAL___________ | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 243 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 244 | SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ | |
| 245 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 246 | |
| 247 | [SMP_SRC_RQFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 248 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 249 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 250 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 251 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 252 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 253 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 254 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 255 | |
| 256 | [SMP_SRC_RSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 257 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 258 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 259 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 260 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 261 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 262 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 263 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 264 | |
| 265 | [SMP_SRC_TXFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 266 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 267 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 268 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 269 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 270 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 271 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 272 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 273 | |
| 274 | [SMP_SRC_SSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 275 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 276 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 277 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 278 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 279 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
Willy Tarreau | db5e0db | 2021-03-26 15:29:35 +0100 | [diff] [blame] | 280 | SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ | |
| 281 | SMP_VAL___________ ), |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | static const char *fetch_src_names[SMP_SRC_ENTRIES] = { |
| 285 | [SMP_SRC_INTRN] = "internal state", |
| 286 | [SMP_SRC_LISTN] = "listener", |
| 287 | [SMP_SRC_FTEND] = "frontend", |
| 288 | [SMP_SRC_L4CLI] = "client address", |
| 289 | [SMP_SRC_L5CLI] = "client-side connection", |
| 290 | [SMP_SRC_TRACK] = "track counters", |
| 291 | [SMP_SRC_L6REQ] = "request buffer", |
| 292 | [SMP_SRC_HRQHV] = "HTTP request headers", |
| 293 | [SMP_SRC_HRQHP] = "HTTP request", |
| 294 | [SMP_SRC_HRQBO] = "HTTP request body", |
| 295 | [SMP_SRC_BKEND] = "backend", |
| 296 | [SMP_SRC_SERVR] = "server", |
| 297 | [SMP_SRC_L4SRV] = "server address", |
| 298 | [SMP_SRC_L5SRV] = "server-side connection", |
| 299 | [SMP_SRC_L6RES] = "response buffer", |
| 300 | [SMP_SRC_HRSHV] = "HTTP response headers", |
| 301 | [SMP_SRC_HRSHP] = "HTTP response", |
| 302 | [SMP_SRC_HRSBO] = "HTTP response body", |
| 303 | [SMP_SRC_RQFIN] = "request buffer statistics", |
| 304 | [SMP_SRC_RSFIN] = "response buffer statistics", |
| 305 | [SMP_SRC_TXFIN] = "transaction statistics", |
| 306 | [SMP_SRC_SSFIN] = "session statistics", |
| 307 | }; |
| 308 | |
Willy Tarreau | bf8e251 | 2013-03-25 14:52:41 +0100 | [diff] [blame] | 309 | static const char *fetch_ckp_names[SMP_CKP_ENTRIES] = { |
| 310 | [SMP_CKP_FE_CON_ACC] = "frontend tcp-request connection rule", |
| 311 | [SMP_CKP_FE_SES_ACC] = "frontend tcp-request session rule", |
| 312 | [SMP_CKP_FE_REQ_CNT] = "frontend tcp-request content rule", |
| 313 | [SMP_CKP_FE_HRQ_HDR] = "frontend http-request header rule", |
| 314 | [SMP_CKP_FE_HRQ_BDY] = "frontend http-request body rule", |
| 315 | [SMP_CKP_FE_SET_BCK] = "frontend use-backend rule", |
| 316 | [SMP_CKP_BE_REQ_CNT] = "backend tcp-request content rule", |
| 317 | [SMP_CKP_BE_HRQ_HDR] = "backend http-request header rule", |
| 318 | [SMP_CKP_BE_HRQ_BDY] = "backend http-request body rule", |
| 319 | [SMP_CKP_BE_SET_SRV] = "backend use-server, balance or stick-match rule", |
| 320 | [SMP_CKP_BE_SRV_CON] = "server source selection", |
| 321 | [SMP_CKP_BE_RES_CNT] = "backend tcp-response content rule", |
| 322 | [SMP_CKP_BE_HRS_HDR] = "backend http-response header rule", |
| 323 | [SMP_CKP_BE_HRS_BDY] = "backend http-response body rule", |
| 324 | [SMP_CKP_BE_STO_RUL] = "backend stick-store rule", |
| 325 | [SMP_CKP_FE_RES_CNT] = "frontend tcp-response content rule", |
| 326 | [SMP_CKP_FE_HRS_HDR] = "frontend http-response header rule", |
| 327 | [SMP_CKP_FE_HRS_BDY] = "frontend http-response body rule", |
| 328 | [SMP_CKP_FE_LOG_END] = "logs", |
Gaetan Rivet | 707b52f | 2020-02-21 18:14:59 +0100 | [diff] [blame] | 329 | [SMP_CKP_BE_CHK_RUL] = "backend tcp-check rule", |
Willy Tarreau | 0d71d2f | 2022-03-29 16:39:24 +0200 | [diff] [blame] | 330 | [SMP_CKP_CFG_PARSER] = "configuration parser", |
| 331 | [SMP_CKP_CLI_PARSER] = "CLI parser", |
Willy Tarreau | bf8e251 | 2013-03-25 14:52:41 +0100 | [diff] [blame] | 332 | }; |
| 333 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 334 | /* This function returns the type of the data returned by the sample_expr. |
| 335 | * It assumes that the <expr> and all of its converters are properly |
| 336 | * initialized. |
| 337 | */ |
| 338 | inline |
| 339 | int smp_expr_output_type(struct sample_expr *expr) |
| 340 | { |
| 341 | struct sample_conv_expr *smp_expr; |
| 342 | |
| 343 | if (!LIST_ISEMPTY(&expr->conv_exprs)) { |
| 344 | smp_expr = LIST_PREV(&expr->conv_exprs, struct sample_conv_expr *, list); |
| 345 | return smp_expr->conv->out_type; |
| 346 | } |
| 347 | return expr->fetch->out_type; |
| 348 | } |
| 349 | |
| 350 | |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 351 | /* fill the trash with a comma-delimited list of source names for the <use> bit |
| 352 | * field which must be composed of a non-null set of SMP_USE_* flags. The return |
| 353 | * value is the pointer to the string in the trash buffer. |
| 354 | */ |
| 355 | const char *sample_src_names(unsigned int use) |
| 356 | { |
| 357 | int bit; |
| 358 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 359 | trash.data = 0; |
| 360 | trash.area[0] = '\0'; |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 361 | for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) { |
| 362 | if (!(use & ~((1 << bit) - 1))) |
| 363 | break; /* no more bits */ |
| 364 | |
| 365 | if (!(use & (1 << bit))) |
| 366 | continue; /* bit not set */ |
| 367 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 368 | trash.data += snprintf(trash.area + trash.data, |
| 369 | trash.size - trash.data, "%s%s", |
| 370 | (use & ((1 << bit) - 1)) ? "," : "", |
| 371 | fetch_src_names[bit]); |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 372 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 373 | return trash.area; |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 374 | } |
| 375 | |
Willy Tarreau | bf8e251 | 2013-03-25 14:52:41 +0100 | [diff] [blame] | 376 | /* return a pointer to the correct sample checkpoint name, or "unknown" when |
| 377 | * the flags are invalid. Only the lowest bit is used, higher bits are ignored |
| 378 | * if set. |
| 379 | */ |
| 380 | const char *sample_ckp_names(unsigned int use) |
| 381 | { |
| 382 | int bit; |
| 383 | |
| 384 | for (bit = 0; bit < SMP_CKP_ENTRIES; bit++) |
| 385 | if (use & (1 << bit)) |
| 386 | return fetch_ckp_names[bit]; |
| 387 | return "unknown sample check place, please report this bug"; |
| 388 | } |
| 389 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 390 | /* |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 391 | * Registers the sample fetch keyword list <kwl> as a list of valid keywords |
| 392 | * for next parsing sessions. The fetch keywords capabilities are also computed |
| 393 | * from their ->use field. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 394 | */ |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 395 | void sample_register_fetches(struct sample_fetch_kw_list *kwl) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 396 | { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 397 | struct sample_fetch *sf; |
| 398 | int bit; |
| 399 | |
| 400 | for (sf = kwl->kw; sf->kw != NULL; sf++) { |
| 401 | for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) |
| 402 | if (sf->use & (1 << bit)) |
| 403 | sf->val |= fetch_cap[bit]; |
| 404 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 405 | LIST_APPEND(&sample_fetches.list, &kwl->list); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 409 | * Registers the sample format coverstion keyword list <pckl> as a list of valid keywords for next |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 410 | * parsing sessions. |
| 411 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 412 | void sample_register_convs(struct sample_conv_kw_list *pckl) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 413 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 414 | LIST_APPEND(&sample_convs.list, &pckl->list); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 418 | * Returns the pointer on sample fetch keyword structure identified by |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 419 | * string of <len> in buffer <kw>. |
| 420 | * |
| 421 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 422 | struct sample_fetch *find_sample_fetch(const char *kw, int len) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 423 | { |
| 424 | int index; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 425 | struct sample_fetch_kw_list *kwl; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 426 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 427 | list_for_each_entry(kwl, &sample_fetches.list, list) { |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 428 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 429 | if (strncmp(kwl->kw[index].kw, kw, len) == 0 && |
| 430 | kwl->kw[index].kw[len] == '\0') |
| 431 | return &kwl->kw[index]; |
| 432 | } |
| 433 | } |
| 434 | return NULL; |
| 435 | } |
| 436 | |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 437 | /* dump list of registered sample fetch keywords on stdout */ |
| 438 | void smp_dump_fetch_kw(void) |
| 439 | { |
| 440 | struct sample_fetch_kw_list *kwl; |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 441 | struct sample_fetch *kwp, *kw; |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 442 | uint64_t mask; |
| 443 | int index; |
| 444 | int arg; |
| 445 | int bit; |
| 446 | |
| 447 | for (bit = 0; bit <= SMP_CKP_ENTRIES + 1; bit++) { |
| 448 | putchar('#'); |
| 449 | for (index = 0; bit + index <= SMP_CKP_ENTRIES; index++) |
| 450 | putchar(' '); |
| 451 | for (index = 0; index < bit && index < SMP_CKP_ENTRIES; index++) |
| 452 | printf((bit <= SMP_CKP_ENTRIES) ? "/ " : " |"); |
| 453 | for (index = bit; bit < SMP_CKP_ENTRIES && index < SMP_CKP_ENTRIES + 2; index++) |
| 454 | if (index == bit) |
| 455 | putchar('_'); |
| 456 | else if (index == bit + 1) |
| 457 | putchar('.'); |
| 458 | else |
| 459 | putchar('-'); |
| 460 | printf(" %s\n", (bit < SMP_CKP_ENTRIES) ? fetch_ckp_names[bit] : ""); |
| 461 | } |
| 462 | |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 463 | for (kw = kwp = NULL;; kwp = kw) { |
| 464 | list_for_each_entry(kwl, &sample_fetches.list, list) { |
| 465 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 466 | if (strordered(kwp ? kwp->kw : NULL, |
| 467 | kwl->kw[index].kw, |
| 468 | kw != kwp ? kw->kw : NULL)) |
| 469 | kw = &kwl->kw[index]; |
| 470 | } |
| 471 | } |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 472 | |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 473 | if (kw == kwp) |
| 474 | break; |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 475 | |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 476 | printf("[ "); |
| 477 | for (bit = 0; bit < SMP_CKP_ENTRIES; bit++) |
| 478 | printf("%s", (kw->val & (1 << bit)) ? "Y " : ". "); |
| 479 | |
| 480 | printf("] %s", kw->kw); |
| 481 | if (kw->arg_mask) { |
| 482 | mask = kw->arg_mask >> ARGM_BITS; |
| 483 | printf("("); |
| 484 | for (arg = 0; |
| 485 | arg < ARGM_NBARGS && ((mask >> (arg * ARGT_BITS)) & ARGT_MASK); |
| 486 | arg++) { |
| 487 | if (arg == (kw->arg_mask & ARGM_MASK)) { |
| 488 | /* now dumping extra args */ |
| 489 | printf("["); |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 490 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 491 | if (arg) |
| 492 | printf(","); |
| 493 | printf("%s", arg_type_names[(mask >> (arg * ARGT_BITS)) & ARGT_MASK]); |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 494 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 495 | if (arg > (kw->arg_mask & ARGM_MASK)) { |
| 496 | /* extra args were dumped */ |
| 497 | printf("]"); |
| 498 | } |
| 499 | printf(")"); |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 500 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 501 | printf(": %s", smp_to_type[kw->out_type]); |
| 502 | printf("\n"); |
Willy Tarreau | f78813f | 2022-03-29 16:51:29 +0200 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 506 | /* dump list of registered sample converter keywords on stdout */ |
| 507 | void smp_dump_conv_kw(void) |
| 508 | { |
| 509 | struct sample_conv_kw_list *kwl; |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 510 | struct sample_conv *kwp, *kw; |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 511 | uint64_t mask; |
| 512 | int index; |
| 513 | int arg; |
| 514 | |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 515 | for (kw = kwp = NULL;; kwp = kw) { |
| 516 | list_for_each_entry(kwl, &sample_convs.list, list) { |
| 517 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 518 | if (strordered(kwp ? kwp->kw : NULL, |
| 519 | kwl->kw[index].kw, |
| 520 | kw != kwp ? kw->kw : NULL)) |
| 521 | kw = &kwl->kw[index]; |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | if (kw == kwp) |
| 526 | break; |
| 527 | |
| 528 | printf("%s", kw->kw); |
| 529 | if (kw->arg_mask) { |
| 530 | mask = kw->arg_mask >> ARGM_BITS; |
| 531 | printf("("); |
| 532 | for (arg = 0; |
| 533 | arg < ARGM_NBARGS && ((mask >> (arg * ARGT_BITS)) & ARGT_MASK); |
| 534 | arg++) { |
| 535 | if (arg == (kw->arg_mask & ARGM_MASK)) { |
| 536 | /* now dumping extra args */ |
| 537 | printf("["); |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 538 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 539 | if (arg) |
| 540 | printf(","); |
| 541 | printf("%s", arg_type_names[(mask >> (arg * ARGT_BITS)) & ARGT_MASK]); |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 542 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 543 | if (arg > (kw->arg_mask & ARGM_MASK)) { |
| 544 | /* extra args were dumped */ |
| 545 | printf("]"); |
| 546 | } |
| 547 | printf(")"); |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 548 | } |
Willy Tarreau | 5e0f90a | 2022-03-30 11:30:36 +0200 | [diff] [blame] | 549 | printf(": %s => %s", smp_to_type[kw->out_type], smp_to_type[kw->in_type]); |
| 550 | printf("\n"); |
Willy Tarreau | 29d799d | 2022-03-29 16:59:49 +0200 | [diff] [blame] | 551 | } |
| 552 | } |
| 553 | |
Tim Duesterhus | c555ee0 | 2018-01-25 16:24:44 +0100 | [diff] [blame] | 554 | /* This function browses the list of available sample fetches. <current> is |
Thierry FOURNIER | 4d9a1d1 | 2014-12-08 14:49:19 +0100 | [diff] [blame] | 555 | * the last used sample fetch. If it is the first call, it must set to NULL. |
Tim Duesterhus | c555ee0 | 2018-01-25 16:24:44 +0100 | [diff] [blame] | 556 | * <idx> is the index of the next sample fetch entry. It is used as private |
| 557 | * value. It is useless to initiate it. |
Thierry FOURNIER | 4d9a1d1 | 2014-12-08 14:49:19 +0100 | [diff] [blame] | 558 | * |
Tim Duesterhus | c555ee0 | 2018-01-25 16:24:44 +0100 | [diff] [blame] | 559 | * It returns always the new fetch_sample entry, and NULL when the end of |
Thierry FOURNIER | 4d9a1d1 | 2014-12-08 14:49:19 +0100 | [diff] [blame] | 560 | * the list is reached. |
| 561 | */ |
| 562 | struct sample_fetch *sample_fetch_getnext(struct sample_fetch *current, int *idx) |
| 563 | { |
| 564 | struct sample_fetch_kw_list *kwl; |
| 565 | struct sample_fetch *base; |
| 566 | |
| 567 | if (!current) { |
| 568 | /* Get first kwl entry. */ |
| 569 | kwl = LIST_NEXT(&sample_fetches.list, struct sample_fetch_kw_list *, list); |
| 570 | (*idx) = 0; |
| 571 | } else { |
| 572 | /* Get kwl corresponding to the curret entry. */ |
| 573 | base = current + 1 - (*idx); |
| 574 | kwl = container_of(base, struct sample_fetch_kw_list, kw); |
| 575 | } |
| 576 | |
| 577 | while (1) { |
| 578 | |
| 579 | /* Check if kwl is the last entry. */ |
| 580 | if (&kwl->list == &sample_fetches.list) |
| 581 | return NULL; |
| 582 | |
| 583 | /* idx contain the next keyword. If it is available, return it. */ |
| 584 | if (kwl->kw[*idx].kw) { |
| 585 | (*idx)++; |
| 586 | return &kwl->kw[(*idx)-1]; |
| 587 | } |
| 588 | |
| 589 | /* get next entry in the main list, and return NULL if the end is reached. */ |
| 590 | kwl = LIST_NEXT(&kwl->list, struct sample_fetch_kw_list *, list); |
| 591 | |
| 592 | /* Set index to 0, ans do one other loop. */ |
| 593 | (*idx) = 0; |
| 594 | } |
| 595 | } |
| 596 | |
Thierry FOURNIER | 8fd1376 | 2015-03-10 23:56:48 +0100 | [diff] [blame] | 597 | /* This function browses the list of available converters. <current> is |
| 598 | * the last used converter. If it is the first call, it must set to NULL. |
| 599 | * <idx> is the index of the next converter entry. It is used as private |
| 600 | * value. It is useless to initiate it. |
| 601 | * |
| 602 | * It returns always the next sample_conv entry, and NULL when the end of |
| 603 | * the list is reached. |
| 604 | */ |
| 605 | struct sample_conv *sample_conv_getnext(struct sample_conv *current, int *idx) |
| 606 | { |
| 607 | struct sample_conv_kw_list *kwl; |
| 608 | struct sample_conv *base; |
| 609 | |
| 610 | if (!current) { |
| 611 | /* Get first kwl entry. */ |
| 612 | kwl = LIST_NEXT(&sample_convs.list, struct sample_conv_kw_list *, list); |
| 613 | (*idx) = 0; |
| 614 | } else { |
| 615 | /* Get kwl corresponding to the curret entry. */ |
| 616 | base = current + 1 - (*idx); |
| 617 | kwl = container_of(base, struct sample_conv_kw_list, kw); |
| 618 | } |
| 619 | |
| 620 | while (1) { |
| 621 | /* Check if kwl is the last entry. */ |
| 622 | if (&kwl->list == &sample_convs.list) |
| 623 | return NULL; |
| 624 | |
| 625 | /* idx contain the next keyword. If it is available, return it. */ |
| 626 | if (kwl->kw[*idx].kw) { |
| 627 | (*idx)++; |
| 628 | return &kwl->kw[(*idx)-1]; |
| 629 | } |
| 630 | |
| 631 | /* get next entry in the main list, and return NULL if the end is reached. */ |
| 632 | kwl = LIST_NEXT(&kwl->list, struct sample_conv_kw_list *, list); |
| 633 | |
| 634 | /* Set index to 0, ans do one other loop. */ |
| 635 | (*idx) = 0; |
| 636 | } |
| 637 | } |
| 638 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 639 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 640 | * Returns the pointer on sample format conversion keyword structure identified by |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 641 | * string of <len> in buffer <kw>. |
| 642 | * |
| 643 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 644 | struct sample_conv *find_sample_conv(const char *kw, int len) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 645 | { |
| 646 | int index; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 647 | struct sample_conv_kw_list *kwl; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 648 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 649 | list_for_each_entry(kwl, &sample_convs.list, list) { |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 650 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 651 | if (strncmp(kwl->kw[index].kw, kw, len) == 0 && |
| 652 | kwl->kw[index].kw[len] == '\0') |
| 653 | return &kwl->kw[index]; |
| 654 | } |
| 655 | } |
| 656 | return NULL; |
| 657 | } |
| 658 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 659 | /******************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 660 | /* Sample casts functions */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 661 | /******************************************************************/ |
| 662 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 663 | static int c_ip2int(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 664 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 665 | smp->data.u.sint = ntohl(smp->data.u.ipv4.s_addr); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 666 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 667 | return 1; |
| 668 | } |
| 669 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 670 | static int c_ip2str(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 671 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 672 | struct buffer *trash = get_trash_chunk(); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 673 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 674 | if (!inet_ntop(AF_INET, (void *)&smp->data.u.ipv4, trash->area, trash->size)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 675 | return 0; |
| 676 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 677 | trash->data = strlen(trash->area); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 678 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 679 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 680 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 681 | |
| 682 | return 1; |
| 683 | } |
| 684 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 685 | static int c_ip2ipv6(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 686 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 687 | v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 688 | smp->data.type = SMP_T_IPV6; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 689 | return 1; |
| 690 | } |
| 691 | |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 692 | static int c_ipv62ip(struct sample *smp) |
| 693 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 694 | if (!v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6)) |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 695 | return 0; |
Tim Duesterhus | bf5ce02 | 2018-01-25 16:24:46 +0100 | [diff] [blame] | 696 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 697 | return 1; |
| 698 | } |
| 699 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 700 | static int c_ipv62str(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 701 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 702 | struct buffer *trash = get_trash_chunk(); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 703 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 704 | if (!inet_ntop(AF_INET6, (void *)&smp->data.u.ipv6, trash->area, trash->size)) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 705 | return 0; |
| 706 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 707 | trash->data = strlen(trash->area); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 708 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 709 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 710 | smp->flags &= ~SMP_F_CONST; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 711 | return 1; |
| 712 | } |
| 713 | |
| 714 | /* |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 715 | static int c_ipv62ip(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 716 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 717 | return v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 718 | } |
| 719 | */ |
| 720 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 721 | static int c_int2ip(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 722 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 723 | smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 724 | smp->data.type = SMP_T_IPV4; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 725 | return 1; |
| 726 | } |
| 727 | |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 728 | static int c_int2ipv6(struct sample *smp) |
| 729 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 730 | smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint); |
| 731 | v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 732 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 733 | return 1; |
| 734 | } |
| 735 | |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 736 | static int c_str2addr(struct sample *smp) |
| 737 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 738 | if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4)) { |
| 739 | if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6)) |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 740 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 741 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 742 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 743 | return 1; |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 744 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 745 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 746 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 747 | return 1; |
| 748 | } |
| 749 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 750 | static int c_str2ip(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 751 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 752 | if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 753 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 754 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 755 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 756 | return 1; |
| 757 | } |
| 758 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 759 | static int c_str2ipv6(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 760 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 761 | if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6)) |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 762 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 763 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 764 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 765 | return 1; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 766 | } |
| 767 | |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 768 | /* |
| 769 | * The NULL char always enforces the end of string if it is met. |
| 770 | * Data is never changed, so we can ignore the CONST case |
Thierry FOURNIER | e87cac1 | 2014-03-12 15:07:59 +0100 | [diff] [blame] | 771 | */ |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 772 | static int c_bin2str(struct sample *smp) |
| 773 | { |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 774 | int i; |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 775 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 776 | for (i = 0; i < smp->data.u.str.data; i++) { |
| 777 | if (!smp->data.u.str.area[i]) { |
| 778 | smp->data.u.str.data = i; |
Thierry FOURNIER | e87cac1 | 2014-03-12 15:07:59 +0100 | [diff] [blame] | 779 | break; |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 780 | } |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 781 | } |
Christopher Faulet | 472ad51 | 2020-04-30 09:57:40 +0200 | [diff] [blame] | 782 | smp->data.type = SMP_T_STR; |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 783 | return 1; |
| 784 | } |
| 785 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 786 | static int c_int2str(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 787 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 788 | struct buffer *trash = get_trash_chunk(); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 789 | char *pos; |
| 790 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 791 | pos = lltoa_r(smp->data.u.sint, trash->area, trash->size); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 792 | if (!pos) |
| 793 | return 0; |
| 794 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 795 | trash->size = trash->size - (pos - trash->area); |
| 796 | trash->area = pos; |
| 797 | trash->data = strlen(pos); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 798 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 799 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 800 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 801 | return 1; |
| 802 | } |
| 803 | |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 804 | /* This function unconditionally duplicates data and removes the "const" flag. |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 805 | * For strings and binary blocks, it also provides a known allocated size with |
| 806 | * a length that is capped to the size, and ensures a trailing zero is always |
| 807 | * appended for strings. This is necessary for some operations which may |
| 808 | * require to extend the length. It returns 0 if it fails, 1 on success. |
| 809 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 810 | int smp_dup(struct sample *smp) |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 811 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 812 | struct buffer *trash; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 813 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 814 | switch (smp->data.type) { |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 815 | case SMP_T_BOOL: |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 816 | case SMP_T_SINT: |
| 817 | case SMP_T_ADDR: |
| 818 | case SMP_T_IPV4: |
| 819 | case SMP_T_IPV6: |
| 820 | /* These type are not const. */ |
| 821 | break; |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 822 | |
Christopher Faulet | ec10051 | 2017-07-24 15:38:41 +0200 | [diff] [blame] | 823 | case SMP_T_METH: |
| 824 | if (smp->data.u.meth.meth != HTTP_METH_OTHER) |
| 825 | break; |
Willy Tarreau | 7ed0597 | 2022-11-14 06:59:59 +0100 | [diff] [blame] | 826 | __fallthrough; |
Christopher Faulet | ec10051 | 2017-07-24 15:38:41 +0200 | [diff] [blame] | 827 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 828 | case SMP_T_STR: |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 829 | trash = get_trash_chunk(); |
Olivier Houchard | 4468f1c | 2018-12-07 15:23:41 +0100 | [diff] [blame] | 830 | trash->data = smp->data.type == SMP_T_STR ? |
| 831 | smp->data.u.str.data : smp->data.u.meth.str.data; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 832 | if (trash->data > trash->size - 1) |
| 833 | trash->data = trash->size - 1; |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 834 | |
Olivier Houchard | 4468f1c | 2018-12-07 15:23:41 +0100 | [diff] [blame] | 835 | memcpy(trash->area, smp->data.type == SMP_T_STR ? |
| 836 | smp->data.u.str.area : smp->data.u.meth.str.area, |
| 837 | trash->data); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 838 | trash->area[trash->data] = 0; |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 839 | smp->data.u.str = *trash; |
| 840 | break; |
| 841 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 842 | case SMP_T_BIN: |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 843 | trash = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 844 | trash->data = smp->data.u.str.data; |
| 845 | if (trash->data > trash->size) |
| 846 | trash->data = trash->size; |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 847 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 848 | memcpy(trash->area, smp->data.u.str.area, trash->data); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 849 | smp->data.u.str = *trash; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 850 | break; |
Christopher Faulet | ec10051 | 2017-07-24 15:38:41 +0200 | [diff] [blame] | 851 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 852 | default: |
| 853 | /* Other cases are unexpected. */ |
| 854 | return 0; |
| 855 | } |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 856 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 857 | /* remove const flag */ |
| 858 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 859 | return 1; |
| 860 | } |
| 861 | |
Thierry FOURNIER | 0e9af55 | 2013-12-14 14:55:04 +0100 | [diff] [blame] | 862 | int c_none(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 863 | { |
| 864 | return 1; |
| 865 | } |
| 866 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 867 | static int c_str2int(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 868 | { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 869 | const char *str; |
| 870 | const char *end; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 871 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 872 | if (smp->data.u.str.data == 0) |
Thierry FOURNIER | 60bb020 | 2014-01-27 18:20:48 +0100 | [diff] [blame] | 873 | return 0; |
| 874 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 875 | str = smp->data.u.str.area; |
| 876 | end = smp->data.u.str.area + smp->data.u.str.data; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 877 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 878 | smp->data.u.sint = read_int64(&str, end); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 879 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 880 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 881 | return 1; |
| 882 | } |
| 883 | |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 884 | static int c_str2meth(struct sample *smp) |
| 885 | { |
| 886 | enum http_meth_t meth; |
| 887 | int len; |
| 888 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 889 | meth = find_http_meth(smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 890 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 891 | len = smp->data.u.str.data; |
| 892 | smp->data.u.meth.str.area = smp->data.u.str.area; |
| 893 | smp->data.u.meth.str.data = len; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 894 | } |
| 895 | else |
| 896 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 897 | smp->data.u.meth.meth = meth; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 898 | smp->data.type = SMP_T_METH; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 899 | return 1; |
| 900 | } |
| 901 | |
| 902 | static int c_meth2str(struct sample *smp) |
| 903 | { |
| 904 | int len; |
| 905 | enum http_meth_t meth; |
| 906 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 907 | if (smp->data.u.meth.meth == HTTP_METH_OTHER) { |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 908 | /* The method is unknown. Copy the original pointer. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 909 | len = smp->data.u.meth.str.data; |
| 910 | smp->data.u.str.area = smp->data.u.meth.str.area; |
| 911 | smp->data.u.str.data = len; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 912 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 913 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 914 | else if (smp->data.u.meth.meth < HTTP_METH_OTHER) { |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 915 | /* The method is known, copy the pointer containing the string. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 916 | meth = smp->data.u.meth.meth; |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 917 | smp->data.u.str.area = http_known_methods[meth].ptr; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 918 | smp->data.u.str.data = http_known_methods[meth].len; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 919 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 920 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 921 | } |
| 922 | else { |
| 923 | /* Unknown method */ |
| 924 | return 0; |
| 925 | } |
| 926 | return 1; |
| 927 | } |
| 928 | |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 929 | static int c_addr2bin(struct sample *smp) |
| 930 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 931 | struct buffer *chk = get_trash_chunk(); |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 932 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 933 | if (smp->data.type == SMP_T_IPV4) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 934 | chk->data = 4; |
| 935 | memcpy(chk->area, &smp->data.u.ipv4, chk->data); |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 936 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 937 | else if (smp->data.type == SMP_T_IPV6) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 938 | chk->data = 16; |
| 939 | memcpy(chk->area, &smp->data.u.ipv6, chk->data); |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 940 | } |
| 941 | else |
| 942 | return 0; |
| 943 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 944 | smp->data.u.str = *chk; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 945 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 946 | return 1; |
| 947 | } |
| 948 | |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 949 | static int c_int2bin(struct sample *smp) |
| 950 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 951 | struct buffer *chk = get_trash_chunk(); |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 952 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 953 | *(unsigned long long int *) chk->area = my_htonll(smp->data.u.sint); |
| 954 | chk->data = 8; |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 955 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 956 | smp->data.u.str = *chk; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 957 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 958 | return 1; |
| 959 | } |
| 960 | |
Willy Tarreau | b9f30f3 | 2022-04-25 10:46:16 +0200 | [diff] [blame] | 961 | static int c_bool2bin(struct sample *smp) |
| 962 | { |
| 963 | struct buffer *chk = get_trash_chunk(); |
| 964 | |
| 965 | *(unsigned long long int *)chk->area = my_htonll(!!smp->data.u.sint); |
| 966 | chk->data = 8; |
| 967 | smp->data.u.str = *chk; |
| 968 | smp->data.type = SMP_T_BIN; |
| 969 | return 1; |
| 970 | } |
| 971 | |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 972 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 973 | /*****************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 974 | /* Sample casts matrix: */ |
| 975 | /* sample_casts[from type][to type] */ |
| 976 | /* NULL pointer used for impossible sample casts */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 977 | /*****************************************************************/ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 978 | |
Thierry FOURNIER | 8af6ff1 | 2013-11-21 10:53:12 +0100 | [diff] [blame] | 979 | sample_cast_fct sample_casts[SMP_TYPES][SMP_TYPES] = { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 980 | /* to: ANY BOOL SINT ADDR IPV4 IPV6 STR BIN METH */ |
| 981 | /* from: ANY */ { c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, }, |
Willy Tarreau | b9f30f3 | 2022-04-25 10:46:16 +0200 | [diff] [blame] | 982 | /* BOOL */ { c_none, c_none, c_none, NULL, NULL, NULL, c_int2str, c_bool2bin, NULL, }, |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 983 | /* SINT */ { c_none, c_none, c_none, c_int2ip, c_int2ip, c_int2ipv6, c_int2str, c_int2bin, NULL, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 984 | /* ADDR */ { c_none, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, |
| 985 | /* IPV4 */ { c_none, NULL, c_ip2int, c_none, c_none, c_ip2ipv6, c_ip2str, c_addr2bin, NULL, }, |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 986 | /* IPV6 */ { c_none, NULL, NULL, c_none, c_ipv62ip,c_none, c_ipv62str, c_addr2bin, NULL, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 987 | /* STR */ { c_none, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_none, c_none, c_str2meth, }, |
| 988 | /* BIN */ { c_none, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_none, c_str2meth, }, |
| 989 | /* METH */ { c_none, NULL, NULL, NULL, NULL, NULL, c_meth2str, c_meth2str, c_none, } |
Willy Tarreau | f0b38bf | 2010-06-06 13:22:23 +0200 | [diff] [blame] | 990 | }; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 991 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 992 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 993 | * Parse a sample expression configuration: |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 994 | * fetch keyword followed by format conversion keywords. |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 995 | * Returns a pointer on allocated sample expression structure. |
Christopher Faulet | 35926a1 | 2021-09-30 08:48:56 +0200 | [diff] [blame] | 996 | * <al> is an arg_list serving as a list head to report missing dependencies. |
| 997 | * It may be NULL if such dependencies are not allowed. Otherwise, the caller |
| 998 | * must have set al->ctx if al is set. |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 999 | * If <endptr> is non-nul, it will be set to the first unparsed character |
| 1000 | * (which may be the final '\0') on success. If it is nul, the expression |
| 1001 | * must be properly terminated by a '\0' otherwise an error is reported. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1002 | */ |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1003 | struct sample_expr *sample_parse_expr(char **str, int *idx, const char *file, int line, char **err_msg, struct arg_list *al, char **endptr) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1004 | { |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1005 | const char *begw; /* beginning of word */ |
| 1006 | const char *endw; /* end of word */ |
| 1007 | const char *endt; /* end of term */ |
Remi Tricot-Le Breton | 22e0d9b | 2021-01-12 14:55:12 +0100 | [diff] [blame] | 1008 | struct sample_expr *expr = NULL; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1009 | struct sample_fetch *fetch; |
| 1010 | struct sample_conv *conv; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1011 | unsigned long prev_type; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1012 | char *fkw = NULL; |
| 1013 | char *ckw = NULL; |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1014 | int err_arg; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1015 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1016 | begw = str[*idx]; |
Willy Tarreau | ed2c662 | 2020-02-14 18:27:10 +0100 | [diff] [blame] | 1017 | for (endw = begw; is_idchar(*endw); endw++) |
| 1018 | ; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1019 | |
| 1020 | if (endw == begw) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 1021 | memprintf(err_msg, "missing fetch method"); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1022 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1023 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1024 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1025 | /* keep a copy of the current fetch keyword for error reporting */ |
| 1026 | fkw = my_strndup(begw, endw - begw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1027 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1028 | fetch = find_sample_fetch(begw, endw - begw); |
| 1029 | if (!fetch) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 1030 | memprintf(err_msg, "unknown fetch method '%s'", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1031 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1032 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1033 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1034 | /* At this point, we have : |
| 1035 | * - begw : beginning of the keyword |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1036 | * - endw : end of the keyword, first character not part of keyword |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1037 | */ |
| 1038 | |
| 1039 | if (fetch->out_type >= SMP_TYPES) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 1040 | memprintf(err_msg, "returns type of fetch method '%s' is unknown", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1041 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1042 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1043 | prev_type = fetch->out_type; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1044 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1045 | expr = calloc(1, sizeof(*expr)); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1046 | if (!expr) |
| 1047 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1048 | |
| 1049 | LIST_INIT(&(expr->conv_exprs)); |
| 1050 | expr->fetch = fetch; |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 1051 | expr->arg_p = empty_arg_list; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1052 | |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1053 | /* Note that we call the argument parser even with an empty string, |
| 1054 | * this allows it to automatically create entries for mandatory |
| 1055 | * implicit arguments (eg: local proxy name). |
| 1056 | */ |
Christopher Faulet | 35926a1 | 2021-09-30 08:48:56 +0200 | [diff] [blame] | 1057 | if (al) { |
| 1058 | al->kw = expr->fetch->kw; |
| 1059 | al->conv = NULL; |
| 1060 | } |
Willy Tarreau | 80b53ff | 2020-02-14 08:40:37 +0100 | [diff] [blame] | 1061 | if (make_arg_list(endw, -1, fetch->arg_mask, &expr->arg_p, err_msg, &endt, &err_arg, al) < 0) { |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1062 | memprintf(err_msg, "fetch method '%s' : %s", fkw, *err_msg); |
| 1063 | goto out_error; |
| 1064 | } |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 1065 | |
Willy Tarreau | 80b53ff | 2020-02-14 08:40:37 +0100 | [diff] [blame] | 1066 | /* now endt is our first char not part of the arg list, typically the |
| 1067 | * comma after the sample fetch name or after the closing parenthesis, |
| 1068 | * or the NUL char. |
| 1069 | */ |
| 1070 | |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1071 | if (!expr->arg_p) { |
| 1072 | expr->arg_p = empty_arg_list; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1073 | } |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 1074 | else if (fetch->val_args && !fetch->val_args(expr->arg_p, err_msg)) { |
| 1075 | memprintf(err_msg, "invalid args in fetch method '%s' : %s", fkw, *err_msg); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1076 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1077 | } |
| 1078 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1079 | /* Now process the converters if any. We have two supported syntaxes |
| 1080 | * for the converters, which can be combined : |
| 1081 | * - comma-delimited list of converters just after the keyword and args ; |
| 1082 | * - one converter per keyword |
| 1083 | * The combination allows to have each keyword being a comma-delimited |
| 1084 | * series of converters. |
| 1085 | * |
| 1086 | * We want to process the former first, then the latter. For this we start |
| 1087 | * from the beginning of the supposed place in the exiting conv chain, which |
| 1088 | * starts at the last comma (endt). |
| 1089 | */ |
| 1090 | |
| 1091 | while (1) { |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1092 | struct sample_conv_expr *conv_expr; |
Willy Tarreau | 46dfd78 | 2019-12-17 10:25:29 +0100 | [diff] [blame] | 1093 | int err_arg; |
| 1094 | int argcnt; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1095 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1096 | if (*endt && *endt != ',') { |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1097 | if (endptr) { |
| 1098 | /* end found, let's stop here */ |
| 1099 | break; |
| 1100 | } |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1101 | if (ckw) |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1102 | memprintf(err_msg, "missing comma after converter '%s'", ckw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1103 | else |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 1104 | memprintf(err_msg, "missing comma after fetch keyword '%s'", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1105 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1106 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1107 | |
Willy Tarreau | 80b53ff | 2020-02-14 08:40:37 +0100 | [diff] [blame] | 1108 | /* FIXME: how long should we support such idiocies ? Maybe we |
| 1109 | * should already warn ? |
| 1110 | */ |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1111 | while (*endt == ',') /* then trailing commas */ |
| 1112 | endt++; |
| 1113 | |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1114 | begw = endt; /* start of converter */ |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1115 | |
| 1116 | if (!*begw) { |
| 1117 | /* none ? skip to next string */ |
| 1118 | (*idx)++; |
| 1119 | begw = str[*idx]; |
| 1120 | if (!begw || !*begw) |
| 1121 | break; |
| 1122 | } |
| 1123 | |
Willy Tarreau | ed2c662 | 2020-02-14 18:27:10 +0100 | [diff] [blame] | 1124 | for (endw = begw; is_idchar(*endw); endw++) |
| 1125 | ; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1126 | |
| 1127 | free(ckw); |
| 1128 | ckw = my_strndup(begw, endw - begw); |
| 1129 | |
| 1130 | conv = find_sample_conv(begw, endw - begw); |
| 1131 | if (!conv) { |
| 1132 | /* we found an isolated keyword that we don't know, it's not ours */ |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1133 | if (begw == str[*idx]) { |
| 1134 | endt = begw; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1135 | break; |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1136 | } |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1137 | memprintf(err_msg, "unknown converter '%s'", ckw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1138 | goto out_error; |
| 1139 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1140 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1141 | if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1142 | memprintf(err_msg, "returns type of converter '%s' is unknown", ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1143 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1144 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1145 | |
| 1146 | /* If impossible type conversion */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1147 | if (!sample_casts[prev_type][conv->in_type]) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1148 | memprintf(err_msg, "converter '%s' cannot be applied", ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1149 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1150 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1151 | |
| 1152 | prev_type = conv->out_type; |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1153 | conv_expr = calloc(1, sizeof(*conv_expr)); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1154 | if (!conv_expr) |
| 1155 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1156 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1157 | LIST_APPEND(&(expr->conv_exprs), &(conv_expr->list)); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1158 | conv_expr->conv = conv; |
| 1159 | |
Christopher Faulet | 35926a1 | 2021-09-30 08:48:56 +0200 | [diff] [blame] | 1160 | if (al) { |
| 1161 | al->kw = expr->fetch->kw; |
| 1162 | al->conv = conv_expr->conv->kw; |
| 1163 | } |
Willy Tarreau | 80b53ff | 2020-02-14 08:40:37 +0100 | [diff] [blame] | 1164 | argcnt = make_arg_list(endw, -1, conv->arg_mask, &conv_expr->arg_p, err_msg, &endt, &err_arg, al); |
Willy Tarreau | 46dfd78 | 2019-12-17 10:25:29 +0100 | [diff] [blame] | 1165 | if (argcnt < 0) { |
| 1166 | memprintf(err_msg, "invalid arg %d in converter '%s' : %s", err_arg+1, ckw, *err_msg); |
| 1167 | goto out_error; |
| 1168 | } |
Willy Tarreau | 9e92d32 | 2010-01-26 17:58:06 +0100 | [diff] [blame] | 1169 | |
Willy Tarreau | 46dfd78 | 2019-12-17 10:25:29 +0100 | [diff] [blame] | 1170 | if (argcnt && !conv->arg_mask) { |
| 1171 | memprintf(err_msg, "converter '%s' does not support any args", ckw); |
| 1172 | goto out_error; |
| 1173 | } |
Willy Tarreau | 21d68a6 | 2012-04-20 15:52:36 +0200 | [diff] [blame] | 1174 | |
Willy Tarreau | 46dfd78 | 2019-12-17 10:25:29 +0100 | [diff] [blame] | 1175 | if (!conv_expr->arg_p) |
| 1176 | conv_expr->arg_p = empty_arg_list; |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 1177 | |
Willy Tarreau | 46dfd78 | 2019-12-17 10:25:29 +0100 | [diff] [blame] | 1178 | if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err_msg)) { |
| 1179 | memprintf(err_msg, "invalid args in converter '%s' : %s", ckw, *err_msg); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1180 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1181 | } |
| 1182 | } |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1183 | |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1184 | if (endptr) { |
| 1185 | /* end found, let's stop here */ |
| 1186 | *endptr = (char *)endt; |
| 1187 | } |
| 1188 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1189 | out: |
| 1190 | free(fkw); |
| 1191 | free(ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1192 | return expr; |
| 1193 | |
| 1194 | out_error: |
Remi Tricot-Le Breton | 22e0d9b | 2021-01-12 14:55:12 +0100 | [diff] [blame] | 1195 | release_sample_expr(expr); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1196 | expr = NULL; |
| 1197 | goto out; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1201 | * Process a fetch + format conversion of defined by the sample expression <expr> |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1202 | * on request or response considering the <opt> parameter. |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1203 | * Returns a pointer on a typed sample structure containing the result or NULL if |
| 1204 | * sample is not found or when format conversion failed. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1205 | * If <p> is not null, function returns results in structure pointed by <p>. |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1206 | * If <p> is null, functions returns a pointer on a static sample structure. |
Willy Tarreau | b8c8f1f | 2012-04-23 22:38:26 +0200 | [diff] [blame] | 1207 | * |
| 1208 | * Note: the fetch functions are required to properly set the return type. The |
| 1209 | * conversion functions must do so too. However the cast functions do not need |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1210 | * to since they're made to cast multiple types according to what is required. |
Willy Tarreau | 6bcb0a8 | 2014-07-30 08:56:35 +0200 | [diff] [blame] | 1211 | * |
| 1212 | * The caller may indicate in <opt> if it considers the result final or not. |
| 1213 | * The caller needs to check the SMP_F_MAY_CHANGE flag in p->flags to verify |
| 1214 | * if the result is stable or not, according to the following table : |
| 1215 | * |
| 1216 | * return MAY_CHANGE FINAL Meaning for the sample |
| 1217 | * NULL 0 * Not present and will never be (eg: header) |
| 1218 | * NULL 1 0 Not present yet, could change (eg: POST param) |
| 1219 | * NULL 1 1 Not present yet, will not change anymore |
| 1220 | * smp 0 * Present and will not change (eg: header) |
| 1221 | * smp 1 0 Present, may change (eg: request length) |
| 1222 | * smp 1 1 Present, last known value (eg: request length) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1223 | */ |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1224 | struct sample *sample_process(struct proxy *px, struct session *sess, |
| 1225 | struct stream *strm, unsigned int opt, |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1226 | struct sample_expr *expr, struct sample *p) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1227 | { |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1228 | struct sample_conv_expr *conv_expr; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1229 | |
Willy Tarreau | 18387e2 | 2013-07-25 12:02:38 +0200 | [diff] [blame] | 1230 | if (p == NULL) { |
Willy Tarreau | b4a88f0 | 2012-04-23 21:35:11 +0200 | [diff] [blame] | 1231 | p = &temp_smp; |
Willy Tarreau | 6c616e0 | 2014-06-25 16:56:41 +0200 | [diff] [blame] | 1232 | memset(p, 0, sizeof(*p)); |
Willy Tarreau | 18387e2 | 2013-07-25 12:02:38 +0200 | [diff] [blame] | 1233 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1234 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 1235 | smp_set_owner(p, px, sess, strm, opt); |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1236 | if (!expr->fetch->process(expr->arg_p, p, expr->fetch->kw, expr->fetch->private)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1237 | return NULL; |
| 1238 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1239 | list_for_each_entry(conv_expr, &expr->conv_exprs, list) { |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1240 | /* we want to ensure that p->type can be casted into |
| 1241 | * conv_expr->conv->in_type. We have 3 possibilities : |
| 1242 | * - NULL => not castable. |
| 1243 | * - c_none => nothing to do (let's optimize it) |
| 1244 | * - other => apply cast and prepare to fail |
| 1245 | */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1246 | if (!sample_casts[p->data.type][conv_expr->conv->in_type]) |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1247 | return NULL; |
| 1248 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1249 | if (sample_casts[p->data.type][conv_expr->conv->in_type] != c_none && |
| 1250 | !sample_casts[p->data.type][conv_expr->conv->in_type](p)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1251 | return NULL; |
| 1252 | |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1253 | /* OK cast succeeded */ |
| 1254 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1255 | if (!conv_expr->conv->process(conv_expr->arg_p, p, conv_expr->conv->private)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1256 | return NULL; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1257 | } |
| 1258 | return p; |
| 1259 | } |
| 1260 | |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1261 | /* |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1262 | * Resolve all remaining arguments in proxy <p>. Returns the number of |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1263 | * errors or 0 if everything is fine. If at least one error is met, it will |
| 1264 | * be appended to *err. If *err==NULL it will be allocated first. |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1265 | */ |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1266 | int smp_resolve_args(struct proxy *p, char **err) |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1267 | { |
| 1268 | struct arg_list *cur, *bak; |
| 1269 | const char *ctx, *where; |
| 1270 | const char *conv_ctx, *conv_pre, *conv_pos; |
| 1271 | struct userlist *ul; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1272 | struct my_regex *reg; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1273 | struct arg *arg; |
| 1274 | int cfgerr = 0; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1275 | int rflags; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1276 | |
| 1277 | list_for_each_entry_safe(cur, bak, &p->conf.args.list, list) { |
| 1278 | struct proxy *px; |
| 1279 | struct server *srv; |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1280 | struct stktable *t; |
| 1281 | char *pname, *sname, *stktname; |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1282 | char *err2; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1283 | |
| 1284 | arg = cur->arg; |
| 1285 | |
| 1286 | /* prepare output messages */ |
| 1287 | conv_pre = conv_pos = conv_ctx = ""; |
| 1288 | if (cur->conv) { |
| 1289 | conv_ctx = cur->conv; |
| 1290 | conv_pre = "conversion keyword '"; |
| 1291 | conv_pos = "' for "; |
| 1292 | } |
| 1293 | |
| 1294 | where = "in"; |
| 1295 | ctx = "sample fetch keyword"; |
| 1296 | switch (cur->ctx) { |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 1297 | case ARGC_STK: where = "in stick rule in"; break; |
| 1298 | case ARGC_TRK: where = "in tracking rule in"; break; |
| 1299 | case ARGC_LOG: where = "in log-format string in"; break; |
| 1300 | case ARGC_LOGSD: where = "in log-format-sd string in"; break; |
Willy Tarreau | 57467b8 | 2021-09-02 19:43:20 +0200 | [diff] [blame] | 1301 | case ARGC_HRQ: where = "in http-request expression in"; break; |
| 1302 | case ARGC_HRS: where = "in http-response response in"; break; |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 1303 | case ARGC_UIF: where = "in unique-id-format string in"; break; |
| 1304 | case ARGC_RDR: where = "in redirect format string in"; break; |
| 1305 | case ARGC_CAP: where = "in capture rule in"; break; |
| 1306 | case ARGC_ACL: ctx = "ACL keyword"; break; |
| 1307 | case ARGC_SRV: where = "in server directive in"; break; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1308 | case ARGC_SPOE: where = "in spoe-message directive in"; break; |
Willy Tarreau | 1a8636d | 2022-04-25 08:15:46 +0200 | [diff] [blame] | 1309 | case ARGC_UBK: where = "in use_backend expression in"; break; |
Willy Tarreau | 7c9a0fe | 2022-04-25 10:25:34 +0200 | [diff] [blame] | 1310 | case ARGC_USRV: where = "in use-server or balance expression in"; break; |
Christopher Faulet | 3b967c1 | 2020-05-15 15:47:44 +0200 | [diff] [blame] | 1311 | case ARGC_HERR: where = "in http-error directive in"; break; |
Miroslav Zagorac | 7f8314c | 2020-12-09 16:31:48 +0100 | [diff] [blame] | 1312 | case ARGC_OT: where = "in ot-scope directive in"; break; |
Willy Tarreau | 57467b8 | 2021-09-02 19:43:20 +0200 | [diff] [blame] | 1313 | case ARGC_TCO: where = "in tcp-request connection expression in"; break; |
| 1314 | case ARGC_TSE: where = "in tcp-request session expression in"; break; |
| 1315 | case ARGC_TRQ: where = "in tcp-request content expression in"; break; |
| 1316 | case ARGC_TRS: where = "in tcp-response content expression in"; break; |
| 1317 | case ARGC_TCK: where = "in tcp-check expression in"; break; |
| 1318 | case ARGC_CFG: where = "in configuration expression in"; break; |
| 1319 | case ARGC_CLI: where = "in CLI expression in"; break; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1320 | } |
| 1321 | |
| 1322 | /* set a few default settings */ |
| 1323 | px = p; |
| 1324 | pname = p->id; |
| 1325 | |
| 1326 | switch (arg->type) { |
| 1327 | case ARGT_SRV: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1328 | if (!arg->data.str.data) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1329 | memprintf(err, "%sparsing [%s:%d]: missing server name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1330 | *err ? *err : "", cur->file, cur->line, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1331 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1332 | cfgerr++; |
| 1333 | continue; |
| 1334 | } |
| 1335 | |
| 1336 | /* we support two formats : "bck/srv" and "srv" */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1337 | sname = strrchr(arg->data.str.area, '/'); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1338 | |
| 1339 | if (sname) { |
| 1340 | *sname++ = '\0'; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1341 | pname = arg->data.str.area; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1342 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1343 | px = proxy_be_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1344 | if (!px) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1345 | memprintf(err, "%sparsing [%s:%d]: unable to find proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1346 | *err ? *err : "", cur->file, cur->line, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1347 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1348 | cfgerr++; |
| 1349 | break; |
| 1350 | } |
| 1351 | } |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 1352 | else { |
| 1353 | if (px->cap & PR_CAP_DEF) { |
| 1354 | memprintf(err, "%sparsing [%s:%d]: backend name must be set in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1355 | *err ? *err : "", cur->file, cur->line, |
| 1356 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1357 | cfgerr++; |
| 1358 | break; |
| 1359 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1360 | sname = arg->data.str.area; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 1361 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1362 | |
| 1363 | srv = findserver(px, sname); |
| 1364 | if (!srv) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1365 | memprintf(err, "%sparsing [%s:%d]: unable to find server '%s' in proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1366 | *err ? *err : "", cur->file, cur->line, sname, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1367 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1368 | cfgerr++; |
| 1369 | break; |
| 1370 | } |
| 1371 | |
Amaury Denoyelle | 0626961 | 2021-08-23 14:05:07 +0200 | [diff] [blame] | 1372 | srv->flags |= SRV_F_NON_PURGEABLE; |
| 1373 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1374 | chunk_destroy(&arg->data.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1375 | arg->unresolved = 0; |
| 1376 | arg->data.srv = srv; |
| 1377 | break; |
| 1378 | |
| 1379 | case ARGT_FE: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1380 | if (arg->data.str.data) { |
| 1381 | pname = arg->data.str.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1382 | px = proxy_fe_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1383 | } |
| 1384 | |
| 1385 | if (!px) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1386 | memprintf(err, "%sparsing [%s:%d]: unable to find frontend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1387 | *err ? *err : "", cur->file, cur->line, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1388 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1389 | cfgerr++; |
| 1390 | break; |
| 1391 | } |
| 1392 | |
| 1393 | if (!(px->cap & PR_CAP_FE)) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1394 | memprintf(err, "%sparsing [%s:%d]: proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not frontend capability.\n", |
| 1395 | *err ? *err : "", cur->file, cur->line, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1396 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1397 | cfgerr++; |
| 1398 | break; |
| 1399 | } |
| 1400 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1401 | chunk_destroy(&arg->data.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1402 | arg->unresolved = 0; |
| 1403 | arg->data.prx = px; |
| 1404 | break; |
| 1405 | |
| 1406 | case ARGT_BE: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1407 | if (arg->data.str.data) { |
| 1408 | pname = arg->data.str.area; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1409 | px = proxy_be_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1410 | } |
| 1411 | |
| 1412 | if (!px) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1413 | memprintf(err, "%sparsing [%s:%d]: unable to find backend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1414 | *err ? *err : "", cur->file, cur->line, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1415 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1416 | cfgerr++; |
| 1417 | break; |
| 1418 | } |
| 1419 | |
| 1420 | if (!(px->cap & PR_CAP_BE)) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1421 | memprintf(err, "%sparsing [%s:%d]: proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not backend capability.\n", |
| 1422 | *err ? *err : "", cur->file, cur->line, pname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1423 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1424 | cfgerr++; |
| 1425 | break; |
| 1426 | } |
| 1427 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1428 | chunk_destroy(&arg->data.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1429 | arg->unresolved = 0; |
| 1430 | arg->data.prx = px; |
| 1431 | break; |
| 1432 | |
| 1433 | case ARGT_TAB: |
Frédéric Lécaille | 9417f45 | 2019-06-20 09:31:04 +0200 | [diff] [blame] | 1434 | if (arg->data.str.data) |
| 1435 | stktname = arg->data.str.area; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 1436 | else { |
| 1437 | if (px->cap & PR_CAP_DEF) { |
| 1438 | memprintf(err, "%sparsing [%s:%d]: table name must be set in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1439 | *err ? *err : "", cur->file, cur->line, |
| 1440 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1441 | cfgerr++; |
| 1442 | break; |
| 1443 | } |
Frédéric Lécaille | 9417f45 | 2019-06-20 09:31:04 +0200 | [diff] [blame] | 1444 | stktname = px->id; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 1445 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1446 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1447 | t = stktable_find_by_name(stktname); |
| 1448 | if (!t) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1449 | memprintf(err, "%sparsing [%s:%d]: unable to find table '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1450 | *err ? *err : "", cur->file, cur->line, stktname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1451 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1452 | cfgerr++; |
| 1453 | break; |
| 1454 | } |
| 1455 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1456 | if (!t->size) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1457 | memprintf(err, "%sparsing [%s:%d]: no table in proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1458 | *err ? *err : "", cur->file, cur->line, stktname, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1459 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1460 | cfgerr++; |
| 1461 | break; |
| 1462 | } |
| 1463 | |
Frédéric Lécaille | be36793 | 2019-08-07 09:28:39 +0200 | [diff] [blame] | 1464 | if (!in_proxies_list(t->proxies_list, p)) { |
Frédéric Lécaille | 015e4d7 | 2019-03-19 14:55:01 +0100 | [diff] [blame] | 1465 | p->next_stkt_ref = t->proxies_list; |
| 1466 | t->proxies_list = p; |
| 1467 | } |
| 1468 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1469 | chunk_destroy(&arg->data.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1470 | arg->unresolved = 0; |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1471 | arg->data.t = t; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1472 | break; |
| 1473 | |
| 1474 | case ARGT_USR: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1475 | if (!arg->data.str.data) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1476 | memprintf(err, "%sparsing [%s:%d]: missing userlist name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1477 | *err ? *err : "", cur->file, cur->line, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1478 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1479 | cfgerr++; |
| 1480 | break; |
| 1481 | } |
| 1482 | |
| 1483 | if (p->uri_auth && p->uri_auth->userlist && |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1484 | strcmp(p->uri_auth->userlist->name, arg->data.str.area) == 0) |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1485 | ul = p->uri_auth->userlist; |
| 1486 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1487 | ul = auth_find_userlist(arg->data.str.area); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1488 | |
| 1489 | if (!ul) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1490 | memprintf(err, "%sparsing [%s:%d]: unable to find userlist '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1491 | *err ? *err : "", cur->file, cur->line, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1492 | arg->data.str.area, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1493 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1494 | cfgerr++; |
| 1495 | break; |
| 1496 | } |
| 1497 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1498 | chunk_destroy(&arg->data.str); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1499 | arg->unresolved = 0; |
| 1500 | arg->data.usr = ul; |
| 1501 | break; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1502 | |
| 1503 | case ARGT_REG: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1504 | if (!arg->data.str.data) { |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1505 | memprintf(err, "%sparsing [%s:%d]: missing regex in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1506 | *err ? *err : "", cur->file, cur->line, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1507 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1508 | cfgerr++; |
| 1509 | continue; |
| 1510 | } |
| 1511 | |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1512 | rflags = 0; |
| 1513 | rflags |= (arg->type_flags & ARGF_REG_ICASE) ? REG_ICASE : 0; |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1514 | err2 = NULL; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1515 | |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1516 | if (!(reg = regex_comp(arg->data.str.area, !(rflags & REG_ICASE), 1 /* capture substr */, &err2))) { |
| 1517 | memprintf(err, "%sparsing [%s:%d]: error in regex '%s' in arg %d of %s%s%s%s '%s' %s proxy '%s' : %s.\n", |
| 1518 | *err ? *err : "", cur->file, cur->line, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1519 | arg->data.str.area, |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 1520 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id, err2); |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1521 | cfgerr++; |
| 1522 | continue; |
| 1523 | } |
| 1524 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1525 | chunk_destroy(&arg->data.str); |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1526 | arg->unresolved = 0; |
| 1527 | arg->data.reg = reg; |
| 1528 | break; |
| 1529 | |
| 1530 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1531 | } |
| 1532 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1533 | LIST_DELETE(&cur->list); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1534 | free(cur); |
| 1535 | } /* end of args processing */ |
| 1536 | |
| 1537 | return cfgerr; |
| 1538 | } |
| 1539 | |
| 1540 | /* |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1541 | * Process a fetch + format conversion as defined by the sample expression |
| 1542 | * <expr> on request or response considering the <opt> parameter. The output is |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1543 | * not explicitly set to <smp_type>, but shall be compatible with it as |
| 1544 | * specified by 'sample_casts' table. If a stable sample can be fetched, or an |
| 1545 | * unstable one when <opt> contains SMP_OPT_FINAL, the sample is converted and |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1546 | * returned without the SMP_F_MAY_CHANGE flag. If an unstable sample is found |
| 1547 | * and <opt> does not contain SMP_OPT_FINAL, then the sample is returned as-is |
| 1548 | * with its SMP_F_MAY_CHANGE flag so that the caller can check it and decide to |
| 1549 | * take actions (eg: wait longer). If a sample could not be found or could not |
Willy Tarreau | 6bcb0a8 | 2014-07-30 08:56:35 +0200 | [diff] [blame] | 1550 | * be converted, NULL is returned. The caller MUST NOT use the sample if the |
| 1551 | * SMP_F_MAY_CHANGE flag is present, as it is used only as a hint that there is |
| 1552 | * still hope to get it after waiting longer, and is not converted to string. |
| 1553 | * The possible output combinations are the following : |
| 1554 | * |
| 1555 | * return MAY_CHANGE FINAL Meaning for the sample |
| 1556 | * NULL * * Not present and will never be (eg: header) |
| 1557 | * smp 0 * Final value converted (eg: header) |
| 1558 | * smp 1 0 Not present yet, may appear later (eg: header) |
| 1559 | * smp 1 1 never happens (either flag is cleared on output) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1560 | */ |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1561 | struct sample *sample_fetch_as_type(struct proxy *px, struct session *sess, |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1562 | struct stream *strm, unsigned int opt, |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1563 | struct sample_expr *expr, int smp_type) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1564 | { |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1565 | struct sample *smp = &temp_smp; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1566 | |
Willy Tarreau | 6c616e0 | 2014-06-25 16:56:41 +0200 | [diff] [blame] | 1567 | memset(smp, 0, sizeof(*smp)); |
| 1568 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1569 | if (!sample_process(px, sess, strm, opt, expr, smp)) { |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1570 | if ((smp->flags & SMP_F_MAY_CHANGE) && !(opt & SMP_OPT_FINAL)) |
| 1571 | return smp; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1572 | return NULL; |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1573 | } |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1574 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1575 | if (!sample_casts[smp->data.type][smp_type]) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1576 | return NULL; |
| 1577 | |
Willy Tarreau | 3705dee | 2022-04-25 10:02:11 +0200 | [diff] [blame] | 1578 | if (sample_casts[smp->data.type][smp_type] != c_none && |
| 1579 | !sample_casts[smp->data.type][smp_type](smp)) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1580 | return NULL; |
| 1581 | |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1582 | smp->flags &= ~SMP_F_MAY_CHANGE; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1583 | return smp; |
| 1584 | } |
| 1585 | |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1586 | static void release_sample_arg(struct arg *p) |
| 1587 | { |
| 1588 | struct arg *p_back = p; |
| 1589 | |
| 1590 | if (!p) |
| 1591 | return; |
| 1592 | |
| 1593 | while (p->type != ARGT_STOP) { |
| 1594 | if (p->type == ARGT_STR || p->unresolved) { |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1595 | chunk_destroy(&p->data.str); |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1596 | p->unresolved = 0; |
| 1597 | } |
| 1598 | else if (p->type == ARGT_REG) { |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 1599 | regex_free(p->data.reg); |
| 1600 | p->data.reg = NULL; |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1601 | } |
| 1602 | p++; |
| 1603 | } |
| 1604 | |
| 1605 | if (p_back != empty_arg_list) |
| 1606 | free(p_back); |
| 1607 | } |
| 1608 | |
| 1609 | void release_sample_expr(struct sample_expr *expr) |
| 1610 | { |
| 1611 | struct sample_conv_expr *conv_expr, *conv_exprb; |
| 1612 | |
| 1613 | if (!expr) |
| 1614 | return; |
| 1615 | |
Tim Duesterhus | 867cd98 | 2020-07-04 11:49:39 +0200 | [diff] [blame] | 1616 | list_for_each_entry_safe(conv_expr, conv_exprb, &expr->conv_exprs, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1617 | LIST_DELETE(&conv_expr->list); |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1618 | release_sample_arg(conv_expr->arg_p); |
Tim Duesterhus | 867cd98 | 2020-07-04 11:49:39 +0200 | [diff] [blame] | 1619 | free(conv_expr); |
| 1620 | } |
| 1621 | |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1622 | release_sample_arg(expr->arg_p); |
| 1623 | free(expr); |
| 1624 | } |
| 1625 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1626 | /*****************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1627 | /* Sample format convert functions */ |
Willy Tarreau | b8c8f1f | 2012-04-23 22:38:26 +0200 | [diff] [blame] | 1628 | /* These functions set the data type on return. */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1629 | /*****************************************************************/ |
| 1630 | |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1631 | static int sample_conv_debug(const struct arg *arg_p, struct sample *smp, void *private) |
| 1632 | { |
| 1633 | int i; |
| 1634 | struct sample tmp; |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1635 | struct buffer *buf; |
| 1636 | struct sink *sink; |
| 1637 | struct ist line; |
| 1638 | char *pfx; |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1639 | |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1640 | buf = alloc_trash_chunk(); |
| 1641 | if (!buf) |
| 1642 | goto end; |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1643 | |
Christopher Faulet | b45bf8e | 2020-08-07 14:00:23 +0200 | [diff] [blame] | 1644 | sink = (struct sink *)arg_p[1].data.ptr; |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1645 | BUG_ON(!sink); |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1646 | |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1647 | pfx = arg_p[0].data.str.area; |
| 1648 | BUG_ON(!pfx); |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1649 | |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1650 | chunk_printf(buf, "[debug] %s: type=%s ", pfx, smp_to_type[smp->data.type]); |
| 1651 | if (!sample_casts[smp->data.type][SMP_T_STR]) |
| 1652 | goto nocast; |
| 1653 | |
| 1654 | /* Copy sample fetch. This puts the sample as const, the |
| 1655 | * cast will copy data if a transformation is required. |
| 1656 | */ |
| 1657 | memcpy(&tmp, smp, sizeof(struct sample)); |
| 1658 | tmp.flags = SMP_F_CONST; |
| 1659 | |
| 1660 | if (!sample_casts[smp->data.type][SMP_T_STR](&tmp)) |
| 1661 | goto nocast; |
| 1662 | |
| 1663 | /* Display the displayable chars*. */ |
| 1664 | b_putchr(buf, '<'); |
| 1665 | for (i = 0; i < tmp.data.u.str.data; i++) { |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1666 | if (isprint((unsigned char)tmp.data.u.str.area[i])) |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1667 | b_putchr(buf, tmp.data.u.str.area[i]); |
| 1668 | else |
| 1669 | b_putchr(buf, '.'); |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1670 | } |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1671 | b_putchr(buf, '>'); |
| 1672 | |
| 1673 | done: |
| 1674 | line = ist2(buf->area, buf->data); |
Emeric Brun | 5464885 | 2020-07-06 15:54:06 +0200 | [diff] [blame] | 1675 | sink_write(sink, &line, 1, 0, 0, NULL); |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1676 | end: |
| 1677 | free_trash_chunk(buf); |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1678 | return 1; |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1679 | nocast: |
| 1680 | chunk_appendf(buf, "(undisplayable)"); |
| 1681 | goto done; |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1682 | } |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1683 | |
| 1684 | // This function checks the "debug" converter's arguments. |
| 1685 | static int smp_check_debug(struct arg *args, struct sample_conv *conv, |
| 1686 | const char *file, int line, char **err) |
| 1687 | { |
| 1688 | const char *name = "buf0"; |
| 1689 | struct sink *sink = NULL; |
| 1690 | |
| 1691 | if (args[0].type != ARGT_STR) { |
| 1692 | /* optional prefix */ |
| 1693 | args[0].data.str.area = ""; |
| 1694 | args[0].data.str.data = 0; |
| 1695 | } |
| 1696 | |
| 1697 | if (args[1].type == ARGT_STR) |
| 1698 | name = args[1].data.str.area; |
| 1699 | |
| 1700 | sink = sink_find(name); |
| 1701 | if (!sink) { |
| 1702 | memprintf(err, "No such sink '%s'", name); |
| 1703 | return 0; |
| 1704 | } |
| 1705 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 1706 | chunk_destroy(&args[1].data.str); |
Christopher Faulet | b45bf8e | 2020-08-07 14:00:23 +0200 | [diff] [blame] | 1707 | args[1].type = ARGT_PTR; |
| 1708 | args[1].data.ptr = sink; |
Willy Tarreau | 0851fd5 | 2019-12-17 10:07:25 +0100 | [diff] [blame] | 1709 | return 1; |
| 1710 | } |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1711 | |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 1712 | static int sample_conv_base642bin(const struct arg *arg_p, struct sample *smp, void *private) |
| 1713 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1714 | struct buffer *trash = get_trash_chunk(); |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 1715 | int bin_len; |
| 1716 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1717 | trash->data = 0; |
| 1718 | bin_len = base64dec(smp->data.u.str.area, smp->data.u.str.data, |
| 1719 | trash->area, trash->size); |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 1720 | if (bin_len < 0) |
| 1721 | return 0; |
| 1722 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1723 | trash->data = bin_len; |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 1724 | smp->data.u.str = *trash; |
| 1725 | smp->data.type = SMP_T_BIN; |
| 1726 | smp->flags &= ~SMP_F_CONST; |
| 1727 | return 1; |
| 1728 | } |
| 1729 | |
Moemen MHEDHBI | 92f7d43 | 2021-04-01 20:53:59 +0200 | [diff] [blame] | 1730 | static int sample_conv_base64url2bin(const struct arg *arg_p, struct sample *smp, void *private) |
| 1731 | { |
| 1732 | struct buffer *trash = get_trash_chunk(); |
| 1733 | int bin_len; |
| 1734 | |
| 1735 | trash->data = 0; |
| 1736 | bin_len = base64urldec(smp->data.u.str.area, smp->data.u.str.data, |
| 1737 | trash->area, trash->size); |
| 1738 | if (bin_len < 0) |
| 1739 | return 0; |
| 1740 | |
| 1741 | trash->data = bin_len; |
| 1742 | smp->data.u.str = *trash; |
| 1743 | smp->data.type = SMP_T_BIN; |
| 1744 | smp->flags &= ~SMP_F_CONST; |
| 1745 | return 1; |
| 1746 | } |
| 1747 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1748 | static int sample_conv_bin2base64(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1749 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1750 | struct buffer *trash = get_trash_chunk(); |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1751 | int b64_len; |
| 1752 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1753 | trash->data = 0; |
| 1754 | b64_len = a2base64(smp->data.u.str.area, smp->data.u.str.data, |
| 1755 | trash->area, trash->size); |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1756 | if (b64_len < 0) |
| 1757 | return 0; |
| 1758 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1759 | trash->data = b64_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1760 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1761 | smp->data.type = SMP_T_STR; |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1762 | smp->flags &= ~SMP_F_CONST; |
| 1763 | return 1; |
| 1764 | } |
| 1765 | |
Moemen MHEDHBI | 92f7d43 | 2021-04-01 20:53:59 +0200 | [diff] [blame] | 1766 | static int sample_conv_bin2base64url(const struct arg *arg_p, struct sample *smp, void *private) |
| 1767 | { |
| 1768 | struct buffer *trash = get_trash_chunk(); |
| 1769 | int b64_len; |
| 1770 | |
| 1771 | trash->data = 0; |
| 1772 | b64_len = a2base64url(smp->data.u.str.area, smp->data.u.str.data, |
| 1773 | trash->area, trash->size); |
| 1774 | if (b64_len < 0) |
| 1775 | return 0; |
| 1776 | |
| 1777 | trash->data = b64_len; |
| 1778 | smp->data.u.str = *trash; |
| 1779 | smp->data.type = SMP_T_STR; |
| 1780 | smp->flags &= ~SMP_F_CONST; |
| 1781 | return 1; |
| 1782 | } |
| 1783 | |
Willy Tarreau | 168e8de | 2021-10-06 15:29:00 +0200 | [diff] [blame] | 1784 | /* This function returns a sample struct filled with the conversion of variable |
| 1785 | * <var> to sample type <type> (SMP_T_*), via a cast to the target type. If the |
| 1786 | * variable cannot be retrieved or casted, 0 is returned, otherwise 1. |
| 1787 | * |
| 1788 | * Keep in mind that the sample content may be written to a pre-allocated |
| 1789 | * trash chunk as returned by get_trash_chunk(). |
| 1790 | */ |
| 1791 | int sample_conv_var2smp(const struct var_desc *var, struct sample *smp, int type) |
| 1792 | { |
| 1793 | if (!vars_get_by_desc(var, smp, NULL)) |
| 1794 | return 0; |
| 1795 | if (!sample_casts[smp->data.type][type]) |
| 1796 | return 0; |
| 1797 | if (!sample_casts[smp->data.type][type](smp)) |
| 1798 | return 0; |
| 1799 | return 1; |
| 1800 | } |
| 1801 | |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 1802 | static int sample_conv_sha1(const struct arg *arg_p, struct sample *smp, void *private) |
| 1803 | { |
| 1804 | blk_SHA_CTX ctx; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1805 | struct buffer *trash = get_trash_chunk(); |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 1806 | |
| 1807 | memset(&ctx, 0, sizeof(ctx)); |
| 1808 | |
| 1809 | blk_SHA1_Init(&ctx); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1810 | blk_SHA1_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data); |
| 1811 | blk_SHA1_Final((unsigned char *) trash->area, &ctx); |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 1812 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1813 | trash->data = 20; |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 1814 | smp->data.u.str = *trash; |
| 1815 | smp->data.type = SMP_T_BIN; |
| 1816 | smp->flags &= ~SMP_F_CONST; |
| 1817 | return 1; |
| 1818 | } |
| 1819 | |
Dragan Dosen | 9e8db13 | 2021-02-22 10:03:53 +0100 | [diff] [blame] | 1820 | /* This function returns a sample struct filled with an <arg> content. |
| 1821 | * If the <arg> contains a string, it is returned in the sample flagged as |
| 1822 | * SMP_F_CONST. If the <arg> contains a variable descriptor, the sample is |
| 1823 | * filled with the content of the variable by using vars_get_by_desc(). |
| 1824 | * |
| 1825 | * Keep in mind that the sample content may be written to a pre-allocated |
| 1826 | * trash chunk as returned by get_trash_chunk(). |
| 1827 | * |
| 1828 | * This function returns 0 if an error occurs, otherwise it returns 1. |
| 1829 | */ |
Willy Tarreau | 4034e2c | 2021-10-06 15:20:18 +0200 | [diff] [blame] | 1830 | int sample_conv_var2smp_str(const struct arg *arg, struct sample *smp) |
Patrick Gansterer | b399bfb | 2018-06-17 11:21:11 +0200 | [diff] [blame] | 1831 | { |
| 1832 | switch (arg->type) { |
| 1833 | case ARGT_STR: |
| 1834 | smp->data.type = SMP_T_STR; |
| 1835 | smp->data.u.str = arg->data.str; |
Dragan Dosen | 9e8db13 | 2021-02-22 10:03:53 +0100 | [diff] [blame] | 1836 | smp->flags = SMP_F_CONST; |
Patrick Gansterer | b399bfb | 2018-06-17 11:21:11 +0200 | [diff] [blame] | 1837 | return 1; |
| 1838 | case ARGT_VAR: |
Willy Tarreau | 2476ff1 | 2021-10-06 15:30:52 +0200 | [diff] [blame] | 1839 | return sample_conv_var2smp(&arg->data.var, smp, SMP_T_STR); |
Patrick Gansterer | b399bfb | 2018-06-17 11:21:11 +0200 | [diff] [blame] | 1840 | default: |
| 1841 | return 0; |
| 1842 | } |
| 1843 | } |
| 1844 | |
Marcin Deranek | 40ca09c | 2021-07-13 14:05:24 +0200 | [diff] [blame] | 1845 | static int sample_conv_be2dec_check(struct arg *args, struct sample_conv *conv, |
| 1846 | const char *file, int line, char **err) |
| 1847 | { |
| 1848 | if (args[1].data.sint <= 0 || args[1].data.sint > sizeof(unsigned long long)) { |
Willy Tarreau | c5d0fc9 | 2021-09-15 10:30:40 +0200 | [diff] [blame] | 1849 | memprintf(err, "chunk_size out of [1..%u] range (%lld)", (uint)sizeof(unsigned long long), args[1].data.sint); |
Marcin Deranek | 40ca09c | 2021-07-13 14:05:24 +0200 | [diff] [blame] | 1850 | return 0; |
| 1851 | } |
| 1852 | |
| 1853 | if (args[2].data.sint != 0 && args[2].data.sint != 1) { |
| 1854 | memprintf(err, "Unsupported truncate value (%lld)", args[2].data.sint); |
| 1855 | return 0; |
| 1856 | } |
| 1857 | |
| 1858 | return 1; |
| 1859 | } |
| 1860 | |
| 1861 | /* Converts big-endian binary input sample to a string containing an unsigned |
| 1862 | * integer number per <chunk_size> input bytes separated with <separator>. |
| 1863 | * Optional <truncate> flag indicates if input is truncated at <chunk_size> |
| 1864 | * boundaries. |
| 1865 | * Arguments: separator (string), chunk_size (integer), truncate (0,1) |
| 1866 | */ |
| 1867 | static int sample_conv_be2dec(const struct arg *args, struct sample *smp, void *private) |
| 1868 | { |
| 1869 | struct buffer *trash = get_trash_chunk(); |
| 1870 | const int last = args[2].data.sint ? smp->data.u.str.data - args[1].data.sint + 1 : smp->data.u.str.data; |
| 1871 | int max_size = trash->size - 2; |
| 1872 | int i; |
| 1873 | int start; |
| 1874 | int ptr = 0; |
| 1875 | unsigned long long number; |
| 1876 | char *pos; |
| 1877 | |
| 1878 | trash->data = 0; |
| 1879 | |
| 1880 | while (ptr < last && trash->data <= max_size) { |
| 1881 | start = trash->data; |
| 1882 | if (ptr) { |
| 1883 | /* Add separator */ |
| 1884 | memcpy(trash->area + trash->data, args[0].data.str.area, args[0].data.str.data); |
| 1885 | trash->data += args[0].data.str.data; |
| 1886 | } |
| 1887 | else |
| 1888 | max_size -= args[0].data.str.data; |
| 1889 | |
| 1890 | /* Add integer */ |
| 1891 | for (number = 0, i = 0; i < args[1].data.sint && ptr < smp->data.u.str.data; i++) |
| 1892 | number = (number << 8) + (unsigned char)smp->data.u.str.area[ptr++]; |
| 1893 | |
| 1894 | pos = ulltoa(number, trash->area + trash->data, trash->size - trash->data); |
| 1895 | if (pos) |
| 1896 | trash->data = pos - trash->area; |
| 1897 | else { |
| 1898 | trash->data = start; |
| 1899 | break; |
| 1900 | } |
| 1901 | } |
| 1902 | |
| 1903 | smp->data.u.str = *trash; |
| 1904 | smp->data.type = SMP_T_STR; |
| 1905 | smp->flags &= ~SMP_F_CONST; |
| 1906 | return 1; |
| 1907 | } |
| 1908 | |
Marcin Deranek | da0264a | 2021-07-13 14:08:56 +0200 | [diff] [blame] | 1909 | static int sample_conv_be2hex_check(struct arg *args, struct sample_conv *conv, |
| 1910 | const char *file, int line, char **err) |
| 1911 | { |
| 1912 | if (args[1].data.sint <= 0 && (args[0].data.str.data > 0 || args[2].data.sint != 0)) { |
| 1913 | memprintf(err, "chunk_size needs to be positive (%lld)", args[1].data.sint); |
| 1914 | return 0; |
| 1915 | } |
| 1916 | |
| 1917 | if (args[2].data.sint != 0 && args[2].data.sint != 1) { |
| 1918 | memprintf(err, "Unsupported truncate value (%lld)", args[2].data.sint); |
| 1919 | return 0; |
| 1920 | } |
| 1921 | |
| 1922 | return 1; |
| 1923 | } |
| 1924 | |
| 1925 | /* Converts big-endian binary input sample to a hex string containing two hex |
| 1926 | * digits per input byte. <separator> is put every <chunk_size> binary input |
| 1927 | * bytes if specified. Optional <truncate> flag indicates if input is truncated |
| 1928 | * at <chunk_size> boundaries. |
| 1929 | * Arguments: separator (string), chunk_size (integer), truncate (0,1) |
| 1930 | */ |
| 1931 | static int sample_conv_be2hex(const struct arg *args, struct sample *smp, void *private) |
| 1932 | { |
| 1933 | struct buffer *trash = get_trash_chunk(); |
| 1934 | int chunk_size = args[1].data.sint; |
| 1935 | const int last = args[2].data.sint ? smp->data.u.str.data - chunk_size + 1 : smp->data.u.str.data; |
| 1936 | int i; |
| 1937 | int max_size; |
| 1938 | int ptr = 0; |
| 1939 | unsigned char c; |
| 1940 | |
| 1941 | trash->data = 0; |
| 1942 | if (args[0].data.str.data == 0 && args[2].data.sint == 0) |
| 1943 | chunk_size = smp->data.u.str.data; |
| 1944 | max_size = trash->size - 2 * chunk_size; |
| 1945 | |
| 1946 | while (ptr < last && trash->data <= max_size) { |
| 1947 | if (ptr) { |
| 1948 | /* Add separator */ |
| 1949 | memcpy(trash->area + trash->data, args[0].data.str.area, args[0].data.str.data); |
| 1950 | trash->data += args[0].data.str.data; |
| 1951 | } |
| 1952 | else |
| 1953 | max_size -= args[0].data.str.data; |
| 1954 | |
| 1955 | /* Add hex */ |
| 1956 | for (i = 0; i < chunk_size && ptr < smp->data.u.str.data; i++) { |
| 1957 | c = smp->data.u.str.area[ptr++]; |
| 1958 | trash->area[trash->data++] = hextab[(c >> 4) & 0xF]; |
| 1959 | trash->area[trash->data++] = hextab[c & 0xF]; |
| 1960 | } |
| 1961 | } |
| 1962 | |
| 1963 | smp->data.u.str = *trash; |
| 1964 | smp->data.type = SMP_T_STR; |
| 1965 | smp->flags &= ~SMP_F_CONST; |
| 1966 | return 1; |
| 1967 | } |
| 1968 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1969 | static int sample_conv_bin2hex(const struct arg *arg_p, struct sample *smp, void *private) |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1970 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1971 | struct buffer *trash = get_trash_chunk(); |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1972 | unsigned char c; |
| 1973 | int ptr = 0; |
| 1974 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1975 | trash->data = 0; |
| 1976 | while (ptr < smp->data.u.str.data && trash->data <= trash->size - 2) { |
| 1977 | c = smp->data.u.str.area[ptr++]; |
| 1978 | trash->area[trash->data++] = hextab[(c >> 4) & 0xF]; |
| 1979 | trash->area[trash->data++] = hextab[c & 0xF]; |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1980 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1981 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1982 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 1983 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1984 | return 1; |
| 1985 | } |
| 1986 | |
Dragan Dosen | 3f957b2 | 2017-10-24 09:27:34 +0200 | [diff] [blame] | 1987 | static int sample_conv_hex2int(const struct arg *arg_p, struct sample *smp, void *private) |
| 1988 | { |
| 1989 | long long int n = 0; |
| 1990 | int i, c; |
| 1991 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1992 | for (i = 0; i < smp->data.u.str.data; i++) { |
| 1993 | if ((c = hex2i(smp->data.u.str.area[i])) < 0) |
Dragan Dosen | 3f957b2 | 2017-10-24 09:27:34 +0200 | [diff] [blame] | 1994 | return 0; |
| 1995 | n = (n << 4) + c; |
| 1996 | } |
| 1997 | |
| 1998 | smp->data.u.sint = n; |
| 1999 | smp->data.type = SMP_T_SINT; |
| 2000 | smp->flags &= ~SMP_F_CONST; |
| 2001 | return 1; |
| 2002 | } |
| 2003 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2004 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2005 | static int sample_conv_djb2(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2006 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2007 | smp->data.u.sint = hash_djb2(smp->data.u.str.area, |
| 2008 | smp->data.u.str.data); |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2009 | if (arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2010 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2011 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2012 | return 1; |
| 2013 | } |
| 2014 | |
Willy Tarreau | 60a2ee7 | 2017-12-15 07:13:48 +0100 | [diff] [blame] | 2015 | static int sample_conv_length(const struct arg *arg_p, struct sample *smp, void *private) |
Etienne Carriere | ed0d24e | 2017-12-13 13:41:34 +0100 | [diff] [blame] | 2016 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2017 | int i = smp->data.u.str.data; |
Etienne Carriere | ed0d24e | 2017-12-13 13:41:34 +0100 | [diff] [blame] | 2018 | smp->data.u.sint = i; |
| 2019 | smp->data.type = SMP_T_SINT; |
| 2020 | return 1; |
| 2021 | } |
| 2022 | |
| 2023 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2024 | static int sample_conv_str2lower(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2025 | { |
| 2026 | int i; |
| 2027 | |
Willy Tarreau | f0645dc | 2016-08-09 14:29:38 +0200 | [diff] [blame] | 2028 | if (!smp_make_rw(smp)) |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 2029 | return 0; |
| 2030 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2031 | for (i = 0; i < smp->data.u.str.data; i++) { |
| 2032 | if ((smp->data.u.str.area[i] >= 'A') && (smp->data.u.str.area[i] <= 'Z')) |
| 2033 | smp->data.u.str.area[i] += 'a' - 'A'; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2034 | } |
| 2035 | return 1; |
| 2036 | } |
| 2037 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2038 | static int sample_conv_str2upper(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2039 | { |
| 2040 | int i; |
| 2041 | |
Willy Tarreau | f0645dc | 2016-08-09 14:29:38 +0200 | [diff] [blame] | 2042 | if (!smp_make_rw(smp)) |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 2043 | return 0; |
| 2044 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2045 | for (i = 0; i < smp->data.u.str.data; i++) { |
| 2046 | if ((smp->data.u.str.area[i] >= 'a') && (smp->data.u.str.area[i] <= 'z')) |
| 2047 | smp->data.u.str.area[i] += 'A' - 'a'; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2048 | } |
| 2049 | return 1; |
| 2050 | } |
| 2051 | |
Tim Duesterhus | 1478aa7 | 2018-01-25 16:24:51 +0100 | [diff] [blame] | 2052 | /* takes the IPv4 mask in args[0] and an optional IPv6 mask in args[1] */ |
| 2053 | static int sample_conv_ipmask(const struct arg *args, struct sample *smp, void *private) |
Willy Tarreau | d31d6eb | 2010-01-26 18:01:41 +0100 | [diff] [blame] | 2054 | { |
Tim Duesterhus | 1478aa7 | 2018-01-25 16:24:51 +0100 | [diff] [blame] | 2055 | /* Attempt to convert to IPv4 to apply the correct mask. */ |
| 2056 | c_ipv62ip(smp); |
| 2057 | |
| 2058 | if (smp->data.type == SMP_T_IPV4) { |
| 2059 | smp->data.u.ipv4.s_addr &= args[0].data.ipv4.s_addr; |
| 2060 | smp->data.type = SMP_T_IPV4; |
| 2061 | } |
| 2062 | else if (smp->data.type == SMP_T_IPV6) { |
| 2063 | /* IPv6 cannot be converted without an IPv6 mask. */ |
| 2064 | if (args[1].type != ARGT_IPV6) |
| 2065 | return 0; |
| 2066 | |
Willy Tarreau | a8b7ecd | 2020-02-25 09:43:22 +0100 | [diff] [blame] | 2067 | write_u64(&smp->data.u.ipv6.s6_addr[0], |
| 2068 | read_u64(&smp->data.u.ipv6.s6_addr[0]) & read_u64(&args[1].data.ipv6.s6_addr[0])); |
| 2069 | write_u64(&smp->data.u.ipv6.s6_addr[8], |
| 2070 | read_u64(&smp->data.u.ipv6.s6_addr[8]) & read_u64(&args[1].data.ipv6.s6_addr[8])); |
Tim Duesterhus | 1478aa7 | 2018-01-25 16:24:51 +0100 | [diff] [blame] | 2071 | smp->data.type = SMP_T_IPV6; |
| 2072 | } |
| 2073 | |
Willy Tarreau | d31d6eb | 2010-01-26 18:01:41 +0100 | [diff] [blame] | 2074 | return 1; |
| 2075 | } |
| 2076 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2077 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 2078 | * adds an optional offset found in args[1] and emits a string representing |
| 2079 | * the local time in the format specified in args[1] using strftime(). |
| 2080 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2081 | static int sample_conv_ltime(const struct arg *args, struct sample *smp, void *private) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2082 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 2083 | struct buffer *temp; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2084 | /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2085 | time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL; |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2086 | struct tm tm; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2087 | |
| 2088 | /* add offset */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2089 | if (args[1].type == ARGT_SINT) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2090 | curr_date += args[1].data.sint; |
| 2091 | |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2092 | get_localtime(curr_date, &tm); |
| 2093 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2094 | temp = get_trash_chunk(); |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2095 | temp->data = strftime(temp->area, temp->size, args[0].data.str.area, &tm); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2096 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2097 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2098 | return 1; |
| 2099 | } |
| 2100 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2101 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2102 | static int sample_conv_sdbm(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2103 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2104 | smp->data.u.sint = hash_sdbm(smp->data.u.str.area, |
| 2105 | smp->data.u.str.data); |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2106 | if (arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2107 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2108 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2109 | return 1; |
| 2110 | } |
| 2111 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2112 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 2113 | * adds an optional offset found in args[1] and emits a string representing |
| 2114 | * the UTC date in the format specified in args[1] using strftime(). |
| 2115 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2116 | static int sample_conv_utime(const struct arg *args, struct sample *smp, void *private) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2117 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 2118 | struct buffer *temp; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2119 | /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2120 | time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL; |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2121 | struct tm tm; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2122 | |
| 2123 | /* add offset */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2124 | if (args[1].type == ARGT_SINT) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2125 | curr_date += args[1].data.sint; |
| 2126 | |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2127 | get_gmtime(curr_date, &tm); |
| 2128 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2129 | temp = get_trash_chunk(); |
Tim Duesterhus | 1f269c1 | 2021-08-28 23:57:01 +0200 | [diff] [blame] | 2130 | temp->data = strftime(temp->area, temp->size, args[0].data.str.area, &tm); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2131 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2132 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 2133 | return 1; |
| 2134 | } |
| 2135 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2136 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2137 | static int sample_conv_wt6(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2138 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2139 | smp->data.u.sint = hash_wt6(smp->data.u.str.area, |
| 2140 | smp->data.u.str.data); |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2141 | if (arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2142 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2143 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 2144 | return 1; |
| 2145 | } |
| 2146 | |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2147 | /* hashes the binary input into a 32-bit unsigned int using xxh. |
| 2148 | * The seed of the hash defaults to 0 but can be changd in argument 1. |
| 2149 | */ |
| 2150 | static int sample_conv_xxh32(const struct arg *arg_p, struct sample *smp, void *private) |
| 2151 | { |
| 2152 | unsigned int seed; |
| 2153 | |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2154 | if (arg_p->data.sint) |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2155 | seed = arg_p->data.sint; |
| 2156 | else |
| 2157 | seed = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2158 | smp->data.u.sint = XXH32(smp->data.u.str.area, smp->data.u.str.data, |
| 2159 | seed); |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2160 | smp->data.type = SMP_T_SINT; |
| 2161 | return 1; |
| 2162 | } |
| 2163 | |
| 2164 | /* hashes the binary input into a 64-bit unsigned int using xxh. |
| 2165 | * In fact, the function returns a 64 bit unsigned, but the sample |
| 2166 | * storage of haproxy only proposes 64-bits signed, so the value is |
| 2167 | * cast as signed. This cast doesn't impact the hash repartition. |
| 2168 | * The seed of the hash defaults to 0 but can be changd in argument 1. |
| 2169 | */ |
| 2170 | static int sample_conv_xxh64(const struct arg *arg_p, struct sample *smp, void *private) |
| 2171 | { |
| 2172 | unsigned long long int seed; |
| 2173 | |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2174 | if (arg_p->data.sint) |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2175 | seed = (unsigned long long int)arg_p->data.sint; |
| 2176 | else |
| 2177 | seed = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2178 | smp->data.u.sint = (long long int)XXH64(smp->data.u.str.area, |
| 2179 | smp->data.u.str.data, seed); |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2180 | smp->data.type = SMP_T_SINT; |
| 2181 | return 1; |
| 2182 | } |
| 2183 | |
Dragan Dosen | 04bf0cc | 2020-12-22 21:44:33 +0100 | [diff] [blame] | 2184 | static int sample_conv_xxh3(const struct arg *arg_p, struct sample *smp, void *private) |
| 2185 | { |
| 2186 | unsigned long long int seed; |
| 2187 | |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2188 | if (arg_p->data.sint) |
Dragan Dosen | 04bf0cc | 2020-12-22 21:44:33 +0100 | [diff] [blame] | 2189 | seed = (unsigned long long int)arg_p->data.sint; |
| 2190 | else |
| 2191 | seed = 0; |
| 2192 | smp->data.u.sint = (long long int)XXH3(smp->data.u.str.area, |
| 2193 | smp->data.u.str.data, seed); |
| 2194 | smp->data.type = SMP_T_SINT; |
| 2195 | return 1; |
| 2196 | } |
| 2197 | |
Willy Tarreau | 8059977 | 2015-01-20 19:35:24 +0100 | [diff] [blame] | 2198 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2199 | static int sample_conv_crc32(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 8059977 | 2015-01-20 19:35:24 +0100 | [diff] [blame] | 2200 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2201 | smp->data.u.sint = hash_crc32(smp->data.u.str.area, |
| 2202 | smp->data.u.str.data); |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2203 | if (arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2204 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2205 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 8059977 | 2015-01-20 19:35:24 +0100 | [diff] [blame] | 2206 | return 1; |
| 2207 | } |
| 2208 | |
Emmanuel Hocdet | 50791a7 | 2018-03-21 11:19:01 +0100 | [diff] [blame] | 2209 | /* hashes the binary input into crc32c (RFC4960, Appendix B [8].) */ |
| 2210 | static int sample_conv_crc32c(const struct arg *arg_p, struct sample *smp, void *private) |
| 2211 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2212 | smp->data.u.sint = hash_crc32c(smp->data.u.str.area, |
| 2213 | smp->data.u.str.data); |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2214 | if (arg_p->data.sint) |
Emmanuel Hocdet | 50791a7 | 2018-03-21 11:19:01 +0100 | [diff] [blame] | 2215 | smp->data.u.sint = full_hash(smp->data.u.sint); |
| 2216 | smp->data.type = SMP_T_SINT; |
| 2217 | return 1; |
| 2218 | } |
| 2219 | |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2220 | /* This function escape special json characters. The returned string can be |
| 2221 | * safely set between two '"' and used as json string. The json string is |
| 2222 | * defined like this: |
| 2223 | * |
| 2224 | * any Unicode character except '"' or '\' or control character |
| 2225 | * \", \\, \/, \b, \f, \n, \r, \t, \u + four-hex-digits |
| 2226 | * |
| 2227 | * The enum input_type contain all the allowed mode for decoding the input |
| 2228 | * string. |
| 2229 | */ |
| 2230 | enum input_type { |
| 2231 | IT_ASCII = 0, |
| 2232 | IT_UTF8, |
| 2233 | IT_UTF8S, |
| 2234 | IT_UTF8P, |
| 2235 | IT_UTF8PS, |
| 2236 | }; |
William Dauchy | 5417e89 | 2021-01-08 21:57:41 +0100 | [diff] [blame] | 2237 | |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2238 | static int sample_conv_json_check(struct arg *arg, struct sample_conv *conv, |
| 2239 | const char *file, int line, char **err) |
| 2240 | { |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2241 | enum input_type type; |
| 2242 | |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2243 | if (strcmp(arg->data.str.area, "") == 0) |
| 2244 | type = IT_ASCII; |
| 2245 | else if (strcmp(arg->data.str.area, "ascii") == 0) |
| 2246 | type = IT_ASCII; |
| 2247 | else if (strcmp(arg->data.str.area, "utf8") == 0) |
| 2248 | type = IT_UTF8; |
| 2249 | else if (strcmp(arg->data.str.area, "utf8s") == 0) |
| 2250 | type = IT_UTF8S; |
| 2251 | else if (strcmp(arg->data.str.area, "utf8p") == 0) |
| 2252 | type = IT_UTF8P; |
| 2253 | else if (strcmp(arg->data.str.area, "utf8ps") == 0) |
| 2254 | type = IT_UTF8PS; |
| 2255 | else { |
| 2256 | memprintf(err, "Unexpected input code type. " |
| 2257 | "Allowed value are 'ascii', 'utf8', 'utf8s', 'utf8p' and 'utf8ps'"); |
| 2258 | return 0; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2259 | } |
| 2260 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 2261 | chunk_destroy(&arg->data.str); |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2262 | arg->type = ARGT_SINT; |
| 2263 | arg->data.sint = type; |
| 2264 | return 1; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2265 | } |
| 2266 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2267 | static int sample_conv_json(const struct arg *arg_p, struct sample *smp, void *private) |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2268 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 2269 | struct buffer *temp; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2270 | char _str[7]; /* \u + 4 hex digit + null char for sprintf. */ |
| 2271 | const char *str; |
| 2272 | int len; |
| 2273 | enum input_type input_type = IT_ASCII; |
| 2274 | unsigned int c; |
| 2275 | unsigned int ret; |
| 2276 | char *p; |
| 2277 | |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 2278 | input_type = arg_p->data.sint; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2279 | |
| 2280 | temp = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2281 | temp->data = 0; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2282 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2283 | p = smp->data.u.str.area; |
| 2284 | while (p < smp->data.u.str.area + smp->data.u.str.data) { |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2285 | |
| 2286 | if (input_type == IT_ASCII) { |
| 2287 | /* Read input as ASCII. */ |
| 2288 | c = *(unsigned char *)p; |
| 2289 | p++; |
| 2290 | } |
| 2291 | else { |
| 2292 | /* Read input as UTF8. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2293 | ret = utf8_next(p, |
| 2294 | smp->data.u.str.data - ( p - smp->data.u.str.area), |
| 2295 | &c); |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2296 | p += utf8_return_length(ret); |
| 2297 | |
| 2298 | if (input_type == IT_UTF8 && utf8_return_code(ret) != UTF8_CODE_OK) |
| 2299 | return 0; |
| 2300 | if (input_type == IT_UTF8S && utf8_return_code(ret) != UTF8_CODE_OK) |
| 2301 | continue; |
| 2302 | if (input_type == IT_UTF8P && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ)) |
| 2303 | return 0; |
| 2304 | if (input_type == IT_UTF8PS && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ)) |
| 2305 | continue; |
| 2306 | |
| 2307 | /* Check too big values. */ |
| 2308 | if ((unsigned int)c > 0xffff) { |
| 2309 | if (input_type == IT_UTF8 || input_type == IT_UTF8P) |
| 2310 | return 0; |
| 2311 | continue; |
| 2312 | } |
| 2313 | } |
| 2314 | |
| 2315 | /* Convert character. */ |
| 2316 | if (c == '"') { |
| 2317 | len = 2; |
| 2318 | str = "\\\""; |
| 2319 | } |
| 2320 | else if (c == '\\') { |
| 2321 | len = 2; |
| 2322 | str = "\\\\"; |
| 2323 | } |
| 2324 | else if (c == '/') { |
| 2325 | len = 2; |
| 2326 | str = "\\/"; |
| 2327 | } |
| 2328 | else if (c == '\b') { |
| 2329 | len = 2; |
| 2330 | str = "\\b"; |
| 2331 | } |
| 2332 | else if (c == '\f') { |
| 2333 | len = 2; |
| 2334 | str = "\\f"; |
| 2335 | } |
| 2336 | else if (c == '\r') { |
| 2337 | len = 2; |
| 2338 | str = "\\r"; |
| 2339 | } |
| 2340 | else if (c == '\n') { |
| 2341 | len = 2; |
| 2342 | str = "\\n"; |
| 2343 | } |
| 2344 | else if (c == '\t') { |
| 2345 | len = 2; |
| 2346 | str = "\\t"; |
| 2347 | } |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 2348 | else if (c > 0xff || !isprint((unsigned char)c)) { |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2349 | /* isprint generate a segfault if c is too big. The man says that |
| 2350 | * c must have the value of an unsigned char or EOF. |
| 2351 | */ |
| 2352 | len = 6; |
| 2353 | _str[0] = '\\'; |
| 2354 | _str[1] = 'u'; |
| 2355 | snprintf(&_str[2], 5, "%04x", (unsigned short)c); |
| 2356 | str = _str; |
| 2357 | } |
| 2358 | else { |
| 2359 | len = 1; |
Willy Tarreau | 5715da2 | 2020-02-25 08:37:37 +0100 | [diff] [blame] | 2360 | _str[0] = c; |
| 2361 | str = _str; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2362 | } |
| 2363 | |
| 2364 | /* Check length */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2365 | if (temp->data + len > temp->size) |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2366 | return 0; |
| 2367 | |
| 2368 | /* Copy string. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2369 | memcpy(temp->area + temp->data, str, len); |
| 2370 | temp->data += len; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2374 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2375 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2376 | |
| 2377 | return 1; |
| 2378 | } |
| 2379 | |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 2380 | /* This sample function is designed to extract some bytes from an input buffer. |
| 2381 | * First arg is the offset. |
| 2382 | * Optional second arg is the length to truncate */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2383 | static int sample_conv_bytes(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 2384 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2385 | if (smp->data.u.str.data <= arg_p[0].data.sint) { |
| 2386 | smp->data.u.str.data = 0; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 2387 | return 1; |
| 2388 | } |
| 2389 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2390 | if (smp->data.u.str.size) |
| 2391 | smp->data.u.str.size -= arg_p[0].data.sint; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2392 | smp->data.u.str.data -= arg_p[0].data.sint; |
| 2393 | smp->data.u.str.area += arg_p[0].data.sint; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 2394 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2395 | if ((arg_p[1].type == ARGT_SINT) && (arg_p[1].data.sint < smp->data.u.str.data)) |
| 2396 | smp->data.u.str.data = arg_p[1].data.sint; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 2397 | |
| 2398 | return 1; |
| 2399 | } |
| 2400 | |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2401 | static int sample_conv_field_check(struct arg *args, struct sample_conv *conv, |
| 2402 | const char *file, int line, char **err) |
| 2403 | { |
| 2404 | struct arg *arg = args; |
| 2405 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2406 | if (arg->type != ARGT_SINT) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2407 | memprintf(err, "Unexpected arg type"); |
| 2408 | return 0; |
| 2409 | } |
| 2410 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2411 | if (!arg->data.sint) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2412 | memprintf(err, "Unexpected value 0 for index"); |
| 2413 | return 0; |
| 2414 | } |
| 2415 | |
| 2416 | arg++; |
| 2417 | |
| 2418 | if (arg->type != ARGT_STR) { |
| 2419 | memprintf(err, "Unexpected arg type"); |
| 2420 | return 0; |
| 2421 | } |
| 2422 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2423 | if (!arg->data.str.data) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2424 | memprintf(err, "Empty separators list"); |
| 2425 | return 0; |
| 2426 | } |
| 2427 | |
| 2428 | return 1; |
| 2429 | } |
| 2430 | |
| 2431 | /* This sample function is designed to a return selected part of a string (field). |
| 2432 | * First arg is the index of the field (start at 1) |
| 2433 | * Second arg is a char list of separators (type string) |
| 2434 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2435 | static int sample_conv_field(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2436 | { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2437 | int field; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2438 | char *start, *end; |
| 2439 | int i; |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2440 | int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2441 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2442 | if (!arg_p[0].data.sint) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2443 | return 0; |
| 2444 | |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2445 | if (arg_p[0].data.sint < 0) { |
| 2446 | field = -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2447 | end = start = smp->data.u.str.area + smp->data.u.str.data; |
| 2448 | while (start > smp->data.u.str.area) { |
| 2449 | for (i = 0 ; i < arg_p[1].data.str.data; i++) { |
| 2450 | if (*(start-1) == arg_p[1].data.str.area[i]) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2451 | if (field == arg_p[0].data.sint) { |
| 2452 | if (count == 1) |
| 2453 | goto found; |
| 2454 | else if (count > 1) |
| 2455 | count--; |
| 2456 | } else { |
| 2457 | end = start-1; |
| 2458 | field--; |
| 2459 | } |
| 2460 | break; |
| 2461 | } |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2462 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2463 | start--; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2464 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2465 | } else { |
| 2466 | field = 1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2467 | end = start = smp->data.u.str.area; |
| 2468 | while (end - smp->data.u.str.area < smp->data.u.str.data) { |
| 2469 | for (i = 0 ; i < arg_p[1].data.str.data; i++) { |
| 2470 | if (*end == arg_p[1].data.str.area[i]) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2471 | if (field == arg_p[0].data.sint) { |
| 2472 | if (count == 1) |
| 2473 | goto found; |
| 2474 | else if (count > 1) |
| 2475 | count--; |
| 2476 | } else { |
| 2477 | start = end+1; |
| 2478 | field++; |
| 2479 | } |
| 2480 | break; |
| 2481 | } |
| 2482 | } |
| 2483 | end++; |
| 2484 | } |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2485 | } |
| 2486 | |
| 2487 | /* Field not found */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2488 | if (field != arg_p[0].data.sint) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2489 | smp->data.u.str.data = 0; |
Tim Duesterhus | 4381d26 | 2019-10-16 15:11:15 +0200 | [diff] [blame] | 2490 | return 0; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2491 | } |
| 2492 | found: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2493 | smp->data.u.str.data = end - start; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2494 | /* If ret string is len 0, no need to |
| 2495 | change pointers or to update size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2496 | if (!smp->data.u.str.data) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2497 | return 1; |
| 2498 | |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2499 | /* Compute remaining size if needed |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2500 | Note: smp->data.u.str.size cannot be set to 0 */ |
| 2501 | if (smp->data.u.str.size) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2502 | smp->data.u.str.size -= start - smp->data.u.str.area; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2503 | |
Thayne McCombs | b284305 | 2021-04-11 23:26:59 -0600 | [diff] [blame] | 2504 | smp->data.u.str.area = start; |
| 2505 | |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2506 | return 1; |
| 2507 | } |
| 2508 | |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2509 | /* This sample function is designed to return a word from a string. |
| 2510 | * First arg is the index of the word (start at 1) |
| 2511 | * Second arg is a char list of words separators (type string) |
| 2512 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2513 | static int sample_conv_word(const struct arg *arg_p, struct sample *smp, void *private) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2514 | { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2515 | int word; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2516 | char *start, *end; |
| 2517 | int i, issep, inword; |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2518 | int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2519 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2520 | if (!arg_p[0].data.sint) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2521 | return 0; |
| 2522 | |
| 2523 | word = 0; |
| 2524 | inword = 0; |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2525 | if (arg_p[0].data.sint < 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2526 | end = start = smp->data.u.str.area + smp->data.u.str.data; |
| 2527 | while (start > smp->data.u.str.area) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2528 | issep = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2529 | for (i = 0 ; i < arg_p[1].data.str.data; i++) { |
| 2530 | if (*(start-1) == arg_p[1].data.str.area[i]) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2531 | issep = 1; |
| 2532 | break; |
| 2533 | } |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2534 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2535 | if (!inword) { |
| 2536 | if (!issep) { |
| 2537 | if (word != arg_p[0].data.sint) { |
| 2538 | word--; |
| 2539 | end = start; |
| 2540 | } |
| 2541 | inword = 1; |
| 2542 | } |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2543 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2544 | else if (issep) { |
Willy Tarreau | 9eb2a4a | 2018-04-19 10:33:28 +0200 | [diff] [blame] | 2545 | if (word == arg_p[0].data.sint) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2546 | if (count == 1) |
| 2547 | goto found; |
| 2548 | else if (count > 1) |
| 2549 | count--; |
Willy Tarreau | 9eb2a4a | 2018-04-19 10:33:28 +0200 | [diff] [blame] | 2550 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2551 | inword = 0; |
| 2552 | } |
| 2553 | start--; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2554 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2555 | } else { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2556 | end = start = smp->data.u.str.area; |
| 2557 | while (end - smp->data.u.str.area < smp->data.u.str.data) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2558 | issep = 0; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2559 | for (i = 0 ; i < arg_p[1].data.str.data; i++) { |
| 2560 | if (*end == arg_p[1].data.str.area[i]) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2561 | issep = 1; |
| 2562 | break; |
| 2563 | } |
| 2564 | } |
| 2565 | if (!inword) { |
| 2566 | if (!issep) { |
| 2567 | if (word != arg_p[0].data.sint) { |
| 2568 | word++; |
| 2569 | start = end; |
| 2570 | } |
| 2571 | inword = 1; |
| 2572 | } |
| 2573 | } |
| 2574 | else if (issep) { |
Willy Tarreau | 9eb2a4a | 2018-04-19 10:33:28 +0200 | [diff] [blame] | 2575 | if (word == arg_p[0].data.sint) { |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2576 | if (count == 1) |
| 2577 | goto found; |
| 2578 | else if (count > 1) |
| 2579 | count--; |
Willy Tarreau | 9eb2a4a | 2018-04-19 10:33:28 +0200 | [diff] [blame] | 2580 | } |
Marcin Deranek | 9631a28 | 2018-04-16 14:30:46 +0200 | [diff] [blame] | 2581 | inword = 0; |
| 2582 | } |
| 2583 | end++; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2584 | } |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2585 | } |
| 2586 | |
| 2587 | /* Field not found */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2588 | if (word != arg_p[0].data.sint) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2589 | smp->data.u.str.data = 0; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2590 | return 1; |
| 2591 | } |
| 2592 | found: |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2593 | smp->data.u.str.data = end - start; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2594 | /* If ret string is len 0, no need to |
| 2595 | change pointers or to update size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2596 | if (!smp->data.u.str.data) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2597 | return 1; |
| 2598 | |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2599 | |
| 2600 | /* Compute remaining size if needed |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2601 | Note: smp->data.u.str.size cannot be set to 0 */ |
| 2602 | if (smp->data.u.str.size) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2603 | smp->data.u.str.size -= start - smp->data.u.str.area; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2604 | |
Thayne McCombs | 6a0d217 | 2022-05-25 22:58:51 -0600 | [diff] [blame] | 2605 | smp->data.u.str.area = start; |
| 2606 | |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2607 | return 1; |
| 2608 | } |
| 2609 | |
Thayne McCombs | 02cf4ec | 2022-12-14 00:19:59 -0700 | [diff] [blame] | 2610 | static int sample_conv_param_check(struct arg *arg, struct sample_conv *conv, |
| 2611 | const char *file, int line, char **err) |
| 2612 | { |
| 2613 | if (arg[1].type == ARGT_STR && arg[1].data.str.data != 1) { |
| 2614 | memprintf(err, "Delimiter must be exactly 1 character."); |
| 2615 | return 0; |
| 2616 | } |
| 2617 | |
| 2618 | return 1; |
| 2619 | } |
| 2620 | |
| 2621 | static int sample_conv_param(const struct arg *arg_p, struct sample *smp, void *private) |
| 2622 | { |
| 2623 | char *pos, *end, *pend, *equal; |
| 2624 | char delim = '&'; |
| 2625 | const char *name = arg_p[0].data.str.area; |
| 2626 | size_t name_l = arg_p[0].data.str.data; |
| 2627 | |
| 2628 | if (arg_p[1].type == ARGT_STR) |
| 2629 | delim = *arg_p[1].data.str.area; |
| 2630 | |
| 2631 | pos = smp->data.u.str.area; |
| 2632 | end = pos + smp->data.u.str.data; |
| 2633 | while (pos < end) { |
| 2634 | equal = pos + name_l; |
| 2635 | /* Parameter not found */ |
| 2636 | if (equal > end) |
| 2637 | break; |
| 2638 | |
| 2639 | if (equal == end || *equal == delim) { |
| 2640 | if (memcmp(pos, name, name_l) == 0) { |
| 2641 | /* input contains parameter, but no value is supplied */ |
| 2642 | smp->data.u.str.data = 0; |
| 2643 | return 1; |
| 2644 | } |
| 2645 | pos = equal + 1; |
| 2646 | continue; |
| 2647 | } |
| 2648 | |
| 2649 | if (*equal == '=' && memcmp(pos, name, name_l) == 0) { |
| 2650 | pos = equal + 1; |
| 2651 | pend = memchr(pos, delim, end - pos); |
| 2652 | if (pend == NULL) |
| 2653 | pend = end; |
| 2654 | |
| 2655 | if (smp->data.u.str.size) |
| 2656 | smp->data.u.str.size -= pos - smp->data.u.str.area; |
| 2657 | smp->data.u.str.area = pos; |
| 2658 | smp->data.u.str.data = pend - pos; |
| 2659 | return 1; |
| 2660 | } |
| 2661 | /* find the next delimiter and set position to character after that */ |
| 2662 | pos = memchr(pos, delim, end - pos); |
| 2663 | if (pos == NULL) |
| 2664 | pos = end; |
| 2665 | else |
| 2666 | pos++; |
| 2667 | } |
| 2668 | /* Parameter not found */ |
| 2669 | smp->data.u.str.data = 0; |
| 2670 | return 0; |
| 2671 | } |
| 2672 | |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2673 | static int sample_conv_regsub_check(struct arg *args, struct sample_conv *conv, |
| 2674 | const char *file, int line, char **err) |
| 2675 | { |
| 2676 | struct arg *arg = args; |
| 2677 | char *p; |
| 2678 | int len; |
| 2679 | |
| 2680 | /* arg0 is a regex, it uses type_flag for ICASE and global match */ |
| 2681 | arg[0].type_flags = 0; |
| 2682 | |
| 2683 | if (arg[2].type != ARGT_STR) |
| 2684 | return 1; |
| 2685 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2686 | p = arg[2].data.str.area; |
| 2687 | len = arg[2].data.str.data; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2688 | while (len) { |
| 2689 | if (*p == 'i') { |
| 2690 | arg[0].type_flags |= ARGF_REG_ICASE; |
| 2691 | } |
| 2692 | else if (*p == 'g') { |
| 2693 | arg[0].type_flags |= ARGF_REG_GLOB; |
| 2694 | } |
| 2695 | else { |
| 2696 | memprintf(err, "invalid regex flag '%c', only 'i' and 'g' are supported", *p); |
| 2697 | return 0; |
| 2698 | } |
| 2699 | p++; |
| 2700 | len--; |
| 2701 | } |
| 2702 | return 1; |
| 2703 | } |
| 2704 | |
| 2705 | /* This sample function is designed to do the equivalent of s/match/replace/ on |
| 2706 | * the input string. It applies a regex and restarts from the last matched |
| 2707 | * location until nothing matches anymore. First arg is the regex to apply to |
| 2708 | * the input string, second arg is the replacement expression. |
| 2709 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2710 | static int sample_conv_regsub(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2711 | { |
| 2712 | char *start, *end; |
| 2713 | struct my_regex *reg = arg_p[0].data.reg; |
| 2714 | regmatch_t pmatch[MAX_MATCH]; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 2715 | struct buffer *trash = get_trash_chunk(); |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2716 | struct buffer *output; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2717 | int flag, max; |
| 2718 | int found; |
| 2719 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2720 | start = smp->data.u.str.area; |
| 2721 | end = start + smp->data.u.str.data; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2722 | |
| 2723 | flag = 0; |
| 2724 | while (1) { |
| 2725 | /* check for last round which is used to copy remaining parts |
| 2726 | * when not running in global replacement mode. |
| 2727 | */ |
| 2728 | found = 0; |
| 2729 | if ((arg_p[0].type_flags & ARGF_REG_GLOB) || !(flag & REG_NOTBOL)) { |
| 2730 | /* Note: we can have start == end on empty strings or at the end */ |
| 2731 | found = regex_exec_match2(reg, start, end - start, MAX_MATCH, pmatch, flag); |
| 2732 | } |
| 2733 | |
| 2734 | if (!found) |
| 2735 | pmatch[0].rm_so = end - start; |
| 2736 | |
| 2737 | /* copy the heading non-matching part (which may also be the tail if nothing matches) */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2738 | max = trash->size - trash->data; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2739 | if (max && pmatch[0].rm_so > 0) { |
| 2740 | if (max > pmatch[0].rm_so) |
| 2741 | max = pmatch[0].rm_so; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2742 | memcpy(trash->area + trash->data, start, max); |
| 2743 | trash->data += max; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2744 | } |
| 2745 | |
| 2746 | if (!found) |
| 2747 | break; |
| 2748 | |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2749 | output = alloc_trash_chunk(); |
Willy Tarreau | 23997da | 2020-02-18 14:27:44 +0100 | [diff] [blame] | 2750 | if (!output) |
| 2751 | break; |
| 2752 | |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2753 | output->data = exp_replace(output->area, output->size, start, arg_p[1].data.str.area, pmatch); |
| 2754 | |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2755 | /* replace the matching part */ |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2756 | max = output->size - output->data; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2757 | if (max) { |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2758 | if (max > output->data) |
| 2759 | max = output->data; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2760 | memcpy(trash->area + trash->data, |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2761 | output->area, max); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2762 | trash->data += max; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2763 | } |
| 2764 | |
Jerome Magnin | 07e1e3c | 2020-02-16 19:20:19 +0100 | [diff] [blame] | 2765 | free_trash_chunk(output); |
| 2766 | |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2767 | /* stop here if we're done with this string */ |
| 2768 | if (start >= end) |
| 2769 | break; |
| 2770 | |
| 2771 | /* We have a special case for matches of length 0 (eg: "x*y*"). |
| 2772 | * These ones are considered to match in front of a character, |
| 2773 | * so we have to copy that character and skip to the next one. |
| 2774 | */ |
| 2775 | if (!pmatch[0].rm_eo) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2776 | if (trash->data < trash->size) |
| 2777 | trash->area[trash->data++] = start[pmatch[0].rm_eo]; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2778 | pmatch[0].rm_eo++; |
| 2779 | } |
| 2780 | |
| 2781 | start += pmatch[0].rm_eo; |
| 2782 | flag |= REG_NOTBOL; |
| 2783 | } |
| 2784 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2785 | smp->data.u.str = *trash; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2786 | return 1; |
| 2787 | } |
| 2788 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2789 | /* This function check an operator entry. It expects a string. |
| 2790 | * The string can be an integer or a variable name. |
| 2791 | */ |
| 2792 | static int check_operator(struct arg *args, struct sample_conv *conv, |
| 2793 | const char *file, int line, char **err) |
| 2794 | { |
| 2795 | const char *str; |
| 2796 | const char *end; |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2797 | long long int i; |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2798 | |
| 2799 | /* Try to decode a variable. */ |
| 2800 | if (vars_check_arg(&args[0], NULL)) |
| 2801 | return 1; |
| 2802 | |
| 2803 | /* Try to convert an integer */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2804 | str = args[0].data.str.area; |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2805 | end = str + strlen(str); |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2806 | i = read_int64(&str, end); |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2807 | if (*str != '\0') { |
| 2808 | memprintf(err, "expects an integer or a variable name"); |
| 2809 | return 0; |
| 2810 | } |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2811 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 2812 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2813 | args[0].type = ARGT_SINT; |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 2814 | args[0].data.sint = i; |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2815 | return 1; |
| 2816 | } |
| 2817 | |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2818 | /* This function returns a sample struct filled with an arg content. |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2819 | * If the arg contain an integer, the integer is returned in the |
| 2820 | * sample. If the arg contains a variable descriptor, it returns the |
| 2821 | * variable value. |
| 2822 | * |
| 2823 | * This function returns 0 if an error occurs, otherwise it returns 1. |
| 2824 | */ |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2825 | int sample_conv_var2smp_sint(const struct arg *arg, struct sample *smp) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2826 | { |
| 2827 | switch (arg->type) { |
| 2828 | case ARGT_SINT: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2829 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2830 | smp->data.u.sint = arg->data.sint; |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2831 | return 1; |
| 2832 | case ARGT_VAR: |
Willy Tarreau | 2476ff1 | 2021-10-06 15:30:52 +0200 | [diff] [blame] | 2833 | return sample_conv_var2smp(&arg->data.var, smp, SMP_T_SINT); |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2834 | default: |
| 2835 | return 0; |
| 2836 | } |
| 2837 | } |
| 2838 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2839 | /* Takes a SINT on input, applies a binary twos complement and returns the SINT |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2840 | * result. |
| 2841 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2842 | static int sample_conv_binary_cpl(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2843 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2844 | smp->data.u.sint = ~smp->data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2845 | return 1; |
| 2846 | } |
| 2847 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2848 | /* Takes a SINT on input, applies a binary "and" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2849 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2850 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2851 | static int sample_conv_binary_and(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2852 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2853 | struct sample tmp; |
| 2854 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2855 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2856 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2857 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2858 | smp->data.u.sint &= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2859 | return 1; |
| 2860 | } |
| 2861 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2862 | /* Takes a SINT on input, applies a binary "or" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2863 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2864 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2865 | static int sample_conv_binary_or(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2866 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2867 | struct sample tmp; |
| 2868 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2869 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2870 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2871 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2872 | smp->data.u.sint |= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2873 | return 1; |
| 2874 | } |
| 2875 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2876 | /* Takes a SINT on input, applies a binary "xor" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2877 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2878 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2879 | static int sample_conv_binary_xor(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2880 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2881 | struct sample tmp; |
| 2882 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2883 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2884 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2885 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2886 | smp->data.u.sint ^= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2887 | return 1; |
| 2888 | } |
| 2889 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2890 | static inline long long int arith_add(long long int a, long long int b) |
| 2891 | { |
| 2892 | /* Prevent overflow and makes capped calculus. |
| 2893 | * We must ensure that the check calculus doesn't |
| 2894 | * exceed the signed 64 bits limits. |
| 2895 | * |
| 2896 | * +----------+----------+ |
| 2897 | * | a<0 | a>=0 | |
| 2898 | * +------+----------+----------+ |
| 2899 | * | b<0 | MIN-a>b | no check | |
| 2900 | * +------+----------+----------+ |
| 2901 | * | b>=0 | no check | MAX-a<b | |
| 2902 | * +------+----------+----------+ |
| 2903 | */ |
| 2904 | if ((a ^ b) >= 0) { |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 2905 | /* signs are different. */ |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2906 | if (a < 0) { |
| 2907 | if (LLONG_MIN - a > b) |
| 2908 | return LLONG_MIN; |
| 2909 | } |
| 2910 | if (LLONG_MAX - a < b) |
| 2911 | return LLONG_MAX; |
| 2912 | } |
| 2913 | return a + b; |
| 2914 | } |
| 2915 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2916 | /* Takes a SINT on input, applies an arithmetic "add" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2917 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2918 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2919 | static int sample_conv_arith_add(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2920 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2921 | struct sample tmp; |
| 2922 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2923 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2924 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2925 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2926 | smp->data.u.sint = arith_add(smp->data.u.sint, tmp.data.u.sint); |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2927 | return 1; |
| 2928 | } |
| 2929 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2930 | /* Takes a SINT on input, applies an arithmetic "sub" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2931 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2932 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2933 | static int sample_conv_arith_sub(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2934 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2935 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2936 | struct sample tmp; |
| 2937 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2938 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2939 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2940 | return 0; |
| 2941 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2942 | /* We cannot represent -LLONG_MIN because abs(LLONG_MIN) is greater |
| 2943 | * than abs(LLONG_MAX). So, the following code use LLONG_MAX in place |
| 2944 | * of -LLONG_MIN and correct the result. |
| 2945 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2946 | if (tmp.data.u.sint == LLONG_MIN) { |
| 2947 | smp->data.u.sint = arith_add(smp->data.u.sint, LLONG_MAX); |
| 2948 | if (smp->data.u.sint < LLONG_MAX) |
| 2949 | smp->data.u.sint++; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2950 | return 1; |
| 2951 | } |
| 2952 | |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2953 | /* standard subtraction: we use the "add" function and negate |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2954 | * the second operand. |
| 2955 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2956 | smp->data.u.sint = arith_add(smp->data.u.sint, -tmp.data.u.sint); |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2957 | return 1; |
| 2958 | } |
| 2959 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2960 | /* Takes a SINT on input, applies an arithmetic "mul" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 2961 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2962 | * If the result makes an overflow, then the largest possible quantity is |
| 2963 | * returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2964 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2965 | static int sample_conv_arith_mul(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2966 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2967 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2968 | struct sample tmp; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2969 | long long int c; |
| 2970 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2971 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 2972 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2973 | return 0; |
| 2974 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2975 | /* prevent divide by 0 during the check */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2976 | if (!smp->data.u.sint || !tmp.data.u.sint) { |
| 2977 | smp->data.u.sint = 0; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2978 | return 1; |
| 2979 | } |
| 2980 | |
| 2981 | /* The multiply between LLONG_MIN and -1 returns a |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 2982 | * "floating point exception". |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2983 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2984 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 2985 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2986 | return 1; |
| 2987 | } |
| 2988 | |
| 2989 | /* execute standard multiplication. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2990 | c = smp->data.u.sint * tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2991 | |
| 2992 | /* check for overflow and makes capped multiply. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2993 | if (smp->data.u.sint != c / tmp.data.u.sint) { |
| 2994 | if ((smp->data.u.sint < 0) == (tmp.data.u.sint < 0)) { |
| 2995 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2996 | return 1; |
| 2997 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2998 | smp->data.u.sint = LLONG_MIN; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2999 | return 1; |
| 3000 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3001 | smp->data.u.sint = c; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3002 | return 1; |
| 3003 | } |
| 3004 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3005 | /* Takes a SINT on input, applies an arithmetic "div" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 3006 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3007 | * If arg_p makes the result overflow, then the largest possible quantity is |
| 3008 | * returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3009 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3010 | static int sample_conv_arith_div(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3011 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3012 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3013 | struct sample tmp; |
| 3014 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 3015 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 3016 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3017 | return 0; |
| 3018 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3019 | if (tmp.data.u.sint) { |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3020 | /* The divide between LLONG_MIN and -1 returns a |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 3021 | * "floating point exception". |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3022 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3023 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 3024 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3025 | return 1; |
| 3026 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3027 | smp->data.u.sint /= tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3028 | return 1; |
| 3029 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3030 | smp->data.u.sint = LLONG_MAX; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3031 | return 1; |
| 3032 | } |
| 3033 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3034 | /* Takes a SINT on input, applies an arithmetic "mod" with the SINT directly in |
Joseph Herlant | 757f5ad | 2018-11-15 12:14:56 -0800 | [diff] [blame] | 3035 | * arg_p or in the variable described in arg_p, and returns the SINT result. |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3036 | * If arg_p makes the result overflow, then 0 is returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3037 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3038 | static int sample_conv_arith_mod(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3039 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3040 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3041 | struct sample tmp; |
| 3042 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 3043 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | d9be599 | 2021-10-06 15:19:05 +0200 | [diff] [blame] | 3044 | if (!sample_conv_var2smp_sint(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 3045 | return 0; |
| 3046 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3047 | if (tmp.data.u.sint) { |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3048 | /* The divide between LLONG_MIN and -1 returns a |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 3049 | * "floating point exception". |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3050 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3051 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 3052 | smp->data.u.sint = 0; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3053 | return 1; |
| 3054 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3055 | smp->data.u.sint %= tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3056 | return 1; |
| 3057 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3058 | smp->data.u.sint = 0; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3059 | return 1; |
| 3060 | } |
| 3061 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 3062 | /* Takes an SINT on input, applies an arithmetic "neg" and returns the SINT |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3063 | * result. |
| 3064 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3065 | static int sample_conv_arith_neg(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3066 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3067 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3068 | if (smp->data.u.sint == LLONG_MIN) |
| 3069 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 3070 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3071 | smp->data.u.sint = -smp->data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3072 | return 1; |
| 3073 | } |
| 3074 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 3075 | /* Takes a SINT on input, returns true is the value is non-null, otherwise |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3076 | * false. The output is a BOOL. |
| 3077 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3078 | static int sample_conv_arith_bool(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3079 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3080 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3081 | smp->data.u.sint = !!smp->data.u.sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3082 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3083 | return 1; |
| 3084 | } |
| 3085 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 3086 | /* Takes a SINT on input, returns false is the value is non-null, otherwise |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3087 | * truee. The output is a BOOL. |
| 3088 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3089 | static int sample_conv_arith_not(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3090 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3091 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3092 | smp->data.u.sint = !smp->data.u.sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3093 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3094 | return 1; |
| 3095 | } |
| 3096 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 3097 | /* Takes a SINT on input, returns true is the value is odd, otherwise false. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3098 | * The output is a BOOL. |
| 3099 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3100 | static int sample_conv_arith_odd(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3101 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3102 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3103 | smp->data.u.sint = smp->data.u.sint & 1; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3104 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3105 | return 1; |
| 3106 | } |
| 3107 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 3108 | /* Takes a SINT on input, returns true is the value is even, otherwise false. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3109 | * The output is a BOOL. |
| 3110 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3111 | static int sample_conv_arith_even(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 3112 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3113 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3114 | smp->data.u.sint = !(smp->data.u.sint & 1); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3115 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 3116 | return 1; |
| 3117 | } |
| 3118 | |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3119 | /* appends an optional const string, an optional variable contents and another |
| 3120 | * optional const string to an existing string. |
| 3121 | */ |
| 3122 | static int sample_conv_concat(const struct arg *arg_p, struct sample *smp, void *private) |
| 3123 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3124 | struct buffer *trash; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3125 | struct sample tmp; |
| 3126 | int max; |
| 3127 | |
Willy Tarreau | 591fc3a | 2021-01-08 16:08:43 +0100 | [diff] [blame] | 3128 | trash = alloc_trash_chunk(); |
William Dauchy | e997010 | 2021-01-11 11:05:58 +0100 | [diff] [blame] | 3129 | if (!trash) |
| 3130 | return 0; |
| 3131 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3132 | trash->data = smp->data.u.str.data; |
| 3133 | if (trash->data > trash->size - 1) |
| 3134 | trash->data = trash->size - 1; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3135 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3136 | memcpy(trash->area, smp->data.u.str.area, trash->data); |
| 3137 | trash->area[trash->data] = 0; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3138 | |
| 3139 | /* append first string */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3140 | max = arg_p[0].data.str.data; |
| 3141 | if (max > trash->size - 1 - trash->data) |
| 3142 | max = trash->size - 1 - trash->data; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3143 | |
| 3144 | if (max) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3145 | memcpy(trash->area + trash->data, arg_p[0].data.str.area, max); |
| 3146 | trash->data += max; |
| 3147 | trash->area[trash->data] = 0; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3148 | } |
| 3149 | |
| 3150 | /* append second string (variable) if it's found and we can turn it |
| 3151 | * into a string. |
| 3152 | */ |
| 3153 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | e352b9d | 2021-09-03 11:52:38 +0200 | [diff] [blame] | 3154 | if (arg_p[1].type == ARGT_VAR && vars_get_by_desc(&arg_p[1].data.var, &tmp, NULL) && |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3155 | (sample_casts[tmp.data.type][SMP_T_STR] == c_none || |
| 3156 | sample_casts[tmp.data.type][SMP_T_STR](&tmp))) { |
| 3157 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3158 | max = tmp.data.u.str.data; |
| 3159 | if (max > trash->size - 1 - trash->data) |
| 3160 | max = trash->size - 1 - trash->data; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3161 | |
| 3162 | if (max) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3163 | memcpy(trash->area + trash->data, tmp.data.u.str.area, |
| 3164 | max); |
| 3165 | trash->data += max; |
| 3166 | trash->area[trash->data] = 0; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | /* append third string */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3171 | max = arg_p[2].data.str.data; |
| 3172 | if (max > trash->size - 1 - trash->data) |
| 3173 | max = trash->size - 1 - trash->data; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3174 | |
| 3175 | if (max) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3176 | memcpy(trash->area + trash->data, arg_p[2].data.str.area, max); |
| 3177 | trash->data += max; |
| 3178 | trash->area[trash->data] = 0; |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3179 | } |
| 3180 | |
| 3181 | smp->data.u.str = *trash; |
| 3182 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 591fc3a | 2021-01-08 16:08:43 +0100 | [diff] [blame] | 3183 | smp_dup(smp); |
| 3184 | free_trash_chunk(trash); |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3185 | return 1; |
| 3186 | } |
| 3187 | |
| 3188 | /* This function checks the "concat" converter's arguments and extracts the |
| 3189 | * variable name and its scope. |
| 3190 | */ |
| 3191 | static int smp_check_concat(struct arg *args, struct sample_conv *conv, |
| 3192 | const char *file, int line, char **err) |
| 3193 | { |
| 3194 | /* Try to decode a variable. */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3195 | if (args[1].data.str.data > 0 && !vars_check_arg(&args[1], NULL)) { |
| 3196 | memprintf(err, "failed to register variable name '%s'", |
| 3197 | args[1].data.str.area); |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 3198 | return 0; |
| 3199 | } |
| 3200 | return 1; |
| 3201 | } |
| 3202 | |
Nikola Sale | 0dbf038 | 2022-04-03 18:11:53 +0200 | [diff] [blame] | 3203 | /* Append delimiter (only to a non empty input) followed by the optional |
| 3204 | * variable contents concatenated with the optional sufix. |
| 3205 | */ |
| 3206 | static int sample_conv_add_item(const struct arg *arg_p, struct sample *smp, void *private) |
| 3207 | { |
| 3208 | struct buffer *tmpbuf; |
| 3209 | struct sample tmp; |
| 3210 | size_t max; |
| 3211 | int var_available; |
| 3212 | |
| 3213 | tmpbuf = alloc_trash_chunk(); |
| 3214 | if (!tmpbuf) |
| 3215 | return 0; |
| 3216 | |
| 3217 | tmpbuf->data = smp->data.u.str.data; |
| 3218 | if (tmpbuf->data > tmpbuf->size - 1) |
| 3219 | tmpbuf->data = tmpbuf->size - 1; |
| 3220 | |
| 3221 | memcpy(tmpbuf->area, smp->data.u.str.area, tmpbuf->data); |
| 3222 | tmpbuf->area[tmpbuf->data] = 0; |
| 3223 | |
| 3224 | /* Check if variable is found and we can turn into a string. */ |
| 3225 | var_available = 0; |
| 3226 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
| 3227 | if (arg_p[1].type == ARGT_VAR && vars_get_by_desc(&arg_p[1].data.var, &tmp, NULL) && |
| 3228 | (sample_casts[tmp.data.type][SMP_T_STR] == c_none || |
| 3229 | sample_casts[tmp.data.type][SMP_T_STR](&tmp))) |
| 3230 | var_available = 1; |
| 3231 | |
| 3232 | /* Append delimiter only if input is not empty and either |
| 3233 | * the variable or the suffix are not empty |
| 3234 | */ |
| 3235 | if (smp->data.u.str.data && ((var_available && tmp.data.u.str.data) || |
| 3236 | arg_p[2].data.str.data)) { |
| 3237 | max = arg_p[0].data.str.data; |
| 3238 | if (max > tmpbuf->size - 1 - tmpbuf->data) |
| 3239 | max = tmpbuf->size - 1 - tmpbuf->data; |
| 3240 | |
| 3241 | if (max) { |
| 3242 | memcpy(tmpbuf->area + tmpbuf->data, arg_p[0].data.str.area, max); |
| 3243 | tmpbuf->data += max; |
| 3244 | tmpbuf->area[tmpbuf->data] = 0; |
| 3245 | } |
| 3246 | } |
| 3247 | |
| 3248 | /* Append variable contents if variable is found and turned into string. */ |
| 3249 | if (var_available) { |
| 3250 | max = tmp.data.u.str.data; |
| 3251 | if (max > tmpbuf->size - 1 - tmpbuf->data) |
| 3252 | max = tmpbuf->size - 1 - tmpbuf->data; |
| 3253 | |
| 3254 | if (max) { |
| 3255 | memcpy(tmpbuf->area + tmpbuf->data, tmp.data.u.str.area, max); |
| 3256 | tmpbuf->data += max; |
| 3257 | tmpbuf->area[tmpbuf->data] = 0; |
| 3258 | } |
| 3259 | } |
| 3260 | |
| 3261 | /* Append optional suffix. */ |
| 3262 | max = arg_p[2].data.str.data; |
| 3263 | if (max > tmpbuf->size - 1 - tmpbuf->data) |
| 3264 | max = tmpbuf->size - 1 - tmpbuf->data; |
| 3265 | |
| 3266 | if (max) { |
| 3267 | memcpy(tmpbuf->area + tmpbuf->data, arg_p[2].data.str.area, max); |
| 3268 | tmpbuf->data += max; |
| 3269 | tmpbuf->area[tmpbuf->data] = 0; |
| 3270 | } |
| 3271 | |
| 3272 | smp->data.u.str = *tmpbuf; |
| 3273 | smp->data.type = SMP_T_STR; |
| 3274 | smp_dup(smp); |
| 3275 | free_trash_chunk(tmpbuf); |
| 3276 | return 1; |
| 3277 | } |
| 3278 | |
| 3279 | /* Check the "add_item" converter's arguments and extracts the |
| 3280 | * variable name and its scope. |
| 3281 | */ |
| 3282 | static int smp_check_add_item(struct arg *args, struct sample_conv *conv, |
| 3283 | const char *file, int line, char **err) |
| 3284 | { |
| 3285 | /* Try to decode a variable. */ |
| 3286 | if (args[1].data.str.data > 0 && !vars_check_arg(&args[1], NULL)) { |
| 3287 | memprintf(err, "failed to register variable name '%s'", |
| 3288 | args[1].data.str.area); |
| 3289 | return 0; |
| 3290 | } |
| 3291 | |
| 3292 | if (args[1].data.str.data == 0 && args[2].data.str.data == 0) { |
| 3293 | memprintf(err, "one of the optional arguments has to be nonempty"); |
| 3294 | return 0; |
| 3295 | } |
| 3296 | |
| 3297 | return 1; |
| 3298 | } |
| 3299 | |
Tim Duesterhus | f38175c | 2020-06-09 11:48:42 +0200 | [diff] [blame] | 3300 | /* Compares string with a variable containing a string. Return value |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3301 | * is compatible with strcmp(3)'s return value. |
| 3302 | */ |
| 3303 | static int sample_conv_strcmp(const struct arg *arg_p, struct sample *smp, void *private) |
| 3304 | { |
| 3305 | struct sample tmp; |
| 3306 | int max, result; |
| 3307 | |
| 3308 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
| 3309 | if (arg_p[0].type != ARGT_VAR) |
| 3310 | return 0; |
Willy Tarreau | 2476ff1 | 2021-10-06 15:30:52 +0200 | [diff] [blame] | 3311 | |
| 3312 | if (!sample_conv_var2smp(&arg_p[0].data.var, &tmp, SMP_T_STR)) |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3313 | return 0; |
| 3314 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3315 | max = MIN(smp->data.u.str.data, tmp.data.u.str.data); |
| 3316 | result = strncmp(smp->data.u.str.area, tmp.data.u.str.area, max); |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3317 | if (result == 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3318 | if (smp->data.u.str.data != tmp.data.u.str.data) { |
| 3319 | if (smp->data.u.str.data < tmp.data.u.str.data) { |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3320 | result = -1; |
| 3321 | } |
| 3322 | else { |
| 3323 | result = 1; |
| 3324 | } |
| 3325 | } |
| 3326 | } |
| 3327 | |
| 3328 | smp->data.u.sint = result; |
| 3329 | smp->data.type = SMP_T_SINT; |
| 3330 | return 1; |
| 3331 | } |
William Lallemand | dd754cb | 2022-08-26 16:21:28 +0200 | [diff] [blame] | 3332 | /* |
| 3333 | * This converter can takes a Host header value as defined by rfc9110#section-7.2 |
| 3334 | * Host = uri-host [ ":" port ] ; |
| 3335 | * It returns the uri-host value in lowecase with the port stripped. |
| 3336 | */ |
| 3337 | static int sample_conv_host_only(const struct arg *arg_p, struct sample *smp, void *private) |
| 3338 | { |
| 3339 | /* Working cases: hostname00, hostname00:80, 127.0.0.1, 127.0.0.1:80, [::1], [::1]:80 */ |
| 3340 | char *beg = smp->data.u.str.area; |
| 3341 | char *end = smp->data.u.str.area + smp->data.u.str.data - 1; |
| 3342 | char *p; |
| 3343 | |
| 3344 | for (p = end; p >= beg; p--) { |
| 3345 | if (*p == ':' || *p == ']') |
| 3346 | break; |
| 3347 | } |
| 3348 | |
| 3349 | if (p >= beg && *p == ':') |
| 3350 | smp->data.u.str.data = p - beg; |
| 3351 | /* if no port part was found, the hostname is the whole string */ |
| 3352 | |
| 3353 | smp->data.type = SMP_T_STR; |
| 3354 | |
| 3355 | return sample_conv_str2lower(arg_p, smp, NULL); |
| 3356 | } |
| 3357 | |
| 3358 | /* |
| 3359 | * This converter can takes a Host header value as defined by rfc9110#section-7.2 |
| 3360 | * Host = uri-host [ ":" port ] ; |
| 3361 | * It returns the port value as a int. |
| 3362 | */ |
| 3363 | static int sample_conv_port_only(const struct arg *arg_p, struct sample *smp, void *private) |
| 3364 | { |
| 3365 | /* Working cases: hostname00, hostname00:80, 127.0.0.1, 127.0.0.1:80, [::1], [::1]:80 */ |
| 3366 | char *beg = smp->data.u.str.area; |
| 3367 | char *end = smp->data.u.str.area + smp->data.u.str.data - 1; |
| 3368 | char *p; |
| 3369 | |
| 3370 | for (p = end; p >= beg; p--) { |
| 3371 | if (*p == ':' || *p == ']') |
| 3372 | break; |
| 3373 | } |
| 3374 | |
| 3375 | smp->data.type = SMP_T_SINT; |
| 3376 | if (p >= beg && *p == ':' && ++p <= end) { |
| 3377 | smp->data.u.sint = strl2ui(p, smp->data.u.str.data + smp->data.u.str.area - p); |
| 3378 | } else { |
| 3379 | smp->data.u.sint = 0; |
| 3380 | } |
| 3381 | return 1; |
| 3382 | } |
| 3383 | |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3384 | |
Tim Duesterhus | 3943e4f | 2020-09-11 14:25:23 +0200 | [diff] [blame] | 3385 | /* Takes a boolean as input. Returns the first argument if that boolean is true and |
| 3386 | * the second argument otherwise. |
| 3387 | */ |
| 3388 | static int sample_conv_iif(const struct arg *arg_p, struct sample *smp, void *private) |
| 3389 | { |
| 3390 | smp->data.type = SMP_T_STR; |
| 3391 | smp->flags |= SMP_F_CONST; |
| 3392 | |
| 3393 | if (smp->data.u.sint) { |
| 3394 | smp->data.u.str.data = arg_p[0].data.str.data; |
| 3395 | smp->data.u.str.area = arg_p[0].data.str.area; |
| 3396 | } |
| 3397 | else { |
| 3398 | smp->data.u.str.data = arg_p[1].data.str.data; |
| 3399 | smp->data.u.str.area = arg_p[1].data.str.area; |
| 3400 | } |
| 3401 | |
| 3402 | return 1; |
| 3403 | } |
| 3404 | |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3405 | #define GRPC_MSG_COMPRESS_FLAG_SZ 1 /* 1 byte */ |
| 3406 | #define GRPC_MSG_LENGTH_SZ 4 /* 4 bytes */ |
| 3407 | #define GRPC_MSG_HEADER_SZ (GRPC_MSG_COMPRESS_FLAG_SZ + GRPC_MSG_LENGTH_SZ) |
| 3408 | |
| 3409 | /* |
| 3410 | * Extract the field value of an input binary sample. Takes a mandatory argument: |
| 3411 | * the protocol buffers field identifier (dotted notation) internally represented |
| 3412 | * as an array of unsigned integers and its size. |
| 3413 | * Return 1 if the field was found, 0 if not. |
| 3414 | */ |
| 3415 | static int sample_conv_ungrpc(const struct arg *arg_p, struct sample *smp, void *private) |
| 3416 | { |
| 3417 | unsigned char *pos; |
| 3418 | size_t grpc_left; |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3419 | |
| 3420 | pos = (unsigned char *)smp->data.u.str.area; |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3421 | grpc_left = smp->data.u.str.data; |
| 3422 | |
Frédéric Lécaille | 7c93e88 | 2019-03-04 07:33:41 +0100 | [diff] [blame] | 3423 | while (grpc_left > GRPC_MSG_HEADER_SZ) { |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3424 | size_t grpc_msg_len, left; |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3425 | |
| 3426 | grpc_msg_len = left = ntohl(*(uint32_t *)(pos + GRPC_MSG_COMPRESS_FLAG_SZ)); |
| 3427 | |
| 3428 | pos += GRPC_MSG_HEADER_SZ; |
| 3429 | grpc_left -= GRPC_MSG_HEADER_SZ; |
| 3430 | |
| 3431 | if (grpc_left < left) |
| 3432 | return 0; |
| 3433 | |
Frédéric Lécaille | 5f33f85 | 2019-03-06 08:03:44 +0100 | [diff] [blame] | 3434 | if (protobuf_field_lookup(arg_p, smp, &pos, &left)) |
| 3435 | return 1; |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3436 | |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 3437 | grpc_left -= grpc_msg_len; |
| 3438 | } |
| 3439 | |
| 3440 | return 0; |
| 3441 | } |
| 3442 | |
Frédéric Lécaille | bfe6138 | 2019-03-06 14:34:36 +0100 | [diff] [blame] | 3443 | static int sample_conv_protobuf(const struct arg *arg_p, struct sample *smp, void *private) |
| 3444 | { |
| 3445 | unsigned char *pos; |
| 3446 | size_t left; |
| 3447 | |
| 3448 | pos = (unsigned char *)smp->data.u.str.area; |
| 3449 | left = smp->data.u.str.data; |
| 3450 | |
| 3451 | return protobuf_field_lookup(arg_p, smp, &pos, &left); |
| 3452 | } |
| 3453 | |
| 3454 | static int sample_conv_protobuf_check(struct arg *args, struct sample_conv *conv, |
| 3455 | const char *file, int line, char **err) |
Frédéric Lécaille | 756d97f | 2019-03-04 19:03:48 +0100 | [diff] [blame] | 3456 | { |
| 3457 | if (!args[1].type) { |
| 3458 | args[1].type = ARGT_SINT; |
| 3459 | args[1].data.sint = PBUF_T_BINARY; |
| 3460 | } |
| 3461 | else { |
| 3462 | int pbuf_type; |
| 3463 | |
| 3464 | pbuf_type = protobuf_type(args[1].data.str.area); |
| 3465 | if (pbuf_type == -1) { |
| 3466 | memprintf(err, "Wrong protocol buffer type '%s'", args[1].data.str.area); |
| 3467 | return 0; |
| 3468 | } |
| 3469 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 3470 | chunk_destroy(&args[1].data.str); |
Frédéric Lécaille | 756d97f | 2019-03-04 19:03:48 +0100 | [diff] [blame] | 3471 | args[1].type = ARGT_SINT; |
| 3472 | args[1].data.sint = pbuf_type; |
| 3473 | } |
| 3474 | |
| 3475 | return 1; |
| 3476 | } |
| 3477 | |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 3478 | /* |
| 3479 | * Extract the tag value of an input binary sample. Takes a mandatory argument: |
| 3480 | * the FIX protocol tag identifier. |
| 3481 | * Return 1 if the tag was found, 0 if not. |
| 3482 | */ |
| 3483 | static int sample_conv_fix_tag_value(const struct arg *arg_p, struct sample *smp, void *private) |
| 3484 | { |
| 3485 | struct ist value; |
| 3486 | |
| 3487 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 3488 | value = fix_tag_value(ist2(smp->data.u.str.area, smp->data.u.str.data), |
| 3489 | arg_p[0].data.sint); |
| 3490 | if (!istlen(value)) { |
Christopher Faulet | a5aa082 | 2021-10-13 17:58:53 +0200 | [diff] [blame] | 3491 | if (isttest(value)) { |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 3492 | /* value != IST_NULL, need more data */ |
| 3493 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3494 | } |
| 3495 | return 0; |
| 3496 | } |
| 3497 | |
| 3498 | smp->data.u.str = ist2buf(value); |
| 3499 | smp->flags |= SMP_F_CONST; |
| 3500 | |
| 3501 | return 1; |
| 3502 | } |
| 3503 | |
| 3504 | /* This function checks the "fix_tag_value" converter configuration. |
| 3505 | * It expects a "known" (by HAProxy) tag name or ID. |
| 3506 | * Tag string names are converted to their ID counterpart because this is the |
| 3507 | * format they are sent over the wire. |
| 3508 | */ |
| 3509 | static int sample_conv_fix_value_check(struct arg *args, struct sample_conv *conv, |
| 3510 | const char *file, int line, char **err) |
| 3511 | { |
| 3512 | struct ist str; |
| 3513 | unsigned int tag; |
| 3514 | |
| 3515 | str = ist2(args[0].data.str.area, args[0].data.str.data); |
| 3516 | tag = fix_tagid(str); |
| 3517 | if (!tag) { |
| 3518 | memprintf(err, "Unknown FIX tag name '%s'", args[0].data.str.area); |
| 3519 | return 0; |
| 3520 | } |
| 3521 | |
| 3522 | chunk_destroy(&args[0].data.str); |
| 3523 | args[0].type = ARGT_SINT; |
| 3524 | args[0].data.sint = tag; |
| 3525 | |
| 3526 | return 1; |
| 3527 | } |
| 3528 | |
| 3529 | /* |
| 3530 | * Checks that a buffer contains a valid FIX message |
| 3531 | * |
| 3532 | * Return 1 if the check could be run, 0 if not. |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 3533 | * The result of the analyse itself is stored in <smp> as a boolean |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 3534 | */ |
| 3535 | static int sample_conv_fix_is_valid(const struct arg *arg_p, struct sample *smp, void *private) |
| 3536 | { |
| 3537 | struct ist msg; |
| 3538 | |
| 3539 | msg = ist2(smp->data.u.str.area, smp->data.u.str.data); |
| 3540 | |
| 3541 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 3542 | switch (fix_validate_message(msg)) { |
| 3543 | case FIX_VALID_MESSAGE: |
| 3544 | smp->data.type = SMP_T_BOOL; |
| 3545 | smp->data.u.sint = 1; |
| 3546 | return 1; |
| 3547 | case FIX_NEED_MORE_DATA: |
| 3548 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3549 | return 0; |
| 3550 | case FIX_INVALID_MESSAGE: |
| 3551 | smp->data.type = SMP_T_BOOL; |
| 3552 | smp->data.u.sint = 0; |
| 3553 | return 1; |
| 3554 | } |
| 3555 | return 0; |
| 3556 | } |
| 3557 | |
Baptiste Assmann | e279ca6 | 2020-10-27 18:10:06 +0100 | [diff] [blame] | 3558 | /* |
| 3559 | * Extract the field value of an input binary sample containing an MQTT packet. |
| 3560 | * Takes 2 mandatory arguments: |
| 3561 | * - packet type |
| 3562 | * - field name |
| 3563 | * |
| 3564 | * return 1 if the field was found, 0 if not. |
| 3565 | */ |
| 3566 | static int sample_conv_mqtt_field_value(const struct arg *arg_p, struct sample *smp, void *private) |
| 3567 | { |
| 3568 | struct ist pkt, value; |
| 3569 | int type, fieldname_id; |
| 3570 | |
| 3571 | pkt = ist2(smp->data.u.str.area, smp->data.u.str.data); |
| 3572 | type = arg_p[0].data.sint; |
| 3573 | fieldname_id = arg_p[1].data.sint; |
| 3574 | |
| 3575 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 3576 | value = mqtt_field_value(pkt, type, fieldname_id); |
| 3577 | if (!istlen(value)) { |
| 3578 | if (isttest(value)) { |
| 3579 | /* value != IST_NULL, need more data */ |
| 3580 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3581 | } |
| 3582 | return 0; |
| 3583 | } |
| 3584 | |
| 3585 | smp->data.u.str = ist2buf(value); |
| 3586 | smp->flags |= SMP_F_CONST; |
| 3587 | return 1; |
| 3588 | } |
| 3589 | |
| 3590 | /* |
| 3591 | * this function checks the "mqtt_field_value" converter configuration. |
| 3592 | * It expects a known packet type name or ID and a field name, in this order |
| 3593 | * |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 3594 | * Args[0] will be turned into a MQTT_CPT_* value for direct matching when parsing |
Baptiste Assmann | e279ca6 | 2020-10-27 18:10:06 +0100 | [diff] [blame] | 3595 | * a packet. |
| 3596 | */ |
| 3597 | static int sample_conv_mqtt_field_value_check(struct arg *args, struct sample_conv *conv, |
| 3598 | const char *file, int line, char **err) |
| 3599 | { |
| 3600 | int type, fieldname_id; |
| 3601 | |
| 3602 | /* check the MQTT packet type is valid */ |
| 3603 | type = mqtt_typeid(ist2(args[0].data.str.area, args[0].data.str.data)); |
| 3604 | if (type == MQTT_CPT_INVALID) { |
| 3605 | memprintf(err, "Unknown MQTT type '%s'", args[0].data.str.area); |
| 3606 | return 0; |
| 3607 | } |
| 3608 | |
| 3609 | /* check the field name belongs to the MQTT packet type */ |
| 3610 | fieldname_id = mqtt_check_type_fieldname(type, ist2(args[1].data.str.area, args[1].data.str.data)); |
| 3611 | if (fieldname_id == MQTT_FN_INVALID) { |
| 3612 | memprintf(err, "Unknown MQTT field name '%s' for packet type '%s'", args[1].data.str.area, |
| 3613 | args[0].data.str.area); |
| 3614 | return 0; |
| 3615 | } |
| 3616 | |
| 3617 | /* save numeric counterparts of type and field name */ |
| 3618 | chunk_destroy(&args[0].data.str); |
| 3619 | chunk_destroy(&args[1].data.str); |
| 3620 | args[0].type = ARGT_SINT; |
| 3621 | args[0].data.sint = type; |
| 3622 | args[1].type = ARGT_SINT; |
| 3623 | args[1].data.sint = fieldname_id; |
| 3624 | |
| 3625 | return 1; |
| 3626 | } |
| 3627 | |
| 3628 | /* |
| 3629 | * Checks that <smp> contains a valid MQTT message |
| 3630 | * |
| 3631 | * The function returns 1 if the check was run to its end, 0 otherwise. |
| 3632 | * The result of the analyse itself is stored in <smp> as a boolean. |
| 3633 | */ |
| 3634 | static int sample_conv_mqtt_is_valid(const struct arg *arg_p, struct sample *smp, void *private) |
| 3635 | { |
| 3636 | struct ist msg; |
| 3637 | |
| 3638 | msg = ist2(smp->data.u.str.area, smp->data.u.str.data); |
| 3639 | |
| 3640 | smp->flags &= ~SMP_F_MAY_CHANGE; |
| 3641 | switch (mqtt_validate_message(msg, NULL)) { |
| 3642 | case FIX_VALID_MESSAGE: |
| 3643 | smp->data.type = SMP_T_BOOL; |
| 3644 | smp->data.u.sint = 1; |
| 3645 | return 1; |
| 3646 | case FIX_NEED_MORE_DATA: |
| 3647 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3648 | return 0; |
| 3649 | case FIX_INVALID_MESSAGE: |
| 3650 | smp->data.type = SMP_T_BOOL; |
| 3651 | smp->data.u.sint = 0; |
| 3652 | return 1; |
| 3653 | } |
| 3654 | return 0; |
| 3655 | } |
| 3656 | |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3657 | /* This function checks the "strcmp" converter's arguments and extracts the |
| 3658 | * variable name and its scope. |
| 3659 | */ |
| 3660 | static int smp_check_strcmp(struct arg *args, struct sample_conv *conv, |
| 3661 | const char *file, int line, char **err) |
| 3662 | { |
Willy Tarreau | a1169b6 | 2021-05-08 06:50:28 +0200 | [diff] [blame] | 3663 | if (!args[0].data.str.data) { |
| 3664 | memprintf(err, "missing variable name"); |
| 3665 | return 0; |
| 3666 | } |
| 3667 | |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3668 | /* Try to decode a variable. */ |
| 3669 | if (vars_check_arg(&args[0], NULL)) |
| 3670 | return 1; |
| 3671 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3672 | memprintf(err, "failed to register variable name '%s'", |
| 3673 | args[0].data.str.area); |
Tim Duesterhus | ca097c1 | 2018-04-27 21:18:45 +0200 | [diff] [blame] | 3674 | return 0; |
| 3675 | } |
Tim Duesterhus | f38175c | 2020-06-09 11:48:42 +0200 | [diff] [blame] | 3676 | |
Christopher Faulet | 4ccc12f | 2020-04-01 09:08:32 +0200 | [diff] [blame] | 3677 | /**/ |
| 3678 | static int sample_conv_htonl(const struct arg *arg_p, struct sample *smp, void *private) |
| 3679 | { |
| 3680 | struct buffer *tmp; |
| 3681 | uint32_t n; |
| 3682 | |
| 3683 | n = htonl((uint32_t)smp->data.u.sint); |
| 3684 | tmp = get_trash_chunk(); |
| 3685 | |
| 3686 | memcpy(b_head(tmp), &n, 4); |
| 3687 | b_add(tmp, 4); |
| 3688 | |
| 3689 | smp->data.u.str = *tmp; |
| 3690 | smp->data.type = SMP_T_BIN; |
| 3691 | return 1; |
| 3692 | } |
| 3693 | |
Christopher Faulet | ea159d6 | 2020-04-01 16:21:44 +0200 | [diff] [blame] | 3694 | /**/ |
| 3695 | static int sample_conv_cut_crlf(const struct arg *arg_p, struct sample *smp, void *private) |
| 3696 | { |
| 3697 | char *p; |
| 3698 | size_t l; |
| 3699 | |
| 3700 | p = smp->data.u.str.area; |
| 3701 | for (l = 0; l < smp->data.u.str.data; l++) { |
| 3702 | if (*(p+l) == '\r' || *(p+l) == '\n') |
| 3703 | break; |
| 3704 | } |
| 3705 | smp->data.u.str.data = l; |
| 3706 | return 1; |
| 3707 | } |
| 3708 | |
Christopher Faulet | 51fc9d1 | 2020-04-01 17:24:41 +0200 | [diff] [blame] | 3709 | /**/ |
| 3710 | static int sample_conv_ltrim(const struct arg *arg_p, struct sample *smp, void *private) |
| 3711 | { |
| 3712 | char *delimiters, *p; |
| 3713 | size_t dlen, l; |
| 3714 | |
| 3715 | delimiters = arg_p[0].data.str.area; |
| 3716 | dlen = arg_p[0].data.str.data; |
| 3717 | |
| 3718 | l = smp->data.u.str.data; |
| 3719 | p = smp->data.u.str.area; |
| 3720 | while (l && memchr(delimiters, *p, dlen) != NULL) { |
| 3721 | p++; |
| 3722 | l--; |
| 3723 | } |
| 3724 | |
| 3725 | smp->data.u.str.area = p; |
| 3726 | smp->data.u.str.data = l; |
| 3727 | return 1; |
| 3728 | } |
| 3729 | |
Christopher Faulet | 568415a | 2020-04-01 17:24:47 +0200 | [diff] [blame] | 3730 | /**/ |
| 3731 | static int sample_conv_rtrim(const struct arg *arg_p, struct sample *smp, void *private) |
| 3732 | { |
| 3733 | char *delimiters, *p; |
| 3734 | size_t dlen, l; |
| 3735 | |
| 3736 | delimiters = arg_p[0].data.str.area; |
| 3737 | dlen = arg_p[0].data.str.data; |
| 3738 | |
| 3739 | l = smp->data.u.str.data; |
| 3740 | p = smp->data.u.str.area + l - 1; |
| 3741 | while (l && memchr(delimiters, *p, dlen) != NULL) { |
| 3742 | p--; |
| 3743 | l--; |
| 3744 | } |
| 3745 | |
| 3746 | smp->data.u.str.data = l; |
| 3747 | return 1; |
| 3748 | } |
| 3749 | |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3750 | /* This function checks the "json_query" converter's arguments. */ |
| 3751 | static int sample_check_json_query(struct arg *arg, struct sample_conv *conv, |
| 3752 | const char *file, int line, char **err) |
| 3753 | { |
| 3754 | if (arg[0].data.str.data == 0) { |
| 3755 | memprintf(err, "json_path must not be empty"); |
| 3756 | return 0; |
| 3757 | } |
| 3758 | |
| 3759 | if (arg[1].data.str.data != 0) { |
| 3760 | if (strcmp(arg[1].data.str.area, "int") != 0) { |
| 3761 | memprintf(err, "output_type only supports \"int\" as argument"); |
| 3762 | return 0; |
| 3763 | } else { |
| 3764 | arg[1].type = ARGT_SINT; |
| 3765 | arg[1].data.sint = 0; |
| 3766 | } |
| 3767 | } |
| 3768 | return 1; |
| 3769 | } |
| 3770 | |
| 3771 | /* Limit JSON integer values to the range [-(2**53)+1, (2**53)-1] as per |
| 3772 | * the recommendation for interoperable integers in section 6 of RFC 7159. |
| 3773 | */ |
| 3774 | #define JSON_INT_MAX ((1LL << 53) - 1) |
| 3775 | #define JSON_INT_MIN (-JSON_INT_MAX) |
| 3776 | |
| 3777 | /* This sample function get the value from a given json string. |
| 3778 | * The mjson library is used to parse the JSON struct |
| 3779 | */ |
| 3780 | static int sample_conv_json_query(const struct arg *args, struct sample *smp, void *private) |
| 3781 | { |
| 3782 | struct buffer *trash = get_trash_chunk(); |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3783 | const char *token; /* holds the temporary string from mjson_find */ |
| 3784 | int token_size; /* holds the length of <token> */ |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3785 | |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3786 | enum mjson_tok token_type; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3787 | |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3788 | token_type = mjson_find(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, &token, &token_size); |
| 3789 | |
| 3790 | switch (token_type) { |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3791 | case MJSON_TOK_NUMBER: |
| 3792 | if (args[1].type == ARGT_SINT) { |
Willy Tarreau | fb60195 | 2021-05-14 08:51:53 +0200 | [diff] [blame] | 3793 | smp->data.u.sint = strtoll(token, NULL, 0); |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3794 | |
| 3795 | if (smp->data.u.sint < JSON_INT_MIN || smp->data.u.sint > JSON_INT_MAX) |
| 3796 | return 0; |
| 3797 | |
| 3798 | smp->data.type = SMP_T_SINT; |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3799 | |
| 3800 | return 1; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3801 | } else { |
| 3802 | double double_val; |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3803 | |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3804 | if (mjson_get_number(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, &double_val) == 0) |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3805 | return 0; |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3806 | |
| 3807 | trash->data = snprintf(trash->area,trash->size,"%g",double_val); |
| 3808 | smp->data.u.str = *trash; |
| 3809 | smp->data.type = SMP_T_STR; |
| 3810 | |
| 3811 | return 1; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3812 | } |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3813 | case MJSON_TOK_TRUE: |
| 3814 | smp->data.type = SMP_T_BOOL; |
| 3815 | smp->data.u.sint = 1; |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3816 | |
| 3817 | return 1; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3818 | case MJSON_TOK_FALSE: |
| 3819 | smp->data.type = SMP_T_BOOL; |
| 3820 | smp->data.u.sint = 0; |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3821 | |
| 3822 | return 1; |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3823 | case MJSON_TOK_STRING: { |
| 3824 | int len; |
| 3825 | |
| 3826 | len = mjson_get_string(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, trash->area, trash->size); |
| 3827 | |
| 3828 | if (len == -1) { |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3829 | /* invalid string */ |
| 3830 | return 0; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3831 | } |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3832 | |
| 3833 | trash->data = len; |
| 3834 | smp->data.u.str = *trash; |
| 3835 | smp->data.type = SMP_T_STR; |
| 3836 | |
| 3837 | return 1; |
Tim Duesterhus | 4809c8c | 2021-04-15 18:08:48 +0200 | [diff] [blame] | 3838 | } |
Tim Duesterhus | 8f3bc8f | 2021-04-15 18:14:32 +0200 | [diff] [blame] | 3839 | case MJSON_TOK_NULL: |
| 3840 | case MJSON_TOK_ARRAY: |
| 3841 | case MJSON_TOK_OBJECT: |
| 3842 | /* We cannot handle these. */ |
| 3843 | return 0; |
| 3844 | case MJSON_TOK_INVALID: |
| 3845 | /* Nothing matches the query. */ |
| 3846 | return 0; |
| 3847 | case MJSON_TOK_KEY: |
| 3848 | /* This is not a valid return value according to the |
| 3849 | * mjson documentation, but we handle it to benefit |
| 3850 | * from '-Wswitch'. |
| 3851 | */ |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3852 | return 0; |
| 3853 | } |
Tim Duesterhus | 3b9cdf1 | 2021-04-15 18:40:06 +0200 | [diff] [blame] | 3854 | |
| 3855 | my_unreachable(); |
| 3856 | return 0; |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3857 | } |
| 3858 | |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 3859 | #ifdef USE_OPENSSL |
Remi Tricot-Le Breton | 130e142 | 2021-10-01 15:36:58 +0200 | [diff] [blame] | 3860 | static int sample_conv_jwt_verify_check(struct arg *args, struct sample_conv *conv, |
| 3861 | const char *file, int line, char **err) |
| 3862 | { |
| 3863 | vars_check_arg(&args[0], NULL); |
| 3864 | vars_check_arg(&args[1], NULL); |
| 3865 | |
| 3866 | if (args[0].type == ARGT_STR) { |
| 3867 | enum jwt_alg alg = jwt_parse_alg(args[0].data.str.area, args[0].data.str.data); |
| 3868 | |
| 3869 | switch(alg) { |
| 3870 | case JWT_ALG_DEFAULT: |
Tim Duesterhus | ab896ee | 2021-10-29 18:06:55 +0200 | [diff] [blame] | 3871 | memprintf(err, "unknown JWT algorithm: %s", args[0].data.str.area); |
| 3872 | return 0; |
Remi Tricot-Le Breton | 130e142 | 2021-10-01 15:36:58 +0200 | [diff] [blame] | 3873 | |
| 3874 | case JWS_ALG_PS256: |
| 3875 | case JWS_ALG_PS384: |
| 3876 | case JWS_ALG_PS512: |
| 3877 | memprintf(err, "RSASSA-PSS JWS signing not managed yet"); |
Tim Duesterhus | ab896ee | 2021-10-29 18:06:55 +0200 | [diff] [blame] | 3878 | return 0; |
Remi Tricot-Le Breton | 130e142 | 2021-10-01 15:36:58 +0200 | [diff] [blame] | 3879 | |
| 3880 | default: |
| 3881 | break; |
| 3882 | } |
| 3883 | } |
| 3884 | |
| 3885 | if (args[1].type == ARGT_STR) { |
| 3886 | jwt_tree_load_cert(args[1].data.str.area, args[1].data.str.data, err); |
| 3887 | } |
| 3888 | |
| 3889 | return 1; |
| 3890 | } |
| 3891 | |
| 3892 | /* Check that a JWT's signature is correct */ |
| 3893 | static int sample_conv_jwt_verify(const struct arg *args, struct sample *smp, void *private) |
| 3894 | { |
| 3895 | struct sample alg_smp, key_smp; |
| 3896 | |
| 3897 | smp->data.type = SMP_T_SINT; |
| 3898 | smp->data.u.sint = 0; |
| 3899 | |
| 3900 | smp_set_owner(&alg_smp, smp->px, smp->sess, smp->strm, smp->opt); |
| 3901 | smp_set_owner(&key_smp, smp->px, smp->sess, smp->strm, smp->opt); |
| 3902 | if (!sample_conv_var2smp_str(&args[0], &alg_smp)) |
| 3903 | return 0; |
| 3904 | if (!sample_conv_var2smp_str(&args[1], &key_smp)) |
| 3905 | return 0; |
| 3906 | |
| 3907 | smp->data.u.sint = jwt_verify(&smp->data.u.str, &alg_smp.data.u.str, |
| 3908 | &key_smp.data.u.str); |
| 3909 | |
| 3910 | return 1; |
| 3911 | } |
| 3912 | |
| 3913 | |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 3914 | /* |
| 3915 | * Returns the decoded header or payload of a JWT if no parameter is given, or |
| 3916 | * the value of the specified field of the corresponding JWT subpart if a |
| 3917 | * parameter is given. |
| 3918 | */ |
| 3919 | static int sample_conv_jwt_member_query(const struct arg *args, struct sample *smp, |
| 3920 | void *private, enum jwt_elt member) |
| 3921 | { |
| 3922 | struct jwt_item items[JWT_ELT_MAX] = { { 0 } }; |
| 3923 | unsigned int item_num = member + 1; /* We don't need to tokenize the full token */ |
| 3924 | struct buffer *decoded_header = get_trash_chunk(); |
| 3925 | int retval = 0; |
Willy Tarreau | e20e026 | 2021-10-15 12:10:24 +0200 | [diff] [blame] | 3926 | int ret; |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 3927 | |
| 3928 | jwt_tokenize(&smp->data.u.str, items, &item_num); |
| 3929 | |
| 3930 | if (item_num < member + 1) |
| 3931 | goto end; |
| 3932 | |
Willy Tarreau | e20e026 | 2021-10-15 12:10:24 +0200 | [diff] [blame] | 3933 | ret = base64urldec(items[member].start, items[member].length, |
| 3934 | decoded_header->area, decoded_header->size); |
| 3935 | if (ret == -1) |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 3936 | goto end; |
| 3937 | |
Willy Tarreau | e20e026 | 2021-10-15 12:10:24 +0200 | [diff] [blame] | 3938 | decoded_header->data = ret; |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 3939 | if (args[0].type != ARGT_STR) { |
| 3940 | smp->data.u.str = *decoded_header; |
| 3941 | smp->data.type = SMP_T_STR; |
| 3942 | goto end; |
| 3943 | } |
| 3944 | |
| 3945 | /* We look for a specific field of the header or payload part of the JWT */ |
| 3946 | smp->data.u.str = *decoded_header; |
| 3947 | |
| 3948 | retval = sample_conv_json_query(args, smp, private); |
| 3949 | |
| 3950 | end: |
| 3951 | return retval; |
| 3952 | } |
| 3953 | |
| 3954 | /* This function checks the "jwt_header_query" and "jwt_payload_query" converters' arguments. |
| 3955 | * It is based on the "json_query" converter's check with the only difference |
| 3956 | * being that the jwt converters can take 0 parameters as well. |
| 3957 | */ |
| 3958 | static int sample_conv_jwt_query_check(struct arg *arg, struct sample_conv *conv, |
| 3959 | const char *file, int line, char **err) |
| 3960 | { |
| 3961 | if (arg[1].data.str.data != 0) { |
| 3962 | if (strcmp(arg[1].data.str.area, "int") != 0) { |
| 3963 | memprintf(err, "output_type only supports \"int\" as argument"); |
| 3964 | return 0; |
| 3965 | } else { |
| 3966 | arg[1].type = ARGT_SINT; |
| 3967 | arg[1].data.sint = 0; |
| 3968 | } |
| 3969 | } |
| 3970 | return 1; |
| 3971 | } |
| 3972 | |
| 3973 | /* |
| 3974 | * If no parameter is given, return the decoded header part of a JWT (the first |
| 3975 | * base64 encoded part, corresponding to the JOSE header). |
| 3976 | * If a parameter is given, this converter acts as a "json_query" on this |
| 3977 | * decoded JSON. |
| 3978 | */ |
| 3979 | static int sample_conv_jwt_header_query(const struct arg *args, struct sample *smp, void *private) |
| 3980 | { |
| 3981 | return sample_conv_jwt_member_query(args, smp, private, JWT_ELT_JOSE); |
| 3982 | } |
| 3983 | |
| 3984 | /* |
| 3985 | * If no parameter is given, return the decoded payload part of a JWT (the |
| 3986 | * second base64 encoded part, which contains all the claims). If a parameter |
| 3987 | * is given, this converter acts as a "json_query" on this decoded JSON. |
| 3988 | */ |
| 3989 | static int sample_conv_jwt_payload_query(const struct arg *args, struct sample *smp, void *private) |
| 3990 | { |
| 3991 | return sample_conv_jwt_member_query(args, smp, private, JWT_ELT_CLAIMS); |
| 3992 | } |
| 3993 | |
| 3994 | #endif /* USE_OPENSSL */ |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 3995 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 3996 | /************************************************************************/ |
| 3997 | /* All supported sample fetch functions must be declared here */ |
| 3998 | /************************************************************************/ |
| 3999 | |
| 4000 | /* force TRUE to be returned at the fetch level */ |
| 4001 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4002 | smp_fetch_true(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4003 | { |
Willy Tarreau | 280f42b | 2018-02-19 15:34:12 +0100 | [diff] [blame] | 4004 | if (!smp_make_rw(smp)) |
| 4005 | return 0; |
| 4006 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4007 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4008 | smp->data.u.sint = 1; |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4009 | return 1; |
| 4010 | } |
| 4011 | |
| 4012 | /* force FALSE to be returned at the fetch level */ |
| 4013 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4014 | smp_fetch_false(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4015 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4016 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4017 | smp->data.u.sint = 0; |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4018 | return 1; |
| 4019 | } |
| 4020 | |
| 4021 | /* retrieve environment variable $1 as a string */ |
| 4022 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4023 | smp_fetch_env(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4024 | { |
| 4025 | char *env; |
| 4026 | |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 4027 | if (args[0].type != ARGT_STR) |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4028 | return 0; |
| 4029 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4030 | env = getenv(args[0].data.str.area); |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4031 | if (!env) |
| 4032 | return 0; |
| 4033 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4034 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4035 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4036 | smp->data.u.str.area = env; |
| 4037 | smp->data.u.str.data = strlen(env); |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4038 | return 1; |
| 4039 | } |
| 4040 | |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4041 | /* Validates the data unit argument passed to "date" fetch. Argument 1 support an |
| 4042 | * optional string representing the unit of the result: "s" for seconds, "ms" for |
| 4043 | * milliseconds and "us" for microseconds. |
| 4044 | * Returns 0 on error and non-zero if OK. |
| 4045 | */ |
| 4046 | int smp_check_date_unit(struct arg *args, char **err) |
| 4047 | { |
| 4048 | if (args[1].type == ARGT_STR) { |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4049 | long long int unit; |
| 4050 | |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4051 | if (strcmp(args[1].data.str.area, "s") == 0) { |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4052 | unit = TIME_UNIT_S; |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4053 | } |
| 4054 | else if (strcmp(args[1].data.str.area, "ms") == 0) { |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4055 | unit = TIME_UNIT_MS; |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4056 | } |
| 4057 | else if (strcmp(args[1].data.str.area, "us") == 0) { |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4058 | unit = TIME_UNIT_US; |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4059 | } |
| 4060 | else { |
| 4061 | memprintf(err, "expects 's', 'ms' or 'us', got '%s'", |
| 4062 | args[1].data.str.area); |
| 4063 | return 0; |
| 4064 | } |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4065 | |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 4066 | chunk_destroy(&args[1].data.str); |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4067 | args[1].type = ARGT_SINT; |
Christopher Faulet | 9591713 | 2020-08-05 23:07:07 +0200 | [diff] [blame] | 4068 | args[1].data.sint = unit; |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4069 | } |
| 4070 | else if (args[1].type != ARGT_STOP) { |
| 4071 | memprintf(err, "Unexpected arg type"); |
| 4072 | return 0; |
| 4073 | } |
| 4074 | |
| 4075 | return 1; |
| 4076 | } |
| 4077 | |
| 4078 | /* retrieve the current local date in epoch time, converts it to milliseconds |
| 4079 | * or microseconds if asked to in optional args[1] unit param, and applies an |
| 4080 | * optional args[0] offset. |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4081 | */ |
| 4082 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4083 | smp_fetch_date(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4084 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4085 | smp->data.u.sint = date.tv_sec; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4086 | |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4087 | /* report in milliseconds */ |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 4088 | if (args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_MS) { |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4089 | smp->data.u.sint *= 1000; |
| 4090 | smp->data.u.sint += date.tv_usec / 1000; |
| 4091 | } |
| 4092 | /* report in microseconds */ |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 4093 | else if (args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_US) { |
Damien Claisse | ae6f125 | 2019-10-30 15:57:28 +0000 | [diff] [blame] | 4094 | smp->data.u.sint *= 1000000; |
| 4095 | smp->data.u.sint += date.tv_usec; |
| 4096 | } |
| 4097 | |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4098 | /* add offset */ |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 4099 | if (args[0].type == ARGT_SINT) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4100 | smp->data.u.sint += args[0].data.sint; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4101 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4102 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 4103 | smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 4104 | return 1; |
| 4105 | } |
| 4106 | |
Etienne Carriere | a792a0a | 2018-01-17 13:43:24 +0100 | [diff] [blame] | 4107 | /* retrieve the current microsecond part of the date */ |
| 4108 | static int |
| 4109 | smp_fetch_date_us(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4110 | { |
| 4111 | smp->data.u.sint = date.tv_usec; |
| 4112 | smp->data.type = SMP_T_SINT; |
| 4113 | smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 4114 | return 1; |
| 4115 | } |
| 4116 | |
| 4117 | |
Nenad Merdanovic | 807a6e7 | 2017-03-12 22:00:00 +0100 | [diff] [blame] | 4118 | /* returns the hostname */ |
| 4119 | static int |
| 4120 | smp_fetch_hostname(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4121 | { |
| 4122 | smp->data.type = SMP_T_STR; |
| 4123 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4124 | smp->data.u.str.area = hostname; |
| 4125 | smp->data.u.str.data = strlen(hostname); |
Nenad Merdanovic | 807a6e7 | 2017-03-12 22:00:00 +0100 | [diff] [blame] | 4126 | return 1; |
| 4127 | } |
| 4128 | |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4129 | /* returns the number of processes */ |
| 4130 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4131 | smp_fetch_nbproc(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4132 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4133 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 9135859 | 2021-06-15 08:08:04 +0200 | [diff] [blame] | 4134 | smp->data.u.sint = 1; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4135 | return 1; |
| 4136 | } |
| 4137 | |
| 4138 | /* returns the number of the current process (between 1 and nbproc */ |
| 4139 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4140 | smp_fetch_proc(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4141 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4142 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | e8422bf | 2021-06-15 09:08:18 +0200 | [diff] [blame] | 4143 | smp->data.u.sint = 1; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4144 | return 1; |
| 4145 | } |
| 4146 | |
Christopher Faulet | 34adb2a | 2017-11-21 21:45:38 +0100 | [diff] [blame] | 4147 | /* returns the number of the current thread (between 1 and nbthread */ |
| 4148 | static int |
| 4149 | smp_fetch_thread(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4150 | { |
| 4151 | smp->data.type = SMP_T_SINT; |
| 4152 | smp->data.u.sint = tid; |
| 4153 | return 1; |
| 4154 | } |
| 4155 | |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 4156 | /* generate a random 32-bit integer for whatever purpose, with an optional |
| 4157 | * range specified in argument. |
| 4158 | */ |
| 4159 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4160 | smp_fetch_rand(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 4161 | { |
Willy Tarreau | 95f40c6 | 2022-11-24 14:54:29 +0100 | [diff] [blame] | 4162 | smp->data.u.sint = statistical_prng(); |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 4163 | |
| 4164 | /* reduce if needed. Don't do a modulo, use all bits! */ |
Christopher Faulet | e6e7a58 | 2021-01-29 11:29:28 +0100 | [diff] [blame] | 4165 | if (args[0].type == ARGT_SINT) |
Willy Tarreau | aa8bbc1 | 2020-03-08 18:01:10 +0100 | [diff] [blame] | 4166 | smp->data.u.sint = ((u64)smp->data.u.sint * (u64)args[0].data.sint) >> 32; |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 4167 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4168 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 4169 | smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 4170 | return 1; |
| 4171 | } |
| 4172 | |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4173 | /* returns true if the current process is stopping */ |
| 4174 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4175 | smp_fetch_stopping(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4176 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4177 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4178 | smp->data.u.sint = stopping; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4179 | return 1; |
| 4180 | } |
| 4181 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4182 | /* returns the number of calls of the current stream's process_stream() */ |
| 4183 | static int |
| 4184 | smp_fetch_cpu_calls(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4185 | { |
Willy Tarreau | e0dd210 | 2020-04-29 11:59:02 +0200 | [diff] [blame] | 4186 | if (!smp->strm) |
| 4187 | return 0; |
| 4188 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4189 | smp->data.type = SMP_T_SINT; |
| 4190 | smp->data.u.sint = smp->strm->task->calls; |
| 4191 | return 1; |
| 4192 | } |
| 4193 | |
| 4194 | /* returns the average number of nanoseconds spent processing the stream per call */ |
| 4195 | static int |
| 4196 | smp_fetch_cpu_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4197 | { |
Willy Tarreau | e0dd210 | 2020-04-29 11:59:02 +0200 | [diff] [blame] | 4198 | if (!smp->strm) |
| 4199 | return 0; |
| 4200 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4201 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6a28a30 | 2022-09-07 09:17:45 +0200 | [diff] [blame] | 4202 | smp->data.u.sint = smp->strm->task->calls ? smp->strm->cpu_time / smp->strm->task->calls : 0; |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4203 | return 1; |
| 4204 | } |
| 4205 | |
| 4206 | /* returns the total number of nanoseconds spent processing the stream */ |
| 4207 | static int |
| 4208 | smp_fetch_cpu_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4209 | { |
Willy Tarreau | e0dd210 | 2020-04-29 11:59:02 +0200 | [diff] [blame] | 4210 | if (!smp->strm) |
| 4211 | return 0; |
| 4212 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4213 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6a28a30 | 2022-09-07 09:17:45 +0200 | [diff] [blame] | 4214 | smp->data.u.sint = smp->strm->cpu_time; |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4215 | return 1; |
| 4216 | } |
| 4217 | |
| 4218 | /* returns the average number of nanoseconds per call spent waiting for other tasks to be processed */ |
| 4219 | static int |
| 4220 | smp_fetch_lat_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4221 | { |
Willy Tarreau | e0dd210 | 2020-04-29 11:59:02 +0200 | [diff] [blame] | 4222 | if (!smp->strm) |
| 4223 | return 0; |
| 4224 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4225 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6a28a30 | 2022-09-07 09:17:45 +0200 | [diff] [blame] | 4226 | smp->data.u.sint = smp->strm->task->calls ? smp->strm->lat_time / smp->strm->task->calls : 0; |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4227 | return 1; |
| 4228 | } |
| 4229 | |
| 4230 | /* returns the total number of nanoseconds per call spent waiting for other tasks to be processed */ |
| 4231 | static int |
| 4232 | smp_fetch_lat_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4233 | { |
Willy Tarreau | e0dd210 | 2020-04-29 11:59:02 +0200 | [diff] [blame] | 4234 | if (!smp->strm) |
| 4235 | return 0; |
| 4236 | |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4237 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6a28a30 | 2022-09-07 09:17:45 +0200 | [diff] [blame] | 4238 | smp->data.u.sint = smp->strm->lat_time; |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4239 | return 1; |
| 4240 | } |
| 4241 | |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4242 | static int smp_fetch_const_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4243 | { |
| 4244 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4245 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4246 | smp->data.u.str.area = args[0].data.str.area; |
| 4247 | smp->data.u.str.data = args[0].data.str.data; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4248 | return 1; |
| 4249 | } |
| 4250 | |
| 4251 | static int smp_check_const_bool(struct arg *args, char **err) |
| 4252 | { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4253 | if (strcasecmp(args[0].data.str.area, "true") == 0 || |
| 4254 | strcasecmp(args[0].data.str.area, "1") == 0) { |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 4255 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 4256 | args[0].type = ARGT_SINT; |
| 4257 | args[0].data.sint = 1; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4258 | return 1; |
| 4259 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4260 | if (strcasecmp(args[0].data.str.area, "false") == 0 || |
| 4261 | strcasecmp(args[0].data.str.area, "0") == 0) { |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 4262 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 4263 | args[0].type = ARGT_SINT; |
| 4264 | args[0].data.sint = 0; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4265 | return 1; |
| 4266 | } |
| 4267 | memprintf(err, "Expects 'true', 'false', '0' or '1'"); |
| 4268 | return 0; |
| 4269 | } |
| 4270 | |
| 4271 | static int smp_fetch_const_bool(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4272 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4273 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4274 | smp->data.u.sint = args[0].data.sint; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4275 | return 1; |
| 4276 | } |
| 4277 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 4278 | static int smp_fetch_const_int(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4279 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4280 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4281 | smp->data.u.sint = args[0].data.sint; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4282 | return 1; |
| 4283 | } |
| 4284 | |
| 4285 | static int smp_fetch_const_ipv4(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4286 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4287 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4288 | smp->data.u.ipv4 = args[0].data.ipv4; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4289 | return 1; |
| 4290 | } |
| 4291 | |
| 4292 | static int smp_fetch_const_ipv6(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4293 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4294 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4295 | smp->data.u.ipv6 = args[0].data.ipv6; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4296 | return 1; |
| 4297 | } |
| 4298 | |
| 4299 | static int smp_check_const_bin(struct arg *args, char **err) |
| 4300 | { |
David Carlier | 64a16ab | 2016-04-08 10:37:02 +0100 | [diff] [blame] | 4301 | char *binstr = NULL; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4302 | int binstrlen; |
| 4303 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4304 | if (!parse_binary(args[0].data.str.area, &binstr, &binstrlen, err)) |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4305 | return 0; |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 4306 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4307 | args[0].type = ARGT_STR; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4308 | args[0].data.str.area = binstr; |
| 4309 | args[0].data.str.data = binstrlen; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4310 | return 1; |
| 4311 | } |
| 4312 | |
| 4313 | static int smp_fetch_const_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4314 | { |
| 4315 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4316 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4317 | smp->data.u.str.area = args[0].data.str.area; |
| 4318 | smp->data.u.str.data = args[0].data.str.data; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4319 | return 1; |
| 4320 | } |
| 4321 | |
| 4322 | static int smp_check_const_meth(struct arg *args, char **err) |
| 4323 | { |
| 4324 | enum http_meth_t meth; |
| 4325 | int i; |
| 4326 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4327 | meth = find_http_meth(args[0].data.str.area, args[0].data.str.data); |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4328 | if (meth != HTTP_METH_OTHER) { |
Christopher Faulet | 6ad7df4 | 2020-08-07 11:45:18 +0200 | [diff] [blame] | 4329 | chunk_destroy(&args[0].data.str); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 4330 | args[0].type = ARGT_SINT; |
| 4331 | args[0].data.sint = meth; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4332 | } else { |
Ilya Shipitsin | 6b79f38 | 2020-07-23 00:32:55 +0500 | [diff] [blame] | 4333 | /* Check method avalaibility. A method is a token defined as : |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4334 | * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / |
| 4335 | * "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA |
| 4336 | * token = 1*tchar |
| 4337 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4338 | for (i = 0; i < args[0].data.str.data; i++) { |
| 4339 | if (!HTTP_IS_TOKEN(args[0].data.str.area[i])) { |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4340 | memprintf(err, "expects valid method."); |
| 4341 | return 0; |
| 4342 | } |
| 4343 | } |
| 4344 | } |
| 4345 | return 1; |
| 4346 | } |
| 4347 | |
| 4348 | static int smp_fetch_const_meth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4349 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4350 | smp->data.type = SMP_T_METH; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 4351 | if (args[0].type == ARGT_SINT) { |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4352 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4353 | smp->data.u.meth.meth = args[0].data.sint; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4354 | smp->data.u.meth.str.area = ""; |
| 4355 | smp->data.u.meth.str.data = 0; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4356 | } else { |
| 4357 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4358 | smp->data.u.meth.meth = HTTP_METH_OTHER; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4359 | smp->data.u.meth.str.area = args[0].data.str.area; |
| 4360 | smp->data.u.meth.str.data = args[0].data.str.data; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4361 | } |
| 4362 | return 1; |
| 4363 | } |
| 4364 | |
Luca Schimweg | 8a694b8 | 2019-09-10 15:42:52 +0200 | [diff] [blame] | 4365 | // This function checks the "uuid" sample's arguments. |
| 4366 | // Function won't get called when no parameter is specified (maybe a bug?) |
| 4367 | static int smp_check_uuid(struct arg *args, char **err) |
| 4368 | { |
| 4369 | if (!args[0].type) { |
| 4370 | args[0].type = ARGT_SINT; |
| 4371 | args[0].data.sint = 4; |
| 4372 | } |
| 4373 | else if (args[0].data.sint != 4) { |
| 4374 | memprintf(err, "Unsupported UUID version: '%lld'", args[0].data.sint); |
| 4375 | return 0; |
| 4376 | } |
| 4377 | |
| 4378 | return 1; |
| 4379 | } |
| 4380 | |
| 4381 | // Generate a RFC4122 UUID (default is v4 = fully random) |
| 4382 | static int smp_fetch_uuid(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4383 | { |
| 4384 | if (args[0].data.sint == 4 || !args[0].type) { |
Willy Tarreau | ee3bcdd | 2020-03-08 17:48:17 +0100 | [diff] [blame] | 4385 | ha_generate_uuid(&trash); |
Luca Schimweg | 8a694b8 | 2019-09-10 15:42:52 +0200 | [diff] [blame] | 4386 | smp->data.type = SMP_T_STR; |
| 4387 | smp->flags = SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 4388 | smp->data.u.str = trash; |
| 4389 | return 1; |
| 4390 | } |
| 4391 | |
| 4392 | // more implementations of other uuid formats possible here |
| 4393 | return 0; |
| 4394 | } |
| 4395 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4396 | /* Note: must not be declared <const> as its list will be overwritten. |
| 4397 | * Note: fetches that may return multiple types must be declared as the lowest |
| 4398 | * common denominator, the type that can be casted into all other ones. For |
| 4399 | * instance IPv4/IPv6 must be declared IPv4. |
| 4400 | */ |
| 4401 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Willy Tarreau | 0209c97 | 2021-03-26 12:03:11 +0100 | [diff] [blame] | 4402 | { "always_false", smp_fetch_false, 0, NULL, SMP_T_BOOL, SMP_USE_CONST }, |
| 4403 | { "always_true", smp_fetch_true, 0, NULL, SMP_T_BOOL, SMP_USE_CONST }, |
| 4404 | { "env", smp_fetch_env, ARG1(1,STR), NULL, SMP_T_STR, SMP_USE_CONST }, |
| 4405 | { "date", smp_fetch_date, ARG2(0,SINT,STR), smp_check_date_unit, SMP_T_SINT, SMP_USE_CONST }, |
| 4406 | { "date_us", smp_fetch_date_us, 0, NULL, SMP_T_SINT, SMP_USE_CONST }, |
| 4407 | { "hostname", smp_fetch_hostname, 0, NULL, SMP_T_STR, SMP_USE_CONST }, |
| 4408 | { "nbproc", smp_fetch_nbproc,0, NULL, SMP_T_SINT, SMP_USE_CONST }, |
| 4409 | { "proc", smp_fetch_proc, 0, NULL, SMP_T_SINT, SMP_USE_CONST }, |
| 4410 | { "thread", smp_fetch_thread, 0, NULL, SMP_T_SINT, SMP_USE_CONST }, |
| 4411 | { "rand", smp_fetch_rand, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_USE_CONST }, |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 4412 | { "stopping", smp_fetch_stopping, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN }, |
Willy Tarreau | 0209c97 | 2021-03-26 12:03:11 +0100 | [diff] [blame] | 4413 | { "uuid", smp_fetch_uuid, ARG1(0, SINT), smp_check_uuid, SMP_T_STR, SMP_USE_CONST }, |
Willy Tarreau | 70fe944 | 2018-11-22 16:07:39 +0100 | [diff] [blame] | 4414 | |
| 4415 | { "cpu_calls", smp_fetch_cpu_calls, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
| 4416 | { "cpu_ns_avg", smp_fetch_cpu_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
| 4417 | { "cpu_ns_tot", smp_fetch_cpu_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
| 4418 | { "lat_ns_avg", smp_fetch_lat_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
| 4419 | { "lat_ns_tot", smp_fetch_lat_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4420 | |
Willy Tarreau | 0209c97 | 2021-03-26 12:03:11 +0100 | [diff] [blame] | 4421 | { "str", smp_fetch_const_str, ARG1(1,STR), NULL , SMP_T_STR, SMP_USE_CONST }, |
| 4422 | { "bool", smp_fetch_const_bool, ARG1(1,STR), smp_check_const_bool, SMP_T_BOOL, SMP_USE_CONST }, |
| 4423 | { "int", smp_fetch_const_int, ARG1(1,SINT), NULL , SMP_T_SINT, SMP_USE_CONST }, |
| 4424 | { "ipv4", smp_fetch_const_ipv4, ARG1(1,IPV4), NULL , SMP_T_IPV4, SMP_USE_CONST }, |
| 4425 | { "ipv6", smp_fetch_const_ipv6, ARG1(1,IPV6), NULL , SMP_T_IPV6, SMP_USE_CONST }, |
| 4426 | { "bin", smp_fetch_const_bin, ARG1(1,STR), smp_check_const_bin , SMP_T_BIN, SMP_USE_CONST }, |
| 4427 | { "meth", smp_fetch_const_meth, ARG1(1,STR), smp_check_const_meth, SMP_T_METH, SMP_USE_CONST }, |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 4428 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 4429 | { /* END */ }, |
| 4430 | }}; |
| 4431 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 4432 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 4433 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 4434 | /* Note: must not be declared <const> as its list will be overwritten */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 4435 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
Nikola Sale | 0dbf038 | 2022-04-03 18:11:53 +0200 | [diff] [blame] | 4436 | { "add_item",sample_conv_add_item, ARG3(2,STR,STR,STR), smp_check_add_item, SMP_T_STR, SMP_T_STR }, |
Moemen MHEDHBI | 848216f | 2021-04-02 01:05:07 +0200 | [diff] [blame] | 4437 | { "debug", sample_conv_debug, ARG2(0,STR,STR), smp_check_debug, SMP_T_ANY, SMP_T_ANY }, |
| 4438 | { "b64dec", sample_conv_base642bin, 0, NULL, SMP_T_STR, SMP_T_BIN }, |
| 4439 | { "base64", sample_conv_bin2base64, 0, NULL, SMP_T_BIN, SMP_T_STR }, |
Nikola Sale | 0dbf038 | 2022-04-03 18:11:53 +0200 | [diff] [blame] | 4440 | { "concat", sample_conv_concat, ARG3(1,STR,STR,STR), smp_check_concat, SMP_T_STR, SMP_T_STR }, |
Moemen MHEDHBI | 848216f | 2021-04-02 01:05:07 +0200 | [diff] [blame] | 4441 | { "ub64enc", sample_conv_bin2base64url,0, NULL, SMP_T_BIN, SMP_T_STR }, |
| 4442 | { "ub64dec", sample_conv_base64url2bin,0, NULL, SMP_T_STR, SMP_T_BIN }, |
| 4443 | { "upper", sample_conv_str2upper, 0, NULL, SMP_T_STR, SMP_T_STR }, |
| 4444 | { "lower", sample_conv_str2lower, 0, NULL, SMP_T_STR, SMP_T_STR }, |
| 4445 | { "length", sample_conv_length, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
Marcin Deranek | 40ca09c | 2021-07-13 14:05:24 +0200 | [diff] [blame] | 4446 | { "be2dec", sample_conv_be2dec, ARG3(1,STR,SINT,SINT), sample_conv_be2dec_check, SMP_T_BIN, SMP_T_STR }, |
Marcin Deranek | da0264a | 2021-07-13 14:08:56 +0200 | [diff] [blame] | 4447 | { "be2hex", sample_conv_be2hex, ARG3(1,STR,SINT,SINT), sample_conv_be2hex_check, SMP_T_BIN, SMP_T_STR }, |
Moemen MHEDHBI | 848216f | 2021-04-02 01:05:07 +0200 | [diff] [blame] | 4448 | { "hex", sample_conv_bin2hex, 0, NULL, SMP_T_BIN, SMP_T_STR }, |
| 4449 | { "hex2i", sample_conv_hex2int, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
| 4450 | { "ipmask", sample_conv_ipmask, ARG2(1,MSK4,MSK6), NULL, SMP_T_ADDR, SMP_T_IPV4 }, |
| 4451 | { "ltime", sample_conv_ltime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR }, |
| 4452 | { "utime", sample_conv_utime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR }, |
| 4453 | { "crc32", sample_conv_crc32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4454 | { "crc32c", sample_conv_crc32c, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4455 | { "djb2", sample_conv_djb2, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4456 | { "sdbm", sample_conv_sdbm, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4457 | { "wt6", sample_conv_wt6, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4458 | { "xxh3", sample_conv_xxh3, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4459 | { "xxh32", sample_conv_xxh32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4460 | { "xxh64", sample_conv_xxh64, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 4461 | { "json", sample_conv_json, ARG1(1,STR), sample_conv_json_check, SMP_T_STR, SMP_T_STR }, |
| 4462 | { "bytes", sample_conv_bytes, ARG2(1,SINT,SINT), NULL, SMP_T_BIN, SMP_T_BIN }, |
| 4463 | { "field", sample_conv_field, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR }, |
| 4464 | { "word", sample_conv_word, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR }, |
Thayne McCombs | 02cf4ec | 2022-12-14 00:19:59 -0700 | [diff] [blame] | 4465 | { "param", sample_conv_param, ARG2(1,STR,STR), sample_conv_param_check, SMP_T_STR, SMP_T_STR }, |
Moemen MHEDHBI | 848216f | 2021-04-02 01:05:07 +0200 | [diff] [blame] | 4466 | { "regsub", sample_conv_regsub, ARG3(2,REG,STR,STR), sample_conv_regsub_check, SMP_T_STR, SMP_T_STR }, |
| 4467 | { "sha1", sample_conv_sha1, 0, NULL, SMP_T_BIN, SMP_T_BIN }, |
Willy Tarreau | 99ea188 | 2021-10-06 15:37:17 +0200 | [diff] [blame] | 4468 | { "strcmp", sample_conv_strcmp, ARG1(1,STR), smp_check_strcmp, SMP_T_STR, SMP_T_SINT }, |
William Lallemand | dd754cb | 2022-08-26 16:21:28 +0200 | [diff] [blame] | 4469 | { "host_only", sample_conv_host_only, 0, NULL, SMP_T_STR, SMP_T_STR }, |
| 4470 | { "port_only", sample_conv_port_only, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
Frédéric Lécaille | 50290fb | 2019-02-27 14:34:51 +0100 | [diff] [blame] | 4471 | |
| 4472 | /* gRPC converters. */ |
Frédéric Lécaille | bfe6138 | 2019-03-06 14:34:36 +0100 | [diff] [blame] | 4473 | { "ungrpc", sample_conv_ungrpc, ARG2(1,PBUF_FNUM,STR), sample_conv_protobuf_check, SMP_T_BIN, SMP_T_BIN }, |
| 4474 | { "protobuf", sample_conv_protobuf, ARG2(1,PBUF_FNUM,STR), sample_conv_protobuf_check, SMP_T_BIN, SMP_T_BIN }, |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 4475 | |
Baptiste Assmann | e138dda | 2020-10-22 15:39:03 +0200 | [diff] [blame] | 4476 | /* FIX converters */ |
| 4477 | { "fix_is_valid", sample_conv_fix_is_valid, 0, NULL, SMP_T_BIN, SMP_T_BOOL }, |
| 4478 | { "fix_tag_value", sample_conv_fix_tag_value, ARG1(1,STR), sample_conv_fix_value_check, SMP_T_BIN, SMP_T_BIN }, |
| 4479 | |
Baptiste Assmann | e279ca6 | 2020-10-27 18:10:06 +0100 | [diff] [blame] | 4480 | /* MQTT converters */ |
| 4481 | { "mqtt_is_valid", sample_conv_mqtt_is_valid, 0, NULL, SMP_T_BIN, SMP_T_BOOL }, |
| 4482 | { "mqtt_field_value", sample_conv_mqtt_field_value, ARG2(2,STR,STR), sample_conv_mqtt_field_value_check, SMP_T_BIN, SMP_T_STR }, |
| 4483 | |
Tim Duesterhus | 3943e4f | 2020-09-11 14:25:23 +0200 | [diff] [blame] | 4484 | { "iif", sample_conv_iif, ARG2(2, STR, STR), NULL, SMP_T_BOOL, SMP_T_STR }, |
| 4485 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 4486 | { "and", sample_conv_binary_and, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4487 | { "or", sample_conv_binary_or, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4488 | { "xor", sample_conv_binary_xor, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4489 | { "cpl", sample_conv_binary_cpl, 0, NULL, SMP_T_SINT, SMP_T_SINT }, |
| 4490 | { "bool", sample_conv_arith_bool, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 4491 | { "not", sample_conv_arith_not, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 4492 | { "odd", sample_conv_arith_odd, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 4493 | { "even", sample_conv_arith_even, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 4494 | { "add", sample_conv_arith_add, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4495 | { "sub", sample_conv_arith_sub, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4496 | { "mul", sample_conv_arith_mul, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4497 | { "div", sample_conv_arith_div, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4498 | { "mod", sample_conv_arith_mod, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 4499 | { "neg", sample_conv_arith_neg, 0, NULL, SMP_T_SINT, SMP_T_SINT }, |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 4500 | |
Christopher Faulet | ea159d6 | 2020-04-01 16:21:44 +0200 | [diff] [blame] | 4501 | { "htonl", sample_conv_htonl, 0, NULL, SMP_T_SINT, SMP_T_BIN }, |
| 4502 | { "cut_crlf", sample_conv_cut_crlf, 0, NULL, SMP_T_STR, SMP_T_STR }, |
Christopher Faulet | 51fc9d1 | 2020-04-01 17:24:41 +0200 | [diff] [blame] | 4503 | { "ltrim", sample_conv_ltrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR }, |
Christopher Faulet | 568415a | 2020-04-01 17:24:47 +0200 | [diff] [blame] | 4504 | { "rtrim", sample_conv_rtrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR }, |
Alex | 51c8ad4 | 2021-04-15 16:45:15 +0200 | [diff] [blame] | 4505 | { "json_query", sample_conv_json_query, ARG2(1,STR,STR), sample_check_json_query , SMP_T_STR, SMP_T_ANY }, |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 4506 | |
| 4507 | #ifdef USE_OPENSSL |
| 4508 | /* JSON Web Token converters */ |
| 4509 | { "jwt_header_query", sample_conv_jwt_header_query, ARG2(0,STR,STR), sample_conv_jwt_query_check, SMP_T_BIN, SMP_T_ANY }, |
| 4510 | { "jwt_payload_query", sample_conv_jwt_payload_query, ARG2(0,STR,STR), sample_conv_jwt_query_check, SMP_T_BIN, SMP_T_ANY }, |
Remi Tricot-Le Breton | 130e142 | 2021-10-01 15:36:58 +0200 | [diff] [blame] | 4511 | { "jwt_verify", sample_conv_jwt_verify, ARG2(2,STR,STR), sample_conv_jwt_verify_check, SMP_T_BIN, SMP_T_SINT }, |
Remi Tricot-Le Breton | 0a72f5e | 2021-10-01 15:36:57 +0200 | [diff] [blame] | 4512 | #endif |
Willy Tarreau | 9fcb984 | 2012-04-20 14:45:49 +0200 | [diff] [blame] | 4513 | { NULL, NULL, 0, 0, 0 }, |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 4514 | }}; |
| 4515 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 4516 | INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws); |