| 409 |
"(*MARK) must have an argument\0" |
"(*MARK) must have an argument\0" |
| 410 |
"this version of PCRE is not compiled with PCRE_UCP support\0" |
"this version of PCRE is not compiled with PCRE_UCP support\0" |
| 411 |
"\\c must be followed by an ASCII character\0" |
"\\c must be followed by an ASCII character\0" |
| 412 |
"\\k is not followed by a braced, angle-bracketed, or quoted name\0" |
"\\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 |
| 681 |
*errorcodeptr = ERR37; |
*errorcodeptr = ERR37; |
| 682 |
break; |
break; |
| 683 |
|
|
| 684 |
/* In a character class, \g is just a literal "g". Outside a character |
/* 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: |
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 |
| 921 |
} |
} |
| 922 |
|
|
| 923 |
/* Perl supports \N{name} for character names, as well as plain \N for "not |
/* 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 |
newline". PCRE does not support \N{name}. However, it does support |
| 925 |
quantification such as \N{2,3}. */ |
quantification such as \N{2,3}. */ |
| 926 |
|
|
| 927 |
if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET && |
if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET && |
| 1982 |
/* For a recursion/subroutine call, if its end has been reached, which |
/* 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 |
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 |
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 |
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 |
called only when doing the real compile, not during the pre-compile that |
| 1987 |
measures the size of the compiled pattern. */ |
measures the size of the compiled pattern. */ |
| 1988 |
|
|
| 1989 |
if (c == OP_RECURSE) |
if (c == OP_RECURSE) |
| 1990 |
{ |
{ |
| 1991 |
const uschar *scode; |
const uschar *scode; |
| 1992 |
BOOL empty_branch; |
BOOL empty_branch; |
| 1993 |
|
|
| 1994 |
/* Test for forward reference */ |
/* Test for forward reference */ |
| 1995 |
|
|
| 1996 |
for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) |
for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) |
| 1997 |
if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; |
if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; |
| 1998 |
|
|
| 1999 |
/* Not a forward reference, test for completed backward reference */ |
/* Not a forward reference, test for completed backward reference */ |
| 2000 |
|
|
| 2001 |
empty_branch = FALSE; |
empty_branch = FALSE; |
| 2002 |
scode = cd->start_code + GET(code, 1); |
scode = cd->start_code + GET(code, 1); |
| 2003 |
if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ |
if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ |
| 2004 |
|
|
| 2005 |
/* Completed backwards reference */ |
/* Completed backwards reference */ |
| 2006 |
|
|
| 2007 |
do |
do |
| 2008 |
{ |
{ |
| 2009 |
if (could_be_empty_branch(scode, endcode, utf8, cd)) |
if (could_be_empty_branch(scode, endcode, utf8, cd)) |
| 2014 |
scode += GET(scode, 1); |
scode += GET(scode, 1); |
| 2015 |
} |
} |
| 2016 |
while (*scode == OP_ALT); |
while (*scode == OP_ALT); |
| 2017 |
|
|
| 2018 |
if (!empty_branch) return FALSE; /* All branches are non-empty */ |
if (!empty_branch) return FALSE; /* All branches are non-empty */ |
| 2019 |
continue; |
continue; |
| 2020 |
} |
} |
| 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 |
This function is called only during the real compile, not during the |
| 2244 |
pre-compile. |
pre-compile. |
| 2245 |
|
|
| 2246 |
Arguments: |
Arguments: |
| 2296 |
It seems that the appearance of a nested POSIX class supersedes an apparent |
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 |
external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or |
| 2298 |
a digit. Also, unescaped square brackets may also appear as part of class |
a digit. Also, unescaped square brackets may also appear as part of class |
| 2299 |
names. For example, [:a[:abc]b:] gives unknown class "[:abc]b:]"in Perl. |
names. For example, [:a[:abc]b:] gives unknown class "[:abc]b:]"in Perl. |
| 2300 |
|
|
| 2301 |
Arguments: |
Arguments: |
| 2302 |
ptr pointer to the initial [ |
ptr pointer to the initial [ |
| 2312 |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 2313 |
for (++ptr; *ptr != 0; ptr++) |
for (++ptr; *ptr != 0; ptr++) |
| 2314 |
{ |
{ |
| 2315 |
if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2316 |
ptr++; |
ptr++; |
| 2317 |
else |
else |
| 2318 |
{ |
{ |
| 2319 |
if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2325 |
(ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || |
(ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || |
| 2326 |
ptr[1] == CHAR_EQUALS_SIGN) && |
ptr[1] == CHAR_EQUALS_SIGN) && |
| 2327 |
check_posix_syntax(ptr, endptr)) |
check_posix_syntax(ptr, endptr)) |
| 2328 |
return FALSE; |
return FALSE; |
| 2329 |
} |
} |
| 2330 |
} |
} |
| 2331 |
return FALSE; |
return FALSE; |
| 3035 |
firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) |
firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) |
| 3036 |
reqbyteptr set to the last literal character required, else < 0 |
reqbyteptr set to the last literal character required, else < 0 |
| 3037 |
bcptr points to current branch chain |
bcptr points to current branch chain |
| 3038 |
cond_depth conditional nesting depth |
cond_depth conditional nesting depth |
| 3039 |
cd contains pointers to tables etc. |
cd contains pointers to tables etc. |
| 3040 |
lengthptr NULL during the real compile phase |
lengthptr NULL during the real compile phase |
| 3041 |
points to length accumulator during pre-compile phase |
points to length accumulator during pre-compile phase |
| 3075 |
uschar classbits[32]; |
uschar classbits[32]; |
| 3076 |
|
|
| 3077 |
/* We can fish out the UTF-8 setting once and for all into a BOOL, but we |
/* We can fish out the UTF-8 setting once and for all into a BOOL, but we |
| 3078 |
must not do this for other options (e.g. PCRE_EXTENDED) because they may change |
must not do this for other options (e.g. PCRE_EXTENDED) because they may change |
| 3079 |
dynamically as we process the pattern. */ |
dynamically as we process the pattern. */ |
| 3080 |
|
|
| 3081 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 4250 |
ptr++; |
ptr++; |
| 4251 |
} |
} |
| 4252 |
else repeat_type = greedy_default; |
else repeat_type = greedy_default; |
| 4253 |
|
|
| 4254 |
/* If previous was a recursion call, wrap it in atomic brackets so that |
/* If previous was a recursion call, wrap it in atomic brackets so that |
| 4255 |
previous becomes the atomic group. All recursions were so wrapped in the |
previous becomes the atomic group. All recursions were so wrapped in the |
| 4256 |
past, but it no longer happens for non-repeated recursions. In fact, the |
past, but it no longer happens for non-repeated recursions. In fact, the |
| 4257 |
repeated ones could be re-implemented independently so as not to need this, |
repeated ones could be re-implemented independently so as not to need this, |
| 4258 |
but for the moment we rely on the code for repeating groups. */ |
but for the moment we rely on the code for repeating groups. */ |
| 4259 |
|
|
| 4260 |
if (*previous == OP_RECURSE) |
if (*previous == OP_RECURSE) |
| 4261 |
{ |
{ |
| 4262 |
memmove(previous + 1 + LINK_SIZE, previous, 1 + LINK_SIZE); |
memmove(previous + 1 + LINK_SIZE, previous, 1 + LINK_SIZE); |
| 4266 |
PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE); |
PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE); |
| 4267 |
code += 2 + 2 * LINK_SIZE; |
code += 2 + 2 * LINK_SIZE; |
| 4268 |
length_prevgroup = 3 + 3*LINK_SIZE; |
length_prevgroup = 3 + 3*LINK_SIZE; |
| 4269 |
|
|
| 4270 |
/* When actually compiling, we need to check whether this was a forward |
/* When actually compiling, we need to check whether this was a forward |
| 4271 |
reference, and if so, adjust the offset. */ |
reference, and if so, adjust the offset. */ |
| 4272 |
|
|
| 4273 |
if (lengthptr == NULL && cd->hwm >= cd->start_workspace + LINK_SIZE) |
if (lengthptr == NULL && cd->hwm >= cd->start_workspace + LINK_SIZE) |
| 4274 |
{ |
{ |
| 4275 |
int offset = GET(cd->hwm, -LINK_SIZE); |
int offset = GET(cd->hwm, -LINK_SIZE); |
| 4276 |
if (offset == previous + 1 - cd->start_code) |
if (offset == previous + 1 - cd->start_code) |
| 4277 |
PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE); |
PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE); |
| 4278 |
} |
} |
| 4279 |
} |
} |
| 4280 |
|
|
| 4281 |
/* Now handle repetition for the different types of item. */ |
/* Now handle repetition for the different types of item. */ |
| 4282 |
|
|
| 4283 |
/* If previous was a character match, abolish the item and generate a |
/* If previous was a character match, abolish the item and generate a |
| 4575 |
opcodes such as BRA and CBRA, as this is the place where they get converted |
opcodes such as BRA and CBRA, as this is the place where they get converted |
| 4576 |
into the more special varieties such as BRAPOS and SBRA. A test for >= |
into the more special varieties such as BRAPOS and SBRA. A test for >= |
| 4577 |
OP_ASSERT and <= OP_COND includes ASSERT, ASSERT_NOT, ASSERTBACK, |
OP_ASSERT and <= OP_COND includes ASSERT, ASSERT_NOT, ASSERTBACK, |
| 4578 |
ASSERTBACK_NOT, ONCE, BRA, CBRA, and COND. Originally, PCRE did not allow |
ASSERTBACK_NOT, ONCE, BRA, CBRA, and COND. Originally, PCRE did not allow |
| 4579 |
repetition of assertions, but now it does, for Perl compatibility. */ |
repetition of assertions, but now it does, for Perl compatibility. */ |
| 4580 |
|
|
| 4581 |
else if (*previous >= OP_ASSERT && *previous <= OP_COND) |
else if (*previous >= OP_ASSERT && *previous <= OP_COND) |
| 4582 |
{ |
{ |
| 4583 |
register int i; |
register int i; |
| 4584 |
int len = (int)(code - previous); |
int len = (int)(code - previous); |
| 4585 |
uschar *bralink = NULL; |
uschar *bralink = NULL; |
| 4586 |
uschar *brazeroptr = NULL; |
uschar *brazeroptr = NULL; |
| 4587 |
|
|
| 4588 |
/* Repeating a DEFINE group is pointless, but Perl allows the syntax, so |
/* Repeating a DEFINE group is pointless, but Perl allows the syntax, so |
| 4589 |
we just ignore the repeat. */ |
we just ignore the repeat. */ |
| 4590 |
|
|
| 4591 |
if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) |
if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) |
| 4592 |
goto END_REPEAT; |
goto END_REPEAT; |
| 4593 |
|
|
| 4594 |
/* There is no sense in actually repeating assertions. The only potential |
/* There is no sense in actually repeating assertions. The only potential |
| 4595 |
use of repetition is in cases when the assertion is optional. Therefore, |
use of repetition is in cases when the assertion is optional. Therefore, |
| 4596 |
if the minimum is greater than zero, just ignore the repeat. If the |
if the minimum is greater than zero, just ignore the repeat. If the |
| 4597 |
maximum is not not zero or one, set it to 1. */ |
maximum is not not zero or one, set it to 1. */ |
| 4598 |
|
|
| 4599 |
if (*previous < OP_ONCE) /* Assertion */ |
if (*previous < OP_ONCE) /* Assertion */ |
| 4600 |
{ |
{ |
| 4601 |
if (repeat_min > 0) goto END_REPEAT; |
if (repeat_min > 0) goto END_REPEAT; |
| 4602 |
if (repeat_max < 0 || repeat_max > 1) repeat_max = 1; |
if (repeat_max < 0 || repeat_max > 1) repeat_max = 1; |
| 4603 |
} |
} |
| 4604 |
|
|
| 4605 |
/* 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 |
| 4606 |
OP_BRAZERO in front of it, and because the group appears once in the |
OP_BRAZERO in front of it, and because the group appears once in the |
| 4834 |
{ |
{ |
| 4835 |
uschar *ketcode = code - 1 - LINK_SIZE; |
uschar *ketcode = code - 1 - LINK_SIZE; |
| 4836 |
uschar *bracode = ketcode - GET(ketcode, 1); |
uschar *bracode = ketcode - GET(ketcode, 1); |
| 4837 |
|
|
| 4838 |
if (*bracode == OP_ONCE && possessive_quantifier) *bracode = OP_BRA; |
if (*bracode == OP_ONCE && possessive_quantifier) *bracode = OP_BRA; |
| 4839 |
if (*bracode == OP_ONCE) |
if (*bracode == OP_ONCE) |
| 4840 |
*ketcode = OP_KETRMAX + repeat_type; |
*ketcode = OP_KETRMAX + repeat_type; |
| 4841 |
else |
else |
| 4842 |
{ |
{ |
| 4887 |
there are special alternative opcodes for this case. For anything else, we |
there are special alternative opcodes for this case. For anything else, we |
| 4888 |
wrap the entire repeated item inside OP_ONCE brackets. Logically, the '+' |
wrap the entire repeated item inside OP_ONCE brackets. Logically, the '+' |
| 4889 |
notation is just syntactic sugar, taken from Sun's Java package, but the |
notation is just syntactic sugar, taken from Sun's Java package, but the |
| 4890 |
special opcodes can optimize it. |
special opcodes can optimize it. |
| 4891 |
|
|
| 4892 |
Possessively repeated subpatterns have already been handled in the code |
Possessively repeated subpatterns have already been handled in the code |
| 4893 |
just above, so possessive_quantifier is always FALSE for them at this |
just above, so possessive_quantifier is always FALSE for them at this |
| 4894 |
stage. |
stage. |
| 4895 |
|
|
| 4896 |
Note that the repeated item starts at tempcode, not at previous, which |
Note that the repeated item starts at tempcode, not at previous, which |
| 4897 |
might be the first part of a string whose (former) last char we repeated. |
might be the first part of a string whose (former) last char we repeated. |
| 4898 |
|
|
| 4997 |
previous = NULL; |
previous = NULL; |
| 4998 |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0) {}; |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0) {}; |
| 4999 |
namelen = (int)(ptr - name); |
namelen = (int)(ptr - name); |
| 5000 |
|
|
| 5001 |
/* It appears that Perl allows any characters whatsoever, other than |
/* It appears that Perl allows any characters whatsoever, other than |
| 5002 |
a closing parenthesis, to appear in arguments, so we no longer insist on |
a closing parenthesis, to appear in arguments, so we no longer insist on |
| 5003 |
letters, digits, and underscores. */ |
letters, digits, and underscores. */ |
| 5004 |
|
|
| 5005 |
if (*ptr == CHAR_COLON) |
if (*ptr == CHAR_COLON) |
| 5006 |
{ |
{ |
| 5008 |
while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++; |
while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++; |
| 5009 |
arglen = (int)(ptr - arg); |
arglen = (int)(ptr - arg); |
| 5010 |
} |
} |
| 5011 |
|
|
| 5012 |
if (*ptr != CHAR_RIGHT_PARENTHESIS) |
if (*ptr != CHAR_RIGHT_PARENTHESIS) |
| 5013 |
{ |
{ |
| 5014 |
*errorcodeptr = ERR60; |
*errorcodeptr = ERR60; |
| 5022 |
if (namelen == verbs[i].len && |
if (namelen == verbs[i].len && |
| 5023 |
strncmp((char *)name, vn, namelen) == 0) |
strncmp((char *)name, vn, namelen) == 0) |
| 5024 |
{ |
{ |
| 5025 |
/* Check for open captures before ACCEPT and convert it to |
/* Check for open captures before ACCEPT and convert it to |
| 5026 |
ASSERT_ACCEPT if in an assertion. */ |
ASSERT_ACCEPT if in an assertion. */ |
| 5027 |
|
|
| 5028 |
if (verbs[i].op == OP_ACCEPT) |
if (verbs[i].op == OP_ACCEPT) |
| 5032 |
{ |
{ |
| 5033 |
*errorcodeptr = ERR59; |
*errorcodeptr = ERR59; |
| 5034 |
goto FAILED; |
goto FAILED; |
| 5035 |
} |
} |
| 5036 |
cd->had_accept = TRUE; |
cd->had_accept = TRUE; |
| 5037 |
for (oc = cd->open_caps; oc != NULL; oc = oc->next) |
for (oc = cd->open_caps; oc != NULL; oc = oc->next) |
| 5038 |
{ |
{ |
| 5333 |
/* ------------------------------------------------------------ */ |
/* ------------------------------------------------------------ */ |
| 5334 |
case CHAR_EQUALS_SIGN: /* Positive lookahead */ |
case CHAR_EQUALS_SIGN: /* Positive lookahead */ |
| 5335 |
bravalue = OP_ASSERT; |
bravalue = OP_ASSERT; |
| 5336 |
cd->assert_depth += 1; |
cd->assert_depth += 1; |
| 5337 |
ptr++; |
ptr++; |
| 5338 |
break; |
break; |
| 5339 |
|
|
| 5348 |
continue; |
continue; |
| 5349 |
} |
} |
| 5350 |
bravalue = OP_ASSERT_NOT; |
bravalue = OP_ASSERT_NOT; |
| 5351 |
cd->assert_depth += 1; |
cd->assert_depth += 1; |
| 5352 |
break; |
break; |
| 5353 |
|
|
| 5354 |
|
|
| 5358 |
{ |
{ |
| 5359 |
case CHAR_EQUALS_SIGN: /* Positive lookbehind */ |
case CHAR_EQUALS_SIGN: /* Positive lookbehind */ |
| 5360 |
bravalue = OP_ASSERTBACK; |
bravalue = OP_ASSERTBACK; |
| 5361 |
cd->assert_depth += 1; |
cd->assert_depth += 1; |
| 5362 |
ptr += 2; |
ptr += 2; |
| 5363 |
break; |
break; |
| 5364 |
|
|
| 5365 |
case CHAR_EXCLAMATION_MARK: /* Negative lookbehind */ |
case CHAR_EXCLAMATION_MARK: /* Negative lookbehind */ |
| 5366 |
bravalue = OP_ASSERTBACK_NOT; |
bravalue = OP_ASSERTBACK_NOT; |
| 5367 |
cd->assert_depth += 1; |
cd->assert_depth += 1; |
| 5368 |
ptr += 2; |
ptr += 2; |
| 5369 |
break; |
break; |
| 5370 |
|
|
| 5608 |
|
|
| 5609 |
temp = cd->end_pattern; |
temp = cd->end_pattern; |
| 5610 |
cd->end_pattern = ptr; |
cd->end_pattern = ptr; |
| 5611 |
recno = find_parens(cd, name, namelen, |
recno = find_parens(cd, name, namelen, |
| 5612 |
(options & PCRE_EXTENDED) != 0, utf8); |
(options & PCRE_EXTENDED) != 0, utf8); |
| 5613 |
cd->end_pattern = temp; |
cd->end_pattern = temp; |
| 5614 |
if (recno < 0) recno = 0; /* Forward ref; set dummy number */ |
if (recno < 0) recno = 0; /* Forward ref; set dummy number */ |
| 5764 |
/* If not a forward reference, and the subpattern is still open, |
/* If not a forward reference, and the subpattern is still open, |
| 5765 |
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 |
| 5766 |
recursion that could loop for ever, and diagnose that case. We |
recursion that could loop for ever, and diagnose that case. We |
| 5767 |
must not, however, do this check if we are in a conditional |
must not, however, do this check if we are in a conditional |
| 5768 |
subpattern because the condition might be testing for recursion in |
subpattern because the condition might be testing for recursion in |
| 5769 |
a pattern such as /(?(R)a+|(?R)b)/, which is perfectly valid. |
a pattern such as /(?(R)a+|(?R)b)/, which is perfectly valid. |
| 5770 |
Forever loops are also detected at runtime, so those that occur in |
Forever loops are also detected at runtime, so those that occur in |
| 5771 |
conditional subpatterns will be picked up then. */ |
conditional subpatterns will be picked up then. */ |
| 5772 |
|
|
| 5773 |
else if (GET(called, 1) == 0 && cond_depth <= 0 && |
else if (GET(called, 1) == 0 && cond_depth <= 0 && |
| 5779 |
} |
} |
| 5780 |
|
|
| 5781 |
/* Insert the recursion/subroutine item. */ |
/* Insert the recursion/subroutine item. */ |
| 5782 |
|
|
| 5783 |
*code = OP_RECURSE; |
*code = OP_RECURSE; |
| 5784 |
PUT(code, 1, (int)(called - cd->start_code)); |
PUT(code, 1, (int)(called - cd->start_code)); |
| 5785 |
code += 1 + LINK_SIZE; |
code += 1 + LINK_SIZE; |
| 5903 |
be able to pass its address because some compilers complain otherwise. */ |
be able to pass its address because some compilers complain otherwise. */ |
| 5904 |
|
|
| 5905 |
previous = code; /* For handling repetition */ |
previous = code; /* For handling repetition */ |
| 5906 |
*code = bravalue; |
*code = bravalue; |
| 5907 |
tempcode = code; |
tempcode = code; |
| 5908 |
tempreqvary = cd->req_varyopt; /* Save value before bracket */ |
tempreqvary = cd->req_varyopt; /* Save value before bracket */ |
| 5909 |
length_prevgroup = 0; /* Initialize for pre-compile phase */ |
length_prevgroup = 0; /* Initialize for pre-compile phase */ |
| 5910 |
|
|
| 5911 |
if (!compile_regex( |
if (!compile_regex( |
| 5912 |
newoptions, /* The complete new option state */ |
newoptions, /* The complete new option state */ |
| 5913 |
&tempcode, /* Where to put code (updated) */ |
&tempcode, /* Where to put code (updated) */ |
| 5914 |
&ptr, /* Input pointer (updated) */ |
&ptr, /* Input pointer (updated) */ |
| 5917 |
bravalue == OP_ASSERTBACK_NOT), /* TRUE if back assert */ |
bravalue == OP_ASSERTBACK_NOT), /* TRUE if back assert */ |
| 5918 |
reset_bracount, /* True if (?| group */ |
reset_bracount, /* True if (?| group */ |
| 5919 |
skipbytes, /* Skip over bracket number */ |
skipbytes, /* Skip over bracket number */ |
| 5920 |
cond_depth + |
cond_depth + |
| 5921 |
((bravalue == OP_COND)?1:0), /* Depth of condition subpatterns */ |
((bravalue == OP_COND)?1:0), /* Depth of condition subpatterns */ |
| 5922 |
&subfirstbyte, /* For possible first char */ |
&subfirstbyte, /* For possible first char */ |
| 5923 |
&subreqbyte, /* For possible last char */ |
&subreqbyte, /* For possible last char */ |
| 5927 |
&length_prevgroup /* Pre-compile phase */ |
&length_prevgroup /* Pre-compile phase */ |
| 5928 |
)) |
)) |
| 5929 |
goto FAILED; |
goto FAILED; |
| 5930 |
|
|
| 5931 |
if (bravalue >= OP_ASSERT && bravalue <= OP_ASSERTBACK_NOT) |
if (bravalue >= OP_ASSERT && bravalue <= OP_ASSERTBACK_NOT) |
| 5932 |
cd->assert_depth -= 1; |
cd->assert_depth -= 1; |
| 5933 |
|
|
| 5934 |
/* 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 |
| 5935 |
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 |
| 6177 |
ptr[1] != CHAR_APOSTROPHE && ptr[1] != CHAR_LEFT_CURLY_BRACKET)) |
ptr[1] != CHAR_APOSTROPHE && ptr[1] != CHAR_LEFT_CURLY_BRACKET)) |
| 6178 |
{ |
{ |
| 6179 |
*errorcodeptr = ERR69; |
*errorcodeptr = ERR69; |
| 6180 |
break; |
break; |
| 6181 |
} |
} |
| 6182 |
is_recurse = FALSE; |
is_recurse = FALSE; |
| 6183 |
terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)? |
terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)? |
| 6184 |
CHAR_GREATER_THAN_SIGN : (*ptr == CHAR_APOSTROPHE)? |
CHAR_GREATER_THAN_SIGN : (*ptr == CHAR_APOSTROPHE)? |
| 6185 |
CHAR_APOSTROPHE : CHAR_RIGHT_CURLY_BRACKET; |
CHAR_APOSTROPHE : CHAR_RIGHT_CURLY_BRACKET; |
| 6186 |
goto NAMED_REF_OR_RECURSE; |
goto NAMED_REF_OR_RECURSE; |
| 6187 |
} |
} |
| 6188 |
|
|
| 6189 |
/* Back references are handled specially; must disable firstbyte if |
/* Back references are handled specially; must disable firstbyte if |
| 6190 |
not set to cope with cases like (?=(\w+))\1: which would otherwise set |
not set to cope with cases like (?=(\w+))\1: which would otherwise set |
| 6382 |
lookbehind TRUE if this is a lookbehind assertion |
lookbehind TRUE if this is a lookbehind assertion |
| 6383 |
reset_bracount TRUE to reset the count for each branch |
reset_bracount TRUE to reset the count for each branch |
| 6384 |
skipbytes skip this many bytes at start (for brackets and OP_COND) |
skipbytes skip this many bytes at start (for brackets and OP_COND) |
| 6385 |
cond_depth depth of nesting for conditional subpatterns |
cond_depth depth of nesting for conditional subpatterns |
| 6386 |
firstbyteptr place to put the first required character, or a negative number |
firstbyteptr place to put the first required character, or a negative number |
| 6387 |
reqbyteptr place to put the last required character, or a negative number |
reqbyteptr place to put the last required character, or a negative number |
| 6388 |
bcptr pointer to the chain of currently open branches |
bcptr pointer to the chain of currently open branches |
| 6396 |
static BOOL |
static BOOL |
| 6397 |
compile_regex(int options, uschar **codeptr, const uschar **ptrptr, |
compile_regex(int options, uschar **codeptr, const uschar **ptrptr, |
| 6398 |
int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, |
int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, |
| 6399 |
int cond_depth, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, |
int cond_depth, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, |
| 6400 |
compile_data *cd, int *lengthptr) |
compile_data *cd, int *lengthptr) |
| 6401 |
{ |
{ |
| 6402 |
const uschar *ptr = *ptrptr; |
const uschar *ptr = *ptrptr; |
| 6434 |
|
|
| 6435 |
/* 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 |
| 6436 |
so that we can detect them if (*ACCEPT) is encountered. This is also used to |
so that we can detect them if (*ACCEPT) is encountered. This is also used to |
| 6437 |
detect groups that contain recursive back references to themselves. Note that |
detect groups that contain recursive back references to themselves. Note that |
| 6438 |
only OP_CBRA need be tested here; changing this opcode to one of its variants, |
only OP_CBRA need be tested here; changing this opcode to one of its variants, |
| 6439 |
e.g. OP_SCBRAPOS, happens later, after the group has been compiled. */ |
e.g. OP_SCBRAPOS, happens later, after the group has been compiled. */ |
| 6440 |
|
|
| 6441 |
if (*code == OP_CBRA) |
if (*code == OP_CBRA) |
| 6476 |
into the length. */ |
into the length. */ |
| 6477 |
|
|
| 6478 |
if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstbyte, |
if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstbyte, |
| 6479 |
&branchreqbyte, &bc, cond_depth, cd, |
&branchreqbyte, &bc, cond_depth, cd, |
| 6480 |
(lengthptr == NULL)? NULL : &length)) |
(lengthptr == NULL)? NULL : &length)) |
| 6481 |
{ |
{ |
| 6482 |
*ptrptr = ptr; |
*ptrptr = ptr; |
| 6910 |
case OP_EXACT: |
case OP_EXACT: |
| 6911 |
scode += 2; |
scode += 2; |
| 6912 |
/* Fall through */ |
/* Fall through */ |
| 6913 |
|
|
| 6914 |
case OP_CHAR: |
case OP_CHAR: |
| 6915 |
case OP_PLUS: |
case OP_PLUS: |
| 6916 |
case OP_MINPLUS: |
case OP_MINPLUS: |
| 6923 |
case OP_EXACTI: |
case OP_EXACTI: |
| 6924 |
scode += 2; |
scode += 2; |
| 6925 |
/* Fall through */ |
/* Fall through */ |
| 6926 |
|
|
| 6927 |
case OP_CHARI: |
case OP_CHARI: |
| 6928 |
case OP_PLUSI: |
case OP_PLUSI: |
| 6929 |
case OP_MINPLUSI: |
case OP_MINPLUSI: |
| 7083 |
|
|
| 7084 |
/* Can't support UTF8 unless PCRE has been compiled to include the code. The |
/* Can't support UTF8 unless PCRE has been compiled to include the code. The |
| 7085 |
return of an error code from _pcre_valid_utf8() is a new feature, introduced in |
return of an error code from _pcre_valid_utf8() is a new feature, introduced in |
| 7086 |
release 8.13. It is passed back from pcre_[dfa_]exec(), but at the moment is |
release 8.13. It is passed back from pcre_[dfa_]exec(), but at the moment is |
| 7087 |
not used here. */ |
not used here. */ |
| 7088 |
|
|
| 7089 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 7116 |
if ((options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) == |
if ((options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) == |
| 7117 |
(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
| 7118 |
{ |
{ |
| 7119 |
errorcode = ERR56; |
errorcode = ERR56; |
| 7120 |
goto PCRE_EARLY_ERROR_RETURN; |
goto PCRE_EARLY_ERROR_RETURN; |
| 7121 |
} |
} |
| 7122 |
|
|
| 7202 |
ptr += skipatstart; |
ptr += skipatstart; |
| 7203 |
code = cworkspace; |
code = cworkspace; |
| 7204 |
*code = OP_BRA; |
*code = OP_BRA; |
| 7205 |
(void)compile_regex(cd->external_options, &code, &ptr, &errorcode, FALSE, |
(void)compile_regex(cd->external_options, &code, &ptr, &errorcode, FALSE, |
| 7206 |
FALSE, 0, 0, &firstbyte, &reqbyte, NULL, cd, &length); |
FALSE, 0, 0, &firstbyte, &reqbyte, NULL, cd, &length); |
| 7207 |
if (errorcode != 0) goto PCRE_EARLY_ERROR_RETURN; |
if (errorcode != 0) goto PCRE_EARLY_ERROR_RETURN; |
| 7208 |
|
|