Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 1 | /* |
| 2 | * MAP management functions. |
| 3 | * |
| 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <limits.h> |
| 14 | #include <stdio.h> |
| 15 | |
| 16 | #include <common/standard.h> |
| 17 | |
| 18 | #include <types/global.h> |
| 19 | #include <types/map.h> |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 20 | #include <types/pattern.h> |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 21 | |
| 22 | #include <proto/arg.h> |
Thierry FOURNIER | b0c0a0f | 2013-12-10 15:05:34 +0100 | [diff] [blame] | 23 | #include <proto/map.h> |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 24 | #include <proto/pattern.h> |
| 25 | #include <proto/sample.h> |
| 26 | |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 27 | /* Parse an IPv4 address and store it into the sample. |
| 28 | * The output type is IPV4. |
| 29 | */ |
Thierry FOURNIER | b0c0a0f | 2013-12-10 15:05:34 +0100 | [diff] [blame] | 30 | int map_parse_ip(const char *text, struct sample_storage *smp) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 31 | { |
| 32 | if (!buf2ip(text, strlen(text), &smp->data.ipv4)) |
| 33 | return 0; |
| 34 | smp->type = SMP_T_IPV4; |
| 35 | return 1; |
| 36 | } |
| 37 | |
| 38 | /* Parse an IPv6 address and store it into the sample. |
| 39 | * The output type is IPV6. |
| 40 | */ |
Thierry FOURNIER | b0c0a0f | 2013-12-10 15:05:34 +0100 | [diff] [blame] | 41 | int map_parse_ip6(const char *text, struct sample_storage *smp) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 42 | { |
| 43 | if (!buf2ip6(text, strlen(text), &smp->data.ipv6)) |
| 44 | return 0; |
| 45 | smp->type = SMP_T_IPV6; |
| 46 | return 1; |
| 47 | } |
| 48 | |
| 49 | /* Parse a string and store a pointer to it into the sample. The original |
| 50 | * string must be left in memory because we return a direct memory reference. |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 51 | * The output type is SMP_T_STR. There is no risk that the data will be |
| 52 | * overwritten because sample_conv_map() makes a const sample with this |
| 53 | * output. |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 54 | */ |
Thierry FOURNIER | b0c0a0f | 2013-12-10 15:05:34 +0100 | [diff] [blame] | 55 | int map_parse_str(const char *text, struct sample_storage *smp) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 56 | { |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 57 | smp->data.str.str = (char *)text; |
| 58 | smp->data.str.len = strlen(text); |
| 59 | smp->data.str.size = smp->data.str.len + 1; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 60 | smp->type = SMP_T_STR; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 61 | return 1; |
| 62 | } |
| 63 | |
| 64 | /* Parse an integer and convert it to a sample. The output type is SINT if the |
| 65 | * number is negative, or UINT if it is positive or null. The function returns |
| 66 | * zero (error) if the number is too large. |
| 67 | */ |
Thierry FOURNIER | b0c0a0f | 2013-12-10 15:05:34 +0100 | [diff] [blame] | 68 | int map_parse_int(const char *text, struct sample_storage *smp) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 69 | { |
| 70 | long long int value; |
| 71 | char *error; |
| 72 | |
| 73 | /* parse interger and convert it. Return the value in 64 format. */ |
| 74 | value = strtoll(text, &error, 10); |
| 75 | if (*error != '\0') |
| 76 | return 0; |
| 77 | |
| 78 | /* check sign iand limits */ |
| 79 | if (value < 0) { |
| 80 | if (value < INT_MIN) |
| 81 | return 0; |
| 82 | smp->type = SMP_T_SINT; |
| 83 | smp->data.sint = value; |
| 84 | } |
| 85 | else { |
| 86 | if (value > UINT_MAX) |
| 87 | return 0; |
| 88 | smp->type = SMP_T_UINT; |
| 89 | smp->data.uint = value; |
| 90 | } |
| 91 | |
| 92 | return 1; |
| 93 | } |
| 94 | |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 95 | /* This crete and initialize map descriptor. |
| 96 | * Return NULL if out of memory error |
| 97 | */ |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 98 | static struct map_descriptor *map_create_descriptor(struct sample_conv *conv) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 99 | { |
| 100 | struct map_descriptor *desc; |
| 101 | |
| 102 | desc = calloc(1, sizeof(*desc)); |
| 103 | if (!desc) |
| 104 | return NULL; |
| 105 | |
| 106 | desc->conv = conv; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 107 | |
| 108 | return desc; |
| 109 | } |
| 110 | |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 111 | /* This function load the map file according with data type declared into |
| 112 | * the "struct sample_conv". |
| 113 | * |
| 114 | * This function choose the indexation type (ebtree or list) according with |
| 115 | * the type of match needed. |
| 116 | */ |
Thierry FOURNIER | 3def393 | 2015-04-07 11:27:54 +0200 | [diff] [blame] | 117 | int sample_load_map(struct arg *arg, struct sample_conv *conv, |
| 118 | const char *file, int line, char **err) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 119 | { |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 120 | struct map_descriptor *desc; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 121 | |
| 122 | /* create new map descriptor */ |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 123 | desc = map_create_descriptor(conv); |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 124 | if (!desc) { |
| 125 | memprintf(err, "out of memory"); |
| 126 | return 0; |
| 127 | } |
| 128 | |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 129 | /* Initialize pattern */ |
| 130 | pattern_init_head(&desc->pat); |
| 131 | |
| 132 | /* This is original pattern, must free */ |
| 133 | desc->do_free = 1; |
| 134 | |
| 135 | /* Set the match method. */ |
Thierry FOURNIER | 1edc971 | 2014-12-15 16:18:39 +0100 | [diff] [blame] | 136 | desc->pat.match = pat_match_fcts[(long)conv->private]; |
| 137 | desc->pat.parse = pat_parse_fcts[(long)conv->private]; |
| 138 | desc->pat.index = pat_index_fcts[(long)conv->private]; |
| 139 | desc->pat.delete = pat_delete_fcts[(long)conv->private]; |
| 140 | desc->pat.prune = pat_prune_fcts[(long)conv->private]; |
| 141 | desc->pat.expect_type = pat_match_types[(long)conv->private]; |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 142 | |
| 143 | /* Set the output parse method. */ |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 144 | switch (desc->conv->out_type) { |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 145 | case SMP_T_STR: desc->pat.parse_smp = map_parse_str; break; |
| 146 | case SMP_T_UINT: desc->pat.parse_smp = map_parse_int; break; |
| 147 | case SMP_T_IPV4: desc->pat.parse_smp = map_parse_ip; break; |
| 148 | case SMP_T_IPV6: desc->pat.parse_smp = map_parse_ip6; break; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 149 | default: |
| 150 | memprintf(err, "map: internal haproxy error: no default parse case for the input type <%d>.", |
| 151 | conv->out_type); |
| 152 | return 0; |
| 153 | } |
| 154 | |
Thierry FOURNIER | 39bef45 | 2014-01-29 13:29:45 +0100 | [diff] [blame] | 155 | /* Load map. */ |
Thierry FOURNIER | e47e4e2 | 2014-04-28 11:18:57 +0200 | [diff] [blame] | 156 | if (!pattern_read_from_file(&desc->pat, PAT_REF_MAP, arg[0].data.str.str, PAT_MF_NO_DNS, |
Thierry FOURNIER | 94580c9 | 2014-02-11 14:36:45 +0100 | [diff] [blame] | 157 | 1, err, file, line)) |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 158 | return 0; |
Thierry FOURNIER | 0ffe78c | 2013-12-05 14:40:25 +0100 | [diff] [blame] | 159 | |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 160 | /* replace the first argument by this definition */ |
| 161 | arg[0].type = ARGT_MAP; |
| 162 | arg[0].data.map = desc; |
| 163 | |
| 164 | return 1; |
| 165 | } |
| 166 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 167 | static int sample_conv_map(const struct arg *arg_p, struct sample *smp, void *private) |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 168 | { |
| 169 | struct map_descriptor *desc; |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 170 | struct pattern *pat; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 171 | |
| 172 | /* get config */ |
| 173 | desc = arg_p[0].data.map; |
| 174 | |
| 175 | /* Execute the match function. */ |
Thierry FOURNIER | 1e00d38 | 2014-02-11 11:31:40 +0100 | [diff] [blame] | 176 | pat = pattern_exec_match(&desc->pat, smp, 1); |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 177 | |
| 178 | /* Match case. */ |
| 179 | if (pat) { |
| 180 | /* Copy sample. */ |
| 181 | if (pat->smp) { |
| 182 | smp->type = pat->smp->type; |
| 183 | smp->flags |= SMP_F_CONST; |
| 184 | memcpy(&smp->data, &pat->smp->data, sizeof(smp->data)); |
| 185 | return 1; |
| 186 | } |
| 187 | |
| 188 | /* Return just int sample containing 1. */ |
| 189 | smp->type = SMP_T_UINT; |
| 190 | smp->data.uint= 1; |
| 191 | return 1; |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 192 | } |
| 193 | |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 194 | /* If no default value avalaible, the converter fails. */ |
Thierry FOURNIER | 933e5de | 2015-03-13 00:10:16 +0100 | [diff] [blame] | 195 | if (arg_p[1].type == ARGT_STOP) |
Thierry FOURNIER | 1794fdf | 2014-01-17 15:25:13 +0100 | [diff] [blame] | 196 | return 0; |
| 197 | |
| 198 | /* Return the default value. */ |
Thierry FOURNIER | 933e5de | 2015-03-13 00:10:16 +0100 | [diff] [blame] | 199 | switch (desc->conv->out_type) { |
| 200 | |
| 201 | case SMP_T_STR: |
| 202 | smp->type = SMP_T_STR; |
| 203 | smp->flags |= SMP_F_CONST; |
| 204 | smp->data.str = arg_p[1].data.str; |
| 205 | break; |
| 206 | |
| 207 | case SMP_T_UINT: |
| 208 | smp->type = SMP_T_UINT; |
| 209 | smp->data.uint = arg_p[1].data.uint; |
| 210 | break; |
| 211 | |
| 212 | case SMP_T_IPV4: |
| 213 | smp->type = SMP_T_IPV4; |
| 214 | smp->data.ipv4 = arg_p[1].data.ipv4; |
| 215 | break; |
| 216 | |
| 217 | case SMP_T_IPV6: |
| 218 | smp->type = SMP_T_IPV6; |
| 219 | smp->data.ipv6 = arg_p[1].data.ipv6; |
| 220 | break; |
| 221 | } |
| 222 | |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 223 | return 1; |
| 224 | } |
| 225 | |
| 226 | /* Note: must not be declared <const> as its list will be overwritten |
| 227 | * |
| 228 | * For the map_*_int keywords, the output is declared as SMP_T_UINT, but the converter function |
| 229 | * can provide SMP_T_UINT, SMP_T_SINT or SMP_T_BOOL depending on how the patterns found in the |
| 230 | * file can be parsed. |
| 231 | * |
| 232 | * For the map_*_ip keyword, the output is declared as SMP_T_IPV4, but the converter function |
| 233 | * can provide SMP_T_IPV4 or SMP_T_IPV6 depending on the patterns found in the file. |
| 234 | * |
| 235 | * The map_* keywords only emit strings. |
| 236 | * |
| 237 | * The output type is only used during the configuration parsing. It is used for detecting |
| 238 | * compatibility problems. |
| 239 | * |
| 240 | * The arguments are: <file>[,<default value>] |
| 241 | */ |
| 242 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
Thierry FOURNIER | 1edc971 | 2014-12-15 16:18:39 +0100 | [diff] [blame] | 243 | { "map", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_STR }, |
| 244 | { "map_str", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_STR }, |
| 245 | { "map_beg", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_BEG }, |
| 246 | { "map_sub", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_SUB }, |
| 247 | { "map_dir", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_DIR }, |
| 248 | { "map_dom", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_DOM }, |
| 249 | { "map_end", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_END }, |
| 250 | { "map_reg", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_STR, SMP_T_STR, (void *)PAT_MATCH_REG }, |
| 251 | { "map_int", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_UINT, SMP_T_STR, (void *)PAT_MATCH_INT }, |
| 252 | { "map_ip", sample_conv_map, ARG2(1,STR,STR), sample_load_map, SMP_T_ADDR, SMP_T_STR, (void *)PAT_MATCH_IP }, |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 253 | |
Thierry FOURNIER | 933e5de | 2015-03-13 00:10:16 +0100 | [diff] [blame] | 254 | { "map_str_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_STR }, |
| 255 | { "map_beg_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_BEG }, |
| 256 | { "map_sub_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_SUB }, |
| 257 | { "map_dir_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_DIR }, |
| 258 | { "map_dom_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_DOM }, |
| 259 | { "map_end_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_END }, |
| 260 | { "map_reg_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_STR, SMP_T_UINT, (void *)PAT_MATCH_REG }, |
| 261 | { "map_int_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_UINT, SMP_T_UINT, (void *)PAT_MATCH_INT }, |
| 262 | { "map_ip_int", sample_conv_map, ARG2(1,STR,UINT), sample_load_map, SMP_T_ADDR, SMP_T_UINT, (void *)PAT_MATCH_IP }, |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 263 | |
Thierry FOURNIER | 933e5de | 2015-03-13 00:10:16 +0100 | [diff] [blame] | 264 | { "map_str_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_STR }, |
| 265 | { "map_beg_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_BEG }, |
| 266 | { "map_sub_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_SUB }, |
| 267 | { "map_dir_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_DIR }, |
| 268 | { "map_dom_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_DOM }, |
| 269 | { "map_end_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_END }, |
| 270 | { "map_reg_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_STR, SMP_T_IPV4, (void *)PAT_MATCH_REG }, |
| 271 | { "map_int_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_UINT, SMP_T_IPV4, (void *)PAT_MATCH_INT }, |
| 272 | { "map_ip_ip", sample_conv_map, ARG2(1,STR,IPV4), sample_load_map, SMP_T_ADDR, SMP_T_IPV4, (void *)PAT_MATCH_IP }, |
Thierry FOURNIER | d5f624d | 2013-11-26 11:52:33 +0100 | [diff] [blame] | 273 | |
| 274 | { /* END */ }, |
| 275 | }}; |
| 276 | |
| 277 | __attribute__((constructor)) |
| 278 | static void __map_init(void) |
| 279 | { |
| 280 | /* register format conversion keywords */ |
| 281 | sample_register_convs(&sample_conv_kws); |
| 282 | } |