| 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 const char verbnames[] = |
| 153 |
|
"ACCEPT\0" |
| 154 |
|
"COMMIT\0" |
| 155 |
|
"F\0" |
| 156 |
|
"FAIL\0" |
| 157 |
|
"PRUNE\0" |
| 158 |
|
"SKIP\0" |
| 159 |
|
"THEN"; |
| 160 |
|
|
| 161 |
static verbitem verbs[] = { |
static verbitem verbs[] = { |
| 162 |
{ "ACCEPT", 6, OP_ACCEPT }, |
{ 6, OP_ACCEPT }, |
| 163 |
{ "COMMIT", 6, OP_COMMIT }, |
{ 6, OP_COMMIT }, |
| 164 |
{ "F", 1, OP_FAIL }, |
{ 1, OP_FAIL }, |
| 165 |
{ "FAIL", 4, OP_FAIL }, |
{ 4, OP_FAIL }, |
| 166 |
{ "PRUNE", 5, OP_PRUNE }, |
{ 5, OP_PRUNE }, |
| 167 |
{ "SKIP", 4, OP_SKIP }, |
{ 4, OP_SKIP }, |
| 168 |
{ "THEN", 4, OP_THEN } |
{ 4, OP_THEN } |
| 169 |
}; |
}; |
| 170 |
|
|
| 171 |
static int verbcount = sizeof(verbs)/sizeof(verbitem); |
static 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 name or an optionally braced non-zero number\0" |
| 299 |
"(?+ or (?- or (?(+ or (?(- must be followed by a non-zero number", |
"(?+ or (?- or (?(+ or (?(- must be followed by a non-zero number\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 (?+"; |
| 306 |
|
|
| 307 |
|
|
| 308 |
/* Table to identify digits and hex digits. This is used when compiling |
/* Table to identify digits and hex digits. This is used when compiling |
| 438 |
|
|
| 439 |
|
|
| 440 |
/************************************************* |
/************************************************* |
| 441 |
|
* Find an error text * |
| 442 |
|
*************************************************/ |
| 443 |
|
|
| 444 |
|
/* The error texts are now all in one long string, to save on relocations. As |
| 445 |
|
some of the text is of unknown length, we can't use a table of offsets. |
| 446 |
|
Instead, just count through the strings. This is not a performance issue |
| 447 |
|
because it happens only when there has been a compilation error. |
| 448 |
|
|
| 449 |
|
Argument: the error number |
| 450 |
|
Returns: pointer to the error string |
| 451 |
|
*/ |
| 452 |
|
|
| 453 |
|
static const char * |
| 454 |
|
find_error_text(int n) |
| 455 |
|
{ |
| 456 |
|
const char *s = error_texts; |
| 457 |
|
for (; n > 0; n--) while (*s++ != 0); |
| 458 |
|
return s; |
| 459 |
|
} |
| 460 |
|
|
| 461 |
|
|
| 462 |
|
/************************************************* |
| 463 |
* Handle escapes * |
* Handle escapes * |
| 464 |
*************************************************/ |
*************************************************/ |
| 465 |
|
|
| 498 |
|
|
| 499 |
if (c == 0) *errorcodeptr = ERR1; |
if (c == 0) *errorcodeptr = ERR1; |
| 500 |
|
|
| 501 |
/* 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 |
| 502 |
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. |
| 503 |
Otherwise further processing may be required. */ |
Otherwise further processing may be required. */ |
| 504 |
|
|
| 505 |
#ifndef EBCDIC /* ASCII coding */ |
#ifndef EBCDIC /* ASCII coding */ |
| 506 |
else if (c < '0' || c > 'z') {} /* Not alphameric */ |
else if (c < '0' || c > 'z') {} /* Not alphanumeric */ |
| 507 |
else if ((i = escapes[c - '0']) != 0) c = i; |
else if ((i = escapes[c - '0']) != 0) c = i; |
| 508 |
|
|
| 509 |
#else /* EBCDIC coding */ |
#else /* EBCDIC coding */ |
| 510 |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphameric */ |
else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ |
| 511 |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
else if ((i = escapes[c - 0x48]) != 0) c = i; |
| 512 |
#endif |
#endif |
| 513 |
|
|
| 724 |
break; |
break; |
| 725 |
|
|
| 726 |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
/* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any |
| 727 |
other alphameric following \ is an error if PCRE_EXTRA was set; otherwise, |
other alphanumeric following \ is an error if PCRE_EXTRA was set; |
| 728 |
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 |
| 729 |
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 |
| 730 |
in future, so I haven't "optimized" it. */ |
be again in future, so I haven't "optimized" it. */ |
| 731 |
|
|
| 732 |
default: |
default: |
| 733 |
if ((options & PCRE_EXTRA) != 0) switch(c) |
if ((options & PCRE_EXTRA) != 0) switch(c) |
| 816 |
while (bot < top) |
while (bot < top) |
| 817 |
{ |
{ |
| 818 |
i = (bot + top) >> 1; |
i = (bot + top) >> 1; |
| 819 |
c = strcmp(name, _pcre_utt[i].name); |
c = strcmp(name, _pcre_utt_names + _pcre_utt[i].name_offset); |
| 820 |
if (c == 0) |
if (c == 0) |
| 821 |
{ |
{ |
| 822 |
*dptr = _pcre_utt[i].value; |
*dptr = _pcre_utt[i].value; |
| 1508 |
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() |
| 1509 |
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 |
| 1510 |
group that can match nothing. Note that first_significant_code() skips over |
group that can match nothing. Note that first_significant_code() skips over |
| 1511 |
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 |
| 1512 |
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 |
| 1513 |
|
bracket whose current branch will already have been scanned. |
| 1514 |
|
|
| 1515 |
Arguments: |
Arguments: |
| 1516 |
code points to start of search |
code points to start of search |
| 1532 |
|
|
| 1533 |
c = *code; |
c = *code; |
| 1534 |
|
|
| 1535 |
|
/* Skip over forward assertions; the other assertions are skipped by |
| 1536 |
|
first_significant_code() with a TRUE final argument. */ |
| 1537 |
|
|
| 1538 |
|
if (c == OP_ASSERT) |
| 1539 |
|
{ |
| 1540 |
|
do code += GET(code, 1); while (*code == OP_ALT); |
| 1541 |
|
c = *code; |
| 1542 |
|
continue; |
| 1543 |
|
} |
| 1544 |
|
|
| 1545 |
/* Groups with zero repeats can of course be empty; skip them. */ |
/* Groups with zero repeats can of course be empty; skip them. */ |
| 1546 |
|
|
| 1547 |
if (c == OP_BRAZERO || c == OP_BRAMINZERO) |
if (c == OP_BRAZERO || c == OP_BRAMINZERO) |
| 1648 |
case OP_TYPEEXACT: |
case OP_TYPEEXACT: |
| 1649 |
return FALSE; |
return FALSE; |
| 1650 |
|
|
| 1651 |
|
/* These are going to continue, as they may be empty, but we have to |
| 1652 |
|
fudge the length for the \p and \P cases. */ |
| 1653 |
|
|
| 1654 |
|
case OP_TYPESTAR: |
| 1655 |
|
case OP_TYPEMINSTAR: |
| 1656 |
|
case OP_TYPEPOSSTAR: |
| 1657 |
|
case OP_TYPEQUERY: |
| 1658 |
|
case OP_TYPEMINQUERY: |
| 1659 |
|
case OP_TYPEPOSQUERY: |
| 1660 |
|
if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; |
| 1661 |
|
break; |
| 1662 |
|
|
| 1663 |
|
/* Same for these */ |
| 1664 |
|
|
| 1665 |
|
case OP_TYPEUPTO: |
| 1666 |
|
case OP_TYPEMINUPTO: |
| 1667 |
|
case OP_TYPEPOSUPTO: |
| 1668 |
|
if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; |
| 1669 |
|
break; |
| 1670 |
|
|
| 1671 |
/* End of branch */ |
/* End of branch */ |
| 1672 |
|
|
| 1673 |
case OP_KET: |
case OP_KET: |
| 1737 |
*************************************************/ |
*************************************************/ |
| 1738 |
|
|
| 1739 |
/* This function is called when the sequence "[:" or "[." or "[=" is |
/* This function is called when the sequence "[:" or "[." or "[=" is |
| 1740 |
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 |
| 1741 |
optional ^ and then a sequence of letters, terminated by a matching ":]" or |
sequence of characters terminated by a matching ":]" or ".]" or "=]". If we |
| 1742 |
".]" or "=]". |
reach an unescaped ']' without the special preceding character, return FALSE. |
| 1743 |
|
|
| 1744 |
|
Originally, this function only recognized a sequence of letters between the |
| 1745 |
|
terminators, but it seems that Perl recognizes any sequence of characters, |
| 1746 |
|
though of course unknown POSIX names are subsequently rejected. Perl gives an |
| 1747 |
|
"Unknown POSIX class" error for [:f\oo:] for example, where previously PCRE |
| 1748 |
|
didn't consider this to be a POSIX class. Likewise for [:1234:]. |
| 1749 |
|
|
| 1750 |
|
The problem in trying to be exactly like Perl is in the handling of escapes. We |
| 1751 |
|
have to be sure that [abc[:x\]pqr] is *not* treated as containing a POSIX |
| 1752 |
|
class, but [abc[:x\]pqr:]] is (so that an error can be generated). The code |
| 1753 |
|
below handles the special case of \], but does not try to do any other escape |
| 1754 |
|
processing. This makes it different from Perl for cases such as [:l\ower:] |
| 1755 |
|
where Perl recognizes it as the POSIX class "lower" but PCRE does not recognize |
| 1756 |
|
"l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
| 1757 |
|
I think. |
| 1758 |
|
|
| 1759 |
Argument: |
Arguments: |
| 1760 |
ptr pointer to the initial [ |
ptr pointer to the initial [ |
| 1761 |
endptr where to return the end pointer |
endptr where to return the end pointer |
|
cd pointer to compile data |
|
| 1762 |
|
|
| 1763 |
Returns: TRUE or FALSE |
Returns: TRUE or FALSE |
| 1764 |
*/ |
*/ |
| 1765 |
|
|
| 1766 |
static BOOL |
static BOOL |
| 1767 |
check_posix_syntax(const uschar *ptr, const uschar **endptr, compile_data *cd) |
check_posix_syntax(const uschar *ptr, const uschar **endptr) |
| 1768 |
{ |
{ |
| 1769 |
int terminator; /* Don't combine these lines; the Solaris cc */ |
int terminator; /* Don't combine these lines; the Solaris cc */ |
| 1770 |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 1771 |
if (*(++ptr) == '^') ptr++; |
for (++ptr; *ptr != 0; ptr++) |
|
while ((cd->ctypes[*ptr] & ctype_letter) != 0) ptr++; |
|
|
if (*ptr == terminator && ptr[1] == ']') |
|
| 1772 |
{ |
{ |
| 1773 |
*endptr = ptr; |
if (*ptr == '\\' && ptr[1] == ']') ptr++; else |
| 1774 |
return TRUE; |
{ |
| 1775 |
|
if (*ptr == ']') return FALSE; |
| 1776 |
|
if (*ptr == terminator && ptr[1] == ']') |
| 1777 |
|
{ |
| 1778 |
|
*endptr = ptr; |
| 1779 |
|
return TRUE; |
| 1780 |
|
} |
| 1781 |
|
} |
| 1782 |
} |
} |
| 1783 |
return FALSE; |
return FALSE; |
| 1784 |
} |
} |
| 1803 |
static int |
static int |
| 1804 |
check_posix_name(const uschar *ptr, int len) |
check_posix_name(const uschar *ptr, int len) |
| 1805 |
{ |
{ |
| 1806 |
|
const char *pn = posix_names; |
| 1807 |
register int yield = 0; |
register int yield = 0; |
| 1808 |
while (posix_name_lengths[yield] != 0) |
while (posix_name_lengths[yield] != 0) |
| 1809 |
{ |
{ |
| 1810 |
if (len == posix_name_lengths[yield] && |
if (len == posix_name_lengths[yield] && |
| 1811 |
strncmp((const char *)ptr, posix_names[yield], len) == 0) return yield; |
strncmp((const char *)ptr, pn, len) == 0) return yield; |
| 1812 |
|
pn += posix_name_lengths[yield] + 1; |
| 1813 |
yield++; |
yield++; |
| 1814 |
} |
} |
| 1815 |
return -1; |
return -1; |
| 1851 |
uschar *save_hwm) |
uschar *save_hwm) |
| 1852 |
{ |
{ |
| 1853 |
uschar *ptr = group; |
uschar *ptr = group; |
| 1854 |
|
|
| 1855 |
while ((ptr = (uschar *)find_recurse(ptr, utf8)) != NULL) |
while ((ptr = (uschar *)find_recurse(ptr, utf8)) != NULL) |
| 1856 |
{ |
{ |
| 1857 |
int offset; |
int offset; |
| 2376 |
BOOL class_utf8; |
BOOL class_utf8; |
| 2377 |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
BOOL utf8 = (options & PCRE_UTF8) != 0; |
| 2378 |
uschar *class_utf8data; |
uschar *class_utf8data; |
| 2379 |
|
uschar *class_utf8data_base; |
| 2380 |
uschar utf8_char[6]; |
uschar utf8_char[6]; |
| 2381 |
#else |
#else |
| 2382 |
BOOL utf8 = FALSE; |
BOOL utf8 = FALSE; |
| 2416 |
for (;; ptr++) |
for (;; ptr++) |
| 2417 |
{ |
{ |
| 2418 |
BOOL negate_class; |
BOOL negate_class; |
| 2419 |
|
BOOL should_flip_negation; |
| 2420 |
BOOL possessive_quantifier; |
BOOL possessive_quantifier; |
| 2421 |
BOOL is_quantifier; |
BOOL is_quantifier; |
| 2422 |
BOOL is_recurse; |
BOOL is_recurse; |
| 2640 |
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. */ |
| 2641 |
|
|
| 2642 |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2643 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2644 |
{ |
{ |
| 2645 |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
*errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; |
| 2646 |
goto FAILED; |
goto FAILED; |
| 2665 |
else break; |
else break; |
| 2666 |
} |
} |
| 2667 |
|
|
| 2668 |
|
/* If a class contains a negative special such as \S, we need to flip the |
| 2669 |
|
negation flag at the end, so that support for characters > 255 works |
| 2670 |
|
correctly (they are all included in the class). */ |
| 2671 |
|
|
| 2672 |
|
should_flip_negation = FALSE; |
| 2673 |
|
|
| 2674 |
/* 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 |
| 2675 |
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 |
| 2676 |
valued UTF-8 characters, we don't yet do any optimization. */ |
valued UTF-8 characters, we don't yet do any optimization. */ |
| 2688 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 2689 |
class_utf8 = FALSE; /* No chars >= 256 */ |
class_utf8 = FALSE; /* No chars >= 256 */ |
| 2690 |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ |
| 2691 |
|
class_utf8data_base = class_utf8data; /* For resetting in pass 1 */ |
| 2692 |
#endif |
#endif |
| 2693 |
|
|
| 2694 |
/* Process characters until ] is reached. By writing this as a "do" it |
/* Process characters until ] is reached. By writing this as a "do" it |
| 2704 |
{ /* Braces are required because the */ |
{ /* Braces are required because the */ |
| 2705 |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
| 2706 |
} |
} |
| 2707 |
|
|
| 2708 |
|
/* In the pre-compile phase, accumulate the length of any UTF-8 extra |
| 2709 |
|
data and reset the pointer. This is so that very large classes that |
| 2710 |
|
contain a zillion UTF-8 characters no longer overwrite the work space |
| 2711 |
|
(which is on the stack). */ |
| 2712 |
|
|
| 2713 |
|
if (lengthptr != NULL) |
| 2714 |
|
{ |
| 2715 |
|
*lengthptr += class_utf8data - class_utf8data_base; |
| 2716 |
|
class_utf8data = class_utf8data_base; |
| 2717 |
|
} |
| 2718 |
|
|
| 2719 |
#endif |
#endif |
| 2720 |
|
|
| 2721 |
/* Inside \Q...\E everything is literal except \E */ |
/* Inside \Q...\E everything is literal except \E */ |
| 2739 |
|
|
| 2740 |
if (c == '[' && |
if (c == '[' && |
| 2741 |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
(ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && |
| 2742 |
check_posix_syntax(ptr, &tempptr, cd)) |
check_posix_syntax(ptr, &tempptr)) |
| 2743 |
{ |
{ |
| 2744 |
BOOL local_negate = FALSE; |
BOOL local_negate = FALSE; |
| 2745 |
int posix_class, taboffset, tabopt; |
int posix_class, taboffset, tabopt; |
| 2756 |
if (*ptr == '^') |
if (*ptr == '^') |
| 2757 |
{ |
{ |
| 2758 |
local_negate = TRUE; |
local_negate = TRUE; |
| 2759 |
|
should_flip_negation = TRUE; /* Note negative special */ |
| 2760 |
ptr++; |
ptr++; |
| 2761 |
} |
} |
| 2762 |
|
|
| 2831 |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 2832 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 2833 |
|
|
| 2834 |
if (-c == ESC_b) c = '\b'; /* \b is backslash in a class */ |
if (-c == ESC_b) c = '\b'; /* \b is backspace in a class */ |
| 2835 |
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 */ |
| 2836 |
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 */ |
| 2837 |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
else if (-c == ESC_Q) /* Handle start of quoted string */ |
| 2859 |
continue; |
continue; |
| 2860 |
|
|
| 2861 |
case ESC_D: |
case ESC_D: |
| 2862 |
|
should_flip_negation = TRUE; |
| 2863 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; |
| 2864 |
continue; |
continue; |
| 2865 |
|
|
| 2868 |
continue; |
continue; |
| 2869 |
|
|
| 2870 |
case ESC_W: |
case ESC_W: |
| 2871 |
|
should_flip_negation = TRUE; |
| 2872 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
| 2873 |
continue; |
continue; |
| 2874 |
|
|
| 2878 |
continue; |
continue; |
| 2879 |
|
|
| 2880 |
case ESC_S: |
case ESC_S: |
| 2881 |
|
should_flip_negation = TRUE; |
| 2882 |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; |
| 2883 |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
| 2884 |
continue; |
continue; |
| 2885 |
|
|
|
case ESC_E: /* Perl ignores an orphan \E */ |
|
|
continue; |
|
|
|
|
| 2886 |
default: /* Not recognized; fall through */ |
default: /* Not recognized; fall through */ |
| 2887 |
break; /* Need "default" setting to stop compiler warning. */ |
break; /* Need "default" setting to stop compiler warning. */ |
| 2888 |
} |
} |
| 3070 |
|
|
| 3071 |
oldptr = ptr; |
oldptr = ptr; |
| 3072 |
|
|
| 3073 |
|
/* Remember \r or \n */ |
| 3074 |
|
|
| 3075 |
|
if (c == '\r' || c == '\n') cd->external_flags |= PCRE_HASCRORLF; |
| 3076 |
|
|
| 3077 |
|
/* Check for range */ |
| 3078 |
|
|
| 3079 |
if (!inescq && ptr[1] == '-') |
if (!inescq && ptr[1] == '-') |
| 3080 |
{ |
{ |
| 3081 |
int d; |
int d; |
| 3117 |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3118 |
if (*errorcodeptr != 0) goto FAILED; |
if (*errorcodeptr != 0) goto FAILED; |
| 3119 |
|
|
| 3120 |
/* \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 |
| 3121 |
special means the '-' was literal */ |
special means the '-' was literal */ |
| 3122 |
|
|
| 3123 |
if (d < 0) |
if (d < 0) |
| 3143 |
|
|
| 3144 |
if (d == c) goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
if (d == c) goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
| 3145 |
|
|
| 3146 |
|
/* Remember \r or \n */ |
| 3147 |
|
|
| 3148 |
|
if (d == '\r' || d == '\n') cd->external_flags |= PCRE_HASCRORLF; |
| 3149 |
|
|
| 3150 |
/* 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 |
| 3151 |
matching, we have to use an XCLASS with extra data items. Caseless |
matching, we have to use an XCLASS with extra data items. Caseless |
| 3152 |
matching for characters > 127 is available only if UCP support is |
matching for characters > 127 is available only if UCP support is |
| 3300 |
goto FAILED; |
goto FAILED; |
| 3301 |
} |
} |
| 3302 |
|
|
| 3303 |
|
|
| 3304 |
|
/* This code has been disabled because it would mean that \s counts as |
| 3305 |
|
an explicit \r or \n reference, and that's not really what is wanted. Now |
| 3306 |
|
we set the flag only if there is a literal "\r" or "\n" in the class. */ |
| 3307 |
|
|
| 3308 |
|
#if 0 |
| 3309 |
|
/* Remember whether \r or \n are in this class */ |
| 3310 |
|
|
| 3311 |
|
if (negate_class) |
| 3312 |
|
{ |
| 3313 |
|
if ((classbits[1] & 0x24) != 0x24) cd->external_flags |= PCRE_HASCRORLF; |
| 3314 |
|
} |
| 3315 |
|
else |
| 3316 |
|
{ |
| 3317 |
|
if ((classbits[1] & 0x24) != 0) cd->external_flags |= PCRE_HASCRORLF; |
| 3318 |
|
} |
| 3319 |
|
#endif |
| 3320 |
|
|
| 3321 |
|
|
| 3322 |
/* 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 |
| 3323 |
less than 256. In non-UTF-8 mode we can always optimize. In UTF-8 mode, we |
less than 256. As long as there were no characters >= 128 and there was no |
| 3324 |
can optimize the negative case only if there were no characters >= 128 |
use of \p or \P, in other words, no use of any XCLASS features, we can |
| 3325 |
because OP_NOT and the related opcodes like OP_NOTSTAR operate on |
optimize. |
| 3326 |
single-bytes only. This is an historical hangover. Maybe one day we can |
|
| 3327 |
tidy these opcodes to handle multi-byte characters. |
In UTF-8 mode, we can optimize the negative case only if there were no |
| 3328 |
|
characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR |
| 3329 |
|
operate on single-bytes only. This is an historical hangover. Maybe one day |
| 3330 |
|
we can tidy these opcodes to handle multi-byte characters. |
| 3331 |
|
|
| 3332 |
The optimization throws away the bit map. We turn the item into a |
The optimization throws away the bit map. We turn the item into a |
| 3333 |
1-character OP_CHAR[NC] if it's positive, or OP_NOT if it's negative. Note |
1-character OP_CHAR[NC] if it's positive, or OP_NOT if it's negative. Note |
| 3337 |
reqbyte, save the previous value for reinstating. */ |
reqbyte, save the previous value for reinstating. */ |
| 3338 |
|
|
| 3339 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 3340 |
if (class_charcount == 1 && |
if (class_charcount == 1 && !class_utf8 && |
| 3341 |
(!utf8 || |
(!utf8 || !negate_class || class_lastchar < 128)) |
|
(!class_utf8 && (!negate_class || class_lastchar < 128)))) |
|
|
|
|
| 3342 |
#else |
#else |
| 3343 |
if (class_charcount == 1) |
if (class_charcount == 1) |
| 3344 |
#endif |
#endif |
| 3381 |
zeroreqbyte = reqbyte; |
zeroreqbyte = reqbyte; |
| 3382 |
|
|
| 3383 |
/* If there are characters with values > 255, we have to compile an |
/* If there are characters with values > 255, we have to compile an |
| 3384 |
extended class, with its own opcode. If there are no characters < 256, |
extended class, with its own opcode, unless there was a negated special |
| 3385 |
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 |
| 3386 |
|
the class, so any that were explicitly given as well can be ignored. If |
| 3387 |
|
(when there are explicit characters > 255 that must be listed) there are no |
| 3388 |
|
characters < 256, we can omit the bitmap in the actual compiled code. */ |
| 3389 |
|
|
| 3390 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 3391 |
if (class_utf8) |
if (class_utf8 && !should_flip_negation) |
| 3392 |
{ |
{ |
| 3393 |
*class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
*class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
| 3394 |
*code++ = OP_XCLASS; |
*code++ = OP_XCLASS; |
| 3414 |
} |
} |
| 3415 |
#endif |
#endif |
| 3416 |
|
|
| 3417 |
/* 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 |
| 3418 |
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 |
| 3419 |
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 |
| 3420 |
setting must remain unchanged after any kind of repeat. */ |
map into the code vector, negating it if necessary. */ |
| 3421 |
|
|
| 3422 |
|
*code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
| 3423 |
if (negate_class) |
if (negate_class) |
| 3424 |
{ |
{ |
|
*code++ = OP_NCLASS; |
|
| 3425 |
if (lengthptr == NULL) /* Save time in the pre-compile phase */ |
if (lengthptr == NULL) /* Save time in the pre-compile phase */ |
| 3426 |
for (c = 0; c < 32; c++) code[c] = ~classbits[c]; |
for (c = 0; c < 32; c++) code[c] = ~classbits[c]; |
| 3427 |
} |
} |
| 3428 |
else |
else |
| 3429 |
{ |
{ |
|
*code++ = OP_CLASS; |
|
| 3430 |
memcpy(code, classbits, 32); |
memcpy(code, classbits, 32); |
| 3431 |
} |
} |
| 3432 |
code += 32; |
code += 32; |
| 3612 |
/* All real repeats make it impossible to handle partial matching (maybe |
/* All real repeats make it impossible to handle partial matching (maybe |
| 3613 |
one day we will be able to remove this restriction). */ |
one day we will be able to remove this restriction). */ |
| 3614 |
|
|
| 3615 |
if (repeat_max != 1) cd->nopartial = TRUE; |
if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; |
| 3616 |
|
|
| 3617 |
/* Combine the op_type with the repeat_type */ |
/* Combine the op_type with the repeat_type */ |
| 3618 |
|
|
| 3762 |
/* All real repeats make it impossible to handle partial matching (maybe |
/* All real repeats make it impossible to handle partial matching (maybe |
| 3763 |
one day we will be able to remove this restriction). */ |
one day we will be able to remove this restriction). */ |
| 3764 |
|
|
| 3765 |
if (repeat_max != 1) cd->nopartial = TRUE; |
if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; |
| 3766 |
|
|
| 3767 |
if (repeat_min == 0 && repeat_max == -1) |
if (repeat_min == 0 && repeat_max == -1) |
| 3768 |
*code++ = OP_CRSTAR + repeat_type; |
*code++ = OP_CRSTAR + repeat_type; |
| 4062 |
int len; |
int len; |
| 4063 |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
if (*tempcode == OP_EXACT || *tempcode == OP_TYPEEXACT || |
| 4064 |
*tempcode == OP_NOTEXACT) |
*tempcode == OP_NOTEXACT) |
| 4065 |
tempcode += _pcre_OP_lengths[*tempcode]; |
tempcode += _pcre_OP_lengths[*tempcode] + |
| 4066 |
|
((*tempcode == OP_TYPEEXACT && |
| 4067 |
|
(tempcode[3] == OP_PROP || tempcode[3] == OP_NOTPROP))? 2:0); |
| 4068 |
len = code - tempcode; |
len = code - tempcode; |
| 4069 |
if (len > 0) switch (*tempcode) |
if (len > 0) switch (*tempcode) |
| 4070 |
{ |
{ |
| 4122 |
if (*(++ptr) == '*' && (cd->ctypes[ptr[1]] & ctype_letter) != 0) |
if (*(++ptr) == '*' && (cd->ctypes[ptr[1]] & ctype_letter) != 0) |
| 4123 |
{ |
{ |
| 4124 |
int i, namelen; |
int i, namelen; |
| 4125 |
|
const char *vn = verbnames; |
| 4126 |
const uschar *name = ++ptr; |
const uschar *name = ++ptr; |
| 4127 |
previous = NULL; |
previous = NULL; |
| 4128 |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0); |
while ((cd->ctypes[*++ptr] & ctype_letter) != 0); |
| 4140 |
for (i = 0; i < verbcount; i++) |
for (i = 0; i < verbcount; i++) |
| 4141 |
{ |
{ |
| 4142 |
if (namelen == verbs[i].len && |
if (namelen == verbs[i].len && |
| 4143 |
strncmp((char *)name, verbs[i].name, namelen) == 0) |
strncmp((char *)name, vn, namelen) == 0) |
| 4144 |
{ |
{ |
| 4145 |
*code = verbs[i].op; |
*code = verbs[i].op; |
| 4146 |
if (*code++ == OP_ACCEPT) cd->had_accept = TRUE; |
if (*code++ == OP_ACCEPT) cd->had_accept = TRUE; |
| 4147 |
break; |
break; |
| 4148 |
} |
} |
| 4149 |
|
vn += verbs[i].len + 1; |
| 4150 |
} |
} |
| 4151 |
if (i < verbcount) continue; |
if (i < verbcount) continue; |
| 4152 |
*errorcodeptr = ERR60; |
*errorcodeptr = ERR60; |
| 4291 |
*errorcodeptr = ERR58; |
*errorcodeptr = ERR58; |
| 4292 |
goto FAILED; |
goto FAILED; |
| 4293 |
} |
} |
| 4294 |
if (refsign == '-') |
recno = (refsign == '-')? |
| 4295 |
|
cd->bracount - recno + 1 : recno +cd->bracount; |
| 4296 |
|
if (recno <= 0 || recno > cd->final_bracount) |
| 4297 |
{ |
{ |
| 4298 |
recno = cd->bracount - recno + 1; |
*errorcodeptr = ERR15; |
| 4299 |
if (recno <= 0) |
goto FAILED; |
|
{ |
|
|
*errorcodeptr = ERR15; |
|
|
goto FAILED; |
|
|
} |
|
| 4300 |
} |
} |
|
else recno += cd->bracount; |
|
| 4301 |
PUT2(code, 2+LINK_SIZE, recno); |
PUT2(code, 2+LINK_SIZE, recno); |
| 4302 |
break; |
break; |
| 4303 |
} |
} |
| 4369 |
skipbytes = 1; |
skipbytes = 1; |
| 4370 |
} |
} |
| 4371 |
|
|
| 4372 |
/* Check for the "name" actually being a subpattern number. */ |
/* Check for the "name" actually being a subpattern number. We are |
| 4373 |
|
in the second pass here, so final_bracount is set. */ |
| 4374 |
|
|
| 4375 |
else if (recno > 0) |
else if (recno > 0 && recno <= cd->final_bracount) |
| 4376 |
{ |
{ |
| 4377 |
PUT2(code, 2+LINK_SIZE, recno); |
PUT2(code, 2+LINK_SIZE, recno); |
| 4378 |
} |
} |
| 4566 |
|
|
| 4567 |
/* We come here from the Python syntax above that handles both |
/* We come here from the Python syntax above that handles both |
| 4568 |
references (?P=name) and recursion (?P>name), as well as falling |
references (?P=name) and recursion (?P>name), as well as falling |
| 4569 |
through from the Perl recursion syntax (?&name). */ |
through from the Perl recursion syntax (?&name). We also come here from |
| 4570 |
|
the Perl \k<name> or \k'name' back reference syntax and the \k{name} |
| 4571 |
|
.NET syntax. */ |
| 4572 |
|
|
| 4573 |
NAMED_REF_OR_RECURSE: |
NAMED_REF_OR_RECURSE: |
| 4574 |
name = ++ptr; |
name = ++ptr; |
| 4580 |
|
|
| 4581 |
if (lengthptr != NULL) |
if (lengthptr != NULL) |
| 4582 |
{ |
{ |
| 4583 |
|
if (namelen == 0) |
| 4584 |
|
{ |
| 4585 |
|
*errorcodeptr = ERR62; |
| 4586 |
|
goto FAILED; |
| 4587 |
|
} |
| 4588 |
if (*ptr != terminator) |
if (*ptr != terminator) |
| 4589 |
{ |
{ |
| 4590 |
*errorcodeptr = ERR42; |
*errorcodeptr = ERR42; |
| 4598 |
recno = 0; |
recno = 0; |
| 4599 |
} |
} |
| 4600 |
|
|
| 4601 |
/* In the real compile, seek the name in the table */ |
/* In the real compile, seek the name in the table. We check the name |
| 4602 |
|
first, and then check that we have reached the end of the name in the |
| 4603 |
|
table. That way, if the name that is longer than any in the table, |
| 4604 |
|
the comparison will fail without reading beyond the table entry. */ |
| 4605 |
|
|
| 4606 |
else |
else |
| 4607 |
{ |
{ |
| 4608 |
slot = cd->name_table; |
slot = cd->name_table; |
| 4609 |
for (i = 0; i < cd->names_found; i++) |
for (i = 0; i < cd->names_found; i++) |
| 4610 |
{ |
{ |
| 4611 |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0) break; |
if (strncmp((char *)name, (char *)slot+2, namelen) == 0 && |
| 4612 |
|
slot[2+namelen] == 0) |
| 4613 |
|
break; |
| 4614 |
slot += cd->name_entry_size; |
slot += cd->name_entry_size; |
| 4615 |
} |
} |
| 4616 |
|
|
| 4647 |
{ |
{ |
| 4648 |
const uschar *called; |
const uschar *called; |
| 4649 |
|
|
| 4650 |
if ((refsign = *ptr) == '+') ptr++; |
if ((refsign = *ptr) == '+') |
| 4651 |
|
{ |
| 4652 |
|
ptr++; |
| 4653 |
|
if ((digitab[*ptr] & ctype_digit) == 0) |
| 4654 |
|
{ |
| 4655 |
|
*errorcodeptr = ERR63; |
| 4656 |
|
goto FAILED; |
| 4657 |
|
} |
| 4658 |
|
} |
| 4659 |
else if (refsign == '-') |
else if (refsign == '-') |
| 4660 |
{ |
{ |
| 4661 |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
if ((digitab[ptr[1]] & ctype_digit) == 0) |
| 4781 |
|
|
| 4782 |
case 'J': /* Record that it changed in the external options */ |
case 'J': /* Record that it changed in the external options */ |
| 4783 |
*optset |= PCRE_DUPNAMES; |
*optset |= PCRE_DUPNAMES; |
| 4784 |
cd->external_options |= PCRE_JCHANGED; |
cd->external_flags |= PCRE_JCHANGED; |
| 4785 |
break; |
break; |
| 4786 |
|
|
| 4787 |
case 'i': *optset |= PCRE_CASELESS; break; |
case 'i': *optset |= PCRE_CASELESS; break; |
| 5198 |
*code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; |
*code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR; |
| 5199 |
for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; |
for (c = 0; c < mclength; c++) *code++ = mcbuffer[c]; |
| 5200 |
|
|
| 5201 |
|
/* Remember if \r or \n were seen */ |
| 5202 |
|
|
| 5203 |
|
if (mcbuffer[0] == '\r' || mcbuffer[0] == '\n') |
| 5204 |
|
cd->external_flags |= PCRE_HASCRORLF; |
| 5205 |
|
|
| 5206 |
/* Set the first and required bytes appropriately. If no previous first |
/* Set the first and required bytes appropriately. If no previous first |
| 5207 |
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. |
| 5208 |
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 |
| 5802 |
int length = 1; /* For final END opcode */ |
int length = 1; /* For final END opcode */ |
| 5803 |
int firstbyte, reqbyte, newline; |
int firstbyte, reqbyte, newline; |
| 5804 |
int errorcode = 0; |
int errorcode = 0; |
| 5805 |
|
int skipatstart = 0; |
| 5806 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 5807 |
BOOL utf8; |
BOOL utf8; |
| 5808 |
#endif |
#endif |
| 5821 |
|
|
| 5822 |
uschar cworkspace[COMPILE_WORK_SIZE]; |
uschar cworkspace[COMPILE_WORK_SIZE]; |
| 5823 |
|
|
|
|
|
| 5824 |
/* Set this early so that early errors get offset 0. */ |
/* Set this early so that early errors get offset 0. */ |
| 5825 |
|
|
| 5826 |
ptr = (const uschar *)pattern; |
ptr = (const uschar *)pattern; |
| 5880 |
cd->cbits = tables + cbits_offset; |
cd->cbits = tables + cbits_offset; |
| 5881 |
cd->ctypes = tables + ctypes_offset; |
cd->ctypes = tables + ctypes_offset; |
| 5882 |
|
|
| 5883 |
|
/* Check for global one-time settings at the start of the pattern, and remember |
| 5884 |
|
the offset for later. */ |
| 5885 |
|
|
| 5886 |
|
while (ptr[skipatstart] == '(' && ptr[skipatstart+1] == '*') |
| 5887 |
|
{ |
| 5888 |
|
int newnl = 0; |
| 5889 |
|
int newbsr = 0; |
| 5890 |
|
|
| 5891 |
|
if (strncmp((char *)(ptr+skipatstart+2), "CR)", 3) == 0) |
| 5892 |
|
{ skipatstart += 5; newnl = PCRE_NEWLINE_CR; } |
| 5893 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "LF)", 3) == 0) |
| 5894 |
|
{ skipatstart += 5; newnl = PCRE_NEWLINE_LF; } |
| 5895 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "CRLF)", 5) == 0) |
| 5896 |
|
{ skipatstart += 7; newnl = PCRE_NEWLINE_CR + PCRE_NEWLINE_LF; } |
| 5897 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "ANY)", 4) == 0) |
| 5898 |
|
{ skipatstart += 6; newnl = PCRE_NEWLINE_ANY; } |
| 5899 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "ANYCRLF)", 8) == 0) |
| 5900 |
|
{ skipatstart += 10; newnl = PCRE_NEWLINE_ANYCRLF; } |
| 5901 |
|
|
| 5902 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "BSR_ANYCRLF)", 12) == 0) |
| 5903 |
|
{ skipatstart += 14; newbsr = PCRE_BSR_ANYCRLF; } |
| 5904 |
|
else if (strncmp((char *)(ptr+skipatstart+2), "BSR_UNICODE)", 12) == 0) |
| 5905 |
|
{ skipatstart += 14; newbsr = PCRE_BSR_UNICODE; } |
| 5906 |
|
|
| 5907 |
|
if (newnl != 0) |
| 5908 |
|
options = (options & ~PCRE_NEWLINE_BITS) | newnl; |
| 5909 |
|
else if (newbsr != 0) |
| 5910 |
|
options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr; |
| 5911 |
|
else break; |
| 5912 |
|
} |
| 5913 |
|
|
| 5914 |
|
/* Check validity of \R options. */ |
| 5915 |
|
|
| 5916 |
|
switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
| 5917 |
|
{ |
| 5918 |
|
case 0: |
| 5919 |
|
case PCRE_BSR_ANYCRLF: |
| 5920 |
|
case PCRE_BSR_UNICODE: |
| 5921 |
|
break; |
| 5922 |
|
default: errorcode = ERR56; goto PCRE_EARLY_ERROR_RETURN; |
| 5923 |
|
} |
| 5924 |
|
|
| 5925 |
/* Handle different types of newline. The three bits give seven cases. The |
/* Handle different types of newline. The three bits give seven cases. The |
| 5926 |
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 |
| 5927 |
"anycrlf". */ |
"anycrlf". */ |
| 5928 |
|
|
| 5929 |
switch (options & (PCRE_NEWLINE_CRLF | PCRE_NEWLINE_ANY)) |
switch (options & PCRE_NEWLINE_BITS) |
| 5930 |
{ |
{ |
| 5931 |
case 0: newline = NEWLINE; break; /* Compile-time default */ |
case 0: newline = NEWLINE; break; /* Build-time default */ |
| 5932 |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
case PCRE_NEWLINE_CR: newline = '\r'; break; |
| 5933 |
case PCRE_NEWLINE_LF: newline = '\n'; break; |
case PCRE_NEWLINE_LF: newline = '\n'; break; |
| 5934 |
case PCRE_NEWLINE_CR+ |
case PCRE_NEWLINE_CR+ |
| 5981 |
no longer needed, so hopefully this workspace will never overflow, though there |
no longer needed, so hopefully this workspace will never overflow, though there |
| 5982 |
is a test for its doing so. */ |
is a test for its doing so. */ |
| 5983 |
|
|
| 5984 |
cd->bracount = 0; |
cd->bracount = cd->final_bracount = 0; |
| 5985 |
cd->names_found = 0; |
cd->names_found = 0; |
| 5986 |
cd->name_entry_size = 0; |
cd->name_entry_size = 0; |
| 5987 |
cd->name_table = NULL; |
cd->name_table = NULL; |
| 5991 |
cd->start_pattern = (const uschar *)pattern; |
cd->start_pattern = (const uschar *)pattern; |
| 5992 |
cd->end_pattern = (const uschar *)(pattern + strlen(pattern)); |
cd->end_pattern = (const uschar *)(pattern + strlen(pattern)); |
| 5993 |
cd->req_varyopt = 0; |
cd->req_varyopt = 0; |
|
cd->nopartial = FALSE; |
|
| 5994 |
cd->external_options = options; |
cd->external_options = options; |
| 5995 |
|
cd->external_flags = 0; |
| 5996 |
|
|
| 5997 |
/* 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 |
| 5998 |
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 |
| 6000 |
found within the regex right at the beginning. Bringing initial option settings |
found within the regex right at the beginning. Bringing initial option settings |
| 6001 |
outside can help speed up starting point checks. */ |
outside can help speed up starting point checks. */ |
| 6002 |
|
|
| 6003 |
|
ptr += skipatstart; |
| 6004 |
code = cworkspace; |
code = cworkspace; |
| 6005 |
*code = OP_BRA; |
*code = OP_BRA; |
| 6006 |
(void)compile_regex(cd->external_options, cd->external_options & PCRE_IMS, |
(void)compile_regex(cd->external_options, cd->external_options & PCRE_IMS, |
| 6031 |
goto PCRE_EARLY_ERROR_RETURN; |
goto PCRE_EARLY_ERROR_RETURN; |
| 6032 |
} |
} |
| 6033 |
|
|
| 6034 |
/* 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 |
| 6035 |
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 |
| 6036 |
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 |
| 6037 |
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 |
| 6038 |
|
pointers. */ |
| 6039 |
|
|
| 6040 |
re->magic_number = MAGIC_NUMBER; |
re->magic_number = MAGIC_NUMBER; |
| 6041 |
re->size = size; |
re->size = size; |
| 6042 |
re->options = cd->external_options; |
re->options = cd->external_options; |
| 6043 |
|
re->flags = cd->external_flags; |
| 6044 |
re->dummy1 = 0; |
re->dummy1 = 0; |
| 6045 |
re->first_byte = 0; |
re->first_byte = 0; |
| 6046 |
re->req_byte = 0; |
re->req_byte = 0; |
| 6058 |
field; this time it's used for remembering forward references to subpatterns. |
field; this time it's used for remembering forward references to subpatterns. |
| 6059 |
*/ |
*/ |
| 6060 |
|
|
| 6061 |
|
cd->final_bracount = cd->bracount; /* Save for checking forward references */ |
| 6062 |
cd->bracount = 0; |
cd->bracount = 0; |
| 6063 |
cd->names_found = 0; |
cd->names_found = 0; |
| 6064 |
cd->name_table = (uschar *)re + re->name_table_offset; |
cd->name_table = (uschar *)re + re->name_table_offset; |
| 6066 |
cd->start_code = codestart; |
cd->start_code = codestart; |
| 6067 |
cd->hwm = cworkspace; |
cd->hwm = cworkspace; |
| 6068 |
cd->req_varyopt = 0; |
cd->req_varyopt = 0; |
|
cd->nopartial = FALSE; |
|
| 6069 |
cd->had_accept = FALSE; |
cd->had_accept = FALSE; |
| 6070 |
|
|
| 6071 |
/* Set up a starting, non-extracting bracket, then compile the expression. On |
/* Set up a starting, non-extracting bracket, then compile the expression. On |
| 6072 |
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 |
| 6073 |
of the function here. */ |
of the function here. */ |
| 6074 |
|
|
| 6075 |
ptr = (const uschar *)pattern; |
ptr = (const uschar *)pattern + skipatstart; |
| 6076 |
code = (uschar *)codestart; |
code = (uschar *)codestart; |
| 6077 |
*code = OP_BRA; |
*code = OP_BRA; |
| 6078 |
(void)compile_regex(re->options, re->options & PCRE_IMS, &code, &ptr, |
(void)compile_regex(re->options, re->options & PCRE_IMS, &code, &ptr, |
| 6079 |
&errorcode, FALSE, FALSE, 0, &firstbyte, &reqbyte, NULL, cd, NULL); |
&errorcode, FALSE, FALSE, 0, &firstbyte, &reqbyte, NULL, cd, NULL); |
| 6080 |
re->top_bracket = cd->bracount; |
re->top_bracket = cd->bracount; |
| 6081 |
re->top_backref = cd->top_backref; |
re->top_backref = cd->top_backref; |
| 6082 |
|
re->flags = cd->external_flags; |
| 6083 |
|
|
|
if (cd->nopartial) re->options |= PCRE_NOPARTIAL; |
|
| 6084 |
if (cd->had_accept) reqbyte = -1; /* Must disable after (*ACCEPT) */ |
if (cd->had_accept) reqbyte = -1; /* Must disable after (*ACCEPT) */ |
| 6085 |
|
|
| 6086 |
/* 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. */ |
| 6123 |
PCRE_EARLY_ERROR_RETURN: |
PCRE_EARLY_ERROR_RETURN: |
| 6124 |
*erroroffset = ptr - (const uschar *)pattern; |
*erroroffset = ptr - (const uschar *)pattern; |
| 6125 |
PCRE_EARLY_ERROR_RETURN2: |
PCRE_EARLY_ERROR_RETURN2: |
| 6126 |
*errorptr = error_texts[errorcode]; |
*errorptr = find_error_text(errorcode); |
| 6127 |
if (errorcodeptr != NULL) *errorcodeptr = errorcode; |
if (errorcodeptr != NULL) *errorcodeptr = errorcode; |
| 6128 |
return NULL; |
return NULL; |
| 6129 |
} |
} |
| 6152 |
int ch = firstbyte & 255; |
int ch = firstbyte & 255; |
| 6153 |
re->first_byte = ((firstbyte & REQ_CASELESS) != 0 && |
re->first_byte = ((firstbyte & REQ_CASELESS) != 0 && |
| 6154 |
cd->fcc[ch] == ch)? ch : firstbyte; |
cd->fcc[ch] == ch)? ch : firstbyte; |
| 6155 |
re->options |= PCRE_FIRSTSET; |
re->flags |= PCRE_FIRSTSET; |
| 6156 |
} |
} |
| 6157 |
else if (is_startline(codestart, 0, cd->backref_map)) |
else if (is_startline(codestart, 0, cd->backref_map)) |
| 6158 |
re->options |= PCRE_STARTLINE; |
re->flags |= PCRE_STARTLINE; |
| 6159 |
} |
} |
| 6160 |
} |
} |
| 6161 |
|
|
| 6169 |
int ch = reqbyte & 255; |
int ch = reqbyte & 255; |
| 6170 |
re->req_byte = ((reqbyte & REQ_CASELESS) != 0 && |
re->req_byte = ((reqbyte & REQ_CASELESS) != 0 && |
| 6171 |
cd->fcc[ch] == ch)? (reqbyte & ~REQ_CASELESS) : reqbyte; |
cd->fcc[ch] == ch)? (reqbyte & ~REQ_CASELESS) : reqbyte; |
| 6172 |
re->options |= PCRE_REQCHSET; |
re->flags |= PCRE_REQCHSET; |
| 6173 |
} |
} |
| 6174 |
|
|
| 6175 |
/* 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 |
| 6180 |
printf("Length = %d top_bracket = %d top_backref = %d\n", |
printf("Length = %d top_bracket = %d top_backref = %d\n", |
| 6181 |
length, re->top_bracket, re->top_backref); |
length, re->top_bracket, re->top_backref); |
| 6182 |
|
|
| 6183 |
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 " : ""); |
|
|
} |
|
| 6184 |
|
|
| 6185 |
if ((re->options & PCRE_FIRSTSET) != 0) |
if ((re->flags & PCRE_FIRSTSET) != 0) |
| 6186 |
{ |
{ |
| 6187 |
int ch = re->first_byte & 255; |
int ch = re->first_byte & 255; |
| 6188 |
const char *caseless = ((re->first_byte & REQ_CASELESS) == 0)? |
const char *caseless = ((re->first_byte & REQ_CASELESS) == 0)? |
| 6191 |
else printf("First char = \\x%02x%s\n", ch, caseless); |
else printf("First char = \\x%02x%s\n", ch, caseless); |
| 6192 |
} |
} |
| 6193 |
|
|
| 6194 |
if ((re->options & PCRE_REQCHSET) != 0) |
if ((re->flags & PCRE_REQCHSET) != 0) |
| 6195 |
{ |
{ |
| 6196 |
int ch = re->req_byte & 255; |
int ch = re->req_byte & 255; |
| 6197 |
const char *caseless = ((re->req_byte & REQ_CASELESS) == 0)? |
const char *caseless = ((re->req_byte & REQ_CASELESS) == 0)? |
| 6208 |
if (code - codestart > length) |
if (code - codestart > length) |
| 6209 |
{ |
{ |
| 6210 |
(pcre_free)(re); |
(pcre_free)(re); |
| 6211 |
*errorptr = error_texts[ERR23]; |
*errorptr = find_error_text(ERR23); |
| 6212 |
*erroroffset = ptr - (uschar *)pattern; |
*erroroffset = ptr - (uschar *)pattern; |
| 6213 |
if (errorcodeptr != NULL) *errorcodeptr = ERR23; |
if (errorcodeptr != NULL) *errorcodeptr = ERR23; |
| 6214 |
return NULL; |
return NULL; |