| 7 |
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. |
| 8 |
|
|
| 9 |
Written by Philip Hazel |
Written by Philip Hazel |
| 10 |
Copyright (c) 1997-2009 University of Cambridge |
Copyright (c) 1997-2010 University of Cambridge |
| 11 |
|
|
| 12 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
| 13 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
| 45 |
#ifndef PCRE_INTERNAL_H |
#ifndef PCRE_INTERNAL_H |
| 46 |
#define PCRE_INTERNAL_H |
#define PCRE_INTERNAL_H |
| 47 |
|
|
| 48 |
/* Define DEBUG to get debugging output on stdout. */ |
/* Define PCRE_DEBUG to get debugging output on stdout. */ |
| 49 |
|
|
| 50 |
#if 0 |
#if 0 |
| 51 |
#define DEBUG |
#define PCRE_DEBUG |
| 52 |
#endif |
#endif |
| 53 |
|
|
| 54 |
/* We do not support both EBCDIC and UTF-8 at the same time. The "configure" |
/* We do not support both EBCDIC and UTF-8 at the same time. The "configure" |
| 74 |
be absolutely sure we get our version. */ |
be absolutely sure we get our version. */ |
| 75 |
|
|
| 76 |
#undef DPRINTF |
#undef DPRINTF |
| 77 |
#ifdef DEBUG |
#ifdef PCRE_DEBUG |
| 78 |
#define DPRINTF(p) printf p |
#define DPRINTF(p) printf p |
| 79 |
#else |
#else |
| 80 |
#define DPRINTF(p) /* Nothing */ |
#define DPRINTF(p) /* Nothing */ |
| 86 |
|
|
| 87 |
#include <ctype.h> |
#include <ctype.h> |
| 88 |
#include <limits.h> |
#include <limits.h> |
|
#include <setjmp.h> |
|
|
#include <stdarg.h> |
|
| 89 |
#include <stddef.h> |
#include <stddef.h> |
| 90 |
#include <stdio.h> |
#include <stdio.h> |
| 91 |
#include <stdlib.h> |
#include <stdlib.h> |
| 184 |
#error Cannot determine a type for 32-bit unsigned integers |
#error Cannot determine a type for 32-bit unsigned integers |
| 185 |
#endif |
#endif |
| 186 |
|
|
| 187 |
|
/* When checking for integer overflow in pcre_compile(), we need to handle |
| 188 |
|
large integers. If a 64-bit integer type is available, we can use that. |
| 189 |
|
Otherwise we have to cast to double, which of course requires floating point |
| 190 |
|
arithmetic. Handle this by defining a macro for the appropriate type. If |
| 191 |
|
stdint.h is available, include it; it may define INT64_MAX. Systems that do not |
| 192 |
|
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set |
| 193 |
|
by "configure". */ |
| 194 |
|
|
| 195 |
|
#if HAVE_STDINT_H |
| 196 |
|
#include <stdint.h> |
| 197 |
|
#elif HAVE_INTTYPES_H |
| 198 |
|
#include <inttypes.h> |
| 199 |
|
#endif |
| 200 |
|
|
| 201 |
|
#if defined INT64_MAX || defined int64_t |
| 202 |
|
#define INT64_OR_DOUBLE int64_t |
| 203 |
|
#else |
| 204 |
|
#define INT64_OR_DOUBLE double |
| 205 |
|
#endif |
| 206 |
|
|
| 207 |
/* All character handling must be done as unsigned characters. Otherwise there |
/* All character handling must be done as unsigned characters. Otherwise there |
| 208 |
are problems with top-bit-set characters and functions such as isspace(). |
are problems with top-bit-set characters and functions such as isspace(). |
| 209 |
However, we leave the interface to the outside world as char *, because that |
However, we leave the interface to the outside world as char *, because that |
| 408 |
|
|
| 409 |
/* When UTF-8 encoding is being used, a character is no longer just a single |
/* When UTF-8 encoding is being used, a character is no longer just a single |
| 410 |
byte. The macros for character handling generate simple sequences when used in |
byte. The macros for character handling generate simple sequences when used in |
| 411 |
byte-mode, and more complicated ones for UTF-8 characters. BACKCHAR should |
byte-mode, and more complicated ones for UTF-8 characters. GETCHARLENTEST is |
| 412 |
never be called in byte mode. To make sure it can never even appear when UTF-8 |
not used when UTF-8 is not supported, so it is not defined, and BACKCHAR should |
| 413 |
support is omitted, we don't even define it. */ |
never be called in byte mode. To make sure they can never even appear when |
| 414 |
|
UTF-8 support is omitted, we don't even define them. */ |
| 415 |
|
|
| 416 |
#ifndef SUPPORT_UTF8 |
#ifndef SUPPORT_UTF8 |
| 417 |
#define GETCHAR(c, eptr) c = *eptr; |
#define GETCHAR(c, eptr) c = *eptr; |
| 419 |
#define GETCHARINC(c, eptr) c = *eptr++; |
#define GETCHARINC(c, eptr) c = *eptr++; |
| 420 |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
| 421 |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
| 422 |
|
/* #define GETCHARLENTEST(c, eptr, len) */ |
| 423 |
/* #define BACKCHAR(eptr) */ |
/* #define BACKCHAR(eptr) */ |
| 424 |
|
|
| 425 |
#else /* SUPPORT_UTF8 */ |
#else /* SUPPORT_UTF8 */ |
| 426 |
|
|
| 427 |
|
/* These macros were originally written in the form of loops that used data |
| 428 |
|
from the tables whose names start with _pcre_utf8_table. They were rewritten by |
| 429 |
|
a user so as not to use loops, because in some environments this gives a |
| 430 |
|
significant performance advantage, and it seems never to do any harm. */ |
| 431 |
|
|
| 432 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, not |
| 433 |
|
advancing the pointer. */ |
| 434 |
|
|
| 435 |
|
#define GETUTF8(c, eptr) \ |
| 436 |
|
{ \ |
| 437 |
|
if ((c & 0x20) == 0) \ |
| 438 |
|
c = ((c & 0x1f) << 6) | (eptr[1] & 0x3f); \ |
| 439 |
|
else if ((c & 0x10) == 0) \ |
| 440 |
|
c = ((c & 0x0f) << 12) | ((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
| 441 |
|
else if ((c & 0x08) == 0) \ |
| 442 |
|
c = ((c & 0x07) << 18) | ((eptr[1] & 0x3f) << 12) | \ |
| 443 |
|
((eptr[2] & 0x3f) << 6) | (eptr[3] & 0x3f); \ |
| 444 |
|
else if ((c & 0x04) == 0) \ |
| 445 |
|
c = ((c & 0x03) << 24) | ((eptr[1] & 0x3f) << 18) | \ |
| 446 |
|
((eptr[2] & 0x3f) << 12) | ((eptr[3] & 0x3f) << 6) | \ |
| 447 |
|
(eptr[4] & 0x3f); \ |
| 448 |
|
else \ |
| 449 |
|
c = ((c & 0x01) << 30) | ((eptr[1] & 0x3f) << 24) | \ |
| 450 |
|
((eptr[2] & 0x3f) << 18) | ((eptr[3] & 0x3f) << 12) | \ |
| 451 |
|
((eptr[4] & 0x3f) << 6) | (eptr[5] & 0x3f); \ |
| 452 |
|
} |
| 453 |
|
|
| 454 |
/* Get the next UTF-8 character, not advancing the pointer. This is called when |
/* Get the next UTF-8 character, not advancing the pointer. This is called when |
| 455 |
we know we are in UTF-8 mode. */ |
we know we are in UTF-8 mode. */ |
| 456 |
|
|
| 457 |
#define GETCHAR(c, eptr) \ |
#define GETCHAR(c, eptr) \ |
| 458 |
c = *eptr; \ |
c = *eptr; \ |
| 459 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8(c, eptr); |
|
{ \ |
|
|
int gcii; \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
for (gcii = 1; gcii <= gcaa; gcii++) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (eptr[gcii] & 0x3f) << gcss; \ |
|
|
} \ |
|
|
} |
|
| 460 |
|
|
| 461 |
/* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the |
/* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the |
| 462 |
pointer. */ |
pointer. */ |
| 463 |
|
|
| 464 |
#define GETCHARTEST(c, eptr) \ |
#define GETCHARTEST(c, eptr) \ |
| 465 |
c = *eptr; \ |
c = *eptr; \ |
| 466 |
if (utf8 && c >= 0xc0) \ |
if (utf8 && c >= 0xc0) GETUTF8(c, eptr); |
| 467 |
|
|
| 468 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, advancing |
| 469 |
|
the pointer. */ |
| 470 |
|
|
| 471 |
|
#define GETUTF8INC(c, eptr) \ |
| 472 |
{ \ |
{ \ |
| 473 |
int gcii; \ |
if ((c & 0x20) == 0) \ |
| 474 |
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
c = ((c & 0x1f) << 6) | (*eptr++ & 0x3f); \ |
| 475 |
int gcss = 6*gcaa; \ |
else if ((c & 0x10) == 0) \ |
| 476 |
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
{ \ |
| 477 |
for (gcii = 1; gcii <= gcaa; gcii++) \ |
c = ((c & 0x0f) << 12) | ((*eptr & 0x3f) << 6) | (eptr[1] & 0x3f); \ |
| 478 |
|
eptr += 2; \ |
| 479 |
|
} \ |
| 480 |
|
else if ((c & 0x08) == 0) \ |
| 481 |
|
{ \ |
| 482 |
|
c = ((c & 0x07) << 18) | ((*eptr & 0x3f) << 12) | \ |
| 483 |
|
((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
| 484 |
|
eptr += 3; \ |
| 485 |
|
} \ |
| 486 |
|
else if ((c & 0x04) == 0) \ |
| 487 |
{ \ |
{ \ |
| 488 |
gcss -= 6; \ |
c = ((c & 0x03) << 24) | ((*eptr & 0x3f) << 18) | \ |
| 489 |
c |= (eptr[gcii] & 0x3f) << gcss; \ |
((eptr[1] & 0x3f) << 12) | ((eptr[2] & 0x3f) << 6) | \ |
| 490 |
|
(eptr[3] & 0x3f); \ |
| 491 |
|
eptr += 4; \ |
| 492 |
|
} \ |
| 493 |
|
else \ |
| 494 |
|
{ \ |
| 495 |
|
c = ((c & 0x01) << 30) | ((*eptr & 0x3f) << 24) | \ |
| 496 |
|
((eptr[1] & 0x3f) << 18) | ((eptr[2] & 0x3f) << 12) | \ |
| 497 |
|
((eptr[3] & 0x3f) << 6) | (eptr[4] & 0x3f); \ |
| 498 |
|
eptr += 5; \ |
| 499 |
} \ |
} \ |
| 500 |
} |
} |
| 501 |
|
|
| 504 |
|
|
| 505 |
#define GETCHARINC(c, eptr) \ |
#define GETCHARINC(c, eptr) \ |
| 506 |
c = *eptr++; \ |
c = *eptr++; \ |
| 507 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8INC(c, eptr); |
|
{ \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
while (gcaa-- > 0) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (*eptr++ & 0x3f) << gcss; \ |
|
|
} \ |
|
|
} |
|
| 508 |
|
|
| 509 |
/* Get the next character, testing for UTF-8 mode, and advancing the pointer */ |
/* Get the next character, testing for UTF-8 mode, and advancing the pointer. |
| 510 |
|
This is called when we don't know if we are in UTF-8 mode. */ |
| 511 |
|
|
| 512 |
#define GETCHARINCTEST(c, eptr) \ |
#define GETCHARINCTEST(c, eptr) \ |
| 513 |
c = *eptr++; \ |
c = *eptr++; \ |
| 514 |
if (utf8 && c >= 0xc0) \ |
if (utf8 && c >= 0xc0) GETUTF8INC(c, eptr); |
| 515 |
|
|
| 516 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, not |
| 517 |
|
advancing the pointer, incrementing the length. */ |
| 518 |
|
|
| 519 |
|
#define GETUTF8LEN(c, eptr, len) \ |
| 520 |
{ \ |
{ \ |
| 521 |
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
if ((c & 0x20) == 0) \ |
| 522 |
int gcss = 6*gcaa; \ |
{ \ |
| 523 |
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
c = ((c & 0x1f) << 6) | (eptr[1] & 0x3f); \ |
| 524 |
while (gcaa-- > 0) \ |
len++; \ |
| 525 |
|
} \ |
| 526 |
|
else if ((c & 0x10) == 0) \ |
| 527 |
|
{ \ |
| 528 |
|
c = ((c & 0x0f) << 12) | ((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
| 529 |
|
len += 2; \ |
| 530 |
|
} \ |
| 531 |
|
else if ((c & 0x08) == 0) \ |
| 532 |
|
{\ |
| 533 |
|
c = ((c & 0x07) << 18) | ((eptr[1] & 0x3f) << 12) | \ |
| 534 |
|
((eptr[2] & 0x3f) << 6) | (eptr[3] & 0x3f); \ |
| 535 |
|
len += 3; \ |
| 536 |
|
} \ |
| 537 |
|
else if ((c & 0x04) == 0) \ |
| 538 |
{ \ |
{ \ |
| 539 |
gcss -= 6; \ |
c = ((c & 0x03) << 24) | ((eptr[1] & 0x3f) << 18) | \ |
| 540 |
c |= (*eptr++ & 0x3f) << gcss; \ |
((eptr[2] & 0x3f) << 12) | ((eptr[3] & 0x3f) << 6) | \ |
| 541 |
|
(eptr[4] & 0x3f); \ |
| 542 |
|
len += 4; \ |
| 543 |
|
} \ |
| 544 |
|
else \ |
| 545 |
|
{\ |
| 546 |
|
c = ((c & 0x01) << 30) | ((eptr[1] & 0x3f) << 24) | \ |
| 547 |
|
((eptr[2] & 0x3f) << 18) | ((eptr[3] & 0x3f) << 12) | \ |
| 548 |
|
((eptr[4] & 0x3f) << 6) | (eptr[5] & 0x3f); \ |
| 549 |
|
len += 5; \ |
| 550 |
} \ |
} \ |
| 551 |
} |
} |
| 552 |
|
|
| 555 |
|
|
| 556 |
#define GETCHARLEN(c, eptr, len) \ |
#define GETCHARLEN(c, eptr, len) \ |
| 557 |
c = *eptr; \ |
c = *eptr; \ |
| 558 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8LEN(c, eptr, len); |
|
{ \ |
|
|
int gcii; \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
for (gcii = 1; gcii <= gcaa; gcii++) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (eptr[gcii] & 0x3f) << gcss; \ |
|
|
} \ |
|
|
len += gcaa; \ |
|
|
} |
|
| 559 |
|
|
| 560 |
/* Get the next UTF-8 character, testing for UTF-8 mode, not advancing the |
/* Get the next UTF-8 character, testing for UTF-8 mode, not advancing the |
| 561 |
pointer, incrementing length if there are extra bytes. This is called when we |
pointer, incrementing length if there are extra bytes. This is called when we |
| 562 |
know we are in UTF-8 mode. */ |
do not know if we are in UTF-8 mode. */ |
| 563 |
|
|
| 564 |
#define GETCHARLENTEST(c, eptr, len) \ |
#define GETCHARLENTEST(c, eptr, len) \ |
| 565 |
c = *eptr; \ |
c = *eptr; \ |
| 566 |
if (utf8 && c >= 0xc0) \ |
if (utf8 && c >= 0xc0) GETUTF8LEN(c, eptr, len); |
|
{ \ |
|
|
int gcii; \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
for (gcii = 1; gcii <= gcaa; gcii++) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (eptr[gcii] & 0x3f) << gcss; \ |
|
|
} \ |
|
|
len += gcaa; \ |
|
|
} |
|
| 567 |
|
|
| 568 |
/* If the pointer is not at the start of a character, move it back until |
/* If the pointer is not at the start of a character, move it back until |
| 569 |
it is. This is called only in UTF-8 mode - we don't put a test within the macro |
it is. This is called only in UTF-8 mode - we don't put a test within the macro |
| 571 |
|
|
| 572 |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr-- |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr-- |
| 573 |
|
|
| 574 |
#endif |
#endif /* SUPPORT_UTF8 */ |
| 575 |
|
|
| 576 |
|
|
| 577 |
/* In case there is no definition of offsetof() provided - though any proper |
/* In case there is no definition of offsetof() provided - though any proper |
| 602 |
/* Options for the "extra" block produced by pcre_study(). */ |
/* Options for the "extra" block produced by pcre_study(). */ |
| 603 |
|
|
| 604 |
#define PCRE_STUDY_MAPPED 0x01 /* a map of starting chars exists */ |
#define PCRE_STUDY_MAPPED 0x01 /* a map of starting chars exists */ |
| 605 |
|
#define PCRE_STUDY_MINLEN 0x02 /* a minimum length field exists */ |
| 606 |
|
|
| 607 |
/* Masks for identifying the public options that are permitted at compile |
/* Masks for identifying the public options that are permitted at compile |
| 608 |
time, run time, or study time, respectively. */ |
time, run time, or study time, respectively. */ |
| 615 |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \ |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \ |
| 616 |
PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \ |
PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \ |
| 617 |
PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \ |
PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \ |
| 618 |
PCRE_JAVASCRIPT_COMPAT) |
PCRE_JAVASCRIPT_COMPAT|PCRE_UCP|PCRE_NO_START_OPTIMIZE) |
| 619 |
|
|
| 620 |
#define PUBLIC_EXEC_OPTIONS \ |
#define PUBLIC_EXEC_OPTIONS \ |
| 621 |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \ |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \ |
| 910 |
#define STRING_COMMIT0 "COMMIT\0" |
#define STRING_COMMIT0 "COMMIT\0" |
| 911 |
#define STRING_F0 "F\0" |
#define STRING_F0 "F\0" |
| 912 |
#define STRING_FAIL0 "FAIL\0" |
#define STRING_FAIL0 "FAIL\0" |
| 913 |
|
#define STRING_MARK0 "MARK\0" |
| 914 |
#define STRING_PRUNE0 "PRUNE\0" |
#define STRING_PRUNE0 "PRUNE\0" |
| 915 |
#define STRING_SKIP0 "SKIP\0" |
#define STRING_SKIP0 "SKIP\0" |
| 916 |
#define STRING_THEN "THEN" |
#define STRING_THEN "THEN" |
| 932 |
|
|
| 933 |
#define STRING_DEFINE "DEFINE" |
#define STRING_DEFINE "DEFINE" |
| 934 |
|
|
| 935 |
#define STRING_CR_RIGHTPAR "CR)" |
#define STRING_CR_RIGHTPAR "CR)" |
| 936 |
#define STRING_LF_RIGHTPAR "LF)" |
#define STRING_LF_RIGHTPAR "LF)" |
| 937 |
#define STRING_CRLF_RIGHTPAR "CRLF)" |
#define STRING_CRLF_RIGHTPAR "CRLF)" |
| 938 |
#define STRING_ANY_RIGHTPAR "ANY)" |
#define STRING_ANY_RIGHTPAR "ANY)" |
| 939 |
#define STRING_ANYCRLF_RIGHTPAR "ANYCRLF)" |
#define STRING_ANYCRLF_RIGHTPAR "ANYCRLF)" |
| 940 |
#define STRING_BSR_ANYCRLF_RIGHTPAR "BSR_ANYCRLF)" |
#define STRING_BSR_ANYCRLF_RIGHTPAR "BSR_ANYCRLF)" |
| 941 |
#define STRING_BSR_UNICODE_RIGHTPAR "BSR_UNICODE)" |
#define STRING_BSR_UNICODE_RIGHTPAR "BSR_UNICODE)" |
| 942 |
#define STRING_UTF8_RIGHTPAR "UTF8)" |
#define STRING_UTF8_RIGHTPAR "UTF8)" |
| 943 |
|
#define STRING_UCP_RIGHTPAR "UCP)" |
| 944 |
|
#define STRING_NO_START_OPT_RIGHTPAR "NO_START_OPT)" |
| 945 |
|
|
| 946 |
#else /* SUPPORT_UTF8 */ |
#else /* SUPPORT_UTF8 */ |
| 947 |
|
|
| 1165 |
#define STRING_COMMIT0 STR_C STR_O STR_M STR_M STR_I STR_T "\0" |
#define STRING_COMMIT0 STR_C STR_O STR_M STR_M STR_I STR_T "\0" |
| 1166 |
#define STRING_F0 STR_F "\0" |
#define STRING_F0 STR_F "\0" |
| 1167 |
#define STRING_FAIL0 STR_F STR_A STR_I STR_L "\0" |
#define STRING_FAIL0 STR_F STR_A STR_I STR_L "\0" |
| 1168 |
|
#define STRING_MARK0 STR_M STR_A STR_R STR_K "\0" |
| 1169 |
#define STRING_PRUNE0 STR_P STR_R STR_U STR_N STR_E "\0" |
#define STRING_PRUNE0 STR_P STR_R STR_U STR_N STR_E "\0" |
| 1170 |
#define STRING_SKIP0 STR_S STR_K STR_I STR_P "\0" |
#define STRING_SKIP0 STR_S STR_K STR_I STR_P "\0" |
| 1171 |
#define STRING_THEN STR_T STR_H STR_E STR_N |
#define STRING_THEN STR_T STR_H STR_E STR_N |
| 1187 |
|
|
| 1188 |
#define STRING_DEFINE STR_D STR_E STR_F STR_I STR_N STR_E |
#define STRING_DEFINE STR_D STR_E STR_F STR_I STR_N STR_E |
| 1189 |
|
|
| 1190 |
#define STRING_CR_RIGHTPAR STR_C STR_R STR_RIGHT_PARENTHESIS |
#define STRING_CR_RIGHTPAR STR_C STR_R STR_RIGHT_PARENTHESIS |
| 1191 |
#define STRING_LF_RIGHTPAR STR_L STR_F STR_RIGHT_PARENTHESIS |
#define STRING_LF_RIGHTPAR STR_L STR_F STR_RIGHT_PARENTHESIS |
| 1192 |
#define STRING_CRLF_RIGHTPAR STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
#define STRING_CRLF_RIGHTPAR STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
| 1193 |
#define STRING_ANY_RIGHTPAR STR_A STR_N STR_Y STR_RIGHT_PARENTHESIS |
#define STRING_ANY_RIGHTPAR STR_A STR_N STR_Y STR_RIGHT_PARENTHESIS |
| 1194 |
#define STRING_ANYCRLF_RIGHTPAR STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
#define STRING_ANYCRLF_RIGHTPAR STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
| 1195 |
#define STRING_BSR_ANYCRLF_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
#define STRING_BSR_ANYCRLF_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
| 1196 |
#define STRING_BSR_UNICODE_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_U STR_N STR_I STR_C STR_O STR_D STR_E STR_RIGHT_PARENTHESIS |
#define STRING_BSR_UNICODE_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_U STR_N STR_I STR_C STR_O STR_D STR_E STR_RIGHT_PARENTHESIS |
| 1197 |
#define STRING_UTF8_RIGHTPAR STR_U STR_T STR_F STR_8 STR_RIGHT_PARENTHESIS |
#define STRING_UTF8_RIGHTPAR STR_U STR_T STR_F STR_8 STR_RIGHT_PARENTHESIS |
| 1198 |
|
#define STRING_UCP_RIGHTPAR STR_U STR_C STR_P STR_RIGHT_PARENTHESIS |
| 1199 |
|
#define STRING_NO_START_OPT_RIGHTPAR STR_N STR_O STR_UNDERSCORE STR_S STR_T STR_A STR_R STR_T STR_UNDERSCORE STR_O STR_P STR_T STR_RIGHT_PARENTHESIS |
| 1200 |
|
|
| 1201 |
#endif /* SUPPORT_UTF8 */ |
#endif /* SUPPORT_UTF8 */ |
| 1202 |
|
|
| 1229 |
|
|
| 1230 |
#define PT_ANY 0 /* Any property - matches all chars */ |
#define PT_ANY 0 /* Any property - matches all chars */ |
| 1231 |
#define PT_LAMP 1 /* L& - the union of Lu, Ll, Lt */ |
#define PT_LAMP 1 /* L& - the union of Lu, Ll, Lt */ |
| 1232 |
#define PT_GC 2 /* General characteristic (e.g. L) */ |
#define PT_GC 2 /* Specified general characteristic (e.g. L) */ |
| 1233 |
#define PT_PC 3 /* Particular characteristic (e.g. Lu) */ |
#define PT_PC 3 /* Specified particular characteristic (e.g. Lu) */ |
| 1234 |
#define PT_SC 4 /* Script (e.g. Han) */ |
#define PT_SC 4 /* Script (e.g. Han) */ |
| 1235 |
|
#define PT_ALNUM 5 /* Alphanumeric - the union of L and N */ |
| 1236 |
|
#define PT_SPACE 6 /* Perl space - Z plus 9,10,12,13 */ |
| 1237 |
|
#define PT_PXSPACE 7 /* POSIX space - Z plus 9,10,11,12,13 */ |
| 1238 |
|
#define PT_WORD 8 /* Word - L plus N plus underscore */ |
| 1239 |
|
|
| 1240 |
/* Flag bits and data types for the extended class (OP_XCLASS) for classes that |
/* Flag bits and data types for the extended class (OP_XCLASS) for classes that |
| 1241 |
contain UTF-8 characters with values greater than 255. */ |
contain UTF-8 characters with values greater than 255. */ |
| 1252 |
/* These are escaped items that aren't just an encoding of a particular data |
/* These are escaped items that aren't just an encoding of a particular data |
| 1253 |
value such as \n. They must have non-zero values, as check_escape() returns |
value such as \n. They must have non-zero values, as check_escape() returns |
| 1254 |
their negation. Also, they must appear in the same order as in the opcode |
their negation. Also, they must appear in the same order as in the opcode |
| 1255 |
definitions below, up to ESC_z. There's a dummy for OP_ANY because it |
definitions below, up to ESC_z. There's a dummy for OP_ALLANY because it |
| 1256 |
corresponds to "." rather than an escape sequence, and another for OP_ALLANY |
corresponds to "." in DOTALL mode rather than an escape sequence. It is also |
| 1257 |
(which is used for [^] in JavaScript compatibility mode). |
used for [^] in JavaScript compatibility mode. In non-DOTALL mode, "." behaves |
| 1258 |
|
like \N. |
| 1259 |
|
|
| 1260 |
|
The special values ESC_DU, ESC_du, etc. are used instead of ESC_D, ESC_d, etc. |
| 1261 |
|
when PCRE_UCP is set, when replacement of \d etc by \p sequences is required. |
| 1262 |
|
They must be contiguous, and remain in order so that the replacements can be |
| 1263 |
|
looked up from a table. |
| 1264 |
|
|
| 1265 |
The final escape must be ESC_REF as subsequent values are used for |
The final escape must be ESC_REF as subsequent values are used for |
| 1266 |
backreferences (\1, \2, \3, etc). There are two tests in the code for an escape |
backreferences (\1, \2, \3, etc). There are two tests in the code for an escape |
| 1270 |
*/ |
*/ |
| 1271 |
|
|
| 1272 |
enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, |
enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, |
| 1273 |
ESC_W, ESC_w, ESC_dum1, ESC_dum2, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H, |
ESC_W, ESC_w, ESC_N, ESC_dum, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H, |
| 1274 |
ESC_h, ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, ESC_E, ESC_Q, ESC_g, ESC_k, |
ESC_h, ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, |
| 1275 |
|
ESC_E, ESC_Q, ESC_g, ESC_k, |
| 1276 |
|
ESC_DU, ESC_du, ESC_SU, ESC_su, ESC_WU, ESC_wu, |
| 1277 |
ESC_REF }; |
ESC_REF }; |
| 1278 |
|
|
|
|
|
| 1279 |
/* Opcode table: Starting from 1 (i.e. after OP_END), the values up to |
/* Opcode table: Starting from 1 (i.e. after OP_END), the values up to |
| 1280 |
OP_EOD must correspond in order to the list of escapes immediately above. |
OP_EOD must correspond in order to the list of escapes immediately above. |
| 1281 |
|
|
| 1282 |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
| 1283 |
that follow must also be updated to match. There is also a table called |
that follow must also be updated to match. There are also tables called |
| 1284 |
"coptable" in pcre_dfa_exec.c that must be updated. */ |
"coptable" and "poptable" in pcre_dfa_exec.c that must be updated. */ |
| 1285 |
|
|
| 1286 |
enum { |
enum { |
| 1287 |
OP_END, /* 0 End of pattern */ |
OP_END, /* 0 End of pattern */ |
| 1299 |
OP_WHITESPACE, /* 9 \s */ |
OP_WHITESPACE, /* 9 \s */ |
| 1300 |
OP_NOT_WORDCHAR, /* 10 \W */ |
OP_NOT_WORDCHAR, /* 10 \W */ |
| 1301 |
OP_WORDCHAR, /* 11 \w */ |
OP_WORDCHAR, /* 11 \w */ |
| 1302 |
OP_ANY, /* 12 Match any character (subject to DOTALL) */ |
OP_ANY, /* 12 Match any character except newline */ |
| 1303 |
OP_ALLANY, /* 13 Match any character (not subject to DOTALL) */ |
OP_ALLANY, /* 13 Match any character */ |
| 1304 |
OP_ANYBYTE, /* 14 Match any byte (\C); different to OP_ANY for UTF-8 */ |
OP_ANYBYTE, /* 14 Match any byte (\C); different to OP_ANY for UTF-8 */ |
| 1305 |
OP_NOTPROP, /* 15 \P (not Unicode property) */ |
OP_NOTPROP, /* 15 \P (not Unicode property) */ |
| 1306 |
OP_PROP, /* 16 \p (Unicode property) */ |
OP_PROP, /* 16 \p (Unicode property) */ |
| 1417 |
OP_SCBRA, /* 98 Start of capturing bracket, check empty */ |
OP_SCBRA, /* 98 Start of capturing bracket, check empty */ |
| 1418 |
OP_SCOND, /* 99 Conditional group, check empty */ |
OP_SCOND, /* 99 Conditional group, check empty */ |
| 1419 |
|
|
| 1420 |
|
/* The next two pairs must (respectively) be kept together. */ |
| 1421 |
|
|
| 1422 |
OP_CREF, /* 100 Used to hold a capture number as condition */ |
OP_CREF, /* 100 Used to hold a capture number as condition */ |
| 1423 |
OP_RREF, /* 101 Used to hold a recursion number as condition */ |
OP_NCREF, /* 101 Same, but generaged by a name reference*/ |
| 1424 |
OP_DEF, /* 102 The DEFINE condition */ |
OP_RREF, /* 102 Used to hold a recursion number as condition */ |
| 1425 |
|
OP_NRREF, /* 103 Same, but generaged by a name reference*/ |
| 1426 |
|
OP_DEF, /* 104 The DEFINE condition */ |
| 1427 |
|
|
| 1428 |
OP_BRAZERO, /* 103 These two must remain together and in this */ |
OP_BRAZERO, /* 105 These two must remain together and in this */ |
| 1429 |
OP_BRAMINZERO, /* 104 order. */ |
OP_BRAMINZERO, /* 106 order. */ |
| 1430 |
|
|
| 1431 |
/* These are backtracking control verbs */ |
/* These are backtracking control verbs */ |
| 1432 |
|
|
| 1433 |
OP_PRUNE, /* 105 */ |
OP_MARK, /* 107 always has an argument */ |
| 1434 |
OP_SKIP, /* 106 */ |
OP_PRUNE, /* 108 */ |
| 1435 |
OP_THEN, /* 107 */ |
OP_PRUNE_ARG, /* 109 same, but with argument */ |
| 1436 |
OP_COMMIT, /* 108 */ |
OP_SKIP, /* 110 */ |
| 1437 |
|
OP_SKIP_ARG, /* 111 same, but with argument */ |
| 1438 |
|
OP_THEN, /* 112 */ |
| 1439 |
|
OP_THEN_ARG, /* 113 same, but with argument */ |
| 1440 |
|
OP_COMMIT, /* 114 */ |
| 1441 |
|
|
| 1442 |
/* These are forced failure and success verbs */ |
/* These are forced failure and success verbs */ |
| 1443 |
|
|
| 1444 |
OP_FAIL, /* 109 */ |
OP_FAIL, /* 115 */ |
| 1445 |
OP_ACCEPT, /* 110 */ |
OP_ACCEPT, /* 116 */ |
| 1446 |
OP_CLOSE, /* 111 Used before OP_ACCEPT to close open captures */ |
OP_CLOSE, /* 117 Used before OP_ACCEPT to close open captures */ |
| 1447 |
|
|
| 1448 |
/* This is used to skip a subpattern with a {0} quantifier */ |
/* This is used to skip a subpattern with a {0} quantifier */ |
| 1449 |
|
|
| 1450 |
OP_SKIPZERO /* 112 */ |
OP_SKIPZERO, /* 118 */ |
| 1451 |
|
|
| 1452 |
|
/* This is not an opcode, but is used to check that tables indexed by opcode |
| 1453 |
|
are the correct length, in order to catch updating errors - there have been |
| 1454 |
|
some in the past. */ |
| 1455 |
|
|
| 1456 |
|
OP_TABLE_LENGTH |
| 1457 |
}; |
}; |
| 1458 |
|
|
| 1459 |
|
/* *** NOTE NOTE NOTE *** Whenever the list above is updated, the two macro |
| 1460 |
|
definitions that follow must also be updated to match. There are also tables |
| 1461 |
|
called "coptable" and "poptable" in pcre_dfa_exec.c that must be updated. */ |
| 1462 |
|
|
| 1463 |
|
|
| 1464 |
/* This macro defines textual names for all the opcodes. These are used only |
/* This macro defines textual names for all the opcodes. These are used only |
| 1465 |
for debugging. The macro is referenced only in pcre_printint.c. */ |
for debugging. The macro is referenced only in pcre_printint.c. */ |
| 1481 |
"Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \ |
"Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \ |
| 1482 |
"AssertB", "AssertB not", "Reverse", \ |
"AssertB", "AssertB not", "Reverse", \ |
| 1483 |
"Once", "Bra", "CBra", "Cond", "SBra", "SCBra", "SCond", \ |
"Once", "Bra", "CBra", "Cond", "SBra", "SCBra", "SCond", \ |
| 1484 |
"Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero", \ |
"Cond ref", "Cond nref", "Cond rec", "Cond nrec", "Cond def", \ |
| 1485 |
"*PRUNE", "*SKIP", "*THEN", "*COMMIT", "*FAIL", "*ACCEPT", \ |
"Brazero", "Braminzero", \ |
| 1486 |
|
"*MARK", "*PRUNE", "*PRUNE", "*SKIP", "*SKIP", \ |
| 1487 |
|
"*THEN", "*THEN", "*COMMIT", "*FAIL", "*ACCEPT", \ |
| 1488 |
"Close", "Skip zero" |
"Close", "Skip zero" |
| 1489 |
|
|
| 1490 |
|
|
| 1502 |
1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \ |
1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \ |
| 1503 |
1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \ |
1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \ |
| 1504 |
1, 1, 1, /* Any, AllAny, Anybyte */ \ |
1, 1, 1, /* Any, AllAny, Anybyte */ \ |
| 1505 |
3, 3, 1, /* NOTPROP, PROP, EXTUNI */ \ |
3, 3, /* \P, \p */ \ |
| 1506 |
1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \ |
1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \ |
| 1507 |
|
1, /* \X */ \ |
| 1508 |
1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \ |
1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \ |
| 1509 |
2, /* Char - the minimum length */ \ |
2, /* Char - the minimum length */ \ |
| 1510 |
2, /* Charnc - the minimum length */ \ |
2, /* Charnc - the minimum length */ \ |
| 1546 |
1+LINK_SIZE, /* SBRA */ \ |
1+LINK_SIZE, /* SBRA */ \ |
| 1547 |
3+LINK_SIZE, /* SCBRA */ \ |
3+LINK_SIZE, /* SCBRA */ \ |
| 1548 |
1+LINK_SIZE, /* SCOND */ \ |
1+LINK_SIZE, /* SCOND */ \ |
| 1549 |
3, /* CREF */ \ |
3, 3, /* CREF, NCREF */ \ |
| 1550 |
3, /* RREF */ \ |
3, 3, /* RREF, NRREF */ \ |
| 1551 |
1, /* DEF */ \ |
1, /* DEF */ \ |
| 1552 |
1, 1, /* BRAZERO, BRAMINZERO */ \ |
1, 1, /* BRAZERO, BRAMINZERO */ \ |
| 1553 |
1, 1, 1, 1, /* PRUNE, SKIP, THEN, COMMIT, */ \ |
3, 1, 3, /* MARK, PRUNE, PRUNE_ARG */ \ |
| 1554 |
1, 1, 3, 1 /* FAIL, ACCEPT, CLOSE, SKIPZERO */ |
1, 3, /* SKIP, SKIP_ARG */ \ |
| 1555 |
|
1+LINK_SIZE, 3+LINK_SIZE, /* THEN, THEN_ARG */ \ |
| 1556 |
|
1, 1, 1, 3, 1 /* COMMIT, FAIL, ACCEPT, CLOSE, SKIPZERO */ |
| 1557 |
|
|
| 1558 |
|
|
| 1559 |
/* A magic value for OP_RREF to indicate the "any recursion" condition. */ |
/* A magic value for OP_RREF and OP_NRREF to indicate the "any recursion" |
| 1560 |
|
condition. */ |
| 1561 |
|
|
| 1562 |
#define RREF_ANY 0xffff |
#define RREF_ANY 0xffff |
| 1563 |
|
|
| 1564 |
/* Error code numbers. They are given names so that they can more easily be |
/* Compile time error code numbers. They are given names so that they can more |
| 1565 |
tracked. */ |
easily be tracked. When a new number is added, the table called eint in |
| 1566 |
|
pcreposix.c must be updated. */ |
| 1567 |
|
|
| 1568 |
enum { ERR0, ERR1, ERR2, ERR3, ERR4, ERR5, ERR6, ERR7, ERR8, ERR9, |
enum { ERR0, ERR1, ERR2, ERR3, ERR4, ERR5, ERR6, ERR7, ERR8, ERR9, |
| 1569 |
ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19, |
ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19, |
| 1571 |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
| 1572 |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
| 1573 |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59, |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59, |
| 1574 |
ERR60, ERR61, ERR62, ERR63, ERR64 }; |
ERR60, ERR61, ERR62, ERR63, ERR64, ERR65, ERR66, ERR67, ERR68, |
| 1575 |
|
ERRCOUNT }; |
| 1576 |
|
|
| 1577 |
/* The real format of the start of the pcre block; the index of names and the |
/* The real format of the start of the pcre block; the index of names and the |
| 1578 |
code vector run on as long as necessary after the end. We store an explicit |
code vector run on as long as necessary after the end. We store an explicit |
| 1588 |
structure should be made at the end, and something earlier (e.g. a new |
structure should be made at the end, and something earlier (e.g. a new |
| 1589 |
flag in the options or one of the dummy fields) should indicate that the new |
flag in the options or one of the dummy fields) should indicate that the new |
| 1590 |
fields are present. Currently PCRE always sets the dummy fields to zero. |
fields are present. Currently PCRE always sets the dummy fields to zero. |
| 1591 |
NOTE NOTE NOTE: |
NOTE NOTE NOTE |
| 1592 |
*/ |
*/ |
| 1593 |
|
|
| 1594 |
typedef struct real_pcre { |
typedef struct real_pcre { |
| 1615 |
|
|
| 1616 |
typedef struct pcre_study_data { |
typedef struct pcre_study_data { |
| 1617 |
pcre_uint32 size; /* Total that was malloced */ |
pcre_uint32 size; /* Total that was malloced */ |
| 1618 |
pcre_uint32 options; |
pcre_uint32 flags; /* Private flags */ |
| 1619 |
uschar start_bits[32]; |
uschar start_bits[32]; /* Starting char bits */ |
| 1620 |
|
pcre_uint32 minlength; /* Minimum subject length */ |
| 1621 |
} pcre_study_data; |
} pcre_study_data; |
| 1622 |
|
|
| 1623 |
/* Structure for building a chain of open capturing subpatterns during |
/* Structure for building a chain of open capturing subpatterns during |
| 1624 |
compiling, so that instructions to close them can be compiled when (*ACCEPT) is |
compiling, so that instructions to close them can be compiled when (*ACCEPT) is |
| 1625 |
encountered. */ |
encountered. This is also used to identify subpatterns that contain recursive |
| 1626 |
|
back references to themselves, so that they can be made atomic. */ |
| 1627 |
|
|
| 1628 |
typedef struct open_capitem { |
typedef struct open_capitem { |
| 1629 |
struct open_capitem *next; /* Chain link */ |
struct open_capitem *next; /* Chain link */ |
| 1630 |
pcre_uint16 number; /* Capture number */ |
pcre_uint16 number; /* Capture number */ |
| 1631 |
} open_capitem; |
pcre_uint16 flag; /* Set TRUE if recursive back ref */ |
| 1632 |
|
} open_capitem; |
| 1633 |
|
|
| 1634 |
/* Structure for passing "static" information around between the functions |
/* Structure for passing "static" information around between the functions |
| 1635 |
doing the compiling, so that they are thread-safe. */ |
doing the compiling, so that they are thread-safe. */ |
| 1643 |
const uschar *start_code; /* The start of the compiled code */ |
const uschar *start_code; /* The start of the compiled code */ |
| 1644 |
const uschar *start_pattern; /* The start of the pattern */ |
const uschar *start_pattern; /* The start of the pattern */ |
| 1645 |
const uschar *end_pattern; /* The end of the pattern */ |
const uschar *end_pattern; /* The end of the pattern */ |
| 1646 |
open_capitem *open_caps; /* Chain of open capture items */ |
open_capitem *open_caps; /* Chain of open capture items */ |
| 1647 |
uschar *hwm; /* High watermark of workspace */ |
uschar *hwm; /* High watermark of workspace */ |
| 1648 |
uschar *name_table; /* The name/number table */ |
uschar *name_table; /* The name/number table */ |
| 1649 |
int names_found; /* Number of entries so far */ |
int names_found; /* Number of entries so far */ |
| 1656 |
int external_flags; /* External flag bits to be set */ |
int external_flags; /* External flag bits to be set */ |
| 1657 |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
| 1658 |
BOOL had_accept; /* (*ACCEPT) encountered */ |
BOOL had_accept; /* (*ACCEPT) encountered */ |
| 1659 |
BOOL check_lookbehind; /* Lookbehinds need later checking */ |
BOOL check_lookbehind; /* Lookbehinds need later checking */ |
| 1660 |
int nltype; /* Newline type */ |
int nltype; /* Newline type */ |
| 1661 |
int nllen; /* Newline string length */ |
int nllen; /* Newline string length */ |
| 1662 |
uschar nl[4]; /* Newline string when fixed length */ |
uschar nl[4]; /* Newline string when fixed length */ |
| 1667 |
|
|
| 1668 |
typedef struct branch_chain { |
typedef struct branch_chain { |
| 1669 |
struct branch_chain *outer; |
struct branch_chain *outer; |
| 1670 |
uschar *current; |
uschar *current_branch; |
| 1671 |
} branch_chain; |
} branch_chain; |
| 1672 |
|
|
| 1673 |
/* Structure for items in a linked list that represents an explicit recursive |
/* Structure for items in a linked list that represents an explicit recursive |
| 1677 |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
| 1678 |
int group_num; /* Number of group that was called */ |
int group_num; /* Number of group that was called */ |
| 1679 |
const uschar *after_call; /* "Return value": points after the call in the expr */ |
const uschar *after_call; /* "Return value": points after the call in the expr */ |
|
USPTR save_start; /* Old value of mstart */ |
|
| 1680 |
int *offset_save; /* Pointer to start of saved offsets */ |
int *offset_save; /* Pointer to start of saved offsets */ |
| 1681 |
int saved_max; /* Number of saved offsets */ |
int saved_max; /* Number of saved offsets */ |
| 1682 |
int offset_top; /* Current value of offset_top */ |
int save_offset_top; /* Current value of offset_top */ |
| 1683 |
} recursion_info; |
} recursion_info; |
| 1684 |
|
|
| 1685 |
/* Structure for building a chain of data for holding the values of the subject |
/* Structure for building a chain of data for holding the values of the subject |
| 1704 |
int offset_max; /* The maximum usable for return data */ |
int offset_max; /* The maximum usable for return data */ |
| 1705 |
int nltype; /* Newline type */ |
int nltype; /* Newline type */ |
| 1706 |
int nllen; /* Newline string length */ |
int nllen; /* Newline string length */ |
| 1707 |
|
int name_count; /* Number of names in name table */ |
| 1708 |
|
int name_entry_size; /* Size of entry in names table */ |
| 1709 |
|
uschar *name_table; /* Table of names */ |
| 1710 |
uschar nl[4]; /* Newline string when fixed */ |
uschar nl[4]; /* Newline string when fixed */ |
| 1711 |
const uschar *lcc; /* Points to lower casing table */ |
const uschar *lcc; /* Points to lower casing table */ |
| 1712 |
const uschar *ctypes; /* Points to table of type maps */ |
const uschar *ctypes; /* Points to table of type maps */ |
| 1715 |
BOOL noteol; /* NOTEOL flag */ |
BOOL noteol; /* NOTEOL flag */ |
| 1716 |
BOOL utf8; /* UTF8 flag */ |
BOOL utf8; /* UTF8 flag */ |
| 1717 |
BOOL jscript_compat; /* JAVASCRIPT_COMPAT flag */ |
BOOL jscript_compat; /* JAVASCRIPT_COMPAT flag */ |
| 1718 |
|
BOOL use_ucp; /* PCRE_UCP flag */ |
| 1719 |
BOOL endonly; /* Dollar not before final \n */ |
BOOL endonly; /* Dollar not before final \n */ |
| 1720 |
BOOL notempty; /* Empty string match not wanted */ |
BOOL notempty; /* Empty string match not wanted */ |
| 1721 |
BOOL notempty_atstart; /* Empty string match at start not wanted */ |
BOOL notempty_atstart; /* Empty string match at start not wanted */ |
| 1735 |
int eptrn; /* Next free eptrblock */ |
int eptrn; /* Next free eptrblock */ |
| 1736 |
recursion_info *recursive; /* Linked list of recursion data */ |
recursion_info *recursive; /* Linked list of recursion data */ |
| 1737 |
void *callout_data; /* To pass back to callouts */ |
void *callout_data; /* To pass back to callouts */ |
| 1738 |
|
const uschar *mark; /* Mark pointer to pass back */ |
| 1739 |
} match_data; |
} match_data; |
| 1740 |
|
|
| 1741 |
/* A similar structure is used for the same purpose by the DFA matching |
/* A similar structure is used for the same purpose by the DFA matching |
| 1826 |
one of the exported public functions. They have to be "external" in the C |
one of the exported public functions. They have to be "external" in the C |
| 1827 |
sense, but are not part of the PCRE public API. */ |
sense, but are not part of the PCRE public API. */ |
| 1828 |
|
|
| 1829 |
extern BOOL _pcre_is_newline(const uschar *, int, const uschar *, |
extern const uschar *_pcre_find_bracket(const uschar *, BOOL, int); |
| 1830 |
int *, BOOL); |
extern BOOL _pcre_is_newline(USPTR, int, USPTR, int *, BOOL); |
| 1831 |
extern int _pcre_ord2utf8(int, uschar *); |
extern int _pcre_ord2utf8(int, uschar *); |
| 1832 |
extern real_pcre *_pcre_try_flipped(const real_pcre *, real_pcre *, |
extern real_pcre *_pcre_try_flipped(const real_pcre *, real_pcre *, |
| 1833 |
const pcre_study_data *, pcre_study_data *); |
const pcre_study_data *, pcre_study_data *); |
| 1834 |
extern int _pcre_valid_utf8(const uschar *, int); |
extern int _pcre_valid_utf8(USPTR, int); |
| 1835 |
extern BOOL _pcre_was_newline(const uschar *, int, const uschar *, |
extern BOOL _pcre_was_newline(USPTR, int, USPTR, int *, BOOL); |
| 1836 |
int *, BOOL); |
extern BOOL _pcre_xclass(int, const uschar *); |
|
extern BOOL _pcre_xclass(int, const uschar *); |
|
| 1837 |
|
|
| 1838 |
|
|
| 1839 |
/* Unicode character database (UCD) */ |
/* Unicode character database (UCD) */ |