Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Regex and string management functions. |
| 3 | * |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 4 | * Copyright 2000-2010 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <ctype.h> |
| 14 | #include <stdlib.h> |
| 15 | #include <string.h> |
| 16 | |
Willy Tarreau | 7a9ac6d | 2016-12-21 19:13:14 +0100 | [diff] [blame] | 17 | #include <types/global.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 18 | #include <common/config.h> |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 19 | #include <common/defaults.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 20 | #include <common/regex.h> |
| 21 | #include <common/standard.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 22 | #include <proto/log.h> |
| 23 | |
| 24 | /* regex trash buffer used by various regex tests */ |
Emeric Brun | 272e252 | 2017-06-15 11:53:49 +0200 | [diff] [blame] | 25 | THREAD_LOCAL regmatch_t pmatch[MAX_MATCH]; /* rm_so, rm_eo for regular expressions */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | |
Willy Tarreau | c874653 | 2014-05-28 23:05:07 +0200 | [diff] [blame] | 27 | int exp_replace(char *dst, unsigned int dst_size, char *src, const char *str, const regmatch_t *matches) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | { |
| 29 | char *old_dst = dst; |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 30 | char* dst_end = dst + dst_size; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | |
| 32 | while (*str) { |
| 33 | if (*str == '\\') { |
| 34 | str++; |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 35 | if (!*str) |
| 36 | return -1; |
| 37 | |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 38 | if (isdigit((unsigned char)*str)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 39 | int len, num; |
| 40 | |
| 41 | num = *str - '0'; |
| 42 | str++; |
| 43 | |
| 44 | if (matches[num].rm_eo > -1 && matches[num].rm_so > -1) { |
| 45 | len = matches[num].rm_eo - matches[num].rm_so; |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 46 | |
| 47 | if (dst + len >= dst_end) |
| 48 | return -1; |
| 49 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 50 | memcpy(dst, src + matches[num].rm_so, len); |
| 51 | dst += len; |
| 52 | } |
| 53 | |
| 54 | } else if (*str == 'x') { |
| 55 | unsigned char hex1, hex2; |
| 56 | str++; |
| 57 | |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 58 | if (!*str) |
| 59 | return -1; |
| 60 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 61 | hex1 = toupper(*str++) - '0'; |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 62 | |
| 63 | if (!*str) |
| 64 | return -1; |
| 65 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | hex2 = toupper(*str++) - '0'; |
| 67 | |
| 68 | if (hex1 > 9) hex1 -= 'A' - '9' - 1; |
| 69 | if (hex2 > 9) hex2 -= 'A' - '9' - 1; |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 70 | |
| 71 | if (dst >= dst_end) |
| 72 | return -1; |
| 73 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 74 | *dst++ = (hex1<<4) + hex2; |
| 75 | } else { |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 76 | if (dst >= dst_end) |
| 77 | return -1; |
| 78 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 79 | *dst++ = *str++; |
| 80 | } |
| 81 | } else { |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 82 | if (dst >= dst_end) |
| 83 | return -1; |
| 84 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 85 | *dst++ = *str++; |
| 86 | } |
| 87 | } |
Sasha Pachev | c600204 | 2014-05-26 12:33:48 -0600 | [diff] [blame] | 88 | if (dst >= dst_end) |
| 89 | return -1; |
| 90 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 91 | *dst = '\0'; |
| 92 | return dst - old_dst; |
| 93 | } |
| 94 | |
| 95 | /* returns NULL if the replacement string <str> is valid, or the pointer to the first error */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 96 | const char *check_replace_string(const char *str) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 97 | { |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 98 | const char *err = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 99 | while (*str) { |
| 100 | if (*str == '\\') { |
| 101 | err = str; /* in case of a backslash, we return the pointer to it */ |
| 102 | str++; |
| 103 | if (!*str) |
| 104 | return err; |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 105 | else if (isdigit((unsigned char)*str)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 106 | err = NULL; |
| 107 | else if (*str == 'x') { |
| 108 | str++; |
| 109 | if (!ishex(*str)) |
| 110 | return err; |
| 111 | str++; |
| 112 | if (!ishex(*str)) |
| 113 | return err; |
| 114 | err = NULL; |
| 115 | } |
| 116 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 117 | ha_warning("'\\%c' : deprecated use of a backslash before something not '\\','x' or a digit.\n", *str); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 118 | err = NULL; |
| 119 | } |
| 120 | } |
| 121 | str++; |
| 122 | } |
| 123 | return err; |
| 124 | } |
| 125 | |
| 126 | |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 127 | /* This function apply regex. It take const null terminated char as input. |
| 128 | * If the function doesn't match, it returns false, else it returns true. |
| 129 | * When it is compiled with JIT, this function execute strlen on the subject. |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 130 | * Currently the only supported flag is REG_NOTBOL. |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 131 | */ |
| 132 | int regex_exec_match(const struct my_regex *preg, const char *subject, |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 133 | size_t nmatch, regmatch_t pmatch[], int flags) { |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 134 | #if defined(USE_PCRE) || defined(USE_PCRE_JIT) || defined(USE_PCRE2) || defined(USE_PCRE2_JIT) |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 135 | int ret; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 136 | #ifdef USE_PCRE2 |
| 137 | PCRE2_SIZE *matches; |
| 138 | pcre2_match_data *pm; |
| 139 | #else |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 140 | int matches[MAX_MATCH * 3]; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 141 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 142 | int enmatch; |
| 143 | int i; |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 144 | int options; |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 145 | |
| 146 | /* Silently limit the number of allowed matches. max |
| 147 | * match i the maximum value for match, in fact this |
| 148 | * limit is not applyied. |
| 149 | */ |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 150 | |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 151 | enmatch = nmatch; |
| 152 | if (enmatch > MAX_MATCH) |
| 153 | enmatch = MAX_MATCH; |
| 154 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 155 | options = 0; |
| 156 | if (flags & REG_NOTBOL) |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 157 | #ifdef USE_PCRE2 |
| 158 | options |= PCRE2_NOTBOL; |
| 159 | #else |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 160 | options |= PCRE_NOTBOL; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 161 | #endif |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 162 | |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 163 | /* The value returned by pcre_exec()/pcre2_match() is one more than the highest numbered |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 164 | * pair that has been set. For example, if two substrings have been captured, |
| 165 | * the returned value is 3. If there are no capturing subpatterns, the return |
| 166 | * value from a successful match is 1, indicating that just the first pair of |
| 167 | * offsets has been set. |
| 168 | * |
Joseph Herlant | eda7548 | 2018-11-15 14:46:29 -0800 | [diff] [blame] | 169 | * It seems that this function returns 0 if it detects more matches than available |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 170 | * space in the matches array. |
| 171 | */ |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 172 | #ifdef USE_PCRE2 |
| 173 | pm = pcre2_match_data_create_from_pattern(preg->reg, NULL); |
| 174 | ret = pcre2_match(preg->reg, (PCRE2_SPTR)subject, (PCRE2_SIZE)strlen(subject), 0, options, pm, NULL); |
| 175 | |
| 176 | if (ret < 0) { |
| 177 | pcre2_match_data_free(pm); |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | matches = pcre2_get_ovector_pointer(pm); |
| 182 | #else |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 183 | ret = pcre_exec(preg->reg, preg->extra, subject, strlen(subject), 0, options, matches, enmatch * 3); |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 184 | |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 185 | if (ret < 0) |
| 186 | return 0; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 187 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 188 | |
| 189 | if (ret == 0) |
| 190 | ret = enmatch; |
| 191 | |
| 192 | for (i=0; i<nmatch; i++) { |
| 193 | /* Copy offset. */ |
| 194 | if (i < ret) { |
| 195 | pmatch[i].rm_so = matches[(i*2)]; |
| 196 | pmatch[i].rm_eo = matches[(i*2)+1]; |
| 197 | continue; |
| 198 | } |
| 199 | /* Set the unmatvh flag (-1). */ |
| 200 | pmatch[i].rm_so = -1; |
| 201 | pmatch[i].rm_eo = -1; |
| 202 | } |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 203 | #ifdef USE_PCRE2 |
| 204 | pcre2_match_data_free(pm); |
| 205 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 206 | return 1; |
| 207 | #else |
| 208 | int match; |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 209 | |
| 210 | flags &= REG_NOTBOL; |
| 211 | match = regexec(&preg->regex, subject, nmatch, pmatch, flags); |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 212 | if (match == REG_NOMATCH) |
| 213 | return 0; |
| 214 | return 1; |
| 215 | #endif |
| 216 | } |
| 217 | |
| 218 | /* This function apply regex. It take a "char *" ans length as input. The |
| 219 | * <subject> can be modified during the processing. If the function doesn't |
| 220 | * match, it returns false, else it returns true. |
| 221 | * When it is compiled with standard POSIX regex or PCRE, this function add |
| 222 | * a temporary null chracters at the end of the <subject>. The <subject> must |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 223 | * have a real length of <length> + 1. Currently the only supported flag is |
| 224 | * REG_NOTBOL. |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 225 | */ |
| 226 | int regex_exec_match2(const struct my_regex *preg, char *subject, int length, |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 227 | size_t nmatch, regmatch_t pmatch[], int flags) { |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 228 | #if defined(USE_PCRE) || defined(USE_PCRE_JIT) || defined(USE_PCRE2) || defined(USE_PCRE2_JIT) |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 229 | int ret; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 230 | #ifdef USE_PCRE2 |
| 231 | PCRE2_SIZE *matches; |
| 232 | pcre2_match_data *pm; |
| 233 | #else |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 234 | int matches[MAX_MATCH * 3]; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 235 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 236 | int enmatch; |
| 237 | int i; |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 238 | int options; |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 239 | |
| 240 | /* Silently limit the number of allowed matches. max |
| 241 | * match i the maximum value for match, in fact this |
| 242 | * limit is not applyied. |
| 243 | */ |
| 244 | enmatch = nmatch; |
| 245 | if (enmatch > MAX_MATCH) |
| 246 | enmatch = MAX_MATCH; |
| 247 | |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 248 | options = 0; |
| 249 | if (flags & REG_NOTBOL) |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 250 | #ifdef USE_PCRE2 |
| 251 | options |= PCRE2_NOTBOL; |
| 252 | #else |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 253 | options |= PCRE_NOTBOL; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 254 | #endif |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 255 | |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 256 | /* The value returned by pcre_exec()/pcre2_match() is one more than the highest numbered |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 257 | * pair that has been set. For example, if two substrings have been captured, |
| 258 | * the returned value is 3. If there are no capturing subpatterns, the return |
| 259 | * value from a successful match is 1, indicating that just the first pair of |
| 260 | * offsets has been set. |
| 261 | * |
Joseph Herlant | eda7548 | 2018-11-15 14:46:29 -0800 | [diff] [blame] | 262 | * It seems that this function returns 0 if it detects more matches than available |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 263 | * space in the matches array. |
| 264 | */ |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 265 | #ifdef USE_PCRE2 |
| 266 | pm = pcre2_match_data_create_from_pattern(preg->reg, NULL); |
| 267 | ret = pcre2_match(preg->reg, (PCRE2_SPTR)subject, (PCRE2_SIZE)length, 0, options, pm, NULL); |
| 268 | |
| 269 | if (ret < 0) { |
| 270 | pcre2_match_data_free(pm); |
| 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | matches = pcre2_get_ovector_pointer(pm); |
| 275 | #else |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 276 | ret = pcre_exec(preg->reg, preg->extra, subject, length, 0, options, matches, enmatch * 3); |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 277 | if (ret < 0) |
| 278 | return 0; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 279 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 280 | |
| 281 | if (ret == 0) |
| 282 | ret = enmatch; |
| 283 | |
| 284 | for (i=0; i<nmatch; i++) { |
| 285 | /* Copy offset. */ |
| 286 | if (i < ret) { |
| 287 | pmatch[i].rm_so = matches[(i*2)]; |
| 288 | pmatch[i].rm_eo = matches[(i*2)+1]; |
| 289 | continue; |
| 290 | } |
| 291 | /* Set the unmatvh flag (-1). */ |
| 292 | pmatch[i].rm_so = -1; |
| 293 | pmatch[i].rm_eo = -1; |
| 294 | } |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 295 | #ifdef USE_PCRE2 |
| 296 | pcre2_match_data_free(pm); |
| 297 | #endif |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 298 | return 1; |
| 299 | #else |
| 300 | char old_char = subject[length]; |
| 301 | int match; |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 302 | |
| 303 | flags &= REG_NOTBOL; |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 304 | subject[length] = 0; |
Willy Tarreau | 15a53a4 | 2015-01-21 13:39:42 +0100 | [diff] [blame] | 305 | match = regexec(&preg->regex, subject, nmatch, pmatch, flags); |
Thierry FOURNIER | b8f980c | 2014-06-11 13:59:05 +0200 | [diff] [blame] | 306 | subject[length] = old_char; |
| 307 | if (match == REG_NOMATCH) |
| 308 | return 0; |
| 309 | return 1; |
| 310 | #endif |
| 311 | } |
| 312 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 313 | struct my_regex *regex_comp(const char *str, int cs, int cap, char **err) |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 314 | { |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 315 | struct my_regex *regex = NULL; |
Thierry FOURNIER | 2620276 | 2014-06-18 11:50:51 +0200 | [diff] [blame] | 316 | #if defined(USE_PCRE) || defined(USE_PCRE_JIT) |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 317 | int flags = 0; |
| 318 | const char *error; |
| 319 | int erroffset; |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 320 | #elif defined(USE_PCRE2) || defined(USE_PCRE2_JIT) |
| 321 | int flags = 0; |
| 322 | int errn; |
| 323 | #if defined(USE_PCRE2_JIT) |
| 324 | int jit; |
| 325 | #endif |
| 326 | PCRE2_UCHAR error[256]; |
| 327 | PCRE2_SIZE erroffset; |
| 328 | #else |
| 329 | int flags = REG_EXTENDED; |
| 330 | #endif |
| 331 | |
| 332 | regex = calloc(1, sizeof(*regex)); |
| 333 | if (!regex) { |
| 334 | memprintf(err, "not enough memory to build regex"); |
| 335 | goto out_fail_alloc; |
| 336 | } |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 337 | |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 338 | #if defined(USE_PCRE) || defined(USE_PCRE_JIT) |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 339 | if (!cs) |
| 340 | flags |= PCRE_CASELESS; |
| 341 | if (!cap) |
| 342 | flags |= PCRE_NO_AUTO_CAPTURE; |
| 343 | |
| 344 | regex->reg = pcre_compile(str, flags, &error, &erroffset, NULL); |
| 345 | if (!regex->reg) { |
| 346 | memprintf(err, "regex '%s' is invalid (error=%s, erroffset=%d)", str, error, erroffset); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 347 | goto out_fail_alloc; |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | regex->extra = pcre_study(regex->reg, PCRE_STUDY_JIT_COMPILE, &error); |
Christian Ruppert | 955f461 | 2014-10-29 17:05:53 +0100 | [diff] [blame] | 351 | if (!regex->extra && error != NULL) { |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 352 | pcre_free(regex->reg); |
| 353 | memprintf(err, "failed to compile regex '%s' (error=%s)", str, error); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 354 | goto out_fail_alloc; |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 355 | } |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 356 | #elif defined(USE_PCRE2) || defined(USE_PCRE2_JIT) |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 357 | if (!cs) |
| 358 | flags |= PCRE2_CASELESS; |
| 359 | if (!cap) |
| 360 | flags |= PCRE2_NO_AUTO_CAPTURE; |
| 361 | |
| 362 | regex->reg = pcre2_compile((PCRE2_SPTR)str, PCRE2_ZERO_TERMINATED, flags, &errn, &erroffset, NULL); |
| 363 | if (!regex->reg) { |
| 364 | pcre2_get_error_message(errn, error, sizeof(error)); |
| 365 | memprintf(err, "regex '%s' is invalid (error=%s, erroffset=%zu)", str, error, erroffset); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 366 | goto out_fail_alloc; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | #if defined(USE_PCRE2_JIT) |
| 370 | jit = pcre2_jit_compile(regex->reg, PCRE2_JIT_COMPLETE); |
| 371 | /* |
| 372 | * We end if it is an error not related to lack of JIT support |
| 373 | * in a case of JIT support missing pcre2_jit_compile is "no-op" |
| 374 | */ |
| 375 | if (jit < 0 && jit != PCRE2_ERROR_JIT_BADOPTION) { |
| 376 | pcre2_code_free(regex->reg); |
| 377 | memprintf(err, "regex '%s' jit compilation failed", str); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 378 | goto out_fail_alloc; |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 379 | } |
| 380 | #endif |
| 381 | |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 382 | #else |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 383 | if (!cs) |
| 384 | flags |= REG_ICASE; |
| 385 | if (!cap) |
| 386 | flags |= REG_NOSUB; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 387 | |
Thierry FOURNIER | 799c042 | 2013-12-06 20:36:20 +0100 | [diff] [blame] | 388 | if (regcomp(®ex->regex, str, flags) != 0) { |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 389 | memprintf(err, "regex '%s' is invalid", str); |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 390 | goto out_fail_alloc; |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 391 | } |
| 392 | #endif |
Dragan Dosen | 2674303 | 2019-04-30 15:54:36 +0200 | [diff] [blame] | 393 | return regex; |
| 394 | |
| 395 | out_fail_alloc: |
| 396 | free(regex); |
| 397 | return NULL; |
Thierry FOURNIER | ed5a4ae | 2013-10-14 14:07:36 +0200 | [diff] [blame] | 398 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 399 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 400 | static void regex_register_build_options(void) |
Willy Tarreau | 7a9ac6d | 2016-12-21 19:13:14 +0100 | [diff] [blame] | 401 | { |
| 402 | char *ptr = NULL; |
| 403 | |
| 404 | #ifdef USE_PCRE |
| 405 | memprintf(&ptr, "Built with PCRE version : %s", (HAP_XSTRING(Z PCRE_PRERELEASE)[1] == 0)? |
| 406 | HAP_XSTRING(PCRE_MAJOR.PCRE_MINOR PCRE_DATE) : |
| 407 | HAP_XSTRING(PCRE_MAJOR.PCRE_MINOR) HAP_XSTRING(PCRE_PRERELEASE PCRE_DATE)); |
| 408 | memprintf(&ptr, "%s\nRunning on PCRE version : %s", ptr, pcre_version()); |
| 409 | |
| 410 | memprintf(&ptr, "%s\nPCRE library supports JIT : %s", ptr, |
| 411 | #ifdef USE_PCRE_JIT |
| 412 | ({ |
| 413 | int r; |
| 414 | pcre_config(PCRE_CONFIG_JIT, &r); |
| 415 | r ? "yes" : "no (libpcre build without JIT?)"; |
| 416 | }) |
| 417 | #else |
| 418 | "no (USE_PCRE_JIT not set)" |
| 419 | #endif |
| 420 | ); |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 421 | #endif /* USE_PCRE */ |
| 422 | |
| 423 | #ifdef USE_PCRE2 |
| 424 | memprintf(&ptr, "Built with PCRE2 version : %s", (HAP_XSTRING(Z PCRE2_PRERELEASE)[1] == 0) ? |
| 425 | HAP_XSTRING(PCRE2_MAJOR.PCRE2_MINOR PCRE2_DATE) : |
| 426 | HAP_XSTRING(PCRE2_MAJOR.PCRE2_MINOR) HAP_XSTRING(PCRE2_PRERELEASE PCRE2_DATE)); |
| 427 | memprintf(&ptr, "%s\nPCRE2 library supports JIT : %s", ptr, |
| 428 | #ifdef USE_PCRE2_JIT |
| 429 | ({ |
| 430 | int r; |
| 431 | pcre2_config(PCRE2_CONFIG_JIT, &r); |
| 432 | r ? "yes" : "no (libpcre2 build without JIT?)"; |
| 433 | }) |
Willy Tarreau | 7a9ac6d | 2016-12-21 19:13:14 +0100 | [diff] [blame] | 434 | #else |
David Carlier | f2592b2 | 2016-11-21 21:25:58 +0000 | [diff] [blame] | 435 | "no (USE_PCRE2_JIT not set)" |
| 436 | #endif |
| 437 | ); |
| 438 | #endif /* USE_PCRE2 */ |
| 439 | |
| 440 | #if !defined(USE_PCRE) && !defined(USE_PCRE2) |
| 441 | memprintf(&ptr, "Built without PCRE or PCRE2 support (using libc's regex instead)"); |
Willy Tarreau | 7a9ac6d | 2016-12-21 19:13:14 +0100 | [diff] [blame] | 442 | #endif |
| 443 | hap_register_build_opts(ptr, 1); |
| 444 | } |
| 445 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 446 | INITCALL0(STG_REGISTER, regex_register_build_options); |
| 447 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 448 | /* |
| 449 | * Local variables: |
| 450 | * c-indent-level: 8 |
| 451 | * c-basic-offset: 8 |
| 452 | * End: |
| 453 | */ |