2014-05-13 13:20:03 +02:00
|
|
|
/*************************************************
|
|
|
|
* Perl-Compatible Regular Expressions *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* PCRE is a library of functions to support regular expressions whose syntax
|
|
|
|
and semantics are as close as possible to those of the Perl 5 language.
|
|
|
|
|
|
|
|
Written by Philip Hazel
|
|
|
|
Original API code Copyright (c) 1997-2012 University of Cambridge
|
|
|
|
New API code Copyright (c) 2014 University of Cambridge
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the University of Cambridge nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
/* This module contains mode-dependent macro and structure definitions. The
|
2014-05-13 13:20:03 +02:00
|
|
|
file is #included by pcre2_internal.h if PCRE2_CODE_UNIT_WIDTH is defined.
|
|
|
|
These mode-dependent items are kept in a separate file so that they can also be
|
2014-10-20 19:28:49 +02:00
|
|
|
#included multiple times for different code unit widths by pcre2test in order
|
|
|
|
to have access to the hidden structures at all supported widths.
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
Some of the mode-dependent macros are required at different widths for
|
|
|
|
different parts of the pcre2test code (in particular, the included
|
|
|
|
pcre_printint.c file). We undefine them here so that they can be re-defined for
|
2014-10-20 19:28:49 +02:00
|
|
|
multiple inclusions. Not all of these are used in pcre2test, but it's easier
|
2014-06-14 20:29:51 +02:00
|
|
|
just to undefine them all. */
|
|
|
|
|
|
|
|
#undef ACROSSCHAR
|
|
|
|
#undef BACKCHAR
|
2014-06-23 18:41:29 +02:00
|
|
|
#undef BYTES2CU
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef CU2BYTES
|
2014-06-14 20:29:51 +02:00
|
|
|
#undef FORWARDCHAR
|
2014-10-15 17:57:49 +02:00
|
|
|
#undef FORWARDCHARTEST
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef GET
|
|
|
|
#undef GET2
|
2014-06-14 20:29:51 +02:00
|
|
|
#undef GETCHAR
|
|
|
|
#undef GETCHARINC
|
|
|
|
#undef GETCHARINCTEST
|
|
|
|
#undef GETCHARLEN
|
|
|
|
#undef GETCHARLENTEST
|
|
|
|
#undef GETCHARTEST
|
|
|
|
#undef GET_EXTRALEN
|
|
|
|
#undef HAS_EXTRALEN
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef IMM2_SIZE
|
2014-06-14 20:29:51 +02:00
|
|
|
#undef MAX_255
|
|
|
|
#undef MAX_MARK
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef MAX_PATTERN_SIZE
|
2014-06-14 20:29:51 +02:00
|
|
|
#undef MAX_UTF_SINGLE_CU
|
|
|
|
#undef NOT_FIRSTCHAR
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef PUT
|
|
|
|
#undef PUT2
|
2014-06-14 20:29:51 +02:00
|
|
|
#undef PUT2INC
|
|
|
|
#undef PUTCHAR
|
2014-05-13 13:20:03 +02:00
|
|
|
#undef PUTINC
|
2014-06-28 16:23:18 +02:00
|
|
|
#undef TABLE_GET
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* -------------------------- MACROS ----------------------------- */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
/* PCRE keeps offsets in its compiled code as at least 16-bit quantities
|
|
|
|
(always stored in big-endian order in 8-bit mode) by default. These are used,
|
|
|
|
for example, to link from the start of a subpattern to its alternatives and its
|
|
|
|
end. The use of 16 bits per offset limits the size of an 8-bit compiled regex
|
|
|
|
to around 64K, which is big enough for almost everybody. However, I received a
|
|
|
|
request for an even bigger limit. For this reason, and also to make the code
|
|
|
|
easier to maintain, the storing and loading of offsets from the compiled code
|
|
|
|
unit string is now handled by the macros that are defined here.
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
The macros are controlled by the value of LINK_SIZE. This defaults to 2, but
|
2014-05-13 13:20:03 +02:00
|
|
|
values of 2 or 4 are also supported. */
|
|
|
|
|
|
|
|
/* ------------------- 8-bit support ------------------ */
|
|
|
|
|
|
|
|
#if PCRE2_CODE_UNIT_WIDTH == 8
|
|
|
|
|
|
|
|
#if LINK_SIZE == 2
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d) >> 8), \
|
|
|
|
(a[(n)+1] = (d) & 255)
|
|
|
|
#define GET(a,n) \
|
|
|
|
(((a)[n] << 8) | (a)[(n)+1])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 16)
|
|
|
|
|
|
|
|
#elif LINK_SIZE == 3
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d) >> 16), \
|
|
|
|
(a[(n)+1] = (d) >> 8), \
|
|
|
|
(a[(n)+2] = (d) & 255)
|
|
|
|
#define GET(a,n) \
|
|
|
|
(((a)[n] << 16) | ((a)[(n)+1] << 8) | (a)[(n)+2])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 24)
|
|
|
|
|
|
|
|
#elif LINK_SIZE == 4
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d) >> 24), \
|
|
|
|
(a[(n)+1] = (d) >> 16), \
|
|
|
|
(a[(n)+2] = (d) >> 8), \
|
|
|
|
(a[(n)+3] = (d) & 255)
|
|
|
|
#define GET(a,n) \
|
|
|
|
(((a)[n] << 24) | ((a)[(n)+1] << 16) | ((a)[(n)+2] << 8) | (a)[(n)+3])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 30) /* Keep it positive */
|
|
|
|
|
|
|
|
#else
|
2014-08-10 18:09:24 +02:00
|
|
|
#error LINK_SIZE must be 2, 3, or 4
|
2014-05-13 13:20:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- 16-bit support ------------------ */
|
|
|
|
|
|
|
|
#elif PCRE2_CODE_UNIT_WIDTH == 16
|
|
|
|
|
|
|
|
#if LINK_SIZE == 2
|
|
|
|
#undef LINK_SIZE
|
|
|
|
#define LINK_SIZE 1
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d))
|
|
|
|
#define GET(a,n) \
|
|
|
|
(a[n])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 16)
|
|
|
|
|
|
|
|
#elif LINK_SIZE == 3 || LINK_SIZE == 4
|
|
|
|
#undef LINK_SIZE
|
|
|
|
#define LINK_SIZE 2
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d) >> 16), \
|
|
|
|
(a[(n)+1] = (d) & 65535)
|
|
|
|
#define GET(a,n) \
|
|
|
|
(((a)[n] << 16) | (a)[(n)+1])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 30) /* Keep it positive */
|
|
|
|
|
|
|
|
#else
|
2014-08-10 18:09:24 +02:00
|
|
|
#error LINK_SIZE must be 2, 3, or 4
|
2014-05-13 13:20:03 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- 32-bit support ------------------ */
|
|
|
|
|
|
|
|
#elif PCRE2_CODE_UNIT_WIDTH == 32
|
|
|
|
#undef LINK_SIZE
|
|
|
|
#define LINK_SIZE 1
|
|
|
|
#define PUT(a,n,d) \
|
|
|
|
(a[n] = (d))
|
|
|
|
#define GET(a,n) \
|
|
|
|
(a[n])
|
|
|
|
#define MAX_PATTERN_SIZE (1 << 30) /* Keep it positive */
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error Unsupported compiling mode
|
2014-10-20 19:28:49 +02:00
|
|
|
#endif
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
/* --------------- Other mode-specific macros ----------------- */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
/* PCRE uses some other (at least) 16-bit quantities that do not change when
|
|
|
|
the size of offsets changes. There are used for repeat counts and for other
|
2014-10-20 19:28:49 +02:00
|
|
|
things such as capturing parenthesis numbers in back references.
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
Define the number of code units required to hold a 16-bit count/offset, and
|
|
|
|
macros to load and store such a value. For reasons that I do not understand,
|
|
|
|
the expression in the 8-bit GET2 macro is treated by gcc as a signed
|
|
|
|
expression, even when a is declared as unsigned. It seems that any kind of
|
|
|
|
arithmetic results in a signed value. Hence the cast. */
|
|
|
|
|
|
|
|
#if PCRE2_CODE_UNIT_WIDTH == 8
|
|
|
|
#define IMM2_SIZE 2
|
|
|
|
#define GET2(a,n) (unsigned int)(((a)[n] << 8) | (a)[(n)+1])
|
2014-06-14 20:29:51 +02:00
|
|
|
#define PUT2(a,n,d) a[n] = (d) >> 8, a[(n)+1] = (d) & 255
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
#else /* Code units are 16 or 32 bits */
|
|
|
|
#define IMM2_SIZE 1
|
|
|
|
#define GET2(a,n) a[n]
|
2014-10-20 19:28:49 +02:00
|
|
|
#define PUT2(a,n,d) a[n] = d
|
2014-05-13 13:20:03 +02:00
|
|
|
#endif
|
|
|
|
|
2014-06-28 16:23:18 +02:00
|
|
|
/* Other macros that are different for 8-bit mode. The MAX_255 macro checks
|
|
|
|
whether its argument is less than 256. The maximum length of a MARK name must
|
|
|
|
fit in one code unit; currently it is set to 255 or 65535. The TABLE_GET macro
|
|
|
|
is used to access elements of tables containing exactly 256 items. When code
|
|
|
|
points can be greater than 255, a check is needed before accessing these
|
|
|
|
tables. */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
#if PCRE2_CODE_UNIT_WIDTH == 8
|
|
|
|
#define MAX_255(c) TRUE
|
|
|
|
#define MAX_MARK ((1u << 8) - 1)
|
2014-09-19 09:43:39 +02:00
|
|
|
#ifdef SUPPORT_UNICODE
|
2014-06-14 20:29:51 +02:00
|
|
|
#define SUPPORT_WIDE_CHARS
|
2014-09-19 09:43:39 +02:00
|
|
|
#endif /* SUPPORT_UNICODE */
|
2014-06-28 16:23:18 +02:00
|
|
|
#define TABLE_GET(c, table, default) ((table)[c])
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
#else /* Code units are 16 or 32 bits */
|
|
|
|
#define MAX_255(c) ((c) <= 255u)
|
|
|
|
#define MAX_MARK ((1u << 16) - 1)
|
|
|
|
#define SUPPORT_WIDE_CHARS
|
2014-06-28 16:23:18 +02:00
|
|
|
#define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
|
2014-06-14 20:29:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ----------------- Character-handling macros ----------------- */
|
|
|
|
|
|
|
|
/* There is a proposed future special "UTF-21" mode, in which only the lowest
|
|
|
|
21 bits of a 32-bit character are interpreted as UTF, with the remaining 11
|
|
|
|
high-order bits available to the application for other uses. In preparation for
|
|
|
|
the future implementation of this mode, there are macros that load a data item
|
|
|
|
and, if in this special mode, mask it to 21 bits. These macros all have names
|
|
|
|
starting with UCHAR21. In all other modes, including the normal 32-bit
|
|
|
|
library, the macros all have the same simple definitions. When the new mode is
|
|
|
|
implemented, it is expected that these definitions will be varied appropriately
|
|
|
|
using #ifdef when compiling the library that supports the special mode. */
|
|
|
|
|
|
|
|
#define UCHAR21(eptr) (*(eptr))
|
|
|
|
#define UCHAR21TEST(eptr) (*(eptr))
|
|
|
|
#define UCHAR21INC(eptr) (*(eptr)++)
|
|
|
|
#define UCHAR21INCTEST(eptr) (*(eptr)++)
|
|
|
|
|
|
|
|
/* When UTF encoding is being used, a character is no longer just a single
|
|
|
|
byte in 8-bit mode or a single short in 16-bit mode. The macros for character
|
|
|
|
handling generate simple sequences when used in the basic mode, and more
|
|
|
|
complicated ones for UTF characters. GETCHARLENTEST and other macros are not
|
|
|
|
used when UTF is not supported. To make sure they can never even appear when
|
|
|
|
UTF support is omitted, we don't even define them. */
|
|
|
|
|
2014-09-19 09:43:39 +02:00
|
|
|
#ifndef SUPPORT_UNICODE
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* #define MAX_UTF_SINGLE_CU */
|
|
|
|
/* #define HAS_EXTRALEN(c) */
|
|
|
|
/* #define GET_EXTRALEN(c) */
|
|
|
|
/* #define NOT_FIRSTCHAR(c) */
|
|
|
|
#define GETCHAR(c, eptr) c = *eptr;
|
|
|
|
#define GETCHARTEST(c, eptr) c = *eptr;
|
|
|
|
#define GETCHARINC(c, eptr) c = *eptr++;
|
|
|
|
#define GETCHARINCTEST(c, eptr) c = *eptr++;
|
|
|
|
#define GETCHARLEN(c, eptr, len) c = *eptr;
|
|
|
|
#define PUTCHAR(c, p) (*p = c, 1)
|
|
|
|
/* #define GETCHARLENTEST(c, eptr, len) */
|
|
|
|
/* #define BACKCHAR(eptr) */
|
|
|
|
/* #define FORWARDCHAR(eptr) */
|
2014-10-15 17:57:49 +02:00
|
|
|
/* #define FORWARCCHARTEST(eptr,end) */
|
2014-06-14 20:29:51 +02:00
|
|
|
/* #define ACROSSCHAR(condition, eptr, action) */
|
|
|
|
|
2014-09-19 09:43:39 +02:00
|
|
|
#else /* SUPPORT_UNICODE */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* ------------------- 8-bit support ------------------ */
|
|
|
|
|
|
|
|
#if PCRE2_CODE_UNIT_WIDTH == 8
|
2014-08-10 18:09:24 +02:00
|
|
|
#define MAYBE_UTF_MULTI /* UTF chars may use multiple code units */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* The largest UTF code point that can be encoded as a single code unit. */
|
|
|
|
|
|
|
|
#define MAX_UTF_SINGLE_CU 127
|
|
|
|
|
|
|
|
/* Tests whether the code point needs extra characters to decode. */
|
|
|
|
|
|
|
|
#define HAS_EXTRALEN(c) HASUTF8EXTRALEN(c)
|
|
|
|
|
|
|
|
/* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE.
|
|
|
|
Otherwise it has an undefined behaviour. */
|
|
|
|
|
|
|
|
#define GET_EXTRALEN(c) (PRIV(utf8_table4)[(c) & 0x3f])
|
|
|
|
|
|
|
|
/* Returns TRUE, if the given character is not the first character
|
|
|
|
of a UTF sequence. */
|
|
|
|
|
|
|
|
#define NOT_FIRSTCHAR(c) (((c) & 0xc0) == 0x80)
|
|
|
|
|
|
|
|
/* Get the next UTF-8 character, not advancing the pointer. This is called when
|
|
|
|
we know we are in UTF-8 mode. */
|
|
|
|
|
|
|
|
#define GETCHAR(c, eptr) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (c >= 0xc0) GETUTF8(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the
|
|
|
|
pointer. */
|
|
|
|
|
|
|
|
#define GETCHARTEST(c, eptr) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (utf && c >= 0xc0) GETUTF8(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-8 character, advancing the pointer. This is called when we
|
|
|
|
know we are in UTF-8 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINC(c, eptr) \
|
|
|
|
c = *eptr++; \
|
|
|
|
if (c >= 0xc0) GETUTF8INC(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next character, testing for UTF-8 mode, and advancing the pointer.
|
|
|
|
This is called when we don't know if we are in UTF-8 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINCTEST(c, eptr) \
|
|
|
|
c = *eptr++; \
|
|
|
|
if (utf && c >= 0xc0) GETUTF8INC(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-8 character, not advancing the pointer, incrementing length
|
|
|
|
if there are extra bytes. This is called when we know we are in UTF-8 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLEN(c, eptr, len) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (c >= 0xc0) GETUTF8LEN(c, eptr, len);
|
|
|
|
|
|
|
|
/* Get the next UTF-8 character, testing for UTF-8 mode, not advancing the
|
|
|
|
pointer, incrementing length if there are extra bytes. This is called when we
|
|
|
|
do not know if we are in UTF-8 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLENTEST(c, eptr, len) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (utf && c >= 0xc0) GETUTF8LEN(c, eptr, len);
|
|
|
|
|
|
|
|
/* If the pointer is not at the start of a character, move it back until
|
|
|
|
it is. This is called only in UTF-8 mode - we don't put a test within the macro
|
|
|
|
because almost all calls are already within a block of UTF-8 only code. */
|
|
|
|
|
|
|
|
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr--
|
|
|
|
|
|
|
|
/* Same as above, just in the other direction. */
|
|
|
|
#define FORWARDCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr++
|
2014-10-15 17:57:49 +02:00
|
|
|
#define FORWARDCHARTEST(eptr,end) while(eptr < end && (*eptr & 0xc0) == 0x80) eptr++
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* Same as above, but it allows a fully customizable form. */
|
|
|
|
#define ACROSSCHAR(condition, eptr, action) \
|
|
|
|
while((condition) && ((eptr) & 0xc0) == 0x80) action
|
2014-10-20 19:28:49 +02:00
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
/* Deposit a character into memory, returning the number of code units. */
|
|
|
|
|
|
|
|
#define PUTCHAR(c, p) ((utf && c > MAX_UTF_SINGLE_CU)? \
|
|
|
|
PRIV(ord2utf)(c,p) : (*p = c, 1))
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- 16-bit support ------------------ */
|
|
|
|
|
|
|
|
#elif PCRE2_CODE_UNIT_WIDTH == 16
|
2014-08-10 18:09:24 +02:00
|
|
|
#define MAYBE_UTF_MULTI /* UTF chars may use multiple code units */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* The largest UTF code point that can be encoded as a single code unit. */
|
|
|
|
|
|
|
|
#define MAX_UTF_SINGLE_CU 65535
|
|
|
|
|
|
|
|
/* Tests whether the code point needs extra characters to decode. */
|
|
|
|
|
|
|
|
#define HAS_EXTRALEN(c) (((c) & 0xfc00) == 0xd800)
|
|
|
|
|
|
|
|
/* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE.
|
|
|
|
Otherwise it has an undefined behaviour. */
|
|
|
|
|
|
|
|
#define GET_EXTRALEN(c) 1
|
|
|
|
|
|
|
|
/* Returns TRUE, if the given character is not the first character
|
|
|
|
of a UTF sequence. */
|
|
|
|
|
|
|
|
#define NOT_FIRSTCHAR(c) (((c) & 0xfc00) == 0xdc00)
|
|
|
|
|
|
|
|
/* Base macro to pick up the low surrogate of a UTF-16 character, not
|
|
|
|
advancing the pointer. */
|
|
|
|
|
|
|
|
#define GETUTF16(c, eptr) \
|
|
|
|
{ c = (((c & 0x3ff) << 10) | (eptr[1] & 0x3ff)) + 0x10000; }
|
|
|
|
|
|
|
|
/* Get the next UTF-16 character, not advancing the pointer. This is called when
|
|
|
|
we know we are in UTF-16 mode. */
|
|
|
|
|
|
|
|
#define GETCHAR(c, eptr) \
|
|
|
|
c = *eptr; \
|
|
|
|
if ((c & 0xfc00) == 0xd800) GETUTF16(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-16 character, testing for UTF-16 mode, and not advancing the
|
|
|
|
pointer. */
|
|
|
|
|
|
|
|
#define GETCHARTEST(c, eptr) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16(c, eptr);
|
|
|
|
|
|
|
|
/* Base macro to pick up the low surrogate of a UTF-16 character, advancing
|
|
|
|
the pointer. */
|
|
|
|
|
|
|
|
#define GETUTF16INC(c, eptr) \
|
|
|
|
{ c = (((c & 0x3ff) << 10) | (*eptr++ & 0x3ff)) + 0x10000; }
|
|
|
|
|
|
|
|
/* Get the next UTF-16 character, advancing the pointer. This is called when we
|
|
|
|
know we are in UTF-16 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINC(c, eptr) \
|
|
|
|
c = *eptr++; \
|
|
|
|
if ((c & 0xfc00) == 0xd800) GETUTF16INC(c, eptr);
|
|
|
|
|
|
|
|
/* Get the next character, testing for UTF-16 mode, and advancing the pointer.
|
|
|
|
This is called when we don't know if we are in UTF-16 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINCTEST(c, eptr) \
|
|
|
|
c = *eptr++; \
|
|
|
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16INC(c, eptr);
|
|
|
|
|
|
|
|
/* Base macro to pick up the low surrogate of a UTF-16 character, not
|
|
|
|
advancing the pointer, incrementing the length. */
|
|
|
|
|
|
|
|
#define GETUTF16LEN(c, eptr, len) \
|
|
|
|
{ c = (((c & 0x3ff) << 10) | (eptr[1] & 0x3ff)) + 0x10000; len++; }
|
|
|
|
|
|
|
|
/* Get the next UTF-16 character, not advancing the pointer, incrementing
|
|
|
|
length if there is a low surrogate. This is called when we know we are in
|
|
|
|
UTF-16 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLEN(c, eptr, len) \
|
|
|
|
c = *eptr; \
|
|
|
|
if ((c & 0xfc00) == 0xd800) GETUTF16LEN(c, eptr, len);
|
|
|
|
|
|
|
|
/* Get the next UTF-816character, testing for UTF-16 mode, not advancing the
|
|
|
|
pointer, incrementing length if there is a low surrogate. This is called when
|
|
|
|
we do not know if we are in UTF-16 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLENTEST(c, eptr, len) \
|
|
|
|
c = *eptr; \
|
|
|
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16LEN(c, eptr, len);
|
|
|
|
|
|
|
|
/* If the pointer is not at the start of a character, move it back until
|
|
|
|
it is. This is called only in UTF-16 mode - we don't put a test within the
|
|
|
|
macro because almost all calls are already within a block of UTF-16 only
|
|
|
|
code. */
|
|
|
|
|
|
|
|
#define BACKCHAR(eptr) if ((*eptr & 0xfc00) == 0xdc00) eptr--
|
|
|
|
|
|
|
|
/* Same as above, just in the other direction. */
|
|
|
|
#define FORWARDCHAR(eptr) if ((*eptr & 0xfc00) == 0xdc00) eptr++
|
2014-10-15 17:57:49 +02:00
|
|
|
#define FORWARDCHARTEST(eptr,end) if (eptr < end && (*eptr & 0xfc00) == 0xdc00) eptr++
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* Same as above, but it allows a fully customizable form. */
|
|
|
|
#define ACROSSCHAR(condition, eptr, action) \
|
|
|
|
if ((condition) && ((eptr) & 0xfc00) == 0xdc00) action
|
|
|
|
|
|
|
|
/* Deposit a character into memory, returning the number of code units. */
|
|
|
|
|
|
|
|
#define PUTCHAR(c, p) ((utf && c > MAX_UTF_SINGLE_CU)? \
|
|
|
|
PRIV(ord2utf)(c,p) : (*p = c, 1))
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- 32-bit support ------------------ */
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* These are trivial for the 32-bit library, since all UTF-32 characters fit
|
2014-08-10 18:09:24 +02:00
|
|
|
into one PCRE2_UCHAR unit. */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
#define MAX_UTF_SINGLE_CU (0x10ffffu)
|
|
|
|
#define HAS_EXTRALEN(c) (0)
|
|
|
|
#define GET_EXTRALEN(c) (0)
|
|
|
|
#define NOT_FIRSTCHAR(c) (0)
|
|
|
|
|
|
|
|
/* Get the next UTF-32 character, not advancing the pointer. This is called when
|
|
|
|
we know we are in UTF-32 mode. */
|
|
|
|
|
|
|
|
#define GETCHAR(c, eptr) \
|
|
|
|
c = *(eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-32 character, testing for UTF-32 mode, and not advancing the
|
|
|
|
pointer. */
|
|
|
|
|
|
|
|
#define GETCHARTEST(c, eptr) \
|
|
|
|
c = *(eptr);
|
|
|
|
|
|
|
|
/* Get the next UTF-32 character, advancing the pointer. This is called when we
|
|
|
|
know we are in UTF-32 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINC(c, eptr) \
|
|
|
|
c = *((eptr)++);
|
|
|
|
|
|
|
|
/* Get the next character, testing for UTF-32 mode, and advancing the pointer.
|
|
|
|
This is called when we don't know if we are in UTF-32 mode. */
|
|
|
|
|
|
|
|
#define GETCHARINCTEST(c, eptr) \
|
|
|
|
c = *((eptr)++);
|
|
|
|
|
|
|
|
/* Get the next UTF-32 character, not advancing the pointer, not incrementing
|
|
|
|
length (since all UTF-32 is of length 1). This is called when we know we are in
|
|
|
|
UTF-32 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLEN(c, eptr, len) \
|
|
|
|
GETCHAR(c, eptr)
|
|
|
|
|
|
|
|
/* Get the next UTF-32character, testing for UTF-32 mode, not advancing the
|
|
|
|
pointer, not incrementing the length (since all UTF-32 is of length 1).
|
|
|
|
This is called when we do not know if we are in UTF-32 mode. */
|
|
|
|
|
|
|
|
#define GETCHARLENTEST(c, eptr, len) \
|
|
|
|
GETCHARTEST(c, eptr)
|
|
|
|
|
|
|
|
/* If the pointer is not at the start of a character, move it back until
|
|
|
|
it is. This is called only in UTF-32 mode - we don't put a test within the
|
|
|
|
macro because almost all calls are already within a block of UTF-32 only
|
|
|
|
code.
|
|
|
|
|
|
|
|
These are all no-ops since all UTF-32 characters fit into one pcre_uchar. */
|
|
|
|
|
|
|
|
#define BACKCHAR(eptr) do { } while (0)
|
|
|
|
|
|
|
|
/* Same as above, just in the other direction. */
|
|
|
|
|
|
|
|
#define FORWARDCHAR(eptr) do { } while (0)
|
2014-10-15 17:57:49 +02:00
|
|
|
#define FORWARDCHARTEST(eptr,end) do { } while (0)
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* Same as above, but it allows a fully customizable form. */
|
|
|
|
|
|
|
|
#define ACROSSCHAR(condition, eptr, action) do { } while (0)
|
|
|
|
|
|
|
|
/* Deposit a character into memory, returning the number of code units. */
|
|
|
|
|
|
|
|
#define PUTCHAR(c, p) (*p = c, 1)
|
|
|
|
|
|
|
|
#endif /* UTF-32 character handling */
|
2014-09-19 09:43:39 +02:00
|
|
|
#endif /* SUPPORT_UNICODE */
|
2014-06-14 20:29:51 +02:00
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
/* Mode-dependent macros that have the same definition in all modes. */
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define CU2BYTES(x) ((x)*((PCRE2_CODE_UNIT_WIDTH/8)))
|
|
|
|
#define BYTES2CU(x) ((x)/((PCRE2_CODE_UNIT_WIDTH/8)))
|
2014-05-13 13:20:03 +02:00
|
|
|
#define PUTINC(a,n,d) PUT(a,n,d), a += LINK_SIZE
|
2014-06-14 20:29:51 +02:00
|
|
|
#define PUT2INC(a,n,d) PUT2(a,n,d), a += IMM2_SIZE
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
/* ----------------------- HIDDEN STRUCTURES ----------------------------- */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
/* NOTE: All these structures *must* start with a pcre2_memctl structure. The
|
2014-08-15 11:19:04 +02:00
|
|
|
code that uses them is simpler because it assumes this. */
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
/* The real general context structure. At present it holds only data for custom
|
2014-05-13 13:20:03 +02:00
|
|
|
memory control. */
|
|
|
|
|
|
|
|
typedef struct pcre2_real_general_context {
|
2014-11-26 17:51:53 +01:00
|
|
|
pcre2_memctl memctl;
|
2014-05-13 13:20:03 +02:00
|
|
|
} pcre2_real_general_context;
|
|
|
|
|
|
|
|
/* The real compile context structure */
|
|
|
|
|
|
|
|
typedef struct pcre2_real_compile_context {
|
2014-11-26 17:51:53 +01:00
|
|
|
pcre2_memctl memctl;
|
|
|
|
int (*stack_guard)(uint32_t, void *);
|
|
|
|
void *stack_guard_data;
|
2014-06-14 20:29:51 +02:00
|
|
|
const uint8_t *tables;
|
2014-11-26 17:51:53 +01:00
|
|
|
uint16_t bsr_convention;
|
|
|
|
uint16_t newline_convention;
|
|
|
|
uint32_t parens_nest_limit;
|
2014-05-13 13:20:03 +02:00
|
|
|
} pcre2_real_compile_context;
|
|
|
|
|
|
|
|
/* The real match context structure. */
|
|
|
|
|
|
|
|
typedef struct pcre2_real_match_context {
|
2014-11-26 17:51:53 +01:00
|
|
|
pcre2_memctl memctl;
|
2014-08-16 11:46:58 +02:00
|
|
|
#ifdef HEAP_MATCH_RECURSE
|
2014-11-26 17:51:53 +01:00
|
|
|
pcre2_memctl stack_memctl;
|
2014-10-20 19:28:49 +02:00
|
|
|
#endif
|
2014-11-06 15:37:09 +01:00
|
|
|
#ifdef SUPPORT_JIT
|
|
|
|
pcre2_jit_callback jit_callback;
|
|
|
|
void *jit_callback_data;
|
|
|
|
#endif
|
2014-11-26 17:51:53 +01:00
|
|
|
int (*callout)(pcre2_callout_block *, void *);
|
|
|
|
void *callout_data;
|
|
|
|
uint32_t match_limit;
|
|
|
|
uint32_t recursion_limit;
|
2014-05-13 13:20:03 +02:00
|
|
|
} pcre2_real_match_context;
|
|
|
|
|
2015-02-07 17:22:48 +01:00
|
|
|
/* The real compiled code structure. The type for the blocksize field is
|
2015-02-20 12:20:40 +01:00
|
|
|
defined specially because it is required in pcre2_serialize_decode() when
|
|
|
|
copying the size from possibly unaligned memory into a variable of the same
|
|
|
|
type. Use a macro rather than a typedef to avoid compiler warnings when this
|
2015-02-07 17:22:48 +01:00
|
|
|
file is included multiple times by pcre2test. */
|
|
|
|
|
|
|
|
#undef CODE_BLOCKSIZE_TYPE
|
|
|
|
#define CODE_BLOCKSIZE_TYPE size_t
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
typedef struct pcre2_real_code {
|
2014-11-26 17:51:53 +01:00
|
|
|
pcre2_memctl memctl; /* Memory control fields */
|
2014-06-14 20:29:51 +02:00
|
|
|
const uint8_t *tables; /* The character tables */
|
2014-10-20 19:28:49 +02:00
|
|
|
void *executable_jit; /* Pointer to JIT code */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint8_t start_bitmap[32]; /* Bitmap for starting code unit < 256 */
|
2015-02-07 17:22:48 +01:00
|
|
|
CODE_BLOCKSIZE_TYPE blocksize; /* Total (bytes) that was malloc-ed */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint32_t magic_number; /* Paranoid and endianness check */
|
|
|
|
uint32_t compile_options; /* Options passed to pcre2_compile() */
|
2014-06-24 17:47:33 +02:00
|
|
|
uint32_t overall_options; /* Options after processing the pattern */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint32_t flags; /* Various state flags */
|
|
|
|
uint32_t limit_match; /* Limit set in the pattern */
|
|
|
|
uint32_t limit_recursion; /* Limit set in the pattern */
|
|
|
|
uint32_t first_codeunit; /* Starting code unit */
|
|
|
|
uint32_t last_codeunit; /* This codeunit must be seen */
|
|
|
|
uint16_t bsr_convention; /* What \R matches */
|
2014-10-20 19:28:49 +02:00
|
|
|
uint16_t newline_convention; /* What is a newline? */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint16_t max_lookbehind; /* Longest lookbehind (characters) */
|
2014-10-20 19:28:49 +02:00
|
|
|
uint16_t minlength; /* Minimum length of match */
|
|
|
|
uint16_t top_bracket; /* Highest numbered group */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint16_t top_backref; /* Highest numbered back reference */
|
|
|
|
uint16_t name_entry_size; /* Size (code units) of table entries */
|
|
|
|
uint16_t name_count; /* Number of name entries in the table */
|
|
|
|
} pcre2_real_code;
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
/* The real match data structure. */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
typedef struct pcre2_real_match_data {
|
|
|
|
pcre2_memctl memctl;
|
|
|
|
const pcre2_real_code *code; /* The pattern used for the match */
|
|
|
|
PCRE2_SPTR subject; /* The subject that was matched */
|
2014-12-14 18:17:06 +01:00
|
|
|
PCRE2_SPTR mark; /* Pointer to last mark */
|
2014-08-16 11:46:58 +02:00
|
|
|
PCRE2_SIZE leftchar; /* Offset to leftmost code unit */
|
|
|
|
PCRE2_SIZE rightchar; /* Offset to rightmost code unit */
|
2014-10-20 19:28:49 +02:00
|
|
|
PCRE2_SIZE startchar; /* Offset to starting code unit */
|
2014-12-19 10:55:25 +01:00
|
|
|
uint16_t matchedby; /* Type of match (normal, JIT, DFA) */
|
2014-05-13 13:20:03 +02:00
|
|
|
uint16_t oveccount; /* Number of pairs */
|
2014-12-14 18:17:06 +01:00
|
|
|
int rc; /* The return code from the match */
|
2014-10-20 19:28:49 +02:00
|
|
|
PCRE2_SIZE ovector[1]; /* The first field */
|
2014-05-13 13:20:03 +02:00
|
|
|
} pcre2_real_match_data;
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
/* ----------------------- PRIVATE STRUCTURES ----------------------------- */
|
|
|
|
|
|
|
|
/* These structures are not needed for pcre2test. */
|
|
|
|
|
|
|
|
#ifndef PCRE2_PCRE2TEST
|
|
|
|
|
2015-04-13 11:13:39 +02:00
|
|
|
/* Structure for checking for mutual recursion when scanning compiled code. */
|
|
|
|
|
|
|
|
typedef struct recurse_check {
|
|
|
|
struct recurse_check *prev;
|
|
|
|
PCRE2_SPTR group;
|
|
|
|
} recurse_check;
|
|
|
|
|
2014-06-14 20:29:51 +02:00
|
|
|
/* Structure for maintaining a chain of pointers to the currently incomplete
|
|
|
|
branches, for testing for left recursion while compiling. */
|
|
|
|
|
|
|
|
typedef struct branch_chain {
|
|
|
|
struct branch_chain *outer;
|
|
|
|
PCRE2_UCHAR *current_branch;
|
|
|
|
} branch_chain;
|
|
|
|
|
|
|
|
/* Structure for building a list of named groups during the first pass of
|
|
|
|
compiling. */
|
|
|
|
|
|
|
|
typedef struct named_group {
|
|
|
|
PCRE2_SPTR name; /* Points to the name in the pattern */
|
|
|
|
int length; /* Length of the name */
|
|
|
|
uint32_t number; /* Group number */
|
|
|
|
} named_group;
|
|
|
|
|
|
|
|
/* Structure for passing "static" information around between the functions
|
|
|
|
doing the compiling, so that they are thread-safe. */
|
|
|
|
|
2014-06-28 16:23:18 +02:00
|
|
|
typedef struct compile_block {
|
2014-06-14 20:29:51 +02:00
|
|
|
pcre2_real_compile_context *cx; /* Points to the compile context */
|
|
|
|
const uint8_t *lcc; /* Points to lower casing table */
|
|
|
|
const uint8_t *fcc; /* Points to case-flipping table */
|
|
|
|
const uint8_t *cbits; /* Points to character type table */
|
|
|
|
const uint8_t *ctypes; /* Points to table of type maps */
|
|
|
|
PCRE2_SPTR start_workspace; /* The start of working space */
|
|
|
|
PCRE2_SPTR start_code; /* The start of the compiled code */
|
|
|
|
PCRE2_SPTR start_pattern; /* The start of the pattern */
|
|
|
|
PCRE2_SPTR end_pattern; /* The end of the pattern */
|
|
|
|
PCRE2_UCHAR *hwm; /* High watermark of workspace */
|
2014-06-28 16:23:18 +02:00
|
|
|
PCRE2_UCHAR *name_table; /* The name/number table */
|
|
|
|
size_t workspace_size; /* Size of workspace */
|
|
|
|
uint16_t names_found; /* Number of entries so far */
|
|
|
|
uint16_t name_entry_size; /* Size of each entry */
|
2014-06-14 20:29:51 +02:00
|
|
|
open_capitem *open_caps; /* Chain of open capture items */
|
|
|
|
named_group *named_groups; /* Points to vector in pre-compile */
|
2014-06-28 16:23:18 +02:00
|
|
|
uint32_t named_group_list_size; /* Number of entries in the list */
|
|
|
|
uint32_t external_options; /* External (initial) options */
|
|
|
|
uint32_t external_flags; /* External flag bits to be set */
|
|
|
|
uint32_t bracount; /* Count of capturing parens as we compile */
|
|
|
|
uint32_t final_bracount; /* Saved value after first pass */
|
|
|
|
uint32_t top_backref; /* Maximum back reference */
|
|
|
|
uint32_t backref_map; /* Bitmap of low back refs */
|
|
|
|
uint32_t nltype; /* Newline type */
|
|
|
|
uint32_t nllen; /* Newline string length */
|
|
|
|
PCRE2_UCHAR nl[4]; /* Newline string when fixed length */
|
2014-06-14 20:29:51 +02:00
|
|
|
int max_lookbehind; /* Maximum lookbehind (characters) */
|
|
|
|
int parens_depth; /* Depth of nested parentheses */
|
|
|
|
int assert_depth; /* Depth of nested assertions */
|
|
|
|
int req_varyopt; /* "After variable item" flag for reqbyte */
|
|
|
|
BOOL had_accept; /* (*ACCEPT) encountered */
|
|
|
|
BOOL had_pruneorskip; /* (*PRUNE) or (*SKIP) encountered */
|
|
|
|
BOOL check_lookbehind; /* Lookbehinds need later checking */
|
|
|
|
BOOL dupnames; /* Duplicate names exist */
|
2015-02-20 12:20:40 +01:00
|
|
|
BOOL iscondassert; /* Next assert is a condition */
|
2014-06-28 16:23:18 +02:00
|
|
|
} compile_block;
|
|
|
|
|
2014-09-30 09:06:48 +02:00
|
|
|
/* Structure for keeping the properties of the in-memory stack used
|
|
|
|
by the JIT matcher. */
|
|
|
|
|
|
|
|
typedef struct pcre2_real_jit_stack {
|
|
|
|
pcre2_memctl memctl;
|
|
|
|
void* stack;
|
|
|
|
} pcre2_real_jit_stack;
|
|
|
|
|
2014-08-16 17:10:42 +02:00
|
|
|
/* Structure for keeping a chain of heap blocks used for saving ovectors
|
|
|
|
during pattern recursion when the ovector is larger than can be saved on
|
|
|
|
the system stack. */
|
|
|
|
|
|
|
|
typedef struct ovecsave_frame {
|
|
|
|
struct ovecsave_frame *next; /* Next frame on free chain */
|
|
|
|
PCRE2_SIZE saved_ovec[1]; /* First vector element */
|
2014-10-20 19:28:49 +02:00
|
|
|
} ovecsave_frame;
|
2014-08-16 17:10:42 +02:00
|
|
|
|
2014-06-28 16:23:18 +02:00
|
|
|
/* Structure for items in a linked list that represents an explicit recursive
|
|
|
|
call within the pattern; used by pcre_match(). */
|
|
|
|
|
|
|
|
typedef struct recursion_info {
|
2014-08-16 11:46:58 +02:00
|
|
|
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */
|
|
|
|
unsigned int group_num; /* Number of group that was called */
|
2014-08-16 17:10:42 +02:00
|
|
|
PCRE2_SIZE *ovec_save; /* Pointer to saved ovector frame */
|
2014-08-16 11:46:58 +02:00
|
|
|
uint32_t saved_capture_last; /* Last capture number */
|
|
|
|
PCRE2_SPTR subject_position; /* Position at start of recursion */
|
2014-06-28 16:23:18 +02:00
|
|
|
} recursion_info;
|
|
|
|
|
|
|
|
/* A similar structure for pcre_dfa_match(). */
|
|
|
|
|
|
|
|
typedef struct dfa_recursion_info {
|
|
|
|
struct dfa_recursion_info *prevrec;
|
|
|
|
PCRE2_SPTR subject_position;
|
2014-07-04 18:26:09 +02:00
|
|
|
uint32_t group_num;
|
2014-06-28 16:23:18 +02:00
|
|
|
} dfa_recursion_info;
|
|
|
|
|
|
|
|
/* Structure for building a chain of data for holding the values of the subject
|
|
|
|
pointer at the start of each subpattern, so as to detect when an empty string
|
|
|
|
has been matched by a subpattern - to break infinite loops; used by
|
|
|
|
pcre2_match(). */
|
|
|
|
|
|
|
|
typedef struct eptrblock {
|
|
|
|
struct eptrblock *epb_prev;
|
|
|
|
PCRE2_SPTR epb_saved_eptr;
|
|
|
|
} eptrblock;
|
|
|
|
|
|
|
|
/* Structure for passing "static" information around between the functions
|
|
|
|
doing traditional NFA matching (pcre2_match() and friends). */
|
|
|
|
|
|
|
|
typedef struct match_block {
|
2014-07-04 18:26:09 +02:00
|
|
|
pcre2_memctl memctl; /* For general use */
|
2014-08-16 11:46:58 +02:00
|
|
|
#ifdef HEAP_MATCH_RECURSE
|
2014-07-04 18:26:09 +02:00
|
|
|
pcre2_memctl stack_memctl; /* For "stack" frames */
|
2014-10-20 19:28:49 +02:00
|
|
|
#endif
|
2014-07-04 18:26:09 +02:00
|
|
|
uint32_t match_call_count; /* As it says */
|
|
|
|
uint32_t match_limit; /* As it says */
|
|
|
|
uint32_t match_limit_recursion; /* As it says */
|
2014-06-28 16:23:18 +02:00
|
|
|
BOOL hitend; /* Hit the end of the subject at some point */
|
|
|
|
BOOL hasthen; /* Pattern contains (*THEN) */
|
|
|
|
const uint8_t *lcc; /* Points to lower casing table */
|
|
|
|
const uint8_t *fcc; /* Points to case-flipping table */
|
|
|
|
const uint8_t *ctypes; /* Points to table of type maps */
|
2014-08-16 11:46:58 +02:00
|
|
|
PCRE2_SIZE *ovector; /* Pointer to the offset vector */
|
|
|
|
PCRE2_SIZE offset_end; /* One past the end */
|
|
|
|
PCRE2_SIZE offset_max; /* The maximum usable for return data */
|
|
|
|
PCRE2_SIZE start_offset; /* The start offset value */
|
|
|
|
PCRE2_SIZE end_offset_top; /* Highwater mark at end of match */
|
2014-06-28 16:23:18 +02:00
|
|
|
uint16_t partial; /* PARTIAL options */
|
|
|
|
uint16_t bsr_convention; /* \R interpretation */
|
|
|
|
uint16_t name_count; /* Number of names in name table */
|
|
|
|
uint16_t name_entry_size; /* Size of entry in names table */
|
|
|
|
PCRE2_SPTR name_table; /* Table of group names */
|
|
|
|
PCRE2_SPTR start_code; /* For use when recursing */
|
|
|
|
PCRE2_SPTR start_subject; /* Start of the subject string */
|
|
|
|
PCRE2_SPTR end_subject; /* End of the subject string */
|
|
|
|
PCRE2_SPTR start_match_ptr; /* Start of matched string */
|
|
|
|
PCRE2_SPTR end_match_ptr; /* Subject position at end match */
|
|
|
|
PCRE2_SPTR start_used_ptr; /* Earliest consulted character */
|
2014-10-20 19:28:49 +02:00
|
|
|
PCRE2_SPTR last_used_ptr; /* Latest consulted character */
|
2014-06-28 16:23:18 +02:00
|
|
|
PCRE2_SPTR mark; /* Mark pointer to pass back on success */
|
|
|
|
PCRE2_SPTR nomatch_mark; /* Mark pointer to pass back on failure */
|
|
|
|
PCRE2_SPTR once_target; /* Where to back up to for atomic groups */
|
|
|
|
uint32_t moptions; /* Match options */
|
|
|
|
uint32_t poptions; /* Pattern options */
|
|
|
|
uint32_t capture_last; /* Most recent capture number + overflow flag */
|
|
|
|
uint32_t skip_arg_count; /* For counting SKIP_ARGs */
|
|
|
|
uint32_t ignore_skip_arg; /* For re-run when SKIP arg name not found */
|
|
|
|
uint32_t match_function_type; /* Set for certain special calls of match() */
|
|
|
|
uint32_t nltype; /* Newline type */
|
|
|
|
uint32_t nllen; /* Newline string length */
|
|
|
|
PCRE2_UCHAR nl[4]; /* Newline string when fixed */
|
|
|
|
eptrblock *eptrchain; /* Chain of eptrblocks for tail recursions */
|
|
|
|
recursion_info *recursive; /* Linked list of recursion data */
|
2014-10-20 19:28:49 +02:00
|
|
|
ovecsave_frame *ovecsave_chain; /* Linked list of free ovecsave blocks */
|
2014-06-28 16:23:18 +02:00
|
|
|
void *callout_data; /* To pass back to callouts */
|
2014-11-25 18:35:01 +01:00
|
|
|
int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */
|
2014-08-16 11:46:58 +02:00
|
|
|
#ifdef HEAP_MATCH_RECURSE
|
2014-06-28 16:23:18 +02:00
|
|
|
void *match_frames_base; /* For remembering malloc'd frames */
|
|
|
|
#endif
|
|
|
|
} match_block;
|
|
|
|
|
|
|
|
/* A similar structure is used for the same purpose by the DFA matching
|
|
|
|
functions. */
|
|
|
|
|
|
|
|
typedef struct dfa_match_block {
|
2014-08-16 11:46:58 +02:00
|
|
|
pcre2_memctl memctl; /* For general use */
|
|
|
|
PCRE2_SPTR start_code; /* Start of the compiled pattern */
|
|
|
|
PCRE2_SPTR start_subject ; /* Start of the subject string */
|
|
|
|
PCRE2_SPTR end_subject; /* End of subject string */
|
|
|
|
PCRE2_SPTR start_used_ptr; /* Earliest consulted character */
|
2014-10-20 19:28:49 +02:00
|
|
|
PCRE2_SPTR last_used_ptr; /* Latest consulted character */
|
2014-08-16 11:46:58 +02:00
|
|
|
const uint8_t *tables; /* Character tables */
|
|
|
|
PCRE2_SIZE start_offset; /* The start offset value */
|
|
|
|
uint32_t moptions; /* Match options */
|
|
|
|
uint32_t poptions; /* Pattern options */
|
|
|
|
uint32_t nltype; /* Newline type */
|
|
|
|
uint32_t nllen; /* Newline string length */
|
|
|
|
PCRE2_UCHAR nl[4]; /* Newline string when fixed */
|
|
|
|
uint16_t bsr_convention; /* \R interpretation */
|
|
|
|
void *callout_data; /* To pass back to callouts */
|
2014-11-25 18:35:01 +01:00
|
|
|
int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */
|
2014-08-16 11:46:58 +02:00
|
|
|
dfa_recursion_info *recursive; /* Linked list of recursion data */
|
2014-06-28 16:23:18 +02:00
|
|
|
} dfa_match_block;
|
2014-06-14 20:29:51 +02:00
|
|
|
|
|
|
|
#endif /* PCRE2_PCRE2TEST */
|
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
/* End of pcre2_intmodedep.h */
|