Parent Directory
|
Revision Log
|
Patch
| revision 455 by ph10, Sat Sep 26 19:12:32 2009 UTC | revision 670 by ph10, Tue Aug 23 11:16:56 2011 UTC | |
|---|---|---|
| # | Line 6 | Line 6 |
| 6 | and semantics are as close as possible to those of the Perl 5 language. | and semantics are as close as possible to those of the Perl 5 language. |
| 7 | ||
| 8 | Written by Philip Hazel | Written by Philip Hazel |
| 9 | Copyright (c) 1997-2009 University of Cambridge | Copyright (c) 1997-2011 University of Cambridge |
| 10 | ||
| 11 | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| 12 | Redistribution and use in source and binary forms, with or without | Redistribution and use in source and binary forms, with or without |
| # | Line 53 supporting internal functions that are n | Line 53 supporting internal functions that are n |
| 53 | #include "pcre_internal.h" | #include "pcre_internal.h" |
| 54 | ||
| 55 | ||
| 56 | /* When DEBUG is defined, we need the pcre_printint() function, which is also | /* When PCRE_DEBUG is defined, we need the pcre_printint() function, which is |
| 57 | used by pcretest. DEBUG is not defined when building a production library. */ | also used by pcretest. PCRE_DEBUG is not defined when building a production |
| 58 | library. */ | |
| 59 | ||
| 60 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
| 61 | #include "pcre_printint.src" | #include "pcre_printint.src" |
| 62 | #endif | #endif |
| 63 | ||
| # | Line 91 is 4 there is plenty of room. */ | Line 92 is 4 there is plenty of room. */ |
| 92 | ||
| 93 | #define COMPILE_WORK_SIZE (4096) | #define COMPILE_WORK_SIZE (4096) |
| 94 | ||
| 95 | /* The overrun tests check for a slightly smaller size so that they detect the | |
| 96 | overrun before it actually does run off the end of the data block. */ | |
| 97 | ||
| 98 | #define WORK_SIZE_CHECK (COMPILE_WORK_SIZE - 100) | |
| 99 | ||
| 100 | ||
| 101 | /* Table for handling escaped characters in the range '0'-'z'. Positive returns | /* Table for handling escaped characters in the range '0'-'z'. Positive returns |
| 102 | are simple data values; negative values are for special things like \d and so | are simple data values; negative values are for special things like \d and so |
| # | Line 118 static const short int escapes[] = { | Line 124 static const short int escapes[] = { |
| 124 | -ESC_H, 0, | -ESC_H, 0, |
| 125 | 0, -ESC_K, | 0, -ESC_K, |
| 126 | 0, 0, | 0, 0, |
| 127 | 0, 0, | -ESC_N, 0, |
| 128 | -ESC_P, -ESC_Q, | -ESC_P, -ESC_Q, |
| 129 | -ESC_R, -ESC_S, | -ESC_R, -ESC_S, |
| 130 | 0, 0, | 0, 0, |
| # | Line 165 static const short int escapes[] = { | Line 171 static const short int escapes[] = { |
| 171 | /* B8 */ 0, 0, 0, 0, 0, ']', '=', '-', | /* B8 */ 0, 0, 0, 0, 0, ']', '=', '-', |
| 172 | /* C0 */ '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G, | /* C0 */ '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G, |
| 173 | /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, | /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, |
| 174 | /* D0 */ '}', 0, -ESC_K, 0, 0, 0, 0, -ESC_P, | /* D0 */ '}', 0, -ESC_K, 0, 0,-ESC_N, 0, -ESC_P, |
| 175 | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, |
| 176 | /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X, | /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X, |
| 177 | /* E8 */ 0,-ESC_Z, 0, 0, 0, 0, 0, 0, | /* E8 */ 0,-ESC_Z, 0, 0, 0, 0, 0, 0, |
| # | Line 182 string is built from string macros so th | Line 188 string is built from string macros so th |
| 188 | platforms. */ | platforms. */ |
| 189 | ||
| 190 | typedef struct verbitem { | typedef struct verbitem { |
| 191 | int len; | int len; /* Length of verb name */ |
| 192 | int op; | int op; /* Op when no arg, or -1 if arg mandatory */ |
| 193 | int op_arg; /* Op when arg present, or -1 if not allowed */ | |
| 194 | } verbitem; | } verbitem; |
| 195 | ||
| 196 | static const char verbnames[] = | static const char verbnames[] = |
| 197 | "\0" /* Empty name is a shorthand for MARK */ | |
| 198 | STRING_MARK0 | |
| 199 | STRING_ACCEPT0 | STRING_ACCEPT0 |
| 200 | STRING_COMMIT0 | STRING_COMMIT0 |
| 201 | STRING_F0 | STRING_F0 |
| # | Line 196 static const char verbnames[] = | Line 205 static const char verbnames[] = |
| 205 | STRING_THEN; | STRING_THEN; |
| 206 | ||
| 207 | static const verbitem verbs[] = { | static const verbitem verbs[] = { |
| 208 | { 6, OP_ACCEPT }, | { 0, -1, OP_MARK }, |
| 209 | { 6, OP_COMMIT }, | { 4, -1, OP_MARK }, |
| 210 | { 1, OP_FAIL }, | { 6, OP_ACCEPT, -1 }, |
| 211 | { 4, OP_FAIL }, | { 6, OP_COMMIT, -1 }, |
| 212 | { 5, OP_PRUNE }, | { 1, OP_FAIL, -1 }, |
| 213 | { 4, OP_SKIP }, | { 4, OP_FAIL, -1 }, |
| 214 | { 4, OP_THEN } | { 5, OP_PRUNE, OP_PRUNE_ARG }, |
| 215 | { 4, OP_SKIP, OP_SKIP_ARG }, | |
| 216 | { 4, OP_THEN, OP_THEN_ARG } | |
| 217 | }; | }; |
| 218 | ||
| 219 | static const int verbcount = sizeof(verbs)/sizeof(verbitem); | static const int verbcount = sizeof(verbs)/sizeof(verbitem); |
| # | Line 250 static const int posix_class_maps[] = { | Line 261 static const int posix_class_maps[] = { |
| 261 | cbit_xdigit,-1, 0 /* xdigit */ | cbit_xdigit,-1, 0 /* xdigit */ |
| 262 | }; | }; |
| 263 | ||
| 264 | /* Table of substitutes for \d etc when PCRE_UCP is set. The POSIX class | |
| 265 | substitutes must be in the order of the names, defined above, and there are | |
| 266 | both positive and negative cases. NULL means no substitute. */ | |
| 267 | ||
| 268 | #ifdef SUPPORT_UCP | |
| 269 | static const uschar *substitutes[] = { | |
| 270 | (uschar *)"\\P{Nd}", /* \D */ | |
| 271 | (uschar *)"\\p{Nd}", /* \d */ | |
| 272 | (uschar *)"\\P{Xsp}", /* \S */ /* NOTE: Xsp is Perl space */ | |
| 273 | (uschar *)"\\p{Xsp}", /* \s */ | |
| 274 | (uschar *)"\\P{Xwd}", /* \W */ | |
| 275 | (uschar *)"\\p{Xwd}" /* \w */ | |
| 276 | }; | |
| 277 | ||
| 278 | static const uschar *posix_substitutes[] = { | |
| 279 | (uschar *)"\\p{L}", /* alpha */ | |
| 280 | (uschar *)"\\p{Ll}", /* lower */ | |
| 281 | (uschar *)"\\p{Lu}", /* upper */ | |
| 282 | (uschar *)"\\p{Xan}", /* alnum */ | |
| 283 | NULL, /* ascii */ | |
| 284 | (uschar *)"\\h", /* blank */ | |
| 285 | NULL, /* cntrl */ | |
| 286 | (uschar *)"\\p{Nd}", /* digit */ | |
| 287 | NULL, /* graph */ | |
| 288 | NULL, /* print */ | |
| 289 | NULL, /* punct */ | |
| 290 | (uschar *)"\\p{Xps}", /* space */ /* NOTE: Xps is POSIX space */ | |
| 291 | (uschar *)"\\p{Xwd}", /* word */ | |
| 292 | NULL, /* xdigit */ | |
| 293 | /* Negated cases */ | |
| 294 | (uschar *)"\\P{L}", /* ^alpha */ | |
| 295 | (uschar *)"\\P{Ll}", /* ^lower */ | |
| 296 | (uschar *)"\\P{Lu}", /* ^upper */ | |
| 297 | (uschar *)"\\P{Xan}", /* ^alnum */ | |
| 298 | NULL, /* ^ascii */ | |
| 299 | (uschar *)"\\H", /* ^blank */ | |
| 300 | NULL, /* ^cntrl */ | |
| 301 | (uschar *)"\\P{Nd}", /* ^digit */ | |
| 302 | NULL, /* ^graph */ | |
| 303 | NULL, /* ^print */ | |
| 304 | NULL, /* ^punct */ | |
| 305 | (uschar *)"\\P{Xps}", /* ^space */ /* NOTE: Xps is POSIX space */ | |
| 306 | (uschar *)"\\P{Xwd}", /* ^word */ | |
| 307 | NULL /* ^xdigit */ | |
| 308 | }; | |
| 309 | #define POSIX_SUBSIZE (sizeof(posix_substitutes)/sizeof(uschar *)) | |
| 310 | #endif | |
| 311 | ||
| 312 | #define STRING(a) # a | #define STRING(a) # a |
| 313 | #define XSTRING(s) STRING(s) | #define XSTRING(s) STRING(s) |
| # | Line 262 the number of relocations needed when a | Line 320 the number of relocations needed when a |
| 320 | it is now one long string. We cannot use a table of offsets, because the | it is now one long string. We cannot use a table of offsets, because the |
| 321 | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we |
| 322 | simply count through to the one we want - this isn't a performance issue | simply count through to the one we want - this isn't a performance issue |
| 323 | because these strings are used only when there is a compilation error. */ | because these strings are used only when there is a compilation error. |
| 324 | ||
| 325 | Each substring ends with \0 to insert a null character. This includes the final | |
| 326 | substring, so that the whole string ends with \0\0, which can be detected when | |
| 327 | counting through. */ | |
| 328 | ||
| 329 | static const char error_texts[] = | static const char error_texts[] = |
| 330 | "no error\0" | "no error\0" |
| # | Line 309 static const char error_texts[] = | Line 371 static const char error_texts[] = |
| 371 | /* 35 */ | /* 35 */ |
| 372 | "invalid condition (?(0)\0" | "invalid condition (?(0)\0" |
| 373 | "\\C not allowed in lookbehind assertion\0" | "\\C not allowed in lookbehind assertion\0" |
| 374 | "PCRE does not support \\L, \\l, \\N, \\U, or \\u\0" | "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0" |
| 375 | "number after (?C is > 255\0" | "number after (?C is > 255\0" |
| 376 | "closing ) for (?C expected\0" | "closing ) for (?C expected\0" |
| 377 | /* 40 */ | /* 40 */ |
| # | Line 331 static const char error_texts[] = | Line 393 static const char error_texts[] = |
| 393 | "internal error: previously-checked referenced subpattern not found\0" | "internal error: previously-checked referenced subpattern not found\0" |
| 394 | "DEFINE group contains more than one branch\0" | "DEFINE group contains more than one branch\0" |
| 395 | /* 55 */ | /* 55 */ |
| 396 | "repeating a DEFINE group is not allowed\0" | "repeating a DEFINE group is not allowed\0" /** DEAD **/ |
| 397 | "inconsistent NEWLINE options\0" | "inconsistent NEWLINE options\0" |
| 398 | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" |
| 399 | "a numbered reference must not be zero\0" | "a numbered reference must not be zero\0" |
| 400 | "(*VERB) with an argument is not supported\0" | "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)\0" |
| 401 | /* 60 */ | /* 60 */ |
| 402 | "(*VERB) not recognized\0" | "(*VERB) not recognized\0" |
| 403 | "number is too big\0" | "number is too big\0" |
| 404 | "subpattern name expected\0" | "subpattern name expected\0" |
| 405 | "digit expected after (?+\0" | "digit expected after (?+\0" |
| 406 | "] is an invalid data character in JavaScript compatibility mode"; | "] is an invalid data character in JavaScript compatibility mode\0" |
| 407 | /* 65 */ | |
| 408 | "different names for subpatterns of the same number are not allowed\0" | |
| 409 | "(*MARK) must have an argument\0" | |
| 410 | "this version of PCRE is not compiled with PCRE_UCP support\0" | |
| 411 | "\\c must be followed by an ASCII character\0" | |
| 412 | "\\k is not followed by a braced, angle-bracketed, or quoted name\0" | |
| 413 | ; | |
| 414 | ||
| 415 | /* Table to identify digits and hex digits. This is used when compiling | /* Table to identify digits and hex digits. This is used when compiling |
| 416 | patterns. Note that the tables in chartables are dependent on the locale, and | patterns. Note that the tables in chartables are dependent on the locale, and |
| # | Line 478 static const unsigned char ebcdic_charta | Line 546 static const unsigned char ebcdic_charta |
| 546 | /* Definition to allow mutual recursion */ | /* Definition to allow mutual recursion */ |
| 547 | ||
| 548 | static BOOL | static BOOL |
| 549 | compile_regex(int, int, uschar **, const uschar **, int *, BOOL, BOOL, int, | compile_regex(int, uschar **, const uschar **, int *, BOOL, BOOL, int, int, |
| 550 | int *, int *, branch_chain *, compile_data *, int *); | int *, int *, branch_chain *, compile_data *, int *); |
| 551 | ||
| 552 | ||
| # | Line 500 static const char * | Line 568 static const char * |
| 568 | find_error_text(int n) | find_error_text(int n) |
| 569 | { | { |
| 570 | const char *s = error_texts; | const char *s = error_texts; |
| 571 | for (; n > 0; n--) while (*s++ != 0) {}; | for (; n > 0; n--) |
| 572 | { | |
| 573 | while (*s++ != 0) {}; | |
| 574 | if (*s == 0) return "Error text not found (please report)"; | |
| 575 | } | |
| 576 | return s; | return s; |
| 577 | } | } |
| 578 | ||
| 579 | ||
| 580 | /************************************************* | /************************************************* |
| 581 | * Check for counted repeat * | |
| 582 | *************************************************/ | |
| 583 | ||
| 584 | /* This function is called when a '{' is encountered in a place where it might | |
| 585 | start a quantifier. It looks ahead to see if it really is a quantifier or not. | |
| 586 | It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd} | |
| 587 | where the ddds are digits. | |
| 588 | ||
| 589 | Arguments: | |
| 590 | p pointer to the first char after '{' | |
| 591 | ||
| 592 | Returns: TRUE or FALSE | |
| 593 | */ | |
| 594 | ||
| 595 | static BOOL | |
| 596 | is_counted_repeat(const uschar *p) | |
| 597 | { | |
| 598 | if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | |
| 599 | while ((digitab[*p] & ctype_digit) != 0) p++; | |
| 600 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
| 601 | ||
| 602 | if (*p++ != CHAR_COMMA) return FALSE; | |
| 603 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
| 604 | ||
| 605 | if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | |
| 606 | while ((digitab[*p] & ctype_digit) != 0) p++; | |
| 607 | ||
| 608 | return (*p == CHAR_RIGHT_CURLY_BRACKET); | |
| 609 | } | |
| 610 | ||
| 611 | ||
| 612 | ||
| 613 | /************************************************* | |
| 614 | * Handle escapes * | * Handle escapes * |
| 615 | *************************************************/ | *************************************************/ |
| 616 | ||
| # | Line 571 else | Line 676 else |
| 676 | ||
| 677 | case CHAR_l: | case CHAR_l: |
| 678 | case CHAR_L: | case CHAR_L: |
| case CHAR_N: | ||
| 679 | case CHAR_u: | case CHAR_u: |
| 680 | case CHAR_U: | case CHAR_U: |
| 681 | *errorcodeptr = ERR37; | *errorcodeptr = ERR37; |
| 682 | break; | break; |
| 683 | ||
| 684 | /* \g must be followed by one of a number of specific things: | /* In a character class, \g is just a literal "g". Outside a character |
| 685 | class, \g must be followed by one of a number of specific things: | |
| 686 | ||
| 687 | (1) A number, either plain or braced. If positive, it is an absolute | (1) A number, either plain or braced. If positive, it is an absolute |
| 688 | backreference. If negative, it is a relative backreference. This is a Perl | backreference. If negative, it is a relative backreference. This is a Perl |
| # | Line 594 else | Line 699 else |
| 699 | the -ESC_g code (cf \k). */ | the -ESC_g code (cf \k). */ |
| 700 | ||
| 701 | case CHAR_g: | case CHAR_g: |
| 702 | if (isclass) break; | |
| 703 | if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE) | if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE) |
| 704 | { | { |
| 705 | c = -ESC_g; | c = -ESC_g; |
| # | Line 772 else | Line 878 else |
| 878 | break; | break; |
| 879 | ||
| 880 | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. |
| 881 | This coding is ASCII-specific, but then the whole concept of \cx is | An error is given if the byte following \c is not an ASCII character. This |
| 882 | coding is ASCII-specific, but then the whole concept of \cx is | |
| 883 | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ |
| 884 | ||
| 885 | case CHAR_c: | case CHAR_c: |
| # | Line 782 else | Line 889 else |
| 889 | *errorcodeptr = ERR2; | *errorcodeptr = ERR2; |
| 890 | break; | break; |
| 891 | } | } |
| 892 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
| 893 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | if (c > 127) /* Excludes all non-ASCII in either mode */ |
| 894 | { | |
| 895 | *errorcodeptr = ERR68; | |
| 896 | break; | |
| 897 | } | |
| 898 | if (c >= CHAR_a && c <= CHAR_z) c -= 32; | if (c >= CHAR_a && c <= CHAR_z) c -= 32; |
| 899 | c ^= 0x40; | c ^= 0x40; |
| 900 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
| 901 | if (c >= CHAR_a && c <= CHAR_z) c += 64; | if (c >= CHAR_a && c <= CHAR_z) c += 64; |
| 902 | c ^= 0xC0; | c ^= 0xC0; |
| 903 | #endif | #endif |
| # | Line 809 else | Line 920 else |
| 920 | } | } |
| 921 | } | } |
| 922 | ||
| 923 | /* Perl supports \N{name} for character names, as well as plain \N for "not | |
| 924 | newline". PCRE does not support \N{name}. However, it does support | |
| 925 | quantification such as \N{2,3}. */ | |
| 926 | ||
| 927 | if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET && | |
| 928 | !is_counted_repeat(ptr+2)) | |
| 929 | *errorcodeptr = ERR37; | |
| 930 | ||
| 931 | /* If PCRE_UCP is set, we change the values for \d etc. */ | |
| 932 | ||
| 933 | if ((options & PCRE_UCP) != 0 && c <= -ESC_D && c >= -ESC_w) | |
| 934 | c -= (ESC_DU - ESC_D); | |
| 935 | ||
| 936 | /* Set the pointer to the final character before returning. */ | |
| 937 | ||
| 938 | *ptrptr = ptr; | *ptrptr = ptr; |
| 939 | return c; | return c; |
| 940 | } | } |
| # | Line 909 return -1; | Line 1035 return -1; |
| 1035 | ||
| 1036 | ||
| 1037 | /************************************************* | /************************************************* |
| * Check for counted repeat * | ||
| *************************************************/ | ||
| /* This function is called when a '{' is encountered in a place where it might | ||
| start a quantifier. It looks ahead to see if it really is a quantifier or not. | ||
| It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd} | ||
| where the ddds are digits. | ||
| Arguments: | ||
| p pointer to the first char after '{' | ||
| Returns: TRUE or FALSE | ||
| */ | ||
| static BOOL | ||
| is_counted_repeat(const uschar *p) | ||
| { | ||
| if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | ||
| while ((digitab[*p] & ctype_digit) != 0) p++; | ||
| if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | ||
| if (*p++ != CHAR_COMMA) return FALSE; | ||
| if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | ||
| if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | ||
| while ((digitab[*p] & ctype_digit) != 0) p++; | ||
| return (*p == CHAR_RIGHT_CURLY_BRACKET); | ||
| } | ||
| /************************************************* | ||
| 1038 | * Read repeat counts * | * Read repeat counts * |
| 1039 | *************************************************/ | *************************************************/ |
| 1040 | ||
| # | Line 1017 top-level call starts at the beginning o | Line 1110 top-level call starts at the beginning o |
| 1110 | start at a parenthesis. It scans along a pattern's text looking for capturing | start at a parenthesis. It scans along a pattern's text looking for capturing |
| 1111 | subpatterns, and counting them. If it finds a named pattern that matches the | subpatterns, and counting them. If it finds a named pattern that matches the |
| 1112 | name it is given, it returns its number. Alternatively, if the name is NULL, it | name it is given, it returns its number. Alternatively, if the name is NULL, it |
| 1113 | returns when it reaches a given numbered subpattern. We know that if (?P< is | returns when it reaches a given numbered subpattern. Recursion is used to keep |
| 1114 | encountered, the name will be terminated by '>' because that is checked in the | track of subpatterns that reset the capturing group numbers - the (?| feature. |
| 1115 | first pass. Recursion is used to keep track of subpatterns that reset the | |
| 1116 | capturing group numbers - the (?| feature. | This function was originally called only from the second pass, in which we know |
| 1117 | that if (?< or (?' or (?P< is encountered, the name will be correctly | |
| 1118 | terminated because that is checked in the first pass. There is now one call to | |
| 1119 | this function in the first pass, to check for a recursive back reference by | |
| 1120 | name (so that we can make the whole group atomic). In this case, we need check | |
| 1121 | only up to the current position in the pattern, and that is still OK because | |
| 1122 | and previous occurrences will have been checked. To make this work, the test | |
| 1123 | for "end of pattern" is a check against cd->end_pattern in the main loop, | |
| 1124 | instead of looking for a binary zero. This means that the special first-pass | |
| 1125 | call can adjust cd->end_pattern temporarily. (Checks for binary zero while | |
| 1126 | processing items within the loop are OK, because afterwards the main loop will | |
| 1127 | terminate.) | |
| 1128 | ||
| 1129 | Arguments: | Arguments: |
| 1130 | ptrptr address of the current character pointer (updated) | ptrptr address of the current character pointer (updated) |
| # | Line 1028 Arguments: | Line 1132 Arguments: |
| 1132 | name name to seek, or NULL if seeking a numbered subpattern | name name to seek, or NULL if seeking a numbered subpattern |
| 1133 | lorn name length, or subpattern number if name is NULL | lorn name length, or subpattern number if name is NULL |
| 1134 | xmode TRUE if we are in /x mode | xmode TRUE if we are in /x mode |
| 1135 | utf8 TRUE if we are in UTF-8 mode | |
| 1136 | count pointer to the current capturing subpattern number (updated) | count pointer to the current capturing subpattern number (updated) |
| 1137 | ||
| 1138 | Returns: the number of the named subpattern, or -1 if not found | Returns: the number of the named subpattern, or -1 if not found |
| # | Line 1035 Returns: the number of the named s | Line 1140 Returns: the number of the named s |
| 1140 | ||
| 1141 | static int | static int |
| 1142 | find_parens_sub(uschar **ptrptr, compile_data *cd, const uschar *name, int lorn, | find_parens_sub(uschar **ptrptr, compile_data *cd, const uschar *name, int lorn, |
| 1143 | BOOL xmode, int *count) | BOOL xmode, BOOL utf8, int *count) |
| 1144 | { | { |
| 1145 | uschar *ptr = *ptrptr; | uschar *ptr = *ptrptr; |
| 1146 | int start_count = *count; | int start_count = *count; |
| # | Line 1047 dealing with. The very first call may no | Line 1152 dealing with. The very first call may no |
| 1152 | ||
| 1153 | if (ptr[0] == CHAR_LEFT_PARENTHESIS) | if (ptr[0] == CHAR_LEFT_PARENTHESIS) |
| 1154 | { | { |
| 1155 | if (ptr[1] == CHAR_QUESTION_MARK && | /* Handle specials such as (*SKIP) or (*UTF8) etc. */ |
| 1156 | ptr[2] == CHAR_VERTICAL_LINE) | |
| 1157 | if (ptr[1] == CHAR_ASTERISK) ptr += 2; | |
| 1158 | ||
| 1159 | /* Handle a normal, unnamed capturing parenthesis. */ | |
| 1160 | ||
| 1161 | else if (ptr[1] != CHAR_QUESTION_MARK) | |
| 1162 | { | |
| 1163 | *count += 1; | |
| 1164 | if (name == NULL && *count == lorn) return *count; | |
| 1165 | ptr++; | |
| 1166 | } | |
| 1167 | ||
| 1168 | /* All cases now have (? at the start. Remember when we are in a group | |
| 1169 | where the parenthesis numbers are duplicated. */ | |
| 1170 | ||
| 1171 | else if (ptr[2] == CHAR_VERTICAL_LINE) | |
| 1172 | { | { |
| 1173 | ptr += 3; | ptr += 3; |
| 1174 | dup_parens = TRUE; | dup_parens = TRUE; |
| 1175 | } | } |
| 1176 | ||
| 1177 | /* Handle a normal, unnamed capturing parenthesis */ | /* Handle comments; all characters are allowed until a ket is reached. */ |
| 1178 | ||
| 1179 | else if (ptr[1] != CHAR_QUESTION_MARK && ptr[1] != CHAR_ASTERISK) | else if (ptr[2] == CHAR_NUMBER_SIGN) |
| 1180 | { | { |
| 1181 | *count += 1; | for (ptr += 3; *ptr != 0; ptr++) if (*ptr == CHAR_RIGHT_PARENTHESIS) break; |
| 1182 | if (name == NULL && *count == lorn) return *count; | goto FAIL_EXIT; |
| ptr++; | ||
| 1183 | } | } |
| 1184 | ||
| 1185 | /* Handle a condition. If it is an assertion, just carry on so that it | /* Handle a condition. If it is an assertion, just carry on so that it |
| 1186 | is processed as normal. If not, skip to the closing parenthesis of the | is processed as normal. If not, skip to the closing parenthesis of the |
| 1187 | condition (there can't be any nested parens. */ | condition (there can't be any nested parens). */ |
| 1188 | ||
| 1189 | else if (ptr[2] == CHAR_LEFT_PARENTHESIS) | else if (ptr[2] == CHAR_LEFT_PARENTHESIS) |
| 1190 | { | { |
| # | Line 1077 if (ptr[0] == CHAR_LEFT_PARENTHESIS) | Line 1196 if (ptr[0] == CHAR_LEFT_PARENTHESIS) |
| 1196 | } | } |
| 1197 | } | } |
| 1198 | ||
| 1199 | /* We have either (? or (* and not a condition */ | /* Start with (? but not a condition. */ |
| 1200 | ||
| 1201 | else | else |
| 1202 | { | { |
| # | Line 1100 if (ptr[0] == CHAR_LEFT_PARENTHESIS) | Line 1219 if (ptr[0] == CHAR_LEFT_PARENTHESIS) |
| 1219 | if (name != NULL && lorn == ptr - thisname && | if (name != NULL && lorn == ptr - thisname && |
| 1220 | strncmp((const char *)name, (const char *)thisname, lorn) == 0) | strncmp((const char *)name, (const char *)thisname, lorn) == 0) |
| 1221 | return *count; | return *count; |
| 1222 | term++; | term++; |
| 1223 | } | } |
| 1224 | } | } |
| 1225 | } | } |
| 1226 | ||
| 1227 | /* Past any initial parenthesis handling, scan for parentheses or vertical | /* Past any initial parenthesis handling, scan for parentheses or vertical |
| 1228 | bars. */ | bars. Stop if we get to cd->end_pattern. Note that this is important for the |
| 1229 | first-pass call when this value is temporarily adjusted to stop at the current | |
| 1230 | position. So DO NOT change this to a test for binary zero. */ | |
| 1231 | ||
| 1232 | for (; *ptr != 0; ptr++) | for (; ptr < cd->end_pattern; ptr++) |
| 1233 | { | { |
| 1234 | /* Skip over backslashed characters and also entire \Q...\E */ | /* Skip over backslashed characters and also entire \Q...\E */ |
| 1235 | ||
| # | Line 1146 for (; *ptr != 0; ptr++) | Line 1267 for (; *ptr != 0; ptr++) |
| 1267 | break; | break; |
| 1268 | } | } |
| 1269 | else if (!negate_class && ptr[1] == CHAR_CIRCUMFLEX_ACCENT) | else if (!negate_class && ptr[1] == CHAR_CIRCUMFLEX_ACCENT) |
| 1270 | { | { |
| 1271 | negate_class = TRUE; | negate_class = TRUE; |
| 1272 | ptr++; | ptr++; |
| 1273 | } | } |
| 1274 | else break; | else break; |
| 1275 | } | } |
| 1276 | ||
| # | Line 1182 for (; *ptr != 0; ptr++) | Line 1303 for (; *ptr != 0; ptr++) |
| 1303 | ||
| 1304 | if (xmode && *ptr == CHAR_NUMBER_SIGN) | if (xmode && *ptr == CHAR_NUMBER_SIGN) |
| 1305 | { | { |
| 1306 | while (*(++ptr) != 0 && *ptr != CHAR_NL) {}; | ptr++; |
| 1307 | while (*ptr != 0) | |
| 1308 | { | |
| 1309 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | |
| 1310 | ptr++; | |
| 1311 | #ifdef SUPPORT_UTF8 | |
| 1312 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
| 1313 | #endif | |
| 1314 | } | |
| 1315 | if (*ptr == 0) goto FAIL_EXIT; | if (*ptr == 0) goto FAIL_EXIT; |
| 1316 | continue; | continue; |
| 1317 | } | } |
| # | Line 1191 for (; *ptr != 0; ptr++) | Line 1320 for (; *ptr != 0; ptr++) |
| 1320 | ||
| 1321 | if (*ptr == CHAR_LEFT_PARENTHESIS) | if (*ptr == CHAR_LEFT_PARENTHESIS) |
| 1322 | { | { |
| 1323 | int rc = find_parens_sub(&ptr, cd, name, lorn, xmode, count); | int rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, count); |
| 1324 | if (rc > 0) return rc; | if (rc > 0) return rc; |
| 1325 | if (*ptr == 0) goto FAIL_EXIT; | if (*ptr == 0) goto FAIL_EXIT; |
| 1326 | } | } |
| # | Line 1199 for (; *ptr != 0; ptr++) | Line 1328 for (; *ptr != 0; ptr++) |
| 1328 | else if (*ptr == CHAR_RIGHT_PARENTHESIS) | else if (*ptr == CHAR_RIGHT_PARENTHESIS) |
| 1329 | { | { |
| 1330 | if (dup_parens && *count < hwm_count) *count = hwm_count; | if (dup_parens && *count < hwm_count) *count = hwm_count; |
| 1331 | *ptrptr = ptr; | goto FAIL_EXIT; |
| return -1; | ||
| 1332 | } | } |
| 1333 | ||
| 1334 | else if (*ptr == CHAR_VERTICAL_LINE && dup_parens) | else if (*ptr == CHAR_VERTICAL_LINE && dup_parens) |
| # | Line 1238 Arguments: | Line 1366 Arguments: |
| 1366 | name name to seek, or NULL if seeking a numbered subpattern | name name to seek, or NULL if seeking a numbered subpattern |
| 1367 | lorn name length, or subpattern number if name is NULL | lorn name length, or subpattern number if name is NULL |
| 1368 | xmode TRUE if we are in /x mode | xmode TRUE if we are in /x mode |
| 1369 | utf8 TRUE if we are in UTF-8 mode | |
| 1370 | ||
| 1371 | Returns: the number of the found subpattern, or -1 if not found | Returns: the number of the found subpattern, or -1 if not found |
| 1372 | */ | */ |
| 1373 | ||
| 1374 | static int | static int |
| 1375 | find_parens(compile_data *cd, const uschar *name, int lorn, BOOL xmode) | find_parens(compile_data *cd, const uschar *name, int lorn, BOOL xmode, |
| 1376 | BOOL utf8) | |
| 1377 | { | { |
| 1378 | uschar *ptr = (uschar *)cd->start_pattern; | uschar *ptr = (uschar *)cd->start_pattern; |
| 1379 | int count = 0; | int count = 0; |
| # | Line 1256 matching closing parens. That is why we | Line 1386 matching closing parens. That is why we |
| 1386 | ||
| 1387 | for (;;) | for (;;) |
| 1388 | { | { |
| 1389 | rc = find_parens_sub(&ptr, cd, name, lorn, xmode, &count); | rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, &count); |
| 1390 | if (rc > 0 || *ptr++ == 0) break; | if (rc > 0 || *ptr++ == 0) break; |
| 1391 | } | } |
| 1392 | ||
| # | Line 1272 return rc; | Line 1402 return rc; |
| 1402 | ||
| 1403 | /* This is called by several functions that scan a compiled expression looking | /* This is called by several functions that scan a compiled expression looking |
| 1404 | for a fixed first character, or an anchoring op code etc. It skips over things | for a fixed first character, or an anchoring op code etc. It skips over things |
| 1405 | that do not influence this. For some calls, a change of option is important. | that do not influence this. For some calls, it makes sense to skip negative |
| 1406 | For some calls, it makes sense to skip negative forward and all backward | forward and all backward assertions, and also the \b assertion; for others it |
| 1407 | assertions, and also the \b assertion; for others it does not. | does not. |
| 1408 | ||
| 1409 | Arguments: | Arguments: |
| 1410 | code pointer to the start of the group | code pointer to the start of the group |
| options pointer to external options | ||
| optbit the option bit whose changing is significant, or | ||
| zero if none are | ||
| 1411 | skipassert TRUE if certain assertions are to be skipped | skipassert TRUE if certain assertions are to be skipped |
| 1412 | ||
| 1413 | Returns: pointer to the first significant opcode | Returns: pointer to the first significant opcode |
| 1414 | */ | */ |
| 1415 | ||
| 1416 | static const uschar* | static const uschar* |
| 1417 | first_significant_code(const uschar *code, int *options, int optbit, | first_significant_code(const uschar *code, BOOL skipassert) |
| BOOL skipassert) | ||
| 1418 | { | { |
| 1419 | for (;;) | for (;;) |
| 1420 | { | { |
| 1421 | switch ((int)*code) | switch ((int)*code) |
| 1422 | { | { |
| case OP_OPT: | ||
| if (optbit > 0 && ((int)code[1] & optbit) != (*options & optbit)) | ||
| *options = (int)code[1]; | ||
| code += 2; | ||
| break; | ||
| 1423 | case OP_ASSERT_NOT: | case OP_ASSERT_NOT: |
| 1424 | case OP_ASSERTBACK: | case OP_ASSERTBACK: |
| 1425 | case OP_ASSERTBACK_NOT: | case OP_ASSERTBACK_NOT: |
| # | Line 1315 for (;;) | Line 1435 for (;;) |
| 1435 | ||
| 1436 | case OP_CALLOUT: | case OP_CALLOUT: |
| 1437 | case OP_CREF: | case OP_CREF: |
| 1438 | case OP_NCREF: | |
| 1439 | case OP_RREF: | case OP_RREF: |
| 1440 | case OP_NRREF: | |
| 1441 | case OP_DEF: | case OP_DEF: |
| 1442 | code += _pcre_OP_lengths[*code]; | code += _pcre_OP_lengths[*code]; |
| 1443 | break; | break; |
| # | Line 1336 for (;;) | Line 1458 for (;;) |
| 1458 | ||
| 1459 | /* Scan a branch and compute the fixed length of subject that will match it, | /* Scan a branch and compute the fixed length of subject that will match it, |
| 1460 | if the length is fixed. This is needed for dealing with backward assertions. | if the length is fixed. This is needed for dealing with backward assertions. |
| 1461 | In UTF8 mode, the result is in characters rather than bytes. The branch is | In UTF8 mode, the result is in characters rather than bytes. The branch is |
| 1462 | temporarily terminated with OP_END when this function is called. | temporarily terminated with OP_END when this function is called. |
| 1463 | ||
| 1464 | This function is called when a backward assertion is encountered, so that if it | This function is called when a backward assertion is encountered, so that if it |
| 1465 | fails, the error message can point to the correct place in the pattern. | fails, the error message can point to the correct place in the pattern. |
| 1466 | However, we cannot do this when the assertion contains subroutine calls, | However, we cannot do this when the assertion contains subroutine calls, |
| 1467 | because they can be forward references. We solve this by remembering this case | because they can be forward references. We solve this by remembering this case |
| 1468 | and doing the check at the end; a flag specifies which mode we are running in. | and doing the check at the end; a flag specifies which mode we are running in. |
| 1469 | ||
| 1470 | Arguments: | Arguments: |
| 1471 | code points to the start of the pattern (the bracket) | code points to the start of the pattern (the bracket) |
| 1472 | options the compiling options | utf8 TRUE in UTF-8 mode |
| 1473 | atend TRUE if called when the pattern is complete | atend TRUE if called when the pattern is complete |
| 1474 | cd the "compile data" structure | cd the "compile data" structure |
| 1475 | ||
| 1476 | Returns: the fixed length, | Returns: the fixed length, |
| 1477 | or -1 if there is no fixed length, | or -1 if there is no fixed length, |
| 1478 | or -2 if \C was encountered | or -2 if \C was encountered |
| 1479 | or -3 if an OP_RECURSE item was encountered and atend is FALSE | or -3 if an OP_RECURSE item was encountered and atend is FALSE |
| 1480 | */ | */ |
| 1481 | ||
| 1482 | static int | static int |
| 1483 | find_fixedlength(uschar *code, int options, BOOL atend, compile_data *cd) | find_fixedlength(uschar *code, BOOL utf8, BOOL atend, compile_data *cd) |
| 1484 | { | { |
| 1485 | int length = -1; | int length = -1; |
| 1486 | ||
| # | Line 1375 for (;;) | Line 1497 for (;;) |
| 1497 | register int op = *cc; | register int op = *cc; |
| 1498 | switch (op) | switch (op) |
| 1499 | { | { |
| 1500 | /* We only need to continue for OP_CBRA (normal capturing bracket) and | |
| 1501 | OP_BRA (normal non-capturing bracket) because the other variants of these | |
| 1502 | opcodes are all concerned with unlimited repeated groups, which of course | |
| 1503 | are not of fixed length. They will cause a -1 response from the default | |
| 1504 | case of this switch. */ | |
| 1505 | ||
| 1506 | case OP_CBRA: | case OP_CBRA: |
| 1507 | case OP_BRA: | case OP_BRA: |
| 1508 | case OP_ONCE: | case OP_ONCE: |
| 1509 | case OP_COND: | case OP_COND: |
| 1510 | d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), options, atend, cd); | d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), utf8, atend, cd); |
| 1511 | if (d < 0) return d; | if (d < 0) return d; |
| 1512 | branchlength += d; | branchlength += d; |
| 1513 | do cc += GET(cc, 1); while (*cc == OP_ALT); | do cc += GET(cc, 1); while (*cc == OP_ALT); |
| # | Line 1388 for (;;) | Line 1516 for (;;) |
| 1516 | ||
| 1517 | /* Reached end of a branch; if it's a ket it is the end of a nested | /* Reached end of a branch; if it's a ket it is the end of a nested |
| 1518 | call. If it's ALT it is an alternation in a nested call. If it is | call. If it's ALT it is an alternation in a nested call. If it is |
| 1519 | END it's the end of the outer call. All can be handled by the same code. */ | END it's the end of the outer call. All can be handled by the same code. |
| 1520 | Note that we must not include the OP_KETRxxx opcodes here, because they | |
| 1521 | all imply an unlimited repeat. */ | |
| 1522 | ||
| 1523 | case OP_ALT: | case OP_ALT: |
| 1524 | case OP_KET: | case OP_KET: |
| case OP_KETRMAX: | ||
| case OP_KETRMIN: | ||
| 1525 | case OP_END: | case OP_END: |
| 1526 | if (length < 0) length = branchlength; | if (length < 0) length = branchlength; |
| 1527 | else if (length != branchlength) return -1; | else if (length != branchlength) return -1; |
| # | Line 1401 for (;;) | Line 1529 for (;;) |
| 1529 | cc += 1 + LINK_SIZE; | cc += 1 + LINK_SIZE; |
| 1530 | branchlength = 0; | branchlength = 0; |
| 1531 | break; | break; |
| 1532 | ||
| 1533 | /* A true recursion implies not fixed length, but a subroutine call may | /* A true recursion implies not fixed length, but a subroutine call may |
| 1534 | be OK. If the subroutine is a forward reference, we can't deal with | be OK. If the subroutine is a forward reference, we can't deal with |
| 1535 | it until the end of the pattern, so return -3. */ | it until the end of the pattern, so return -3. */ |
| 1536 | ||
| 1537 | case OP_RECURSE: | case OP_RECURSE: |
| 1538 | if (!atend) return -3; | if (!atend) return -3; |
| 1539 | cs = ce = (uschar *)cd->start_code + GET(cc, 1); /* Start subpattern */ | cs = ce = (uschar *)cd->start_code + GET(cc, 1); /* Start subpattern */ |
| 1540 | do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ | do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ |
| 1541 | if (cc > cs && cc < ce) return -1; /* Recursion */ | if (cc > cs && cc < ce) return -1; /* Recursion */ |
| 1542 | d = find_fixedlength(cs + 2, options, atend, cd); | d = find_fixedlength(cs + 2, utf8, atend, cd); |
| 1543 | if (d < 0) return d; | if (d < 0) return d; |
| 1544 | branchlength += d; | branchlength += d; |
| 1545 | cc += 1 + LINK_SIZE; | cc += 1 + LINK_SIZE; |
| 1546 | break; | break; |
| 1547 | ||
| 1548 | /* Skip over assertive subpatterns */ | /* Skip over assertive subpatterns */ |
| 1549 | ||
| # | Line 1430 for (;;) | Line 1558 for (;;) |
| 1558 | ||
| 1559 | case OP_REVERSE: | case OP_REVERSE: |
| 1560 | case OP_CREF: | case OP_CREF: |
| 1561 | case OP_NCREF: | |
| 1562 | case OP_RREF: | case OP_RREF: |
| 1563 | case OP_NRREF: | |
| 1564 | case OP_DEF: | case OP_DEF: |
| case OP_OPT: | ||
| 1565 | case OP_CALLOUT: | case OP_CALLOUT: |
| 1566 | case OP_SOD: | case OP_SOD: |
| 1567 | case OP_SOM: | case OP_SOM: |
| 1568 | case OP_SET_SOM: | |
| 1569 | case OP_EOD: | case OP_EOD: |
| 1570 | case OP_EODN: | case OP_EODN: |
| 1571 | case OP_CIRC: | case OP_CIRC: |
| 1572 | case OP_CIRCM: | |
| 1573 | case OP_DOLL: | case OP_DOLL: |
| 1574 | case OP_DOLLM: | |
| 1575 | case OP_NOT_WORD_BOUNDARY: | case OP_NOT_WORD_BOUNDARY: |
| 1576 | case OP_WORD_BOUNDARY: | case OP_WORD_BOUNDARY: |
| 1577 | cc += _pcre_OP_lengths[*cc]; | cc += _pcre_OP_lengths[*cc]; |
| # | Line 1448 for (;;) | Line 1580 for (;;) |
| 1580 | /* Handle literal characters */ | /* Handle literal characters */ |
| 1581 | ||
| 1582 | case OP_CHAR: | case OP_CHAR: |
| 1583 | case OP_CHARNC: | case OP_CHARI: |
| 1584 | case OP_NOT: | case OP_NOT: |
| 1585 | case OP_NOTI: | |
| 1586 | branchlength++; | branchlength++; |
| 1587 | cc += 2; | cc += 2; |
| 1588 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 1589 | if ((options & PCRE_UTF8) != 0 && cc[-1] >= 0xc0) | if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f]; |
| cc += _pcre_utf8_table4[cc[-1] & 0x3f]; | ||
| 1590 | #endif | #endif |
| 1591 | break; | break; |
| 1592 | ||
| # | Line 1465 for (;;) | Line 1597 for (;;) |
| 1597 | branchlength += GET2(cc,1); | branchlength += GET2(cc,1); |
| 1598 | cc += 4; | cc += 4; |
| 1599 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 1600 | if ((options & PCRE_UTF8) != 0 && cc[-1] >= 0xc0) | if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f]; |
| cc += _pcre_utf8_table4[cc[-1] & 0x3f]; | ||
| 1601 | #endif | #endif |
| 1602 | break; | break; |
| 1603 | ||
| # | Line 1550 for (;;) | Line 1681 for (;;) |
| 1681 | ||
| 1682 | /* This little function scans through a compiled pattern until it finds a | /* This little function scans through a compiled pattern until it finds a |
| 1683 | capturing bracket with the given number, or, if the number is negative, an | capturing bracket with the given number, or, if the number is negative, an |
| 1684 | instance of OP_REVERSE for a lookbehind. The function is global in the C sense | instance of OP_REVERSE for a lookbehind. The function is global in the C sense |
| 1685 | so that it can be called from pcre_study() when finding the minimum matching | so that it can be called from pcre_study() when finding the minimum matching |
| 1686 | length. | length. |
| 1687 | ||
| 1688 | Arguments: | Arguments: |
| # | Line 1568 _pcre_find_bracket(const uschar *code, B | Line 1699 _pcre_find_bracket(const uschar *code, B |
| 1699 | for (;;) | for (;;) |
| 1700 | { | { |
| 1701 | register int c = *code; | register int c = *code; |
| 1702 | ||
| 1703 | if (c == OP_END) return NULL; | if (c == OP_END) return NULL; |
| 1704 | ||
| 1705 | /* XCLASS is used for classes that cannot be represented just by a bit | /* XCLASS is used for classes that cannot be represented just by a bit |
| # | Line 1575 for (;;) | Line 1707 for (;;) |
| 1707 | the table is zero; the actual length is stored in the compiled code. */ | the table is zero; the actual length is stored in the compiled code. */ |
| 1708 | ||
| 1709 | if (c == OP_XCLASS) code += GET(code, 1); | if (c == OP_XCLASS) code += GET(code, 1); |
| 1710 | ||
| 1711 | /* Handle recursion */ | /* Handle recursion */ |
| 1712 | ||
| 1713 | else if (c == OP_REVERSE) | else if (c == OP_REVERSE) |
| 1714 | { | { |
| 1715 | if (number < 0) return (uschar *)code; | if (number < 0) return (uschar *)code; |
| 1716 | code += _pcre_OP_lengths[c]; | code += _pcre_OP_lengths[c]; |
| 1717 | } | } |
| 1718 | ||
| 1719 | /* Handle capturing bracket */ | /* Handle capturing bracket */ |
| 1720 | ||
| 1721 | else if (c == OP_CBRA) | else if (c == OP_CBRA || c == OP_SCBRA || |
| 1722 | c == OP_CBRAPOS || c == OP_SCBRAPOS) | |
| 1723 | { | { |
| 1724 | int n = GET2(code, 1+LINK_SIZE); | int n = GET2(code, 1+LINK_SIZE); |
| 1725 | if (n == number) return (uschar *)code; | if (n == number) return (uschar *)code; |
| # | Line 1595 for (;;) | Line 1728 for (;;) |
| 1728 | ||
| 1729 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
| 1730 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
| 1731 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
| 1732 | must add in its length. */ | |
| 1733 | ||
| 1734 | else | else |
| 1735 | { | { |
| # | Line 1619 for (;;) | Line 1753 for (;;) |
| 1753 | case OP_TYPEPOSUPTO: | case OP_TYPEPOSUPTO: |
| 1754 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; |
| 1755 | break; | break; |
| 1756 | ||
| 1757 | case OP_MARK: | |
| 1758 | case OP_PRUNE_ARG: | |
| 1759 | case OP_SKIP_ARG: | |
| 1760 | code += code[1]; | |
| 1761 | break; | |
| 1762 | ||
| 1763 | case OP_THEN_ARG: | |
| 1764 | code += code[1+LINK_SIZE]; | |
| 1765 | break; | |
| 1766 | } | } |
| 1767 | ||
| 1768 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
| # | Line 1633 for (;;) | Line 1777 for (;;) |
| 1777 | if (utf8) switch(c) | if (utf8) switch(c) |
| 1778 | { | { |
| 1779 | case OP_CHAR: | case OP_CHAR: |
| 1780 | case OP_CHARNC: | case OP_CHARI: |
| 1781 | case OP_EXACT: | case OP_EXACT: |
| 1782 | case OP_EXACTI: | |
| 1783 | case OP_UPTO: | case OP_UPTO: |
| 1784 | case OP_UPTOI: | |
| 1785 | case OP_MINUPTO: | case OP_MINUPTO: |
| 1786 | case OP_MINUPTOI: | |
| 1787 | case OP_POSUPTO: | case OP_POSUPTO: |
| 1788 | case OP_POSUPTOI: | |
| 1789 | case OP_STAR: | case OP_STAR: |
| 1790 | case OP_STARI: | |
| 1791 | case OP_MINSTAR: | case OP_MINSTAR: |
| 1792 | case OP_MINSTARI: | |
| 1793 | case OP_POSSTAR: | case OP_POSSTAR: |
| 1794 | case OP_POSSTARI: | |
| 1795 | case OP_PLUS: | case OP_PLUS: |
| 1796 | case OP_PLUSI: | |
| 1797 | case OP_MINPLUS: | case OP_MINPLUS: |
| 1798 | case OP_MINPLUSI: | |
| 1799 | case OP_POSPLUS: | case OP_POSPLUS: |
| 1800 | case OP_POSPLUSI: | |
| 1801 | case OP_QUERY: | case OP_QUERY: |
| 1802 | case OP_QUERYI: | |
| 1803 | case OP_MINQUERY: | case OP_MINQUERY: |
| 1804 | case OP_MINQUERYI: | |
| 1805 | case OP_POSQUERY: | case OP_POSQUERY: |
| 1806 | case OP_POSQUERYI: | |
| 1807 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; |
| 1808 | break; | break; |
| 1809 | } | } |
| # | Line 1690 for (;;) | Line 1847 for (;;) |
| 1847 | ||
| 1848 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
| 1849 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
| 1850 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
| 1851 | must add in its length. */ | |
| 1852 | ||
| 1853 | else | else |
| 1854 | { | { |
| # | Line 1714 for (;;) | Line 1872 for (;;) |
| 1872 | case OP_TYPEEXACT: | case OP_TYPEEXACT: |
| 1873 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; |
| 1874 | break; | break; |
| 1875 | ||
| 1876 | case OP_MARK: | |
| 1877 | case OP_PRUNE_ARG: | |
| 1878 | case OP_SKIP_ARG: | |
| 1879 | code += code[1]; | |
| 1880 | break; | |
| 1881 | ||
| 1882 | case OP_THEN_ARG: | |
| 1883 | code += code[1+LINK_SIZE]; | |
| 1884 | break; | |
| 1885 | } | } |
| 1886 | ||
| 1887 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
| # | Line 1728 for (;;) | Line 1896 for (;;) |
| 1896 | if (utf8) switch(c) | if (utf8) switch(c) |
| 1897 | { | { |
| 1898 | case OP_CHAR: | case OP_CHAR: |
| 1899 | case OP_CHARNC: | case OP_CHARI: |
| 1900 | case OP_EXACT: | case OP_EXACT: |
| 1901 | case OP_EXACTI: | |
| 1902 | case OP_UPTO: | case OP_UPTO: |
| 1903 | case OP_UPTOI: | |
| 1904 | case OP_MINUPTO: | case OP_MINUPTO: |
| 1905 | case OP_MINUPTOI: | |
| 1906 | case OP_POSUPTO: | case OP_POSUPTO: |
| 1907 | case OP_POSUPTOI: | |
| 1908 | case OP_STAR: | case OP_STAR: |
| 1909 | case OP_STARI: | |
| 1910 | case OP_MINSTAR: | case OP_MINSTAR: |
| 1911 | case OP_MINSTARI: | |
| 1912 | case OP_POSSTAR: | case OP_POSSTAR: |
| 1913 | case OP_POSSTARI: | |
| 1914 | case OP_PLUS: | case OP_PLUS: |
| 1915 | case OP_PLUSI: | |
| 1916 | case OP_MINPLUS: | case OP_MINPLUS: |
| 1917 | case OP_MINPLUSI: | |
| 1918 | case OP_POSPLUS: | case OP_POSPLUS: |
| 1919 | case OP_POSPLUSI: | |
| 1920 | case OP_QUERY: | case OP_QUERY: |
| 1921 | case OP_QUERYI: | |
| 1922 | case OP_MINQUERY: | case OP_MINQUERY: |
| 1923 | case OP_MINQUERYI: | |
| 1924 | case OP_POSQUERY: | case OP_POSQUERY: |
| 1925 | case OP_POSQUERYI: | |
| 1926 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; |
| 1927 | break; | break; |
| 1928 | } | } |
| # | Line 1770 Arguments: | Line 1951 Arguments: |
| 1951 | code points to start of search | code points to start of search |
| 1952 | endcode points to where to stop | endcode points to where to stop |
| 1953 | utf8 TRUE if in UTF8 mode | utf8 TRUE if in UTF8 mode |
| 1954 | cd contains pointers to tables etc. | |
| 1955 | ||
| 1956 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
| 1957 | */ | */ |
| 1958 | ||
| 1959 | static BOOL | static BOOL |
| 1960 | could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8) | could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8, |
| 1961 | compile_data *cd) | |
| 1962 | { | { |
| 1963 | register int c; | register int c; |
| 1964 | for (code = first_significant_code(code + _pcre_OP_lengths[*code], NULL, 0, TRUE); | for (code = first_significant_code(code + _pcre_OP_lengths[*code], TRUE); |
| 1965 | code < endcode; | code < endcode; |
| 1966 | code = first_significant_code(code + _pcre_OP_lengths[c], NULL, 0, TRUE)) | code = first_significant_code(code + _pcre_OP_lengths[c], TRUE)) |
| 1967 | { | { |
| 1968 | const uschar *ccode; | const uschar *ccode; |
| 1969 | ||
| # | Line 1796 for (code = first_significant_code(code | Line 1979 for (code = first_significant_code(code |
| 1979 | continue; | continue; |
| 1980 | } | } |
| 1981 | ||
| 1982 | /* For a recursion/subroutine call, if its end has been reached, which | |
| 1983 | implies a backward reference subroutine call, we can scan it. If it's a | |
| 1984 | forward reference subroutine call, we can't. To detect forward reference | |
| 1985 | we have to scan up the list that is kept in the workspace. This function is | |
| 1986 | called only when doing the real compile, not during the pre-compile that | |
| 1987 | measures the size of the compiled pattern. */ | |
| 1988 | ||
| 1989 | if (c == OP_RECURSE) | |
| 1990 | { | |
| 1991 | const uschar *scode; | |
| 1992 | BOOL empty_branch; | |
| 1993 | ||
| 1994 | /* Test for forward reference */ | |
| 1995 | ||
| 1996 | for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) | |
| 1997 | if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; | |
| 1998 | ||
| 1999 | /* Not a forward reference, test for completed backward reference */ | |
| 2000 | ||
| 2001 | empty_branch = FALSE; | |
| 2002 | scode = cd->start_code + GET(code, 1); | |
| 2003 | if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ | |
| 2004 | ||
| 2005 | /* Completed backwards reference */ | |
| 2006 | ||
| 2007 | do | |
| 2008 | { | |
| 2009 | if (could_be_empty_branch(scode, endcode, utf8, cd)) | |
| 2010 | { | |
| 2011 | empty_branch = TRUE; | |
| 2012 | break; | |
| 2013 | } | |
| 2014 | scode += GET(scode, 1); | |
| 2015 | } | |
| 2016 | while (*scode == OP_ALT); | |
| 2017 | ||
| 2018 | if (!empty_branch) return FALSE; /* All branches are non-empty */ | |
| 2019 | continue; | |
| 2020 | } | |
| 2021 | ||
| 2022 | /* Groups with zero repeats can of course be empty; skip them. */ | /* Groups with zero repeats can of course be empty; skip them. */ |
| 2023 | ||
| 2024 | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO) | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO || |
| 2025 | c == OP_BRAPOSZERO) | |
| 2026 | { | { |
| 2027 | code += _pcre_OP_lengths[c]; | code += _pcre_OP_lengths[c]; |
| 2028 | do code += GET(code, 1); while (*code == OP_ALT); | do code += GET(code, 1); while (*code == OP_ALT); |
| # | Line 1806 for (code = first_significant_code(code | Line 2030 for (code = first_significant_code(code |
| 2030 | continue; | continue; |
| 2031 | } | } |
| 2032 | ||
| 2033 | /* A nested group that is already marked as "could be empty" can just be | |
| 2034 | skipped. */ | |
| 2035 | ||
| 2036 | if (c == OP_SBRA || c == OP_SBRAPOS || | |
| 2037 | c == OP_SCBRA || c == OP_SCBRAPOS) | |
| 2038 | { | |
| 2039 | do code += GET(code, 1); while (*code == OP_ALT); | |
| 2040 | c = *code; | |
| 2041 | continue; | |
| 2042 | } | |
| 2043 | ||
| 2044 | /* For other groups, scan the branches. */ | /* For other groups, scan the branches. */ |
| 2045 | ||
| 2046 | if (c == OP_BRA || c == OP_CBRA || c == OP_ONCE || c == OP_COND) | if (c == OP_BRA || c == OP_BRAPOS || |
| 2047 | c == OP_CBRA || c == OP_CBRAPOS || | |
| 2048 | c == OP_ONCE || c == OP_COND) | |
| 2049 | { | { |
| 2050 | BOOL empty_branch; | BOOL empty_branch; |
| 2051 | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ |
| # | Line 1824 for (code = first_significant_code(code | Line 2061 for (code = first_significant_code(code |
| 2061 | empty_branch = FALSE; | empty_branch = FALSE; |
| 2062 | do | do |
| 2063 | { | { |
| 2064 | if (!empty_branch && could_be_empty_branch(code, endcode, utf8)) | if (!empty_branch && could_be_empty_branch(code, endcode, utf8, cd)) |
| 2065 | empty_branch = TRUE; | empty_branch = TRUE; |
| 2066 | code += GET(code, 1); | code += GET(code, 1); |
| 2067 | } | } |
| # | Line 1895 for (code = first_significant_code(code | Line 2132 for (code = first_significant_code(code |
| 2132 | case OP_ALLANY: | case OP_ALLANY: |
| 2133 | case OP_ANYBYTE: | case OP_ANYBYTE: |
| 2134 | case OP_CHAR: | case OP_CHAR: |
| 2135 | case OP_CHARNC: | case OP_CHARI: |
| 2136 | case OP_NOT: | case OP_NOT: |
| 2137 | case OP_NOTI: | |
| 2138 | case OP_PLUS: | case OP_PLUS: |
| 2139 | case OP_MINPLUS: | case OP_MINPLUS: |
| 2140 | case OP_POSPLUS: | case OP_POSPLUS: |
| # | Line 1936 for (code = first_significant_code(code | Line 2174 for (code = first_significant_code(code |
| 2174 | case OP_KET: | case OP_KET: |
| 2175 | case OP_KETRMAX: | case OP_KETRMAX: |
| 2176 | case OP_KETRMIN: | case OP_KETRMIN: |
| 2177 | case OP_KETRPOS: | |
| 2178 | case OP_ALT: | case OP_ALT: |
| 2179 | return TRUE; | return TRUE; |
| 2180 | ||
| # | Line 1944 for (code = first_significant_code(code | Line 2183 for (code = first_significant_code(code |
| 2183 | ||
| 2184 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2185 | case OP_STAR: | case OP_STAR: |
| 2186 | case OP_STARI: | |
| 2187 | case OP_MINSTAR: | case OP_MINSTAR: |
| 2188 | case OP_MINSTARI: | |
| 2189 | case OP_POSSTAR: | case OP_POSSTAR: |
| 2190 | case OP_POSSTARI: | |
| 2191 | case OP_QUERY: | case OP_QUERY: |
| 2192 | case OP_QUERYI: | |
| 2193 | case OP_MINQUERY: | case OP_MINQUERY: |
| 2194 | case OP_MINQUERYI: | |
| 2195 | case OP_POSQUERY: | case OP_POSQUERY: |
| 2196 | case OP_POSQUERYI: | |
| 2197 | if (utf8 && code[1] >= 0xc0) code += _pcre_utf8_table4[code[1] & 0x3f]; | if (utf8 && code[1] >= 0xc0) code += _pcre_utf8_table4[code[1] & 0x3f]; |
| 2198 | break; | break; |
| 2199 | ||
| 2200 | case OP_UPTO: | case OP_UPTO: |
| 2201 | case OP_UPTOI: | |
| 2202 | case OP_MINUPTO: | case OP_MINUPTO: |
| 2203 | case OP_MINUPTOI: | |
| 2204 | case OP_POSUPTO: | case OP_POSUPTO: |
| 2205 | case OP_POSUPTOI: | |
| 2206 | if (utf8 && code[3] >= 0xc0) code += _pcre_utf8_table4[code[3] & 0x3f]; | if (utf8 && code[3] >= 0xc0) code += _pcre_utf8_table4[code[3] & 0x3f]; |
| 2207 | break; | break; |
| 2208 | #endif | #endif |
| 2209 | ||
| 2210 | /* MARK, and PRUNE/SKIP/THEN with an argument must skip over the argument | |
| 2211 | string. */ | |
| 2212 | ||
| 2213 | case OP_MARK: | |
| 2214 | case OP_PRUNE_ARG: | |
| 2215 | case OP_SKIP_ARG: | |
| 2216 | code += code[1]; | |
| 2217 | break; | |
| 2218 | ||
| 2219 | case OP_THEN_ARG: | |
| 2220 | code += code[1+LINK_SIZE]; | |
| 2221 | break; | |
| 2222 | ||
| 2223 | /* None of the remaining opcodes are required to match a character. */ | |
| 2224 | ||
| 2225 | default: | |
| 2226 | break; | |
| 2227 | } | } |
| 2228 | } | } |
| 2229 | ||
| # | Line 1974 return TRUE; | Line 2240 return TRUE; |
| 2240 | the current branch of the current pattern to see if it could match the empty | the current branch of the current pattern to see if it could match the empty |
| 2241 | string. If it could, we must look outwards for branches at other levels, | string. If it could, we must look outwards for branches at other levels, |
| 2242 | stopping when we pass beyond the bracket which is the subject of the recursion. | stopping when we pass beyond the bracket which is the subject of the recursion. |
| 2243 | This function is called only during the real compile, not during the | |
| 2244 | pre-compile. | |
| 2245 | ||
| 2246 | Arguments: | Arguments: |
| 2247 | code points to start of the recursion | code points to start of the recursion |
| 2248 | endcode points to where to stop (current RECURSE item) | endcode points to where to stop (current RECURSE item) |
| 2249 | bcptr points to the chain of current (unclosed) branch starts | bcptr points to the chain of current (unclosed) branch starts |
| 2250 | utf8 TRUE if in UTF-8 mode | utf8 TRUE if in UTF-8 mode |
| 2251 | cd pointers to tables etc | |
| 2252 | ||
| 2253 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
| 2254 | */ | */ |
| 2255 | ||
| 2256 | static BOOL | static BOOL |
| 2257 | could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr, | could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr, |
| 2258 | BOOL utf8) | BOOL utf8, compile_data *cd) |
| 2259 | { | { |
| 2260 | while (bcptr != NULL && bcptr->current >= code) | while (bcptr != NULL && bcptr->current_branch >= code) |
| 2261 | { | { |
| 2262 | if (!could_be_empty_branch(bcptr->current, endcode, utf8)) return FALSE; | if (!could_be_empty_branch(bcptr->current_branch, endcode, utf8, cd)) |
| 2263 | return FALSE; | |
| 2264 | bcptr = bcptr->outer; | bcptr = bcptr->outer; |
| 2265 | } | } |
| 2266 | return TRUE; | return TRUE; |
| # | Line 2022 where Perl recognizes it as the POSIX cl | Line 2292 where Perl recognizes it as the POSIX cl |
| 2292 | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
| 2293 | I think. | I think. |
| 2294 | ||
| 2295 | A user pointed out that PCRE was rejecting [:a[:digit:]] whereas Perl was not. | |
| 2296 | It seems that the appearance of a nested POSIX class supersedes an apparent | |
| 2297 | external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or | |
| 2298 | a digit. | |
| 2299 | ||
| 2300 | In Perl, unescaped square brackets may also appear as part of class names. For | |
| 2301 | example, [:a[:abc]b:] gives unknown POSIX class "[:abc]b:]". However, for | |
| 2302 | [:a[:abc]b][b:] it gives unknown POSIX class "[:abc]b][b:]", which does not | |
| 2303 | seem right at all. PCRE does not allow closing square brackets in POSIX class | |
| 2304 | names. | |
| 2305 | ||
| 2306 | Arguments: | Arguments: |
| 2307 | ptr pointer to the initial [ | ptr pointer to the initial [ |
| 2308 | endptr where to return the end pointer | endptr where to return the end pointer |
| # | Line 2036 int terminator; /* Don't combin | Line 2317 int terminator; /* Don't combin |
| 2317 | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 2318 | for (++ptr; *ptr != 0; ptr++) | for (++ptr; *ptr != 0; ptr++) |
| 2319 | { | { |
| 2320 | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) ptr++; else | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2321 | ptr++; | |
| 2322 | else if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE; | |
| 2323 | else | |
| 2324 | { | { |
| if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE; | ||
| 2325 | if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) | if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2326 | { | { |
| 2327 | *endptr = ptr; | *endptr = ptr; |
| 2328 | return TRUE; | return TRUE; |
| 2329 | } | } |
| 2330 | if (*ptr == CHAR_LEFT_SQUARE_BRACKET && | |
| 2331 | (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || | |
| 2332 | ptr[1] == CHAR_EQUALS_SIGN) && | |
| 2333 | check_posix_syntax(ptr, endptr)) | |
| 2334 | return FALSE; | |
| 2335 | } | } |
| 2336 | } | } |
| 2337 | return FALSE; | return FALSE; |
| # | Line 2172 auto_callout(uschar *code, const uschar | Line 2460 auto_callout(uschar *code, const uschar |
| 2460 | { | { |
| 2461 | *code++ = OP_CALLOUT; | *code++ = OP_CALLOUT; |
| 2462 | *code++ = 255; | *code++ = 255; |
| 2463 | PUT(code, 0, ptr - cd->start_pattern); /* Pattern offset */ | PUT(code, 0, (int)(ptr - cd->start_pattern)); /* Pattern offset */ |
| 2464 | PUT(code, LINK_SIZE, 0); /* Default length */ | PUT(code, LINK_SIZE, 0); /* Default length */ |
| 2465 | return code + 2*LINK_SIZE; | return code + 2*LINK_SIZE; |
| 2466 | } | } |
| 2467 | ||
| # | Line 2198 Returns: nothing | Line 2486 Returns: nothing |
| 2486 | static void | static void |
| 2487 | complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd) | complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd) |
| 2488 | { | { |
| 2489 | int length = ptr - cd->start_pattern - GET(previous_callout, 2); | int length = (int)(ptr - cd->start_pattern - GET(previous_callout, 2)); |
| 2490 | PUT(previous_callout, 2 + LINK_SIZE, length); | PUT(previous_callout, 2 + LINK_SIZE, length); |
| 2491 | } | } |
| 2492 | ||
| # | Line 2248 for (++c; c <= d; c++) | Line 2536 for (++c; c <= d; c++) |
| 2536 | ||
| 2537 | return TRUE; | return TRUE; |
| 2538 | } | } |
| 2539 | ||
| 2540 | ||
| 2541 | ||
| 2542 | /************************************************* | |
| 2543 | * Check a character and a property * | |
| 2544 | *************************************************/ | |
| 2545 | ||
| 2546 | /* This function is called by check_auto_possessive() when a property item | |
| 2547 | is adjacent to a fixed character. | |
| 2548 | ||
| 2549 | Arguments: | |
| 2550 | c the character | |
| 2551 | ptype the property type | |
| 2552 | pdata the data for the type | |
| 2553 | negated TRUE if it's a negated property (\P or \p{^) | |
| 2554 | ||
| 2555 | Returns: TRUE if auto-possessifying is OK | |
| 2556 | */ | |
| 2557 | ||
| 2558 | static BOOL | |
| 2559 | check_char_prop(int c, int ptype, int pdata, BOOL negated) | |
| 2560 | { | |
| 2561 | const ucd_record *prop = GET_UCD(c); | |
| 2562 | switch(ptype) | |
| 2563 | { | |
| 2564 | case PT_LAMP: | |
| 2565 | return (prop->chartype == ucp_Lu || | |
| 2566 | prop->chartype == ucp_Ll || | |
| 2567 | prop->chartype == ucp_Lt) == negated; | |
| 2568 | ||
| 2569 | case PT_GC: | |
| 2570 | return (pdata == _pcre_ucp_gentype[prop->chartype]) == negated; | |
| 2571 | ||
| 2572 | case PT_PC: | |
| 2573 | return (pdata == prop->chartype) == negated; | |
| 2574 | ||
| 2575 | case PT_SC: | |
| 2576 | return (pdata == prop->script) == negated; | |
| 2577 | ||
| 2578 | /* These are specials */ | |
| 2579 | ||
| 2580 | case PT_ALNUM: | |
| 2581 | return (_pcre_ucp_gentype[prop->chartype] == ucp_L || | |
| 2582 | _pcre_ucp_gentype[prop->chartype] == ucp_N) == negated; | |
| 2583 | ||
| 2584 | case PT_SPACE: /* Perl space */ | |
| 2585 | return (_pcre_ucp_gentype[prop->chartype] == ucp_Z || | |
| 2586 | c == CHAR_HT || c == CHAR_NL || c == CHAR_FF || c == CHAR_CR) | |
| 2587 | == negated; | |
| 2588 | ||
| 2589 | case PT_PXSPACE: /* POSIX space */ | |
| 2590 | return (_pcre_ucp_gentype[prop->chartype] == ucp_Z || | |
| 2591 | c == CHAR_HT || c == CHAR_NL || c == CHAR_VT || | |
| 2592 | c == CHAR_FF || c == CHAR_CR) | |
| 2593 | == negated; | |
| 2594 | ||
| 2595 | case PT_WORD: | |
| 2596 | return (_pcre_ucp_gentype[prop->chartype] == ucp_L || | |
| 2597 | _pcre_ucp_gentype[prop->chartype] == ucp_N || | |
| 2598 | c == CHAR_UNDERSCORE) == negated; | |
| 2599 | } | |
| 2600 | return FALSE; | |
| 2601 | } | |
| 2602 | #endif /* SUPPORT_UCP */ | #endif /* SUPPORT_UCP */ |
| 2603 | ||
| 2604 | ||
| # | Line 2261 whether the next thing could possibly ma | Line 2612 whether the next thing could possibly ma |
| 2612 | sense to automatically possessify the repeated item. | sense to automatically possessify the repeated item. |
| 2613 | ||
| 2614 | Arguments: | Arguments: |
| 2615 | op_code the repeated op code | previous pointer to the repeated opcode |
| this data for this item, depends on the opcode | ||
| 2616 | utf8 TRUE in UTF-8 mode | utf8 TRUE in UTF-8 mode |
| utf8_char used for utf8 character bytes, NULL if not relevant | ||
| 2617 | ptr next character in pattern | ptr next character in pattern |
| 2618 | options options bits | options options bits |
| 2619 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
| # | Line 2273 Returns: TRUE if possessifying is | Line 2622 Returns: TRUE if possessifying is |
| 2622 | */ | */ |
| 2623 | ||
| 2624 | static BOOL | static BOOL |
| 2625 | check_auto_possessive(int op_code, int item, BOOL utf8, uschar *utf8_char, | check_auto_possessive(const uschar *previous, BOOL utf8, const uschar *ptr, |
| 2626 | const uschar *ptr, int options, compile_data *cd) | int options, compile_data *cd) |
| 2627 | { | { |
| 2628 | int next; | int c, next; |
| 2629 | int op_code = *previous++; | |
| 2630 | ||
| 2631 | /* Skip whitespace and comments in extended mode */ | /* Skip whitespace and comments in extended mode */ |
| 2632 | ||
| # | Line 2287 if ((options & PCRE_EXTENDED) != 0) | Line 2637 if ((options & PCRE_EXTENDED) != 0) |
| 2637 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
| 2638 | if (*ptr == CHAR_NUMBER_SIGN) | if (*ptr == CHAR_NUMBER_SIGN) |
| 2639 | { | { |
| 2640 | while (*(++ptr) != 0) | ptr++; |
| 2641 | while (*ptr != 0) | |
| 2642 | { | |
| 2643 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
| 2644 | ptr++; | |
| 2645 | #ifdef SUPPORT_UTF8 | |
| 2646 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
| 2647 | #endif | |
| 2648 | } | |
| 2649 | } | } |
| 2650 | else break; | else break; |
| 2651 | } | } |
| # | Line 2324 if ((options & PCRE_EXTENDED) != 0) | Line 2681 if ((options & PCRE_EXTENDED) != 0) |
| 2681 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
| 2682 | if (*ptr == CHAR_NUMBER_SIGN) | if (*ptr == CHAR_NUMBER_SIGN) |
| 2683 | { | { |
| 2684 | while (*(++ptr) != 0) | ptr++; |
| 2685 | while (*ptr != 0) | |
| 2686 | { | |
| 2687 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
| 2688 | ptr++; | |
| 2689 | #ifdef SUPPORT_UTF8 | |
| 2690 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
| 2691 | #endif | |
| 2692 | } | |
| 2693 | } | } |
| 2694 | else break; | else break; |
| 2695 | } | } |
| # | Line 2337 if (*ptr == CHAR_ASTERISK || *ptr == CHA | Line 2701 if (*ptr == CHAR_ASTERISK || *ptr == CHA |
| 2701 | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) |
| 2702 | return FALSE; | return FALSE; |
| 2703 | ||
| 2704 | /* Now compare the next item with the previous opcode. If the previous is a | /* Now compare the next item with the previous opcode. First, handle cases when |
| 2705 | positive single character match, "item" either contains the character or, if | the next item is a character. */ |
| "item" is greater than 127 in utf8 mode, the character's bytes are in | ||
| utf8_char. */ | ||
| /* Handle cases when the next item is a character. */ | ||
| 2706 | ||
| 2707 | if (next >= 0) switch(op_code) | if (next >= 0) switch(op_code) |
| 2708 | { | { |
| 2709 | case OP_CHAR: | case OP_CHAR: |
| 2710 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2711 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 2712 | #else | #else |
| 2713 | (void)(utf8_char); /* Keep compiler happy by referencing function argument */ | c = *previous; |
| 2714 | #endif | #endif |
| 2715 | return item != next; | return c != next; |
| 2716 | ||
| 2717 | /* For CHARNC (caseless character) we must check the other case. If we have | /* For CHARI (caseless character) we must check the other case. If we have |
| 2718 | Unicode property support, we can use it to test the other case of | Unicode property support, we can use it to test the other case of |
| 2719 | high-valued characters. */ | high-valued characters. */ |
| 2720 | ||
| 2721 | case OP_CHARNC: | case OP_CHARI: |
| 2722 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2723 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 2724 | #else | |
| 2725 | c = *previous; | |
| 2726 | #endif | #endif |
| 2727 | if (item == next) return FALSE; | if (c == next) return FALSE; |
| 2728 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2729 | if (utf8) | if (utf8) |
| 2730 | { | { |
| # | Line 2374 if (next >= 0) switch(op_code) | Line 2735 if (next >= 0) switch(op_code) |
| 2735 | #else | #else |
| 2736 | othercase = NOTACHAR; | othercase = NOTACHAR; |
| 2737 | #endif | #endif |
| 2738 | return (unsigned int)item != othercase; | return (unsigned int)c != othercase; |
| 2739 | } | } |
| 2740 | else | else |
| 2741 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF8 */ |
| 2742 | return (item != cd->fcc[next]); /* Non-UTF-8 mode */ | return (c != cd->fcc[next]); /* Non-UTF-8 mode */ |
| 2743 | ||
| 2744 | /* For OP_NOT, "item" must be a single-byte character. */ | /* For OP_NOT and OP_NOTI, the data is always a single-byte character. These |
| 2745 | opcodes are not used for multi-byte characters, because they are coded using | |
| 2746 | an XCLASS instead. */ | |
| 2747 | ||
| 2748 | case OP_NOT: | case OP_NOT: |
| 2749 | if (item == next) return TRUE; | return (c = *previous) == next; |
| 2750 | if ((options & PCRE_CASELESS) == 0) return FALSE; | |
| 2751 | case OP_NOTI: | |
| 2752 | if ((c = *previous) == next) return TRUE; | |
| 2753 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2754 | if (utf8) | if (utf8) |
| 2755 | { | { |
| # | Line 2395 if (next >= 0) switch(op_code) | Line 2760 if (next >= 0) switch(op_code) |
| 2760 | #else | #else |
| 2761 | othercase = NOTACHAR; | othercase = NOTACHAR; |
| 2762 | #endif | #endif |
| 2763 | return (unsigned int)item == othercase; | return (unsigned int)c == othercase; |
| 2764 | } | } |
| 2765 | else | else |
| 2766 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF8 */ |
| 2767 | return (item == cd->fcc[next]); /* Non-UTF-8 mode */ | return (c == cd->fcc[next]); /* Non-UTF-8 mode */ |
| 2768 | ||
| 2769 | /* Note that OP_DIGIT etc. are generated only when PCRE_UCP is *not* set. | |
| 2770 | When it is set, \d etc. are converted into OP_(NOT_)PROP codes. */ | |
| 2771 | ||
| 2772 | case OP_DIGIT: | case OP_DIGIT: |
| 2773 | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; |
| # | Line 2442 if (next >= 0) switch(op_code) | Line 2810 if (next >= 0) switch(op_code) |
| 2810 | case 0x202f: | case 0x202f: |
| 2811 | case 0x205f: | case 0x205f: |
| 2812 | case 0x3000: | case 0x3000: |
| 2813 | return op_code != OP_HSPACE; | return op_code == OP_NOT_HSPACE; |
| 2814 | default: | default: |
| 2815 | return op_code == OP_HSPACE; | return op_code != OP_NOT_HSPACE; |
| 2816 | } | } |
| 2817 | ||
| 2818 | case OP_ANYNL: | |
| 2819 | case OP_VSPACE: | case OP_VSPACE: |
| 2820 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
| 2821 | switch(next) | switch(next) |
| # | Line 2458 if (next >= 0) switch(op_code) | Line 2827 if (next >= 0) switch(op_code) |
| 2827 | case 0x85: | case 0x85: |
| 2828 | case 0x2028: | case 0x2028: |
| 2829 | case 0x2029: | case 0x2029: |
| 2830 | return op_code != OP_VSPACE; | return op_code == OP_NOT_VSPACE; |
| 2831 | default: | default: |
| 2832 | return op_code == OP_VSPACE; | return op_code != OP_NOT_VSPACE; |
| 2833 | } | } |
| 2834 | ||
| 2835 | #ifdef SUPPORT_UCP | |
| 2836 | case OP_PROP: | |
| 2837 | return check_char_prop(next, previous[0], previous[1], FALSE); | |
| 2838 | ||
| 2839 | case OP_NOTPROP: | |
| 2840 | return check_char_prop(next, previous[0], previous[1], TRUE); | |
| 2841 | #endif | |
| 2842 | ||
| 2843 | default: | default: |
| 2844 | return FALSE; | return FALSE; |
| 2845 | } | } |
| 2846 | ||
| 2847 | ||
| 2848 | /* Handle the case when the next item is \d, \s, etc. */ | /* Handle the case when the next item is \d, \s, etc. Note that when PCRE_UCP |
| 2849 | is set, \d turns into ESC_du rather than ESC_d, etc., so ESC_d etc. are | |
| 2850 | generated only when PCRE_UCP is *not* set, that is, when only ASCII | |
| 2851 | characteristics are recognized. Similarly, the opcodes OP_DIGIT etc. are | |
| 2852 | replaced by OP_PROP codes when PCRE_UCP is set. */ | |
| 2853 | ||
| 2854 | switch(op_code) | switch(op_code) |
| 2855 | { | { |
| 2856 | case OP_CHAR: | case OP_CHAR: |
| 2857 | case OP_CHARNC: | case OP_CHARI: |
| 2858 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 2859 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 2860 | #else | |
| 2861 | c = *previous; | |
| 2862 | #endif | #endif |
| 2863 | switch(-next) | switch(-next) |
| 2864 | { | { |
| 2865 | case ESC_d: | case ESC_d: |
| 2866 | return item > 127 || (cd->ctypes[item] & ctype_digit) == 0; | return c > 127 || (cd->ctypes[c] & ctype_digit) == 0; |
| 2867 | ||
| 2868 | case ESC_D: | case ESC_D: |
| 2869 | return item <= 127 && (cd->ctypes[item] & ctype_digit) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_digit) != 0; |
| 2870 | ||
| 2871 | case ESC_s: | case ESC_s: |
| 2872 | return item > 127 || (cd->ctypes[item] & ctype_space) == 0; | return c > 127 || (cd->ctypes[c] & ctype_space) == 0; |
| 2873 | ||
| 2874 | case ESC_S: | case ESC_S: |
| 2875 | return item <= 127 && (cd->ctypes[item] & ctype_space) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_space) != 0; |
| 2876 | ||
| 2877 | case ESC_w: | case ESC_w: |
| 2878 | return item > 127 || (cd->ctypes[item] & ctype_word) == 0; | return c > 127 || (cd->ctypes[c] & ctype_word) == 0; |
| 2879 | ||
| 2880 | case ESC_W: | case ESC_W: |
| 2881 | return item <= 127 && (cd->ctypes[item] & ctype_word) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_word) != 0; |
| 2882 | ||
| 2883 | case ESC_h: | case ESC_h: |
| 2884 | case ESC_H: | case ESC_H: |
| 2885 | switch(item) | switch(c) |
| 2886 | { | { |
| 2887 | case 0x09: | case 0x09: |
| 2888 | case 0x20: | case 0x20: |
| # | Line 2527 switch(op_code) | Line 2910 switch(op_code) |
| 2910 | ||
| 2911 | case ESC_v: | case ESC_v: |
| 2912 | case ESC_V: | case ESC_V: |
| 2913 | switch(item) | switch(c) |
| 2914 | { | { |
| 2915 | case 0x0a: | case 0x0a: |
| 2916 | case 0x0b: | case 0x0b: |
| # | Line 2541 switch(op_code) | Line 2924 switch(op_code) |
| 2924 | return -next == ESC_v; | return -next == ESC_v; |
| 2925 | } | } |
| 2926 | ||
| 2927 | /* When PCRE_UCP is set, these values get generated for \d etc. Find | |
| 2928 | their substitutions and process them. The result will always be either | |
| 2929 | -ESC_p or -ESC_P. Then fall through to process those values. */ | |
| 2930 | ||
| 2931 | #ifdef SUPPORT_UCP | |
| 2932 | case ESC_du: | |
| 2933 | case ESC_DU: | |
| 2934 | case ESC_wu: | |
| 2935 | case ESC_WU: | |
| 2936 | case ESC_su: | |
| 2937 | case ESC_SU: | |
| 2938 | { | |
| 2939 | int temperrorcode = 0; | |
| 2940 | ptr = substitutes[-next - ESC_DU]; | |
| 2941 | next = check_escape(&ptr, &temperrorcode, 0, options, FALSE); | |
| 2942 | if (temperrorcode != 0) return FALSE; | |
| 2943 | ptr++; /* For compatibility */ | |
| 2944 | } | |
| 2945 | /* Fall through */ | |
| 2946 | ||
| 2947 | case ESC_p: | |
| 2948 | case ESC_P: | |
| 2949 | { | |
| 2950 | int ptype, pdata, errorcodeptr; | |
| 2951 | BOOL negated; | |
| 2952 | ||
| 2953 | ptr--; /* Make ptr point at the p or P */ | |
| 2954 | ptype = get_ucp(&ptr, &negated, &pdata, &errorcodeptr); | |
| 2955 | if (ptype < 0) return FALSE; | |
| 2956 | ptr++; /* Point past the final curly ket */ | |
| 2957 | ||
| 2958 | /* If the property item is optional, we have to give up. (When generated | |
| 2959 | from \d etc by PCRE_UCP, this test will have been applied much earlier, | |
| 2960 | to the original \d etc. At this point, ptr will point to a zero byte. */ | |
| 2961 | ||
| 2962 | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || | |
| 2963 | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) | |
| 2964 | return FALSE; | |
| 2965 | ||
| 2966 | /* Do the property check. */ | |
| 2967 | ||
| 2968 | return check_char_prop(c, ptype, pdata, (next == -ESC_P) != negated); | |
| 2969 | } | |
| 2970 | #endif | |
| 2971 | ||
| 2972 | default: | default: |
| 2973 | return FALSE; | return FALSE; |
| 2974 | } | } |
| 2975 | ||
| 2976 | /* In principle, support for Unicode properties should be integrated here as | |
| 2977 | well. It means re-organizing the above code so as to get hold of the property | |
| 2978 | values before switching on the op-code. However, I wonder how many patterns | |
| 2979 | combine ASCII \d etc with Unicode properties? (Note that if PCRE_UCP is set, | |
| 2980 | these op-codes are never generated.) */ | |
| 2981 | ||
| 2982 | case OP_DIGIT: | case OP_DIGIT: |
| 2983 | return next == -ESC_D || next == -ESC_s || next == -ESC_W || | return next == -ESC_D || next == -ESC_s || next == -ESC_W || |
| 2984 | next == -ESC_h || next == -ESC_v; | next == -ESC_h || next == -ESC_v || next == -ESC_R; |
| 2985 | ||
| 2986 | case OP_NOT_DIGIT: | case OP_NOT_DIGIT: |
| 2987 | return next == -ESC_d; | return next == -ESC_d; |
| 2988 | ||
| 2989 | case OP_WHITESPACE: | case OP_WHITESPACE: |
| 2990 | return next == -ESC_S || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_d || next == -ESC_w || next == -ESC_R; |
| 2991 | ||
| 2992 | case OP_NOT_WHITESPACE: | case OP_NOT_WHITESPACE: |
| 2993 | return next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_s || next == -ESC_h || next == -ESC_v; |
| 2994 | ||
| 2995 | case OP_HSPACE: | case OP_HSPACE: |
| 2996 | return next == -ESC_S || next == -ESC_H || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_H || next == -ESC_d || |
| 2997 | next == -ESC_w || next == -ESC_v || next == -ESC_R; | |
| 2998 | ||
| 2999 | case OP_NOT_HSPACE: | case OP_NOT_HSPACE: |
| 3000 | return next == -ESC_h; | return next == -ESC_h; |
| 3001 | ||
| 3002 | /* Can't have \S in here because VT matches \S (Perl anomaly) */ | /* Can't have \S in here because VT matches \S (Perl anomaly) */ |
| 3003 | case OP_ANYNL: | |
| 3004 | case OP_VSPACE: | case OP_VSPACE: |
| 3005 | return next == -ESC_V || next == -ESC_d || next == -ESC_w; | return next == -ESC_V || next == -ESC_d || next == -ESC_w; |
| 3006 | ||
| 3007 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
| 3008 | return next == -ESC_v; | return next == -ESC_v || next == -ESC_R; |
| 3009 | ||
| 3010 | case OP_WORDCHAR: | case OP_WORDCHAR: |
| 3011 | return next == -ESC_W || next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_W || next == -ESC_s || next == -ESC_h || |
| 3012 | next == -ESC_v || next == -ESC_R; | |
| 3013 | ||
| 3014 | case OP_NOT_WORDCHAR: | case OP_NOT_WORDCHAR: |
| 3015 | return next == -ESC_w || next == -ESC_d; | return next == -ESC_w || next == -ESC_d; |
| # | Line 2604 Arguments: | Line 3041 Arguments: |
| 3041 | firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) | firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) |
| 3042 | reqbyteptr set to the last literal character required, else < 0 | reqbyteptr set to the last literal character required, else < 0 |
| 3043 | bcptr points to current branch chain | bcptr points to current branch chain |
| 3044 | cond_depth conditional nesting depth | |
| 3045 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
| 3046 | lengthptr NULL during the real compile phase | lengthptr NULL during the real compile phase |
| 3047 | points to length accumulator during pre-compile phase | points to length accumulator during pre-compile phase |
| # | Line 2615 Returns: TRUE on success | Line 3053 Returns: TRUE on success |
| 3053 | static BOOL | static BOOL |
| 3054 | compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr, | compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr, |
| 3055 | int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, | int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, |
| 3056 | compile_data *cd, int *lengthptr) | int cond_depth, compile_data *cd, int *lengthptr) |
| 3057 | { | { |
| 3058 | int repeat_type, op_type; | int repeat_type, op_type; |
| 3059 | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ |
| # | Line 2624 int greedy_default, greedy_non_default; | Line 3062 int greedy_default, greedy_non_default; |
| 3062 | int firstbyte, reqbyte; | int firstbyte, reqbyte; |
| 3063 | int zeroreqbyte, zerofirstbyte; | int zeroreqbyte, zerofirstbyte; |
| 3064 | int req_caseopt, reqvary, tempreqvary; | int req_caseopt, reqvary, tempreqvary; |
| 3065 | int options = *optionsptr; | int options = *optionsptr; /* May change dynamically */ |
| 3066 | int after_manual_callout = 0; | int after_manual_callout = 0; |
| 3067 | int length_prevgroup = 0; | int length_prevgroup = 0; |
| 3068 | register int c; | register int c; |
| # | Line 2636 BOOL inescq = FALSE; | Line 3074 BOOL inescq = FALSE; |
| 3074 | BOOL groupsetfirstbyte = FALSE; | BOOL groupsetfirstbyte = FALSE; |
| 3075 | const uschar *ptr = *ptrptr; | const uschar *ptr = *ptrptr; |
| 3076 | const uschar *tempptr; | const uschar *tempptr; |
| 3077 | const uschar *nestptr = NULL; | |
| 3078 | uschar *previous = NULL; | uschar *previous = NULL; |
| 3079 | uschar *previous_callout = NULL; | uschar *previous_callout = NULL; |
| 3080 | uschar *save_hwm = NULL; | uschar *save_hwm = NULL; |
| 3081 | uschar classbits[32]; | uschar classbits[32]; |
| 3082 | ||
| 3083 | /* We can fish out the UTF-8 setting once and for all into a BOOL, but we | |
| 3084 | must not do this for other options (e.g. PCRE_EXTENDED) because they may change | |
| 3085 | dynamically as we process the pattern. */ | |
| 3086 | ||
| 3087 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 3088 | BOOL class_utf8; | BOOL class_utf8; |
| 3089 | BOOL utf8 = (options & PCRE_UTF8) != 0; | BOOL utf8 = (options & PCRE_UTF8) != 0; |
| # | Line 2649 uschar *class_utf8data_base; | Line 3092 uschar *class_utf8data_base; |
| 3092 | uschar utf8_char[6]; | uschar utf8_char[6]; |
| 3093 | #else | #else |
| 3094 | BOOL utf8 = FALSE; | BOOL utf8 = FALSE; |
| uschar *utf8_char = NULL; | ||
| 3095 | #endif | #endif |
| 3096 | ||
| 3097 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
| 3098 | if (lengthptr != NULL) DPRINTF((">> start branch\n")); | if (lengthptr != NULL) DPRINTF((">> start branch\n")); |
| 3099 | #endif | #endif |
| 3100 | ||
| # | Line 2706 for (;; ptr++) | Line 3148 for (;; ptr++) |
| 3148 | ||
| 3149 | c = *ptr; | c = *ptr; |
| 3150 | ||
| 3151 | /* If we are at the end of a nested substitution, revert to the outer level | |
| 3152 | string. Nesting only happens one level deep. */ | |
| 3153 | ||
| 3154 | if (c == 0 && nestptr != NULL) | |
| 3155 | { | |
| 3156 | ptr = nestptr; | |
| 3157 | nestptr = NULL; | |
| 3158 | c = *ptr; | |
| 3159 | } | |
| 3160 | ||
| 3161 | /* If we are in the pre-compile phase, accumulate the length used for the | /* If we are in the pre-compile phase, accumulate the length used for the |
| 3162 | previous cycle of this loop. */ | previous cycle of this loop. */ |
| 3163 | ||
| 3164 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| 3165 | { | { |
| 3166 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
| 3167 | if (code > cd->hwm) cd->hwm = code; /* High water info */ | if (code > cd->hwm) cd->hwm = code; /* High water info */ |
| 3168 | #endif | #endif |
| 3169 | if (code > cd->start_workspace + COMPILE_WORK_SIZE) /* Check for overrun */ | if (code > cd->start_workspace + WORK_SIZE_CHECK) /* Check for overrun */ |
| 3170 | { | { |
| 3171 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
| 3172 | goto FAILED; | goto FAILED; |
| # | Line 2736 for (;; ptr++) | Line 3188 for (;; ptr++) |
| 3188 | goto FAILED; | goto FAILED; |
| 3189 | } | } |
| 3190 | ||
| 3191 | *lengthptr += code - last_code; | *lengthptr += (int)(code - last_code); |
| 3192 | DPRINTF(("length=%d added %d c=%c\n", *lengthptr, code - last_code, c)); | DPRINTF(("length=%d added %d c=%c\n", *lengthptr, code - last_code, c)); |
| 3193 | ||
| 3194 | /* If "previous" is set and it is not at the start of the work space, move | /* If "previous" is set and it is not at the start of the work space, move |
| # | Line 2763 for (;; ptr++) | Line 3215 for (;; ptr++) |
| 3215 | /* In the real compile phase, just check the workspace used by the forward | /* In the real compile phase, just check the workspace used by the forward |
| 3216 | reference list. */ | reference list. */ |
| 3217 | ||
| 3218 | else if (cd->hwm > cd->start_workspace + COMPILE_WORK_SIZE) | else if (cd->hwm > cd->start_workspace + WORK_SIZE_CHECK) |
| 3219 | { | { |
| 3220 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
| 3221 | goto FAILED; | goto FAILED; |
| # | Line 2811 for (;; ptr++) | Line 3263 for (;; ptr++) |
| 3263 | previous_callout = NULL; | previous_callout = NULL; |
| 3264 | } | } |
| 3265 | ||
| 3266 | /* In extended mode, skip white space and comments */ | /* In extended mode, skip white space and comments. */ |
| 3267 | ||
| 3268 | if ((options & PCRE_EXTENDED) != 0) | if ((options & PCRE_EXTENDED) != 0) |
| 3269 | { | { |
| 3270 | if ((cd->ctypes[c] & ctype_space) != 0) continue; | if ((cd->ctypes[c] & ctype_space) != 0) continue; |
| 3271 | if (c == CHAR_NUMBER_SIGN) | if (c == CHAR_NUMBER_SIGN) |
| 3272 | { | { |
| 3273 | while (*(++ptr) != 0) | ptr++; |
| 3274 | while (*ptr != 0) | |
| 3275 | { | { |
| 3276 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } |
| 3277 | ptr++; | |
| 3278 | #ifdef SUPPORT_UTF8 | |
| 3279 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
| 3280 | #endif | |
| 3281 | } | } |
| 3282 | if (*ptr != 0) continue; | if (*ptr != 0) continue; |
| 3283 | ||
| # | Line 2854 for (;; ptr++) | Line 3311 for (;; ptr++) |
| 3311 | *errorcodeptr = ERR20; | *errorcodeptr = ERR20; |
| 3312 | goto FAILED; | goto FAILED; |
| 3313 | } | } |
| 3314 | *lengthptr += code - last_code; /* To include callout length */ | *lengthptr += (int)(code - last_code); /* To include callout length */ |
| 3315 | DPRINTF((">> end branch\n")); | DPRINTF((">> end branch\n")); |
| 3316 | } | } |
| 3317 | return TRUE; | return TRUE; |
| # | Line 2865 for (;; ptr++) | Line 3322 for (;; ptr++) |
| 3322 | the setting of any following char as a first character. */ | the setting of any following char as a first character. */ |
| 3323 | ||
| 3324 | case CHAR_CIRCUMFLEX_ACCENT: | case CHAR_CIRCUMFLEX_ACCENT: |
| 3325 | previous = NULL; | |
| 3326 | if ((options & PCRE_MULTILINE) != 0) | if ((options & PCRE_MULTILINE) != 0) |
| 3327 | { | { |
| 3328 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
| 3329 | *code++ = OP_CIRCM; | |
| 3330 | } | } |
| 3331 | previous = NULL; | else *code++ = OP_CIRC; |
| *code++ = OP_CIRC; | ||
| 3332 | break; | break; |
| 3333 | ||
| 3334 | case CHAR_DOLLAR_SIGN: | case CHAR_DOLLAR_SIGN: |
| 3335 | previous = NULL; | previous = NULL; |
| 3336 | *code++ = OP_DOLL; | *code++ = ((options & PCRE_MULTILINE) != 0)? OP_DOLLM : OP_DOLL; |
| 3337 | break; | break; |
| 3338 | ||
| 3339 | /* There can never be a first char if '.' is first, whatever happens about | /* There can never be a first char if '.' is first, whatever happens about |
| # | Line 3059 for (;; ptr++) | Line 3517 for (;; ptr++) |
| 3517 | ptr++; | ptr++; |
| 3518 | } | } |
| 3519 | ||
| 3520 | posix_class = check_posix_name(ptr, tempptr - ptr); | posix_class = check_posix_name(ptr, (int)(tempptr - ptr)); |
| 3521 | if (posix_class < 0) | if (posix_class < 0) |
| 3522 | { | { |
| 3523 | *errorcodeptr = ERR30; | *errorcodeptr = ERR30; |
| # | Line 3073 for (;; ptr++) | Line 3531 for (;; ptr++) |
| 3531 | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) |
| 3532 | posix_class = 0; | posix_class = 0; |
| 3533 | ||
| 3534 | /* We build the bit map for the POSIX class in a chunk of local store | /* When PCRE_UCP is set, some of the POSIX classes are converted to |
| 3535 | because we may be adding and subtracting from it, and we don't want to | different escape sequences that use Unicode properties. */ |
| 3536 | subtract bits that may be in the main map already. At the end we or the | |
| 3537 | result into the bit map that is being built. */ | #ifdef SUPPORT_UCP |
| 3538 | if ((options & PCRE_UCP) != 0) | |
| 3539 | { | |
| 3540 | int pc = posix_class + ((local_negate)? POSIX_SUBSIZE/2 : 0); | |
| 3541 | if (posix_substitutes[pc] != NULL) | |
| 3542 | { | |
| 3543 | nestptr = tempptr + 1; | |
| 3544 | ptr = posix_substitutes[pc] - 1; | |
| 3545 | continue; | |
| 3546 | } | |
| 3547 | } | |
| 3548 | #endif | |
| 3549 | /* In the non-UCP case, we build the bit map for the POSIX class in a | |
| 3550 | chunk of local store because we may be adding and subtracting from it, | |
| 3551 | and we don't want to subtract bits that may be in the main map already. | |
| 3552 | At the end we or the result into the bit map that is being built. */ | |
| 3553 | ||
| 3554 | posix_class *= 3; | posix_class *= 3; |
| 3555 | ||
| # | Line 3120 for (;; ptr++) | Line 3593 for (;; ptr++) |
| 3593 | ||
| 3594 | /* Backslash may introduce a single character, or it may introduce one | /* Backslash may introduce a single character, or it may introduce one |
| 3595 | of the specials, which just set a flag. The sequence \b is a special | of the specials, which just set a flag. The sequence \b is a special |
| 3596 | case. Inside a class (and only there) it is treated as backspace. | case. Inside a class (and only there) it is treated as backspace. We |
| 3597 | Elsewhere it marks a word boundary. Other escapes have preset maps ready | assume that other escapes have more than one character in them, so set |
| 3598 | to 'or' into the one we are building. We assume they have more than one | class_charcount bigger than one. Unrecognized escapes fall through and |
| 3599 | character in them, so set class_charcount bigger than one. */ | are either treated as literal characters (by default), or are faulted if |
| 3600 | PCRE_EXTRA is set. */ | |
| 3601 | ||
| 3602 | if (c == CHAR_BACKSLASH) | if (c == CHAR_BACKSLASH) |
| 3603 | { | { |
| 3604 | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3605 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
| 3606 | ||
| 3607 | if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */ | if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */ |
| else if (-c == ESC_X) c = CHAR_X; /* \X is literal X in a class */ | ||
| else if (-c == ESC_R) c = CHAR_R; /* \R is literal R in a class */ | ||
| 3608 | else if (-c == ESC_Q) /* Handle start of quoted string */ | else if (-c == ESC_Q) /* Handle start of quoted string */ |
| 3609 | { | { |
| 3610 | if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) | if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) |
| # | Line 3149 for (;; ptr++) | Line 3621 for (;; ptr++) |
| 3621 | register const uschar *cbits = cd->cbits; | register const uschar *cbits = cd->cbits; |
| 3622 | class_charcount += 2; /* Greater than 1 is what matters */ | class_charcount += 2; /* Greater than 1 is what matters */ |
| 3623 | ||
| 3624 | /* Save time by not doing this in the pre-compile phase. */ | switch (-c) |
| if (lengthptr == NULL) switch (-c) | ||
| 3625 | { | { |
| 3626 | #ifdef SUPPORT_UCP | |
| 3627 | case ESC_du: /* These are the values given for \d etc */ | |
| 3628 | case ESC_DU: /* when PCRE_UCP is set. We replace the */ | |
| 3629 | case ESC_wu: /* escape sequence with an appropriate \p */ | |
| 3630 | case ESC_WU: /* or \P to test Unicode properties instead */ | |
| 3631 | case ESC_su: /* of the default ASCII testing. */ | |
| 3632 | case ESC_SU: | |
| 3633 | nestptr = ptr; | |
| 3634 | ptr = substitutes[-c - ESC_DU] - 1; /* Just before substitute */ | |
| 3635 | class_charcount -= 2; /* Undo! */ | |
| 3636 | continue; | |
| 3637 | #endif | |
| 3638 | case ESC_d: | case ESC_d: |
| 3639 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; |
| 3640 | continue; | continue; |
| # | Line 3171 for (;; ptr++) | Line 3653 for (;; ptr++) |
| 3653 | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
| 3654 | continue; | continue; |
| 3655 | ||
| 3656 | /* Perl 5.004 onwards omits VT from \s, but we must preserve it | |
| 3657 | if it was previously set by something earlier in the character | |
| 3658 | class. */ | |
| 3659 | ||
| 3660 | case ESC_s: | case ESC_s: |
| 3661 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | classbits[0] |= cbits[cbit_space]; |
| 3662 | classbits[1] &= ~0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= cbits[cbit_space+1] & ~0x08; |
| 3663 | for (c = 2; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | |
| 3664 | continue; | continue; |
| 3665 | ||
| 3666 | case ESC_S: | case ESC_S: |
| # | Line 3182 for (;; ptr++) | Line 3669 for (;; ptr++) |
| 3669 | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
| 3670 | continue; | continue; |
| 3671 | ||
| 3672 | default: /* Not recognized; fall through */ | case ESC_h: |
| break; /* Need "default" setting to stop compiler warning. */ | ||
| } | ||
| /* In the pre-compile phase, just do the recognition. */ | ||
| else if (c == -ESC_d || c == -ESC_D || c == -ESC_w || | ||
| c == -ESC_W || c == -ESC_s || c == -ESC_S) continue; | ||
| /* We need to deal with \H, \h, \V, and \v in both phases because | ||
| they use extra memory. */ | ||
| if (-c == ESC_h) | ||
| { | ||
| 3673 | SETBIT(classbits, 0x09); /* VT */ | SETBIT(classbits, 0x09); /* VT */ |
| 3674 | SETBIT(classbits, 0x20); /* SPACE */ | SETBIT(classbits, 0x20); /* SPACE */ |
| 3675 | SETBIT(classbits, 0xa0); /* NSBP */ | SETBIT(classbits, 0xa0); /* NSBP */ |
| # | Line 3219 for (;; ptr++) | Line 3693 for (;; ptr++) |
| 3693 | } | } |
| 3694 | #endif | #endif |
| 3695 | continue; | continue; |
| } | ||
| 3696 | ||
| 3697 | if (-c == ESC_H) | case ESC_H: |
| { | ||
| 3698 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
| 3699 | { | { |
| 3700 | int x = 0xff; | int x = 0xff; |
| # | Line 3264 for (;; ptr++) | Line 3736 for (;; ptr++) |
| 3736 | } | } |
| 3737 | #endif | #endif |
| 3738 | continue; | continue; |
| } | ||
| 3739 | ||
| 3740 | if (-c == ESC_v) | case ESC_v: |
| { | ||
| 3741 | SETBIT(classbits, 0x0a); /* LF */ | SETBIT(classbits, 0x0a); /* LF */ |
| 3742 | SETBIT(classbits, 0x0b); /* VT */ | SETBIT(classbits, 0x0b); /* VT */ |
| 3743 | SETBIT(classbits, 0x0c); /* FF */ | SETBIT(classbits, 0x0c); /* FF */ |
| # | Line 3283 for (;; ptr++) | Line 3753 for (;; ptr++) |
| 3753 | } | } |
| 3754 | #endif | #endif |
| 3755 | continue; | continue; |
| } | ||
| 3756 | ||
| 3757 | if (-c == ESC_V) | case ESC_V: |
| { | ||
| 3758 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
| 3759 | { | { |
| 3760 | int x = 0xff; | int x = 0xff; |
| # | Line 3316 for (;; ptr++) | Line 3784 for (;; ptr++) |
| 3784 | } | } |
| 3785 | #endif | #endif |
| 3786 | continue; | continue; |
| } | ||
| /* We need to deal with \P and \p in both phases. */ | ||
| 3787 | ||
| 3788 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
| 3789 | if (-c == ESC_p || -c == ESC_P) | case ESC_p: |
| 3790 | { | case ESC_P: |
| 3791 | BOOL negated; | { |
| 3792 | int pdata; | BOOL negated; |
| 3793 | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); | int pdata; |
| 3794 | if (ptype < 0) goto FAILED; | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); |
| 3795 | class_utf8 = TRUE; | if (ptype < 0) goto FAILED; |
| 3796 | *class_utf8data++ = ((-c == ESC_p) != negated)? | class_utf8 = TRUE; |
| 3797 | XCL_PROP : XCL_NOTPROP; | *class_utf8data++ = ((-c == ESC_p) != negated)? |
| 3798 | *class_utf8data++ = ptype; | XCL_PROP : XCL_NOTPROP; |
| 3799 | *class_utf8data++ = pdata; | *class_utf8data++ = ptype; |
| 3800 | class_charcount -= 2; /* Not a < 256 character */ | *class_utf8data++ = pdata; |
| 3801 | continue; | class_charcount -= 2; /* Not a < 256 character */ |
| 3802 | } | continue; |
| 3803 | } | |
| 3804 | #endif | #endif |
| 3805 | /* Unrecognized escapes are faulted if PCRE is running in its | /* Unrecognized escapes are faulted if PCRE is running in its |
| 3806 | strict mode. By default, for compatibility with Perl, they are | strict mode. By default, for compatibility with Perl, they are |
| 3807 | treated as literals. */ | treated as literals. */ |
| 3808 | ||
| 3809 | if ((options & PCRE_EXTRA) != 0) | default: |
| 3810 | { | if ((options & PCRE_EXTRA) != 0) |
| 3811 | *errorcodeptr = ERR7; | { |
| 3812 | goto FAILED; | *errorcodeptr = ERR7; |
| 3813 | goto FAILED; | |
| 3814 | } | |
| 3815 | class_charcount -= 2; /* Undo the default count from above */ | |
| 3816 | c = *ptr; /* Get the final character and fall through */ | |
| 3817 | break; | |
| 3818 | } | } |
| class_charcount -= 2; /* Undo the default count from above */ | ||
| c = *ptr; /* Get the final character and fall through */ | ||
| 3819 | } | } |
| 3820 | ||
| 3821 | /* Fall through if we have a single character (c >= 0). This may be | /* Fall through if we have a single character (c >= 0). This may be |
| # | Line 3417 for (;; ptr++) | Line 3885 for (;; ptr++) |
| 3885 | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3886 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
| 3887 | ||
| 3888 | /* \b is backspace; \X is literal X; \R is literal R; any other | /* \b is backspace; any other special means the '-' was literal */ |
| special means the '-' was literal */ | ||
| 3889 | ||
| 3890 | if (d < 0) | if (d < 0) |
| 3891 | { | { |
| 3892 | if (d == -ESC_b) d = CHAR_BS; | if (d == -ESC_b) d = CHAR_BS; else |
| else if (d == -ESC_X) d = CHAR_X; | ||
| else if (d == -ESC_R) d = CHAR_R; else | ||
| 3893 | { | { |
| 3894 | ptr = oldptr; | ptr = oldptr; |
| 3895 | goto LONE_SINGLE_CHARACTER; /* A few lines below */ | goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
| # | Line 3590 for (;; ptr++) | Line 4055 for (;; ptr++) |
| 4055 | } | } |
| 4056 | } | } |
| 4057 | ||
| 4058 | /* Loop until ']' reached. This "while" is the end of the "do" above. */ | /* Loop until ']' reached. This "while" is the end of the "do" far above. |
| 4059 | If we are at the end of an internal nested string, revert to the outer | |
| 4060 | string. */ | |
| 4061 | ||
| 4062 | while (((c = *(++ptr)) != 0 || | |
| 4063 | (nestptr != NULL && | |
| 4064 | (ptr = nestptr, nestptr = NULL, c = *(++ptr)) != 0)) && | |
| 4065 | (c != CHAR_RIGHT_SQUARE_BRACKET || inescq)); | |
| 4066 | ||
| 4067 | while ((c = *(++ptr)) != 0 && (c != CHAR_RIGHT_SQUARE_BRACKET || inescq)); | /* Check for missing terminating ']' */ |
| 4068 | ||
| 4069 | if (c == 0) /* Missing terminating ']' */ | if (c == 0) |
| 4070 | { | { |
| 4071 | *errorcodeptr = ERR6; | *errorcodeptr = ERR6; |
| 4072 | goto FAILED; | goto FAILED; |
| 4073 | } | } |
| 4074 | ||
| /* This code has been disabled because it would mean that \s counts as | ||
| an explicit \r or \n reference, and that's not really what is wanted. Now | ||
| we set the flag only if there is a literal "\r" or "\n" in the class. */ | ||
| #if 0 | ||
| /* Remember whether \r or \n are in this class */ | ||
| if (negate_class) | ||
| { | ||
| if ((classbits[1] & 0x24) != 0x24) cd->external_flags |= PCRE_HASCRORLF; | ||
| } | ||
| else | ||
| { | ||
| if ((classbits[1] & 0x24) != 0) cd->external_flags |= PCRE_HASCRORLF; | ||
| } | ||
| #endif | ||
| 4075 | /* If class_charcount is 1, we saw precisely one character whose value is | /* If class_charcount is 1, we saw precisely one character whose value is |
| 4076 | less than 256. As long as there were no characters >= 128 and there was no | less than 256. As long as there were no characters >= 128 and there was no |
| 4077 | use of \p or \P, in other words, no use of any XCLASS features, we can | use of \p or \P, in other words, no use of any XCLASS features, we can |
| # | Line 3626 we set the flag only if there is a liter | Line 4079 we set the flag only if there is a liter |
| 4079 | ||
| 4080 | In UTF-8 mode, we can optimize the negative case only if there were no | In UTF-8 mode, we can optimize the negative case only if there were no |
| 4081 | characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR | characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR |
| 4082 | operate on single-bytes only. This is an historical hangover. Maybe one day | operate on single-bytes characters only. This is an historical hangover. |
| 4083 | we can tidy these opcodes to handle multi-byte characters. | Maybe one day we can tidy these opcodes to handle multi-byte characters. |
| 4084 | ||
| 4085 | The optimization throws away the bit map. We turn the item into a | The optimization throws away the bit map. We turn the item into a |
| 4086 | 1-character OP_CHAR[NC] if it's positive, or OP_NOT if it's negative. Note | 1-character OP_CHAR[I] if it's positive, or OP_NOT[I] if it's negative. |
| 4087 | that OP_NOT does not support multibyte characters. In the positive case, it | Note that OP_NOT[I] does not support multibyte characters. In the positive |
| 4088 | can cause firstbyte to be set. Otherwise, there can be no first char if | case, it can cause firstbyte to be set. Otherwise, there can be no first |
| 4089 | this item is first, whatever repeat count may follow. In the case of | char if this item is first, whatever repeat count may follow. In the case |
| 4090 | reqbyte, save the previous value for reinstating. */ | of reqbyte, save the previous value for reinstating. */ |
| 4091 | ||
| 4092 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 4093 | if (class_charcount == 1 && !class_utf8 && | if (class_charcount == 1 && !class_utf8 && |
| # | Line 3645 we set the flag only if there is a liter | Line 4098 we set the flag only if there is a liter |
| 4098 | { | { |
| 4099 | zeroreqbyte = reqbyte; | zeroreqbyte = reqbyte; |
| 4100 | ||
| 4101 | /* The OP_NOT opcode works on one-byte characters only. */ | /* The OP_NOT[I] opcodes work on one-byte characters only. */ |
| 4102 | ||
| 4103 | if (negate_class) | if (negate_class) |
| 4104 | { | { |
| 4105 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
| 4106 | zerofirstbyte = firstbyte; | zerofirstbyte = firstbyte; |
| 4107 | *code++ = OP_NOT; | *code++ = ((options & PCRE_CASELESS) != 0)? OP_NOTI: OP_NOT; |
| 4108 | *code++ = class_lastchar; | *code++ = class_lastchar; |
| 4109 | break; | break; |
| 4110 | } | } |
| # | Line 3682 we set the flag only if there is a liter | Line 4135 we set the flag only if there is a liter |
| 4135 | ||
| 4136 | /* If there are characters with values > 255, we have to compile an | /* If there are characters with values > 255, we have to compile an |
| 4137 | extended class, with its own opcode, unless there was a negated special | extended class, with its own opcode, unless there was a negated special |
| 4138 | such as \S in the class, because in that case all characters > 255 are in | such as \S in the class, and PCRE_UCP is not set, because in that case all |
| 4139 | the class, so any that were explicitly given as well can be ignored. If | characters > 255 are in the class, so any that were explicitly given as |
| 4140 | (when there are explicit characters > 255 that must be listed) there are no | well can be ignored. If (when there are explicit characters > 255 that must |
| 4141 | characters < 256, we can omit the bitmap in the actual compiled code. */ | be listed) there are no characters < 256, we can omit the bitmap in the |
| 4142 | actual compiled code. */ | |
| 4143 | ||
| 4144 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 4145 | if (class_utf8 && !should_flip_negation) | if (class_utf8 && (!should_flip_negation || (options & PCRE_UCP) != 0)) |
| 4146 | { | { |
| 4147 | *class_utf8data++ = XCL_END; /* Marks the end of extra data */ | *class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
| 4148 | *code++ = OP_XCLASS; | *code++ = OP_XCLASS; |
| # | Line 3714 we set the flag only if there is a liter | Line 4168 we set the flag only if there is a liter |
| 4168 | } | } |
| 4169 | #endif | #endif |
| 4170 | ||
| 4171 | /* If there are no characters > 255, set the opcode to OP_CLASS or | /* If there are no characters > 255, or they are all to be included or |
| 4172 | OP_NCLASS, depending on whether the whole class was negated and whether | excluded, set the opcode to OP_CLASS or OP_NCLASS, depending on whether the |
| 4173 | there were negative specials such as \S in the class. Then copy the 32-byte | whole class was negated and whether there were negative specials such as \S |
| 4174 | map into the code vector, negating it if necessary. */ | (non-UCP) in the class. Then copy the 32-byte map into the code vector, |
| 4175 | negating it if necessary. */ | |
| 4176 | ||
| 4177 | *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; | *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
| 4178 | if (negate_class) | if (negate_class) |
| # | Line 3777 we set the flag only if there is a liter | Line 4232 we set the flag only if there is a liter |
| 4232 | op_type = 0; /* Default single-char op codes */ | op_type = 0; /* Default single-char op codes */ |
| 4233 | possessive_quantifier = FALSE; /* Default not possessive quantifier */ | possessive_quantifier = FALSE; /* Default not possessive quantifier */ |
| 4234 | ||
| 4235 | /* Save start of previous item, in case we have to move it up to make space | /* Save start of previous item, in case we have to move it up in order to |
| 4236 | for an inserted OP_ONCE for the additional '+' extension. */ | insert something before it. */ |
| 4237 | ||
| 4238 | tempcode = previous; | tempcode = previous; |
| 4239 | ||
| # | Line 3801 we set the flag only if there is a liter | Line 4256 we set the flag only if there is a liter |
| 4256 | } | } |
| 4257 | else repeat_type = greedy_default; | else repeat_type = greedy_default; |
| 4258 | ||
| 4259 | /* If previous was a recursion call, wrap it in atomic brackets so that | |
| 4260 | previous becomes the atomic group. All recursions were so wrapped in the | |
| 4261 | past, but it no longer happens for non-repeated recursions. In fact, the | |
| 4262 | repeated ones could be re-implemented independently so as not to need this, | |
| 4263 | but for the moment we rely on the code for repeating groups. */ | |
| 4264 | ||
| 4265 | if (*previous == OP_RECURSE) | |
| 4266 | { | |
| 4267 | memmove(previous + 1 + LINK_SIZE, previous, 1 + LINK_SIZE); | |
| 4268 | *previous = OP_ONCE; | |
| 4269 | PUT(previous, 1, 2 + 2*LINK_SIZE); | |
| 4270 | previous[2 + 2*LINK_SIZE] = OP_KET; | |
| 4271 | PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE); | |
| 4272 | code += 2 + 2 * LINK_SIZE; | |
| 4273 | length_prevgroup = 3 + 3*LINK_SIZE; | |
| 4274 | ||
| 4275 | /* When actually compiling, we need to check whether this was a forward | |
| 4276 | reference, and if so, adjust the offset. */ | |
| 4277 | ||
| 4278 | if (lengthptr == NULL && cd->hwm >= cd->start_workspace + LINK_SIZE) | |
| 4279 | { | |
| 4280 | int offset = GET(cd->hwm, -LINK_SIZE); | |
| 4281 | if (offset == previous + 1 - cd->start_code) | |
| 4282 | PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE); | |
| 4283 | } | |
| 4284 | } | |
| 4285 | ||
| 4286 | /* Now handle repetition for the different types of item. */ | |
| 4287 | ||
| 4288 | /* If previous was a character match, abolish the item and generate a | /* If previous was a character match, abolish the item and generate a |
| 4289 | repeat item instead. If a char item has a minumum of more than one, ensure | repeat item instead. If a char item has a minumum of more than one, ensure |
| 4290 | that it is set in reqbyte - it might not be if a sequence such as x{3} is | that it is set in reqbyte - it might not be if a sequence such as x{3} is |
| 4291 | the first thing in a branch because the x will have gone into firstbyte | the first thing in a branch because the x will have gone into firstbyte |
| 4292 | instead. */ | instead. */ |
| 4293 | ||
| 4294 | if (*previous == OP_CHAR || *previous == OP_CHARNC) | if (*previous == OP_CHAR || *previous == OP_CHARI) |
| 4295 | { | { |
| 4296 | op_type = (*previous == OP_CHAR)? 0 : OP_STARI - OP_STAR; | |
| 4297 | ||
| 4298 | /* Deal with UTF-8 characters that take up more than one byte. It's | /* Deal with UTF-8 characters that take up more than one byte. It's |
| 4299 | easier to write this out separately than try to macrify it. Use c to | easier to write this out separately than try to macrify it. Use c to |
| 4300 | hold the length of the character in bytes, plus 0x80 to flag that it's a | hold the length of the character in bytes, plus 0x80 to flag that it's a |
| # | Line 3841 we set the flag only if there is a liter | Line 4327 we set the flag only if there is a liter |
| 4327 | ||
| 4328 | if (!possessive_quantifier && | if (!possessive_quantifier && |
| 4329 | repeat_max < 0 && | repeat_max < 0 && |
| 4330 | check_auto_possessive(*previous, c, utf8, utf8_char, ptr + 1, | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
| options, cd)) | ||
| 4331 | { | { |
| 4332 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
| 4333 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
| # | Line 3854 we set the flag only if there is a liter | Line 4339 we set the flag only if there is a liter |
| 4339 | /* If previous was a single negated character ([^a] or similar), we use | /* If previous was a single negated character ([^a] or similar), we use |
| 4340 | one of the special opcodes, replacing it. The code is shared with single- | one of the special opcodes, replacing it. The code is shared with single- |
| 4341 | character repeats by setting opt_type to add a suitable offset into | character repeats by setting opt_type to add a suitable offset into |
| 4342 | repeat_type. We can also test for auto-possessification. OP_NOT is | repeat_type. We can also test for auto-possessification. OP_NOT and OP_NOTI |
| 4343 | currently used only for single-byte chars. */ | are currently used only for single-byte chars. */ |
| 4344 | ||
| 4345 | else if (*previous == OP_NOT) | else if (*previous == OP_NOT || *previous == OP_NOTI) |
| 4346 | { | { |
| 4347 | op_type = OP_NOTSTAR - OP_STAR; /* Use "not" opcodes */ | op_type = ((*previous == OP_NOT)? OP_NOTSTAR : OP_NOTSTARI) - OP_STAR; |
| 4348 | c = previous[1]; | c = previous[1]; |
| 4349 | if (!possessive_quantifier && | if (!possessive_quantifier && |
| 4350 | repeat_max < 0 && | repeat_max < 0 && |
| 4351 | check_auto_possessive(OP_NOT, c, utf8, NULL, ptr + 1, options, cd)) | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
| 4352 | { | { |
| 4353 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
| 4354 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
| # | Line 3887 we set the flag only if there is a liter | Line 4372 we set the flag only if there is a liter |
| 4372 | ||
| 4373 | if (!possessive_quantifier && | if (!possessive_quantifier && |
| 4374 | repeat_max < 0 && | repeat_max < 0 && |
| 4375 | check_auto_possessive(c, 0, utf8, NULL, ptr + 1, options, cd)) | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
| 4376 | { | { |
| 4377 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
| 4378 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
| # | Line 3909 we set the flag only if there is a liter | Line 4394 we set the flag only if there is a liter |
| 4394 | ||
| 4395 | if (repeat_max == 0) goto END_REPEAT; | if (repeat_max == 0) goto END_REPEAT; |
| 4396 | ||
| 4397 | /*--------------------------------------------------------------------*/ | /*--------------------------------------------------------------------*/ |
| 4398 | /* This code is obsolete from release 8.00; the restriction was finally | /* This code is obsolete from release 8.00; the restriction was finally |
| 4399 | removed: */ | removed: */ |
| 4400 | ||
| 4401 | /* All real repeats make it impossible to handle partial matching (maybe | /* All real repeats make it impossible to handle partial matching (maybe |
| 4402 | one day we will be able to remove this restriction). */ | one day we will be able to remove this restriction). */ |
| 4403 | ||
| 4404 | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ |
| 4405 | /*--------------------------------------------------------------------*/ | /*--------------------------------------------------------------------*/ |
| 4406 | ||
| 4407 | /* Combine the op_type with the repeat_type */ | /* Combine the op_type with the repeat_type */ |
| 4408 | ||
| # | Line 4056 we set the flag only if there is a liter | Line 4541 we set the flag only if there is a liter |
| 4541 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
| 4542 | *previous == OP_XCLASS || | *previous == OP_XCLASS || |
| 4543 | #endif | #endif |
| 4544 | *previous == OP_REF) | *previous == OP_REF || |
| 4545 | *previous == OP_REFI) | |
| 4546 | { | { |
| 4547 | if (repeat_max == 0) | if (repeat_max == 0) |
| 4548 | { | { |
| # | Line 4064 we set the flag only if there is a liter | Line 4550 we set the flag only if there is a liter |
| 4550 | goto END_REPEAT; | goto END_REPEAT; |
| 4551 | } | } |
| 4552 | ||
| 4553 | /*--------------------------------------------------------------------*/ | /*--------------------------------------------------------------------*/ |
| 4554 | /* This code is obsolete from release 8.00; the restriction was finally | /* This code is obsolete from release 8.00; the restriction was finally |
| 4555 | removed: */ | removed: */ |
| 4556 | ||
| # | Line 4072 we set the flag only if there is a liter | Line 4558 we set the flag only if there is a liter |
| 4558 | one day we will be able to remove this restriction). */ | one day we will be able to remove this restriction). */ |
| 4559 | ||
| 4560 | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ |
| 4561 | /*--------------------------------------------------------------------*/ | /*--------------------------------------------------------------------*/ |
| 4562 | ||
| 4563 | if (repeat_min == 0 && repeat_max == -1) | if (repeat_min == 0 && repeat_max == -1) |
| 4564 | *code++ = OP_CRSTAR + repeat_type; | *code++ = OP_CRSTAR + repeat_type; |
| # | Line 4090 we set the flag only if there is a liter | Line 4576 we set the flag only if there is a liter |
| 4576 | } | } |
| 4577 | ||
| 4578 | /* If previous was a bracket group, we may have to replicate it in certain | /* If previous was a bracket group, we may have to replicate it in certain |
| 4579 | cases. */ | cases. Note that at this point we can encounter only the "basic" bracket |
| 4580 | opcodes such as BRA and CBRA, as this is the place where they get converted | |
| 4581 | into the more special varieties such as BRAPOS and SBRA. A test for >= | |
| 4582 | OP_ASSERT and <= OP_COND includes ASSERT, ASSERT_NOT, ASSERTBACK, | |
| 4583 | ASSERTBACK_NOT, ONCE, BRA, CBRA, and COND. Originally, PCRE did not allow | |
| 4584 | repetition of assertions, but now it does, for Perl compatibility. */ | |
| 4585 | ||
| 4586 | else if (*previous == OP_BRA || *previous == OP_CBRA || | else if (*previous >= OP_ASSERT && *previous <= OP_COND) |
| *previous == OP_ONCE || *previous == OP_COND) | ||
| 4587 | { | { |
| 4588 | register int i; | register int i; |
| 4589 | int ketoffset = 0; | int len = (int)(code - previous); |
| int len = code - previous; | ||
| 4590 | uschar *bralink = NULL; | uschar *bralink = NULL; |
| 4591 | uschar *brazeroptr = NULL; | |
| 4592 | ||
| 4593 | /* Repeating a DEFINE group is pointless */ | /* Repeating a DEFINE group is pointless, but Perl allows the syntax, so |
| 4594 | we just ignore the repeat. */ | |
| 4595 | ||
| 4596 | if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) | if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) |
| 4597 | { | goto END_REPEAT; |
| 4598 | *errorcodeptr = ERR55; | |
| 4599 | goto FAILED; | /* There is no sense in actually repeating assertions. The only potential |
| 4600 | } | use of repetition is in cases when the assertion is optional. Therefore, |
| 4601 | if the minimum is greater than zero, just ignore the repeat. If the | |
| 4602 | maximum is not not zero or one, set it to 1. */ | |
| 4603 | ||
| 4604 | /* If the maximum repeat count is unlimited, find the end of the bracket | if (*previous < OP_ONCE) /* Assertion */ |
| 4605 | by scanning through from the start, and compute the offset back to it | { |
| 4606 | from the current code pointer. There may be an OP_OPT setting following | if (repeat_min > 0) goto END_REPEAT; |
| 4607 | the final KET, so we can't find the end just by going back from the code | if (repeat_max < 0 || repeat_max > 1) repeat_max = 1; |
| pointer. */ | ||
| if (repeat_max == -1) | ||
| { | ||
| register uschar *ket = previous; | ||
| do ket += GET(ket, 1); while (*ket != OP_KET); | ||
| ketoffset = code - ket; | ||
| 4608 | } | } |
| 4609 | ||
| 4610 | /* The case of a zero minimum is special because of the need to stick | /* The case of a zero minimum is special because of the need to stick |
| # | Line 4139 we set the flag only if there is a liter | Line 4625 we set the flag only if there is a liter |
| 4625 | ** goto END_REPEAT; | ** goto END_REPEAT; |
| 4626 | ** } | ** } |
| 4627 | ||
| 4628 | However, that fails when a group is referenced as a subroutine from | However, that fails when a group or a subgroup within it is referenced |
| 4629 | elsewhere in the pattern, so now we stick in OP_SKIPZERO in front of it | as a subroutine from elsewhere in the pattern, so now we stick in |
| 4630 | so that it is skipped on execution. As we don't have a list of which | OP_SKIPZERO in front of it so that it is skipped on execution. As we |
| 4631 | groups are referenced, we cannot do this selectively. | don't have a list of which groups are referenced, we cannot do this |
| 4632 | selectively. | |
| 4633 | ||
| 4634 | If the maximum is 1 or unlimited, we just have to stick in the BRAZERO | If the maximum is 1 or unlimited, we just have to stick in the BRAZERO |
| 4635 | and do no more at this point. However, we do need to adjust any | and do no more at this point. However, we do need to adjust any |
| # | Line 4162 we set the flag only if there is a liter | Line 4649 we set the flag only if there is a liter |
| 4649 | *previous++ = OP_SKIPZERO; | *previous++ = OP_SKIPZERO; |
| 4650 | goto END_REPEAT; | goto END_REPEAT; |
| 4651 | } | } |
| 4652 | brazeroptr = previous; /* Save for possessive optimizing */ | |
| 4653 | *previous++ = OP_BRAZERO + repeat_type; | *previous++ = OP_BRAZERO + repeat_type; |
| 4654 | } | } |
| 4655 | ||
| # | Line 4186 we set the flag only if there is a liter | Line 4674 we set the flag only if there is a liter |
| 4674 | /* We chain together the bracket offset fields that have to be | /* We chain together the bracket offset fields that have to be |
| 4675 | filled in later when the ends of the brackets are reached. */ | filled in later when the ends of the brackets are reached. */ |
| 4676 | ||
| 4677 | offset = (bralink == NULL)? 0 : previous - bralink; | offset = (bralink == NULL)? 0 : (int)(previous - bralink); |
| 4678 | bralink = previous; | bralink = previous; |
| 4679 | PUTINC(previous, 0, offset); | PUTINC(previous, 0, offset); |
| 4680 | } | } |
| # | Line 4207 we set the flag only if there is a liter | Line 4695 we set the flag only if there is a liter |
| 4695 | { | { |
| 4696 | /* In the pre-compile phase, we don't actually do the replication. We | /* In the pre-compile phase, we don't actually do the replication. We |
| 4697 | just adjust the length as if we had. Do some paranoid checks for | just adjust the length as if we had. Do some paranoid checks for |
| 4698 | potential integer overflow. */ | potential integer overflow. The INT64_OR_DOUBLE type is a 64-bit |
| 4699 | integer type when available, otherwise double. */ | |
| 4700 | ||
| 4701 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| 4702 | { | { |
| 4703 | int delta = (repeat_min - 1)*length_prevgroup; | int delta = (repeat_min - 1)*length_prevgroup; |
| 4704 | if ((double)(repeat_min - 1)*(double)length_prevgroup > | if ((INT64_OR_DOUBLE)(repeat_min - 1)* |
| 4705 | (double)INT_MAX || | (INT64_OR_DOUBLE)length_prevgroup > |
| 4706 | (INT64_OR_DOUBLE)INT_MAX || | |
| 4707 | OFLOW_MAX - *lengthptr < delta) | OFLOW_MAX - *lengthptr < delta) |
| 4708 | { | { |
| 4709 | *errorcodeptr = ERR20; | *errorcodeptr = ERR20; |
| # | Line 4259 we set the flag only if there is a liter | Line 4749 we set the flag only if there is a liter |
| 4749 | just adjust the length as if we had. For each repetition we must add 1 | just adjust the length as if we had. For each repetition we must add 1 |
| 4750 | to the length for BRAZERO and for all but the last repetition we must | to the length for BRAZERO and for all but the last repetition we must |
| 4751 | add 2 + 2*LINKSIZE to allow for the nesting that occurs. Do some | add 2 + 2*LINKSIZE to allow for the nesting that occurs. Do some |
| 4752 | paranoid checks to avoid integer overflow. */ | paranoid checks to avoid integer overflow. The INT64_OR_DOUBLE type is |
| 4753 | a 64-bit integer type when available, otherwise double. */ | |
| 4754 | ||
| 4755 | if (lengthptr != NULL && repeat_max > 0) | if (lengthptr != NULL && repeat_max > 0) |
| 4756 | { | { |
| 4757 | int delta = repeat_max * (length_prevgroup + 1 + 2 + 2*LINK_SIZE) - | int delta = repeat_max * (length_prevgroup + 1 + 2 + 2*LINK_SIZE) - |
| 4758 | 2 - 2*LINK_SIZE; /* Last one doesn't nest */ | 2 - 2*LINK_SIZE; /* Last one doesn't nest */ |
| 4759 | if ((double)repeat_max * | if ((INT64_OR_DOUBLE)repeat_max * |
| 4760 | (double)(length_prevgroup + 1 + 2 + 2*LINK_SIZE) | (INT64_OR_DOUBLE)(length_prevgroup + 1 + 2 + 2*LINK_SIZE) |
| 4761 | > (double)INT_MAX || | > (INT64_OR_DOUBLE)INT_MAX || |
| 4762 | OFLOW_MAX - *lengthptr < delta) | OFLOW_MAX - *lengthptr < delta) |
| 4763 | { | { |
| 4764 | *errorcodeptr = ERR20; | *errorcodeptr = ERR20; |
| # | Line 4292 we set the flag only if there is a liter | Line 4783 we set the flag only if there is a liter |
| 4783 | { | { |
| 4784 | int offset; | int offset; |
| 4785 | *code++ = OP_BRA; | *code++ = OP_BRA; |
| 4786 | offset = (bralink == NULL)? 0 : code - bralink; | offset = (bralink == NULL)? 0 : (int)(code - bralink); |
| 4787 | bralink = code; | bralink = code; |
| 4788 | PUTINC(code, 0, offset); | PUTINC(code, 0, offset); |
| 4789 | } | } |
| # | Line 4313 we set the flag only if there is a liter | Line 4804 we set the flag only if there is a liter |
| 4804 | while (bralink != NULL) | while (bralink != NULL) |
| 4805 | { | { |
| 4806 | int oldlinkoffset; | int oldlinkoffset; |
| 4807 | int offset = code - bralink + 1; | int offset = (int)(code - bralink + 1); |
| 4808 | uschar *bra = code - offset; | uschar *bra = code - offset; |
| 4809 | oldlinkoffset = GET(bra, 1); | oldlinkoffset = GET(bra, 1); |
| 4810 | bralink = (oldlinkoffset == 0)? NULL : bralink - oldlinkoffset; | bralink = (oldlinkoffset == 0)? NULL : bralink - oldlinkoffset; |
| # | Line 4323 we set the flag only if there is a liter | Line 4814 we set the flag only if there is a liter |
| 4814 | } | } |
| 4815 | } | } |
| 4816 | ||
| 4817 | /* If the maximum is unlimited, set a repeater in the final copy. We | /* If the maximum is unlimited, set a repeater in the final copy. For |
| 4818 | can't just offset backwards from the current code point, because we | ONCE brackets, that's all we need to do. However, possessively repeated |
| 4819 | don't know if there's been an options resetting after the ket. The | ONCE brackets can be converted into non-capturing brackets, as the |
| 4820 | correct offset was computed above. | behaviour of (?:xx)++ is the same as (?>xx)++ and this saves having to |
| 4821 | deal with possessive ONCEs specially. | |
| 4822 | ||
| 4823 | Otherwise, if the quantifier was possessive, we convert the BRA code to | |
| 4824 | the POS form, and the KET code to KETRPOS. (It turns out to be convenient | |
| 4825 | at runtime to detect this kind of subpattern at both the start and at the | |
| 4826 | end.) The use of special opcodes makes it possible to reduce greatly the | |
| 4827 | stack usage in pcre_exec(). If the group is preceded by OP_BRAZERO, | |
| 4828 | convert this to OP_BRAPOSZERO. Then cancel the possessive flag so that | |
| 4829 | the default action below, of wrapping everything inside atomic brackets, | |
| 4830 | does not happen. | |
| 4831 | ||
| 4832 | Then, when we are doing the actual compile phase, check to see whether | Then, when we are doing the actual compile phase, check to see whether |
| 4833 | this group is a non-atomic one that could match an empty string. If so, | this group is one that could match an empty string. If so, convert the |
| 4834 | convert the initial operator to the S form (e.g. OP_BRA -> OP_SBRA) so | initial operator to the S form (e.g. OP_BRA -> OP_SBRA) so that runtime |
| 4835 | that runtime checking can be done. [This check is also applied to | checking can be done. [This check is also applied to ONCE groups at |
| 4836 | atomic groups at runtime, but in a different way.] */ | runtime, but in a different way.] */ |
| 4837 | ||
| 4838 | else | else |
| 4839 | { | { |
| 4840 | uschar *ketcode = code - ketoffset; | uschar *ketcode = code - 1 - LINK_SIZE; |
| 4841 | uschar *bracode = ketcode - GET(ketcode, 1); | uschar *bracode = ketcode - GET(ketcode, 1); |
| 4842 | *ketcode = OP_KETRMAX + repeat_type; | |
| 4843 | if (lengthptr == NULL && *bracode != OP_ONCE) | if (*bracode == OP_ONCE && possessive_quantifier) *bracode = OP_BRA; |
| 4844 | if (*bracode == OP_ONCE) | |
| 4845 | *ketcode = OP_KETRMAX + repeat_type; | |
| 4846 | else | |
| 4847 | { | { |
| 4848 | uschar *scode = bracode; | if (possessive_quantifier) |
| 4849 | do | { |
| 4850 | *bracode += 1; /* Switch to xxxPOS opcodes */ | |
| 4851 | *ketcode = OP_KETRPOS; | |
| 4852 | if (brazeroptr != NULL) *brazeroptr = OP_BRAPOSZERO; | |
| 4853 | possessive_quantifier = FALSE; | |
| 4854 | } | |
| 4855 | else *ketcode = OP_KETRMAX + repeat_type; | |
| 4856 | ||
| 4857 | if (lengthptr == NULL) | |
| 4858 | { | { |
| 4859 | if (could_be_empty_branch(scode, ketcode, utf8)) | uschar *scode = bracode; |
| 4860 | do | |
| 4861 | { | { |
| 4862 | *bracode += OP_SBRA - OP_BRA; | if (could_be_empty_branch(scode, ketcode, utf8, cd)) |
| 4863 | break; | { |
| 4864 | *bracode += OP_SBRA - OP_BRA; | |
| 4865 | break; | |
| 4866 | } | |
| 4867 | scode += GET(scode, 1); | |
| 4868 | } | } |
| 4869 | scode += GET(scode, 1); | while (*scode == OP_ALT); |
| 4870 | } | } |
| while (*scode == OP_ALT); | ||
| 4871 | } | } |
| 4872 | } | } |
| 4873 | } | } |
| # | Line 4372 we set the flag only if there is a liter | Line 4888 we set the flag only if there is a liter |
| 4888 | } | } |
| 4889 | ||
| 4890 | /* If the character following a repeat is '+', or if certain optimization | /* If the character following a repeat is '+', or if certain optimization |
| 4891 | tests above succeeded, possessive_quantifier is TRUE. For some of the | tests above succeeded, possessive_quantifier is TRUE. For some opcodes, |
| 4892 | simpler opcodes, there is an special alternative opcode for this. For | there are special alternative opcodes for this case. For anything else, we |
| 4893 | anything else, we wrap the entire repeated item inside OP_ONCE brackets. | wrap the entire repeated item inside OP_ONCE brackets. Logically, the '+' |
| 4894 | The '+' notation is just syntactic sugar, taken from Sun's Java package, | notation is just syntactic sugar, taken from Sun's Java package, but the |
| 4895 | but the special opcodes can optimize it a bit. The repeated item starts at | special opcodes can optimize it. |
| 4896 | tempcode, not at previous, which might be the first part of a string whose | |
| 4897 | (former) last char we repeated. | Possessively repeated subpatterns have already been handled in the code |
| 4898 | just above, so possessive_quantifier is always FALSE for them at this | |
| 4899 | stage. | |
| 4900 | ||
| 4901 | Note that the repeated item starts at tempcode, not at previous, which | |
| 4902 | might be the first part of a string whose (former) last char we repeated. | |
| 4903 | ||
| 4904 | Possessifying an 'exact' quantifier has no effect, so we can ignore it. But | Possessifying an 'exact' quantifier has no effect, so we can ignore it. But |
| 4905 | an 'upto' may follow. We skip over an 'exact' item, and then test the | an 'upto' may follow. We skip over an 'exact' item, and then test the |
| # | Line 4387 we set the flag only if there is a liter | Line 4908 we set the flag only if there is a liter |
| 4908 | if (possessive_quantifier) | if (possessive_quantifier) |
| 4909 | { | { |
| 4910 | int len; | int len; |
| 4911 | ||
| 4912 | if (*tempcode == OP_TYPEEXACT) | if (*tempcode == OP_TYPEEXACT) |
| 4913 | tempcode += _pcre_OP_lengths[*tempcode] + | tempcode += _pcre_OP_lengths[*tempcode] + |
| 4914 | ((tempcode[3] == OP_PROP || tempcode[3] == OP_NOTPROP)? 2 : 0); | ((tempcode[3] == OP_PROP || tempcode[3] == OP_NOTPROP)? 2 : 0); |
| 4915 | ||
| 4916 | else if (*tempcode == OP_EXACT || *tempcode == OP_NOTEXACT) | else if (*tempcode == OP_EXACT || *tempcode == OP_NOTEXACT) |
| 4917 | { | { |
| 4918 | tempcode += _pcre_OP_lengths[*tempcode]; | tempcode += _pcre_OP_lengths[*tempcode]; |
| # | Line 4399 we set the flag only if there is a liter | Line 4920 we set the flag only if there is a liter |
| 4920 | if (utf8 && tempcode[-1] >= 0xc0) | if (utf8 && tempcode[-1] >= 0xc0) |
| 4921 | tempcode += _pcre_utf8_table4[tempcode[-1] & 0x3f]; | tempcode += _pcre_utf8_table4[tempcode[-1] & 0x3f]; |
| 4922 | #endif | #endif |
| 4923 | } | } |
| 4924 | ||
| 4925 | len = code - tempcode; | len = (int)(code - tempcode); |
| 4926 | if (len > 0) switch (*tempcode) | if (len > 0) switch (*tempcode) |
| 4927 | { | { |
| 4928 | case OP_STAR: *tempcode = OP_POSSTAR; break; | case OP_STAR: *tempcode = OP_POSSTAR; break; |
| # | Line 4409 we set the flag only if there is a liter | Line 4930 we set the flag only if there is a liter |
| 4930 | case OP_QUERY: *tempcode = OP_POSQUERY; break; | case OP_QUERY: *tempcode = OP_POSQUERY; break; |
| 4931 | case OP_UPTO: *tempcode = OP_POSUPTO; break; | case OP_UPTO: *tempcode = OP_POSUPTO; break; |
| 4932 | ||
| 4933 | case OP_TYPESTAR: *tempcode = OP_TYPEPOSSTAR; break; | case OP_STARI: *tempcode = OP_POSSTARI; break; |
| 4934 | case OP_TYPEPLUS: *tempcode = OP_TYPEPOSPLUS; break; | case OP_PLUSI: *tempcode = OP_POSPLUSI; break; |
| 4935 | case OP_TYPEQUERY: *tempcode = OP_TYPEPOSQUERY; break; | case OP_QUERYI: *tempcode = OP_POSQUERYI; break; |
| 4936 | case OP_TYPEUPTO: *tempcode = OP_TYPEPOSUPTO; break; | case OP_UPTOI: *tempcode = OP_POSUPTOI; break; |
| 4937 | ||
| 4938 | case OP_NOTSTAR: *tempcode = OP_NOTPOSSTAR; break; | case OP_NOTSTAR: *tempcode = OP_NOTPOSSTAR; break; |
| 4939 | case OP_NOTPLUS: *tempcode = OP_NOTPOSPLUS; break; | case OP_NOTPLUS: *tempcode = OP_NOTPOSPLUS; break; |
| 4940 | case OP_NOTQUERY: *tempcode = OP_NOTPOSQUERY; break; | case OP_NOTQUERY: *tempcode = OP_NOTPOSQUERY; break; |
| 4941 | case OP_NOTUPTO: *tempcode = OP_NOTPOSUPTO; break; | case OP_NOTUPTO: *tempcode = OP_NOTPOSUPTO; break; |
| 4942 | ||
| 4943 | case OP_NOTSTARI: *tempcode = OP_NOTPOSSTARI; break; | |
| 4944 | case OP_NOTPLUSI: *tempcode = OP_NOTPOSPLUSI; break; | |
| 4945 | case OP_NOTQUERYI: *tempcode = OP_NOTPOSQUERYI; break; | |
| 4946 | case OP_NOTUPTOI: *tempcode = OP_NOTPOSUPTOI; break; | |
| 4947 | ||
| 4948 | case OP_TYPESTAR: *tempcode = OP_TYPEPOSSTAR; break; | |
| 4949 | case OP_TYPEPLUS: *tempcode = OP_TYPEPOSPLUS; break; | |
| 4950 | case OP_TYPEQUERY: *tempcode = OP_TYPEPOSQUERY; break; | |
| 4951 | case OP_TYPEUPTO: *tempcode = OP_TYPEPOSUPTO; break; | |
| 4952 | ||
| 4953 | /* Because we are moving code along, we must ensure that any | |
| 4954 | pending recursive references are updated. */ | |
| 4955 | ||
| 4956 | default: | default: |
| 4957 | *code = OP_END; | |
| 4958 | adjust_recurse(tempcode, 1 + LINK_SIZE, utf8, cd, save_hwm); | |
| 4959 | memmove(tempcode + 1+LINK_SIZE, tempcode, len); | memmove(tempcode + 1+LINK_SIZE, tempcode, len); |
| 4960 | code += 1 + LINK_SIZE; | code += 1 + LINK_SIZE; |
| 4961 | len += 1 + LINK_SIZE; | len += 1 + LINK_SIZE; |
| # | Line 4455 we set the flag only if there is a liter | Line 4991 we set the flag only if there is a liter |
| 4991 | ||
| 4992 | /* First deal with various "verbs" that can be introduced by '*'. */ | /* First deal with various "verbs" that can be introduced by '*'. */ |
| 4993 | ||
| 4994 | if (*(++ptr) == CHAR_ASTERISK && (cd->ctypes[ptr[1]] & ctype_letter) != 0) | if (*(++ptr) == CHAR_ASTERISK && |
| 4995 | ((cd->ctypes[ptr[1]] & ctype_letter) != 0 || ptr[1] == ':')) | |
| 4996 | { | { |
| 4997 | int i, namelen; | int i, namelen; |
| 4998 | int arglen = 0; | |
| 4999 | const char *vn = verbnames; | const char *vn = verbnames; |
| 5000 | const uschar *name = ++ptr; | const uschar *name = ptr + 1; |
| 5001 | const uschar *arg = NULL; | |
| 5002 | previous = NULL; | previous = NULL; |
| 5003 | while ((cd->ctypes[*++ptr] & ctype_letter) != 0) {}; | while ((cd->ctypes[*++ptr] & ctype_letter) != 0) {}; |
| 5004 | namelen = (int)(ptr - name); | |
| 5005 | ||
| 5006 | /* It appears that Perl allows any characters whatsoever, other than | |
| 5007 | a closing parenthesis, to appear in arguments, so we no longer insist on | |
| 5008 | letters, digits, and underscores. */ | |
| 5009 | ||
| 5010 | if (*ptr == CHAR_COLON) | if (*ptr == CHAR_COLON) |
| 5011 | { | { |
| 5012 | *errorcodeptr = ERR59; /* Not supported */ | arg = ++ptr; |
| 5013 | goto FAILED; | while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++; |
| 5014 | arglen = (int)(ptr - arg); | |
| 5015 | } | } |
| 5016 | ||
| 5017 | if (*ptr != CHAR_RIGHT_PARENTHESIS) | if (*ptr != CHAR_RIGHT_PARENTHESIS) |
| 5018 | { | { |
| 5019 | *errorcodeptr = ERR60; | *errorcodeptr = ERR60; |
| 5020 | goto FAILED; | goto FAILED; |
| 5021 | } | } |
| 5022 | namelen = ptr - name; | |
| 5023 | /* Scan the table of verb names */ | |
| 5024 | ||
| 5025 | for (i = 0; i < verbcount; i++) | for (i = 0; i < verbcount; i++) |
| 5026 | { | { |
| 5027 | if (namelen == verbs[i].len && | if (namelen == verbs[i].len && |
| 5028 | strncmp((char *)name, vn, namelen) == 0) | strncmp((char *)name, vn, namelen) == 0) |
| 5029 | { | { |
| 5030 | /* Check for open captures before ACCEPT */ | /* Check for open captures before ACCEPT and convert it to |
| 5031 | ASSERT_ACCEPT if in an assertion. */ | |
| 5032 | ||
| 5033 | if (verbs[i].op == OP_ACCEPT) | if (verbs[i].op == OP_ACCEPT) |
| 5034 | { | { |
| 5035 | open_capitem *oc; | open_capitem *oc; |
| 5036 | cd->had_accept = TRUE; | if (arglen != 0) |
| 5037 | { | |
| 5038 | *errorcodeptr = ERR59; | |
| 5039 | goto FAILED; | |
| 5040 | } | |
| 5041 | cd->had_accept = TRUE; | |
| 5042 | for (oc = cd->open_caps; oc != NULL; oc = oc->next) | for (oc = cd->open_caps; oc != NULL; oc = oc->next) |
| 5043 | { | { |
| 5044 | *code++ = OP_CLOSE; | *code++ = OP_CLOSE; |
| 5045 | PUT2INC(code, 0, oc->number); | PUT2INC(code, 0, oc->number); |
| 5046 | } | } |
| 5047 | } | *code++ = (cd->assert_depth > 0)? OP_ASSERT_ACCEPT : OP_ACCEPT; |
| 5048 | *code++ = verbs[i].op; | } |
| 5049 | break; | |
| 5050 | /* Handle other cases with/without an argument */ | |
| 5051 | ||
| 5052 | else if (arglen == 0) | |
| 5053 | { | |
| 5054 | if (verbs[i].op < 0) /* Argument is mandatory */ | |
| 5055 | { | |
| 5056 | *errorcodeptr = ERR66; | |
| 5057 | goto FAILED; | |
| 5058 | } | |
| 5059 | *code = verbs[i].op; | |
| 5060 | if (*code++ == OP_THEN) | |
| 5061 | { | |
| 5062 | PUT(code, 0, code - bcptr->current_branch - 1); | |
| 5063 | code += LINK_SIZE; | |
| 5064 | } | |
| 5065 | } | |
| 5066 | ||
| 5067 | else | |
| 5068 | { | |
| 5069 | if (verbs[i].op_arg < 0) /* Argument is forbidden */ | |
| 5070 | { | |
| 5071 | *errorcodeptr = ERR59; | |
| 5072 | goto FAILED; | |
| 5073 | } | |
| 5074 | *code = verbs[i].op_arg; | |
| 5075 | if (*code++ == OP_THEN_ARG) | |
| 5076 | { | |
| 5077 | PUT(code, 0, code - bcptr->current_branch - 1); | |
| 5078 | code += LINK_SIZE; | |
| 5079 | } | |
| 5080 | *code++ = arglen; | |
| 5081 | memcpy(code, arg, arglen); | |
| 5082 | code += arglen; | |
| 5083 | *code++ = 0; | |
| 5084 | } | |
| 5085 | ||
| 5086 | break; /* Found verb, exit loop */ | |
| 5087 | } | } |
| 5088 | ||
| 5089 | vn += verbs[i].len + 1; | vn += verbs[i].len + 1; |
| 5090 | } | } |
| 5091 | if (i < verbcount) continue; | |
| 5092 | *errorcodeptr = ERR60; | if (i < verbcount) continue; /* Successfully handled a verb */ |
| 5093 | *errorcodeptr = ERR60; /* Verb not recognized */ | |
| 5094 | goto FAILED; | goto FAILED; |
| 5095 | } | } |
| 5096 | ||
| # | Line 4615 we set the flag only if there is a liter | Line 5209 we set the flag only if there is a liter |
| 5209 | recno * 10 + *ptr - CHAR_0 : -1; | recno * 10 + *ptr - CHAR_0 : -1; |
| 5210 | ptr++; | ptr++; |
| 5211 | } | } |
| 5212 | namelen = ptr - name; | namelen = (int)(ptr - name); |
| 5213 | ||
| 5214 | if ((terminator > 0 && *ptr++ != terminator) || | if ((terminator > 0 && *ptr++ != terminator) || |
| 5215 | *ptr++ != CHAR_RIGHT_PARENTHESIS) | *ptr++ != CHAR_RIGHT_PARENTHESIS) |
| # | Line 4652 we set the flag only if there is a liter | Line 5246 we set the flag only if there is a liter |
| 5246 | } | } |
| 5247 | ||
| 5248 | /* Otherwise (did not start with "+" or "-"), start by looking for the | /* Otherwise (did not start with "+" or "-"), start by looking for the |
| 5249 | name. */ | name. If we find a name, add one to the opcode to change OP_CREF or |
| 5250 | OP_RREF into OP_NCREF or OP_NRREF. These behave exactly the same, | |
| 5251 | except they record that the reference was originally to a name. The | |
| 5252 | information is used to check duplicate names. */ | |
| 5253 | ||
| 5254 | slot = cd->name_table; | slot = cd->name_table; |
| 5255 | for (i = 0; i < cd->names_found; i++) | for (i = 0; i < cd->names_found; i++) |
| # | Line 4667 we set the flag only if there is a liter | Line 5264 we set the flag only if there is a liter |
| 5264 | { | { |
| 5265 | recno = GET2(slot, 0); | recno = GET2(slot, 0); |
| 5266 | PUT2(code, 2+LINK_SIZE, recno); | PUT2(code, 2+LINK_SIZE, recno); |
| 5267 | code[1+LINK_SIZE]++; | |
| 5268 | } | } |
| 5269 | ||
| 5270 | /* Search the pattern for a forward reference */ | /* Search the pattern for a forward reference */ |
| 5271 | ||
| 5272 | else if ((i = find_parens(cd, name, namelen, | else if ((i = find_parens(cd, name, namelen, |
| 5273 | (options & PCRE_EXTENDED) != 0)) > 0) | (options & PCRE_EXTENDED) != 0, utf8)) > 0) |
| 5274 | { | { |
| 5275 | PUT2(code, 2+LINK_SIZE, i); | PUT2(code, 2+LINK_SIZE, i); |
| 5276 | code[1+LINK_SIZE]++; | |
| 5277 | } | } |
| 5278 | ||
| 5279 | /* If terminator == 0 it means that the name followed directly after | /* If terminator == 0 it means that the name followed directly after |
| # | Line 4739 we set the flag only if there is a liter | Line 5338 we set the flag only if there is a liter |
| 5338 | /* ------------------------------------------------------------ */ | /* ------------------------------------------------------------ */ |
| 5339 | case CHAR_EQUALS_SIGN: /* Positive lookahead */ | case CHAR_EQUALS_SIGN: /* Positive lookahead */ |
| 5340 | bravalue = OP_ASSERT; | bravalue = OP_ASSERT; |
| 5341 | cd->assert_depth += 1; | |
| 5342 | ptr++; | ptr++; |
| 5343 | break; | break; |
| 5344 | ||
| # | Line 4753 we set the flag only if there is a liter | Line 5353 we set the flag only if there is a liter |
| 5353 | continue; | continue; |
| 5354 | } | } |
| 5355 | bravalue = OP_ASSERT_NOT; | bravalue = OP_ASSERT_NOT; |
| 5356 | cd->assert_depth += 1; | |
| 5357 | break; | break; |
| 5358 | ||
| 5359 | ||
| # | Line 4762 we set the flag only if there is a liter | Line 5363 we set the flag only if there is a liter |
| 5363 | { | { |
| 5364 | case CHAR_EQUALS_SIGN: /* Positive lookbehind */ | case CHAR_EQUALS_SIGN: /* Positive lookbehind */ |
| 5365 | bravalue = OP_ASSERTBACK; | bravalue = OP_ASSERTBACK; |
| 5366 | cd->assert_depth += 1; | |
| 5367 | ptr += 2; | ptr += 2; |
| 5368 | break; | break; |
| 5369 | ||
| 5370 | case CHAR_EXCLAMATION_MARK: /* Negative lookbehind */ | case CHAR_EXCLAMATION_MARK: /* Negative lookbehind */ |
| 5371 | bravalue = OP_ASSERTBACK_NOT; | bravalue = OP_ASSERTBACK_NOT; |
| 5372 | cd->assert_depth += 1; | |
| 5373 | ptr += 2; | ptr += 2; |
| 5374 | break; | break; |
| 5375 | ||
| # | Line 4806 we set the flag only if there is a liter | Line 5409 we set the flag only if there is a liter |
| 5409 | goto FAILED; | goto FAILED; |
| 5410 | } | } |
| 5411 | *code++ = n; | *code++ = n; |
| 5412 | PUT(code, 0, ptr - cd->start_pattern + 1); /* Pattern offset */ | PUT(code, 0, (int)(ptr - cd->start_pattern + 1)); /* Pattern offset */ |
| 5413 | PUT(code, LINK_SIZE, 0); /* Default length */ | PUT(code, LINK_SIZE, 0); /* Default length */ |
| 5414 | code += 2 * LINK_SIZE; | code += 2 * LINK_SIZE; |
| 5415 | } | } |
| 5416 | previous = NULL; | previous = NULL; |
| # | Line 4840 we set the flag only if there is a liter | Line 5443 we set the flag only if there is a liter |
| 5443 | name = ++ptr; | name = ++ptr; |
| 5444 | ||
| 5445 | while ((cd->ctypes[*ptr] & ctype_word) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_word) != 0) ptr++; |
| 5446 | namelen = ptr - name; | namelen = (int)(ptr - name); |
| 5447 | ||
| 5448 | /* In the pre-compile phase, just do a syntax check. */ | /* In the pre-compile phase, just do a syntax check. */ |
| 5449 | ||
| # | Line 4867 we set the flag only if there is a liter | Line 5470 we set the flag only if there is a liter |
| 5470 | } | } |
| 5471 | } | } |
| 5472 | ||
| 5473 | /* In the real compile, create the entry in the table */ | /* In the real compile, create the entry in the table, maintaining |
| 5474 | alphabetical order. Duplicate names for different numbers are | |
| 5475 | permitted only if PCRE_DUPNAMES is set. Duplicate names for the same | |
| 5476 | number are always OK. (An existing number can be re-used if (?| | |
| 5477 | appears in the pattern.) In either event, a duplicate name results in | |
| 5478 | a duplicate entry in the table, even if the number is the same. This | |
| 5479 | is because the number of names, and hence the table size, is computed | |
| 5480 | in the pre-compile, and it affects various numbers and pointers which | |
| 5481 | would all have to be modified, and the compiled code moved down, if | |
| 5482 | duplicates with the same number were omitted from the table. This | |
| 5483 | doesn't seem worth the hassle. However, *different* names for the | |
| 5484 | same number are not permitted. */ | |
| 5485 | ||
| 5486 | else | else |
| 5487 | { | { |
| 5488 | BOOL dupname = FALSE; | |
| 5489 | slot = cd->name_table; | slot = cd->name_table; |
| 5490 | ||
| 5491 | for (i = 0; i < cd->names_found; i++) | for (i = 0; i < cd->names_found; i++) |
| 5492 | { | { |
| 5493 | int crc = memcmp(name, slot+2, namelen); | int crc = memcmp(name, slot+2, namelen); |
| # | Line 4879 we set the flag only if there is a liter | Line 5495 we set the flag only if there is a liter |
| 5495 | { | { |
| 5496 | if (slot[2+namelen] == 0) | if (slot[2+namelen] == 0) |
| 5497 | { | { |
| 5498 | if ((options & PCRE_DUPNAMES) == 0) | if (GET2(slot, 0) != cd->bracount + 1 && |
| 5499 | (options & PCRE_DUPNAMES) == 0) | |
| 5500 | { | { |
| 5501 | *errorcodeptr = ERR43; | *errorcodeptr = ERR43; |
| 5502 | goto FAILED; | goto FAILED; |
| 5503 | } | } |
| 5504 | else dupname = TRUE; | |
| 5505 | } | } |
| 5506 | else crc = -1; /* Current name is substring */ | else crc = -1; /* Current name is a substring */ |
| 5507 | } | } |
| 5508 | ||
| 5509 | /* Make space in the table and break the loop for an earlier | |
| 5510 | name. For a duplicate or later name, carry on. We do this for | |
| 5511 | duplicates so that in the simple case (when ?(| is not used) they | |
| 5512 | are in order of their numbers. */ | |
| 5513 | ||
| 5514 | if (crc < 0) | if (crc < 0) |
| 5515 | { | { |
| 5516 | memmove(slot + cd->name_entry_size, slot, | memmove(slot + cd->name_entry_size, slot, |
| 5517 | (cd->names_found - i) * cd->name_entry_size); | (cd->names_found - i) * cd->name_entry_size); |
| 5518 | break; | break; |
| 5519 | } | } |
| 5520 | ||
| 5521 | /* Continue the loop for a later or duplicate name */ | |
| 5522 | ||
| 5523 | slot += cd->name_entry_size; | slot += cd->name_entry_size; |
| 5524 | } | } |
| 5525 | ||
| 5526 | /* For non-duplicate names, check for a duplicate number before | |
| 5527 | adding the new name. */ | |
| 5528 | ||
| 5529 | if (!dupname) | |
| 5530 | { | |
| 5531 | uschar *cslot = cd->name_table; | |
| 5532 | for (i = 0; i < cd->names_found; i++) | |
| 5533 | { | |
| 5534 | if (cslot != slot) | |
| 5535 | { | |
| 5536 | if (GET2(cslot, 0) == cd->bracount + 1) | |
| 5537 | { | |
| 5538 | *errorcodeptr = ERR65; | |
| 5539 | goto FAILED; | |
| 5540 | } | |
| 5541 | } | |
| 5542 | else i--; | |
| 5543 | cslot += cd->name_entry_size; | |
| 5544 | } | |
| 5545 | } | |
| 5546 | ||
| 5547 | PUT2(slot, 0, cd->bracount + 1); | PUT2(slot, 0, cd->bracount + 1); |
| 5548 | memcpy(slot + 2, name, namelen); | memcpy(slot + 2, name, namelen); |
| 5549 | slot[2+namelen] = 0; | slot[2+namelen] = 0; |
| 5550 | } | } |
| 5551 | } | } |
| 5552 | ||
| 5553 | /* In both cases, count the number of names we've encountered. */ | /* In both pre-compile and compile, count the number of names we've |
| 5554 | encountered. */ | |
| 5555 | ||
| ptr++; /* Move past > or ' */ | ||
| 5556 | cd->names_found++; | cd->names_found++; |
| 5557 | ptr++; /* Move past > or ' */ | |
| 5558 | goto NUMBERED_GROUP; | goto NUMBERED_GROUP; |
| 5559 | ||
| 5560 | ||
| # | Line 4924 we set the flag only if there is a liter | Line 5573 we set the flag only if there is a liter |
| 5573 | NAMED_REF_OR_RECURSE: | NAMED_REF_OR_RECURSE: |
| 5574 | name = ++ptr; | name = ++ptr; |
| 5575 | while ((cd->ctypes[*ptr] & ctype_word) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_word) != 0) ptr++; |
| 5576 | namelen = ptr - name; | namelen = (int)(ptr - name); |
| 5577 | ||
| 5578 | /* In the pre-compile phase, do a syntax check and set a dummy | /* In the pre-compile phase, do a syntax check. We used to just set |
| 5579 | reference number. */ | a dummy reference number, because it was not used in the first pass. |
| 5580 | However, with the change of recursive back references to be atomic, | |
| 5581 | we have to look for the number so that this state can be identified, as | |
| 5582 | otherwise the incorrect length is computed. If it's not a backwards | |
| 5583 | reference, the dummy number will do. */ | |
| 5584 | ||
| 5585 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| 5586 | { | { |
| 5587 | const uschar *temp; | |
| 5588 | ||
| 5589 | if (namelen == 0) | if (namelen == 0) |
| 5590 | { | { |
| 5591 | *errorcodeptr = ERR62; | *errorcodeptr = ERR62; |
| # | Line 4946 we set the flag only if there is a liter | Line 5601 we set the flag only if there is a liter |
| 5601 | *errorcodeptr = ERR48; | *errorcodeptr = ERR48; |
| 5602 | goto FAILED; | goto FAILED; |
| 5603 | } | } |
| 5604 | recno = 0; | |
| 5605 | /* The name table does not exist in the first pass, so we cannot | |
| 5606 | do a simple search as in the code below. Instead, we have to scan the | |
| 5607 | pattern to find the number. It is important that we scan it only as | |
| 5608 | far as we have got because the syntax of named subpatterns has not | |
| 5609 | been checked for the rest of the pattern, and find_parens() assumes | |
| 5610 | correct syntax. In any case, it's a waste of resources to scan | |
| 5611 | further. We stop the scan at the current point by temporarily | |
| 5612 | adjusting the value of cd->endpattern. */ | |
| 5613 | ||
| 5614 | temp = cd->end_pattern; | |
| 5615 | cd->end_pattern = ptr; | |
| 5616 | recno = find_parens(cd, name, namelen, | |
| 5617 | (options & PCRE_EXTENDED) != 0, utf8); | |
| 5618 | cd->end_pattern = temp; | |
| 5619 | if (recno < 0) recno = 0; /* Forward ref; set dummy number */ | |
| 5620 | } | } |
| 5621 | ||
| 5622 | /* In the real compile, seek the name in the table. We check the name | /* In the real compile, seek the name in the table. We check the name |
| # | Line 4971 we set the flag only if there is a liter | Line 5641 we set the flag only if there is a liter |
| 5641 | } | } |
| 5642 | else if ((recno = /* Forward back reference */ | else if ((recno = /* Forward back reference */ |
| 5643 | find_parens(cd, name, namelen, | find_parens(cd, name, namelen, |
| 5644 | (options & PCRE_EXTENDED) != 0)) <= 0) | (options & PCRE_EXTENDED) != 0, utf8)) <= 0) |
| 5645 | { | { |
| 5646 | *errorcodeptr = ERR15; | *errorcodeptr = ERR15; |
| 5647 | goto FAILED; | goto FAILED; |
| # | Line 5074 we set the flag only if there is a liter | Line 5744 we set the flag only if there is a liter |
| 5744 | if (lengthptr == NULL) | if (lengthptr == NULL) |
| 5745 | { | { |
| 5746 | *code = OP_END; | *code = OP_END; |
| 5747 | if (recno != 0) | if (recno != 0) |
| 5748 | called = _pcre_find_bracket(cd->start_code, utf8, recno); | called = _pcre_find_bracket(cd->start_code, utf8, recno); |
| 5749 | ||
| 5750 | /* Forward reference */ | /* Forward reference */ |
| # | Line 5082 we set the flag only if there is a liter | Line 5752 we set the flag only if there is a liter |
| 5752 | if (called == NULL) | if (called == NULL) |
| 5753 | { | { |
| 5754 | if (find_parens(cd, NULL, recno, | if (find_parens(cd, NULL, recno, |
| 5755 | (options & PCRE_EXTENDED) != 0) < 0) | (options & PCRE_EXTENDED) != 0, utf8) < 0) |
| 5756 | { | { |
| 5757 | *errorcodeptr = ERR15; | *errorcodeptr = ERR15; |
| 5758 | goto FAILED; | goto FAILED; |
| 5759 | } | } |
| 5760 | ||
| 5761 | /* Fudge the value of "called" so that when it is inserted as an | |
| 5762 | offset below, what it actually inserted is the reference number | |
| 5763 | of the group. Then remember the forward reference. */ | |
| 5764 | ||
| 5765 | called = cd->start_code + recno; | called = cd->start_code + recno; |
| 5766 | PUTINC(cd->hwm, 0, code + 2 + LINK_SIZE - cd->start_code); | PUTINC(cd->hwm, 0, (int)(code + 1 - cd->start_code)); |
| 5767 | } | } |
| 5768 | ||
| 5769 | /* If not a forward reference, and the subpattern is still open, | /* If not a forward reference, and the subpattern is still open, |
| 5770 | this is a recursive call. We check to see if this is a left | this is a recursive call. We check to see if this is a left |
| 5771 | recursion that could loop for ever, and diagnose that case. */ | recursion that could loop for ever, and diagnose that case. We |
| 5772 | must not, however, do this check if we are in a conditional | |
| 5773 | subpattern because the condition might be testing for recursion in | |
| 5774 | a pattern such as /(?(R)a+|(?R)b)/, which is perfectly valid. | |
| 5775 | Forever loops are also detected at runtime, so those that occur in | |
| 5776 | conditional subpatterns will be picked up then. */ | |
| 5777 | ||
| 5778 | else if (GET(called, 1) == 0 && | else if (GET(called, 1) == 0 && cond_depth <= 0 && |
| 5779 | could_be_empty(called, code, bcptr, utf8)) | could_be_empty(called, code, bcptr, utf8, cd)) |
| 5780 | { | { |
| 5781 | *errorcodeptr = ERR40; | *errorcodeptr = ERR40; |
| 5782 | goto FAILED; | goto FAILED; |
| 5783 | } | } |
| 5784 | } | } |
| 5785 | ||
| 5786 | /* Insert the recursion/subroutine item, automatically wrapped inside | /* Insert the recursion/subroutine item. */ |
| "once" brackets. Set up a "previous group" length so that a | ||
| subsequent quantifier will work. */ | ||
| *code = OP_ONCE; | ||
| PUT(code, 1, 2 + 2*LINK_SIZE); | ||
| code += 1 + LINK_SIZE; | ||
| 5787 | ||
| 5788 | *code = OP_RECURSE; | *code = OP_RECURSE; |
| 5789 | PUT(code, 1, called - cd->start_code); | PUT(code, 1, (int)(called - cd->start_code)); |
| code += 1 + LINK_SIZE; | ||
| *code = OP_KET; | ||
| PUT(code, 1, 2 + 2*LINK_SIZE); | ||
| 5790 | code += 1 + LINK_SIZE; | code += 1 + LINK_SIZE; |
| length_prevgroup = 3 + 3*LINK_SIZE; | ||
| 5791 | } | } |
| 5792 | ||
| 5793 | /* Can't determine a first byte now */ | /* Can't determine a first byte now */ |
| # | Line 5180 we set the flag only if there is a liter | Line 5848 we set the flag only if there is a liter |
| 5848 | is necessary to ensure we correctly detect the start of the pattern in | is necessary to ensure we correctly detect the start of the pattern in |
| 5849 | both phases. | both phases. |
| 5850 | ||
| 5851 | If we are not at the pattern start, compile code to change the ims | If we are not at the pattern start, reset the greedy defaults and the |
| 5852 | options if this setting actually changes any of them, and reset the | case value for firstbyte and reqbyte. */ |
| greedy defaults and the case value for firstbyte and reqbyte. */ | ||
| 5853 | ||
| 5854 | if (*ptr == CHAR_RIGHT_PARENTHESIS) | if (*ptr == CHAR_RIGHT_PARENTHESIS) |
| 5855 | { | { |
| # | Line 5191 we set the flag only if there is a liter | Line 5858 we set the flag only if there is a liter |
| 5858 | { | { |
| 5859 | cd->external_options = newoptions; | cd->external_options = newoptions; |
| 5860 | } | } |
| 5861 | else | else |
| 5862 | { | { |
| if ((options & PCRE_IMS) != (newoptions & PCRE_IMS)) | ||
| { | ||
| *code++ = OP_OPT; | ||
| *code++ = newoptions & PCRE_IMS; | ||
| } | ||
| 5863 | greedy_default = ((newoptions & PCRE_UNGREEDY) != 0); | greedy_default = ((newoptions & PCRE_UNGREEDY) != 0); |
| 5864 | greedy_non_default = greedy_default ^ 1; | greedy_non_default = greedy_default ^ 1; |
| 5865 | req_caseopt = ((newoptions & PCRE_CASELESS) != 0)? REQ_CASELESS : 0; | req_caseopt = ((newoptions & PCRE_CASELESS) != 0)? REQ_CASELESS : 0; |
| 5866 | } | } |
| 5867 | ||
| 5868 | /* Change options at this level, and pass them back for use | /* Change options at this level, and pass them back for use |
| 5869 | in subsequent branches. When not at the start of the pattern, this | in subsequent branches. */ |
| information is also necessary so that a resetting item can be | ||
| compiled at the end of a group (if we are in a group). */ | ||
| 5870 | ||
| 5871 | *optionsptr = options = newoptions; | *optionsptr = options = newoptions; |
| 5872 | previous = NULL; /* This item can't be repeated */ | previous = NULL; /* This item can't be repeated */ |
| # | Line 5223 we set the flag only if there is a liter | Line 5883 we set the flag only if there is a liter |
| 5883 | } /* End of switch for character following (? */ | } /* End of switch for character following (? */ |
| 5884 | } /* End of (? handling */ | } /* End of (? handling */ |
| 5885 | ||
| 5886 | /* Opening parenthesis not followed by '?'. If PCRE_NO_AUTO_CAPTURE is set, | /* Opening parenthesis not followed by '*' or '?'. If PCRE_NO_AUTO_CAPTURE |
| 5887 | all unadorned brackets become non-capturing and behave like (?:...) | is set, all unadorned brackets become non-capturing and behave like (?:...) |
| 5888 | brackets. */ | brackets. */ |
| 5889 | ||
| 5890 | else if ((options & PCRE_NO_AUTO_CAPTURE) != 0) | else if ((options & PCRE_NO_AUTO_CAPTURE) != 0) |
| # | Line 5242 we set the flag only if there is a liter | Line 5902 we set the flag only if there is a liter |
| 5902 | skipbytes = 2; | skipbytes = 2; |
| 5903 | } | } |
| 5904 | ||
| 5905 | /* Process nested bracketed regex. Assertions may not be repeated, but | /* Process nested bracketed regex. Assertions used not to be repeatable, |
| 5906 | other kinds can be. All their opcodes are >= OP_ONCE. We copy code into a | but this was changed for Perl compatibility, so all kinds can now be |
| 5907 | non-register variable in order to be able to pass its address because some | repeated. We copy code into a non-register variable (tempcode) in order to |
| 5908 | compilers complain otherwise. Pass in a new setting for the ims options if | be able to pass its address because some compilers complain otherwise. */ |
| they have changed. */ | ||
| 5909 | ||
| 5910 | previous = (bravalue >= OP_ONCE)? code : NULL; | previous = code; /* For handling repetition */ |
| 5911 | *code = bravalue; | *code = bravalue; |
| 5912 | tempcode = code; | tempcode = code; |
| 5913 | tempreqvary = cd->req_varyopt; /* Save value before bracket */ | tempreqvary = cd->req_varyopt; /* Save value before bracket */ |
| 5914 | length_prevgroup = 0; /* Initialize for pre-compile phase */ | length_prevgroup = 0; /* Initialize for pre-compile phase */ |
| 5915 | ||
| 5916 | if (!compile_regex( | if (!compile_regex( |
| 5917 | newoptions, /* The complete new option state */ | newoptions, /* The complete new option state */ |
| 5918 | options & PCRE_IMS, /* The previous ims option state */ | &tempcode, /* Where to put code (updated) */ |
| 5919 | &tempcode, /* Where to put code (updated) */ | &ptr, /* Input pointer (updated) */ |
| 5920 | &ptr, /* Input pointer (updated) */ | errorcodeptr, /* Where to put an error message */ |
| errorcodeptr, /* Where to put an error message */ | ||
| 5921 | (bravalue == OP_ASSERTBACK || | (bravalue == OP_ASSERTBACK || |
| 5922 | bravalue == OP_ASSERTBACK_NOT), /* TRUE if back assert */ | bravalue == OP_ASSERTBACK_NOT), /* TRUE if back assert */ |
| 5923 | reset_bracount, /* True if (?| group */ | reset_bracount, /* True if (?| group */ |
| 5924 | skipbytes, /* Skip over bracket number */ | skipbytes, /* Skip over bracket number */ |
| 5925 | &subfirstbyte, /* For possible first char */ | cond_depth + |
| 5926 | &subreqbyte, /* For possible last char */ | ((bravalue == OP_COND)?1:0), /* Depth of condition subpatterns */ |
| 5927 | bcptr, /* Current branch chain */ | &subfirstbyte, /* For possible first char */ |
| 5928 | cd, /* Tables block */ | &subreqbyte, /* For possible last char */ |
| 5929 | (lengthptr == NULL)? NULL : /* Actual compile phase */ | bcptr, /* Current branch chain */ |
| 5930 | &length_prevgroup /* Pre-compile phase */ | cd, /* Tables block */ |
| 5931 | (lengthptr == NULL)? NULL : /* Actual compile phase */ | |
| 5932 | &length_prevgroup /* Pre-compile phase */ | |
| 5933 | )) | )) |
| 5934 | goto FAILED; | goto FAILED; |
| 5935 | ||
| 5936 | if (bravalue >= OP_ASSERT && bravalue <= OP_ASSERTBACK_NOT) | |
| 5937 | cd->assert_depth -= 1; | |
| 5938 | ||
| 5939 | /* At the end of compiling, code is still pointing to the start of the | /* At the end of compiling, code is still pointing to the start of the |
| 5940 | group, while tempcode has been updated to point past the end of the group | group, while tempcode has been updated to point past the end of the group |
| 5941 | and any option resetting that may follow it. The pattern pointer (ptr) | and any option resetting that may follow it. The pattern pointer (ptr) |
| # | Line 5343 we set the flag only if there is a liter | Line 6006 we set the flag only if there is a liter |
| 6006 | goto FAILED; | goto FAILED; |
| 6007 | } | } |
| 6008 | *lengthptr += length_prevgroup - 2 - 2*LINK_SIZE; | *lengthptr += length_prevgroup - 2 - 2*LINK_SIZE; |
| 6009 | *code++ = OP_BRA; | code++; /* This already contains bravalue */ |
| 6010 | PUTINC(code, 0, 1 + LINK_SIZE); | PUTINC(code, 0, 1 + LINK_SIZE); |
| 6011 | *code++ = OP_KET; | *code++ = OP_KET; |
| 6012 | PUTINC(code, 0, 1 + LINK_SIZE); | PUTINC(code, 0, 1 + LINK_SIZE); |
| # | Line 5416 we set the flag only if there is a liter | Line 6079 we set the flag only if there is a liter |
| 6079 | ||
| 6080 | /* ===================================================================*/ | /* ===================================================================*/ |
| 6081 | /* Handle metasequences introduced by \. For ones like \d, the ESC_ values | /* Handle metasequences introduced by \. For ones like \d, the ESC_ values |
| 6082 | are arranged to be the negation of the corresponding OP_values. For the | are arranged to be the negation of the corresponding OP_values in the |
| 6083 | back references, the values are ESC_REF plus the reference number. Only | default case when PCRE_UCP is not set. For the back references, the values |
| 6084 | back references and those types that consume a character may be repeated. | are ESC_REF plus the reference number. Only back references and those types |
| 6085 | We can test for values between ESC_b and ESC_Z for the latter; this may | that consume a character may be repeated. We can test for values between |
| 6086 | have to change if any new ones are ever created. */ | ESC_b and ESC_Z for the latter; this may have to change if any new ones are |
| 6087 | ever created. */ | |
| 6088 | ||
| 6089 | case CHAR_BACKSLASH: | case CHAR_BACKSLASH: |
| 6090 | tempptr = ptr; | tempptr = ptr; |
| # | Line 5510 we set the flag only if there is a liter | Line 6174 we set the flag only if there is a liter |
| 6174 | } | } |
| 6175 | ||
| 6176 | /* \k<name> or \k'name' is a back reference by name (Perl syntax). | /* \k<name> or \k'name' is a back reference by name (Perl syntax). |
| 6177 | We also support \k{name} (.NET syntax) */ | We also support \k{name} (.NET syntax). */ |
| 6178 | ||
| 6179 | if (-c == ESC_k && (ptr[1] == CHAR_LESS_THAN_SIGN || | if (-c == ESC_k) |
| ptr[1] == CHAR_APOSTROPHE || ptr[1] == CHAR_LEFT_CURLY_BRACKET)) | ||
| 6180 | { | { |
| 6181 | if ((ptr[1] != CHAR_LESS_THAN_SIGN && | |
| 6182 | ptr[1] != CHAR_APOSTROPHE && ptr[1] != CHAR_LEFT_CURLY_BRACKET)) | |
| 6183 | { | |
| 6184 | *errorcodeptr = ERR69; | |
| 6185 | break; | |
| 6186 | } | |
| 6187 | is_recurse = FALSE; | is_recurse = FALSE; |
| 6188 | terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)? | terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)? |
| 6189 | CHAR_GREATER_THAN_SIGN : (*ptr == CHAR_APOSTROPHE)? | CHAR_GREATER_THAN_SIGN : (*ptr == CHAR_APOSTROPHE)? |
| # | Line 5528 we set the flag only if there is a liter | Line 6197 we set the flag only if there is a liter |
| 6197 | ||
| 6198 | if (-c >= ESC_REF) | if (-c >= ESC_REF) |
| 6199 | { | { |
| 6200 | open_capitem *oc; | |
| 6201 | recno = -c - ESC_REF; | recno = -c - ESC_REF; |
| 6202 | ||
| 6203 | HANDLE_REFERENCE: /* Come here from named backref handling */ | HANDLE_REFERENCE: /* Come here from named backref handling */ |
| 6204 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
| 6205 | previous = code; | previous = code; |
| 6206 | *code++ = OP_REF; | *code++ = ((options & PCRE_CASELESS) != 0)? OP_REFI : OP_REF; |
| 6207 | PUT2INC(code, 0, recno); | PUT2INC(code, 0, recno); |
| 6208 | cd->backref_map |= (recno < 32)? (1 << recno) : 1; | cd->backref_map |= (recno < 32)? (1 << recno) : 1; |
| 6209 | if (recno > cd->top_backref) cd->top_backref = recno; | if (recno > cd->top_backref) cd->top_backref = recno; |
| 6210 | ||
| 6211 | /* Check to see if this back reference is recursive, that it, it | |
| 6212 | is inside the group that it references. A flag is set so that the | |
| 6213 | group can be made atomic. */ | |
| 6214 | ||
| 6215 | for (oc = cd->open_caps; oc != NULL; oc = oc->next) | |
| 6216 | { | |
| 6217 | if (oc->number == recno) | |
| 6218 | { | |
| 6219 | oc->flag = TRUE; | |
| 6220 | break; | |
| 6221 | } | |
| 6222 | } | |
| 6223 | } | } |
| 6224 | ||
| 6225 | /* So are Unicode property matches, if supported. */ | /* So are Unicode property matches, if supported. */ |
| # | Line 5566 we set the flag only if there is a liter | Line 6249 we set the flag only if there is a liter |
| 6249 | #endif | #endif |
| 6250 | ||
| 6251 | /* For the rest (including \X when Unicode properties are supported), we | /* For the rest (including \X when Unicode properties are supported), we |
| 6252 | can obtain the OP value by negating the escape value. */ | can obtain the OP value by negating the escape value in the default |
| 6253 | situation when PCRE_UCP is not set. When it *is* set, we substitute | |
| 6254 | Unicode property tests. */ | |
| 6255 | ||
| 6256 | else | else |
| 6257 | { | { |
| 6258 | previous = (-c > ESC_b && -c < ESC_Z)? code : NULL; | #ifdef SUPPORT_UCP |
| 6259 | *code++ = -c; | if (-c >= ESC_DU && -c <= ESC_wu) |
| 6260 | { | |
| 6261 | nestptr = ptr + 1; /* Where to resume */ | |
| 6262 | ptr = substitutes[-c - ESC_DU] - 1; /* Just before substitute */ | |
| 6263 | } | |
| 6264 | else | |
| 6265 | #endif | |
| 6266 | { | |
| 6267 | previous = (-c > ESC_b && -c < ESC_Z)? code : NULL; | |
| 6268 | *code++ = -c; | |
| 6269 | } | |
| 6270 | } | } |
| 6271 | continue; | continue; |
| 6272 | } | } |
| # | Line 5616 we set the flag only if there is a liter | Line 6311 we set the flag only if there is a liter |
| 6311 | ||
| 6312 | ONE_CHAR: | ONE_CHAR: |
| 6313 | previous = code; | previous = code; |
| 6314 | *code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; | *code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARI : OP_CHAR; |
| 6315 | for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; | for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; |
| 6316 | ||
| 6317 | /* Remember if \r or \n were seen */ | /* Remember if \r or \n were seen */ |
| # | Line 5680 return FALSE; | Line 6375 return FALSE; |
| 6375 | /* On entry, ptr is pointing past the bracket character, but on return it | /* On entry, ptr is pointing past the bracket character, but on return it |
| 6376 | points to the closing bracket, or vertical bar, or end of string. The code | points to the closing bracket, or vertical bar, or end of string. The code |
| 6377 | variable is pointing at the byte into which the BRA operator has been stored. | variable is pointing at the byte into which the BRA operator has been stored. |
| If the ims options are changed at the start (for a (?ims: group) or during any | ||
| branch, we need to insert an OP_OPT item at the start of every following branch | ||
| to ensure they get set correctly at run time, and also pass the new options | ||
| into every subsequent branch compile. | ||
| 6378 | This function is used during the pre-compile phase when we are trying to find | This function is used during the pre-compile phase when we are trying to find |
| 6379 | out the amount of memory needed, as well as during the real compile phase. The | out the amount of memory needed, as well as during the real compile phase. The |
| 6380 | value of lengthptr distinguishes the two phases. | value of lengthptr distinguishes the two phases. |
| 6381 | ||
| 6382 | Arguments: | Arguments: |
| 6383 | options option bits, including any changes for this subpattern | options option bits, including any changes for this subpattern |
| oldims previous settings of ims option bits | ||
| 6384 | codeptr -> the address of the current code pointer | codeptr -> the address of the current code pointer |
| 6385 | ptrptr -> the address of the current pattern pointer | ptrptr -> the address of the current pattern pointer |
| 6386 | errorcodeptr -> pointer to error code variable | errorcodeptr -> pointer to error code variable |
| 6387 | lookbehind TRUE if this is a lookbehind assertion | lookbehind TRUE if this is a lookbehind assertion |
| 6388 | reset_bracount TRUE to reset the count for each branch | reset_bracount TRUE to reset the count for each branch |
| 6389 | skipbytes skip this many bytes at start (for brackets and OP_COND) | skipbytes skip this many bytes at start (for brackets and OP_COND) |
| 6390 | cond_depth depth of nesting for conditional subpatterns | |
| 6391 | firstbyteptr place to put the first required character, or a negative number | firstbyteptr place to put the first required character, or a negative number |
| 6392 | reqbyteptr place to put the last required character, or a negative number | reqbyteptr place to put the last required character, or a negative number |
| 6393 | bcptr pointer to the chain of currently open branches | bcptr pointer to the chain of currently open branches |
| # | Line 5709 Returns: TRUE on success | Line 6399 Returns: TRUE on success |
| 6399 | */ | */ |
| 6400 | ||
| 6401 | static BOOL | static BOOL |
| 6402 | compile_regex(int options, int oldims, uschar **codeptr, const uschar **ptrptr, | compile_regex(int options, uschar **codeptr, const uschar **ptrptr, |
| 6403 | int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, | int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, |
| 6404 | int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, compile_data *cd, | int cond_depth, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, |
| 6405 | int *lengthptr) | compile_data *cd, int *lengthptr) |
| 6406 | { | { |
| 6407 | const uschar *ptr = *ptrptr; | const uschar *ptr = *ptrptr; |
| 6408 | uschar *code = *codeptr; | uschar *code = *codeptr; |
| # | Line 5729 int max_bracount; | Line 6419 int max_bracount; |
| 6419 | branch_chain bc; | branch_chain bc; |
| 6420 | ||
| 6421 | bc.outer = bcptr; | bc.outer = bcptr; |
| 6422 | bc.current = code; | bc.current_branch = code; |
| 6423 | ||
| 6424 | firstbyte = reqbyte = REQ_UNSET; | firstbyte = reqbyte = REQ_UNSET; |
| 6425 | ||
| # | Line 5748 them global. It tests the value of lengt | Line 6438 them global. It tests the value of lengt |
| 6438 | pre-compile phase to find out whether anything has yet been compiled or not. */ | pre-compile phase to find out whether anything has yet been compiled or not. */ |
| 6439 | ||
| 6440 | /* If this is a capturing subpattern, add to the chain of open capturing items | /* If this is a capturing subpattern, add to the chain of open capturing items |
| 6441 | so that we can detect them if (*ACCEPT) is encountered. */ | so that we can detect them if (*ACCEPT) is encountered. This is also used to |
| 6442 | detect groups that contain recursive back references to themselves. Note that | |
| 6443 | only OP_CBRA need be tested here; changing this opcode to one of its variants, | |
| 6444 | e.g. OP_SCBRAPOS, happens later, after the group has been compiled. */ | |
| 6445 | ||
| 6446 | if (*code == OP_CBRA) | if (*code == OP_CBRA) |
| 6447 | { | { |
| 6448 | capnumber = GET2(code, 1 + LINK_SIZE); | capnumber = GET2(code, 1 + LINK_SIZE); |
| 6449 | capitem.number = capnumber; | capitem.number = capnumber; |
| 6450 | capitem.next = cd->open_caps; | capitem.next = cd->open_caps; |
| 6451 | cd->open_caps = &capitem; | capitem.flag = FALSE; |
| 6452 | } | cd->open_caps = &capitem; |
| 6453 | } | |
| 6454 | ||
| 6455 | /* Offset is set zero to mark that this bracket is still open */ | /* Offset is set zero to mark that this bracket is still open */ |
| 6456 | ||
| # | Line 5773 for (;;) | Line 6467 for (;;) |
| 6467 | ||
| 6468 | if (reset_bracount) cd->bracount = orig_bracount; | if (reset_bracount) cd->bracount = orig_bracount; |
| 6469 | ||
| /* Handle a change of ims options at the start of the branch */ | ||
| if ((options & PCRE_IMS) != oldims) | ||
| { | ||
| *code++ = OP_OPT; | ||
| *code++ = options & PCRE_IMS; | ||
| length += 2; | ||
| } | ||
| 6470 | /* Set up dummy OP_REVERSE if lookbehind assertion */ | /* Set up dummy OP_REVERSE if lookbehind assertion */ |
| 6471 | ||
| 6472 | if (lookbehind) | if (lookbehind) |
| # | Line 5796 for (;;) | Line 6481 for (;;) |
| 6481 | into the length. */ | into the length. */ |
| 6482 | ||
| 6483 | if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstbyte, | if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstbyte, |
| 6484 | &branchreqbyte, &bc, cd, (lengthptr == NULL)? NULL : &length)) | &branchreqbyte, &bc, cond_depth, cd, |
| 6485 | (lengthptr == NULL)? NULL : &length)) | |
| 6486 | { | { |
| 6487 | *ptrptr = ptr; | *ptrptr = ptr; |
| 6488 | return FALSE; | return FALSE; |
| # | Line 5852 for (;;) | Line 6538 for (;;) |
| 6538 | ||
| 6539 | /* If lookbehind, check that this branch matches a fixed-length string, and | /* If lookbehind, check that this branch matches a fixed-length string, and |
| 6540 | put the length into the OP_REVERSE item. Temporarily mark the end of the | put the length into the OP_REVERSE item. Temporarily mark the end of the |
| 6541 | branch with OP_END. If the branch contains OP_RECURSE, the result is -3 | branch with OP_END. If the branch contains OP_RECURSE, the result is -3 |
| 6542 | because there may be forward references that we can't check here. Set a | because there may be forward references that we can't check here. Set a |
| 6543 | flag to cause another lookbehind check at the end. Why not do it all at the | flag to cause another lookbehind check at the end. Why not do it all at the |
| 6544 | end? Because common, erroneous checks are picked up here and the offset of | end? Because common, erroneous checks are picked up here and the offset of |
| 6545 | the problem can be shown. */ | the problem can be shown. */ |
| 6546 | ||
| 6547 | if (lookbehind) | if (lookbehind) |
| 6548 | { | { |
| 6549 | int fixed_length; | int fixed_length; |
| 6550 | *code = OP_END; | *code = OP_END; |
| 6551 | fixed_length = find_fixedlength(last_branch, options, FALSE, cd); | fixed_length = find_fixedlength(last_branch, (options & PCRE_UTF8) != 0, |
| 6552 | FALSE, cd); | |
| 6553 | DPRINTF(("fixed length = %d\n", fixed_length)); | DPRINTF(("fixed length = %d\n", fixed_length)); |
| 6554 | if (fixed_length == -3) | if (fixed_length == -3) |
| 6555 | { | { |
| 6556 | cd->check_lookbehind = TRUE; | cd->check_lookbehind = TRUE; |
| 6557 | } | } |
| 6558 | else if (fixed_length < 0) | else if (fixed_length < 0) |
| 6559 | { | { |
| 6560 | *errorcodeptr = (fixed_length == -2)? ERR36 : ERR25; | *errorcodeptr = (fixed_length == -2)? ERR36 : ERR25; |
| # | Line 5883 for (;;) | Line 6570 for (;;) |
| 6570 | of offsets, with the field in the BRA item now becoming an offset to the | of offsets, with the field in the BRA item now becoming an offset to the |
| 6571 | first alternative. If there are no alternatives, it points to the end of the | first alternative. If there are no alternatives, it points to the end of the |
| 6572 | group. The length in the terminating ket is always the length of the whole | group. The length in the terminating ket is always the length of the whole |
| 6573 | bracketed item. If any of the ims options were changed inside the group, | bracketed item. Return leaving the pointer at the terminating char. */ |
| compile a resetting op-code following, except at the very end of the pattern. | ||
| Return leaving the pointer at the terminating char. */ | ||
| 6574 | ||
| 6575 | if (*ptr != CHAR_VERTICAL_LINE) | if (*ptr != CHAR_VERTICAL_LINE) |
| 6576 | { | { |
| 6577 | if (lengthptr == NULL) | if (lengthptr == NULL) |
| 6578 | { | { |
| 6579 | int branch_length = code - last_branch; | int branch_length = (int)(code - last_branch); |
| 6580 | do | do |
| 6581 | { | { |
| 6582 | int prev_length = GET(last_branch, 1); | int prev_length = GET(last_branch, 1); |
| # | Line 5901 for (;;) | Line 6586 for (;;) |
| 6586 | } | } |
| 6587 | while (branch_length > 0); | while (branch_length > 0); |
| 6588 | } | } |
| /* If it was a capturing subpattern, remove it from the chain. */ | ||
| if (capnumber > 0) cd->open_caps = cd->open_caps->next; | ||
| 6589 | ||
| 6590 | /* Fill in the ket */ | /* Fill in the ket */ |
| 6591 | ||
| 6592 | *code = OP_KET; | *code = OP_KET; |
| 6593 | PUT(code, 1, code - start_bracket); | PUT(code, 1, (int)(code - start_bracket)); |
| 6594 | code += 1 + LINK_SIZE; | code += 1 + LINK_SIZE; |
| 6595 | ||
| 6596 | /* Resetting option if needed */ | /* If it was a capturing subpattern, check to see if it contained any |
| 6597 | recursive back references. If so, we must wrap it in atomic brackets. | |
| 6598 | In any event, remove the block from the chain. */ | |
| 6599 | ||
| 6600 | if ((options & PCRE_IMS) != oldims && *ptr == CHAR_RIGHT_PARENTHESIS) | if (capnumber > 0) |
| 6601 | { | { |
| 6602 | *code++ = OP_OPT; | if (cd->open_caps->flag) |
| 6603 | *code++ = oldims; | { |
| 6604 | length += 2; | memmove(start_bracket + 1 + LINK_SIZE, start_bracket, |
| 6605 | code - start_bracket); | |
| 6606 | *start_bracket = OP_ONCE; | |
| 6607 | code += 1 + LINK_SIZE; | |
| 6608 | PUT(start_bracket, 1, (int)(code - start_bracket)); | |
| 6609 | *code = OP_KET; | |
| 6610 | PUT(code, 1, (int)(code - start_bracket)); | |
| 6611 | code += 1 + LINK_SIZE; | |
| 6612 | length += 2 + 2*LINK_SIZE; | |
| 6613 | } | |
| 6614 | cd->open_caps = cd->open_caps->next; | |
| 6615 | } | } |
| 6616 | ||
| 6617 | /* Retain the highest bracket number, in case resetting was used. */ | /* Retain the highest bracket number, in case resetting was used. */ |
| # | Line 5960 for (;;) | Line 6653 for (;;) |
| 6653 | else | else |
| 6654 | { | { |
| 6655 | *code = OP_ALT; | *code = OP_ALT; |
| 6656 | PUT(code, 1, code - last_branch); | PUT(code, 1, (int)(code - last_branch)); |
| 6657 | bc.current = last_branch = code; | bc.current_branch = last_branch = code; |
| 6658 | code += 1 + LINK_SIZE; | code += 1 + LINK_SIZE; |
| 6659 | } | } |
| 6660 | ||
| # | Line 5980 for (;;) | Line 6673 for (;;) |
| 6673 | /* Try to find out if this is an anchored regular expression. Consider each | /* Try to find out if this is an anchored regular expression. Consider each |
| 6674 | alternative branch. If they all start with OP_SOD or OP_CIRC, or with a bracket | alternative branch. If they all start with OP_SOD or OP_CIRC, or with a bracket |
| 6675 | all of whose alternatives start with OP_SOD or OP_CIRC (recurse ad lib), then | all of whose alternatives start with OP_SOD or OP_CIRC (recurse ad lib), then |
| 6676 | it's anchored. However, if this is a multiline pattern, then only OP_SOD | it's anchored. However, if this is a multiline pattern, then only OP_SOD will |
| 6677 | counts, since OP_CIRC can match in the middle. | be found, because ^ generates OP_CIRCM in that mode. |
| 6678 | ||
| 6679 | We can also consider a regex to be anchored if OP_SOM starts all its branches. | We can also consider a regex to be anchored if OP_SOM starts all its branches. |
| 6680 | This is the code for \G, which means "match at start of match position, taking | This is the code for \G, which means "match at start of match position, taking |
| # | Line 6002 of the more common cases more precisely. | Line 6695 of the more common cases more precisely. |
| 6695 | ||
| 6696 | Arguments: | Arguments: |
| 6697 | code points to start of expression (the bracket) | code points to start of expression (the bracket) |
| options points to the options setting | ||
| 6698 | bracket_map a bitmap of which brackets we are inside while testing; this | bracket_map a bitmap of which brackets we are inside while testing; this |
| 6699 | handles up to substring 31; after that we just have to take | handles up to substring 31; after that we just have to take |
| 6700 | the less precise approach | the less precise approach |
| # | Line 6012 Returns: TRUE or FALSE | Line 6704 Returns: TRUE or FALSE |
| 6704 | */ | */ |
| 6705 | ||
| 6706 | static BOOL | static BOOL |
| 6707 | is_anchored(register const uschar *code, int *options, unsigned int bracket_map, | is_anchored(register const uschar *code, unsigned int bracket_map, |
| 6708 | unsigned int backref_map) | unsigned int backref_map) |
| 6709 | { | { |
| 6710 | do { | do { |
| 6711 | const uschar *scode = first_significant_code(code + _pcre_OP_lengths[*code], | const uschar *scode = first_significant_code(code + _pcre_OP_lengths[*code], |
| 6712 | options, PCRE_MULTILINE, FALSE); | FALSE); |
| 6713 | register int op = *scode; | register int op = *scode; |
| 6714 | ||
| 6715 | /* Non-capturing brackets */ | /* Non-capturing brackets */ |
| 6716 | ||
| 6717 | if (op == OP_BRA) | if (op == OP_BRA || op == OP_BRAPOS || |
| 6718 | op == OP_SBRA || op == OP_SBRAPOS) | |
| 6719 | { | { |
| 6720 | if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE; | if (!is_anchored(scode, bracket_map, backref_map)) return FALSE; |
| 6721 | } | } |
| 6722 | ||
| 6723 | /* Capturing brackets */ | /* Capturing brackets */ |
| 6724 | ||
| 6725 | else if (op == OP_CBRA) | else if (op == OP_CBRA || op == OP_CBRAPOS || |
| 6726 | op == OP_SCBRA || op == OP_SCBRAPOS) | |
| 6727 | { | { |
| 6728 | int n = GET2(scode, 1+LINK_SIZE); | int n = GET2(scode, 1+LINK_SIZE); |
| 6729 | int new_map = bracket_map | ((n < 32)? (1 << n) : 1); | int new_map = bracket_map | ((n < 32)? (1 << n) : 1); |
| 6730 | if (!is_anchored(scode, options, new_map, backref_map)) return FALSE; | if (!is_anchored(scode, new_map, backref_map)) return FALSE; |
| 6731 | } | } |
| 6732 | ||
| 6733 | /* Other brackets */ | /* Other brackets */ |
| 6734 | ||
| 6735 | else if (op == OP_ASSERT || op == OP_ONCE || op == OP_COND) | else if (op == OP_ASSERT || op == OP_ONCE || op == OP_COND) |
| 6736 | { | { |
| 6737 | if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE; | if (!is_anchored(scode, bracket_map, backref_map)) return FALSE; |
| 6738 | } | } |
| 6739 | ||
| 6740 | /* .* is not anchored unless DOTALL is set (which generates OP_ALLANY) and | /* .* is not anchored unless DOTALL is set (which generates OP_ALLANY) and |
| # | Line 6055 do { | Line 6749 do { |
| 6749 | ||
| 6750 | /* Check for explicit anchoring */ | /* Check for explicit anchoring */ |
| 6751 | ||
| 6752 | else if (op != OP_SOD && op != OP_SOM && | else if (op != OP_SOD && op != OP_SOM && op != OP_CIRC) return FALSE; |
| ((*options & PCRE_MULTILINE) != 0 || op != OP_CIRC)) | ||
| return FALSE; | ||
| 6753 | code += GET(code, 1); | code += GET(code, 1); |
| 6754 | } | } |
| 6755 | while (*code == OP_ALT); /* Loop for each alternative */ | while (*code == OP_ALT); /* Loop for each alternative */ |
| # | Line 6093 is_startline(const uschar *code, unsigne | Line 6785 is_startline(const uschar *code, unsigne |
| 6785 | { | { |
| 6786 | do { | do { |
| 6787 | const uschar *scode = first_significant_code(code + _pcre_OP_lengths[*code], | const uschar *scode = first_significant_code(code + _pcre_OP_lengths[*code], |
| 6788 | NULL, 0, FALSE); | FALSE); |
| 6789 | register int op = *scode; | register int op = *scode; |
| 6790 | ||
| 6791 | /* If we are at the start of a conditional assertion group, *both* the | /* If we are at the start of a conditional assertion group, *both* the |
| # | Line 6108 do { | Line 6800 do { |
| 6800 | switch (*scode) | switch (*scode) |
| 6801 | { | { |
| 6802 | case OP_CREF: | case OP_CREF: |
| 6803 | case OP_NCREF: | |
| 6804 | case OP_RREF: | case OP_RREF: |
| 6805 | case OP_NRREF: | |
| 6806 | case OP_DEF: | case OP_DEF: |
| 6807 | return FALSE; | return FALSE; |
| 6808 | ||
| # | Line 6118 do { | Line 6812 do { |
| 6812 | scode += 1 + LINK_SIZE; | scode += 1 + LINK_SIZE; |
| 6813 | break; | break; |
| 6814 | } | } |
| 6815 | scode = first_significant_code(scode, NULL, 0, FALSE); | scode = first_significant_code(scode, FALSE); |
| 6816 | op = *scode; | op = *scode; |
| 6817 | } | } |
| 6818 | ||
| 6819 | /* Non-capturing brackets */ | /* Non-capturing brackets */ |
| 6820 | ||
| 6821 | if (op == OP_BRA) | if (op == OP_BRA || op == OP_BRAPOS || |
| 6822 | op == OP_SBRA || op == OP_SBRAPOS) | |
| 6823 | { | { |
| 6824 | if (!is_startline(scode, bracket_map, backref_map)) return FALSE; | if (!is_startline(scode, bracket_map, backref_map)) return FALSE; |
| 6825 | } | } |
| 6826 | ||
| 6827 | /* Capturing brackets */ | /* Capturing brackets */ |
| 6828 |