| 76 |
#define MATCH_ACCEPT (-999) |
#define MATCH_ACCEPT (-999) |
| 77 |
#define MATCH_COMMIT (-998) |
#define MATCH_COMMIT (-998) |
| 78 |
#define MATCH_KETRPOS (-997) |
#define MATCH_KETRPOS (-997) |
| 79 |
#define MATCH_PRUNE (-996) |
#define MATCH_ONCE (-996) |
| 80 |
#define MATCH_SKIP (-995) |
#define MATCH_PRUNE (-995) |
| 81 |
#define MATCH_SKIP_ARG (-994) |
#define MATCH_SKIP (-994) |
| 82 |
#define MATCH_THEN (-993) |
#define MATCH_SKIP_ARG (-993) |
| 83 |
|
#define MATCH_THEN (-992) |
| 84 |
|
|
| 85 |
/* This is a convenience macro for code that occurs many times. */ |
/* This is a convenience macro for code that occurs many times. */ |
| 86 |
|
|
| 277 |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
| 278 |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50, |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50, |
| 279 |
RM51, RM52, RM53, RM54, RM55, RM56, RM57, RM58, RM59, RM60, |
RM51, RM52, RM53, RM54, RM55, RM56, RM57, RM58, RM59, RM60, |
| 280 |
RM61, RM62, RM63}; |
RM61, RM62, RM63, RM64, RM65, RM66 }; |
| 281 |
|
|
| 282 |
/* These versions of the macros use the stack, as normal. There are debugging |
/* These versions of the macros use the stack, as normal. There are debugging |
| 283 |
versions and production versions. Note that the "rw" argument of RMATCH isn't |
versions and production versions. Note that the "rw" argument of RMATCH isn't |
| 846 |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
| 847 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 848 |
eptrb, RM1); |
eptrb, RM1); |
| 849 |
|
if (rrc == MATCH_ONCE) break; /* Backing up through an atomic group */ |
| 850 |
if (rrc != MATCH_NOMATCH && |
if (rrc != MATCH_NOMATCH && |
| 851 |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
| 852 |
RRETURN(rrc); |
RRETURN(rrc); |
| 856 |
} |
} |
| 857 |
|
|
| 858 |
DPRINTF(("bracket %d failed\n", number)); |
DPRINTF(("bracket %d failed\n", number)); |
|
|
|
| 859 |
md->offset_vector[offset] = save_offset1; |
md->offset_vector[offset] = save_offset1; |
| 860 |
md->offset_vector[offset+1] = save_offset2; |
md->offset_vector[offset+1] = save_offset2; |
| 861 |
md->offset_vector[md->offset_end - number] = save_offset3; |
md->offset_vector[md->offset_end - number] = save_offset3; |
| 862 |
|
|
| 863 |
|
/* At this point, rrc will be one of MATCH_ONCE, MATCH_NOMATCH, or |
| 864 |
|
MATCH_THEN. */ |
| 865 |
|
|
| 866 |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
| 867 |
RRETURN(MATCH_NOMATCH); |
RRETURN(((rrc == MATCH_ONCE)? MATCH_ONCE:MATCH_NOMATCH)); |
| 868 |
} |
} |
| 869 |
|
|
| 870 |
/* FALL THROUGH ... Insufficient room for saving captured contents. Treat |
/* FALL THROUGH ... Insufficient room for saving captured contents. Treat |
| 878 |
/* VVVVVVVVVVVVVVVVVVVVVVVVV */ |
/* VVVVVVVVVVVVVVVVVVVVVVVVV */ |
| 879 |
/* VVVVVVVVVVVVVVVVVVVVVVVVV */ |
/* VVVVVVVVVVVVVVVVVVVVVVVVV */ |
| 880 |
|
|
| 881 |
/* Non-capturing bracket, except for possessive with unlimited repeat. Loop |
/* Non-capturing or atomic group, except for possessive with unlimited |
| 882 |
for all the alternatives. When we get to the final alternative within the |
repeat. Loop for all the alternatives. When we get to the final alternative |
| 883 |
brackets, we used to return the result of a recursive call to match() |
within the brackets, we used to return the result of a recursive call to |
| 884 |
whatever happened so it was possible to reduce stack usage by turning this |
match() whatever happened so it was possible to reduce stack usage by |
| 885 |
into a tail recursion, except in the case of a possibly empty group. |
turning this into a tail recursion, except in the case of a possibly empty |
| 886 |
However, now that there is the possiblity of (*THEN) occurring in the final |
group. However, now that there is the possiblity of (*THEN) occurring in |
| 887 |
alternative, this optimization is no longer possible. */ |
the final alternative, this optimization is no longer possible. |
| 888 |
|
|
| 889 |
|
MATCH_ONCE is returned when the end of an atomic group is successfully |
| 890 |
|
reached, but subsequent matching fails. It passes back up the tree (causing |
| 891 |
|
captured values to be reset) until the original atomic group level is |
| 892 |
|
reached. This is tested by comparing md->once_target with the start of the |
| 893 |
|
group. At this point, the return is converted into MATCH_NOMATCH so that |
| 894 |
|
previous backup points can be taken. */ |
| 895 |
|
|
| 896 |
|
case OP_ONCE: |
| 897 |
case OP_BRA: |
case OP_BRA: |
| 898 |
case OP_SBRA: |
case OP_SBRA: |
| 899 |
DPRINTF(("start non-capturing bracket\n")); |
DPRINTF(("start non-capturing bracket\n")); |
| 900 |
|
|
| 901 |
for (;;) |
for (;;) |
| 902 |
{ |
{ |
| 903 |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
if (op >= OP_SBRA || op == OP_ONCE) md->match_function_type = MATCH_CBEGROUP; |
| 904 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, eptrb, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, eptrb, |
| 905 |
RM2); |
RM2); |
| 906 |
if (rrc != MATCH_NOMATCH && |
if (rrc != MATCH_NOMATCH && |
| 907 |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
| 908 |
|
{ |
| 909 |
|
if (rrc == MATCH_ONCE) |
| 910 |
|
{ |
| 911 |
|
const uschar *scode = ecode; |
| 912 |
|
if (*scode != OP_ONCE) /* If not at start, find it */ |
| 913 |
|
{ |
| 914 |
|
while (*scode == OP_ALT) scode += GET(scode, 1); |
| 915 |
|
scode -= GET(scode, 1); |
| 916 |
|
} |
| 917 |
|
if (md->once_target == scode) rrc = MATCH_NOMATCH; |
| 918 |
|
} |
| 919 |
RRETURN(rrc); |
RRETURN(rrc); |
| 920 |
|
} |
| 921 |
ecode += GET(ecode, 1); |
ecode += GET(ecode, 1); |
| 922 |
if (*ecode != OP_ALT) break; |
if (*ecode != OP_ALT) break; |
| 923 |
} |
} |
|
|
|
| 924 |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
| 925 |
RRETURN(MATCH_NOMATCH); |
RRETURN(MATCH_NOMATCH); |
| 926 |
|
|
| 1323 |
case OP_ACCEPT: |
case OP_ACCEPT: |
| 1324 |
case OP_ASSERT_ACCEPT: |
case OP_ASSERT_ACCEPT: |
| 1325 |
case OP_END: |
case OP_END: |
| 1326 |
|
|
| 1327 |
|
/* |
| 1328 |
if (md->recursive != NULL) |
if (md->recursive != NULL) |
| 1329 |
{ |
{ |
| 1330 |
recursion_info *rec = md->recursive; |
recursion_info *rec = md->recursive; |
| 1331 |
|
|
| 1332 |
md->recursive = rec->prevrec; |
md->recursive = rec->prevrec; |
| 1333 |
|
|
| 1334 |
memmove(md->offset_vector, rec->offset_save, |
memmove(md->offset_vector, rec->offset_save, |
| 1335 |
rec->saved_max * sizeof(int)); |
rec->saved_max * sizeof(int)); |
| 1336 |
offset_top = rec->save_offset_top; |
offset_top = rec->save_offset_top; |
| 1340 |
break; |
break; |
| 1341 |
} |
} |
| 1342 |
} |
} |
| 1343 |
|
*/ |
| 1344 |
/* Otherwise, if we have matched an empty string, fail if not in an |
/* Otherwise, if we have matched an empty string, fail if not in an |
| 1345 |
assertion and if either PCRE_NOTEMPTY is set, or if PCRE_NOTEMPTY_ATSTART |
assertion and if either PCRE_NOTEMPTY is set, or if PCRE_NOTEMPTY_ATSTART |
| 1346 |
is set and we have matched at the start of the subject. In both cases, |
is set and we have matched at the start of the subject. In both cases, |
| 1347 |
backtracking will then try other alternatives, if any. */ |
backtracking will then try other alternatives, if any. */ |
| 1348 |
|
|
| 1349 |
else if (eptr == mstart && op != OP_ASSERT_ACCEPT && |
/* else */ if (eptr == mstart && op != OP_ASSERT_ACCEPT && |
| 1350 |
|
|
| 1351 |
|
md->recursive == NULL && |
| 1352 |
|
|
| 1353 |
(md->notempty || |
(md->notempty || |
| 1354 |
(md->notempty_atstart && |
(md->notempty_atstart && |
| 1355 |
mstart == md->start_subject + md->start_offset))) |
mstart == md->start_subject + md->start_offset))) |
| 1512 |
/* Recursion either matches the current regex, or some subexpression. The |
/* Recursion either matches the current regex, or some subexpression. The |
| 1513 |
offset data is the offset to the starting bracket from the start of the |
offset data is the offset to the starting bracket from the start of the |
| 1514 |
whole pattern. (This is so that it works from duplicated subpatterns.) |
whole pattern. (This is so that it works from duplicated subpatterns.) |
| 1515 |
|
|
| 1516 |
If there are any capturing brackets started but not finished, we have to |
The state of the capturing groups is preserved over recursion, and |
| 1517 |
save their starting points and reinstate them after the recursion. However, |
re-instated afterwards. We don't know how many are started and not yet |
| 1518 |
we don't know how many such there are (offset_top records the completed |
finished (offset_top records the completed total) so we just have to save |
| 1519 |
total) so we just have to save all the potential data. There may be up to |
all the potential data. There may be up to 65535 such values, which is too |
| 1520 |
65535 such values, which is too large to put on the stack, but using malloc |
large to put on the stack, but using malloc for small numbers seems |
| 1521 |
for small numbers seems expensive. As a compromise, the stack is used when |
expensive. As a compromise, the stack is used when there are no more than |
| 1522 |
there are no more than REC_STACK_SAVE_MAX values to store; otherwise malloc |
REC_STACK_SAVE_MAX values to store; otherwise malloc is used. |
|
is used. |
|
| 1523 |
|
|
| 1524 |
There are also other values that have to be saved. We use a chained |
There are also other values that have to be saved. We use a chained |
| 1525 |
sequence of blocks that actually live on the stack. Thanks to Robin Houston |
sequence of blocks that actually live on the stack. Thanks to Robin Houston |
| 1526 |
for the original version of this logic. */ |
for the original version of this logic. It has, however, been hacked around |
| 1527 |
|
a lot, so he is not to blame for the current way it works. */ |
| 1528 |
|
|
| 1529 |
case OP_RECURSE: |
case OP_RECURSE: |
| 1530 |
{ |
{ |
| 1537 |
new_recursive.prevrec = md->recursive; |
new_recursive.prevrec = md->recursive; |
| 1538 |
md->recursive = &new_recursive; |
md->recursive = &new_recursive; |
| 1539 |
|
|
| 1540 |
/* Find where to continue from afterwards */ |
/* Where to continue from afterwards */ |
| 1541 |
|
|
| 1542 |
ecode += 1 + LINK_SIZE; |
ecode += 1 + LINK_SIZE; |
|
new_recursive.after_call = ecode; |
|
| 1543 |
|
|
| 1544 |
/* Now save the offset data. */ |
/* Now save the offset data */ |
| 1545 |
|
|
| 1546 |
new_recursive.saved_max = md->offset_end; |
new_recursive.saved_max = md->offset_end; |
| 1547 |
if (new_recursive.saved_max <= REC_STACK_SAVE_MAX) |
if (new_recursive.saved_max <= REC_STACK_SAVE_MAX) |
| 1552 |
(int *)(pcre_malloc)(new_recursive.saved_max * sizeof(int)); |
(int *)(pcre_malloc)(new_recursive.saved_max * sizeof(int)); |
| 1553 |
if (new_recursive.offset_save == NULL) RRETURN(PCRE_ERROR_NOMEMORY); |
if (new_recursive.offset_save == NULL) RRETURN(PCRE_ERROR_NOMEMORY); |
| 1554 |
} |
} |
|
|
|
| 1555 |
memcpy(new_recursive.offset_save, md->offset_vector, |
memcpy(new_recursive.offset_save, md->offset_vector, |
| 1556 |
new_recursive.saved_max * sizeof(int)); |
new_recursive.saved_max * sizeof(int)); |
|
new_recursive.save_offset_top = offset_top; |
|
| 1557 |
|
|
| 1558 |
/* OK, now we can do the recursion. For each top-level alternative we |
/* OK, now we can do the recursion. After processing each alternative, |
| 1559 |
restore the offset and recursion data. */ |
restore the offset data. If there were nested recursions, md->recursive |
| 1560 |
|
might be changed, so reset it before looping. */ |
| 1561 |
|
|
| 1562 |
DPRINTF(("Recursing into group %d\n", new_recursive.group_num)); |
DPRINTF(("Recursing into group %d\n", new_recursive.group_num)); |
| 1563 |
cbegroup = (*callpat >= OP_SBRA); |
cbegroup = (*callpat >= OP_SBRA); |
| 1566 |
if (cbegroup) md->match_function_type = MATCH_CBEGROUP; |
if (cbegroup) md->match_function_type = MATCH_CBEGROUP; |
| 1567 |
RMATCH(eptr, callpat + _pcre_OP_lengths[*callpat], offset_top, |
RMATCH(eptr, callpat + _pcre_OP_lengths[*callpat], offset_top, |
| 1568 |
md, eptrb, RM6); |
md, eptrb, RM6); |
| 1569 |
|
memcpy(md->offset_vector, new_recursive.offset_save, |
| 1570 |
|
new_recursive.saved_max * sizeof(int)); |
| 1571 |
if (rrc == MATCH_MATCH || rrc == MATCH_ACCEPT) |
if (rrc == MATCH_MATCH || rrc == MATCH_ACCEPT) |
| 1572 |
{ |
{ |
| 1573 |
DPRINTF(("Recursion matched\n")); |
DPRINTF(("Recursion matched\n")); |
| 1574 |
md->recursive = new_recursive.prevrec; |
md->recursive = new_recursive.prevrec; |
| 1575 |
if (new_recursive.offset_save != stacksave) |
if (new_recursive.offset_save != stacksave) |
| 1576 |
(pcre_free)(new_recursive.offset_save); |
(pcre_free)(new_recursive.offset_save); |
| 1577 |
MRRETURN(MATCH_MATCH); |
|
| 1578 |
|
/* Set where we got to in the subject, and reset the start in case |
| 1579 |
|
it was changed by \K. This *is* propagated back out of a recursion, |
| 1580 |
|
for Perl compatibility. */ |
| 1581 |
|
|
| 1582 |
|
eptr = md->end_match_ptr; |
| 1583 |
|
mstart = md->start_match_ptr; |
| 1584 |
|
goto RECURSION_MATCHED; /* Exit loop; end processing */ |
| 1585 |
} |
} |
| 1586 |
else if (rrc != MATCH_NOMATCH && |
else if (rrc != MATCH_NOMATCH && |
| 1587 |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
| 1593 |
} |
} |
| 1594 |
|
|
| 1595 |
md->recursive = &new_recursive; |
md->recursive = &new_recursive; |
|
memcpy(md->offset_vector, new_recursive.offset_save, |
|
|
new_recursive.saved_max * sizeof(int)); |
|
| 1596 |
callpat += GET(callpat, 1); |
callpat += GET(callpat, 1); |
| 1597 |
} |
} |
| 1598 |
while (*callpat == OP_ALT); |
while (*callpat == OP_ALT); |
| 1603 |
(pcre_free)(new_recursive.offset_save); |
(pcre_free)(new_recursive.offset_save); |
| 1604 |
MRRETURN(MATCH_NOMATCH); |
MRRETURN(MATCH_NOMATCH); |
| 1605 |
} |
} |
| 1606 |
/* Control never reaches here */ |
|
| 1607 |
|
RECURSION_MATCHED: |
| 1608 |
/* "Once" brackets are like assertion brackets except that after a match, |
break; |
|
the point in the subject string is not moved back. Thus there can never be |
|
|
a move back into the brackets. Friedl calls these "atomic" subpatterns. |
|
|
Check the alternative branches in turn - the matching won't pass the KET |
|
|
for this kind of subpattern. If any one branch matches, we carry on as at |
|
|
the end of a normal bracket, leaving the subject pointer, but resetting |
|
|
the start-of-match value in case it was changed by \K. */ |
|
|
|
|
|
case OP_ONCE: |
|
|
prev = ecode; |
|
|
saved_eptr = eptr; |
|
|
|
|
|
do |
|
|
{ |
|
|
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM7); |
|
|
if (rrc == MATCH_MATCH) /* Note: _not_ MATCH_ACCEPT */ |
|
|
{ |
|
|
mstart = md->start_match_ptr; |
|
|
break; |
|
|
} |
|
|
if (rrc != MATCH_NOMATCH && |
|
|
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
|
|
RRETURN(rrc); |
|
|
ecode += GET(ecode,1); |
|
|
} |
|
|
while (*ecode == OP_ALT); |
|
|
|
|
|
/* If hit the end of the group (which could be repeated), fail */ |
|
|
|
|
|
if (*ecode != OP_ONCE && *ecode != OP_ALT) RRETURN(MATCH_NOMATCH); |
|
|
|
|
|
/* Continue after the group, updating the offsets high water mark, since |
|
|
extracts may have been taken. */ |
|
|
|
|
|
do ecode += GET(ecode, 1); while (*ecode == OP_ALT); |
|
|
|
|
|
offset_top = md->end_offset_top; |
|
|
eptr = md->end_match_ptr; |
|
|
|
|
|
/* For a non-repeating ket, just continue at this level. This also |
|
|
happens for a repeating ket if no characters were matched in the group. |
|
|
This is the forcible breaking of infinite loops as implemented in Perl |
|
|
5.005. */ |
|
|
|
|
|
if (*ecode == OP_KET || eptr == saved_eptr) |
|
|
{ |
|
|
ecode += 1+LINK_SIZE; |
|
|
break; |
|
|
} |
|
|
|
|
|
/* The repeating kets try the rest of the pattern or restart from the |
|
|
preceding bracket, in the appropriate order. The second "call" of match() |
|
|
uses tail recursion, to avoid using another stack frame. */ |
|
|
|
|
|
if (*ecode == OP_KETRMIN) |
|
|
{ |
|
|
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM8); |
|
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
|
|
ecode = prev; |
|
|
} |
|
|
else /* OP_KETRMAX */ |
|
|
{ |
|
|
md->match_function_type = MATCH_CBEGROUP; |
|
|
RMATCH(eptr, prev, offset_top, md, eptrb, RM9); |
|
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
|
|
ecode += 1 + LINK_SIZE; |
|
|
} |
|
|
goto TAIL_RECURSE; |
|
|
|
|
|
/* Control never gets here */ |
|
| 1609 |
|
|
| 1610 |
/* An alternation is the end of a branch; scan along to find the end of the |
/* An alternation is the end of a branch; scan along to find the end of the |
| 1611 |
bracketed group and go to there. */ |
bracketed group and go to there. */ |
| 1658 |
case OP_KETRMAX: |
case OP_KETRMAX: |
| 1659 |
case OP_KETRPOS: |
case OP_KETRPOS: |
| 1660 |
prev = ecode - GET(ecode, 1); |
prev = ecode - GET(ecode, 1); |
| 1661 |
|
|
| 1662 |
/* If this was a group that remembered the subject start, in order to break |
/* If this was a group that remembered the subject start, in order to break |
| 1663 |
infinite repeats of empty string matches, retrieve the subject start from |
infinite repeats of empty string matches, retrieve the subject start from |
| 1664 |
the chain. Otherwise, set it NULL. */ |
the chain. Otherwise, set it NULL. */ |
| 1665 |
|
|
| 1666 |
if (*prev >= OP_SBRA) |
if (*prev >= OP_SBRA || *prev == OP_ONCE) |
| 1667 |
{ |
{ |
| 1668 |
saved_eptr = eptrb->epb_saved_eptr; /* Value at start of group */ |
saved_eptr = eptrb->epb_saved_eptr; /* Value at start of group */ |
| 1669 |
eptrb = eptrb->epb_prev; /* Backup to previous group */ |
eptrb = eptrb->epb_prev; /* Backup to previous group */ |
| 1670 |
} |
} |
| 1671 |
else saved_eptr = NULL; |
else saved_eptr = NULL; |
| 1672 |
|
|
| 1673 |
/* If we are at the end of an assertion group or an atomic group, stop |
/* If we are at the end of an assertion group, stop matching and return |
| 1674 |
matching and return MATCH_MATCH, but record the current high water mark for |
MATCH_MATCH, but record the current high water mark for use by positive |
| 1675 |
use by positive assertions. We also need to record the match start in case |
assertions. We also need to record the match start in case it was changed |
| 1676 |
it was changed by \K. */ |
by \K. */ |
| 1677 |
|
|
| 1678 |
if (*prev == OP_ASSERT || *prev == OP_ASSERT_NOT || |
if (*prev == OP_ASSERT || *prev == OP_ASSERT_NOT || |
| 1679 |
*prev == OP_ASSERTBACK || *prev == OP_ASSERTBACK_NOT || |
*prev == OP_ASSERTBACK || *prev == OP_ASSERTBACK_NOT) |
|
*prev == OP_ONCE) |
|
| 1680 |
{ |
{ |
| 1681 |
md->end_match_ptr = eptr; /* For ONCE */ |
md->end_match_ptr = eptr; /* For ONCE */ |
| 1682 |
md->end_offset_top = offset_top; |
md->end_offset_top = offset_top; |
| 1686 |
|
|
| 1687 |
/* For capturing groups we have to check the group number back at the start |
/* For capturing groups we have to check the group number back at the start |
| 1688 |
and if necessary complete handling an extraction by setting the offsets and |
and if necessary complete handling an extraction by setting the offsets and |
| 1689 |
bumping the high water mark. Note that whole-pattern recursion is coded as |
bumping the high water mark. Whole-pattern recursion is coded as a recurse |
| 1690 |
a recurse into group 0, so it won't be picked up here. Instead, we catch it |
into group 0, so it won't be picked up here. Instead, we catch it when the |
| 1691 |
when the OP_END is reached. Other recursion is handled here. */ |
OP_END is reached. Other recursion is handled here. We just have to record |
| 1692 |
|
the current subject position and start match pointer and give a MATCH |
| 1693 |
|
return. */ |
| 1694 |
|
|
| 1695 |
if (*prev == OP_CBRA || *prev == OP_SCBRA || |
if (*prev == OP_CBRA || *prev == OP_SCBRA || |
| 1696 |
*prev == OP_CBRAPOS || *prev == OP_SCBRAPOS) |
*prev == OP_CBRAPOS || *prev == OP_SCBRAPOS) |
| 1703 |
printf("\n"); |
printf("\n"); |
| 1704 |
#endif |
#endif |
| 1705 |
|
|
| 1706 |
|
/* Handle a recursively called group. */ |
| 1707 |
|
|
| 1708 |
|
if (md->recursive != NULL && md->recursive->group_num == number) |
| 1709 |
|
{ |
| 1710 |
|
md->end_match_ptr = eptr; |
| 1711 |
|
md->start_match_ptr = mstart; |
| 1712 |
|
RRETURN(MATCH_MATCH); |
| 1713 |
|
} |
| 1714 |
|
|
| 1715 |
|
/* Deal with capturing */ |
| 1716 |
|
|
| 1717 |
md->capture_last = number; |
md->capture_last = number; |
| 1718 |
if (offset >= md->offset_max) md->offset_overflow = TRUE; else |
if (offset >= md->offset_max) md->offset_overflow = TRUE; else |
| 1719 |
{ |
{ |
| 1741 |
md->offset_vector[offset+1] = (int)(eptr - md->start_subject); |
md->offset_vector[offset+1] = (int)(eptr - md->start_subject); |
| 1742 |
if (offset_top <= offset) offset_top = offset + 2; |
if (offset_top <= offset) offset_top = offset + 2; |
| 1743 |
} |
} |
|
|
|
|
/* Handle a recursively called group. Restore the offsets |
|
|
appropriately and continue from after the call. */ |
|
|
|
|
|
if (md->recursive != NULL && md->recursive->group_num == number) |
|
|
{ |
|
|
recursion_info *rec = md->recursive; |
|
|
DPRINTF(("Recursion (%d) succeeded - continuing\n", number)); |
|
|
md->recursive = rec->prevrec; |
|
|
memcpy(md->offset_vector, rec->offset_save, |
|
|
rec->saved_max * sizeof(int)); |
|
|
offset_top = rec->save_offset_top; |
|
|
ecode = rec->after_call; |
|
|
break; |
|
|
} |
|
| 1744 |
} |
} |
| 1745 |
|
|
| 1746 |
/* For a non-repeating ket, just continue at this level. This also |
/* For an ordinary non-repeating ket, just continue at this level. This |
| 1747 |
happens for a repeating ket if no characters were matched in the group. |
also happens for a repeating ket if no characters were matched in the |
| 1748 |
This is the forcible breaking of infinite loops as implemented in Perl |
group. This is the forcible breaking of infinite loops as implemented in |
| 1749 |
5.005. If there is an options reset, it will get obeyed in the normal |
Perl 5.005. For a non-repeating atomic group, establish a backup point by |
| 1750 |
course of events. */ |
processing the rest of the pattern at a lower level. If this results in a |
| 1751 |
|
NOMATCH return, pass MATCH_ONCE back to the original OP_ONCE level, thereby |
| 1752 |
|
bypassing intermediate backup points, but resetting any captures that |
| 1753 |
|
happened along the way. */ |
| 1754 |
|
|
| 1755 |
if (*ecode == OP_KET || eptr == saved_eptr) |
if (*ecode == OP_KET || eptr == saved_eptr) |
| 1756 |
{ |
{ |
| 1757 |
ecode += 1 + LINK_SIZE; |
if (*prev == OP_ONCE) |
| 1758 |
|
{ |
| 1759 |
|
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM12); |
| 1760 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 1761 |
|
md->once_target = prev; /* Level at which to change to MATCH_NOMATCH */ |
| 1762 |
|
RRETURN(MATCH_ONCE); |
| 1763 |
|
} |
| 1764 |
|
ecode += 1 + LINK_SIZE; /* Carry on at this level */ |
| 1765 |
break; |
break; |
| 1766 |
} |
} |
| 1767 |
|
|
| 1779 |
/* The normal repeating kets try the rest of the pattern or restart from |
/* The normal repeating kets try the rest of the pattern or restart from |
| 1780 |
the preceding bracket, in the appropriate order. In the second case, we can |
the preceding bracket, in the appropriate order. In the second case, we can |
| 1781 |
use tail recursion to avoid using another stack frame, unless we have an |
use tail recursion to avoid using another stack frame, unless we have an |
| 1782 |
unlimited repeat of a group that can match an empty string. */ |
an atomic group or an unlimited repeat of a group that can match an empty |
| 1783 |
|
string. */ |
| 1784 |
|
|
| 1785 |
if (*ecode == OP_KETRMIN) |
if (*ecode == OP_KETRMIN) |
| 1786 |
{ |
{ |
| 1787 |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM12); |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM64); |
| 1788 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 1789 |
|
if (*prev == OP_ONCE) |
| 1790 |
|
{ |
| 1791 |
|
RMATCH(eptr, prev, offset_top, md, eptrb, RM66); |
| 1792 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 1793 |
|
md->once_target = prev; /* Level at which to change to MATCH_NOMATCH */ |
| 1794 |
|
RRETURN(MATCH_ONCE); |
| 1795 |
|
} |
| 1796 |
if (*prev >= OP_SBRA) /* Could match an empty string */ |
if (*prev >= OP_SBRA) /* Could match an empty string */ |
| 1797 |
{ |
{ |
| 1798 |
md->match_function_type = MATCH_CBEGROUP; |
md->match_function_type = MATCH_CBEGROUP; |
| 1806 |
{ |
{ |
| 1807 |
if (*prev >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
if (*prev >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
| 1808 |
RMATCH(eptr, prev, offset_top, md, eptrb, RM13); |
RMATCH(eptr, prev, offset_top, md, eptrb, RM13); |
| 1809 |
|
if (rrc == MATCH_ONCE && md->once_target == prev) rrc = MATCH_NOMATCH; |
| 1810 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 1811 |
|
if (*prev == OP_ONCE) |
| 1812 |
|
{ |
| 1813 |
|
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM65); |
| 1814 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 1815 |
|
md->once_target = prev; |
| 1816 |
|
RRETURN(MATCH_ONCE); |
| 1817 |
|
} |
| 1818 |
ecode += 1 + LINK_SIZE; |
ecode += 1 + LINK_SIZE; |
| 1819 |
goto TAIL_RECURSE; |
goto TAIL_RECURSE; |
| 1820 |
} |
} |
| 5697 |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(17) |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(17) |
| 5698 |
LBL(19) LBL(24) LBL(25) LBL(26) LBL(27) LBL(29) LBL(31) LBL(33) |
LBL(19) LBL(24) LBL(25) LBL(26) LBL(27) LBL(29) LBL(31) LBL(33) |
| 5699 |
LBL(35) LBL(43) LBL(47) LBL(48) LBL(49) LBL(50) LBL(51) LBL(52) |
LBL(35) LBL(43) LBL(47) LBL(48) LBL(49) LBL(50) LBL(51) LBL(52) |
| 5700 |
LBL(53) LBL(54) LBL(55) LBL(56) LBL(57) LBL(58) LBL(63) |
LBL(53) LBL(54) LBL(55) LBL(56) LBL(57) LBL(58) LBL(63) LBL(64) |
| 5701 |
|
LBL(65) LBL(66) |
| 5702 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 5703 |
LBL(16) LBL(18) LBL(20) LBL(21) LBL(22) LBL(23) LBL(28) LBL(30) |
LBL(16) LBL(18) LBL(20) LBL(21) LBL(22) LBL(23) LBL(28) LBL(30) |
| 5704 |
LBL(32) LBL(34) LBL(42) LBL(46) |
LBL(32) LBL(34) LBL(42) LBL(46) |