| 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-2007 University of Cambridge |
Copyright (c) 1997-2008 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 |
| 42 |
pattern matching using an NFA algorithm, trying to mimic Perl as closely as |
pattern matching using an NFA algorithm, trying to mimic Perl as closely as |
| 43 |
possible. There are also some static supporting functions. */ |
possible. There are also some static supporting functions. */ |
| 44 |
|
|
| 45 |
#ifdef HAVE_CONFIG_H |
#ifdef HAVE_CONFIG_H |
| 46 |
#include <config.h> |
#include "config.h" |
| 47 |
#endif |
#endif |
| 48 |
|
|
| 49 |
#define NLBLOCK md /* Block containing newline information */ |
#define NLBLOCK md /* Block containing newline information */ |
| 50 |
#define PSSTART start_subject /* Field containing processed string start */ |
#define PSSTART start_subject /* Field containing processed string start */ |
| 68 |
#define MATCH_MATCH 1 |
#define MATCH_MATCH 1 |
| 69 |
#define MATCH_NOMATCH 0 |
#define MATCH_NOMATCH 0 |
| 70 |
|
|
| 71 |
|
/* Special internal returns from the match() function. Make them sufficiently |
| 72 |
|
negative to avoid the external error codes. */ |
| 73 |
|
|
| 74 |
|
#define MATCH_COMMIT (-999) |
| 75 |
|
#define MATCH_PRUNE (-998) |
| 76 |
|
#define MATCH_SKIP (-997) |
| 77 |
|
#define MATCH_THEN (-996) |
| 78 |
|
|
| 79 |
/* Maximum number of ints of offset to save on the stack for recursive calls. |
/* Maximum number of ints of offset to save on the stack for recursive calls. |
| 80 |
If the offset vector is bigger, malloc is used. This should be a multiple of 3, |
If the offset vector is bigger, malloc is used. This should be a multiple of 3, |
| 81 |
because the offset vector is always a multiple of 3 long. */ |
because the offset vector is always a multiple of 3 long. */ |
| 211 |
**************************************************************************** |
**************************************************************************** |
| 212 |
***************************************************************************/ |
***************************************************************************/ |
| 213 |
|
|
| 214 |
|
/* Numbers for RMATCH calls. When this list is changed, the code at HEAP_RETURN |
| 215 |
/* Numbers for RMATCH calls */ |
below must be updated in sync. */ |
| 216 |
|
|
| 217 |
enum { RM1=1, RM2, RM3, RM4, RM5, RM6, RM7, RM8, RM9, RM10, |
enum { RM1=1, RM2, RM3, RM4, RM5, RM6, RM7, RM8, RM9, RM10, |
| 218 |
RM11, RM12, RM13, RM14, RM15, RM16, RM17, RM18, RM19, RM20, |
RM11, RM12, RM13, RM14, RM15, RM16, RM17, RM18, RM19, RM20, |
| 219 |
RM21, RM22, RM23, RM24, RM25, RM26, RM27, RM28, RM29, RM30, |
RM21, RM22, RM23, RM24, RM25, RM26, RM27, RM28, RM29, RM30, |
| 220 |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
| 221 |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50 }; |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50, |
| 222 |
|
RM51, RM52, RM53, RM54 }; |
| 223 |
|
|
| 224 |
/* 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 |
| 225 |
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 |
| 620 |
|
|
| 621 |
switch(op) |
switch(op) |
| 622 |
{ |
{ |
| 623 |
|
case OP_FAIL: |
| 624 |
|
RRETURN(MATCH_NOMATCH); |
| 625 |
|
|
| 626 |
|
case OP_PRUNE: |
| 627 |
|
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 628 |
|
ims, eptrb, flags, RM51); |
| 629 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 630 |
|
RRETURN(MATCH_PRUNE); |
| 631 |
|
|
| 632 |
|
case OP_COMMIT: |
| 633 |
|
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 634 |
|
ims, eptrb, flags, RM52); |
| 635 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 636 |
|
RRETURN(MATCH_COMMIT); |
| 637 |
|
|
| 638 |
|
case OP_SKIP: |
| 639 |
|
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 640 |
|
ims, eptrb, flags, RM53); |
| 641 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 642 |
|
md->start_match_ptr = eptr; /* Pass back current position */ |
| 643 |
|
RRETURN(MATCH_SKIP); |
| 644 |
|
|
| 645 |
|
case OP_THEN: |
| 646 |
|
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 647 |
|
ims, eptrb, flags, RM54); |
| 648 |
|
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 649 |
|
RRETURN(MATCH_THEN); |
| 650 |
|
|
| 651 |
/* Handle a capturing bracket. If there is space in the offset vector, save |
/* Handle a capturing bracket. If there is space in the offset vector, save |
| 652 |
the current subject position in the working slot at the top of the vector. |
the current subject position in the working slot at the top of the vector. |
| 653 |
We mustn't change the current values of the data slot, because they may be |
We mustn't change the current values of the data slot, because they may be |
| 689 |
{ |
{ |
| 690 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 691 |
ims, eptrb, flags, RM1); |
ims, eptrb, flags, RM1); |
| 692 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) RRETURN(rrc); |
| 693 |
md->capture_last = save_capture_last; |
md->capture_last = save_capture_last; |
| 694 |
ecode += GET(ecode, 1); |
ecode += GET(ecode, 1); |
| 695 |
} |
} |
| 748 |
|
|
| 749 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, ims, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, ims, |
| 750 |
eptrb, flags, RM2); |
eptrb, flags, RM2); |
| 751 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) RRETURN(rrc); |
| 752 |
ecode += GET(ecode, 1); |
ecode += GET(ecode, 1); |
| 753 |
} |
} |
| 754 |
/* Control never reaches here. */ |
/* Control never reaches here. */ |
| 796 |
ecode += 1 + LINK_SIZE + GET(ecode, LINK_SIZE + 2); |
ecode += 1 + LINK_SIZE + GET(ecode, LINK_SIZE + 2); |
| 797 |
while (*ecode == OP_ALT) ecode += GET(ecode, 1); |
while (*ecode == OP_ALT) ecode += GET(ecode, 1); |
| 798 |
} |
} |
| 799 |
else if (rrc != MATCH_NOMATCH) |
else if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) |
| 800 |
{ |
{ |
| 801 |
RRETURN(rrc); /* Need braces because of following else */ |
RRETURN(rrc); /* Need braces because of following else */ |
| 802 |
} |
} |
| 833 |
break; |
break; |
| 834 |
|
|
| 835 |
|
|
| 836 |
/* End of the pattern. If we are in a top-level recursion, we should |
/* End of the pattern, either real or forced. If we are in a top-level |
| 837 |
restore the offsets appropriately and continue from after the call. */ |
recursion, we should restore the offsets appropriately and continue from |
| 838 |
|
after the call. */ |
| 839 |
|
|
| 840 |
|
case OP_ACCEPT: |
| 841 |
case OP_END: |
case OP_END: |
| 842 |
if (md->recursive != NULL && md->recursive->group_num == 0) |
if (md->recursive != NULL && md->recursive->group_num == 0) |
| 843 |
{ |
{ |
| 858 |
if (md->notempty && eptr == mstart) RRETURN(MATCH_NOMATCH); |
if (md->notempty && eptr == mstart) RRETURN(MATCH_NOMATCH); |
| 859 |
md->end_match_ptr = eptr; /* Record where we ended */ |
md->end_match_ptr = eptr; /* Record where we ended */ |
| 860 |
md->end_offset_top = offset_top; /* and how many extracts were taken */ |
md->end_offset_top = offset_top; /* and how many extracts were taken */ |
| 861 |
md->start_match_ptr = mstart; /* and the start (\K can modify) */ |
md->start_match_ptr = mstart; /* and the start (\K can modify) */ |
| 862 |
RRETURN(MATCH_MATCH); |
RRETURN(MATCH_MATCH); |
| 863 |
|
|
| 864 |
/* Change option settings */ |
/* Change option settings */ |
| 882 |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, NULL, 0, |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, NULL, 0, |
| 883 |
RM4); |
RM4); |
| 884 |
if (rrc == MATCH_MATCH) break; |
if (rrc == MATCH_MATCH) break; |
| 885 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) RRETURN(rrc); |
| 886 |
ecode += GET(ecode, 1); |
ecode += GET(ecode, 1); |
| 887 |
} |
} |
| 888 |
while (*ecode == OP_ALT); |
while (*ecode == OP_ALT); |
| 909 |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, NULL, 0, |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, NULL, 0, |
| 910 |
RM5); |
RM5); |
| 911 |
if (rrc == MATCH_MATCH) RRETURN(MATCH_NOMATCH); |
if (rrc == MATCH_MATCH) RRETURN(MATCH_NOMATCH); |
| 912 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) RRETURN(rrc); |
| 913 |
ecode += GET(ecode,1); |
ecode += GET(ecode,1); |
| 914 |
} |
} |
| 915 |
while (*ecode == OP_ALT); |
while (*ecode == OP_ALT); |
| 933 |
{ |
{ |
| 934 |
eptr--; |
eptr--; |
| 935 |
if (eptr < md->start_subject) RRETURN(MATCH_NOMATCH); |
if (eptr < md->start_subject) RRETURN(MATCH_NOMATCH); |
| 936 |
BACKCHAR(eptr) |
BACKCHAR(eptr); |
| 937 |
} |
} |
| 938 |
} |
} |
| 939 |
else |
else |
| 1046 |
(pcre_free)(new_recursive.offset_save); |
(pcre_free)(new_recursive.offset_save); |
| 1047 |
RRETURN(MATCH_MATCH); |
RRETURN(MATCH_MATCH); |
| 1048 |
} |
} |
| 1049 |
else if (rrc != MATCH_NOMATCH) |
else if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) |
| 1050 |
{ |
{ |
| 1051 |
DPRINTF(("Recursion gave error %d\n", rrc)); |
DPRINTF(("Recursion gave error %d\n", rrc)); |
| 1052 |
RRETURN(rrc); |
RRETURN(rrc); |
| 1082 |
{ |
{ |
| 1083 |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, eptrb, 0, RM7); |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, ims, eptrb, 0, RM7); |
| 1084 |
if (rrc == MATCH_MATCH) break; |
if (rrc == MATCH_MATCH) break; |
| 1085 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH && rrc != MATCH_THEN) RRETURN(rrc); |
| 1086 |
ecode += GET(ecode,1); |
ecode += GET(ecode,1); |
| 1087 |
} |
} |
| 1088 |
while (*ecode == OP_ALT); |
while (*ecode == OP_ALT); |
| 1526 |
case 0x000d: |
case 0x000d: |
| 1527 |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
| 1528 |
break; |
break; |
| 1529 |
|
|
| 1530 |
case 0x000a: |
case 0x000a: |
| 1531 |
|
break; |
| 1532 |
|
|
| 1533 |
case 0x000b: |
case 0x000b: |
| 1534 |
case 0x000c: |
case 0x000c: |
| 1535 |
case 0x0085: |
case 0x0085: |
| 1536 |
case 0x2028: |
case 0x2028: |
| 1537 |
case 0x2029: |
case 0x2029: |
| 1538 |
|
if (md->bsr_anycrlf) RRETURN(MATCH_NOMATCH); |
| 1539 |
break; |
break; |
| 1540 |
} |
} |
| 1541 |
ecode++; |
ecode++; |
| 2092 |
RMATCH(eptr, ecode, offset_top, md, ims, eptrb, 0, RM21); |
RMATCH(eptr, ecode, offset_top, md, ims, eptrb, 0, RM21); |
| 2093 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 2094 |
if (eptr-- == pp) break; /* Stop if tried at original pos */ |
if (eptr-- == pp) break; /* Stop if tried at original pos */ |
| 2095 |
BACKCHAR(eptr) |
if (utf8) BACKCHAR(eptr); |
| 2096 |
} |
} |
| 2097 |
RRETURN(MATCH_NOMATCH); |
RRETURN(MATCH_NOMATCH); |
| 2098 |
} |
} |
| 2958 |
case 0x000d: |
case 0x000d: |
| 2959 |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
| 2960 |
break; |
break; |
| 2961 |
|
|
| 2962 |
case 0x000a: |
case 0x000a: |
| 2963 |
|
break; |
| 2964 |
|
|
| 2965 |
case 0x000b: |
case 0x000b: |
| 2966 |
case 0x000c: |
case 0x000c: |
| 2967 |
case 0x0085: |
case 0x0085: |
| 2968 |
case 0x2028: |
case 0x2028: |
| 2969 |
case 0x2029: |
case 0x2029: |
| 2970 |
|
if (md->bsr_anycrlf) RRETURN(MATCH_NOMATCH); |
| 2971 |
break; |
break; |
| 2972 |
} |
} |
| 2973 |
} |
} |
| 3101 |
for (i = 1; i <= min; i++) |
for (i = 1; i <= min; i++) |
| 3102 |
{ |
{ |
| 3103 |
if (eptr >= md->end_subject || |
if (eptr >= md->end_subject || |
| 3104 |
(*eptr < 128 && (md->ctypes[*eptr++] & ctype_space) != 0)) |
(*eptr < 128 && (md->ctypes[*eptr] & ctype_space) != 0)) |
| 3105 |
RRETURN(MATCH_NOMATCH); |
RRETURN(MATCH_NOMATCH); |
| 3106 |
while (eptr < md->end_subject && (*eptr & 0xc0) == 0x80) eptr++; |
while (++eptr < md->end_subject && (*eptr & 0xc0) == 0x80); |
| 3107 |
} |
} |
| 3108 |
break; |
break; |
| 3109 |
|
|
| 3121 |
for (i = 1; i <= min; i++) |
for (i = 1; i <= min; i++) |
| 3122 |
{ |
{ |
| 3123 |
if (eptr >= md->end_subject || |
if (eptr >= md->end_subject || |
| 3124 |
(*eptr < 128 && (md->ctypes[*eptr++] & ctype_word) != 0)) |
(*eptr < 128 && (md->ctypes[*eptr] & ctype_word) != 0)) |
| 3125 |
RRETURN(MATCH_NOMATCH); |
RRETURN(MATCH_NOMATCH); |
| 3126 |
while (eptr < md->end_subject && (*eptr & 0xc0) == 0x80) eptr++; |
while (++eptr < md->end_subject && (*eptr & 0xc0) == 0x80); |
| 3127 |
} |
} |
| 3128 |
break; |
break; |
| 3129 |
|
|
| 3180 |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
| 3181 |
break; |
break; |
| 3182 |
case 0x000a: |
case 0x000a: |
| 3183 |
|
break; |
| 3184 |
|
|
| 3185 |
case 0x000b: |
case 0x000b: |
| 3186 |
case 0x000c: |
case 0x000c: |
| 3187 |
case 0x0085: |
case 0x0085: |
| 3188 |
|
if (md->bsr_anycrlf) RRETURN(MATCH_NOMATCH); |
| 3189 |
break; |
break; |
| 3190 |
} |
} |
| 3191 |
} |
} |
| 3437 |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
| 3438 |
break; |
break; |
| 3439 |
case 0x000a: |
case 0x000a: |
| 3440 |
|
break; |
| 3441 |
|
|
| 3442 |
case 0x000b: |
case 0x000b: |
| 3443 |
case 0x000c: |
case 0x000c: |
| 3444 |
case 0x0085: |
case 0x0085: |
| 3445 |
case 0x2028: |
case 0x2028: |
| 3446 |
case 0x2029: |
case 0x2029: |
| 3447 |
|
if (md->bsr_anycrlf) RRETURN(MATCH_NOMATCH); |
| 3448 |
break; |
break; |
| 3449 |
} |
} |
| 3450 |
break; |
break; |
| 3596 |
case 0x000d: |
case 0x000d: |
| 3597 |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
if (eptr < md->end_subject && *eptr == 0x0a) eptr++; |
| 3598 |
break; |
break; |
| 3599 |
|
|
| 3600 |
case 0x000a: |
case 0x000a: |
| 3601 |
|
break; |
| 3602 |
|
|
| 3603 |
case 0x000b: |
case 0x000b: |
| 3604 |
case 0x000c: |
case 0x000c: |
| 3605 |
case 0x0085: |
case 0x0085: |
| 3606 |
|
if (md->bsr_anycrlf) RRETURN(MATCH_NOMATCH); |
| 3607 |
break; |
break; |
| 3608 |
} |
} |
| 3609 |
break; |
break; |
| 3775 |
RMATCH(eptr, ecode, offset_top, md, ims, eptrb, 0, RM44); |
RMATCH(eptr, ecode, offset_top, md, ims, eptrb, 0, RM44); |
| 3776 |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
if (rrc != MATCH_NOMATCH) RRETURN(rrc); |
| 3777 |
if (eptr-- == pp) break; /* Stop if tried at original pos */ |
if (eptr-- == pp) break; /* Stop if tried at original pos */ |
| 3778 |
BACKCHAR(eptr); |
if (utf8) BACKCHAR(eptr); |
| 3779 |
} |
} |
| 3780 |
} |
} |
| 3781 |
|
|
| 3814 |
for (;;) /* Move back over one extended */ |
for (;;) /* Move back over one extended */ |
| 3815 |
{ |
{ |
| 3816 |
int len = 1; |
int len = 1; |
|
BACKCHAR(eptr); |
|
| 3817 |
if (!utf8) c = *eptr; else |
if (!utf8) c = *eptr; else |
| 3818 |
{ |
{ |
| 3819 |
|
BACKCHAR(eptr); |
| 3820 |
GETCHARLEN(c, eptr, len); |
GETCHARLEN(c, eptr, len); |
| 3821 |
} |
} |
| 3822 |
prop_category = _pcre_ucp_findprop(c, &prop_chartype, &prop_script); |
prop_category = _pcre_ucp_findprop(c, &prop_chartype, &prop_script); |
| 3901 |
} |
} |
| 3902 |
else |
else |
| 3903 |
{ |
{ |
| 3904 |
if (c != 0x000a && c != 0x000b && c != 0x000c && |
if (c != 0x000a && |
| 3905 |
c != 0x0085 && c != 0x2028 && c != 0x2029) |
(md->bsr_anycrlf || |
| 3906 |
|
(c != 0x000b && c != 0x000c && |
| 3907 |
|
c != 0x0085 && c != 0x2028 && c != 0x2029))) |
| 3908 |
break; |
break; |
| 3909 |
eptr += len; |
eptr += len; |
| 3910 |
} |
} |
| 4057 |
} |
} |
| 4058 |
} |
} |
| 4059 |
else |
else |
| 4060 |
#endif |
#endif /* SUPPORT_UTF8 */ |
| 4061 |
|
|
| 4062 |
/* Not UTF-8 mode */ |
/* Not UTF-8 mode */ |
| 4063 |
{ |
{ |
| 4094 |
} |
} |
| 4095 |
else |
else |
| 4096 |
{ |
{ |
| 4097 |
if (c != 0x000a && c != 0x000b && c != 0x000c && c != 0x0085) |
if (c != 0x000a && |
| 4098 |
|
(md->bsr_anycrlf || |
| 4099 |
|
(c != 0x000b && c != 0x000c && c != 0x0085))) |
| 4100 |
break; |
break; |
| 4101 |
eptr++; |
eptr++; |
| 4102 |
} |
} |
| 4246 |
switch (frame->Xwhere) |
switch (frame->Xwhere) |
| 4247 |
{ |
{ |
| 4248 |
LBL( 1) LBL( 2) LBL( 3) LBL( 4) LBL( 5) LBL( 6) LBL( 7) LBL( 8) |
LBL( 1) LBL( 2) LBL( 3) LBL( 4) LBL( 5) LBL( 6) LBL( 7) LBL( 8) |
| 4249 |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(16) |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(17) |
| 4250 |
LBL(17) LBL(18) LBL(19) LBL(20) LBL(21) LBL(22) LBL(23) LBL(24) |
LBL(19) LBL(24) LBL(25) LBL(26) LBL(27) LBL(29) LBL(31) LBL(33) |
| 4251 |
LBL(25) LBL(26) LBL(27) LBL(28) LBL(29) LBL(30) LBL(31) LBL(32) |
LBL(35) LBL(43) LBL(47) LBL(48) LBL(49) LBL(50) LBL(51) LBL(52) |
| 4252 |
LBL(33) LBL(34) LBL(35) LBL(36) LBL(37) LBL(38) LBL(39) LBL(40) |
LBL(53) LBL(54) |
| 4253 |
LBL(41) LBL(42) LBL(43) LBL(44) LBL(45) LBL(46) LBL(47) |
#ifdef SUPPORT_UTF8 |
| 4254 |
|
LBL(16) LBL(18) LBL(20) LBL(21) LBL(22) LBL(23) LBL(28) LBL(30) |
| 4255 |
|
LBL(32) LBL(34) LBL(42) LBL(46) |
| 4256 |
|
#ifdef SUPPORT_UCP |
| 4257 |
|
LBL(36) LBL(37) LBL(38) LBL(39) LBL(40) LBL(41) LBL(44) LBL(45) |
| 4258 |
|
#endif /* SUPPORT_UCP */ |
| 4259 |
|
#endif /* SUPPORT_UTF8 */ |
| 4260 |
default: |
default: |
| 4261 |
DPRINTF(("jump error in pcre match: label %d non-existent\n", frame->Xwhere)); |
DPRINTF(("jump error in pcre match: label %d non-existent\n", frame->Xwhere)); |
| 4262 |
return PCRE_ERROR_INTERNAL; |
return PCRE_ERROR_INTERNAL; |
| 4435 |
/* Set up other data */ |
/* Set up other data */ |
| 4436 |
|
|
| 4437 |
anchored = ((re->options | options) & PCRE_ANCHORED) != 0; |
anchored = ((re->options | options) & PCRE_ANCHORED) != 0; |
| 4438 |
startline = (re->options & PCRE_STARTLINE) != 0; |
startline = (re->flags & PCRE_STARTLINE) != 0; |
| 4439 |
firstline = (re->options & PCRE_FIRSTLINE) != 0; |
firstline = (re->options & PCRE_FIRSTLINE) != 0; |
| 4440 |
|
|
| 4441 |
/* The code starts after the real_pcre block and the capture name table. */ |
/* The code starts after the real_pcre block and the capture name table. */ |
| 4462 |
md->lcc = tables + lcc_offset; |
md->lcc = tables + lcc_offset; |
| 4463 |
md->ctypes = tables + ctypes_offset; |
md->ctypes = tables + ctypes_offset; |
| 4464 |
|
|
| 4465 |
|
/* Handle different \R options. */ |
| 4466 |
|
|
| 4467 |
|
switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
| 4468 |
|
{ |
| 4469 |
|
case 0: |
| 4470 |
|
if ((re->options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) != 0) |
| 4471 |
|
md->bsr_anycrlf = (re->options & PCRE_BSR_ANYCRLF) != 0; |
| 4472 |
|
else |
| 4473 |
|
#ifdef BSR_ANYCRLF |
| 4474 |
|
md->bsr_anycrlf = TRUE; |
| 4475 |
|
#else |
| 4476 |
|
md->bsr_anycrlf = FALSE; |
| 4477 |
|
#endif |
| 4478 |
|
break; |
| 4479 |
|
|
| 4480 |
|
case PCRE_BSR_ANYCRLF: |
| 4481 |
|
md->bsr_anycrlf = TRUE; |
| 4482 |
|
break; |
| 4483 |
|
|
| 4484 |
|
case PCRE_BSR_UNICODE: |
| 4485 |
|
md->bsr_anycrlf = FALSE; |
| 4486 |
|
break; |
| 4487 |
|
|
| 4488 |
|
default: return PCRE_ERROR_BADNEWLINE; |
| 4489 |
|
} |
| 4490 |
|
|
| 4491 |
/* Handle different types of newline. The three bits give eight cases. If |
/* Handle different types of newline. The three bits give eight cases. If |
| 4492 |
nothing is set at run time, whatever was used at compile time applies. */ |
nothing is set at run time, whatever was used at compile time applies. */ |
| 4493 |
|
|
| 4494 |
switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : (pcre_uint32)options) & |
switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : |
| 4495 |
PCRE_NEWLINE_BITS) |
(pcre_uint32)options) & PCRE_NEWLINE_BITS) |
| 4496 |
{ |
{ |
| 4497 |
case 0: newline = NEWLINE; break; /* Compile-time default */ |
case 0: newline = NEWLINE; break; /* Compile-time default */ |
| 4498 |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
| 4531 |
/* Partial matching is supported only for a restricted set of regexes at the |
/* Partial matching is supported only for a restricted set of regexes at the |
| 4532 |
moment. */ |
moment. */ |
| 4533 |
|
|
| 4534 |
if (md->partial && (re->options & PCRE_NOPARTIAL) != 0) |
if (md->partial && (re->flags & PCRE_NOPARTIAL) != 0) |
| 4535 |
return PCRE_ERROR_BADPARTIAL; |
return PCRE_ERROR_BADPARTIAL; |
| 4536 |
|
|
| 4537 |
/* Check a UTF-8 string if required. Unfortunately there's no way of passing |
/* Check a UTF-8 string if required. Unfortunately there's no way of passing |
| 4608 |
|
|
| 4609 |
if (!anchored) |
if (!anchored) |
| 4610 |
{ |
{ |
| 4611 |
if ((re->options & PCRE_FIRSTSET) != 0) |
if ((re->flags & PCRE_FIRSTSET) != 0) |
| 4612 |
{ |
{ |
| 4613 |
first_byte = re->first_byte & 255; |
first_byte = re->first_byte & 255; |
| 4614 |
if ((first_byte_caseless = ((re->first_byte & REQ_CASELESS) != 0)) == TRUE) |
if ((first_byte_caseless = ((re->first_byte & REQ_CASELESS) != 0)) == TRUE) |
| 4623 |
/* For anchored or unanchored matches, there may be a "last known required |
/* For anchored or unanchored matches, there may be a "last known required |
| 4624 |
character" set. */ |
character" set. */ |
| 4625 |
|
|
| 4626 |
if ((re->options & PCRE_REQCHSET) != 0) |
if ((re->flags & PCRE_REQCHSET) != 0) |
| 4627 |
{ |
{ |
| 4628 |
req_byte = re->req_byte & 255; |
req_byte = re->req_byte & 255; |
| 4629 |
req_byte_caseless = (re->req_byte & REQ_CASELESS) != 0; |
req_byte_caseless = (re->req_byte & REQ_CASELESS) != 0; |
| 4639 |
for(;;) |
for(;;) |
| 4640 |
{ |
{ |
| 4641 |
USPTR save_end_subject = end_subject; |
USPTR save_end_subject = end_subject; |
| 4642 |
|
USPTR new_start_match; |
| 4643 |
|
|
| 4644 |
/* Reset the maximum number of extractions we might see. */ |
/* Reset the maximum number of extractions we might see. */ |
| 4645 |
|
|
| 4670 |
if (first_byte_caseless) |
if (first_byte_caseless) |
| 4671 |
while (start_match < end_subject && |
while (start_match < end_subject && |
| 4672 |
md->lcc[*start_match] != first_byte) |
md->lcc[*start_match] != first_byte) |
| 4673 |
start_match++; |
{ NEXTCHAR(start_match); } |
| 4674 |
else |
else |
| 4675 |
while (start_match < end_subject && *start_match != first_byte) |
while (start_match < end_subject && *start_match != first_byte) |
| 4676 |
start_match++; |
{ NEXTCHAR(start_match); } |
| 4677 |
} |
} |
| 4678 |
|
|
| 4679 |
/* Or to just after a linebreak for a multiline match if possible */ |
/* Or to just after a linebreak for a multiline match if possible */ |
| 4683 |
if (start_match > md->start_subject + start_offset) |
if (start_match > md->start_subject + start_offset) |
| 4684 |
{ |
{ |
| 4685 |
while (start_match <= end_subject && !WAS_NEWLINE(start_match)) |
while (start_match <= end_subject && !WAS_NEWLINE(start_match)) |
| 4686 |
start_match++; |
{ NEXTCHAR(start_match); } |
| 4687 |
|
|
| 4688 |
/* If we have just passed a CR and the newline option is ANY or ANYCRLF, |
/* If we have just passed a CR and the newline option is ANY or ANYCRLF, |
| 4689 |
and we are now at a LF, advance the match position by one more character. |
and we are now at a LF, advance the match position by one more character. |
| 4704 |
while (start_match < end_subject) |
while (start_match < end_subject) |
| 4705 |
{ |
{ |
| 4706 |
register unsigned int c = *start_match; |
register unsigned int c = *start_match; |
| 4707 |
if ((start_bits[c/8] & (1 << (c&7))) == 0) start_match++; else break; |
if ((start_bits[c/8] & (1 << (c&7))) == 0) |
| 4708 |
|
{ NEXTCHAR(start_match); } |
| 4709 |
|
else break; |
| 4710 |
} |
} |
| 4711 |
} |
} |
| 4712 |
|
|
| 4782 |
|
|
| 4783 |
/* OK, we can now run the match. */ |
/* OK, we can now run the match. */ |
| 4784 |
|
|
| 4785 |
md->start_match_ptr = start_match; /* Insurance */ |
md->start_match_ptr = start_match; |
| 4786 |
md->match_call_count = 0; |
md->match_call_count = 0; |
| 4787 |
rc = match(start_match, md->start_code, start_match, 2, md, ims, NULL, 0, 0); |
rc = match(start_match, md->start_code, start_match, 2, md, ims, NULL, 0, 0); |
| 4788 |
|
|
| 4789 |
/* Any return other than MATCH_NOMATCH breaks the loop. */ |
switch(rc) |
| 4790 |
|
{ |
| 4791 |
|
/* NOMATCH and PRUNE advance by one character. THEN at this level acts |
| 4792 |
|
exactly like PRUNE. */ |
| 4793 |
|
|
| 4794 |
if (rc != MATCH_NOMATCH) break; |
case MATCH_NOMATCH: |
| 4795 |
|
case MATCH_PRUNE: |
| 4796 |
|
case MATCH_THEN: |
| 4797 |
|
new_start_match = start_match + 1; |
| 4798 |
|
#ifdef SUPPORT_UTF8 |
| 4799 |
|
if (utf8) |
| 4800 |
|
while(new_start_match < end_subject && (*new_start_match & 0xc0) == 0x80) |
| 4801 |
|
new_start_match++; |
| 4802 |
|
#endif |
| 4803 |
|
break; |
| 4804 |
|
|
| 4805 |
|
/* SKIP passes back the next starting point explicitly. */ |
| 4806 |
|
|
| 4807 |
|
case MATCH_SKIP: |
| 4808 |
|
new_start_match = md->start_match_ptr; |
| 4809 |
|
break; |
| 4810 |
|
|
| 4811 |
|
/* COMMIT disables the bumpalong, but otherwise behaves as NOMATCH. */ |
| 4812 |
|
|
| 4813 |
|
case MATCH_COMMIT: |
| 4814 |
|
rc = MATCH_NOMATCH; |
| 4815 |
|
goto ENDLOOP; |
| 4816 |
|
|
| 4817 |
|
/* Any other return is some kind of error. */ |
| 4818 |
|
|
| 4819 |
|
default: |
| 4820 |
|
goto ENDLOOP; |
| 4821 |
|
} |
| 4822 |
|
|
| 4823 |
|
/* Control reaches here for the various types of "no match at this point" |
| 4824 |
|
result. Reset the code to MATCH_NOMATCH for subsequent checking. */ |
| 4825 |
|
|
| 4826 |
|
rc = MATCH_NOMATCH; |
| 4827 |
|
|
| 4828 |
/* If PCRE_FIRSTLINE is set, the match must happen before or at the first |
/* If PCRE_FIRSTLINE is set, the match must happen before or at the first |
| 4829 |
newline in the subject (though it may continue over the newline). Therefore, |
newline in the subject (though it may continue over the newline). Therefore, |
| 4831 |
|
|
| 4832 |
if (firstline && IS_NEWLINE(start_match)) break; |
if (firstline && IS_NEWLINE(start_match)) break; |
| 4833 |
|
|
| 4834 |
/* Advance the match position by one character. */ |
/* Advance to new matching position */ |
| 4835 |
|
|
| 4836 |
start_match++; |
start_match = new_start_match; |
|
#ifdef SUPPORT_UTF8 |
|
|
if (utf8) |
|
|
while(start_match < end_subject && (*start_match & 0xc0) == 0x80) |
|
|
start_match++; |
|
|
#endif |
|
| 4837 |
|
|
| 4838 |
/* Break the loop if the pattern is anchored or if we have passed the end of |
/* Break the loop if the pattern is anchored or if we have passed the end of |
| 4839 |
the subject. */ |
the subject. */ |
| 4840 |
|
|
| 4841 |
if (anchored || start_match > end_subject) break; |
if (anchored || start_match > end_subject) break; |
| 4842 |
|
|
| 4843 |
/* If we have just passed a CR and the newline option is CRLF or ANY or |
/* If we have just passed a CR and we are now at a LF, and the pattern does |
| 4844 |
ANYCRLF, and we are now at a LF, advance the match position by one more |
not contain any explicit matches for \r or \n, and the newline option is CRLF |
| 4845 |
character. */ |
or ANY or ANYCRLF, advance the match position by one more character. */ |
| 4846 |
|
|
| 4847 |
if (start_match[-1] == '\r' && |
if (start_match[-1] == '\r' && |
| 4848 |
(md->nltype == NLTYPE_ANY || |
start_match < end_subject && |
| 4849 |
md->nltype == NLTYPE_ANYCRLF || |
*start_match == '\n' && |
| 4850 |
md->nllen == 2) && |
(re->flags & PCRE_HASCRORLF) == 0 && |
| 4851 |
start_match < end_subject && |
(md->nltype == NLTYPE_ANY || |
| 4852 |
*start_match == '\n') |
md->nltype == NLTYPE_ANYCRLF || |
| 4853 |
|
md->nllen == 2)) |
| 4854 |
start_match++; |
start_match++; |
| 4855 |
|
|
| 4856 |
} /* End of for(;;) "bumpalong" loop */ |
} /* End of for(;;) "bumpalong" loop */ |
| 4860 |
/* We reach here when rc is not MATCH_NOMATCH, or if one of the stopping |
/* We reach here when rc is not MATCH_NOMATCH, or if one of the stopping |
| 4861 |
conditions is true: |
conditions is true: |
| 4862 |
|
|
| 4863 |
(1) The pattern is anchored; |
(1) The pattern is anchored or the match was failed by (*COMMIT); |
| 4864 |
|
|
| 4865 |
(2) We are past the end of the subject; |
(2) We are past the end of the subject; |
| 4866 |
|
|
| 4875 |
certain parts of the pattern were not used, even though there are more |
certain parts of the pattern were not used, even though there are more |
| 4876 |
capturing parentheses than vector slots. */ |
capturing parentheses than vector slots. */ |
| 4877 |
|
|
| 4878 |
|
ENDLOOP: |
| 4879 |
|
|
| 4880 |
if (rc == MATCH_MATCH) |
if (rc == MATCH_MATCH) |
| 4881 |
{ |
{ |
| 4882 |
if (using_temporary_offsets) |
if (using_temporary_offsets) |