blob: 6b86b037e7c9f39ba4471206abcf457c5c7f920d [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Regex and string management functions.
3 *
Willy Tarreauf4f04122010-01-28 18:10:50 +01004 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 Tarreau7a9ac6d2016-12-21 19:13:14 +010017#include <types/global.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020018#include <common/config.h>
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +020019#include <common/defaults.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/regex.h>
21#include <common/standard.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#include <proto/log.h>
23
24/* regex trash buffer used by various regex tests */
Emeric Brun272e2522017-06-15 11:53:49 +020025THREAD_LOCAL regmatch_t pmatch[MAX_MATCH]; /* rm_so, rm_eo for regular expressions */
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreauc8746532014-05-28 23:05:07 +020027int exp_replace(char *dst, unsigned int dst_size, char *src, const char *str, const regmatch_t *matches)
Willy Tarreaubaaee002006-06-26 02:48:02 +020028{
29 char *old_dst = dst;
Sasha Pachevc6002042014-05-26 12:33:48 -060030 char* dst_end = dst + dst_size;
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
32 while (*str) {
33 if (*str == '\\') {
34 str++;
Sasha Pachevc6002042014-05-26 12:33:48 -060035 if (!*str)
36 return -1;
37
Willy Tarreau8f8e6452007-06-17 21:51:38 +020038 if (isdigit((unsigned char)*str)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020039 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 Pachevc6002042014-05-26 12:33:48 -060046
47 if (dst + len >= dst_end)
48 return -1;
49
Willy Tarreaubaaee002006-06-26 02:48:02 +020050 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 Pachevc6002042014-05-26 12:33:48 -060058 if (!*str)
59 return -1;
60
Willy Tarreaubaaee002006-06-26 02:48:02 +020061 hex1 = toupper(*str++) - '0';
Sasha Pachevc6002042014-05-26 12:33:48 -060062
63 if (!*str)
64 return -1;
65
Willy Tarreaubaaee002006-06-26 02:48:02 +020066 hex2 = toupper(*str++) - '0';
67
68 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
69 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
Sasha Pachevc6002042014-05-26 12:33:48 -060070
71 if (dst >= dst_end)
72 return -1;
73
Willy Tarreaubaaee002006-06-26 02:48:02 +020074 *dst++ = (hex1<<4) + hex2;
75 } else {
Sasha Pachevc6002042014-05-26 12:33:48 -060076 if (dst >= dst_end)
77 return -1;
78
Willy Tarreaubaaee002006-06-26 02:48:02 +020079 *dst++ = *str++;
80 }
81 } else {
Sasha Pachevc6002042014-05-26 12:33:48 -060082 if (dst >= dst_end)
83 return -1;
84
Willy Tarreaubaaee002006-06-26 02:48:02 +020085 *dst++ = *str++;
86 }
87 }
Sasha Pachevc6002042014-05-26 12:33:48 -060088 if (dst >= dst_end)
89 return -1;
90
Willy Tarreaubaaee002006-06-26 02:48:02 +020091 *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 Tarreaub17916e2006-10-15 15:17:57 +020096const char *check_replace_string(const char *str)
Willy Tarreaubaaee002006-06-26 02:48:02 +020097{
Willy Tarreaub17916e2006-10-15 15:17:57 +020098 const char *err = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +020099 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 Tarreau8f8e6452007-06-17 21:51:38 +0200105 else if (isdigit((unsigned char)*str))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 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 Faulet767a84b2017-11-24 16:50:31 +0100117 ha_warning("'\\%c' : deprecated use of a backslash before something not '\\','x' or a digit.\n", *str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 err = NULL;
119 }
120 }
121 str++;
122 }
123 return err;
124}
125
126
127/* returns the pointer to an error in the replacement string, or NULL if OK */
Thierry FOURNIER09af0d62014-06-18 11:35:54 +0200128const char *chain_regex(struct hdr_exp **head, struct my_regex *preg,
Willy Tarreauf4f04122010-01-28 18:10:50 +0100129 int action, const char *replace, void *cond)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130{
131 struct hdr_exp *exp;
132
133 if (replace != NULL) {
Willy Tarreaub17916e2006-10-15 15:17:57 +0200134 const char *err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135 err = check_replace_string(replace);
136 if (err)
137 return err;
138 }
139
140 while (*head != NULL)
141 head = &(*head)->next;
142
Vincent Bernat02779b62016-04-03 13:48:43 +0200143 exp = calloc(1, sizeof(*exp));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
145 exp->preg = preg;
146 exp->replace = replace;
147 exp->action = action;
Willy Tarreauf4f04122010-01-28 18:10:50 +0100148 exp->cond = cond;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149 *head = exp;
150
151 return NULL;
152}
153
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200154/* This function apply regex. It take const null terminated char as input.
155 * If the function doesn't match, it returns false, else it returns true.
156 * When it is compiled with JIT, this function execute strlen on the subject.
Willy Tarreau15a53a42015-01-21 13:39:42 +0100157 * Currently the only supported flag is REG_NOTBOL.
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200158 */
159int regex_exec_match(const struct my_regex *preg, const char *subject,
Willy Tarreau15a53a42015-01-21 13:39:42 +0100160 size_t nmatch, regmatch_t pmatch[], int flags) {
David Carlierf2592b22016-11-21 21:25:58 +0000161#if defined(USE_PCRE) || defined(USE_PCRE_JIT) || defined(USE_PCRE2) || defined(USE_PCRE2_JIT)
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200162 int ret;
David Carlierf2592b22016-11-21 21:25:58 +0000163#ifdef USE_PCRE2
164 PCRE2_SIZE *matches;
165 pcre2_match_data *pm;
166#else
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200167 int matches[MAX_MATCH * 3];
David Carlierf2592b22016-11-21 21:25:58 +0000168#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200169 int enmatch;
170 int i;
Willy Tarreau15a53a42015-01-21 13:39:42 +0100171 int options;
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200172
173 /* Silently limit the number of allowed matches. max
174 * match i the maximum value for match, in fact this
175 * limit is not applyied.
176 */
David Carlierf2592b22016-11-21 21:25:58 +0000177
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200178 enmatch = nmatch;
179 if (enmatch > MAX_MATCH)
180 enmatch = MAX_MATCH;
181
Willy Tarreau15a53a42015-01-21 13:39:42 +0100182 options = 0;
183 if (flags & REG_NOTBOL)
David Carlierf2592b22016-11-21 21:25:58 +0000184#ifdef USE_PCRE2
185 options |= PCRE2_NOTBOL;
186#else
Willy Tarreau15a53a42015-01-21 13:39:42 +0100187 options |= PCRE_NOTBOL;
David Carlierf2592b22016-11-21 21:25:58 +0000188#endif
Willy Tarreau15a53a42015-01-21 13:39:42 +0100189
David Carlierf2592b22016-11-21 21:25:58 +0000190 /* The value returned by pcre_exec()/pcre2_match() is one more than the highest numbered
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200191 * pair that has been set. For example, if two substrings have been captured,
192 * the returned value is 3. If there are no capturing subpatterns, the return
193 * value from a successful match is 1, indicating that just the first pair of
194 * offsets has been set.
195 *
Joseph Herlanteda75482018-11-15 14:46:29 -0800196 * It seems that this function returns 0 if it detects more matches than available
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200197 * space in the matches array.
198 */
David Carlierf2592b22016-11-21 21:25:58 +0000199#ifdef USE_PCRE2
200 pm = pcre2_match_data_create_from_pattern(preg->reg, NULL);
201 ret = pcre2_match(preg->reg, (PCRE2_SPTR)subject, (PCRE2_SIZE)strlen(subject), 0, options, pm, NULL);
202
203 if (ret < 0) {
204 pcre2_match_data_free(pm);
205 return 0;
206 }
207
208 matches = pcre2_get_ovector_pointer(pm);
209#else
Willy Tarreau15a53a42015-01-21 13:39:42 +0100210 ret = pcre_exec(preg->reg, preg->extra, subject, strlen(subject), 0, options, matches, enmatch * 3);
David Carlierf2592b22016-11-21 21:25:58 +0000211
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200212 if (ret < 0)
213 return 0;
David Carlierf2592b22016-11-21 21:25:58 +0000214#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200215
216 if (ret == 0)
217 ret = enmatch;
218
219 for (i=0; i<nmatch; i++) {
220 /* Copy offset. */
221 if (i < ret) {
222 pmatch[i].rm_so = matches[(i*2)];
223 pmatch[i].rm_eo = matches[(i*2)+1];
224 continue;
225 }
226 /* Set the unmatvh flag (-1). */
227 pmatch[i].rm_so = -1;
228 pmatch[i].rm_eo = -1;
229 }
David Carlierf2592b22016-11-21 21:25:58 +0000230#ifdef USE_PCRE2
231 pcre2_match_data_free(pm);
232#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200233 return 1;
234#else
235 int match;
Willy Tarreau15a53a42015-01-21 13:39:42 +0100236
237 flags &= REG_NOTBOL;
238 match = regexec(&preg->regex, subject, nmatch, pmatch, flags);
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200239 if (match == REG_NOMATCH)
240 return 0;
241 return 1;
242#endif
243}
244
245/* This function apply regex. It take a "char *" ans length as input. The
246 * <subject> can be modified during the processing. If the function doesn't
247 * match, it returns false, else it returns true.
248 * When it is compiled with standard POSIX regex or PCRE, this function add
249 * a temporary null chracters at the end of the <subject>. The <subject> must
Willy Tarreau15a53a42015-01-21 13:39:42 +0100250 * have a real length of <length> + 1. Currently the only supported flag is
251 * REG_NOTBOL.
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200252 */
253int regex_exec_match2(const struct my_regex *preg, char *subject, int length,
Willy Tarreau15a53a42015-01-21 13:39:42 +0100254 size_t nmatch, regmatch_t pmatch[], int flags) {
David Carlierf2592b22016-11-21 21:25:58 +0000255#if defined(USE_PCRE) || defined(USE_PCRE_JIT) || defined(USE_PCRE2) || defined(USE_PCRE2_JIT)
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200256 int ret;
David Carlierf2592b22016-11-21 21:25:58 +0000257#ifdef USE_PCRE2
258 PCRE2_SIZE *matches;
259 pcre2_match_data *pm;
260#else
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200261 int matches[MAX_MATCH * 3];
David Carlierf2592b22016-11-21 21:25:58 +0000262#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200263 int enmatch;
264 int i;
Willy Tarreau15a53a42015-01-21 13:39:42 +0100265 int options;
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200266
267 /* Silently limit the number of allowed matches. max
268 * match i the maximum value for match, in fact this
269 * limit is not applyied.
270 */
271 enmatch = nmatch;
272 if (enmatch > MAX_MATCH)
273 enmatch = MAX_MATCH;
274
Willy Tarreau15a53a42015-01-21 13:39:42 +0100275 options = 0;
276 if (flags & REG_NOTBOL)
David Carlierf2592b22016-11-21 21:25:58 +0000277#ifdef USE_PCRE2
278 options |= PCRE2_NOTBOL;
279#else
Willy Tarreau15a53a42015-01-21 13:39:42 +0100280 options |= PCRE_NOTBOL;
David Carlierf2592b22016-11-21 21:25:58 +0000281#endif
Willy Tarreau15a53a42015-01-21 13:39:42 +0100282
David Carlierf2592b22016-11-21 21:25:58 +0000283 /* The value returned by pcre_exec()/pcre2_match() is one more than the highest numbered
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200284 * pair that has been set. For example, if two substrings have been captured,
285 * the returned value is 3. If there are no capturing subpatterns, the return
286 * value from a successful match is 1, indicating that just the first pair of
287 * offsets has been set.
288 *
Joseph Herlanteda75482018-11-15 14:46:29 -0800289 * It seems that this function returns 0 if it detects more matches than available
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200290 * space in the matches array.
291 */
David Carlierf2592b22016-11-21 21:25:58 +0000292#ifdef USE_PCRE2
293 pm = pcre2_match_data_create_from_pattern(preg->reg, NULL);
294 ret = pcre2_match(preg->reg, (PCRE2_SPTR)subject, (PCRE2_SIZE)length, 0, options, pm, NULL);
295
296 if (ret < 0) {
297 pcre2_match_data_free(pm);
298 return 0;
299 }
300
301 matches = pcre2_get_ovector_pointer(pm);
302#else
Willy Tarreau15a53a42015-01-21 13:39:42 +0100303 ret = pcre_exec(preg->reg, preg->extra, subject, length, 0, options, matches, enmatch * 3);
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200304 if (ret < 0)
305 return 0;
David Carlierf2592b22016-11-21 21:25:58 +0000306#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200307
308 if (ret == 0)
309 ret = enmatch;
310
311 for (i=0; i<nmatch; i++) {
312 /* Copy offset. */
313 if (i < ret) {
314 pmatch[i].rm_so = matches[(i*2)];
315 pmatch[i].rm_eo = matches[(i*2)+1];
316 continue;
317 }
318 /* Set the unmatvh flag (-1). */
319 pmatch[i].rm_so = -1;
320 pmatch[i].rm_eo = -1;
321 }
David Carlierf2592b22016-11-21 21:25:58 +0000322#ifdef USE_PCRE2
323 pcre2_match_data_free(pm);
324#endif
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200325 return 1;
326#else
327 char old_char = subject[length];
328 int match;
Willy Tarreau15a53a42015-01-21 13:39:42 +0100329
330 flags &= REG_NOTBOL;
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200331 subject[length] = 0;
Willy Tarreau15a53a42015-01-21 13:39:42 +0100332 match = regexec(&preg->regex, subject, nmatch, pmatch, flags);
Thierry FOURNIERb8f980c2014-06-11 13:59:05 +0200333 subject[length] = old_char;
334 if (match == REG_NOMATCH)
335 return 0;
336 return 1;
337#endif
338}
339
Dragan Dosen26743032019-04-30 15:54:36 +0200340struct my_regex *regex_comp(const char *str, int cs, int cap, char **err)
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200341{
Dragan Dosen26743032019-04-30 15:54:36 +0200342 struct my_regex *regex = NULL;
Thierry FOURNIER26202762014-06-18 11:50:51 +0200343#if defined(USE_PCRE) || defined(USE_PCRE_JIT)
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200344 int flags = 0;
345 const char *error;
346 int erroffset;
Dragan Dosen26743032019-04-30 15:54:36 +0200347#elif defined(USE_PCRE2) || defined(USE_PCRE2_JIT)
348 int flags = 0;
349 int errn;
350#if defined(USE_PCRE2_JIT)
351 int jit;
352#endif
353 PCRE2_UCHAR error[256];
354 PCRE2_SIZE erroffset;
355#else
356 int flags = REG_EXTENDED;
357#endif
358
359 regex = calloc(1, sizeof(*regex));
360 if (!regex) {
361 memprintf(err, "not enough memory to build regex");
362 goto out_fail_alloc;
363 }
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200364
Dragan Dosen26743032019-04-30 15:54:36 +0200365#if defined(USE_PCRE) || defined(USE_PCRE_JIT)
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200366 if (!cs)
367 flags |= PCRE_CASELESS;
368 if (!cap)
369 flags |= PCRE_NO_AUTO_CAPTURE;
370
371 regex->reg = pcre_compile(str, flags, &error, &erroffset, NULL);
372 if (!regex->reg) {
373 memprintf(err, "regex '%s' is invalid (error=%s, erroffset=%d)", str, error, erroffset);
Dragan Dosen26743032019-04-30 15:54:36 +0200374 goto out_fail_alloc;
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200375 }
376
377 regex->extra = pcre_study(regex->reg, PCRE_STUDY_JIT_COMPILE, &error);
Christian Ruppert955f4612014-10-29 17:05:53 +0100378 if (!regex->extra && error != NULL) {
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200379 pcre_free(regex->reg);
380 memprintf(err, "failed to compile regex '%s' (error=%s)", str, error);
Dragan Dosen26743032019-04-30 15:54:36 +0200381 goto out_fail_alloc;
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200382 }
David Carlierf2592b22016-11-21 21:25:58 +0000383#elif defined(USE_PCRE2) || defined(USE_PCRE2_JIT)
David Carlierf2592b22016-11-21 21:25:58 +0000384 if (!cs)
385 flags |= PCRE2_CASELESS;
386 if (!cap)
387 flags |= PCRE2_NO_AUTO_CAPTURE;
388
389 regex->reg = pcre2_compile((PCRE2_SPTR)str, PCRE2_ZERO_TERMINATED, flags, &errn, &erroffset, NULL);
390 if (!regex->reg) {
391 pcre2_get_error_message(errn, error, sizeof(error));
392 memprintf(err, "regex '%s' is invalid (error=%s, erroffset=%zu)", str, error, erroffset);
Dragan Dosen26743032019-04-30 15:54:36 +0200393 goto out_fail_alloc;
David Carlierf2592b22016-11-21 21:25:58 +0000394 }
395
396#if defined(USE_PCRE2_JIT)
397 jit = pcre2_jit_compile(regex->reg, PCRE2_JIT_COMPLETE);
398 /*
399 * We end if it is an error not related to lack of JIT support
400 * in a case of JIT support missing pcre2_jit_compile is "no-op"
401 */
402 if (jit < 0 && jit != PCRE2_ERROR_JIT_BADOPTION) {
403 pcre2_code_free(regex->reg);
404 memprintf(err, "regex '%s' jit compilation failed", str);
Dragan Dosen26743032019-04-30 15:54:36 +0200405 goto out_fail_alloc;
David Carlierf2592b22016-11-21 21:25:58 +0000406 }
407#endif
408
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200409#else
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200410 if (!cs)
411 flags |= REG_ICASE;
412 if (!cap)
413 flags |= REG_NOSUB;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414
Thierry FOURNIER799c0422013-12-06 20:36:20 +0100415 if (regcomp(&regex->regex, str, flags) != 0) {
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200416 memprintf(err, "regex '%s' is invalid", str);
Dragan Dosen26743032019-04-30 15:54:36 +0200417 goto out_fail_alloc;
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200418 }
419#endif
Dragan Dosen26743032019-04-30 15:54:36 +0200420 return regex;
421
422 out_fail_alloc:
423 free(regex);
424 return NULL;
Thierry FOURNIERed5a4ae2013-10-14 14:07:36 +0200425}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426
Willy Tarreau80713382018-11-26 10:19:54 +0100427static void regex_register_build_options(void)
Willy Tarreau7a9ac6d2016-12-21 19:13:14 +0100428{
429 char *ptr = NULL;
430
431#ifdef USE_PCRE
432 memprintf(&ptr, "Built with PCRE version : %s", (HAP_XSTRING(Z PCRE_PRERELEASE)[1] == 0)?
433 HAP_XSTRING(PCRE_MAJOR.PCRE_MINOR PCRE_DATE) :
434 HAP_XSTRING(PCRE_MAJOR.PCRE_MINOR) HAP_XSTRING(PCRE_PRERELEASE PCRE_DATE));
435 memprintf(&ptr, "%s\nRunning on PCRE version : %s", ptr, pcre_version());
436
437 memprintf(&ptr, "%s\nPCRE library supports JIT : %s", ptr,
438#ifdef USE_PCRE_JIT
439 ({
440 int r;
441 pcre_config(PCRE_CONFIG_JIT, &r);
442 r ? "yes" : "no (libpcre build without JIT?)";
443 })
444#else
445 "no (USE_PCRE_JIT not set)"
446#endif
447 );
David Carlierf2592b22016-11-21 21:25:58 +0000448#endif /* USE_PCRE */
449
450#ifdef USE_PCRE2
451 memprintf(&ptr, "Built with PCRE2 version : %s", (HAP_XSTRING(Z PCRE2_PRERELEASE)[1] == 0) ?
452 HAP_XSTRING(PCRE2_MAJOR.PCRE2_MINOR PCRE2_DATE) :
453 HAP_XSTRING(PCRE2_MAJOR.PCRE2_MINOR) HAP_XSTRING(PCRE2_PRERELEASE PCRE2_DATE));
454 memprintf(&ptr, "%s\nPCRE2 library supports JIT : %s", ptr,
455#ifdef USE_PCRE2_JIT
456 ({
457 int r;
458 pcre2_config(PCRE2_CONFIG_JIT, &r);
459 r ? "yes" : "no (libpcre2 build without JIT?)";
460 })
Willy Tarreau7a9ac6d2016-12-21 19:13:14 +0100461#else
David Carlierf2592b22016-11-21 21:25:58 +0000462 "no (USE_PCRE2_JIT not set)"
463#endif
464 );
465#endif /* USE_PCRE2 */
466
467#if !defined(USE_PCRE) && !defined(USE_PCRE2)
468 memprintf(&ptr, "Built without PCRE or PCRE2 support (using libc's regex instead)");
Willy Tarreau7a9ac6d2016-12-21 19:13:14 +0100469#endif
470 hap_register_build_opts(ptr, 1);
471}
472
Willy Tarreau80713382018-11-26 10:19:54 +0100473INITCALL0(STG_REGISTER, regex_register_build_options);
474
Willy Tarreaubaaee002006-06-26 02:48:02 +0200475/*
476 * Local variables:
477 * c-indent-level: 8
478 * c-basic-offset: 8
479 * End:
480 */