| 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 |
| 43 |
|
|
| 44 |
|
|
| 45 |
#ifdef HAVE_CONFIG_H |
#ifdef HAVE_CONFIG_H |
| 46 |
#include <config.h> |
#include "config.h" |
| 47 |
#endif |
#endif |
| 48 |
|
|
| 49 |
#define NLBLOCK cd /* Block containing newline information */ |
#define NLBLOCK cd /* Block containing newline information */ |
| 140 |
#endif |
#endif |
| 141 |
|
|
| 142 |
|
|
| 143 |
/* Table of special "verbs" like (*PRUNE) */ |
/* Table of special "verbs" like (*PRUNE). This is a short table, so it is |
| 144 |
|
searched linearly. Put all the names into a single string, in order to reduce |
| 145 |
|
the number of relocations when a shared library is dynamically linked. */ |
| 146 |
|
|
| 147 |
typedef struct verbitem { |
typedef struct verbitem { |
|
const char *name; |
|
| 148 |
int len; |
int len; |
| 149 |
int op; |
int op; |
| 150 |
} verbitem; |
} verbitem; |
| 151 |
|
|
| 152 |
static verbitem verbs[] = { |
static const char verbnames[] = |
| 153 |
{ "ACCEPT", 6, OP_ACCEPT }, |
"ACCEPT\0" |
| 154 |
{ "COMMIT", 6, OP_COMMIT }, |
"COMMIT\0" |
| 155 |
{ "F", 1, OP_FAIL }, |
"F\0" |
| 156 |
{ "FAIL", 4, OP_FAIL }, |
"FAIL\0" |
| 157 |
{ "PRUNE", 5, OP_PRUNE }, |
"PRUNE\0" |
| 158 |
{ "SKIP", 4, OP_SKIP }, |
"SKIP\0" |
| 159 |
{ "THEN", 4, OP_THEN } |
"THEN"; |
| 160 |
|
|
| 161 |
|
static const verbitem verbs[] = { |
| 162 |
|
{ 6, OP_ACCEPT }, |
| 163 |
|
{ 6, OP_COMMIT }, |
| 164 |
|
{ 1, OP_FAIL }, |
| 165 |
|
{ 4, OP_FAIL }, |
| 166 |
|
{ 5, OP_PRUNE }, |
| 167 |
|
{ 4, OP_SKIP }, |
| 168 |
|
{ 4, OP_THEN } |
| 169 |
}; |
}; |
| 170 |
|
|
| 171 |
static int verbcount = sizeof(verbs)/sizeof(verbitem); |
static const int verbcount = sizeof(verbs)/sizeof(verbitem); |
| 172 |
|
|
| 173 |
|
|
| 174 |
/* Tables of names of POSIX character classes and their lengths. The list is |
/* Tables of names of POSIX character classes and their lengths. The names are |
| 175 |
terminated by a zero length entry. The first three must be alpha, lower, upper, |
now all in a single string, to reduce the number of relocations when a shared |
| 176 |
as this is assumed for handling case independence. */ |
library is dynamically loaded. The list of lengths is terminated by a zero |
| 177 |
|
length entry. The first three must be alpha, lower, upper, as this is assumed |
| 178 |
static const char *const posix_names[] = { |
for handling case independence. */ |
| 179 |
"alpha", "lower", "upper", |
|
| 180 |
"alnum", "ascii", "blank", "cntrl", "digit", "graph", |
static const char posix_names[] = |
| 181 |
"print", "punct", "space", "word", "xdigit" }; |
"alpha\0" "lower\0" "upper\0" "alnum\0" "ascii\0" "blank\0" |
| 182 |
|
"cntrl\0" "digit\0" "graph\0" "print\0" "punct\0" "space\0" |
| 183 |
|
"word\0" "xdigit"; |
| 184 |
|
|
| 185 |
static const uschar posix_name_lengths[] = { |
static const uschar posix_name_lengths[] = { |
| 186 |
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 }; |
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 }; |
| 219 |
/* The texts of compile-time error messages. These are "char *" because they |
/* The texts of compile-time error messages. These are "char *" because they |
| 220 |
are passed to the outside world. Do not ever re-use any error number, because |
are passed to the outside world. Do not ever re-use any error number, because |
| 221 |
they are documented. Always add a new error instead. Messages marked DEAD below |
they are documented. Always add a new error instead. Messages marked DEAD below |
| 222 |
are no longer used. */ |
are no longer used. This used to be a table of strings, but in order to reduce |
| 223 |
|
the number of relocations needed when a shared library is loaded dynamically, |
| 224 |
static const char *error_texts[] = { |
it is now one long string. We cannot use a table of offsets, because the |
| 225 |
"no error", |
lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we |
| 226 |
"\\ at end of pattern", |
simply count through to the one we want - this isn't a performance issue |
| 227 |
"\\c at end of pattern", |
because these strings are used only when there is a compilation error. */ |
| 228 |
"unrecognized character follows \\", |
|
| 229 |
"numbers out of order in {} quantifier", |
static const char error_texts[] = |
| 230 |
|
"no error\0" |
| 231 |
|
"\\ at end of pattern\0" |
| 232 |
|
"\\c at end of pattern\0" |
| 233 |
|
"unrecognized character follows \\\0" |
| 234 |
|
"numbers out of order in {} quantifier\0" |
| 235 |
/* 5 */ |
/* 5 */ |
| 236 |
"number too big in {} quantifier", |
"number too big in {} quantifier\0" |
| 237 |
"missing terminating ] for character class", |
"missing terminating ] for character class\0" |
| 238 |
"invalid escape sequence in character class", |
"invalid escape sequence in character class\0" |
| 239 |
"range out of order in character class", |
"range out of order in character class\0" |
| 240 |
"nothing to repeat", |
"nothing to repeat\0" |
| 241 |
/* 10 */ |
/* 10 */ |
| 242 |
"operand of unlimited repeat could match the empty string", /** DEAD **/ |
"operand of unlimited repeat could match the empty string\0" /** DEAD **/ |
| 243 |
"internal error: unexpected repeat", |
"internal error: unexpected repeat\0" |
| 244 |
"unrecognized character after (?", |
"unrecognized character after (? or (?-\0" |
| 245 |
"POSIX named classes are supported only within a class", |
"POSIX named classes are supported only within a class\0" |
| 246 |
"missing )", |
"missing )\0" |
| 247 |
/* 15 */ |
/* 15 */ |
| 248 |
"reference to non-existent subpattern", |
"reference to non-existent subpattern\0" |
| 249 |
"erroffset passed as NULL", |
"erroffset passed as NULL\0" |
| 250 |
"unknown option bit(s) set", |
"unknown option bit(s) set\0" |
| 251 |
"missing ) after comment", |
"missing ) after comment\0" |
| 252 |
"parentheses nested too deeply", /** DEAD **/ |
"parentheses nested too deeply\0" /** DEAD **/ |
| 253 |
/* 20 */ |
/* 20 */ |
| 254 |
"regular expression is too large", |
"regular expression is too large\0" |
| 255 |
"failed to get memory", |
"failed to get memory\0" |
| 256 |
"unmatched parentheses", |
"unmatched parentheses\0" |
| 257 |
"internal error: code overflow", |
"internal error: code overflow\0" |
| 258 |
"unrecognized character after (?<", |
"unrecognized character after (?<\0" |
| 259 |
/* 25 */ |
/* 25 */ |
| 260 |
"lookbehind assertion is not fixed length", |
"lookbehind assertion is not fixed length\0" |
| 261 |
"malformed number or name after (?(", |
"malformed number or name after (?(\0" |
| 262 |
"conditional group contains more than two branches", |
"conditional group contains more than two branches\0" |
| 263 |
"assertion expected after (?(", |
"assertion expected after (?(\0" |
| 264 |
"(?R or (?[+-]digits must be followed by )", |
"(?R or (?[+-]digits must be followed by )\0" |
| 265 |
/* 30 */ |
/* 30 */ |
| 266 |
"unknown POSIX class name", |
"unknown POSIX class name\0" |
| 267 |
"POSIX collating elements are not supported", |
"POSIX collating elements are not supported\0" |
| 268 |
"this version of PCRE is not compiled with PCRE_UTF8 support", |
"this version of PCRE is not compiled with PCRE_UTF8 support\0" |
| 269 |
"spare error", /** DEAD **/ |
"spare error\0" /** DEAD **/ |
| 270 |
"character value in \\x{...} sequence is too large", |
"character value in \\x{...} sequence is too large\0" |
| 271 |
/* 35 */ |
/* 35 */ |
| 272 |
"invalid condition (?(0)", |
"invalid condition (?(0)\0" |
| 273 |
"\\C not allowed in lookbehind assertion", |
"\\C not allowed in lookbehind assertion\0" |
| 274 |
"PCRE does not support \\L, \\l, \\N, \\U, or \\u", |
"PCRE does not support \\L, \\l, \\N, \\U, or \\u\0" |
| 275 |
"number after (?C is > 255", |
"number after (?C is > 255\0" |
| 276 |
"closing ) for (?C expected", |
"closing ) for (?C expected\0" |
| 277 |
/* 40 */ |
/* 40 */ |
| 278 |
"recursive call could loop indefinitely", |
"recursive call could loop indefinitely\0" |
| 279 |
"unrecognized character after (?P", |
"unrecognized character after (?P\0" |
| 280 |
"syntax error in subpattern name (missing terminator)", |
"syntax error in subpattern name (missing terminator)\0" |
| 281 |
"two named subpatterns have the same name", |
"two named subpatterns have the same name\0" |
| 282 |
"invalid UTF-8 string", |
"invalid UTF-8 string\0" |
| 283 |
/* 45 */ |
/* 45 */ |
| 284 |
"support for \\P, \\p, and \\X has not been compiled", |
"support for \\P, \\p, and \\X has not been compiled\0" |
| 285 |
"malformed \\P or \\p sequence", |
"malformed \\P or \\p sequence\0" |
| 286 |
"unknown property name after \\P or \\p", |
"unknown property name after \\P or \\p\0" |
| 287 |
"subpattern name is too long (maximum " XSTRING(MAX_NAME_SIZE) " characters)", |
"subpattern name is too long (maximum " XSTRING(MAX_NAME_SIZE) " characters)\0" |
| 288 |
"too many named subpatterns (maximum " XSTRING(MAX_NAME_COUNT) ")", |
"too many named subpatterns (maximum " XSTRING(MAX_NAME_COUNT) ")\0" |
| 289 |
/* 50 */ |
/* 50 */ |
| 290 |
"repeated subpattern is too long", /** DEAD **/ |
"repeated subpattern is too long\0" /** DEAD **/ |
| 291 |
"octal value is greater than \\377 (not in UTF-8 mode)", |
"octal value is greater than \\377 (not in UTF-8 mode)\0" |
| 292 |
"internal error: overran compiling workspace", |
"internal error: overran compiling workspace\0" |
| 293 |
"internal error: previously-checked referenced subpattern not found", |
"internal error: previously-checked referenced subpattern not found\0" |
| 294 |
"DEFINE group contains more than one branch", |
"DEFINE group contains more than one branch\0" |
| 295 |
/* 55 */ |
/* 55 */ |
| 296 |
"repeating a DEFINE group is not allowed", |
"repeating a DEFINE group is not allowed\0" |
| 297 |
"inconsistent NEWLINE options", |
"inconsistent NEWLINE options\0" |
| 298 |
"\\g is not followed by a braced name or an optionally braced non-zero number", |
"\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" |
| 299 |
"(?+ or (?- or (?(+ or (?(- must be followed by a non-zero number", |
"a numbered reference must not be zero\0" |
| 300 |
"(*VERB) with an argument is not supported", |
"(*VERB) with an argument is not supported\0" |
| 301 |
/* 60 */ |
/* 60 */ |
| 302 |
"(*VERB) not recognized", |
"(*VERB) not recognized\0" |
| 303 |
"number is too big" |
"number is too big\0" |
| 304 |
}; |
"subpattern name expected\0" |
| 305 |
|
"digit expected after (?+\0" |
| 306 |
|
"] is an invalid data character in JavaScript compatibility mode"; |
| 307 |
|
|
| 308 |
|
|
| 309 |
/* Table to identify digits and hex digits. This is used when compiling |
/* Table to identify digits and hex digits. This is used when compiling |
| 439 |
|
|
| 440 |
|
|
| 441 |
/************************************************* |
/************************************************* |
| 442 |
|
* Find an error text * |
| 443 |
|
*************************************************/ |
| 444 |
|
|
| 445 |
|
/* The error texts are now all in one long string, to save on relocations. As |
| 446 |
|
some of the text is of unknown length, we can't use a table of offsets. |
| 447 |
|
Instead, just count through the strings. This is not a performance issue |
| 448 |
|
because it happens only when there has been a compilation error. |
| 449 |
|
|
| 450 |
|
Argument: the error number |
| 451 |
|
Returns: pointer to the error string |
| 452 |
|
*/ |
| 453 |
|
|
| 454 |
|
static const char * |
| 455 |
|
find_error_text(int n) |
| 456 |
|
{ |
| 457 |
|
const char *s = error_texts; |
| 458 |
|
for (; n > 0; n--) while (*s++ != 0); |
| 459 |
|
return s; |
| 460 |
|
} |
| 461 |
|
|
| 462 |
|
|
| 463 |
|
/************************************************* |
| 464 |
* Handle escapes * |
* Handle escapes * |
| 465 |
*************************************************/ |
*************************************************/ |
| 466 |
|
|
| 499 |
|
|
| 500 |
if (c == 0) *errorcodeptr = ERR1; |
if (c == 0) *errorcodeptr = ERR1; |
| 501 |
|
|
| 502 |
/* Non-alphamerics are literals. For digits or letters, do an initial lookup in |
/* Non-alphanumerics are literals. For digits or letters, do an initial lookup |
| 503 |
a table. A non-zero result is something that can be returned immediately. |
in a table. A non-zero result is something that can be returned immediately. |
| 504 |
Otherwise further processing may be required. */ |
Otherwise further processing may be required. */ |
| 505 |
|
|
| 506 |
#ifndef EBCDIC /* ASCII coding */ |
#ifndef EBCDIC /* ASCII coding */ |
| 507 |
else if (c < '0' || c > 'z') {} /* Not alphameric */ |
else if (c < '0' || c > 'z') {} /* Not alphanumeric */ |
| 508 |
else if ((i = escapes[c - '0']) != 0) c = i; |
else if ((i = escapes[c - '0']) != 0) c = i; |
| 509 |
|
|
| 510 |
#else /* EBCDIC coding */ |
#else /* EBCDIC coding */ |
| 511 |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphameric */ |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ |
| 512 |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
| 513 |
#endif |
#endif |
| 514 |
|
|
| 532 |
*errorcodeptr = ERR37; |
*errorcodeptr = ERR37; |
| 533 |
break; |
break; |
| 534 |
|
|
| 535 |
/* \g must be followed by a number, either plain or braced. If positive, it |
/* \g must be followed by one of a number of specific things: |
| 536 |
is an absolute backreference. If negative, it is a relative backreference. |
|
| 537 |
This is a Perl 5.10 feature. Perl 5.10 also supports \g{name} as a |
(1) A number, either plain or braced. If positive, it is an absolute |
| 538 |
reference to a named group. This is part of Perl's movement towards a |
backreference. If negative, it is a relative backreference. This is a Perl |
| 539 |
unified syntax for back references. As this is synonymous with \k{name}, we |
5.10 feature. |
| 540 |
fudge it up by pretending it really was \k. */ |
|
| 541 |
|
(2) Perl 5.10 also supports \g{name} as a reference to a named group. This |
| 542 |
|
is part of Perl's movement towards a unified syntax for back references. As |
| 543 |
|
this is synonymous with \k{name}, we fudge it up by pretending it really |
| 544 |
|
was \k. |
| 545 |
|
|
| 546 |
|
(3) For Oniguruma compatibility we also support \g followed by a name or a |
| 547 |
|
number either in angle brackets or in single quotes. However, these are |
| 548 |
|
(possibly recursive) subroutine calls, _not_ backreferences. Just return |
| 549 |
|
the -ESC_g code (cf \k). */ |
| 550 |
|
|
| 551 |
case 'g': |
case 'g': |
| 552 |
|
if (ptr[1] == '<' || ptr[1] == '\'') |
| 553 |
|
{ |
| 554 |
|
c = -ESC_g; |
| 555 |
|
break; |
| 556 |
|
} |
| 557 |
|
|
| 558 |
|
/* Handle the Perl-compatible cases */ |
| 559 |
|
|
| 560 |
if (ptr[1] == '{') |
if (ptr[1] == '{') |
| 561 |
{ |
{ |
| 562 |
const uschar *p; |
const uschar *p; |
| 583 |
while ((digitab[ptr[1]] & ctype_digit) != 0) |
while ((digitab[ptr[1]] & ctype_digit) != 0) |
| 584 |
c = c * 10 + *(++ptr) - '0'; |
c = c * 10 + *(++ptr) - '0'; |
| 585 |
|
|
| 586 |
if (c < 0) |
if (c < 0) /* Integer overflow */ |
| 587 |
{ |
{ |
| 588 |
*errorcodeptr = ERR61; |
*errorcodeptr = ERR61; |
| 589 |
break; |
break; |
| 590 |
} |
} |
| 591 |
|
|
| 592 |
if (c == 0 || (braced && *(++ptr) != '}')) |
if (braced && *(++ptr) != '}') |
| 593 |
{ |
{ |
| 594 |
*errorcodeptr = ERR57; |
*errorcodeptr = ERR57; |
| 595 |
break; |
break; |
| 596 |
} |
} |
| 597 |
|
|
| 598 |
|
if (c == 0) |
| 599 |
|
{ |
| 600 |
|
*errorcodeptr = ERR58; |
| 601 |
|
break; |
| 602 |
|
} |
| 603 |
|
|
| 604 |
if (negated) |
if (negated) |
| 605 |
{ |
{ |
| 635 |
c -= '0'; |
c -= '0'; |
| 636 |
while ((digitab[ptr[1]] & ctype_digit) != 0) |
while ((digitab[ptr[1]] & ctype_digit) != 0) |
| 637 |
c = c * 10 + *(++ptr) - '0'; |
c = c * 10 + *(++ptr) - '0'; |
| 638 |
if (c < 0) |
if (c < 0) /* Integer overflow */ |
| 639 |
{ |
{ |
| 640 |
*errorcodeptr = ERR61; |
*errorcodeptr = ERR61; |
| 641 |
break; |
break; |
| 748 |
break; |
break; |
| 749 |
|
|
| 750 |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
| 751 |
other alphameric following \ is an error if PCRE_EXTRA was set; otherwise, |
other alphanumeric following \ is an error if PCRE_EXTRA was set; |
| 752 |
for Perl compatibility, it is a literal. This code looks a bit odd, but |
otherwise, for Perl compatibility, it is a literal. This code looks a bit |
| 753 |
there used to be some cases other than the default, and there may be again |
odd, but there used to be some cases other than the default, and there may |
| 754 |
in future, so I haven't "optimized" it. */ |
be again in future, so I haven't "optimized" it. */ |
| 755 |
|
|
| 756 |
default: |
default: |
| 757 |
if ((options & PCRE_EXTRA) != 0) switch(c) |
if ((options & PCRE_EXTRA) != 0) switch(c) |
| 840 |
while (bot < top) |
while (bot < top) |
| 841 |
{ |
{ |
| 842 |
i = (bot + top) >> 1; |
i = (bot + top) >> 1; |
| 843 |
c = strcmp(name, _pcre_utt[i].name); |
c = strcmp(name, _pcre_utt_names + _pcre_utt[i].name_offset); |
| 844 |
if (c == 0) |
if (c == 0) |
| 845 |
{ |
{ |
| 846 |
*dptr = _pcre_utt[i].value; |
*dptr = _pcre_utt[i].value; |
| 976 |
|
|
| 977 |
Arguments: |
Arguments: |
| 978 |
ptr current position in the pattern |
ptr current position in the pattern |
| 979 |
count current count of capturing parens so far encountered |
cd compile background data |
| 980 |
name name to seek, or NULL if seeking a numbered subpattern |
name name to seek, or NULL if seeking a numbered subpattern |
| 981 |
lorn name length, or subpattern number if name is NULL |
lorn name length, or subpattern number if name is NULL |
| 982 |
xmode TRUE if we are in /x mode |
xmode TRUE if we are in /x mode |
| 985 |
*/ |
*/ |
| 986 |
|
|
| 987 |
static int |
static int |
| 988 |
find_parens(const uschar *ptr, int count, const uschar *name, int lorn, |
find_parens(const uschar *ptr, compile_data *cd, const uschar *name, int lorn, |
| 989 |
BOOL xmode) |
BOOL xmode) |
| 990 |
{ |
{ |
| 991 |
const uschar *thisname; |
const uschar *thisname; |
| 992 |
|
int count = cd->bracount; |
| 993 |
|
|
| 994 |
for (; *ptr != 0; ptr++) |
for (; *ptr != 0; ptr++) |
| 995 |
{ |
{ |
| 1009 |
continue; |
continue; |
| 1010 |
} |
} |
| 1011 |
|
|
| 1012 |
/* Skip over character classes */ |
/* Skip over character classes; this logic must be similar to the way they |
| 1013 |
|
are handled for real. If the first character is '^', skip it. Also, if the |
| 1014 |
|
first few characters (either before or after ^) are \Q\E or \E we skip them |
| 1015 |
|
too. This makes for compatibility with Perl. */ |
| 1016 |
|
|
| 1017 |
if (*ptr == '[') |
if (*ptr == '[') |
| 1018 |
{ |
{ |
| 1019 |
|
BOOL negate_class = FALSE; |
| 1020 |
|
for (;;) |
| 1021 |
|
{ |
| 1022 |
|
int c = *(++ptr); |
| 1023 |
|
if (c == '\\') |
| 1024 |
|
{ |
| 1025 |
|
if (ptr[1] == 'E') ptr++; |
| 1026 |
|
else if (strncmp((const char *)ptr+1, "Q\\E", 3) == 0) ptr += 3; |
| 1027 |
|
else break; |
| 1028 |
|
} |
| 1029 |
|
else if (!negate_class && c == '^') |
| 1030 |
|
negate_class = TRUE; |
| 1031 |
|
else break; |
| 1032 |
|
} |
| 1033 |
|
|
| 1034 |
|
/* If the next character is ']', it is a data character that must be |
| 1035 |
|
skipped, except in JavaScript compatibility mode. */ |
| 1036 |
|
|
| 1037 |
|
if (ptr[1] == ']' && (cd->external_options & PCRE_JAVASCRIPT_COMPAT) == 0) |
| 1038 |
|
ptr++; |
| 1039 |
|
|
| 1040 |
while (*(++ptr) != ']') |
while (*(++ptr) != ']') |
| 1041 |
{ |
{ |
| 1042 |
if (*ptr == 0) return -1; |
if (*ptr == 0) return -1; |
| 1301 |
case OP_NOT_WORDCHAR: |
case OP_NOT_WORDCHAR: |
| 1302 |
case OP_WORDCHAR: |
case OP_WORDCHAR: |
| 1303 |
case OP_ANY: |
case OP_ANY: |
| 1304 |
|
case OP_ALLANY: |
| 1305 |
branchlength++; |
branchlength++; |
| 1306 |
cc++; |
cc++; |
| 1307 |
break; |
break; |
| 1558 |
can match the empty string or not. It is called from could_be_empty() |
can match the empty string or not. It is called from could_be_empty() |
| 1559 |
below and from compile_branch() when checking for an unlimited repeat of a |
below and from compile_branch() when checking for an unlimited repeat of a |
| 1560 |
group that can match nothing. Note that first_significant_code() skips over |
group that can match nothing. Note that first_significant_code() skips over |
| 1561 |
assertions. If we hit an unclosed bracket, we return "empty" - this means we've |
backward and negative forward assertions when its final argument is TRUE. If we |
| 1562 |
struck an inner bracket whose current branch will already have been scanned. |
hit an unclosed bracket, we return "empty" - this means we've struck an inner |
| 1563 |
|
bracket whose current branch will already have been scanned. |
| 1564 |
|
|
| 1565 |
Arguments: |
Arguments: |
| 1566 |
code points to start of search |
code points to start of search |
| 1582 |
|
|
| 1583 |
c = *code; |
c = *code; |
| 1584 |
|
|
| 1585 |
|
/* Skip over forward assertions; the other assertions are skipped by |
| 1586 |
|
first_significant_code() with a TRUE final argument. */ |
| 1587 |
|
|
| 1588 |
|
if (c == OP_ASSERT) |
| 1589 |
|
{ |
| 1590 |
|
do code += GET(code, 1); while (*code == OP_ALT); |
| 1591 |
|
c = *code; |
| 1592 |
|
continue; |
| 1593 |
|
} |
| 1594 |
|
|
| 1595 |
/* Groups with zero repeats can of course be empty; skip them. */ |
/* Groups with zero repeats can of course be empty; skip them. */ |
| 1596 |
|
|
| 1597 |
if (c == OP_BRAZERO || c == OP_BRAMINZERO) |
if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO) |
| 1598 |
{ |
{ |
| 1599 |
code += _pcre_OP_lengths[c]; |
code += _pcre_OP_lengths[c]; |
| 1600 |
do code += GET(code, 1); while (*code == OP_ALT); |
do code += GET(code, 1); while (*code == OP_ALT); |
| 1680 |
case OP_NOT_WORDCHAR: |
case OP_NOT_WORDCHAR: |
| 1681 |
case OP_WORDCHAR: |
case OP_WORDCHAR: |
| 1682 |
case OP_ANY: |
case OP_ANY: |
| 1683 |
|
case OP_ALLANY: |
| 1684 |
case OP_ANYBYTE: |
case OP_ANYBYTE: |
| 1685 |
case OP_CHAR: |
case OP_CHAR: |
| 1686 |
case OP_CHARNC: |
case OP_CHARNC: |
| 1698 |
case OP_TYPEPOSPLUS: |
case OP_TYPEPOSPLUS: |
| 1699 |
case OP_TYPEEXACT: |
case OP_TYPEEXACT: |
| 1700 |
return FALSE; |
return FALSE; |
| 1701 |
|
|
| 1702 |
/* These are going to continue, as they may be empty, but we have to |
/* These are going to continue, as they may be empty, but we have to |
| 1703 |
fudge the length for the \p and \P cases. */ |
fudge the length for the \p and \P cases. */ |
| 1704 |
|
|
| 1705 |
case OP_TYPESTAR: |
case OP_TYPESTAR: |
| 1706 |
case OP_TYPEMINSTAR: |
case OP_TYPEMINSTAR: |
| 1707 |
case OP_TYPEPOSSTAR: |
case OP_TYPEPOSSTAR: |
| 1709 |
case OP_TYPEMINQUERY: |
case OP_TYPEMINQUERY: |
| 1710 |
case OP_TYPEPOSQUERY: |
case OP_TYPEPOSQUERY: |
| 1711 |
if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; |
if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; |
| 1712 |
break; |
break; |
| 1713 |
|
|
| 1714 |
/* Same for these */ |
/* Same for these */ |
| 1715 |
|
|
| 1716 |
case OP_TYPEUPTO: |
case OP_TYPEUPTO: |
| 1717 |
case OP_TYPEMINUPTO: |
case OP_TYPEMINUPTO: |
| 1718 |
case OP_TYPEPOSUPTO: |
case OP_TYPEPOSUPTO: |
| 1788 |
*************************************************/ |
*************************************************/ |
| 1789 |
|
|
| 1790 |
/* This function is called when the sequence "[:" or "[." or "[=" is |
/* This function is called when the sequence "[:" or "[." or "[=" is |
| 1791 |
encountered in a character class. It checks whether this is followed by an |
encountered in a character class. It checks whether this is followed by a |
| 1792 |
optional ^ and then a sequence of letters, terminated by a matching ":]" or |
sequence of characters terminated by a matching ":]" or ".]" or "=]". If we |
| 1793 |
".]" or "=]". |
reach an unescaped ']' without the special preceding character, return FALSE. |
| 1794 |
|
|
| 1795 |
|
Originally, this function only recognized a sequence of letters between the |
| 1796 |
|
terminators, but it seems that Perl recognizes any sequence of characters, |
| 1797 |
|
though of course unknown POSIX names are subsequently rejected. Perl gives an |
| 1798 |
|
"Unknown POSIX class" error for [:f\oo:] for example, where previously PCRE |
| 1799 |
|
didn't consider this to be a POSIX class. Likewise for [:1234:]. |
| 1800 |
|
|
| 1801 |
|
The problem in trying to be exactly like Perl is in the handling of escapes. We |
| 1802 |
|
have to be sure that [abc[:x\]pqr] is *not* treated as containing a POSIX |
| 1803 |
|
class, but [abc[:x\]pqr:]] is (so that an error can be generated). The code |
| 1804 |
|
below handles the special case of \], but does not try to do any other escape |
| 1805 |
|
processing. This makes it different from Perl for cases such as [:l\ower:] |
| 1806 |
|
where Perl recognizes it as the POSIX class "lower" but PCRE does not recognize |
| 1807 |
|
"l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
| 1808 |
|
I think. |
| 1809 |
|
|
| 1810 |
Argument: |
Arguments: |
| 1811 |
ptr pointer to the initial [ |
ptr pointer to the initial [ |
| 1812 |
endptr where to return the end pointer |
endptr where to return the end pointer |
|
cd pointer to compile data |
|
| 1813 |
|
|
| 1814 |
Returns: TRUE or FALSE |
Returns: TRUE or FALSE |
| 1815 |
*/ |
*/ |
| 1816 |
|
|
| 1817 |
static BOOL |
static BOOL |
| 1818 |
check_posix_syntax(const uschar *ptr, const uschar **endptr, compile_data *cd) |
check_posix_syntax(const uschar *ptr, const uschar **endptr) |
| 1819 |
{ |
{ |
| 1820 |
int terminator; /* Don't combine these lines; the Solaris cc */ |
int terminator; /* Don't combine these lines; the Solaris cc */ |
| 1821 |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 1822 |
if (*(++ptr) == '^') ptr++; |
for (++ptr; *ptr != 0; ptr++) |
|
while ((cd->ctypes[*ptr] & ctype_letter) != 0) ptr++; |
|
|
if (*ptr == terminator && ptr[1] == ']') |
|
| 1823 |
{ |
{ |
| 1824 |
*endptr = ptr; |
if (*ptr == '\\' && ptr[1] == ']') ptr++; else |
| 1825 |
return TRUE; |
{ |
| 1826 |
|
if (*ptr == ']') return FALSE; |
| 1827 |
|
if (*ptr == terminator && ptr[1] == ']') |
| 1828 |
|
{ |
| 1829 |
|
*endptr = ptr; |
| 1830 |
|
return TRUE; |
| 1831 |
|
} |
| 1832 |
|
} |
| 1833 |
} |
} |
| 1834 |
return FALSE; |
return FALSE; |
| 1835 |
} |
} |
| 1854 |
static int |
static int |
| 1855 |
check_posix_name(const uschar *ptr, int len) |
check_posix_name(const uschar *ptr, int len) |
| 1856 |
{ |
{ |
| 1857 |
|
const char *pn = posix_names; |
| 1858 |
register int yield = 0; |
register int yield = 0; |
| 1859 |
while (posix_name_lengths[yield] != 0) |
while (posix_name_lengths[yield] != 0) |
| 1860 |
{ |
{ |
| 1861 |
if (len == posix_name_lengths[yield] && |
if (len == posix_name_lengths[yield] && |
| 1862 |
strncmp((const char *)ptr, posix_names[yield], len) == 0) return yield; |
strncmp((const char *)ptr, pn, len) == 0) return yield; |
| 1863 |
|
pn += posix_name_lengths[yield] + 1; |
| 1864 |
yield++; |
yield++; |
| 1865 |
} |
} |
| 1866 |
return -1; |
return -1; |
| 1875 |
that is referenced. This means that groups can be replicated for fixed |
that is referenced. This means that groups can be replicated for fixed |
| 1876 |
repetition simply by copying (because the recursion is allowed to refer to |
repetition simply by copying (because the recursion is allowed to refer to |
| 1877 |
earlier groups that are outside the current group). However, when a group is |
earlier groups that are outside the current group). However, when a group is |
| 1878 |
optional (i.e. the minimum quantifier is zero), OP_BRAZERO is inserted before |
optional (i.e. the minimum quantifier is zero), OP_BRAZERO or OP_SKIPZERO is |
| 1879 |
it, after it has been compiled. This means that any OP_RECURSE items within it |
inserted before it, after it has been compiled. This means that any OP_RECURSE |
| 1880 |
that refer to the group itself or any contained groups have to have their |
items within it that refer to the group itself or any contained groups have to |
| 1881 |
offsets adjusted. That one of the jobs of this function. Before it is called, |
have their offsets adjusted. That one of the jobs of this function. Before it |
| 1882 |
the partially compiled regex must be temporarily terminated with OP_END. |
is called, the partially compiled regex must be temporarily terminated with |
| 1883 |
|
OP_END. |
| 1884 |
|
|
| 1885 |
This function has been extended with the possibility of forward references for |
This function has been extended with the possibility of forward references for |
| 1886 |
recursions and subroutine calls. It must also check the list of such references |
recursions and subroutine calls. It must also check the list of such references |
| 1911 |
|
|
| 1912 |
/* See if this recursion is on the forward reference list. If so, adjust the |
/* See if this recursion is on the forward reference list. If so, adjust the |
| 1913 |
reference. */ |
reference. */ |
| 1914 |
|
|
| 1915 |
for (hc = save_hwm; hc < cd->hwm; hc += LINK_SIZE) |
for (hc = save_hwm; hc < cd->hwm; hc += LINK_SIZE) |
| 1916 |
{ |
{ |
| 1917 |
offset = GET(hc, 0); |
offset = GET(hc, 0); |
| 2165 |
/* For OP_NOT, "item" must be a single-byte character. */ |
/* For OP_NOT, "item" must be a single-byte character. */ |
| 2166 |
|
|
| 2167 |
case OP_NOT: |
case OP_NOT: |
|
if (next < 0) return FALSE; /* Not a character */ |
|
| 2168 |
if (item == next) return TRUE; |
if (item == next) return TRUE; |
| 2169 |
if ((options & PCRE_CASELESS) == 0) return FALSE; |
if ((options & PCRE_CASELESS) == 0) return FALSE; |
| 2170 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 2427 |
BOOL class_utf8; |
BOOL class_utf8; |
| 2428 |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
| 2429 |
uschar *class_utf8data; |
uschar *class_utf8data; |
| 2430 |
|
uschar *class_utf8data_base; |
| 2431 |
uschar utf8_char[6]; |
uschar utf8_char[6]; |
| 2432 |
#else |
#else |
| 2433 |
BOOL utf8 = FALSE; |
BOOL utf8 = FALSE; |
| 2467 |
for (;; ptr++) |
for (;; ptr++) |
| 2468 |
{ |
{ |
| 2469 |
BOOL negate_class; |
BOOL negate_class; |
| 2470 |
|
BOOL should_flip_negation; |
| 2471 |
BOOL possessive_quantifier; |
BOOL possessive_quantifier; |
| 2472 |
BOOL is_quantifier; |
BOOL is_quantifier; |
| 2473 |
BOOL is_recurse; |
BOOL is_recurse; |
| 2487 |
/* Get next byte in the pattern */ |
/* Get next byte in the pattern */ |
| 2488 |
|
|
| 2489 |
c = *ptr; |
c = *ptr; |
| 2490 |
|
|
| 2491 |
/* 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 |
| 2492 |
previous cycle of this loop. */ |
previous cycle of this loop. */ |
| 2493 |
|
|
| 2667 |
zerofirstbyte = firstbyte; |
zerofirstbyte = firstbyte; |
| 2668 |
zeroreqbyte = reqbyte; |
zeroreqbyte = reqbyte; |
| 2669 |
previous = code; |
previous = code; |
| 2670 |
*code++ = OP_ANY; |
*code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; |
| 2671 |
break; |
break; |
| 2672 |
|
|
| 2673 |
|
|
| 2682 |
opcode is compiled. It may optionally have a bit map for characters < 256, |
opcode is compiled. It may optionally have a bit map for characters < 256, |
| 2683 |
but those above are are explicitly listed afterwards. A flag byte tells |
but those above are are explicitly listed afterwards. A flag byte tells |
| 2684 |
whether the bitmap is present, and whether this is a negated class or not. |
whether the bitmap is present, and whether this is a negated class or not. |
| 2685 |
*/ |
|
| 2686 |
|
In JavaScript compatibility mode, an isolated ']' causes an error. In |
| 2687 |
|
default (Perl) mode, it is treated as a data character. */ |
| 2688 |
|
|
| 2689 |
|
case ']': |
| 2690 |
|
if ((cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) |
| 2691 |
|
{ |
| 2692 |
|
*errorcodeptr = ERR64; |
| 2693 |
|
goto FAILED; |
| 2694 |
|
} |
| 2695 |
|
goto NORMAL_CHAR; |
| 2696 |
|
|
| 2697 |
case '[': |
case '[': |
| 2698 |
previous = code; |
previous = code; |
| 2701 |
they are encountered at the top level, so we'll do that too. */ |
they are encountered at the top level, so we'll do that too. */ |
| 2702 |
|
|
| 2703 |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2704 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2705 |
{ |
{ |
| 2706 |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
| 2707 |
goto FAILED; |
goto FAILED; |
| 2725 |
negate_class = TRUE; |
negate_class = TRUE; |
| 2726 |
else break; |
else break; |
| 2727 |
} |
} |
| 2728 |
|
|
| 2729 |
|
/* Empty classes are allowed in JavaScript compatibility mode. Otherwise, |
| 2730 |
|
an initial ']' is taken as a data character -- the code below handles |
| 2731 |
|
that. In JS mode, [] must always fail, so generate OP_FAIL, whereas |
| 2732 |
|
[^] must match any character, so generate OP_ALLANY. */ |
| 2733 |
|
|
| 2734 |
|
if (c ==']' && (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) |
| 2735 |
|
{ |
| 2736 |
|
*code++ = negate_class? OP_ALLANY : OP_FAIL; |
| 2737 |
|
if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
| 2738 |
|
zerofirstbyte = firstbyte; |
| 2739 |
|
break; |
| 2740 |
|
} |
| 2741 |
|
|
| 2742 |
|
/* If a class contains a negative special such as \S, we need to flip the |
| 2743 |
|
negation flag at the end, so that support for characters > 255 works |
| 2744 |
|
correctly (they are all included in the class). */ |
| 2745 |
|
|
| 2746 |
|
should_flip_negation = FALSE; |
| 2747 |
|
|
| 2748 |
/* Keep a count of chars with values < 256 so that we can optimize the case |
/* Keep a count of chars with values < 256 so that we can optimize the case |
| 2749 |
of just a single character (as long as it's < 256). However, For higher |
of just a single character (as long as it's < 256). However, For higher |
| 2762 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 2763 |
class_utf8 = FALSE; /* No chars >= 256 */ |
class_utf8 = FALSE; /* No chars >= 256 */ |
| 2764 |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
| 2765 |
|
class_utf8data_base = class_utf8data; /* For resetting in pass 1 */ |
| 2766 |
#endif |
#endif |
| 2767 |
|
|
| 2768 |
/* Process characters until ] is reached. By writing this as a "do" it |
/* Process characters until ] is reached. By writing this as a "do" it |
| 2778 |
{ /* Braces are required because the */ |
{ /* Braces are required because the */ |
| 2779 |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
| 2780 |
} |
} |
| 2781 |
|
|
| 2782 |
|
/* In the pre-compile phase, accumulate the length of any UTF-8 extra |
| 2783 |
|
data and reset the pointer. This is so that very large classes that |
| 2784 |
|
contain a zillion UTF-8 characters no longer overwrite the work space |
| 2785 |
|
(which is on the stack). */ |
| 2786 |
|
|
| 2787 |
|
if (lengthptr != NULL) |
| 2788 |
|
{ |
| 2789 |
|
*lengthptr += class_utf8data - class_utf8data_base; |
| 2790 |
|
class_utf8data = class_utf8data_base; |
| 2791 |
|
} |
| 2792 |
|
|
| 2793 |
#endif |
#endif |
| 2794 |
|
|
| 2795 |
/* Inside \Q...\E everything is literal except \E */ |
/* Inside \Q...\E everything is literal except \E */ |
| 2813 |
|
|
| 2814 |
if (c == '[' && |
if (c == '[' && |
| 2815 |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2816 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2817 |
{ |
{ |
| 2818 |
BOOL local_negate = FALSE; |
BOOL local_negate = FALSE; |
| 2819 |
int posix_class, taboffset, tabopt; |
int posix_class, taboffset, tabopt; |
| 2830 |
if (*ptr == '^') |
if (*ptr == '^') |
| 2831 |
{ |
{ |
| 2832 |
local_negate = TRUE; |
local_negate = TRUE; |
| 2833 |
|
should_flip_negation = TRUE; /* Note negative special */ |
| 2834 |
ptr++; |
ptr++; |
| 2835 |
} |
} |
| 2836 |
|
|
| 2905 |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 2906 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 2907 |
|
|
| 2908 |
if (-c == ESC_b) c = '\b'; /* \b is backslash in a class */ |
if (-c == ESC_b) c = '\b'; /* \b is backspace in a class */ |
| 2909 |
else if (-c == ESC_X) c = 'X'; /* \X is literal X in a class */ |
else if (-c == ESC_X) c = 'X'; /* \X is literal X in a class */ |
| 2910 |
else if (-c == ESC_R) c = 'R'; /* \R is literal R in a class */ |
else if (-c == ESC_R) c = 'R'; /* \R is literal R in a class */ |
| 2911 |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
| 2933 |
continue; |
continue; |
| 2934 |
|
|
| 2935 |
case ESC_D: |
case ESC_D: |
| 2936 |
|
should_flip_negation = TRUE; |
| 2937 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
| 2938 |
continue; |
continue; |
| 2939 |
|
|
| 2942 |
continue; |
continue; |
| 2943 |
|
|
| 2944 |
case ESC_W: |
case ESC_W: |
| 2945 |
|
should_flip_negation = TRUE; |
| 2946 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
| 2947 |
continue; |
continue; |
| 2948 |
|
|
| 2952 |
continue; |
continue; |
| 2953 |
|
|
| 2954 |
case ESC_S: |
case ESC_S: |
| 2955 |
|
should_flip_negation = TRUE; |
| 2956 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
| 2957 |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
| 2958 |
continue; |
continue; |
| 2959 |
|
|
|
case ESC_E: /* Perl ignores an orphan \E */ |
|
|
continue; |
|
|
|
|
| 2960 |
default: /* Not recognized; fall through */ |
default: /* Not recognized; fall through */ |
| 2961 |
break; /* Need "default" setting to stop compiler warning. */ |
break; /* Need "default" setting to stop compiler warning. */ |
| 2962 |
} |
} |
| 3144 |
|
|
| 3145 |
oldptr = ptr; |
oldptr = ptr; |
| 3146 |
|
|
| 3147 |
|
/* Remember \r or \n */ |
| 3148 |
|
|
| 3149 |
|
if (c == '\r' || c == '\n') cd->external_flags |= PCRE_HASCRORLF; |
| 3150 |
|
|
| 3151 |
|
/* Check for range */ |
| 3152 |
|
|
| 3153 |
if (!inescq && ptr[1] == '-') |
if (!inescq && ptr[1] == '-') |
| 3154 |
{ |
{ |
| 3155 |
int d; |
int d; |
| 3191 |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3192 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 3193 |
|
|
| 3194 |
/* \b is backslash; \X is literal X; \R is literal R; any other |
/* \b is backspace; \X is literal X; \R is literal R; any other |
| 3195 |
special means the '-' was literal */ |
special means the '-' was literal */ |
| 3196 |
|
|
| 3197 |
if (d < 0) |
if (d < 0) |
| 3217 |
|
|
| 3218 |
if (d == c) goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
if (d == c) goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
| 3219 |
|
|
| 3220 |
|
/* Remember \r or \n */ |
| 3221 |
|
|
| 3222 |
|
if (d == '\r' || d == '\n') cd->external_flags |= PCRE_HASCRORLF; |
| 3223 |
|
|
| 3224 |
/* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless |
/* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless |
| 3225 |
matching, we have to use an XCLASS with extra data items. Caseless |
matching, we have to use an XCLASS with extra data items. Caseless |
| 3226 |
matching for characters > 127 is available only if UCP support is |
matching for characters > 127 is available only if UCP support is |
| 3374 |
goto FAILED; |
goto FAILED; |
| 3375 |
} |
} |
| 3376 |
|
|
| 3377 |
|
|
| 3378 |
|
/* This code has been disabled because it would mean that \s counts as |
| 3379 |
|
an explicit \r or \n reference, and that's not really what is wanted. Now |
| 3380 |
|
we set the flag only if there is a literal "\r" or "\n" in the class. */ |
| 3381 |
|
|
| 3382 |
|
#if 0 |
| 3383 |
|
/* Remember whether \r or \n are in this class */ |
| 3384 |
|
|
| 3385 |
|
if (negate_class) |
| 3386 |
|
{ |
| 3387 |
|
if ((classbits[1] & 0x24) != 0x24) cd->external_flags |= PCRE_HASCRORLF; |
| 3388 |
|
} |
| 3389 |
|
else |
| 3390 |
|
{ |
| 3391 |
|
if ((classbits[1] & 0x24) != 0) cd->external_flags |= PCRE_HASCRORLF; |
| 3392 |
|
} |
| 3393 |
|
#endif |
| 3394 |
|
|
| 3395 |
|
|
| 3396 |
/* 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 |
| 3397 |
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 |
| 3398 |
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 |
| 3399 |
optimize. |
optimize. |
| 3400 |
|
|
| 3401 |
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 |
| 3402 |
characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR |
characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR |
| 3403 |
operate on single-bytes only. This is an historical hangover. Maybe one day |
operate on single-bytes only. This is an historical hangover. Maybe one day |
| 3411 |
reqbyte, save the previous value for reinstating. */ |
reqbyte, save the previous value for reinstating. */ |
| 3412 |
|
|
| 3413 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 3414 |
if (class_charcount == 1 && !class_utf8 && |
if (class_charcount == 1 && !class_utf8 && |
| 3415 |
(!utf8 || !negate_class || class_lastchar < 128)) |
(!utf8 || !negate_class || class_lastchar < 128)) |
| 3416 |
#else |
#else |
| 3417 |
if (class_charcount == 1) |
if (class_charcount == 1) |
| 3455 |
zeroreqbyte = reqbyte; |
zeroreqbyte = reqbyte; |
| 3456 |
|
|
| 3457 |
/* If there are characters with values > 255, we have to compile an |
/* If there are characters with values > 255, we have to compile an |
| 3458 |
extended class, with its own opcode. If there are no characters < 256, |
extended class, with its own opcode, unless there was a negated special |
| 3459 |
we can omit the bitmap in the actual compiled code. */ |
such as \S in the class, because in that case all characters > 255 are in |
| 3460 |
|
the class, so any that were explicitly given as well can be ignored. If |
| 3461 |
|
(when there are explicit characters > 255 that must be listed) there are no |
| 3462 |
|
characters < 256, we can omit the bitmap in the actual compiled code. */ |
| 3463 |
|
|
| 3464 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 3465 |
if (class_utf8) |
if (class_utf8 && !should_flip_negation) |
| 3466 |
{ |
{ |
| 3467 |
*class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
*class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
| 3468 |
*code++ = OP_XCLASS; |
*code++ = OP_XCLASS; |
| 3488 |
} |
} |
| 3489 |
#endif |
#endif |
| 3490 |
|
|
| 3491 |
/* If there are no characters > 255, negate the 32-byte map if necessary, |
/* If there are no characters > 255, set the opcode to OP_CLASS or |
| 3492 |
and copy it into the code vector. If this is the first thing in the branch, |
OP_NCLASS, depending on whether the whole class was negated and whether |
| 3493 |
there can be no first char setting, whatever the repeat count. Any reqbyte |
there were negative specials such as \S in the class. Then copy the 32-byte |
| 3494 |
setting must remain unchanged after any kind of repeat. */ |
map into the code vector, negating it if necessary. */ |
| 3495 |
|
|
| 3496 |
|
*code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
| 3497 |
if (negate_class) |
if (negate_class) |
| 3498 |
{ |
{ |
|
*code++ = OP_NCLASS; |
|
| 3499 |
if (lengthptr == NULL) /* Save time in the pre-compile phase */ |
if (lengthptr == NULL) /* Save time in the pre-compile phase */ |
| 3500 |
for (c = 0; c < 32; c++) code[c] = ~classbits[c]; |
for (c = 0; c < 32; c++) code[c] = ~classbits[c]; |
| 3501 |
} |
} |
| 3502 |
else |
else |
| 3503 |
{ |
{ |
|
*code++ = OP_CLASS; |
|
| 3504 |
memcpy(code, classbits, 32); |
memcpy(code, classbits, 32); |
| 3505 |
} |
} |
| 3506 |
code += 32; |
code += 32; |
| 3686 |
/* All real repeats make it impossible to handle partial matching (maybe |
/* All real repeats make it impossible to handle partial matching (maybe |
| 3687 |
one day we will be able to remove this restriction). */ |
one day we will be able to remove this restriction). */ |
| 3688 |
|
|
| 3689 |
if (repeat_max != 1) cd->nopartial = TRUE; |
if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; |
| 3690 |
|
|
| 3691 |
/* Combine the op_type with the repeat_type */ |
/* Combine the op_type with the repeat_type */ |
| 3692 |
|
|
| 3836 |
/* All real repeats make it impossible to handle partial matching (maybe |
/* All real repeats make it impossible to handle partial matching (maybe |
| 3837 |
one day we will be able to remove this restriction). */ |
one day we will be able to remove this restriction). */ |
| 3838 |
|
|
| 3839 |
if (repeat_max != 1) cd->nopartial = TRUE; |
if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; |
| 3840 |
|
|
| 3841 |
if (repeat_min == 0 && repeat_max == -1) |
if (repeat_min == 0 && repeat_max == -1) |
| 3842 |
*code++ = OP_CRSTAR + repeat_type; |
*code++ = OP_CRSTAR + repeat_type; |
| 3894 |
|
|
| 3895 |
if (repeat_min == 0) |
if (repeat_min == 0) |
| 3896 |
{ |
{ |
| 3897 |
/* If the maximum is also zero, we just omit the group from the output |
/* If the maximum is also zero, we used to just omit the group from the |
| 3898 |
altogether. */ |
output altogether, like this: |
| 3899 |
|
|
| 3900 |
if (repeat_max == 0) |
** if (repeat_max == 0) |
| 3901 |
{ |
** { |
| 3902 |
code = previous; |
** code = previous; |
| 3903 |
goto END_REPEAT; |
** goto END_REPEAT; |
| 3904 |
} |
** } |
| 3905 |
|
|
| 3906 |
|
However, that fails when a group is referenced as a subroutine from |
| 3907 |
|
elsewhere in the pattern, so now we stick in OP_SKIPZERO in front of it |
| 3908 |
|
so that it is skipped on execution. As we don't have a list of which |
| 3909 |
|
groups are referenced, we cannot do this selectively. |
| 3910 |
|
|
| 3911 |
|
If the maximum is 1 or unlimited, we just have to stick in the BRAZERO |
| 3912 |
|
and do no more at this point. However, we do need to adjust any |
| 3913 |
|
OP_RECURSE calls inside the group that refer to the group itself or any |
| 3914 |
|
internal or forward referenced group, because the offset is from the |
| 3915 |
|
start of the whole regex. Temporarily terminate the pattern while doing |
| 3916 |
|
this. */ |
| 3917 |
|
|
| 3918 |
/* If the maximum is 1 or unlimited, we just have to stick in the |
if (repeat_max <= 1) /* Covers 0, 1, and unlimited */ |
|
BRAZERO and do no more at this point. However, we do need to adjust |
|
|
any OP_RECURSE calls inside the group that refer to the group itself or |
|
|
any internal or forward referenced group, because the offset is from |
|
|
the start of the whole regex. Temporarily terminate the pattern while |
|
|
doing this. */ |
|
|
|
|
|
if (repeat_max <= 1) |
|
| 3919 |
{ |
{ |
| 3920 |
*code = OP_END; |
*code = OP_END; |
| 3921 |
adjust_recurse(previous, 1, utf8, cd, save_hwm); |
adjust_recurse(previous, 1, utf8, cd, save_hwm); |
| 3922 |
memmove(previous+1, previous, len); |
memmove(previous+1, previous, len); |
| 3923 |
code++; |
code++; |
| 3924 |
|
if (repeat_max == 0) |
| 3925 |
|
{ |
| 3926 |
|
*previous++ = OP_SKIPZERO; |
| 3927 |
|
goto END_REPEAT; |
| 3928 |
|
} |
| 3929 |
*previous++ = OP_BRAZERO + repeat_type; |
*previous++ = OP_BRAZERO + repeat_type; |
| 3930 |
} |
} |
| 3931 |
|
|
| 4119 |
} |
} |
| 4120 |
} |
} |
| 4121 |
} |
} |
| 4122 |
|
|
| 4123 |
|
/* If previous is OP_FAIL, it was generated by an empty class [] in |
| 4124 |
|
JavaScript mode. The other ways in which OP_FAIL can be generated, that is |
| 4125 |
|
by (*FAIL) or (?!) set previous to NULL, which gives a "nothing to repeat" |
| 4126 |
|
error above. We can just ignore the repeat in JS case. */ |
| 4127 |
|
|
| 4128 |
|
else if (*previous == OP_FAIL) goto END_REPEAT; |
| 4129 |
|
|
| 4130 |
/* Else there's some kind of shambles */ |
/* Else there's some kind of shambles */ |
| 4131 |
|
|
| 4153 |
int len; |
int len; |
| 4154 |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
| 4155 |
*tempcode == OP_NOTEXACT) |
*tempcode == OP_NOTEXACT) |
| 4156 |
tempcode += _pcre_OP_lengths[*tempcode]; |
tempcode += _pcre_OP_lengths[*tempcode] + |
| 4157 |
|
((*tempcode == OP_TYPEEXACT && |
| 4158 |
|
(tempcode[3] == OP_PROP || tempcode[3] == OP_NOTPROP))? 2:0); |
| 4159 |
len = code - tempcode; |
len = code - tempcode; |
| 4160 |
if (len > 0) switch (*tempcode) |
if (len > 0) switch (*tempcode) |
| 4161 |
{ |
{ |
| 4207 |
bravalue = OP_CBRA; |
bravalue = OP_CBRA; |
| 4208 |
save_hwm = cd->hwm; |
save_hwm = cd->hwm; |
| 4209 |
reset_bracount = FALSE; |
reset_bracount = FALSE; |
| 4210 |
|
|
| 4211 |
/* First deal with various "verbs" that can be introduced by '*'. */ |
/* First deal with various "verbs" that can be introduced by '*'. */ |
| 4212 |
|
|
| 4213 |
if (*(++ptr) == '*' && (cd->ctypes[ptr[1]] & ctype_letter) != 0) |
if (*(++ptr) == '*' && (cd->ctypes[ptr[1]] & ctype_letter) != 0) |
| 4214 |
{ |
{ |
| 4215 |
int i, namelen; |
int i, namelen; |
| 4216 |
|
const char *vn = verbnames; |
| 4217 |
const uschar *name = ++ptr; |
const uschar *name = ++ptr; |
| 4218 |
previous = NULL; |
previous = NULL; |
| 4219 |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0); |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0); |
| 4231 |
for (i = 0; i < verbcount; i++) |
for (i = 0; i < verbcount; i++) |
| 4232 |
{ |
{ |
| 4233 |
if (namelen == verbs[i].len && |
if (namelen == verbs[i].len && |
| 4234 |
strncmp((char *)name, verbs[i].name, namelen) == 0) |
strncmp((char *)name, vn, namelen) == 0) |
| 4235 |
{ |
{ |
| 4236 |
*code = verbs[i].op; |
*code = verbs[i].op; |
| 4237 |
if (*code++ == OP_ACCEPT) cd->had_accept = TRUE; |
if (*code++ == OP_ACCEPT) cd->had_accept = TRUE; |
| 4238 |
break; |
break; |
| 4239 |
} |
} |
| 4240 |
|
vn += verbs[i].len + 1; |
| 4241 |
} |
} |
| 4242 |
if (i < verbcount) continue; |
if (i < verbcount) continue; |
| 4243 |
*errorcodeptr = ERR60; |
*errorcodeptr = ERR60; |
| 4382 |
*errorcodeptr = ERR58; |
*errorcodeptr = ERR58; |
| 4383 |
goto FAILED; |
goto FAILED; |
| 4384 |
} |
} |
| 4385 |
if (refsign == '-') |
recno = (refsign == '-')? |
| 4386 |
|
cd->bracount - recno + 1 : recno +cd->bracount; |
| 4387 |
|
if (recno <= 0 || recno > cd->final_bracount) |
| 4388 |
{ |
{ |
| 4389 |
recno = cd->bracount - recno + 1; |
*errorcodeptr = ERR15; |
| 4390 |
if (recno <= 0) |
goto FAILED; |
|
{ |
|
|
*errorcodeptr = ERR15; |
|
|
goto FAILED; |
|
|
} |
|
| 4391 |
} |
} |
|
else recno += cd->bracount; |
|
| 4392 |
PUT2(code, 2+LINK_SIZE, recno); |
PUT2(code, 2+LINK_SIZE, recno); |
| 4393 |
break; |
break; |
| 4394 |
} |
} |
| 4413 |
|
|
| 4414 |
/* Search the pattern for a forward reference */ |
/* Search the pattern for a forward reference */ |
| 4415 |
|
|
| 4416 |
else if ((i = find_parens(ptr, cd->bracount, name, namelen, |
else if ((i = find_parens(ptr, cd, name, namelen, |
| 4417 |
(options & PCRE_EXTENDED) != 0)) > 0) |
(options & PCRE_EXTENDED) != 0)) > 0) |
| 4418 |
{ |
{ |
| 4419 |
PUT2(code, 2+LINK_SIZE, i); |
PUT2(code, 2+LINK_SIZE, i); |
| 4460 |
skipbytes = 1; |
skipbytes = 1; |
| 4461 |
} |
} |
| 4462 |
|
|
| 4463 |
/* Check for the "name" actually being a subpattern number. */ |
/* Check for the "name" actually being a subpattern number. We are |
| 4464 |
|
in the second pass here, so final_bracount is set. */ |
| 4465 |
|
|
| 4466 |
else if (recno > 0) |
else if (recno > 0 && recno <= cd->final_bracount) |
| 4467 |
{ |
{ |
| 4468 |
PUT2(code, 2+LINK_SIZE, recno); |
PUT2(code, 2+LINK_SIZE, recno); |
| 4469 |
} |
} |
| 4657 |
|
|
| 4658 |
/* We come here from the Python syntax above that handles both |
/* We come here from the Python syntax above that handles both |
| 4659 |
references (?P=name) and recursion (?P>name), as well as falling |
references (?P=name) and recursion (?P>name), as well as falling |
| 4660 |
through from the Perl recursion syntax (?&name). */ |
through from the Perl recursion syntax (?&name). We also come here from |
| 4661 |
|
the Perl \k<name> or \k'name' back reference syntax and the \k{name} |
| 4662 |
|
.NET syntax, and the Oniguruma \g<...> and \g'...' subroutine syntax. */ |
| 4663 |
|
|
| 4664 |
NAMED_REF_OR_RECURSE: |
NAMED_REF_OR_RECURSE: |
| 4665 |
name = ++ptr; |
name = ++ptr; |
| 4671 |
|
|
| 4672 |
if (lengthptr != NULL) |
if (lengthptr != NULL) |
| 4673 |
{ |
{ |
| 4674 |
|
if (namelen == 0) |
| 4675 |
|
{ |
| 4676 |
|
*errorcodeptr = ERR62; |
| 4677 |
|
goto FAILED; |
| 4678 |
|
} |
| 4679 |
if (*ptr != terminator) |
if (*ptr != terminator) |
| 4680 |
{ |
{ |
| 4681 |
*errorcodeptr = ERR42; |
*errorcodeptr = ERR42; |
| 4689 |
recno = 0; |
recno = 0; |
| 4690 |
} |
} |
| 4691 |
|
|
| 4692 |
/* In the real compile, seek the name in the table */ |
/* In the real compile, seek the name in the table. We check the name |
| 4693 |
|
first, and then check that we have reached the end of the name in the |
| 4694 |
|
table. That way, if the name that is longer than any in the table, |
| 4695 |
|
the comparison will fail without reading beyond the table entry. */ |
| 4696 |
|
|
| 4697 |
else |
else |
| 4698 |
{ |
{ |
| 4699 |
slot = cd->name_table; |
slot = cd->name_table; |
| 4700 |
for (i = 0; i < cd->names_found; i++) |
for (i = 0; i < cd->names_found; i++) |
| 4701 |
{ |
{ |
| 4702 |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0) break; |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0 && |
| 4703 |
|
slot[2+namelen] == 0) |
| 4704 |
|
break; |
| 4705 |
slot += cd->name_entry_size; |
slot += cd->name_entry_size; |
| 4706 |
} |
} |
| 4707 |
|
|
| 4710 |
recno = GET2(slot, 0); |
recno = GET2(slot, 0); |
| 4711 |
} |
} |
| 4712 |
else if ((recno = /* Forward back reference */ |
else if ((recno = /* Forward back reference */ |
| 4713 |
find_parens(ptr, cd->bracount, name, namelen, |
find_parens(ptr, cd, name, namelen, |
| 4714 |
(options & PCRE_EXTENDED) != 0)) <= 0) |
(options & PCRE_EXTENDED) != 0)) <= 0) |
| 4715 |
{ |
{ |
| 4716 |
*errorcodeptr = ERR15; |
*errorcodeptr = ERR15; |
| 4737 |
case '5': case '6': case '7': case '8': case '9': /* subroutine */ |
case '5': case '6': case '7': case '8': case '9': /* subroutine */ |
| 4738 |
{ |
{ |
| 4739 |
const uschar *called; |
const uschar *called; |
| 4740 |
|
terminator = ')'; |
| 4741 |
|
|
| 4742 |
|
/* Come here from the \g<...> and \g'...' code (Oniguruma |
| 4743 |
|
compatibility). However, the syntax has been checked to ensure that |
| 4744 |
|
the ... are a (signed) number, so that neither ERR63 nor ERR29 will |
| 4745 |
|
be called on this path, nor with the jump to OTHER_CHAR_AFTER_QUERY |
| 4746 |
|
ever be taken. */ |
| 4747 |
|
|
| 4748 |
|
HANDLE_NUMERICAL_RECURSION: |
| 4749 |
|
|
| 4750 |
if ((refsign = *ptr) == '+') ptr++; |
if ((refsign = *ptr) == '+') |
| 4751 |
|
{ |
| 4752 |
|
ptr++; |
| 4753 |
|
if ((digitab[*ptr] & ctype_digit) == 0) |
| 4754 |
|
{ |
| 4755 |
|
*errorcodeptr = ERR63; |
| 4756 |
|
goto FAILED; |
| 4757 |
|
} |
| 4758 |
|
} |
| 4759 |
else if (refsign == '-') |
else if (refsign == '-') |
| 4760 |
{ |
{ |
| 4761 |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
| 4767 |
while((digitab[*ptr] & ctype_digit) != 0) |
while((digitab[*ptr] & ctype_digit) != 0) |
| 4768 |
recno = recno * 10 + *ptr++ - '0'; |
recno = recno * 10 + *ptr++ - '0'; |
| 4769 |
|
|
| 4770 |
if (*ptr != ')') |
if (*ptr != terminator) |
| 4771 |
{ |
{ |
| 4772 |
*errorcodeptr = ERR29; |
*errorcodeptr = ERR29; |
| 4773 |
goto FAILED; |
goto FAILED; |
| 4820 |
|
|
| 4821 |
if (called == NULL) |
if (called == NULL) |
| 4822 |
{ |
{ |
| 4823 |
if (find_parens(ptr, cd->bracount, NULL, recno, |
if (find_parens(ptr, cd, NULL, recno, |
| 4824 |
(options & PCRE_EXTENDED) != 0) < 0) |
(options & PCRE_EXTENDED) != 0) < 0) |
| 4825 |
{ |
{ |
| 4826 |
*errorcodeptr = ERR15; |
*errorcodeptr = ERR15; |
| 4827 |
goto FAILED; |
goto FAILED; |
| 4881 |
|
|
| 4882 |
case 'J': /* Record that it changed in the external options */ |
case 'J': /* Record that it changed in the external options */ |
| 4883 |
*optset |= PCRE_DUPNAMES; |
*optset |= PCRE_DUPNAMES; |
| 4884 |
cd->external_options |= PCRE_JCHANGED; |
cd->external_flags |= PCRE_JCHANGED; |
| 4885 |
break; |
break; |
| 4886 |
|
|
| 4887 |
case 'i': *optset |= PCRE_CASELESS; break; |
case 'i': *optset |= PCRE_CASELESS; break; |
| 5163 |
back references and those types that consume a character may be repeated. |
back references and those types that consume a character may be repeated. |
| 5164 |
We can test for values between ESC_b and ESC_Z for the latter; this may |
We can test for values between ESC_b and ESC_Z for the latter; this may |
| 5165 |
have to change if any new ones are ever created. */ |
have to change if any new ones are ever created. */ |
| 5166 |
|
|
| 5167 |
case '\\': |
case '\\': |
| 5168 |
tempptr = ptr; |
tempptr = ptr; |
| 5169 |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, FALSE); |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, FALSE); |
| 5190 |
|
|
| 5191 |
zerofirstbyte = firstbyte; |
zerofirstbyte = firstbyte; |
| 5192 |
zeroreqbyte = reqbyte; |
zeroreqbyte = reqbyte; |
| 5193 |
|
|
| 5194 |
|
/* \g<name> or \g'name' is a subroutine call by name and \g<n> or \g'n' |
| 5195 |
|
is a subroutine call by number (Oniguruma syntax). In fact, the value |
| 5196 |
|
-ESC_g is returned only for these cases. So we don't need to check for < |
| 5197 |
|
or ' if the value is -ESC_g. For the Perl syntax \g{n} the value is |
| 5198 |
|
-ESC_REF+n, and for the Perl syntax \g{name} the result is -ESC_k (as |
| 5199 |
|
that is a synonym for a named back reference). */ |
| 5200 |
|
|
| 5201 |
|
if (-c == ESC_g) |
| 5202 |
|
{ |
| 5203 |
|
const uschar *p; |
| 5204 |
|
save_hwm = cd->hwm; /* Normally this is set when '(' is read */ |
| 5205 |
|
terminator = (*(++ptr) == '<')? '>' : '\''; |
| 5206 |
|
|
| 5207 |
|
/* These two statements stop the compiler for warning about possibly |
| 5208 |
|
unset variables caused by the jump to HANDLE_NUMERICAL_RECURSION. In |
| 5209 |
|
fact, because we actually check for a number below, the paths that |
| 5210 |
|
would actually be in error are never taken. */ |
| 5211 |
|
|
| 5212 |
|
skipbytes = 0; |
| 5213 |
|
reset_bracount = FALSE; |
| 5214 |
|
|
| 5215 |
|
/* Test for a name */ |
| 5216 |
|
|
| 5217 |
|
if (ptr[1] != '+' && ptr[1] != '-') |
| 5218 |
|
{ |
| 5219 |
|
BOOL isnumber = TRUE; |
| 5220 |
|
for (p = ptr + 1; *p != 0 && *p != terminator; p++) |
| 5221 |
|
{ |
| 5222 |
|
if ((cd->ctypes[*p] & ctype_digit) == 0) isnumber = FALSE; |
| 5223 |
|
if ((cd->ctypes[*p] & ctype_word) == 0) break; |
| 5224 |
|
} |
| 5225 |
|
if (*p != terminator) |
| 5226 |
|
{ |
| 5227 |
|
*errorcodeptr = ERR57; |
| 5228 |
|
break; |
| 5229 |
|
} |
| 5230 |
|
if (isnumber) |
| 5231 |
|
{ |
| 5232 |
|
ptr++; |
| 5233 |
|
goto HANDLE_NUMERICAL_RECURSION; |
| 5234 |
|
} |
| 5235 |
|
is_recurse = TRUE; |
| 5236 |
|
goto NAMED_REF_OR_RECURSE; |
| 5237 |
|
} |
| 5238 |
|
|
| 5239 |
|
/* Test a signed number in angle brackets or quotes. */ |
| 5240 |
|
|
| 5241 |
|
p = ptr + 2; |
| 5242 |
|
while ((digitab[*p] & ctype_digit) != 0) p++; |
| 5243 |
|
if (*p != terminator) |
| 5244 |
|
{ |
| 5245 |
|
*errorcodeptr = ERR57; |
| 5246 |
|
break; |
| 5247 |
|
} |
| 5248 |
|
ptr++; |
| 5249 |
|
goto HANDLE_NUMERICAL_RECURSION; |
| 5250 |
|
} |
| 5251 |
|
|
| 5252 |
/* \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). |
| 5253 |
We also support \k{name} (.NET syntax) */ |
We also support \k{name} (.NET syntax) */ |
| 5356 |
*code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; |
*code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; |
| 5357 |
for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; |
for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; |
| 5358 |
|
|
| 5359 |
|
/* Remember if \r or \n were seen */ |
| 5360 |
|
|
| 5361 |
|
if (mcbuffer[0] == '\r' || mcbuffer[0] == '\n') |
| 5362 |
|
cd->external_flags |= PCRE_HASCRORLF; |
| 5363 |
|
|
| 5364 |
/* Set the first and required bytes appropriately. If no previous first |
/* Set the first and required bytes appropriately. If no previous first |
| 5365 |
byte, set it from this character, but revert to none on a zero repeat. |
byte, set it from this character, but revert to none on a zero repeat. |
| 5366 |
Otherwise, leave the firstbyte value alone, and don't change it on a zero |
Otherwise, leave the firstbyte value alone, and don't change it on a zero |
| 5755 |
if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE; |
if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE; |
| 5756 |
} |
} |
| 5757 |
|
|
| 5758 |
/* .* is not anchored unless DOTALL is set and it isn't in brackets that |
/* .* is not anchored unless DOTALL is set (which generates OP_ALLANY) and |
| 5759 |
are or may be referenced. */ |
it isn't in brackets that are or may be referenced. */ |
| 5760 |
|
|
| 5761 |
else if ((op == OP_TYPESTAR || op == OP_TYPEMINSTAR || |
else if ((op == OP_TYPESTAR || op == OP_TYPEMINSTAR || |
| 5762 |
op == OP_TYPEPOSSTAR) && |
op == OP_TYPEPOSSTAR)) |
|
(*options & PCRE_DOTALL) != 0) |
|
| 5763 |
{ |
{ |
| 5764 |
if (scode[1] != OP_ANY || (bracket_map & backref_map) != 0) return FALSE; |
if (scode[1] != OP_ALLANY || (bracket_map & backref_map) != 0) |
| 5765 |
|
return FALSE; |
| 5766 |
} |
} |
| 5767 |
|
|
| 5768 |
/* Check for explicit anchoring */ |
/* Check for explicit anchoring */ |
| 5960 |
int length = 1; /* For final END opcode */ |
int length = 1; /* For final END opcode */ |
| 5961 |
int firstbyte, reqbyte, newline; |
int firstbyte, reqbyte, newline; |
| 5962 |
int errorcode = 0; |
int errorcode = 0; |
| 5963 |
|
int skipatstart = 0; |
| 5964 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 5965 |
BOOL utf8; |
BOOL utf8; |
| 5966 |
#endif |
#endif |
| 5979 |
|
|
| 5980 |
uschar cworkspace[COMPILE_WORK_SIZE]; |
uschar cworkspace[COMPILE_WORK_SIZE]; |
| 5981 |
|
|
|
|
|
| 5982 |
/* Set this early so that early errors get offset 0. */ |
/* Set this early so that early errors get offset 0. */ |
| 5983 |
|
|
| 5984 |
ptr = (const uschar *)pattern; |
ptr = (const uschar *)pattern; |
| 6038 |
cd->cbits = tables + cbits_offset; |
cd->cbits = tables + cbits_offset; |
| 6039 |
cd->ctypes = tables + ctypes_offset; |
cd->ctypes = tables + ctypes_offset; |
| 6040 |
|
|
| 6041 |
|
/* Check for global one-time settings at the start of the pattern, and remember |
| 6042 |
|
the offset for later. */ |
| 6043 |
|
|
| 6044 |
|
while (ptr[skipatstart] == '(' && ptr[skipatstart+1] == '*') |
| 6045 |
|
{ |
| 6046 |
|
int newnl = 0; |
| 6047 |
|
int newbsr = 0; |
| 6048 |
|
|
| 6049 |
|
if (strncmp((char *)(ptr+skipatstart+2), "CR)", 3) == 0) |
| 6050 |
|
{ skipatstart += 5; newnl = PCRE_NEWLINE_CR; } |
| 6051 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "LF)", 3) == 0) |
| 6052 |
|
{ skipatstart += 5; newnl = PCRE_NEWLINE_LF; } |
| 6053 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "CRLF)", 5) == 0) |
| 6054 |
|
{ skipatstart += 7; newnl = PCRE_NEWLINE_CR + PCRE_NEWLINE_LF; } |
| 6055 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "ANY)", 4) == 0) |
| 6056 |
|
{ skipatstart += 6; newnl = PCRE_NEWLINE_ANY; } |
| 6057 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "ANYCRLF)", 8) == 0) |
| 6058 |
|
{ skipatstart += 10; newnl = PCRE_NEWLINE_ANYCRLF; } |
| 6059 |
|
|
| 6060 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "BSR_ANYCRLF)", 12) == 0) |
| 6061 |
|
{ skipatstart += 14; newbsr = PCRE_BSR_ANYCRLF; } |
| 6062 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "BSR_UNICODE)", 12) == 0) |
| 6063 |
|
{ skipatstart += 14; newbsr = PCRE_BSR_UNICODE; } |
| 6064 |
|
|
| 6065 |
|
if (newnl != 0) |
| 6066 |
|
options = (options & ~PCRE_NEWLINE_BITS) | newnl; |
| 6067 |
|
else if (newbsr != 0) |
| 6068 |
|
options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr; |
| 6069 |
|
else break; |
| 6070 |
|
} |
| 6071 |
|
|
| 6072 |
|
/* Check validity of \R options. */ |
| 6073 |
|
|
| 6074 |
|
switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
| 6075 |
|
{ |
| 6076 |
|
case 0: |
| 6077 |
|
case PCRE_BSR_ANYCRLF: |
| 6078 |
|
case PCRE_BSR_UNICODE: |
| 6079 |
|
break; |
| 6080 |
|
default: errorcode = ERR56; goto PCRE_EARLY_ERROR_RETURN; |
| 6081 |
|
} |
| 6082 |
|
|
| 6083 |
/* Handle different types of newline. The three bits give seven cases. The |
/* Handle different types of newline. The three bits give seven cases. The |
| 6084 |
current code allows for fixed one- or two-byte sequences, plus "any" and |
current code allows for fixed one- or two-byte sequences, plus "any" and |
| 6085 |
"anycrlf". */ |
"anycrlf". */ |
| 6086 |
|
|
| 6087 |
switch (options & (PCRE_NEWLINE_CRLF | PCRE_NEWLINE_ANY)) |
switch (options & PCRE_NEWLINE_BITS) |
| 6088 |
{ |
{ |
| 6089 |
case 0: newline = NEWLINE; break; /* Compile-time default */ |
case 0: newline = NEWLINE; break; /* Build-time default */ |
| 6090 |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
| 6091 |
case PCRE_NEWLINE_LF: newline = '\n'; break; |
case PCRE_NEWLINE_LF: newline = '\n'; break; |
| 6092 |
case PCRE_NEWLINE_CR+ |
case PCRE_NEWLINE_CR+ |
| 6139 |
no longer needed, so hopefully this workspace will never overflow, though there |
no longer needed, so hopefully this workspace will never overflow, though there |
| 6140 |
is a test for its doing so. */ |
is a test for its doing so. */ |
| 6141 |
|
|
| 6142 |
cd->bracount = 0; |
cd->bracount = cd->final_bracount = 0; |
| 6143 |
cd->names_found = 0; |
cd->names_found = 0; |
| 6144 |
cd->name_entry_size = 0; |
cd->name_entry_size = 0; |
| 6145 |
cd->name_table = NULL; |
cd->name_table = NULL; |
| 6149 |
cd->start_pattern = (const uschar *)pattern; |
cd->start_pattern = (const uschar *)pattern; |
| 6150 |
cd->end_pattern = (const uschar *)(pattern + strlen(pattern)); |
cd->end_pattern = (const uschar *)(pattern + strlen(pattern)); |
| 6151 |
cd->req_varyopt = 0; |
cd->req_varyopt = 0; |
|
cd->nopartial = FALSE; |
|
| 6152 |
cd->external_options = options; |
cd->external_options = options; |
| 6153 |
|
cd->external_flags = 0; |
| 6154 |
|
|
| 6155 |
/* Now do the pre-compile. On error, errorcode will be set non-zero, so we |
/* Now do the pre-compile. On error, errorcode will be set non-zero, so we |
| 6156 |
don't need to look at the result of the function here. The initial options have |
don't need to look at the result of the function here. The initial options have |
| 6158 |
found within the regex right at the beginning. Bringing initial option settings |
found within the regex right at the beginning. Bringing initial option settings |
| 6159 |
outside can help speed up starting point checks. */ |
outside can help speed up starting point checks. */ |
| 6160 |
|
|
| 6161 |
|
ptr += skipatstart; |
| 6162 |
code = cworkspace; |
code = cworkspace; |
| 6163 |
*code = OP_BRA; |
*code = OP_BRA; |
| 6164 |
(void)compile_regex(cd->external_options, cd->external_options & PCRE_IMS, |
(void)compile_regex(cd->external_options, cd->external_options & PCRE_IMS, |
| 6189 |
goto PCRE_EARLY_ERROR_RETURN; |
goto PCRE_EARLY_ERROR_RETURN; |
| 6190 |
} |
} |
| 6191 |
|
|
| 6192 |
/* Put in the magic number, and save the sizes, initial options, and character |
/* Put in the magic number, and save the sizes, initial options, internal |
| 6193 |
table pointer. NULL is used for the default character tables. The nullpad field |
flags, and character table pointer. NULL is used for the default character |
| 6194 |
is at the end; it's there to help in the case when a regex compiled on a system |
tables. The nullpad field is at the end; it's there to help in the case when a |
| 6195 |
with 4-byte pointers is run on another with 8-byte pointers. */ |
regex compiled on a system with 4-byte pointers is run on another with 8-byte |
| 6196 |
|
pointers. */ |
| 6197 |
|
|
| 6198 |
re->magic_number = MAGIC_NUMBER; |
re->magic_number = MAGIC_NUMBER; |
| 6199 |
re->size = size; |
re->size = size; |
| 6200 |
re->options = cd->external_options; |
re->options = cd->external_options; |
| 6201 |
|
re->flags = cd->external_flags; |
| 6202 |
re->dummy1 = 0; |
re->dummy1 = 0; |
| 6203 |
re->first_byte = 0; |
re->first_byte = 0; |
| 6204 |
re->req_byte = 0; |
re->req_byte = 0; |
| 6216 |
field; this time it's used for remembering forward references to subpatterns. |
field; this time it's used for remembering forward references to subpatterns. |
| 6217 |
*/ |
*/ |
| 6218 |
|
|
| 6219 |
|
cd->final_bracount = cd->bracount; /* Save for checking forward references */ |
| 6220 |
cd->bracount = 0; |
cd->bracount = 0; |
| 6221 |
cd->names_found = 0; |
cd->names_found = 0; |
| 6222 |
cd->name_table = (uschar *)re + re->name_table_offset; |
cd->name_table = (uschar *)re + re->name_table_offset; |
| 6224 |
cd->start_code = codestart; |
cd->start_code = codestart; |
| 6225 |
cd->hwm = cworkspace; |
cd->hwm = cworkspace; |
| 6226 |
cd->req_varyopt = 0; |
cd->req_varyopt = 0; |
|
cd->nopartial = FALSE; |
|
| 6227 |
cd->had_accept = FALSE; |
cd->had_accept = FALSE; |
| 6228 |
|
|
| 6229 |
/* Set up a starting, non-extracting bracket, then compile the expression. On |
/* Set up a starting, non-extracting bracket, then compile the expression. On |
| 6230 |
error, errorcode will be set non-zero, so we don't need to look at the result |
error, errorcode will be set non-zero, so we don't need to look at the result |
| 6231 |
of the function here. */ |
of the function here. */ |
| 6232 |
|
|
| 6233 |
ptr = (const uschar *)pattern; |
ptr = (const uschar *)pattern + skipatstart; |
| 6234 |
code = (uschar *)codestart; |
code = (uschar *)codestart; |
| 6235 |
*code = OP_BRA; |
*code = OP_BRA; |
| 6236 |
(void)compile_regex(re->options, re->options & PCRE_IMS, &code, &ptr, |
(void)compile_regex(re->options, re->options & PCRE_IMS, &code, &ptr, |
| 6237 |
&errorcode, FALSE, FALSE, 0, &firstbyte, &reqbyte, NULL, cd, NULL); |
&errorcode, FALSE, FALSE, 0, &firstbyte, &reqbyte, NULL, cd, NULL); |
| 6238 |
re->top_bracket = cd->bracount; |
re->top_bracket = cd->bracount; |
| 6239 |
re->top_backref = cd->top_backref; |
re->top_backref = cd->top_backref; |
| 6240 |
|
re->flags = cd->external_flags; |
| 6241 |
|
|
|
if (cd->nopartial) re->options |= PCRE_NOPARTIAL; |
|
| 6242 |
if (cd->had_accept) reqbyte = -1; /* Must disable after (*ACCEPT) */ |
if (cd->had_accept) reqbyte = -1; /* Must disable after (*ACCEPT) */ |
| 6243 |
|
|
| 6244 |
/* If not reached end of pattern on success, there's an excess bracket. */ |
/* If not reached end of pattern on success, there's an excess bracket. */ |
| 6267 |
if (groupptr == NULL) errorcode = ERR53; |
if (groupptr == NULL) errorcode = ERR53; |
| 6268 |
else PUT(((uschar *)codestart), offset, groupptr - codestart); |
else PUT(((uschar *)codestart), offset, groupptr - codestart); |
| 6269 |
} |
} |
| 6270 |
|
|
| 6271 |
/* Give an error if there's back reference to a non-existent capturing |
/* Give an error if there's back reference to a non-existent capturing |
| 6272 |
subpattern. */ |
subpattern. */ |
| 6273 |
|
|
| 6281 |
PCRE_EARLY_ERROR_RETURN: |
PCRE_EARLY_ERROR_RETURN: |
| 6282 |
*erroroffset = ptr - (const uschar *)pattern; |
*erroroffset = ptr - (const uschar *)pattern; |
| 6283 |
PCRE_EARLY_ERROR_RETURN2: |
PCRE_EARLY_ERROR_RETURN2: |
| 6284 |
*errorptr = error_texts[errorcode]; |
*errorptr = find_error_text(errorcode); |
| 6285 |
if (errorcodeptr != NULL) *errorcodeptr = errorcode; |
if (errorcodeptr != NULL) *errorcodeptr = errorcode; |
| 6286 |
return NULL; |
return NULL; |
| 6287 |
} |
} |
| 6310 |
int ch = firstbyte & 255; |
int ch = firstbyte & 255; |
| 6311 |
re->first_byte = ((firstbyte & REQ_CASELESS) != 0 && |
re->first_byte = ((firstbyte & REQ_CASELESS) != 0 && |
| 6312 |
cd->fcc[ch] == ch)? ch : firstbyte; |
cd->fcc[ch] == ch)? ch : firstbyte; |
| 6313 |
re->options |= PCRE_FIRSTSET; |
re->flags |= PCRE_FIRSTSET; |
| 6314 |
} |
} |
| 6315 |
else if (is_startline(codestart, 0, cd->backref_map)) |
else if (is_startline(codestart, 0, cd->backref_map)) |
| 6316 |
re->options |= PCRE_STARTLINE; |
re->flags |= PCRE_STARTLINE; |
| 6317 |
} |
} |
| 6318 |
} |
} |
| 6319 |
|
|
| 6327 |
int ch = reqbyte & 255; |
int ch = reqbyte & 255; |
| 6328 |
re->req_byte = ((reqbyte & REQ_CASELESS) != 0 && |
re->req_byte = ((reqbyte & REQ_CASELESS) != 0 && |
| 6329 |
cd->fcc[ch] == ch)? (reqbyte & ~REQ_CASELESS) : reqbyte; |
cd->fcc[ch] == ch)? (reqbyte & ~REQ_CASELESS) : reqbyte; |
| 6330 |
re->options |= PCRE_REQCHSET; |
re->flags |= PCRE_REQCHSET; |
| 6331 |
} |
} |
| 6332 |
|
|
| 6333 |
/* Print out the compiled data if debugging is enabled. This is never the |
/* Print out the compiled data if debugging is enabled. This is never the |
| 6338 |
printf("Length = %d top_bracket = %d top_backref = %d\n", |
printf("Length = %d top_bracket = %d top_backref = %d\n", |
| 6339 |
length, re->top_bracket, re->top_backref); |
length, re->top_bracket, re->top_backref); |
| 6340 |
|
|
| 6341 |
if (re->options != 0) |
printf("Options=%08x\n", re->options); |
|
{ |
|
|
printf("%s%s%s%s%s%s%s%s%s\n", |
|
|
((re->options & PCRE_NOPARTIAL) != 0)? "nopartial " : "", |
|
|
((re->options & PCRE_ANCHORED) != 0)? "anchored " : "", |
|
|
((re->options & PCRE_CASELESS) != 0)? "caseless " : "", |
|
|
((re->options & PCRE_EXTENDED) != 0)? "extended " : "", |
|
|
((re->options & PCRE_MULTILINE) != 0)? "multiline " : "", |
|
|
((re->options & PCRE_DOTALL) != 0)? "dotall " : "", |
|
|
((re->options & PCRE_DOLLAR_ENDONLY) != 0)? "endonly " : "", |
|
|
((re->options & PCRE_EXTRA) != 0)? "extra " : "", |
|
|
((re->options & PCRE_UNGREEDY) != 0)? "ungreedy " : ""); |
|
|
} |
|
| 6342 |
|
|
| 6343 |
if ((re->options & PCRE_FIRSTSET) != 0) |
if ((re->flags & PCRE_FIRSTSET) != 0) |
| 6344 |
{ |
{ |
| 6345 |
int ch = re->first_byte & 255; |
int ch = re->first_byte & 255; |
| 6346 |
const char *caseless = ((re->first_byte & REQ_CASELESS) == 0)? |
const char *caseless = ((re->first_byte & REQ_CASELESS) == 0)? |
| 6349 |
else printf("First char = \\x%02x%s\n", ch, caseless); |
else printf("First char = \\x%02x%s\n", ch, caseless); |
| 6350 |
} |
} |
| 6351 |
|
|
| 6352 |
if ((re->options & PCRE_REQCHSET) != 0) |
if ((re->flags & PCRE_REQCHSET) != 0) |
| 6353 |
{ |
{ |
| 6354 |
int ch = re->req_byte & 255; |
int ch = re->req_byte & 255; |
| 6355 |
const char *caseless = ((re->req_byte & REQ_CASELESS) == 0)? |
const char *caseless = ((re->req_byte & REQ_CASELESS) == 0)? |
| 6366 |
if (code - codestart > length) |
if (code - codestart > length) |
| 6367 |
{ |
{ |
| 6368 |
(pcre_free)(re); |
(pcre_free)(re); |
| 6369 |
*errorptr = error_texts[ERR23]; |
*errorptr = find_error_text(ERR23); |
| 6370 |
*erroroffset = ptr - (uschar *)pattern; |
*erroroffset = ptr - (uschar *)pattern; |
| 6371 |
if (errorcodeptr != NULL) *errorcodeptr = ERR23; |
if (errorcodeptr != NULL) *errorcodeptr = ERR23; |
| 6372 |
return NULL; |
return NULL; |