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 | |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 19 | #include <types/global.h> |
| 20 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 21 | #include <common/chunk.h> |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 22 | #include <common/hash.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 23 | #include <common/standard.h> |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 24 | #include <common/uri_auth.h> |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 25 | #include <common/base64.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 26 | |
Willy Tarreau | 9fcb984 | 2012-04-20 14:45:49 +0200 | [diff] [blame] | 27 | #include <proto/arg.h> |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 28 | #include <proto/auth.h> |
| 29 | #include <proto/log.h> |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 30 | #include <proto/proto_http.h> |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 31 | #include <proto/proxy.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 32 | #include <proto/sample.h> |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 33 | #include <proto/stick_table.h> |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 34 | #include <proto/vars.h> |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 35 | |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 36 | #include <import/sha1.h> |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 37 | #include <import/xxhash.h> |
| 38 | |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 39 | /* sample type names */ |
| 40 | const char *smp_to_type[SMP_TYPES] = { |
Thierry FOURNIER | 9c627e8 | 2015-06-03 20:12:35 +0200 | [diff] [blame] | 41 | [SMP_T_ANY] = "any", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 42 | [SMP_T_BOOL] = "bool", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 43 | [SMP_T_SINT] = "sint", |
| 44 | [SMP_T_ADDR] = "addr", |
| 45 | [SMP_T_IPV4] = "ipv4", |
| 46 | [SMP_T_IPV6] = "ipv6", |
| 47 | [SMP_T_STR] = "str", |
| 48 | [SMP_T_BIN] = "bin", |
Thierry FOURNIER | 4c2479e | 2015-06-03 20:12:04 +0200 | [diff] [blame] | 49 | [SMP_T_METH] = "meth", |
Willy Tarreau | 1cf8f08 | 2014-02-07 12:14:54 +0100 | [diff] [blame] | 50 | }; |
| 51 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 52 | /* static sample used in sample_process() when <p> is NULL */ |
Willy Tarreau | b4a88f0 | 2012-04-23 21:35:11 +0200 | [diff] [blame] | 53 | static struct sample temp_smp; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 54 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 55 | /* list head of all known sample fetch keywords */ |
| 56 | static struct sample_fetch_kw_list sample_fetches = { |
| 57 | .list = LIST_HEAD_INIT(sample_fetches.list) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 58 | }; |
| 59 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 60 | /* list head of all known sample format conversion keywords */ |
| 61 | static struct sample_conv_kw_list sample_convs = { |
| 62 | .list = LIST_HEAD_INIT(sample_convs.list) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 65 | const unsigned int fetch_cap[SMP_SRC_ENTRIES] = { |
| 66 | [SMP_SRC_INTRN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 67 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 68 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 69 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 70 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 71 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 72 | SMP_VAL_FE_LOG_END), |
| 73 | |
| 74 | [SMP_SRC_LISTN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 75 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 76 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 77 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 78 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 79 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 80 | SMP_VAL_FE_LOG_END), |
| 81 | |
| 82 | [SMP_SRC_FTEND] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 83 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 84 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 85 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 86 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 87 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 88 | SMP_VAL_FE_LOG_END), |
| 89 | |
| 90 | [SMP_SRC_L4CLI] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 91 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 92 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 93 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 94 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 95 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 96 | SMP_VAL_FE_LOG_END), |
| 97 | |
| 98 | [SMP_SRC_L5CLI] = (SMP_VAL___________ | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 99 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 100 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 101 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 102 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 103 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 104 | SMP_VAL_FE_LOG_END), |
| 105 | |
| 106 | [SMP_SRC_TRACK] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT | |
| 107 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 108 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 109 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 110 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 111 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 112 | SMP_VAL_FE_LOG_END), |
| 113 | |
| 114 | [SMP_SRC_L6REQ] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT | |
| 115 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 116 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 117 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 118 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 119 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 120 | SMP_VAL___________), |
| 121 | |
| 122 | [SMP_SRC_HRQHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT | |
| 123 | SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 124 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 125 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 126 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 127 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 128 | SMP_VAL___________), |
| 129 | |
| 130 | [SMP_SRC_HRQHP] = (SMP_VAL___________ | SMP_VAL___________ | 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 | |
| 136 | SMP_VAL_FE_LOG_END), |
| 137 | |
| 138 | [SMP_SRC_HRQBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 139 | SMP_VAL___________ | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK | |
| 140 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 141 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ | |
| 142 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 143 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 144 | SMP_VAL___________), |
| 145 | |
| 146 | [SMP_SRC_BKEND] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 147 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 148 | SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY | |
| 149 | SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 150 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 151 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 152 | SMP_VAL_FE_LOG_END), |
| 153 | |
| 154 | [SMP_SRC_SERVR] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 155 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 156 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 157 | SMP_VAL___________ | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT | |
| 158 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 159 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 160 | SMP_VAL_FE_LOG_END), |
| 161 | |
| 162 | [SMP_SRC_L4SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 163 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 164 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 165 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 166 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 167 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 168 | SMP_VAL_FE_LOG_END), |
| 169 | |
| 170 | [SMP_SRC_L5SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 171 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 172 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 173 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 174 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 175 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 176 | SMP_VAL_FE_LOG_END), |
| 177 | |
| 178 | [SMP_SRC_L6RES] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 179 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 180 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 181 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 182 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 183 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 184 | SMP_VAL___________), |
| 185 | |
| 186 | [SMP_SRC_HRSHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 187 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 188 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 189 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 190 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 191 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 192 | SMP_VAL___________), |
| 193 | |
| 194 | [SMP_SRC_HRSHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 195 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 196 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 197 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT | |
| 198 | SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL | |
| 199 | SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY | |
| 200 | SMP_VAL_FE_LOG_END), |
| 201 | |
| 202 | [SMP_SRC_HRSBO] = (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___________ | |
| 206 | SMP_VAL___________ | 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 | |
| 208 | SMP_VAL___________), |
| 209 | |
| 210 | [SMP_SRC_RQFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 211 | 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___________ | |
| 215 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 216 | SMP_VAL_FE_LOG_END), |
| 217 | |
| 218 | [SMP_SRC_RSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 219 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 220 | 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___________ | |
| 224 | SMP_VAL_FE_LOG_END), |
| 225 | |
| 226 | [SMP_SRC_TXFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 227 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 228 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 229 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 230 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 231 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 232 | SMP_VAL_FE_LOG_END), |
| 233 | |
| 234 | [SMP_SRC_SSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 235 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 236 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 237 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 238 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 239 | SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ | |
| 240 | SMP_VAL_FE_LOG_END), |
| 241 | }; |
| 242 | |
| 243 | static const char *fetch_src_names[SMP_SRC_ENTRIES] = { |
| 244 | [SMP_SRC_INTRN] = "internal state", |
| 245 | [SMP_SRC_LISTN] = "listener", |
| 246 | [SMP_SRC_FTEND] = "frontend", |
| 247 | [SMP_SRC_L4CLI] = "client address", |
| 248 | [SMP_SRC_L5CLI] = "client-side connection", |
| 249 | [SMP_SRC_TRACK] = "track counters", |
| 250 | [SMP_SRC_L6REQ] = "request buffer", |
| 251 | [SMP_SRC_HRQHV] = "HTTP request headers", |
| 252 | [SMP_SRC_HRQHP] = "HTTP request", |
| 253 | [SMP_SRC_HRQBO] = "HTTP request body", |
| 254 | [SMP_SRC_BKEND] = "backend", |
| 255 | [SMP_SRC_SERVR] = "server", |
| 256 | [SMP_SRC_L4SRV] = "server address", |
| 257 | [SMP_SRC_L5SRV] = "server-side connection", |
| 258 | [SMP_SRC_L6RES] = "response buffer", |
| 259 | [SMP_SRC_HRSHV] = "HTTP response headers", |
| 260 | [SMP_SRC_HRSHP] = "HTTP response", |
| 261 | [SMP_SRC_HRSBO] = "HTTP response body", |
| 262 | [SMP_SRC_RQFIN] = "request buffer statistics", |
| 263 | [SMP_SRC_RSFIN] = "response buffer statistics", |
| 264 | [SMP_SRC_TXFIN] = "transaction statistics", |
| 265 | [SMP_SRC_SSFIN] = "session statistics", |
| 266 | }; |
| 267 | |
Willy Tarreau | bf8e251 | 2013-03-25 14:52:41 +0100 | [diff] [blame] | 268 | static const char *fetch_ckp_names[SMP_CKP_ENTRIES] = { |
| 269 | [SMP_CKP_FE_CON_ACC] = "frontend tcp-request connection rule", |
| 270 | [SMP_CKP_FE_SES_ACC] = "frontend tcp-request session rule", |
| 271 | [SMP_CKP_FE_REQ_CNT] = "frontend tcp-request content rule", |
| 272 | [SMP_CKP_FE_HRQ_HDR] = "frontend http-request header rule", |
| 273 | [SMP_CKP_FE_HRQ_BDY] = "frontend http-request body rule", |
| 274 | [SMP_CKP_FE_SET_BCK] = "frontend use-backend rule", |
| 275 | [SMP_CKP_BE_REQ_CNT] = "backend tcp-request content rule", |
| 276 | [SMP_CKP_BE_HRQ_HDR] = "backend http-request header rule", |
| 277 | [SMP_CKP_BE_HRQ_BDY] = "backend http-request body rule", |
| 278 | [SMP_CKP_BE_SET_SRV] = "backend use-server, balance or stick-match rule", |
| 279 | [SMP_CKP_BE_SRV_CON] = "server source selection", |
| 280 | [SMP_CKP_BE_RES_CNT] = "backend tcp-response content rule", |
| 281 | [SMP_CKP_BE_HRS_HDR] = "backend http-response header rule", |
| 282 | [SMP_CKP_BE_HRS_BDY] = "backend http-response body rule", |
| 283 | [SMP_CKP_BE_STO_RUL] = "backend stick-store rule", |
| 284 | [SMP_CKP_FE_RES_CNT] = "frontend tcp-response content rule", |
| 285 | [SMP_CKP_FE_HRS_HDR] = "frontend http-response header rule", |
| 286 | [SMP_CKP_FE_HRS_BDY] = "frontend http-response body rule", |
| 287 | [SMP_CKP_FE_LOG_END] = "logs", |
| 288 | }; |
| 289 | |
Thierry FOURNIER | 348971e | 2013-11-21 10:50:10 +0100 | [diff] [blame] | 290 | /* This function returns the type of the data returned by the sample_expr. |
| 291 | * It assumes that the <expr> and all of its converters are properly |
| 292 | * initialized. |
| 293 | */ |
| 294 | inline |
| 295 | int smp_expr_output_type(struct sample_expr *expr) |
| 296 | { |
| 297 | struct sample_conv_expr *smp_expr; |
| 298 | |
| 299 | if (!LIST_ISEMPTY(&expr->conv_exprs)) { |
| 300 | smp_expr = LIST_PREV(&expr->conv_exprs, struct sample_conv_expr *, list); |
| 301 | return smp_expr->conv->out_type; |
| 302 | } |
| 303 | return expr->fetch->out_type; |
| 304 | } |
| 305 | |
| 306 | |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 307 | /* fill the trash with a comma-delimited list of source names for the <use> bit |
| 308 | * field which must be composed of a non-null set of SMP_USE_* flags. The return |
| 309 | * value is the pointer to the string in the trash buffer. |
| 310 | */ |
| 311 | const char *sample_src_names(unsigned int use) |
| 312 | { |
| 313 | int bit; |
| 314 | |
| 315 | trash.len = 0; |
| 316 | trash.str[0] = '\0'; |
| 317 | for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) { |
| 318 | if (!(use & ~((1 << bit) - 1))) |
| 319 | break; /* no more bits */ |
| 320 | |
| 321 | if (!(use & (1 << bit))) |
| 322 | continue; /* bit not set */ |
| 323 | |
| 324 | trash.len += snprintf(trash.str + trash.len, trash.size - trash.len, "%s%s", |
| 325 | (use & ((1 << bit) - 1)) ? "," : "", |
| 326 | fetch_src_names[bit]); |
| 327 | } |
| 328 | return trash.str; |
| 329 | } |
| 330 | |
Willy Tarreau | bf8e251 | 2013-03-25 14:52:41 +0100 | [diff] [blame] | 331 | /* return a pointer to the correct sample checkpoint name, or "unknown" when |
| 332 | * the flags are invalid. Only the lowest bit is used, higher bits are ignored |
| 333 | * if set. |
| 334 | */ |
| 335 | const char *sample_ckp_names(unsigned int use) |
| 336 | { |
| 337 | int bit; |
| 338 | |
| 339 | for (bit = 0; bit < SMP_CKP_ENTRIES; bit++) |
| 340 | if (use & (1 << bit)) |
| 341 | return fetch_ckp_names[bit]; |
| 342 | return "unknown sample check place, please report this bug"; |
| 343 | } |
| 344 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 345 | /* |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 346 | * Registers the sample fetch keyword list <kwl> as a list of valid keywords |
| 347 | * for next parsing sessions. The fetch keywords capabilities are also computed |
| 348 | * from their ->use field. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 349 | */ |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 350 | void sample_register_fetches(struct sample_fetch_kw_list *kwl) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 351 | { |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 352 | struct sample_fetch *sf; |
| 353 | int bit; |
| 354 | |
| 355 | for (sf = kwl->kw; sf->kw != NULL; sf++) { |
| 356 | for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) |
| 357 | if (sf->use & (1 << bit)) |
| 358 | sf->val |= fetch_cap[bit]; |
| 359 | } |
| 360 | LIST_ADDQ(&sample_fetches.list, &kwl->list); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 364 | * 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] | 365 | * parsing sessions. |
| 366 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 367 | void sample_register_convs(struct sample_conv_kw_list *pckl) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 368 | { |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 369 | LIST_ADDQ(&sample_convs.list, &pckl->list); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 373 | * Returns the pointer on sample fetch keyword structure identified by |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 374 | * string of <len> in buffer <kw>. |
| 375 | * |
| 376 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 377 | struct sample_fetch *find_sample_fetch(const char *kw, int len) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 378 | { |
| 379 | int index; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 380 | struct sample_fetch_kw_list *kwl; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 381 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 382 | list_for_each_entry(kwl, &sample_fetches.list, list) { |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 383 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 384 | if (strncmp(kwl->kw[index].kw, kw, len) == 0 && |
| 385 | kwl->kw[index].kw[len] == '\0') |
| 386 | return &kwl->kw[index]; |
| 387 | } |
| 388 | } |
| 389 | return NULL; |
| 390 | } |
| 391 | |
Thierry FOURNIER | 4d9a1d1 | 2014-12-08 14:49:19 +0100 | [diff] [blame] | 392 | /* This fucntion browse the list of available saple fetch. <current> is |
| 393 | * the last used sample fetch. If it is the first call, it must set to NULL. |
| 394 | * <idx> is the index of the next sampleèfetch entry. It is used as private |
| 395 | * value. It is useles to initiate it. |
| 396 | * |
| 397 | * It returns always the newt fetch_sample entry, and NULL when the end of |
| 398 | * the list is reached. |
| 399 | */ |
| 400 | struct sample_fetch *sample_fetch_getnext(struct sample_fetch *current, int *idx) |
| 401 | { |
| 402 | struct sample_fetch_kw_list *kwl; |
| 403 | struct sample_fetch *base; |
| 404 | |
| 405 | if (!current) { |
| 406 | /* Get first kwl entry. */ |
| 407 | kwl = LIST_NEXT(&sample_fetches.list, struct sample_fetch_kw_list *, list); |
| 408 | (*idx) = 0; |
| 409 | } else { |
| 410 | /* Get kwl corresponding to the curret entry. */ |
| 411 | base = current + 1 - (*idx); |
| 412 | kwl = container_of(base, struct sample_fetch_kw_list, kw); |
| 413 | } |
| 414 | |
| 415 | while (1) { |
| 416 | |
| 417 | /* Check if kwl is the last entry. */ |
| 418 | if (&kwl->list == &sample_fetches.list) |
| 419 | return NULL; |
| 420 | |
| 421 | /* idx contain the next keyword. If it is available, return it. */ |
| 422 | if (kwl->kw[*idx].kw) { |
| 423 | (*idx)++; |
| 424 | return &kwl->kw[(*idx)-1]; |
| 425 | } |
| 426 | |
| 427 | /* get next entry in the main list, and return NULL if the end is reached. */ |
| 428 | kwl = LIST_NEXT(&kwl->list, struct sample_fetch_kw_list *, list); |
| 429 | |
| 430 | /* Set index to 0, ans do one other loop. */ |
| 431 | (*idx) = 0; |
| 432 | } |
| 433 | } |
| 434 | |
Thierry FOURNIER | 8fd1376 | 2015-03-10 23:56:48 +0100 | [diff] [blame] | 435 | /* This function browses the list of available converters. <current> is |
| 436 | * the last used converter. If it is the first call, it must set to NULL. |
| 437 | * <idx> is the index of the next converter entry. It is used as private |
| 438 | * value. It is useless to initiate it. |
| 439 | * |
| 440 | * It returns always the next sample_conv entry, and NULL when the end of |
| 441 | * the list is reached. |
| 442 | */ |
| 443 | struct sample_conv *sample_conv_getnext(struct sample_conv *current, int *idx) |
| 444 | { |
| 445 | struct sample_conv_kw_list *kwl; |
| 446 | struct sample_conv *base; |
| 447 | |
| 448 | if (!current) { |
| 449 | /* Get first kwl entry. */ |
| 450 | kwl = LIST_NEXT(&sample_convs.list, struct sample_conv_kw_list *, list); |
| 451 | (*idx) = 0; |
| 452 | } else { |
| 453 | /* Get kwl corresponding to the curret entry. */ |
| 454 | base = current + 1 - (*idx); |
| 455 | kwl = container_of(base, struct sample_conv_kw_list, kw); |
| 456 | } |
| 457 | |
| 458 | while (1) { |
| 459 | /* Check if kwl is the last entry. */ |
| 460 | if (&kwl->list == &sample_convs.list) |
| 461 | return NULL; |
| 462 | |
| 463 | /* idx contain the next keyword. If it is available, return it. */ |
| 464 | if (kwl->kw[*idx].kw) { |
| 465 | (*idx)++; |
| 466 | return &kwl->kw[(*idx)-1]; |
| 467 | } |
| 468 | |
| 469 | /* get next entry in the main list, and return NULL if the end is reached. */ |
| 470 | kwl = LIST_NEXT(&kwl->list, struct sample_conv_kw_list *, list); |
| 471 | |
| 472 | /* Set index to 0, ans do one other loop. */ |
| 473 | (*idx) = 0; |
| 474 | } |
| 475 | } |
| 476 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 477 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 478 | * Returns the pointer on sample format conversion keyword structure identified by |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 479 | * string of <len> in buffer <kw>. |
| 480 | * |
| 481 | */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 482 | struct sample_conv *find_sample_conv(const char *kw, int len) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 483 | { |
| 484 | int index; |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 485 | struct sample_conv_kw_list *kwl; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 486 | |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 487 | list_for_each_entry(kwl, &sample_convs.list, list) { |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 488 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 489 | if (strncmp(kwl->kw[index].kw, kw, len) == 0 && |
| 490 | kwl->kw[index].kw[len] == '\0') |
| 491 | return &kwl->kw[index]; |
| 492 | } |
| 493 | } |
| 494 | return NULL; |
| 495 | } |
| 496 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 497 | /******************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 498 | /* Sample casts functions */ |
Willy Tarreau | b8c8f1f | 2012-04-23 22:38:26 +0200 | [diff] [blame] | 499 | /* Note: these functions do *NOT* set the output type on the */ |
| 500 | /* sample, the caller is responsible for doing this on return. */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 501 | /******************************************************************/ |
| 502 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 503 | static int c_ip2int(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 504 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 505 | smp->data.u.sint = ntohl(smp->data.u.ipv4.s_addr); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 506 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 507 | return 1; |
| 508 | } |
| 509 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 510 | static int c_ip2str(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 511 | { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 512 | struct chunk *trash = get_trash_chunk(); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 513 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 514 | if (!inet_ntop(AF_INET, (void *)&smp->data.u.ipv4, trash->str, trash->size)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 515 | return 0; |
| 516 | |
| 517 | trash->len = strlen(trash->str); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 518 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 519 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 520 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 521 | |
| 522 | return 1; |
| 523 | } |
| 524 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 525 | static int c_ip2ipv6(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 526 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 527 | v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 528 | smp->data.type = SMP_T_IPV6; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 529 | return 1; |
| 530 | } |
| 531 | |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 532 | static int c_ipv62ip(struct sample *smp) |
| 533 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 534 | if (!v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6)) |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 535 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 536 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 537 | return 1; |
| 538 | } |
| 539 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 540 | static int c_ipv62str(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 541 | { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 542 | struct chunk *trash = get_trash_chunk(); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 543 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 544 | if (!inet_ntop(AF_INET6, (void *)&smp->data.u.ipv6, trash->str, trash->size)) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 545 | return 0; |
| 546 | |
| 547 | trash->len = strlen(trash->str); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 548 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 549 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 550 | smp->flags &= ~SMP_F_CONST; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 551 | return 1; |
| 552 | } |
| 553 | |
| 554 | /* |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 555 | static int c_ipv62ip(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 556 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 557 | return v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6); |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 558 | } |
| 559 | */ |
| 560 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 561 | static int c_int2ip(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 562 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 563 | 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] | 564 | smp->data.type = SMP_T_IPV4; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 565 | return 1; |
| 566 | } |
| 567 | |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 568 | static int c_int2ipv6(struct sample *smp) |
| 569 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 570 | smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint); |
| 571 | v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 572 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 573 | return 1; |
| 574 | } |
| 575 | |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 576 | static int c_str2addr(struct sample *smp) |
| 577 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 578 | if (!buf2ip(smp->data.u.str.str, smp->data.u.str.len, &smp->data.u.ipv4)) { |
| 579 | if (!buf2ip6(smp->data.u.str.str, smp->data.u.str.len, &smp->data.u.ipv6)) |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 580 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 581 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 582 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 583 | return 1; |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 584 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 585 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 586 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 587 | return 1; |
| 588 | } |
| 589 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 590 | static int c_str2ip(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 591 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 592 | if (!buf2ip(smp->data.u.str.str, smp->data.u.str.len, &smp->data.u.ipv4)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 593 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 594 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 595 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 596 | return 1; |
| 597 | } |
| 598 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 599 | static int c_str2ipv6(struct sample *smp) |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 600 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 601 | if (!buf2ip6(smp->data.u.str.str, smp->data.u.str.len, &smp->data.u.ipv6)) |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 602 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 603 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 604 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | fd13990 | 2013-12-11 12:38:57 +0100 | [diff] [blame] | 605 | return 1; |
David du Colombier | 4f92d32 | 2011-03-24 11:09:31 +0100 | [diff] [blame] | 606 | } |
| 607 | |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 608 | /* |
| 609 | * The NULL char always enforces the end of string if it is met. |
| 610 | * Data is never changed, so we can ignore the CONST case |
Thierry FOURNIER | e87cac1 | 2014-03-12 15:07:59 +0100 | [diff] [blame] | 611 | */ |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 612 | static int c_bin2str(struct sample *smp) |
| 613 | { |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 614 | int i; |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 615 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 616 | for (i = 0; i < smp->data.u.str.len; i++) { |
| 617 | if (!smp->data.u.str.str[i]) { |
| 618 | smp->data.u.str.len = i; |
Thierry FOURNIER | e87cac1 | 2014-03-12 15:07:59 +0100 | [diff] [blame] | 619 | break; |
Emeric Brun | 4b9e802 | 2014-11-03 18:17:10 +0100 | [diff] [blame] | 620 | } |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 621 | } |
Emeric Brun | 8ac33d9 | 2012-10-17 13:36:06 +0200 | [diff] [blame] | 622 | return 1; |
| 623 | } |
| 624 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 625 | static int c_int2str(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 626 | { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 627 | struct chunk *trash = get_trash_chunk(); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 628 | char *pos; |
| 629 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 630 | pos = lltoa_r(smp->data.u.sint, trash->str, trash->size); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 631 | if (!pos) |
| 632 | return 0; |
| 633 | |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 634 | trash->size = trash->size - (pos - trash->str); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 635 | trash->str = pos; |
| 636 | trash->len = strlen(pos); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 637 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 638 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 639 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 640 | return 1; |
| 641 | } |
| 642 | |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 643 | /* This function inconditionally duplicates data and removes the "const" flag. |
| 644 | * For strings and binary blocks, it also provides a known allocated size with |
| 645 | * a length that is capped to the size, and ensures a trailing zero is always |
| 646 | * appended for strings. This is necessary for some operations which may |
| 647 | * require to extend the length. It returns 0 if it fails, 1 on success. |
| 648 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 649 | int smp_dup(struct sample *smp) |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 650 | { |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 651 | struct chunk *trash; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 652 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 653 | switch (smp->data.type) { |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 654 | case SMP_T_BOOL: |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 655 | case SMP_T_SINT: |
| 656 | case SMP_T_ADDR: |
| 657 | case SMP_T_IPV4: |
| 658 | case SMP_T_IPV6: |
| 659 | /* These type are not const. */ |
| 660 | break; |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 661 | |
Christopher Faulet | ec10051 | 2017-07-24 15:38:41 +0200 | [diff] [blame] | 662 | case SMP_T_METH: |
| 663 | if (smp->data.u.meth.meth != HTTP_METH_OTHER) |
| 664 | break; |
| 665 | /* Fall through */ |
| 666 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 667 | case SMP_T_STR: |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 668 | trash = get_trash_chunk(); |
| 669 | trash->len = smp->data.u.str.len; |
| 670 | if (trash->len > trash->size - 1) |
| 671 | trash->len = trash->size - 1; |
| 672 | |
| 673 | memcpy(trash->str, smp->data.u.str.str, trash->len); |
| 674 | trash->str[trash->len] = 0; |
| 675 | smp->data.u.str = *trash; |
| 676 | break; |
| 677 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 678 | case SMP_T_BIN: |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 679 | trash = get_trash_chunk(); |
Willy Tarreau | ad63582 | 2016-08-08 19:21:09 +0200 | [diff] [blame] | 680 | trash->len = smp->data.u.str.len; |
| 681 | if (trash->len > trash->size) |
| 682 | trash->len = trash->size; |
| 683 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 684 | memcpy(trash->str, smp->data.u.str.str, trash->len); |
| 685 | smp->data.u.str = *trash; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 686 | break; |
Christopher Faulet | ec10051 | 2017-07-24 15:38:41 +0200 | [diff] [blame] | 687 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 688 | default: |
| 689 | /* Other cases are unexpected. */ |
| 690 | return 0; |
| 691 | } |
Thierry FOURNIER | b805f71 | 2013-11-26 20:47:54 +0100 | [diff] [blame] | 692 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 693 | /* remove const flag */ |
| 694 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 695 | return 1; |
| 696 | } |
| 697 | |
Thierry FOURNIER | 0e9af55 | 2013-12-14 14:55:04 +0100 | [diff] [blame] | 698 | int c_none(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 699 | { |
| 700 | return 1; |
| 701 | } |
| 702 | |
Willy Tarreau | 342acb4 | 2012-04-23 22:03:39 +0200 | [diff] [blame] | 703 | static int c_str2int(struct sample *smp) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 704 | { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 705 | const char *str; |
| 706 | const char *end; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 707 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 708 | if (smp->data.u.str.len == 0) |
Thierry FOURNIER | 60bb020 | 2014-01-27 18:20:48 +0100 | [diff] [blame] | 709 | return 0; |
| 710 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 711 | str = smp->data.u.str.str; |
| 712 | end = smp->data.u.str.str + smp->data.u.str.len; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 713 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 714 | smp->data.u.sint = read_int64(&str, end); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 715 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 716 | smp->flags &= ~SMP_F_CONST; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 717 | return 1; |
| 718 | } |
| 719 | |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 720 | static int c_str2meth(struct sample *smp) |
| 721 | { |
| 722 | enum http_meth_t meth; |
| 723 | int len; |
| 724 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 725 | meth = find_http_meth(smp->data.u.str.str, smp->data.u.str.len); |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 726 | if (meth == HTTP_METH_OTHER) { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 727 | len = smp->data.u.str.len; |
| 728 | smp->data.u.meth.str.str = smp->data.u.str.str; |
| 729 | smp->data.u.meth.str.len = len; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 730 | } |
| 731 | else |
| 732 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 733 | smp->data.u.meth.meth = meth; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 734 | smp->data.type = SMP_T_METH; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 735 | return 1; |
| 736 | } |
| 737 | |
| 738 | static int c_meth2str(struct sample *smp) |
| 739 | { |
| 740 | int len; |
| 741 | enum http_meth_t meth; |
| 742 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 743 | if (smp->data.u.meth.meth == HTTP_METH_OTHER) { |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 744 | /* The method is unknown. Copy the original pointer. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 745 | len = smp->data.u.meth.str.len; |
| 746 | smp->data.u.str.str = smp->data.u.meth.str.str; |
| 747 | smp->data.u.str.len = len; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 748 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 749 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 750 | else if (smp->data.u.meth.meth < HTTP_METH_OTHER) { |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 751 | /* The method is known, copy the pointer containing the string. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 752 | meth = smp->data.u.meth.meth; |
| 753 | smp->data.u.str.str = http_known_methods[meth].name; |
| 754 | smp->data.u.str.len = http_known_methods[meth].len; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 755 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 756 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 757 | } |
| 758 | else { |
| 759 | /* Unknown method */ |
| 760 | return 0; |
| 761 | } |
| 762 | return 1; |
| 763 | } |
| 764 | |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 765 | static int c_addr2bin(struct sample *smp) |
| 766 | { |
| 767 | struct chunk *chk = get_trash_chunk(); |
| 768 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 769 | if (smp->data.type == SMP_T_IPV4) { |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 770 | chk->len = 4; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 771 | memcpy(chk->str, &smp->data.u.ipv4, chk->len); |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 772 | } |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 773 | else if (smp->data.type == SMP_T_IPV6) { |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 774 | chk->len = 16; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 775 | memcpy(chk->str, &smp->data.u.ipv6, chk->len); |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 776 | } |
| 777 | else |
| 778 | return 0; |
| 779 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 780 | smp->data.u.str = *chk; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 781 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 782 | return 1; |
| 783 | } |
| 784 | |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 785 | static int c_int2bin(struct sample *smp) |
| 786 | { |
| 787 | struct chunk *chk = get_trash_chunk(); |
| 788 | |
Willy Tarreau | 5f6e905 | 2016-05-20 06:29:59 +0200 | [diff] [blame] | 789 | *(unsigned long long int *)chk->str = my_htonll(smp->data.u.sint); |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 790 | chk->len = 8; |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 791 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 792 | smp->data.u.str = *chk; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 793 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | bbfd1a2 | 2014-07-15 21:19:08 +0200 | [diff] [blame] | 794 | return 1; |
| 795 | } |
| 796 | |
Willy Tarreau | 9700e5c | 2014-07-15 21:03:26 +0200 | [diff] [blame] | 797 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 798 | /*****************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 799 | /* Sample casts matrix: */ |
| 800 | /* sample_casts[from type][to type] */ |
| 801 | /* NULL pointer used for impossible sample casts */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 802 | /*****************************************************************/ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 803 | |
Thierry FOURNIER | 8af6ff1 | 2013-11-21 10:53:12 +0100 | [diff] [blame] | 804 | sample_cast_fct sample_casts[SMP_TYPES][SMP_TYPES] = { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 805 | /* to: ANY BOOL SINT ADDR IPV4 IPV6 STR BIN METH */ |
| 806 | /* from: ANY */ { c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, }, |
| 807 | /* BOOL */ { c_none, c_none, c_none, NULL, NULL, NULL, c_int2str, NULL, NULL, }, |
Thierry FOURNIER | cc4d171 | 2015-07-24 09:04:56 +0200 | [diff] [blame] | 808 | /* 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] | 809 | /* ADDR */ { c_none, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, |
| 810 | /* 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] | 811 | /* 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] | 812 | /* STR */ { c_none, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_none, c_none, c_str2meth, }, |
| 813 | /* BIN */ { c_none, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_none, c_str2meth, }, |
| 814 | /* 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] | 815 | }; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 816 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 817 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 818 | * Parse a sample expression configuration: |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 819 | * fetch keyword followed by format conversion keywords. |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 820 | * Returns a pointer on allocated sample expression structure. |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 821 | * The caller must have set al->ctx. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 822 | */ |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 823 | struct sample_expr *sample_parse_expr(char **str, int *idx, const char *file, int line, char **err_msg, struct arg_list *al) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 824 | { |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 825 | const char *begw; /* beginning of word */ |
| 826 | const char *endw; /* end of word */ |
| 827 | const char *endt; /* end of term */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 828 | struct sample_expr *expr; |
| 829 | struct sample_fetch *fetch; |
| 830 | struct sample_conv *conv; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 831 | unsigned long prev_type; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 832 | char *fkw = NULL; |
| 833 | char *ckw = NULL; |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 834 | int err_arg; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 835 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 836 | begw = str[*idx]; |
| 837 | for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++); |
| 838 | |
| 839 | if (endw == begw) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 840 | memprintf(err_msg, "missing fetch method"); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 841 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 842 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 843 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 844 | /* keep a copy of the current fetch keyword for error reporting */ |
| 845 | fkw = my_strndup(begw, endw - begw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 846 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 847 | fetch = find_sample_fetch(begw, endw - begw); |
| 848 | if (!fetch) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 849 | memprintf(err_msg, "unknown fetch method '%s'", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 850 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 851 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 852 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 853 | endt = endw; |
| 854 | if (*endt == '(') { |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 855 | /* look for the end of this term and skip the opening parenthesis */ |
| 856 | endt = ++endw; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 857 | while (*endt && *endt != ')') |
| 858 | endt++; |
| 859 | if (*endt != ')') { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 860 | memprintf(err_msg, "missing closing ')' after arguments to fetch keyword '%s'", fkw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 861 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 862 | } |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 863 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 864 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 865 | /* At this point, we have : |
| 866 | * - begw : beginning of the keyword |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 867 | * - endw : end of the keyword, first character not part of keyword |
| 868 | * nor the opening parenthesis (so first character of args |
| 869 | * if present). |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 870 | * - endt : end of the term (=endw or last parenthesis if args are present) |
| 871 | */ |
| 872 | |
| 873 | if (fetch->out_type >= SMP_TYPES) { |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 874 | memprintf(err_msg, "returns type of fetch method '%s' is unknown", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 875 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 876 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 877 | prev_type = fetch->out_type; |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 878 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 879 | expr = calloc(1, sizeof(*expr)); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 880 | if (!expr) |
| 881 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 882 | |
| 883 | LIST_INIT(&(expr->conv_exprs)); |
| 884 | expr->fetch = fetch; |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 885 | expr->arg_p = empty_arg_list; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 886 | |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 887 | /* Note that we call the argument parser even with an empty string, |
| 888 | * this allows it to automatically create entries for mandatory |
| 889 | * implicit arguments (eg: local proxy name). |
| 890 | */ |
| 891 | al->kw = expr->fetch->kw; |
| 892 | al->conv = NULL; |
| 893 | if (make_arg_list(endw, endt - endw, fetch->arg_mask, &expr->arg_p, err_msg, NULL, &err_arg, al) < 0) { |
| 894 | memprintf(err_msg, "fetch method '%s' : %s", fkw, *err_msg); |
| 895 | goto out_error; |
| 896 | } |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 897 | |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 898 | if (!expr->arg_p) { |
| 899 | expr->arg_p = empty_arg_list; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 900 | } |
Willy Tarreau | 689a1df | 2013-12-13 00:40:11 +0100 | [diff] [blame] | 901 | else if (fetch->val_args && !fetch->val_args(expr->arg_p, err_msg)) { |
| 902 | 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] | 903 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 904 | } |
| 905 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 906 | /* Now process the converters if any. We have two supported syntaxes |
| 907 | * for the converters, which can be combined : |
| 908 | * - comma-delimited list of converters just after the keyword and args ; |
| 909 | * - one converter per keyword |
| 910 | * The combination allows to have each keyword being a comma-delimited |
| 911 | * series of converters. |
| 912 | * |
| 913 | * We want to process the former first, then the latter. For this we start |
| 914 | * from the beginning of the supposed place in the exiting conv chain, which |
| 915 | * starts at the last comma (endt). |
| 916 | */ |
| 917 | |
| 918 | while (1) { |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 919 | struct sample_conv_expr *conv_expr; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 920 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 921 | if (*endt == ')') /* skip last closing parenthesis */ |
| 922 | endt++; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 923 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 924 | if (*endt && *endt != ',') { |
| 925 | if (ckw) |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 926 | memprintf(err_msg, "missing comma after converter '%s'", ckw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 927 | else |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 928 | memprintf(err_msg, "missing comma after fetch keyword '%s'", fkw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 929 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 930 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 931 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 932 | while (*endt == ',') /* then trailing commas */ |
| 933 | endt++; |
| 934 | |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 935 | begw = endt; /* start of converter */ |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 936 | |
| 937 | if (!*begw) { |
| 938 | /* none ? skip to next string */ |
| 939 | (*idx)++; |
| 940 | begw = str[*idx]; |
| 941 | if (!begw || !*begw) |
| 942 | break; |
| 943 | } |
| 944 | |
| 945 | for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++); |
| 946 | |
| 947 | free(ckw); |
| 948 | ckw = my_strndup(begw, endw - begw); |
| 949 | |
| 950 | conv = find_sample_conv(begw, endw - begw); |
| 951 | if (!conv) { |
| 952 | /* we found an isolated keyword that we don't know, it's not ours */ |
| 953 | if (begw == str[*idx]) |
| 954 | break; |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 955 | memprintf(err_msg, "unknown converter '%s'", ckw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 956 | goto out_error; |
| 957 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 958 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 959 | endt = endw; |
| 960 | if (*endt == '(') { |
| 961 | /* look for the end of this term */ |
| 962 | while (*endt && *endt != ')') |
| 963 | endt++; |
| 964 | if (*endt != ')') { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 965 | memprintf(err_msg, "syntax error: missing ')' after converter '%s'", ckw); |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 966 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 967 | } |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 971 | memprintf(err_msg, "returns type of converter '%s' is unknown", ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 972 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 973 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 974 | |
| 975 | /* If impossible type conversion */ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 976 | if (!sample_casts[prev_type][conv->in_type]) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 977 | memprintf(err_msg, "converter '%s' cannot be applied", ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 978 | goto out_error; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 979 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 980 | |
| 981 | prev_type = conv->out_type; |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 982 | conv_expr = calloc(1, sizeof(*conv_expr)); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 983 | if (!conv_expr) |
| 984 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 985 | |
| 986 | LIST_ADDQ(&(expr->conv_exprs), &(conv_expr->list)); |
| 987 | conv_expr->conv = conv; |
| 988 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 989 | if (endt != endw) { |
Willy Tarreau | b27c0d3 | 2012-04-20 16:04:47 +0200 | [diff] [blame] | 990 | int err_arg; |
Willy Tarreau | 21d68a6 | 2012-04-20 15:52:36 +0200 | [diff] [blame] | 991 | |
Willy Tarreau | 9fcb984 | 2012-04-20 14:45:49 +0200 | [diff] [blame] | 992 | if (!conv->arg_mask) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 993 | memprintf(err_msg, "converter '%s' does not support any args", ckw); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 994 | goto out_error; |
| 995 | } |
Willy Tarreau | 9e92d32 | 2010-01-26 17:58:06 +0100 | [diff] [blame] | 996 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 997 | al->kw = expr->fetch->kw; |
| 998 | al->conv = conv_expr->conv->kw; |
Willy Tarreau | 975c178 | 2013-12-12 23:16:54 +0100 | [diff] [blame] | 999 | if (make_arg_list(endw + 1, endt - endw - 1, conv->arg_mask, &conv_expr->arg_p, err_msg, NULL, &err_arg, al) < 0) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1000 | memprintf(err_msg, "invalid arg %d in converter '%s' : %s", err_arg+1, ckw, *err_msg); |
Willy Tarreau | 21d68a6 | 2012-04-20 15:52:36 +0200 | [diff] [blame] | 1001 | goto out_error; |
| 1002 | } |
| 1003 | |
Willy Tarreau | 2e845be | 2012-10-19 19:49:09 +0200 | [diff] [blame] | 1004 | if (!conv_expr->arg_p) |
| 1005 | conv_expr->arg_p = empty_arg_list; |
| 1006 | |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 1007 | if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err_msg)) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1008 | memprintf(err_msg, "invalid args in converter '%s' : %s", ckw, *err_msg); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1009 | goto out_error; |
| 1010 | } |
| 1011 | } |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1012 | else if (ARGM(conv->arg_mask)) { |
Willy Tarreau | 97108e0 | 2016-11-25 07:33:24 +0100 | [diff] [blame] | 1013 | memprintf(err_msg, "missing args for converter '%s'", ckw); |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1014 | goto out_error; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1015 | } |
| 1016 | } |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1017 | |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1018 | out: |
| 1019 | free(fkw); |
| 1020 | free(ckw); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1021 | return expr; |
| 1022 | |
| 1023 | out_error: |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1024 | /* TODO: prune_sample_expr(expr); */ |
Willy Tarreau | 833cc79 | 2013-07-24 15:34:19 +0200 | [diff] [blame] | 1025 | expr = NULL; |
| 1026 | goto out; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1027 | } |
| 1028 | |
| 1029 | /* |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1030 | * Process a fetch + format conversion of defined by the sample expression <expr> |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 1031 | * on request or response considering the <opt> parameter. |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1032 | * Returns a pointer on a typed sample structure containing the result or NULL if |
| 1033 | * sample is not found or when format conversion failed. |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1034 | * 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] | 1035 | * 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] | 1036 | * |
| 1037 | * Note: the fetch functions are required to properly set the return type. The |
| 1038 | * conversion functions must do so too. However the cast functions do not need |
| 1039 | * to since they're made to cast mutiple types according to what is required. |
Willy Tarreau | 6bcb0a8 | 2014-07-30 08:56:35 +0200 | [diff] [blame] | 1040 | * |
| 1041 | * The caller may indicate in <opt> if it considers the result final or not. |
| 1042 | * The caller needs to check the SMP_F_MAY_CHANGE flag in p->flags to verify |
| 1043 | * if the result is stable or not, according to the following table : |
| 1044 | * |
| 1045 | * return MAY_CHANGE FINAL Meaning for the sample |
| 1046 | * NULL 0 * Not present and will never be (eg: header) |
| 1047 | * NULL 1 0 Not present yet, could change (eg: POST param) |
| 1048 | * NULL 1 1 Not present yet, will not change anymore |
| 1049 | * smp 0 * Present and will not change (eg: header) |
| 1050 | * smp 1 0 Present, may change (eg: request length) |
| 1051 | * smp 1 1 Present, last known value (eg: request length) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1052 | */ |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1053 | struct sample *sample_process(struct proxy *px, struct session *sess, |
| 1054 | struct stream *strm, unsigned int opt, |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1055 | struct sample_expr *expr, struct sample *p) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1056 | { |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1057 | struct sample_conv_expr *conv_expr; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1058 | |
Willy Tarreau | 18387e2 | 2013-07-25 12:02:38 +0200 | [diff] [blame] | 1059 | if (p == NULL) { |
Willy Tarreau | b4a88f0 | 2012-04-23 21:35:11 +0200 | [diff] [blame] | 1060 | p = &temp_smp; |
Willy Tarreau | 6c616e0 | 2014-06-25 16:56:41 +0200 | [diff] [blame] | 1061 | memset(p, 0, sizeof(*p)); |
Willy Tarreau | 18387e2 | 2013-07-25 12:02:38 +0200 | [diff] [blame] | 1062 | } |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1063 | |
Willy Tarreau | 1777ea6 | 2016-03-10 16:15:46 +0100 | [diff] [blame] | 1064 | smp_set_owner(p, px, sess, strm, opt); |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1065 | 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] | 1066 | return NULL; |
| 1067 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1068 | list_for_each_entry(conv_expr, &expr->conv_exprs, list) { |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1069 | /* we want to ensure that p->type can be casted into |
| 1070 | * conv_expr->conv->in_type. We have 3 possibilities : |
| 1071 | * - NULL => not castable. |
| 1072 | * - c_none => nothing to do (let's optimize it) |
| 1073 | * - other => apply cast and prepare to fail |
| 1074 | */ |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1075 | if (!sample_casts[p->data.type][conv_expr->conv->in_type]) |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1076 | return NULL; |
| 1077 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1078 | if (sample_casts[p->data.type][conv_expr->conv->in_type] != c_none && |
| 1079 | !sample_casts[p->data.type][conv_expr->conv->in_type](p)) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1080 | return NULL; |
| 1081 | |
Willy Tarreau | 12e5011 | 2012-04-25 17:21:49 +0200 | [diff] [blame] | 1082 | /* OK cast succeeded */ |
| 1083 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1084 | 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] | 1085 | return NULL; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1086 | } |
| 1087 | return p; |
| 1088 | } |
| 1089 | |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1090 | /* |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1091 | * Resolve all remaining arguments in proxy <p>. Returns the number of |
| 1092 | * errors or 0 if everything is fine. |
| 1093 | */ |
| 1094 | int smp_resolve_args(struct proxy *p) |
| 1095 | { |
| 1096 | struct arg_list *cur, *bak; |
| 1097 | const char *ctx, *where; |
| 1098 | const char *conv_ctx, *conv_pre, *conv_pos; |
| 1099 | struct userlist *ul; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1100 | struct my_regex *reg; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1101 | struct arg *arg; |
| 1102 | int cfgerr = 0; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1103 | int rflags; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1104 | |
| 1105 | list_for_each_entry_safe(cur, bak, &p->conf.args.list, list) { |
| 1106 | struct proxy *px; |
| 1107 | struct server *srv; |
| 1108 | char *pname, *sname; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1109 | char *err; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1110 | |
| 1111 | arg = cur->arg; |
| 1112 | |
| 1113 | /* prepare output messages */ |
| 1114 | conv_pre = conv_pos = conv_ctx = ""; |
| 1115 | if (cur->conv) { |
| 1116 | conv_ctx = cur->conv; |
| 1117 | conv_pre = "conversion keyword '"; |
| 1118 | conv_pos = "' for "; |
| 1119 | } |
| 1120 | |
| 1121 | where = "in"; |
| 1122 | ctx = "sample fetch keyword"; |
| 1123 | switch (cur->ctx) { |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 1124 | case ARGC_STK: where = "in stick rule in"; break; |
| 1125 | case ARGC_TRK: where = "in tracking rule in"; break; |
| 1126 | case ARGC_LOG: where = "in log-format string in"; break; |
| 1127 | case ARGC_LOGSD: where = "in log-format-sd string in"; break; |
| 1128 | case ARGC_HRQ: where = "in http-request header format string in"; break; |
| 1129 | case ARGC_HRS: where = "in http-response header format string in"; break; |
| 1130 | case ARGC_UIF: where = "in unique-id-format string in"; break; |
| 1131 | case ARGC_RDR: where = "in redirect format string in"; break; |
| 1132 | case ARGC_CAP: where = "in capture rule in"; break; |
| 1133 | case ARGC_ACL: ctx = "ACL keyword"; break; |
| 1134 | case ARGC_SRV: where = "in server directive in"; break; |
Christopher Faulet | f7e4e7e | 2016-10-27 22:29:49 +0200 | [diff] [blame] | 1135 | case ARGC_SPOE: where = "in spoe-message directive in"; break; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | /* set a few default settings */ |
| 1139 | px = p; |
| 1140 | pname = p->id; |
| 1141 | |
| 1142 | switch (arg->type) { |
| 1143 | case ARGT_SRV: |
| 1144 | if (!arg->data.str.len) { |
| 1145 | Alert("parsing [%s:%d] : missing server name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1146 | cur->file, cur->line, |
| 1147 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1148 | cfgerr++; |
| 1149 | continue; |
| 1150 | } |
| 1151 | |
| 1152 | /* we support two formats : "bck/srv" and "srv" */ |
| 1153 | sname = strrchr(arg->data.str.str, '/'); |
| 1154 | |
| 1155 | if (sname) { |
| 1156 | *sname++ = '\0'; |
| 1157 | pname = arg->data.str.str; |
| 1158 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1159 | px = proxy_be_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1160 | if (!px) { |
| 1161 | Alert("parsing [%s:%d] : unable to find proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1162 | cur->file, cur->line, pname, |
| 1163 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1164 | cfgerr++; |
| 1165 | break; |
| 1166 | } |
| 1167 | } |
| 1168 | else |
| 1169 | sname = arg->data.str.str; |
| 1170 | |
| 1171 | srv = findserver(px, sname); |
| 1172 | if (!srv) { |
| 1173 | Alert("parsing [%s:%d] : unable to find server '%s' in proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1174 | cur->file, cur->line, sname, pname, |
| 1175 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1176 | cfgerr++; |
| 1177 | break; |
| 1178 | } |
| 1179 | |
| 1180 | free(arg->data.str.str); |
| 1181 | arg->data.str.str = NULL; |
| 1182 | arg->unresolved = 0; |
| 1183 | arg->data.srv = srv; |
| 1184 | break; |
| 1185 | |
| 1186 | case ARGT_FE: |
| 1187 | if (arg->data.str.len) { |
| 1188 | pname = arg->data.str.str; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1189 | px = proxy_fe_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1190 | } |
| 1191 | |
| 1192 | if (!px) { |
| 1193 | Alert("parsing [%s:%d] : unable to find frontend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1194 | cur->file, cur->line, pname, |
| 1195 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1196 | cfgerr++; |
| 1197 | break; |
| 1198 | } |
| 1199 | |
| 1200 | if (!(px->cap & PR_CAP_FE)) { |
| 1201 | Alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not frontend capability.\n", |
| 1202 | cur->file, cur->line, pname, |
| 1203 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1204 | cfgerr++; |
| 1205 | break; |
| 1206 | } |
| 1207 | |
| 1208 | free(arg->data.str.str); |
| 1209 | arg->data.str.str = NULL; |
| 1210 | arg->unresolved = 0; |
| 1211 | arg->data.prx = px; |
| 1212 | break; |
| 1213 | |
| 1214 | case ARGT_BE: |
| 1215 | if (arg->data.str.len) { |
| 1216 | pname = arg->data.str.str; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 1217 | px = proxy_be_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1218 | } |
| 1219 | |
| 1220 | if (!px) { |
| 1221 | Alert("parsing [%s:%d] : unable to find backend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1222 | cur->file, cur->line, pname, |
| 1223 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1224 | cfgerr++; |
| 1225 | break; |
| 1226 | } |
| 1227 | |
| 1228 | if (!(px->cap & PR_CAP_BE)) { |
| 1229 | Alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not backend capability.\n", |
| 1230 | cur->file, cur->line, pname, |
| 1231 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1232 | cfgerr++; |
| 1233 | break; |
| 1234 | } |
| 1235 | |
| 1236 | free(arg->data.str.str); |
| 1237 | arg->data.str.str = NULL; |
| 1238 | arg->unresolved = 0; |
| 1239 | arg->data.prx = px; |
| 1240 | break; |
| 1241 | |
| 1242 | case ARGT_TAB: |
| 1243 | if (arg->data.str.len) { |
| 1244 | pname = arg->data.str.str; |
Willy Tarreau | e2dc1fa | 2015-05-26 12:08:07 +0200 | [diff] [blame] | 1245 | px = proxy_tbl_by_name(pname); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | if (!px) { |
| 1249 | Alert("parsing [%s:%d] : unable to find table '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1250 | cur->file, cur->line, pname, |
| 1251 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1252 | cfgerr++; |
| 1253 | break; |
| 1254 | } |
| 1255 | |
| 1256 | if (!px->table.size) { |
| 1257 | Alert("parsing [%s:%d] : no table in proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1258 | cur->file, cur->line, pname, |
| 1259 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1260 | cfgerr++; |
| 1261 | break; |
| 1262 | } |
| 1263 | |
| 1264 | free(arg->data.str.str); |
| 1265 | arg->data.str.str = NULL; |
| 1266 | arg->unresolved = 0; |
| 1267 | arg->data.prx = px; |
| 1268 | break; |
| 1269 | |
| 1270 | case ARGT_USR: |
| 1271 | if (!arg->data.str.len) { |
| 1272 | Alert("parsing [%s:%d] : missing userlist name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1273 | cur->file, cur->line, |
| 1274 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1275 | cfgerr++; |
| 1276 | break; |
| 1277 | } |
| 1278 | |
| 1279 | if (p->uri_auth && p->uri_auth->userlist && |
| 1280 | !strcmp(p->uri_auth->userlist->name, arg->data.str.str)) |
| 1281 | ul = p->uri_auth->userlist; |
| 1282 | else |
| 1283 | ul = auth_find_userlist(arg->data.str.str); |
| 1284 | |
| 1285 | if (!ul) { |
| 1286 | Alert("parsing [%s:%d] : unable to find userlist '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1287 | cur->file, cur->line, arg->data.str.str, |
| 1288 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1289 | cfgerr++; |
| 1290 | break; |
| 1291 | } |
| 1292 | |
| 1293 | free(arg->data.str.str); |
| 1294 | arg->data.str.str = NULL; |
| 1295 | arg->unresolved = 0; |
| 1296 | arg->data.usr = ul; |
| 1297 | break; |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1298 | |
| 1299 | case ARGT_REG: |
| 1300 | if (!arg->data.str.len) { |
| 1301 | Alert("parsing [%s:%d] : missing regex in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1302 | cur->file, cur->line, |
| 1303 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1304 | cfgerr++; |
| 1305 | continue; |
| 1306 | } |
| 1307 | |
| 1308 | reg = calloc(1, sizeof(*reg)); |
| 1309 | if (!reg) { |
| 1310 | Alert("parsing [%s:%d] : not enough memory to build regex in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n", |
| 1311 | cur->file, cur->line, |
| 1312 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id); |
| 1313 | cfgerr++; |
| 1314 | continue; |
| 1315 | } |
| 1316 | |
| 1317 | rflags = 0; |
| 1318 | rflags |= (arg->type_flags & ARGF_REG_ICASE) ? REG_ICASE : 0; |
| 1319 | err = NULL; |
| 1320 | |
Willy Tarreau | d817e46 | 2015-01-23 20:23:17 +0100 | [diff] [blame] | 1321 | if (!regex_comp(arg->data.str.str, reg, !(rflags & REG_ICASE), 1 /* capture substr */, &err)) { |
Willy Tarreau | 4694778 | 2015-01-19 19:00:58 +0100 | [diff] [blame] | 1322 | Alert("parsing [%s:%d] : error in regex '%s' in arg %d of %s%s%s%s '%s' %s proxy '%s' : %s.\n", |
| 1323 | cur->file, cur->line, |
| 1324 | arg->data.str.str, |
| 1325 | cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id, err); |
| 1326 | cfgerr++; |
| 1327 | continue; |
| 1328 | } |
| 1329 | |
| 1330 | free(arg->data.str.str); |
| 1331 | arg->data.str.str = NULL; |
| 1332 | arg->unresolved = 0; |
| 1333 | arg->data.reg = reg; |
| 1334 | break; |
| 1335 | |
| 1336 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | LIST_DEL(&cur->list); |
| 1340 | free(cur); |
| 1341 | } /* end of args processing */ |
| 1342 | |
| 1343 | return cfgerr; |
| 1344 | } |
| 1345 | |
| 1346 | /* |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1347 | * Process a fetch + format conversion as defined by the sample expression |
| 1348 | * <expr> on request or response considering the <opt> parameter. The output is |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1349 | * not explicitly set to <smp_type>, but shall be compatible with it as |
| 1350 | * specified by 'sample_casts' table. If a stable sample can be fetched, or an |
| 1351 | * 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] | 1352 | * returned without the SMP_F_MAY_CHANGE flag. If an unstable sample is found |
| 1353 | * and <opt> does not contain SMP_OPT_FINAL, then the sample is returned as-is |
| 1354 | * with its SMP_F_MAY_CHANGE flag so that the caller can check it and decide to |
| 1355 | * 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] | 1356 | * be converted, NULL is returned. The caller MUST NOT use the sample if the |
| 1357 | * SMP_F_MAY_CHANGE flag is present, as it is used only as a hint that there is |
| 1358 | * still hope to get it after waiting longer, and is not converted to string. |
| 1359 | * The possible output combinations are the following : |
| 1360 | * |
| 1361 | * return MAY_CHANGE FINAL Meaning for the sample |
| 1362 | * NULL * * Not present and will never be (eg: header) |
| 1363 | * smp 0 * Final value converted (eg: header) |
| 1364 | * smp 1 0 Not present yet, may appear later (eg: header) |
| 1365 | * smp 1 1 never happens (either flag is cleared on output) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1366 | */ |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1367 | struct sample *sample_fetch_as_type(struct proxy *px, struct session *sess, |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1368 | struct stream *strm, unsigned int opt, |
Adis Nezirovic | 79beb24 | 2015-07-06 15:41:02 +0200 | [diff] [blame] | 1369 | struct sample_expr *expr, int smp_type) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1370 | { |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1371 | struct sample *smp = &temp_smp; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1372 | |
Willy Tarreau | 6c616e0 | 2014-06-25 16:56:41 +0200 | [diff] [blame] | 1373 | memset(smp, 0, sizeof(*smp)); |
| 1374 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 1375 | if (!sample_process(px, sess, strm, opt, expr, smp)) { |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1376 | if ((smp->flags & SMP_F_MAY_CHANGE) && !(opt & SMP_OPT_FINAL)) |
| 1377 | return smp; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1378 | return NULL; |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1379 | } |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1380 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1381 | if (!sample_casts[smp->data.type][smp_type]) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1382 | return NULL; |
| 1383 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1384 | if (!sample_casts[smp->data.type][smp_type](smp)) |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1385 | return NULL; |
| 1386 | |
Willy Tarreau | 5b4bf70 | 2014-06-13 16:04:35 +0200 | [diff] [blame] | 1387 | smp->flags &= ~SMP_F_MAY_CHANGE; |
Willy Tarreau | e7ad4bb | 2012-12-21 00:02:32 +0100 | [diff] [blame] | 1388 | return smp; |
| 1389 | } |
| 1390 | |
Christopher Faulet | 476e5d0 | 2016-10-26 11:34:47 +0200 | [diff] [blame] | 1391 | static void release_sample_arg(struct arg *p) |
| 1392 | { |
| 1393 | struct arg *p_back = p; |
| 1394 | |
| 1395 | if (!p) |
| 1396 | return; |
| 1397 | |
| 1398 | while (p->type != ARGT_STOP) { |
| 1399 | if (p->type == ARGT_STR || p->unresolved) { |
| 1400 | free(p->data.str.str); |
| 1401 | p->data.str.str = NULL; |
| 1402 | p->unresolved = 0; |
| 1403 | } |
| 1404 | else if (p->type == ARGT_REG) { |
| 1405 | if (p->data.reg) { |
| 1406 | regex_free(p->data.reg); |
| 1407 | free(p->data.reg); |
| 1408 | p->data.reg = NULL; |
| 1409 | } |
| 1410 | } |
| 1411 | p++; |
| 1412 | } |
| 1413 | |
| 1414 | if (p_back != empty_arg_list) |
| 1415 | free(p_back); |
| 1416 | } |
| 1417 | |
| 1418 | void release_sample_expr(struct sample_expr *expr) |
| 1419 | { |
| 1420 | struct sample_conv_expr *conv_expr, *conv_exprb; |
| 1421 | |
| 1422 | if (!expr) |
| 1423 | return; |
| 1424 | |
| 1425 | list_for_each_entry_safe(conv_expr, conv_exprb, &expr->conv_exprs, list) |
| 1426 | release_sample_arg(conv_expr->arg_p); |
| 1427 | release_sample_arg(expr->arg_p); |
| 1428 | free(expr); |
| 1429 | } |
| 1430 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1431 | /*****************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1432 | /* Sample format convert functions */ |
Willy Tarreau | b8c8f1f | 2012-04-23 22:38:26 +0200 | [diff] [blame] | 1433 | /* These functions set the data type on return. */ |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1434 | /*****************************************************************/ |
| 1435 | |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1436 | #ifdef DEBUG_EXPR |
| 1437 | static int sample_conv_debug(const struct arg *arg_p, struct sample *smp, void *private) |
| 1438 | { |
| 1439 | int i; |
| 1440 | struct sample tmp; |
| 1441 | |
| 1442 | if (!(global.mode & MODE_QUIET) || (global.mode & (MODE_VERBOSE | MODE_STARTING))) { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1443 | fprintf(stderr, "[debug converter] type: %s ", smp_to_type[smp->data.type]); |
| 1444 | if (!sample_casts[smp->data.type][SMP_T_STR]) { |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1445 | fprintf(stderr, "(undisplayable)"); |
| 1446 | } else { |
| 1447 | |
| 1448 | /* Copy sample fetch. This put the sample as const, the |
| 1449 | * cast will copy data if a transformation is required. |
| 1450 | */ |
| 1451 | memcpy(&tmp, smp, sizeof(struct sample)); |
| 1452 | tmp.flags = SMP_F_CONST; |
| 1453 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1454 | if (!sample_casts[smp->data.type][SMP_T_STR](&tmp)) |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1455 | fprintf(stderr, "(undisplayable)"); |
| 1456 | |
| 1457 | else { |
| 1458 | /* Display the displayable chars*. */ |
| 1459 | fprintf(stderr, "<"); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1460 | for (i = 0; i < tmp.data.u.str.len; i++) { |
| 1461 | if (isprint(tmp.data.u.str.str[i])) |
| 1462 | fputc(tmp.data.u.str.str[i], stderr); |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 1463 | else |
| 1464 | fputc('.', stderr); |
| 1465 | } |
| 1466 | } |
| 1467 | fprintf(stderr, ">\n"); |
| 1468 | } |
| 1469 | } |
| 1470 | return 1; |
| 1471 | } |
| 1472 | #endif |
| 1473 | |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 1474 | static int sample_conv_base642bin(const struct arg *arg_p, struct sample *smp, void *private) |
| 1475 | { |
| 1476 | struct chunk *trash = get_trash_chunk(); |
| 1477 | int bin_len; |
| 1478 | |
| 1479 | trash->len = 0; |
| 1480 | bin_len = base64dec(smp->data.u.str.str, smp->data.u.str.len, trash->str, trash->size); |
| 1481 | if (bin_len < 0) |
| 1482 | return 0; |
| 1483 | |
| 1484 | trash->len = bin_len; |
| 1485 | smp->data.u.str = *trash; |
| 1486 | smp->data.type = SMP_T_BIN; |
| 1487 | smp->flags &= ~SMP_F_CONST; |
| 1488 | return 1; |
| 1489 | } |
| 1490 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1491 | 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] | 1492 | { |
| 1493 | struct chunk *trash = get_trash_chunk(); |
| 1494 | int b64_len; |
| 1495 | |
| 1496 | trash->len = 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1497 | b64_len = a2base64(smp->data.u.str.str, smp->data.u.str.len, trash->str, trash->size); |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1498 | if (b64_len < 0) |
| 1499 | return 0; |
| 1500 | |
| 1501 | trash->len = b64_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1502 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1503 | smp->data.type = SMP_T_STR; |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 1504 | smp->flags &= ~SMP_F_CONST; |
| 1505 | return 1; |
| 1506 | } |
| 1507 | |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 1508 | static int sample_conv_sha1(const struct arg *arg_p, struct sample *smp, void *private) |
| 1509 | { |
| 1510 | blk_SHA_CTX ctx; |
| 1511 | struct chunk *trash = get_trash_chunk(); |
| 1512 | |
| 1513 | memset(&ctx, 0, sizeof(ctx)); |
| 1514 | |
| 1515 | blk_SHA1_Init(&ctx); |
| 1516 | blk_SHA1_Update(&ctx, smp->data.u.str.str, smp->data.u.str.len); |
| 1517 | blk_SHA1_Final((unsigned char *)trash->str, &ctx); |
| 1518 | |
| 1519 | trash->len = 20; |
| 1520 | smp->data.u.str = *trash; |
| 1521 | smp->data.type = SMP_T_BIN; |
| 1522 | smp->flags &= ~SMP_F_CONST; |
| 1523 | return 1; |
| 1524 | } |
| 1525 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1526 | 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] | 1527 | { |
| 1528 | struct chunk *trash = get_trash_chunk(); |
| 1529 | unsigned char c; |
| 1530 | int ptr = 0; |
| 1531 | |
| 1532 | trash->len = 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1533 | while (ptr < smp->data.u.str.len && trash->len <= trash->size - 2) { |
| 1534 | c = smp->data.u.str.str[ptr++]; |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1535 | trash->str[trash->len++] = hextab[(c >> 4) & 0xF]; |
| 1536 | trash->str[trash->len++] = hextab[c & 0xF]; |
| 1537 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1538 | smp->data.u.str = *trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1539 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 1540 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 1541 | return 1; |
| 1542 | } |
| 1543 | |
Dragan Dosen | 3f957b2 | 2017-10-24 09:27:34 +0200 | [diff] [blame] | 1544 | static int sample_conv_hex2int(const struct arg *arg_p, struct sample *smp, void *private) |
| 1545 | { |
| 1546 | long long int n = 0; |
| 1547 | int i, c; |
| 1548 | |
| 1549 | for (i = 0; i < smp->data.u.str.len; i++) { |
| 1550 | if ((c = hex2i(smp->data.u.str.str[i])) < 0) |
| 1551 | return 0; |
| 1552 | n = (n << 4) + c; |
| 1553 | } |
| 1554 | |
| 1555 | smp->data.u.sint = n; |
| 1556 | smp->data.type = SMP_T_SINT; |
| 1557 | smp->flags &= ~SMP_F_CONST; |
| 1558 | return 1; |
| 1559 | } |
| 1560 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1561 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1562 | 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] | 1563 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1564 | smp->data.u.sint = hash_djb2(smp->data.u.str.str, smp->data.u.str.len); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1565 | if (arg_p && arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1566 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1567 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1568 | return 1; |
| 1569 | } |
| 1570 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1571 | 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] | 1572 | { |
| 1573 | int i; |
| 1574 | |
Willy Tarreau | f0645dc | 2016-08-09 14:29:38 +0200 | [diff] [blame] | 1575 | if (!smp_make_rw(smp)) |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 1576 | return 0; |
| 1577 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1578 | for (i = 0; i < smp->data.u.str.len; i++) { |
| 1579 | if ((smp->data.u.str.str[i] >= 'A') && (smp->data.u.str.str[i] <= 'Z')) |
| 1580 | smp->data.u.str.str[i] += 'a' - 'A'; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1581 | } |
| 1582 | return 1; |
| 1583 | } |
| 1584 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1585 | 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] | 1586 | { |
| 1587 | int i; |
| 1588 | |
Willy Tarreau | f0645dc | 2016-08-09 14:29:38 +0200 | [diff] [blame] | 1589 | if (!smp_make_rw(smp)) |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 1590 | return 0; |
| 1591 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1592 | for (i = 0; i < smp->data.u.str.len; i++) { |
| 1593 | if ((smp->data.u.str.str[i] >= 'a') && (smp->data.u.str.str[i] <= 'z')) |
| 1594 | smp->data.u.str.str[i] += 'A' - 'a'; |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 1595 | } |
| 1596 | return 1; |
| 1597 | } |
| 1598 | |
Willy Tarreau | f995410 | 2012-04-20 14:03:29 +0200 | [diff] [blame] | 1599 | /* takes the netmask in arg_p */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1600 | static int sample_conv_ipmask(const struct arg *arg_p, struct sample *smp, void *private) |
Willy Tarreau | d31d6eb | 2010-01-26 18:01:41 +0100 | [diff] [blame] | 1601 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1602 | smp->data.u.ipv4.s_addr &= arg_p->data.ipv4.s_addr; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1603 | smp->data.type = SMP_T_IPV4; |
Willy Tarreau | d31d6eb | 2010-01-26 18:01:41 +0100 | [diff] [blame] | 1604 | return 1; |
| 1605 | } |
| 1606 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1607 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 1608 | * adds an optional offset found in args[1] and emits a string representing |
| 1609 | * the local time in the format specified in args[1] using strftime(). |
| 1610 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1611 | 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] | 1612 | { |
| 1613 | struct chunk *temp; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1614 | /* 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] | 1615 | time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL; |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1616 | struct tm *tm; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1617 | |
| 1618 | /* add offset */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1619 | if (args[1].type == ARGT_SINT) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1620 | curr_date += args[1].data.sint; |
| 1621 | |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1622 | tm = localtime(&curr_date); |
| 1623 | if (!tm) |
| 1624 | return 0; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1625 | temp = get_trash_chunk(); |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1626 | temp->len = strftime(temp->str, temp->size, args[0].data.str.str, tm); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1627 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1628 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1629 | return 1; |
| 1630 | } |
| 1631 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1632 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1633 | 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] | 1634 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1635 | smp->data.u.sint = hash_sdbm(smp->data.u.str.str, smp->data.u.str.len); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1636 | if (arg_p && arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1637 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1638 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1639 | return 1; |
| 1640 | } |
| 1641 | |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1642 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 1643 | * adds an optional offset found in args[1] and emits a string representing |
| 1644 | * the UTC date in the format specified in args[1] using strftime(). |
| 1645 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1646 | 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] | 1647 | { |
| 1648 | struct chunk *temp; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1649 | /* 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] | 1650 | time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL; |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1651 | struct tm *tm; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1652 | |
| 1653 | /* add offset */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1654 | if (args[1].type == ARGT_SINT) |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1655 | curr_date += args[1].data.sint; |
| 1656 | |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1657 | tm = gmtime(&curr_date); |
| 1658 | if (!tm) |
| 1659 | return 0; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1660 | temp = get_trash_chunk(); |
Thierry FOURNIER | fac9ccf | 2015-07-08 00:15:20 +0200 | [diff] [blame] | 1661 | temp->len = strftime(temp->str, temp->size, args[0].data.str.str, tm); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1662 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1663 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 0dbfdba | 2014-07-10 16:37:47 +0200 | [diff] [blame] | 1664 | return 1; |
| 1665 | } |
| 1666 | |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1667 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1668 | 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] | 1669 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1670 | smp->data.u.sint = hash_wt6(smp->data.u.str.str, smp->data.u.str.len); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1671 | if (arg_p && arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1672 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1673 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 23ec4ca | 2014-07-15 20:15:37 +0200 | [diff] [blame] | 1674 | return 1; |
| 1675 | } |
| 1676 | |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 1677 | /* hashes the binary input into a 32-bit unsigned int using xxh. |
| 1678 | * The seed of the hash defaults to 0 but can be changd in argument 1. |
| 1679 | */ |
| 1680 | static int sample_conv_xxh32(const struct arg *arg_p, struct sample *smp, void *private) |
| 1681 | { |
| 1682 | unsigned int seed; |
| 1683 | |
| 1684 | if (arg_p && arg_p->data.sint) |
| 1685 | seed = arg_p->data.sint; |
| 1686 | else |
| 1687 | seed = 0; |
| 1688 | smp->data.u.sint = XXH32(smp->data.u.str.str, smp->data.u.str.len, seed); |
| 1689 | smp->data.type = SMP_T_SINT; |
| 1690 | return 1; |
| 1691 | } |
| 1692 | |
| 1693 | /* hashes the binary input into a 64-bit unsigned int using xxh. |
| 1694 | * In fact, the function returns a 64 bit unsigned, but the sample |
| 1695 | * storage of haproxy only proposes 64-bits signed, so the value is |
| 1696 | * cast as signed. This cast doesn't impact the hash repartition. |
| 1697 | * The seed of the hash defaults to 0 but can be changd in argument 1. |
| 1698 | */ |
| 1699 | static int sample_conv_xxh64(const struct arg *arg_p, struct sample *smp, void *private) |
| 1700 | { |
| 1701 | unsigned long long int seed; |
| 1702 | |
| 1703 | if (arg_p && arg_p->data.sint) |
| 1704 | seed = (unsigned long long int)arg_p->data.sint; |
| 1705 | else |
| 1706 | seed = 0; |
| 1707 | smp->data.u.sint = (long long int)XXH64(smp->data.u.str.str, smp->data.u.str.len, seed); |
| 1708 | smp->data.type = SMP_T_SINT; |
| 1709 | return 1; |
| 1710 | } |
| 1711 | |
Willy Tarreau | 8059977 | 2015-01-20 19:35:24 +0100 | [diff] [blame] | 1712 | /* hashes the binary input into a 32-bit unsigned int */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1713 | 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] | 1714 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1715 | smp->data.u.sint = hash_crc32(smp->data.u.str.str, smp->data.u.str.len); |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1716 | if (arg_p && arg_p->data.sint) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1717 | smp->data.u.sint = full_hash(smp->data.u.sint); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1718 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 8059977 | 2015-01-20 19:35:24 +0100 | [diff] [blame] | 1719 | return 1; |
| 1720 | } |
| 1721 | |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1722 | /* This function escape special json characters. The returned string can be |
| 1723 | * safely set between two '"' and used as json string. The json string is |
| 1724 | * defined like this: |
| 1725 | * |
| 1726 | * any Unicode character except '"' or '\' or control character |
| 1727 | * \", \\, \/, \b, \f, \n, \r, \t, \u + four-hex-digits |
| 1728 | * |
| 1729 | * The enum input_type contain all the allowed mode for decoding the input |
| 1730 | * string. |
| 1731 | */ |
| 1732 | enum input_type { |
| 1733 | IT_ASCII = 0, |
| 1734 | IT_UTF8, |
| 1735 | IT_UTF8S, |
| 1736 | IT_UTF8P, |
| 1737 | IT_UTF8PS, |
| 1738 | }; |
| 1739 | static int sample_conv_json_check(struct arg *arg, struct sample_conv *conv, |
| 1740 | const char *file, int line, char **err) |
| 1741 | { |
| 1742 | if (!arg) { |
| 1743 | memprintf(err, "Unexpected empty arg list"); |
| 1744 | return 0; |
| 1745 | } |
| 1746 | |
| 1747 | if (arg->type != ARGT_STR) { |
| 1748 | memprintf(err, "Unexpected arg type"); |
| 1749 | return 0; |
| 1750 | } |
| 1751 | |
| 1752 | if (strcmp(arg->data.str.str, "") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1753 | arg->type = ARGT_SINT; |
| 1754 | arg->data.sint = IT_ASCII; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1755 | return 1; |
| 1756 | } |
| 1757 | |
| 1758 | else if (strcmp(arg->data.str.str, "ascii") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1759 | arg->type = ARGT_SINT; |
| 1760 | arg->data.sint = IT_ASCII; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1761 | return 1; |
| 1762 | } |
| 1763 | |
| 1764 | else if (strcmp(arg->data.str.str, "utf8") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1765 | arg->type = ARGT_SINT; |
| 1766 | arg->data.sint = IT_UTF8; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1767 | return 1; |
| 1768 | } |
| 1769 | |
| 1770 | else if (strcmp(arg->data.str.str, "utf8s") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1771 | arg->type = ARGT_SINT; |
| 1772 | arg->data.sint = IT_UTF8S; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1773 | return 1; |
| 1774 | } |
| 1775 | |
| 1776 | else if (strcmp(arg->data.str.str, "utf8p") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1777 | arg->type = ARGT_SINT; |
| 1778 | arg->data.sint = IT_UTF8P; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1779 | return 1; |
| 1780 | } |
| 1781 | |
| 1782 | else if (strcmp(arg->data.str.str, "utf8ps") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1783 | arg->type = ARGT_SINT; |
| 1784 | arg->data.sint = IT_UTF8PS; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1785 | return 1; |
| 1786 | } |
| 1787 | |
Thierry FOURNIER / OZON.IO | a69c912 | 2016-11-23 01:13:57 +0100 | [diff] [blame] | 1788 | memprintf(err, "Unexpected input code type. " |
| 1789 | "Allowed value are 'ascii', 'utf8', 'utf8s', 'utf8p' and 'utf8ps'"); |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1790 | return 0; |
| 1791 | } |
| 1792 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1793 | 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] | 1794 | { |
| 1795 | struct chunk *temp; |
| 1796 | char _str[7]; /* \u + 4 hex digit + null char for sprintf. */ |
| 1797 | const char *str; |
| 1798 | int len; |
| 1799 | enum input_type input_type = IT_ASCII; |
| 1800 | unsigned int c; |
| 1801 | unsigned int ret; |
| 1802 | char *p; |
| 1803 | |
| 1804 | if (arg_p) |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1805 | input_type = arg_p->data.sint; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1806 | |
| 1807 | temp = get_trash_chunk(); |
| 1808 | temp->len = 0; |
| 1809 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1810 | p = smp->data.u.str.str; |
| 1811 | while (p < smp->data.u.str.str + smp->data.u.str.len) { |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1812 | |
| 1813 | if (input_type == IT_ASCII) { |
| 1814 | /* Read input as ASCII. */ |
| 1815 | c = *(unsigned char *)p; |
| 1816 | p++; |
| 1817 | } |
| 1818 | else { |
| 1819 | /* Read input as UTF8. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1820 | ret = utf8_next(p, smp->data.u.str.len - ( p - smp->data.u.str.str ), &c); |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1821 | p += utf8_return_length(ret); |
| 1822 | |
| 1823 | if (input_type == IT_UTF8 && utf8_return_code(ret) != UTF8_CODE_OK) |
| 1824 | return 0; |
| 1825 | if (input_type == IT_UTF8S && utf8_return_code(ret) != UTF8_CODE_OK) |
| 1826 | continue; |
| 1827 | if (input_type == IT_UTF8P && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ)) |
| 1828 | return 0; |
| 1829 | if (input_type == IT_UTF8PS && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ)) |
| 1830 | continue; |
| 1831 | |
| 1832 | /* Check too big values. */ |
| 1833 | if ((unsigned int)c > 0xffff) { |
| 1834 | if (input_type == IT_UTF8 || input_type == IT_UTF8P) |
| 1835 | return 0; |
| 1836 | continue; |
| 1837 | } |
| 1838 | } |
| 1839 | |
| 1840 | /* Convert character. */ |
| 1841 | if (c == '"') { |
| 1842 | len = 2; |
| 1843 | str = "\\\""; |
| 1844 | } |
| 1845 | else if (c == '\\') { |
| 1846 | len = 2; |
| 1847 | str = "\\\\"; |
| 1848 | } |
| 1849 | else if (c == '/') { |
| 1850 | len = 2; |
| 1851 | str = "\\/"; |
| 1852 | } |
| 1853 | else if (c == '\b') { |
| 1854 | len = 2; |
| 1855 | str = "\\b"; |
| 1856 | } |
| 1857 | else if (c == '\f') { |
| 1858 | len = 2; |
| 1859 | str = "\\f"; |
| 1860 | } |
| 1861 | else if (c == '\r') { |
| 1862 | len = 2; |
| 1863 | str = "\\r"; |
| 1864 | } |
| 1865 | else if (c == '\n') { |
| 1866 | len = 2; |
| 1867 | str = "\\n"; |
| 1868 | } |
| 1869 | else if (c == '\t') { |
| 1870 | len = 2; |
| 1871 | str = "\\t"; |
| 1872 | } |
| 1873 | else if (c > 0xff || !isprint(c)) { |
| 1874 | /* isprint generate a segfault if c is too big. The man says that |
| 1875 | * c must have the value of an unsigned char or EOF. |
| 1876 | */ |
| 1877 | len = 6; |
| 1878 | _str[0] = '\\'; |
| 1879 | _str[1] = 'u'; |
| 1880 | snprintf(&_str[2], 5, "%04x", (unsigned short)c); |
| 1881 | str = _str; |
| 1882 | } |
| 1883 | else { |
| 1884 | len = 1; |
| 1885 | str = (char *)&c; |
| 1886 | } |
| 1887 | |
| 1888 | /* Check length */ |
| 1889 | if (temp->len + len > temp->size) |
| 1890 | return 0; |
| 1891 | |
| 1892 | /* Copy string. */ |
| 1893 | memcpy(temp->str + temp->len, str, len); |
| 1894 | temp->len += len; |
| 1895 | } |
| 1896 | |
| 1897 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1898 | smp->data.u.str = *temp; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1899 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 1900 | |
| 1901 | return 1; |
| 1902 | } |
| 1903 | |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 1904 | /* This sample function is designed to extract some bytes from an input buffer. |
| 1905 | * First arg is the offset. |
| 1906 | * Optional second arg is the length to truncate */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1907 | 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] | 1908 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1909 | if (smp->data.u.str.len <= arg_p[0].data.sint) { |
| 1910 | smp->data.u.str.len = 0; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 1911 | return 1; |
| 1912 | } |
| 1913 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1914 | if (smp->data.u.str.size) |
| 1915 | smp->data.u.str.size -= arg_p[0].data.sint; |
| 1916 | smp->data.u.str.len -= arg_p[0].data.sint; |
| 1917 | smp->data.u.str.str += arg_p[0].data.sint; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 1918 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1919 | if ((arg_p[1].type == ARGT_SINT) && (arg_p[1].data.sint < smp->data.u.str.len)) |
| 1920 | smp->data.u.str.len = arg_p[1].data.sint; |
Emeric Brun | 54c4ac8 | 2014-11-03 15:32:43 +0100 | [diff] [blame] | 1921 | |
| 1922 | return 1; |
| 1923 | } |
| 1924 | |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1925 | static int sample_conv_field_check(struct arg *args, struct sample_conv *conv, |
| 1926 | const char *file, int line, char **err) |
| 1927 | { |
| 1928 | struct arg *arg = args; |
| 1929 | |
| 1930 | if (!arg) { |
| 1931 | memprintf(err, "Unexpected empty arg list"); |
| 1932 | return 0; |
| 1933 | } |
| 1934 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1935 | if (arg->type != ARGT_SINT) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1936 | memprintf(err, "Unexpected arg type"); |
| 1937 | return 0; |
| 1938 | } |
| 1939 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1940 | if (!arg->data.sint) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1941 | memprintf(err, "Unexpected value 0 for index"); |
| 1942 | return 0; |
| 1943 | } |
| 1944 | |
| 1945 | arg++; |
| 1946 | |
| 1947 | if (arg->type != ARGT_STR) { |
| 1948 | memprintf(err, "Unexpected arg type"); |
| 1949 | return 0; |
| 1950 | } |
| 1951 | |
| 1952 | if (!arg->data.str.len) { |
| 1953 | memprintf(err, "Empty separators list"); |
| 1954 | return 0; |
| 1955 | } |
| 1956 | |
| 1957 | return 1; |
| 1958 | } |
| 1959 | |
| 1960 | /* This sample function is designed to a return selected part of a string (field). |
| 1961 | * First arg is the index of the field (start at 1) |
| 1962 | * Second arg is a char list of separators (type string) |
| 1963 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1964 | 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] | 1965 | { |
| 1966 | unsigned int field; |
| 1967 | char *start, *end; |
| 1968 | int i; |
| 1969 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1970 | if (!arg_p[0].data.sint) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1971 | return 0; |
| 1972 | |
| 1973 | field = 1; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1974 | end = start = smp->data.u.str.str; |
| 1975 | while (end - smp->data.u.str.str < smp->data.u.str.len) { |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1976 | |
| 1977 | for (i = 0 ; i < arg_p[1].data.str.len ; i++) { |
| 1978 | if (*end == arg_p[1].data.str.str[i]) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1979 | if (field == arg_p[0].data.sint) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1980 | goto found; |
| 1981 | start = end+1; |
| 1982 | field++; |
| 1983 | break; |
| 1984 | } |
| 1985 | } |
| 1986 | end++; |
| 1987 | } |
| 1988 | |
| 1989 | /* Field not found */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 1990 | if (field != arg_p[0].data.sint) { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1991 | smp->data.u.str.len = 0; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1992 | return 1; |
| 1993 | } |
| 1994 | found: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1995 | smp->data.u.str.len = end - start; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1996 | /* If ret string is len 0, no need to |
| 1997 | change pointers or to update size */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1998 | if (!smp->data.u.str.len) |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 1999 | return 1; |
| 2000 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2001 | smp->data.u.str.str = start; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2002 | |
| 2003 | /* Compute remaining size if needed |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2004 | Note: smp->data.u.str.size cannot be set to 0 */ |
| 2005 | if (smp->data.u.str.size) |
| 2006 | smp->data.u.str.size -= start - smp->data.u.str.str; |
Emeric Brun | f399b0d | 2014-11-03 17:07:03 +0100 | [diff] [blame] | 2007 | |
| 2008 | return 1; |
| 2009 | } |
| 2010 | |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2011 | /* This sample function is designed to return a word from a string. |
| 2012 | * First arg is the index of the word (start at 1) |
| 2013 | * Second arg is a char list of words separators (type string) |
| 2014 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2015 | 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] | 2016 | { |
| 2017 | unsigned int word; |
| 2018 | char *start, *end; |
| 2019 | int i, issep, inword; |
| 2020 | |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2021 | if (!arg_p[0].data.sint) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2022 | return 0; |
| 2023 | |
| 2024 | word = 0; |
| 2025 | inword = 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2026 | end = start = smp->data.u.str.str; |
| 2027 | while (end - smp->data.u.str.str < smp->data.u.str.len) { |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2028 | issep = 0; |
| 2029 | for (i = 0 ; i < arg_p[1].data.str.len ; i++) { |
| 2030 | if (*end == arg_p[1].data.str.str[i]) { |
| 2031 | issep = 1; |
| 2032 | break; |
| 2033 | } |
| 2034 | } |
| 2035 | if (!inword) { |
| 2036 | if (!issep) { |
| 2037 | word++; |
| 2038 | start = end; |
| 2039 | inword = 1; |
| 2040 | } |
| 2041 | } |
| 2042 | else if (issep) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2043 | if (word == arg_p[0].data.sint) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2044 | goto found; |
| 2045 | inword = 0; |
| 2046 | } |
| 2047 | end++; |
| 2048 | } |
| 2049 | |
| 2050 | /* Field not found */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2051 | if (word != arg_p[0].data.sint) { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2052 | smp->data.u.str.len = 0; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2053 | return 1; |
| 2054 | } |
| 2055 | found: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2056 | smp->data.u.str.len = end - start; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2057 | /* If ret string is len 0, no need to |
| 2058 | change pointers or to update size */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2059 | if (!smp->data.u.str.len) |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2060 | return 1; |
| 2061 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2062 | smp->data.u.str.str = start; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2063 | |
| 2064 | /* Compute remaining size if needed |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2065 | Note: smp->data.u.str.size cannot be set to 0 */ |
| 2066 | if (smp->data.u.str.size) |
| 2067 | smp->data.u.str.size -= start - smp->data.u.str.str; |
Emeric Brun | c9a0f6d | 2014-11-25 14:09:01 +0100 | [diff] [blame] | 2068 | |
| 2069 | return 1; |
| 2070 | } |
| 2071 | |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2072 | static int sample_conv_regsub_check(struct arg *args, struct sample_conv *conv, |
| 2073 | const char *file, int line, char **err) |
| 2074 | { |
| 2075 | struct arg *arg = args; |
| 2076 | char *p; |
| 2077 | int len; |
| 2078 | |
| 2079 | /* arg0 is a regex, it uses type_flag for ICASE and global match */ |
| 2080 | arg[0].type_flags = 0; |
| 2081 | |
| 2082 | if (arg[2].type != ARGT_STR) |
| 2083 | return 1; |
| 2084 | |
| 2085 | p = arg[2].data.str.str; |
| 2086 | len = arg[2].data.str.len; |
| 2087 | while (len) { |
| 2088 | if (*p == 'i') { |
| 2089 | arg[0].type_flags |= ARGF_REG_ICASE; |
| 2090 | } |
| 2091 | else if (*p == 'g') { |
| 2092 | arg[0].type_flags |= ARGF_REG_GLOB; |
| 2093 | } |
| 2094 | else { |
| 2095 | memprintf(err, "invalid regex flag '%c', only 'i' and 'g' are supported", *p); |
| 2096 | return 0; |
| 2097 | } |
| 2098 | p++; |
| 2099 | len--; |
| 2100 | } |
| 2101 | return 1; |
| 2102 | } |
| 2103 | |
| 2104 | /* This sample function is designed to do the equivalent of s/match/replace/ on |
| 2105 | * the input string. It applies a regex and restarts from the last matched |
| 2106 | * location until nothing matches anymore. First arg is the regex to apply to |
| 2107 | * the input string, second arg is the replacement expression. |
| 2108 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2109 | 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] | 2110 | { |
| 2111 | char *start, *end; |
| 2112 | struct my_regex *reg = arg_p[0].data.reg; |
| 2113 | regmatch_t pmatch[MAX_MATCH]; |
| 2114 | struct chunk *trash = get_trash_chunk(); |
| 2115 | int flag, max; |
| 2116 | int found; |
| 2117 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2118 | start = smp->data.u.str.str; |
| 2119 | end = start + smp->data.u.str.len; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2120 | |
| 2121 | flag = 0; |
| 2122 | while (1) { |
| 2123 | /* check for last round which is used to copy remaining parts |
| 2124 | * when not running in global replacement mode. |
| 2125 | */ |
| 2126 | found = 0; |
| 2127 | if ((arg_p[0].type_flags & ARGF_REG_GLOB) || !(flag & REG_NOTBOL)) { |
| 2128 | /* Note: we can have start == end on empty strings or at the end */ |
| 2129 | found = regex_exec_match2(reg, start, end - start, MAX_MATCH, pmatch, flag); |
| 2130 | } |
| 2131 | |
| 2132 | if (!found) |
| 2133 | pmatch[0].rm_so = end - start; |
| 2134 | |
| 2135 | /* copy the heading non-matching part (which may also be the tail if nothing matches) */ |
| 2136 | max = trash->size - trash->len; |
| 2137 | if (max && pmatch[0].rm_so > 0) { |
| 2138 | if (max > pmatch[0].rm_so) |
| 2139 | max = pmatch[0].rm_so; |
| 2140 | memcpy(trash->str + trash->len, start, max); |
| 2141 | trash->len += max; |
| 2142 | } |
| 2143 | |
| 2144 | if (!found) |
| 2145 | break; |
| 2146 | |
| 2147 | /* replace the matching part */ |
| 2148 | max = trash->size - trash->len; |
| 2149 | if (max) { |
| 2150 | if (max > arg_p[1].data.str.len) |
| 2151 | max = arg_p[1].data.str.len; |
| 2152 | memcpy(trash->str + trash->len, arg_p[1].data.str.str, max); |
| 2153 | trash->len += max; |
| 2154 | } |
| 2155 | |
| 2156 | /* stop here if we're done with this string */ |
| 2157 | if (start >= end) |
| 2158 | break; |
| 2159 | |
| 2160 | /* We have a special case for matches of length 0 (eg: "x*y*"). |
| 2161 | * These ones are considered to match in front of a character, |
| 2162 | * so we have to copy that character and skip to the next one. |
| 2163 | */ |
| 2164 | if (!pmatch[0].rm_eo) { |
| 2165 | if (trash->len < trash->size) |
| 2166 | trash->str[trash->len++] = start[pmatch[0].rm_eo]; |
| 2167 | pmatch[0].rm_eo++; |
| 2168 | } |
| 2169 | |
| 2170 | start += pmatch[0].rm_eo; |
| 2171 | flag |= REG_NOTBOL; |
| 2172 | } |
| 2173 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2174 | smp->data.u.str = *trash; |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2175 | return 1; |
| 2176 | } |
| 2177 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2178 | /* This function check an operator entry. It expects a string. |
| 2179 | * The string can be an integer or a variable name. |
| 2180 | */ |
| 2181 | static int check_operator(struct arg *args, struct sample_conv *conv, |
| 2182 | const char *file, int line, char **err) |
| 2183 | { |
| 2184 | const char *str; |
| 2185 | const char *end; |
| 2186 | |
| 2187 | /* Try to decode a variable. */ |
| 2188 | if (vars_check_arg(&args[0], NULL)) |
| 2189 | return 1; |
| 2190 | |
| 2191 | /* Try to convert an integer */ |
| 2192 | str = args[0].data.str.str; |
| 2193 | end = str + strlen(str); |
| 2194 | args[0].data.sint = read_int64(&str, end); |
| 2195 | if (*str != '\0') { |
| 2196 | memprintf(err, "expects an integer or a variable name"); |
| 2197 | return 0; |
| 2198 | } |
| 2199 | args[0].type = ARGT_SINT; |
| 2200 | return 1; |
| 2201 | } |
| 2202 | |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2203 | /* This function returns a sample struct filled with an arg content. |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2204 | * If the arg contain an integer, the integer is returned in the |
| 2205 | * sample. If the arg contains a variable descriptor, it returns the |
| 2206 | * variable value. |
| 2207 | * |
| 2208 | * This function returns 0 if an error occurs, otherwise it returns 1. |
| 2209 | */ |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2210 | static inline int sample_conv_var2smp(const struct arg *arg, struct sample *smp) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2211 | { |
| 2212 | switch (arg->type) { |
| 2213 | case ARGT_SINT: |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2214 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2215 | smp->data.u.sint = arg->data.sint; |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2216 | return 1; |
| 2217 | case ARGT_VAR: |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2218 | if (!vars_get_by_desc(&arg->data.var, smp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2219 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2220 | if (!sample_casts[smp->data.type][SMP_T_SINT]) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2221 | return 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2222 | if (!sample_casts[smp->data.type][SMP_T_SINT](smp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2223 | return 0; |
| 2224 | return 1; |
| 2225 | default: |
| 2226 | return 0; |
| 2227 | } |
| 2228 | } |
| 2229 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2230 | /* 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] | 2231 | * result. |
| 2232 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2233 | 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] | 2234 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2235 | smp->data.u.sint = ~smp->data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2236 | return 1; |
| 2237 | } |
| 2238 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2239 | /* Takes a SINT on input, applies a binary "and" with the SINT directly in |
| 2240 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2241 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2242 | 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] | 2243 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2244 | struct sample tmp; |
| 2245 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2246 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2247 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2248 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2249 | smp->data.u.sint &= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2250 | return 1; |
| 2251 | } |
| 2252 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2253 | /* Takes a SINT on input, applies a binary "or" with the SINT directly in |
| 2254 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2255 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2256 | 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] | 2257 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2258 | struct sample tmp; |
| 2259 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2260 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2261 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2262 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2263 | smp->data.u.sint |= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2264 | return 1; |
| 2265 | } |
| 2266 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2267 | /* Takes a SINT on input, applies a binary "xor" with the SINT directly in |
| 2268 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2269 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2270 | 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] | 2271 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2272 | struct sample tmp; |
| 2273 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2274 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2275 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2276 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2277 | smp->data.u.sint ^= tmp.data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2278 | return 1; |
| 2279 | } |
| 2280 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2281 | static inline long long int arith_add(long long int a, long long int b) |
| 2282 | { |
| 2283 | /* Prevent overflow and makes capped calculus. |
| 2284 | * We must ensure that the check calculus doesn't |
| 2285 | * exceed the signed 64 bits limits. |
| 2286 | * |
| 2287 | * +----------+----------+ |
| 2288 | * | a<0 | a>=0 | |
| 2289 | * +------+----------+----------+ |
| 2290 | * | b<0 | MIN-a>b | no check | |
| 2291 | * +------+----------+----------+ |
| 2292 | * | b>=0 | no check | MAX-a<b | |
| 2293 | * +------+----------+----------+ |
| 2294 | */ |
| 2295 | if ((a ^ b) >= 0) { |
| 2296 | /* signs are differents. */ |
| 2297 | if (a < 0) { |
| 2298 | if (LLONG_MIN - a > b) |
| 2299 | return LLONG_MIN; |
| 2300 | } |
| 2301 | if (LLONG_MAX - a < b) |
| 2302 | return LLONG_MAX; |
| 2303 | } |
| 2304 | return a + b; |
| 2305 | } |
| 2306 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2307 | /* Takes a SINT on input, applies an arithmetic "add" with the SINT directly in |
| 2308 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2309 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2310 | 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] | 2311 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2312 | struct sample tmp; |
| 2313 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2314 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2315 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2316 | return 0; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2317 | 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] | 2318 | return 1; |
| 2319 | } |
| 2320 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2321 | /* Takes a SINT on input, applies an arithmetic "sub" with the SINT directly in |
| 2322 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2323 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2324 | static int sample_conv_arith_sub(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2325 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2326 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2327 | struct sample tmp; |
| 2328 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2329 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2330 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2331 | return 0; |
| 2332 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2333 | /* We cannot represent -LLONG_MIN because abs(LLONG_MIN) is greater |
| 2334 | * than abs(LLONG_MAX). So, the following code use LLONG_MAX in place |
| 2335 | * of -LLONG_MIN and correct the result. |
| 2336 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2337 | if (tmp.data.u.sint == LLONG_MIN) { |
| 2338 | smp->data.u.sint = arith_add(smp->data.u.sint, LLONG_MAX); |
| 2339 | if (smp->data.u.sint < LLONG_MAX) |
| 2340 | smp->data.u.sint++; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2341 | return 1; |
| 2342 | } |
| 2343 | |
| 2344 | /* standard substraction: we use the "add" function and negate |
| 2345 | * the second operand. |
| 2346 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2347 | 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] | 2348 | return 1; |
| 2349 | } |
| 2350 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2351 | /* Takes a SINT on input, applies an arithmetic "mul" with the SINT directly in |
| 2352 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
| 2353 | * If the result makes an overflow, then the largest possible quantity is |
| 2354 | * returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2355 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2356 | static int sample_conv_arith_mul(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2357 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2358 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2359 | struct sample tmp; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2360 | long long int c; |
| 2361 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2362 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2363 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2364 | return 0; |
| 2365 | |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2366 | /* prevent divide by 0 during the check */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2367 | if (!smp->data.u.sint || !tmp.data.u.sint) { |
| 2368 | smp->data.u.sint = 0; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2369 | return 1; |
| 2370 | } |
| 2371 | |
| 2372 | /* The multiply between LLONG_MIN and -1 returns a |
| 2373 | * "floting point exception". |
| 2374 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2375 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 2376 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2377 | return 1; |
| 2378 | } |
| 2379 | |
| 2380 | /* execute standard multiplication. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2381 | c = smp->data.u.sint * tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2382 | |
| 2383 | /* check for overflow and makes capped multiply. */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2384 | if (smp->data.u.sint != c / tmp.data.u.sint) { |
| 2385 | if ((smp->data.u.sint < 0) == (tmp.data.u.sint < 0)) { |
| 2386 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2387 | return 1; |
| 2388 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2389 | smp->data.u.sint = LLONG_MIN; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2390 | return 1; |
| 2391 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2392 | smp->data.u.sint = c; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2393 | return 1; |
| 2394 | } |
| 2395 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2396 | /* Takes a SINT on input, applies an arithmetic "div" with the SINT directly in |
| 2397 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
| 2398 | * If arg_p makes the result overflow, then the largest possible quantity is |
| 2399 | * returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2400 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2401 | static int sample_conv_arith_div(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2402 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2403 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2404 | struct sample tmp; |
| 2405 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2406 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2407 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2408 | return 0; |
| 2409 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2410 | if (tmp.data.u.sint) { |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2411 | /* The divide between LLONG_MIN and -1 returns a |
| 2412 | * "floting point exception". |
| 2413 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2414 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 2415 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2416 | return 1; |
| 2417 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2418 | smp->data.u.sint /= tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2419 | return 1; |
| 2420 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2421 | smp->data.u.sint = LLONG_MAX; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2422 | return 1; |
| 2423 | } |
| 2424 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2425 | /* Takes a SINT on input, applies an arithmetic "mod" with the SINT directly in |
| 2426 | * arg_p or in the varaible described in arg_p, and returns the SINT result. |
| 2427 | * If arg_p makes the result overflow, then 0 is returned. |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2428 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2429 | static int sample_conv_arith_mod(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2430 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2431 | { |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2432 | struct sample tmp; |
| 2433 | |
Willy Tarreau | 7560dd4 | 2016-03-10 16:28:58 +0100 | [diff] [blame] | 2434 | smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt); |
Willy Tarreau | 6204cd9 | 2016-03-10 16:33:04 +0100 | [diff] [blame] | 2435 | if (!sample_conv_var2smp(arg_p, &tmp)) |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2436 | return 0; |
| 2437 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2438 | if (tmp.data.u.sint) { |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2439 | /* The divide between LLONG_MIN and -1 returns a |
| 2440 | * "floting point exception". |
| 2441 | */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2442 | if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) { |
| 2443 | smp->data.u.sint = 0; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2444 | return 1; |
| 2445 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2446 | smp->data.u.sint %= tmp.data.u.sint; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2447 | return 1; |
| 2448 | } |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2449 | smp->data.u.sint = 0; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2450 | return 1; |
| 2451 | } |
| 2452 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2453 | /* 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] | 2454 | * result. |
| 2455 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2456 | static int sample_conv_arith_neg(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2457 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2458 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2459 | if (smp->data.u.sint == LLONG_MIN) |
| 2460 | smp->data.u.sint = LLONG_MAX; |
Thierry FOURNIER | 00c005c | 2015-07-08 01:10:21 +0200 | [diff] [blame] | 2461 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2462 | smp->data.u.sint = -smp->data.u.sint; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2463 | return 1; |
| 2464 | } |
| 2465 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2466 | /* 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] | 2467 | * false. The output is a BOOL. |
| 2468 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2469 | static int sample_conv_arith_bool(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2470 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2471 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2472 | smp->data.u.sint = !!smp->data.u.sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2473 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2474 | return 1; |
| 2475 | } |
| 2476 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2477 | /* 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] | 2478 | * truee. The output is a BOOL. |
| 2479 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2480 | static int sample_conv_arith_not(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2481 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2482 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2483 | smp->data.u.sint = !smp->data.u.sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2484 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2485 | return 1; |
| 2486 | } |
| 2487 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2488 | /* 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] | 2489 | * The output is a BOOL. |
| 2490 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2491 | static int sample_conv_arith_odd(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2492 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2493 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2494 | smp->data.u.sint = smp->data.u.sint & 1; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2495 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2496 | return 1; |
| 2497 | } |
| 2498 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2499 | /* 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] | 2500 | * The output is a BOOL. |
| 2501 | */ |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2502 | static int sample_conv_arith_even(const struct arg *arg_p, |
Thierry FOURNIER | 68a556e | 2015-02-23 15:11:11 +0100 | [diff] [blame] | 2503 | struct sample *smp, void *private) |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2504 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2505 | smp->data.u.sint = !(smp->data.u.sint & 1); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2506 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2507 | return 1; |
| 2508 | } |
| 2509 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2510 | /************************************************************************/ |
| 2511 | /* All supported sample fetch functions must be declared here */ |
| 2512 | /************************************************************************/ |
| 2513 | |
| 2514 | /* force TRUE to be returned at the fetch level */ |
| 2515 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2516 | 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] | 2517 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2518 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2519 | smp->data.u.sint = 1; |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2520 | return 1; |
| 2521 | } |
| 2522 | |
| 2523 | /* force FALSE to be returned at the fetch level */ |
| 2524 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2525 | 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] | 2526 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2527 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2528 | smp->data.u.sint = 0; |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2529 | return 1; |
| 2530 | } |
| 2531 | |
| 2532 | /* retrieve environment variable $1 as a string */ |
| 2533 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2534 | 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] | 2535 | { |
| 2536 | char *env; |
| 2537 | |
| 2538 | if (!args || args[0].type != ARGT_STR) |
| 2539 | return 0; |
| 2540 | |
| 2541 | env = getenv(args[0].data.str.str); |
| 2542 | if (!env) |
| 2543 | return 0; |
| 2544 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2545 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 2546 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2547 | smp->data.u.str.str = env; |
| 2548 | smp->data.u.str.len = strlen(env); |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2549 | return 1; |
| 2550 | } |
| 2551 | |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 2552 | /* retrieve the current local date in epoch time, and applies an optional offset |
| 2553 | * of args[0] seconds. |
| 2554 | */ |
| 2555 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2556 | 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] | 2557 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2558 | smp->data.u.sint = date.tv_sec; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 2559 | |
| 2560 | /* add offset */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2561 | if (args && args[0].type == ARGT_SINT) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2562 | smp->data.u.sint += args[0].data.sint; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 2563 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2564 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 6236d3a | 2013-07-25 14:28:25 +0200 | [diff] [blame] | 2565 | smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 2566 | return 1; |
| 2567 | } |
| 2568 | |
Nenad Merdanovic | 807a6e7 | 2017-03-12 22:00:00 +0100 | [diff] [blame] | 2569 | /* returns the hostname */ |
| 2570 | static int |
| 2571 | smp_fetch_hostname(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2572 | { |
| 2573 | smp->data.type = SMP_T_STR; |
| 2574 | smp->flags = SMP_F_CONST; |
| 2575 | smp->data.u.str.str = hostname; |
| 2576 | smp->data.u.str.len = strlen(hostname); |
| 2577 | return 1; |
| 2578 | } |
| 2579 | |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2580 | /* returns the number of processes */ |
| 2581 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2582 | 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] | 2583 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2584 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2585 | smp->data.u.sint = global.nbproc; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2586 | return 1; |
| 2587 | } |
| 2588 | |
| 2589 | /* returns the number of the current process (between 1 and nbproc */ |
| 2590 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2591 | 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] | 2592 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2593 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2594 | smp->data.u.sint = relative_pid; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2595 | return 1; |
| 2596 | } |
| 2597 | |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 2598 | /* generate a random 32-bit integer for whatever purpose, with an optional |
| 2599 | * range specified in argument. |
| 2600 | */ |
| 2601 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2602 | 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] | 2603 | { |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2604 | smp->data.u.sint = random(); |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 2605 | |
| 2606 | /* reduce if needed. Don't do a modulo, use all bits! */ |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2607 | if (args && args[0].type == ARGT_SINT) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2608 | smp->data.u.sint = (smp->data.u.sint * args[0].data.sint) / ((u64)RAND_MAX+1); |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 2609 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2610 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 2611 | smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE; |
| 2612 | return 1; |
| 2613 | } |
| 2614 | |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2615 | /* returns true if the current process is stopping */ |
| 2616 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2617 | 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] | 2618 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2619 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2620 | smp->data.u.sint = stopping; |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2621 | return 1; |
| 2622 | } |
| 2623 | |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2624 | static int smp_fetch_const_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2625 | { |
| 2626 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2627 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2628 | smp->data.u.str.str = args[0].data.str.str; |
| 2629 | smp->data.u.str.len = args[0].data.str.len; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2630 | return 1; |
| 2631 | } |
| 2632 | |
| 2633 | static int smp_check_const_bool(struct arg *args, char **err) |
| 2634 | { |
| 2635 | if (strcasecmp(args[0].data.str.str, "true") == 0 || |
| 2636 | strcasecmp(args[0].data.str.str, "1") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2637 | args[0].type = ARGT_SINT; |
| 2638 | args[0].data.sint = 1; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2639 | return 1; |
| 2640 | } |
| 2641 | if (strcasecmp(args[0].data.str.str, "false") == 0 || |
| 2642 | strcasecmp(args[0].data.str.str, "0") == 0) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2643 | args[0].type = ARGT_SINT; |
| 2644 | args[0].data.sint = 0; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2645 | return 1; |
| 2646 | } |
| 2647 | memprintf(err, "Expects 'true', 'false', '0' or '1'"); |
| 2648 | return 0; |
| 2649 | } |
| 2650 | |
| 2651 | static int smp_fetch_const_bool(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2652 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2653 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2654 | smp->data.u.sint = args[0].data.sint; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2655 | return 1; |
| 2656 | } |
| 2657 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2658 | 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] | 2659 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2660 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2661 | smp->data.u.sint = args[0].data.sint; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2662 | return 1; |
| 2663 | } |
| 2664 | |
| 2665 | static int smp_fetch_const_ipv4(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2666 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2667 | smp->data.type = SMP_T_IPV4; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2668 | smp->data.u.ipv4 = args[0].data.ipv4; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2669 | return 1; |
| 2670 | } |
| 2671 | |
| 2672 | static int smp_fetch_const_ipv6(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2673 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2674 | smp->data.type = SMP_T_IPV6; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2675 | smp->data.u.ipv6 = args[0].data.ipv6; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2676 | return 1; |
| 2677 | } |
| 2678 | |
| 2679 | static int smp_check_const_bin(struct arg *args, char **err) |
| 2680 | { |
David Carlier | 64a16ab | 2016-04-08 10:37:02 +0100 | [diff] [blame] | 2681 | char *binstr = NULL; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2682 | int binstrlen; |
| 2683 | |
| 2684 | if (!parse_binary(args[0].data.str.str, &binstr, &binstrlen, err)) |
| 2685 | return 0; |
| 2686 | args[0].type = ARGT_STR; |
| 2687 | args[0].data.str.str = binstr; |
| 2688 | args[0].data.str.len = binstrlen; |
| 2689 | return 1; |
| 2690 | } |
| 2691 | |
| 2692 | static int smp_fetch_const_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2693 | { |
| 2694 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2695 | smp->data.type = SMP_T_BIN; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2696 | smp->data.u.str.str = args[0].data.str.str; |
| 2697 | smp->data.u.str.len = args[0].data.str.len; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2698 | return 1; |
| 2699 | } |
| 2700 | |
| 2701 | static int smp_check_const_meth(struct arg *args, char **err) |
| 2702 | { |
| 2703 | enum http_meth_t meth; |
| 2704 | int i; |
| 2705 | |
| 2706 | meth = find_http_meth(args[0].data.str.str, args[0].data.str.len); |
| 2707 | if (meth != HTTP_METH_OTHER) { |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2708 | args[0].type = ARGT_SINT; |
| 2709 | args[0].data.sint = meth; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2710 | } else { |
| 2711 | /* Check method avalaibility. A methos is a token defined as : |
| 2712 | * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / |
| 2713 | * "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA |
| 2714 | * token = 1*tchar |
| 2715 | */ |
| 2716 | for (i = 0; i < args[0].data.str.len; i++) { |
Willy Tarreau | 2235b26 | 2016-11-05 15:50:20 +0100 | [diff] [blame] | 2717 | if (!HTTP_IS_TOKEN(args[0].data.str.str[i])) { |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2718 | memprintf(err, "expects valid method."); |
| 2719 | return 0; |
| 2720 | } |
| 2721 | } |
| 2722 | } |
| 2723 | return 1; |
| 2724 | } |
| 2725 | |
| 2726 | static int smp_fetch_const_meth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2727 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2728 | smp->data.type = SMP_T_METH; |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2729 | if (args[0].type == ARGT_SINT) { |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2730 | smp->flags &= ~SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2731 | smp->data.u.meth.meth = args[0].data.sint; |
| 2732 | smp->data.u.meth.str.str = ""; |
| 2733 | smp->data.u.meth.str.len = 0; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2734 | } else { |
| 2735 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2736 | smp->data.u.meth.meth = HTTP_METH_OTHER; |
| 2737 | smp->data.u.meth.str.str = args[0].data.str.str; |
| 2738 | smp->data.u.meth.str.len = args[0].data.str.len; |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2739 | } |
| 2740 | return 1; |
| 2741 | } |
| 2742 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2743 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2744 | * Note: fetches that may return multiple types must be declared as the lowest |
| 2745 | * common denominator, the type that can be casted into all other ones. For |
| 2746 | * instance IPv4/IPv6 must be declared IPv4. |
| 2747 | */ |
| 2748 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
| 2749 | { "always_false", smp_fetch_false, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN }, |
| 2750 | { "always_true", smp_fetch_true, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 2751 | { "env", smp_fetch_env, ARG1(1,STR), NULL, SMP_T_STR, SMP_USE_INTRN }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2752 | { "date", smp_fetch_date, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_USE_INTRN }, |
Nenad Merdanovic | 807a6e7 | 2017-03-12 22:00:00 +0100 | [diff] [blame] | 2753 | { "hostname", smp_fetch_hostname, 0, NULL, SMP_T_STR, SMP_USE_INTRN }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2754 | { "nbproc", smp_fetch_nbproc,0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
| 2755 | { "proc", smp_fetch_proc, 0, NULL, SMP_T_SINT, SMP_USE_INTRN }, |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2756 | { "rand", smp_fetch_rand, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_USE_INTRN }, |
Willy Tarreau | 0f30d26 | 2014-11-24 16:02:05 +0100 | [diff] [blame] | 2757 | { "stopping", smp_fetch_stopping, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN }, |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2758 | |
| 2759 | { "str", smp_fetch_const_str, ARG1(1,STR), NULL , SMP_T_STR, SMP_USE_INTRN }, |
| 2760 | { "bool", smp_fetch_const_bool, ARG1(1,STR), smp_check_const_bool, SMP_T_BOOL, SMP_USE_INTRN }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2761 | { "int", smp_fetch_const_int, ARG1(1,SINT), NULL , SMP_T_SINT, SMP_USE_INTRN }, |
Thierry FOURNIER | cc10329 | 2015-06-06 19:30:17 +0200 | [diff] [blame] | 2762 | { "ipv4", smp_fetch_const_ipv4, ARG1(1,IPV4), NULL , SMP_T_IPV4, SMP_USE_INTRN }, |
| 2763 | { "ipv6", smp_fetch_const_ipv6, ARG1(1,IPV6), NULL , SMP_T_IPV6, SMP_USE_INTRN }, |
| 2764 | { "bin", smp_fetch_const_bin, ARG1(1,STR), smp_check_const_bin , SMP_T_BIN, SMP_USE_INTRN }, |
| 2765 | { "meth", smp_fetch_const_meth, ARG1(1,STR), smp_check_const_meth, SMP_T_METH, SMP_USE_INTRN }, |
| 2766 | |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2767 | { /* END */ }, |
| 2768 | }}; |
| 2769 | |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2770 | /* Note: must not be declared <const> as its list will be overwritten */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 2771 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
Thierry FOURNIER | 9687c77 | 2015-05-07 15:46:29 +0200 | [diff] [blame] | 2772 | #ifdef DEBUG_EXPR |
| 2773 | { "debug", sample_conv_debug, 0, NULL, SMP_T_ANY, SMP_T_ANY }, |
| 2774 | #endif |
| 2775 | |
Holger Just | 1bfc24b | 2017-05-06 00:56:53 +0200 | [diff] [blame] | 2776 | { "b64dec", sample_conv_base642bin,0, NULL, SMP_T_STR, SMP_T_BIN }, |
Emeric Brun | 53d1a98 | 2014-04-30 18:21:37 +0200 | [diff] [blame] | 2777 | { "base64", sample_conv_bin2base64,0, NULL, SMP_T_BIN, SMP_T_STR }, |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 2778 | { "upper", sample_conv_str2upper, 0, NULL, SMP_T_STR, SMP_T_STR }, |
| 2779 | { "lower", sample_conv_str2lower, 0, NULL, SMP_T_STR, SMP_T_STR }, |
Thierry FOURNIER | 2f49d6d | 2014-03-12 15:01:52 +0100 | [diff] [blame] | 2780 | { "hex", sample_conv_bin2hex, 0, NULL, SMP_T_BIN, SMP_T_STR }, |
Dragan Dosen | 3f957b2 | 2017-10-24 09:27:34 +0200 | [diff] [blame] | 2781 | { "hex2i", sample_conv_hex2int, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 2782 | { "ipmask", sample_conv_ipmask, ARG1(1,MSK4), NULL, SMP_T_IPV4, SMP_T_IPV4 }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2783 | { "ltime", sample_conv_ltime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR }, |
| 2784 | { "utime", sample_conv_utime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR }, |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2785 | { "crc32", sample_conv_crc32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 2786 | { "djb2", sample_conv_djb2, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 2787 | { "sdbm", sample_conv_sdbm, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 2788 | { "wt6", sample_conv_wt6, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
Thierry FOURNIER | 01e0974 | 2016-12-26 11:46:11 +0100 | [diff] [blame] | 2789 | { "xxh32", sample_conv_xxh32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
| 2790 | { "xxh64", sample_conv_xxh64, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT }, |
Thierry FOURNIER | 317e1c4 | 2014-08-12 10:20:47 +0200 | [diff] [blame] | 2791 | { "json", sample_conv_json, ARG1(1,STR), sample_conv_json_check, SMP_T_STR, SMP_T_STR }, |
Thierry FOURNIER | bf65cd4 | 2015-07-20 17:45:02 +0200 | [diff] [blame] | 2792 | { "bytes", sample_conv_bytes, ARG2(1,SINT,SINT), NULL, SMP_T_BIN, SMP_T_BIN }, |
| 2793 | { "field", sample_conv_field, ARG2(2,SINT,STR), sample_conv_field_check, SMP_T_STR, SMP_T_STR }, |
| 2794 | { "word", sample_conv_word, ARG2(2,SINT,STR), sample_conv_field_check, SMP_T_STR, SMP_T_STR }, |
Willy Tarreau | 7eda849 | 2015-01-20 19:47:06 +0100 | [diff] [blame] | 2795 | { "regsub", sample_conv_regsub, ARG3(2,REG,STR,STR), sample_conv_regsub_check, SMP_T_STR, SMP_T_STR }, |
Dragan Dosen | 6e5a9ca | 2017-10-24 09:18:23 +0200 | [diff] [blame] | 2796 | { "sha1", sample_conv_sha1, 0, NULL, SMP_T_BIN, SMP_T_BIN }, |
Willy Tarreau | 9770787 | 2015-01-27 15:12:13 +0100 | [diff] [blame] | 2797 | |
Thierry FOURNIER | 5d86fae | 2015-07-07 21:10:16 +0200 | [diff] [blame] | 2798 | { "and", sample_conv_binary_and, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2799 | { "or", sample_conv_binary_or, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2800 | { "xor", sample_conv_binary_xor, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2801 | { "cpl", sample_conv_binary_cpl, 0, NULL, SMP_T_SINT, SMP_T_SINT }, |
| 2802 | { "bool", sample_conv_arith_bool, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 2803 | { "not", sample_conv_arith_not, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 2804 | { "odd", sample_conv_arith_odd, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 2805 | { "even", sample_conv_arith_even, 0, NULL, SMP_T_SINT, SMP_T_BOOL }, |
| 2806 | { "add", sample_conv_arith_add, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2807 | { "sub", sample_conv_arith_sub, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2808 | { "mul", sample_conv_arith_mul, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2809 | { "div", sample_conv_arith_div, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2810 | { "mod", sample_conv_arith_mod, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT }, |
| 2811 | { "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] | 2812 | |
Willy Tarreau | 9fcb984 | 2012-04-20 14:45:49 +0200 | [diff] [blame] | 2813 | { NULL, NULL, 0, 0, 0 }, |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2814 | }}; |
| 2815 | |
| 2816 | __attribute__((constructor)) |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 2817 | static void __sample_init(void) |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2818 | { |
Willy Tarreau | 5b8ad22 | 2013-07-25 12:17:57 +0200 | [diff] [blame] | 2819 | /* register sample fetch and format conversion keywords */ |
| 2820 | sample_register_fetches(&smp_kws); |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 2821 | sample_register_convs(&sample_conv_kws); |
Emeric Brun | 107ca30 | 2010-01-04 16:16:05 +0100 | [diff] [blame] | 2822 | } |