PageRenderTime 57ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 1ms

/tags/harbour-1.0.0/source/hbpcre/pcreinal.h

#
C Header | 1140 lines | 670 code | 205 blank | 265 comment | 43 complexity | 484672f5cd166840a441d0984e1abf2e MD5 | raw file
Possible License(s): AGPL-1.0, BSD-3-Clause, CC-BY-SA-3.0, LGPL-3.0, GPL-2.0, LGPL-2.0, LGPL-2.1
  1. /*************************************************
  2. * Perl-Compatible Regular Expressions *
  3. *************************************************/
  4. /* PCRE is a library of functions to support regular expressions whose syntax
  5. and semantics are as close as possible to those of the Perl 5 language.
  6. Written by Philip Hazel
  7. Copyright (c) 1997-2008 University of Cambridge
  8. -----------------------------------------------------------------------------
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. * Redistributions of source code must retain the above copyright notice,
  12. this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright
  14. notice, this list of conditions and the following disclaimer in the
  15. documentation and/or other materials provided with the distribution.
  16. * Neither the name of the University of Cambridge nor the names of its
  17. contributors may be used to endorse or promote products derived from
  18. this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. POSSIBILITY OF SUCH DAMAGE.
  30. -----------------------------------------------------------------------------
  31. */
  32. /* This header contains definitions that are shared between the different
  33. modules, but which are not relevant to the exported API. This includes some
  34. functions whose names all begin with "_pcre_". */
  35. #ifndef PCRE_INTERNAL_H
  36. #define PCRE_INTERNAL_H
  37. /* Define DEBUG to get debugging output on stdout. */
  38. #if 0
  39. #define DEBUG
  40. #endif
  41. /* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef
  42. inline, and there are *still* stupid compilers about that don't like indented
  43. pre-processor statements, or at least there were when I first wrote this. After
  44. all, it had only been about 10 years then...
  45. It turns out that the Mac Debugging.h header also defines the macro DPRINTF, so
  46. be absolutely sure we get our version. */
  47. #undef DPRINTF
  48. #ifdef DEBUG
  49. #define DPRINTF(p) printf p
  50. #else
  51. #define DPRINTF(p) /* Nothing */
  52. #endif
  53. /* Standard C headers plus the external interface definition. The only time
  54. setjmp and stdarg are used is when NO_RECURSE is set. */
  55. #include <ctype.h>
  56. #include <limits.h>
  57. #include <setjmp.h>
  58. #include <stdarg.h>
  59. #include <stddef.h>
  60. #include <stdio.h>
  61. #include <stdlib.h>
  62. #include <string.h>
  63. /* When compiling a DLL for Windows, the exported symbols have to be declared
  64. using some MS magic. I found some useful information on this web page:
  65. http://msdn2.microsoft.com/en-us/library/y4h7bcy6(VS.80).aspx. According to the
  66. information there, using __declspec(dllexport) without "extern" we have a
  67. definition; with "extern" we have a declaration. The settings here override the
  68. setting in pcre.h (which is included below); it defines only PCRE_EXP_DECL,
  69. which is all that is needed for applications (they just import the symbols). We
  70. use:
  71. PCRE_EXP_DECL for declarations
  72. PCRE_EXP_DEFN for definitions of exported functions
  73. PCRE_EXP_DATA_DEFN for definitions of exported variables
  74. The reason for the two DEFN macros is that in non-Windows environments, one
  75. does not want to have "extern" before variable definitions because it leads to
  76. compiler warnings. So we distinguish between functions and variables. In
  77. Windows, the two should always be the same.
  78. The reason for wrapping this in #ifndef PCRE_EXP_DECL is so that pcretest,
  79. which is an application, but needs to import this file in order to "peek" at
  80. internals, can #include pcre.h first to get an application's-eye view.
  81. In principle, people compiling for non-Windows, non-Unix-like (i.e. uncommon,
  82. special-purpose environments) might want to stick other stuff in front of
  83. exported symbols. That's why, in the non-Windows case, we set PCRE_EXP_DEFN and
  84. PCRE_EXP_DATA_DEFN only if they are not already set. */
  85. #ifndef PCRE_EXP_DECL
  86. # ifdef _WIN32
  87. # ifndef PCRE_STATIC
  88. # define PCRE_EXP_DECL extern __declspec(dllexport)
  89. # define PCRE_EXP_DEFN __declspec(dllexport)
  90. # define PCRE_EXP_DATA_DEFN __declspec(dllexport)
  91. # else
  92. # define PCRE_EXP_DECL extern
  93. # define PCRE_EXP_DEFN
  94. # define PCRE_EXP_DATA_DEFN
  95. # endif
  96. # else
  97. # ifdef __cplusplus
  98. # define PCRE_EXP_DECL extern "C"
  99. # else
  100. # define PCRE_EXP_DECL extern
  101. # endif
  102. # ifndef PCRE_EXP_DEFN
  103. # define PCRE_EXP_DEFN PCRE_EXP_DECL
  104. # endif
  105. # ifndef PCRE_EXP_DATA_DEFN
  106. # define PCRE_EXP_DATA_DEFN
  107. # endif
  108. # endif
  109. #endif
  110. /* We need to have types that specify unsigned 16-bit and 32-bit integers. We
  111. cannot determine these outside the compilation (e.g. by running a program as
  112. part of "configure") because PCRE is often cross-compiled for use on other
  113. systems. Instead we make use of the maximum sizes that are available at
  114. preprocessor time in standard C environments. */
  115. #if USHRT_MAX == 65535
  116. typedef unsigned short pcre_uint16;
  117. #elif UINT_MAX == 65535
  118. typedef unsigned int pcre_uint16;
  119. #else
  120. #error Cannot determine a type for 16-bit unsigned integers
  121. #endif
  122. #if UINT_MAX == 4294967295
  123. typedef unsigned int pcre_uint32;
  124. #elif ULONG_MAX == 4294967295
  125. typedef unsigned long int pcre_uint32;
  126. #else
  127. #error Cannot determine a type for 32-bit unsigned integers
  128. #endif
  129. /* All character handling must be done as unsigned characters. Otherwise there
  130. are problems with top-bit-set characters and functions such as isspace().
  131. However, we leave the interface to the outside world as char *, because that
  132. should make things easier for callers. We define a short type for unsigned char
  133. to save lots of typing. I tried "uchar", but it causes problems on Digital
  134. Unix, where it is defined in sys/types, so use "uschar" instead. */
  135. typedef unsigned char uschar;
  136. /* This is an unsigned int value that no character can ever have. UTF-8
  137. characters only go up to 0x7fffffff (though Unicode doesn't go beyond
  138. 0x0010ffff). */
  139. #define NOTACHAR 0xffffffff
  140. /* PCRE is able to support several different kinds of newline (CR, LF, CRLF,
  141. "any" and "anycrlf" at present). The following macros are used to package up
  142. testing for newlines. NLBLOCK, PSSTART, and PSEND are defined in the various
  143. modules to indicate in which datablock the parameters exist, and what the
  144. start/end of string field names are. */
  145. #define NLTYPE_FIXED 0 /* Newline is a fixed length string */
  146. #define NLTYPE_ANY 1 /* Newline is any Unicode line ending */
  147. #define NLTYPE_ANYCRLF 2 /* Newline is CR, LF, or CRLF */
  148. /* This macro checks for a newline at the given position */
  149. #define IS_NEWLINE(p) \
  150. ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  151. ((p) < NLBLOCK->PSEND && \
  152. _pcre_is_newline((p), NLBLOCK->nltype, NLBLOCK->PSEND, &(NLBLOCK->nllen),\
  153. utf8)) \
  154. : \
  155. ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
  156. (p)[0] == NLBLOCK->nl[0] && \
  157. (NLBLOCK->nllen == 1 || (p)[1] == NLBLOCK->nl[1]) \
  158. ) \
  159. )
  160. /* This macro checks for a newline immediately preceding the given position */
  161. #define WAS_NEWLINE(p) \
  162. ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  163. ((p) > NLBLOCK->PSSTART && \
  164. _pcre_was_newline((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \
  165. &(NLBLOCK->nllen), utf8)) \
  166. : \
  167. ((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \
  168. (p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \
  169. (NLBLOCK->nllen == 1 || (p)[-NLBLOCK->nllen+1] == NLBLOCK->nl[1]) \
  170. ) \
  171. )
  172. /* When PCRE is compiled as a C++ library, the subject pointer can be replaced
  173. with a custom type. This makes it possible, for example, to allow pcre_exec()
  174. to process subject strings that are discontinuous by using a smart pointer
  175. class. It must always be possible to inspect all of the subject string in
  176. pcre_exec() because of the way it backtracks. Two macros are required in the
  177. normal case, for sign-unspecified and unsigned char pointers. The former is
  178. used for the external interface and appears in pcre.h, which is why its name
  179. must begin with PCRE_. */
  180. #ifdef CUSTOM_SUBJECT_PTR
  181. #define PCRE_SPTR CUSTOM_SUBJECT_PTR
  182. #define USPTR CUSTOM_SUBJECT_PTR
  183. #else
  184. #define PCRE_SPTR const char *
  185. #define USPTR const unsigned char *
  186. #endif
  187. /* Include the public PCRE header and the definitions of UCP character property
  188. values. */
  189. #include "pcre.h"
  190. #include "ucp.h"
  191. /* When compiling for use with the Virtual Pascal compiler, these functions
  192. need to have their names changed. PCRE must be compiled with the -DVPCOMPAT
  193. option on the command line. */
  194. #ifdef VPCOMPAT
  195. #define strlen(s) _strlen(s)
  196. #define strncmp(s1,s2,m) _strncmp(s1,s2,m)
  197. #define memcmp(s,c,n) _memcmp(s,c,n)
  198. #define memcpy(d,s,n) _memcpy(d,s,n)
  199. #define memmove(d,s,n) _memmove(d,s,n)
  200. #define memset(s,c,n) _memset(s,c,n)
  201. #else /* VPCOMPAT */
  202. /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
  203. define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
  204. is set. Otherwise, include an emulating function for those systems that have
  205. neither (there some non-Unix environments where this is the case). */
  206. #ifndef HAVE_MEMMOVE
  207. #undef memmove /* some systems may have a macro */
  208. #ifdef HAVE_BCOPY
  209. #define memmove(a, b, c) bcopy(b, a, c)
  210. #else /* HAVE_BCOPY */
  211. static void *
  212. pcre_memmove(void *d, const void *s, size_t n)
  213. {
  214. size_t i;
  215. unsigned char *dest = (unsigned char *)d;
  216. const unsigned char *src = (const unsigned char *)s;
  217. if (dest > src)
  218. {
  219. dest += n;
  220. src += n;
  221. for (i = 0; i < n; ++i) *(--dest) = *(--src);
  222. return (void *)dest;
  223. }
  224. else
  225. {
  226. for (i = 0; i < n; ++i) *dest++ = *src++;
  227. return (void *)(dest - n);
  228. }
  229. }
  230. #define memmove(a, b, c) pcre_memmove(a, b, c)
  231. #endif /* not HAVE_BCOPY */
  232. #endif /* not HAVE_MEMMOVE */
  233. #endif /* not VPCOMPAT */
  234. /* PCRE keeps offsets in its compiled code as 2-byte quantities (always stored
  235. in big-endian order) by default. These are used, for example, to link from the
  236. start of a subpattern to its alternatives and its end. The use of 2 bytes per
  237. offset limits the size of the compiled regex to around 64K, which is big enough
  238. for almost everybody. However, I received a request for an even bigger limit.
  239. For this reason, and also to make the code easier to maintain, the storing and
  240. loading of offsets from the byte string is now handled by the macros that are
  241. defined here.
  242. The macros are controlled by the value of LINK_SIZE. This defaults to 2 in
  243. the config.h file, but can be overridden by using -D on the command line. This
  244. is automated on Unix systems via the "configure" command. */
  245. #if LINK_SIZE == 2
  246. #define PUT(a,n,d) \
  247. (a[n] = (d) >> 8), \
  248. (a[(n)+1] = (d) & 255)
  249. #define GET(a,n) \
  250. (((a)[n] << 8) | (a)[(n)+1])
  251. #define MAX_PATTERN_SIZE (1 << 16)
  252. #elif LINK_SIZE == 3
  253. #define PUT(a,n,d) \
  254. (a[n] = (d) >> 16), \
  255. (a[(n)+1] = (d) >> 8), \
  256. (a[(n)+2] = (d) & 255)
  257. #define GET(a,n) \
  258. (((a)[n] << 16) | ((a)[(n)+1] << 8) | (a)[(n)+2])
  259. #define MAX_PATTERN_SIZE (1 << 24)
  260. #elif LINK_SIZE == 4
  261. #define PUT(a,n,d) \
  262. (a[n] = (d) >> 24), \
  263. (a[(n)+1] = (d) >> 16), \
  264. (a[(n)+2] = (d) >> 8), \
  265. (a[(n)+3] = (d) & 255)
  266. #define GET(a,n) \
  267. (((a)[n] << 24) | ((a)[(n)+1] << 16) | ((a)[(n)+2] << 8) | (a)[(n)+3])
  268. #define MAX_PATTERN_SIZE (1 << 30) /* Keep it positive */
  269. #else
  270. #error LINK_SIZE must be either 2, 3, or 4
  271. #endif
  272. /* Convenience macro defined in terms of the others */
  273. #define PUTINC(a,n,d) PUT(a,n,d), a += LINK_SIZE
  274. /* PCRE uses some other 2-byte quantities that do not change when the size of
  275. offsets changes. There are used for repeat counts and for other things such as
  276. capturing parenthesis numbers in back references. */
  277. #define PUT2(a,n,d) \
  278. a[n] = (d) >> 8; \
  279. a[(n)+1] = (d) & 255
  280. #define GET2(a,n) \
  281. (((a)[n] << 8) | (a)[(n)+1])
  282. #define PUT2INC(a,n,d) PUT2(a,n,d), a += 2
  283. /* When UTF-8 encoding is being used, a character is no longer just a single
  284. byte. The macros for character handling generate simple sequences when used in
  285. byte-mode, and more complicated ones for UTF-8 characters. BACKCHAR should
  286. never be called in byte mode. To make sure it can never even appear when UTF-8
  287. support is omitted, we don't even define it. */
  288. #ifndef SUPPORT_UTF8
  289. #define NEXTCHAR(p) p++;
  290. #define GETCHAR(c, eptr) c = *eptr;
  291. #define GETCHARTEST(c, eptr) c = *eptr;
  292. #define GETCHARINC(c, eptr) c = *eptr++;
  293. #define GETCHARINCTEST(c, eptr) c = *eptr++;
  294. #define GETCHARLEN(c, eptr, len) c = *eptr;
  295. /* #define BACKCHAR(eptr) */
  296. #else /* SUPPORT_UTF8 */
  297. /* Advance a character pointer one byte in non-UTF-8 mode and by one character
  298. in UTF-8 mode. */
  299. #define NEXTCHAR(p) \
  300. p++; \
  301. if (utf8) { while((*p & 0xc0) == 0x80) p++; }
  302. /* Get the next UTF-8 character, not advancing the pointer. This is called when
  303. we know we are in UTF-8 mode. */
  304. #define GETCHAR(c, eptr) \
  305. c = *eptr; \
  306. if (c >= 0xc0) \
  307. { \
  308. int gcii; \
  309. int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \
  310. int gcss = 6*gcaa; \
  311. c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  312. for (gcii = 1; gcii <= gcaa; gcii++) \
  313. { \
  314. gcss -= 6; \
  315. c |= (eptr[gcii] & 0x3f) << gcss; \
  316. } \
  317. }
  318. /* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the
  319. pointer. */
  320. #define GETCHARTEST(c, eptr) \
  321. c = *eptr; \
  322. if (utf8 && c >= 0xc0) \
  323. { \
  324. int gcii; \
  325. int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \
  326. int gcss = 6*gcaa; \
  327. c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  328. for (gcii = 1; gcii <= gcaa; gcii++) \
  329. { \
  330. gcss -= 6; \
  331. c |= (eptr[gcii] & 0x3f) << gcss; \
  332. } \
  333. }
  334. /* Get the next UTF-8 character, advancing the pointer. This is called when we
  335. know we are in UTF-8 mode. */
  336. #define GETCHARINC(c, eptr) \
  337. c = *eptr++; \
  338. if (c >= 0xc0) \
  339. { \
  340. int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \
  341. int gcss = 6*gcaa; \
  342. c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  343. while (gcaa-- > 0) \
  344. { \
  345. gcss -= 6; \
  346. c |= (*eptr++ & 0x3f) << gcss; \
  347. } \
  348. }
  349. /* Get the next character, testing for UTF-8 mode, and advancing the pointer */
  350. #define GETCHARINCTEST(c, eptr) \
  351. c = *eptr++; \
  352. if (utf8 && c >= 0xc0) \
  353. { \
  354. int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \
  355. int gcss = 6*gcaa; \
  356. c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  357. while (gcaa-- > 0) \
  358. { \
  359. gcss -= 6; \
  360. c |= (*eptr++ & 0x3f) << gcss; \
  361. } \
  362. }
  363. /* Get the next UTF-8 character, not advancing the pointer, incrementing length
  364. if there are extra bytes. This is called when we know we are in UTF-8 mode. */
  365. #define GETCHARLEN(c, eptr, len) \
  366. c = *eptr; \
  367. if (c >= 0xc0) \
  368. { \
  369. int gcii; \
  370. int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \
  371. int gcss = 6*gcaa; \
  372. c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  373. for (gcii = 1; gcii <= gcaa; gcii++) \
  374. { \
  375. gcss -= 6; \
  376. c |= (eptr[gcii] & 0x3f) << gcss; \
  377. } \
  378. len += gcaa; \
  379. }
  380. /* If the pointer is not at the start of a character, move it back until
  381. it is. This is called only in UTF-8 mode - we don't put a test within the macro
  382. because almost all calls are already within a block of UTF-8 only code. */
  383. #define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr--
  384. #endif
  385. /* In case there is no definition of offsetof() provided - though any proper
  386. Standard C system should have one. */
  387. #ifndef offsetof
  388. #define offsetof(p_type,field) ((size_t)&(((p_type *)0)->field))
  389. #endif
  390. /* These are the public options that can change during matching. */
  391. #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL)
  392. /* Private flags containing information about the compiled regex. They used to
  393. live at the top end of the options word, but that got almost full, so now they
  394. are in a 16-bit flags word. */
  395. #define PCRE_NOPARTIAL 0x0001 /* can't use partial with this regex */
  396. #define PCRE_FIRSTSET 0x0002 /* first_byte is set */
  397. #define PCRE_REQCHSET 0x0004 /* req_byte is set */
  398. #define PCRE_STARTLINE 0x0008 /* start after \n for multiline */
  399. #define PCRE_JCHANGED 0x0010 /* j option used in regex */
  400. #define PCRE_HASCRORLF 0x0020 /* explicit \r or \n in pattern */
  401. /* Options for the "extra" block produced by pcre_study(). */
  402. #define PCRE_STUDY_MAPPED 0x01 /* a map of starting chars exists */
  403. /* Masks for identifying the public options that are permitted at compile
  404. time, run time, or study time, respectively. */
  405. #define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \
  406. PCRE_NEWLINE_ANYCRLF)
  407. #define PUBLIC_OPTIONS \
  408. (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
  409. PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
  410. PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \
  411. PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \
  412. PCRE_JAVASCRIPT_COMPAT)
  413. #define PUBLIC_EXEC_OPTIONS \
  414. (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \
  415. PCRE_PARTIAL|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)
  416. #define PUBLIC_DFA_EXEC_OPTIONS \
  417. (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \
  418. PCRE_PARTIAL|PCRE_DFA_SHORTEST|PCRE_DFA_RESTART|PCRE_NEWLINE_BITS| \
  419. PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)
  420. #define PUBLIC_STUDY_OPTIONS 0 /* None defined */
  421. /* Magic number to provide a small check against being handed junk. Also used
  422. to detect whether a pattern was compiled on a host of different endianness. */
  423. #define MAGIC_NUMBER 0x50435245UL /* 'PCRE' */
  424. /* Negative values for the firstchar and reqchar variables */
  425. #define REQ_UNSET (-2)
  426. #define REQ_NONE (-1)
  427. /* The maximum remaining length of subject we are prepared to search for a
  428. req_byte match. */
  429. #define REQ_BYTE_MAX 1000
  430. /* Flags added to firstbyte or reqbyte; a "non-literal" item is either a
  431. variable-length repeat, or a anything other than literal characters. */
  432. #define REQ_CASELESS 0x0100 /* indicates caselessness */
  433. #define REQ_VARY 0x0200 /* reqbyte followed non-literal item */
  434. /* Miscellaneous definitions */
  435. #ifndef FALSE
  436. typedef int BOOL;
  437. #define FALSE 0
  438. #define TRUE 1
  439. #endif
  440. /* Escape items that are just an encoding of a particular data value. */
  441. #ifndef ESC_e
  442. #define ESC_e 27
  443. #endif
  444. #ifndef ESC_f
  445. #define ESC_f '\f'
  446. #endif
  447. #ifndef ESC_n
  448. #define ESC_n '\n'
  449. #endif
  450. #ifndef ESC_r
  451. #define ESC_r '\r'
  452. #endif
  453. /* We can't officially use ESC_t because it is a POSIX reserved identifier
  454. (presumably because of all the others like size_t). */
  455. #ifndef ESC_tee
  456. #define ESC_tee '\t'
  457. #endif
  458. /* Codes for different types of Unicode property */
  459. #define PT_ANY 0 /* Any property - matches all chars */
  460. #define PT_LAMP 1 /* L& - the union of Lu, Ll, Lt */
  461. #define PT_GC 2 /* General characteristic (e.g. L) */
  462. #define PT_PC 3 /* Particular characteristic (e.g. Lu) */
  463. #define PT_SC 4 /* Script (e.g. Han) */
  464. /* Flag bits and data types for the extended class (OP_XCLASS) for classes that
  465. contain UTF-8 characters with values greater than 255. */
  466. #define XCL_NOT 0x01 /* Flag: this is a negative class */
  467. #define XCL_MAP 0x02 /* Flag: a 32-byte map is present */
  468. #define XCL_END 0 /* Marks end of individual items */
  469. #define XCL_SINGLE 1 /* Single item (one multibyte char) follows */
  470. #define XCL_RANGE 2 /* A range (two multibyte chars) follows */
  471. #define XCL_PROP 3 /* Unicode property (2-byte property code follows) */
  472. #define XCL_NOTPROP 4 /* Unicode inverted property (ditto) */
  473. /* These are escaped items that aren't just an encoding of a particular data
  474. value such as \n. They must have non-zero values, as check_escape() returns
  475. their negation. Also, they must appear in the same order as in the opcode
  476. definitions below, up to ESC_z. There's a dummy for OP_ANY because it
  477. corresponds to "." rather than an escape sequence, and another for OP_ALLANY
  478. (which is used for [^] in JavaScript compatibility mode).
  479. The final escape must be ESC_REF as subsequent values are used for
  480. backreferences (\1, \2, \3, etc). There are two tests in the code for an escape
  481. greater than ESC_b and less than ESC_Z to detect the types that may be
  482. repeated. These are the types that consume characters. If any new escapes are
  483. put in between that don't consume a character, that code will have to change.
  484. */
  485. enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s,
  486. ESC_W, ESC_w, ESC_dum1, ESC_dum2, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H,
  487. ESC_h, ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, ESC_E, ESC_Q, ESC_g, ESC_k,
  488. ESC_REF };
  489. /* Opcode table: Starting from 1 (i.e. after OP_END), the values up to
  490. OP_EOD must correspond in order to the list of escapes immediately above.
  491. *** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions
  492. that follow must also be updated to match. There is also a table called
  493. "coptable" in pcre_dfa_exec.c that must be updated. */
  494. enum {
  495. OP_END, /* 0 End of pattern */
  496. /* Values corresponding to backslashed metacharacters */
  497. OP_SOD, /* 1 Start of data: \A */
  498. OP_SOM, /* 2 Start of match (subject + offset): \G */
  499. OP_SET_SOM, /* 3 Set start of match (\K) */
  500. OP_NOT_WORD_BOUNDARY, /* 4 \B */
  501. OP_WORD_BOUNDARY, /* 5 \b */
  502. OP_NOT_DIGIT, /* 6 \D */
  503. OP_DIGIT, /* 7 \d */
  504. OP_NOT_WHITESPACE, /* 8 \S */
  505. OP_WHITESPACE, /* 9 \s */
  506. OP_NOT_WORDCHAR, /* 10 \W */
  507. OP_WORDCHAR, /* 11 \w */
  508. OP_ANY, /* 12 Match any character (subject to DOTALL) */
  509. OP_ALLANY, /* 13 Match any character (not subject to DOTALL) */
  510. OP_ANYBYTE, /* 14 Match any byte (\C); different to OP_ANY for UTF-8 */
  511. OP_NOTPROP, /* 15 \P (not Unicode property) */
  512. OP_PROP, /* 16 \p (Unicode property) */
  513. OP_ANYNL, /* 17 \R (any newline sequence) */
  514. OP_NOT_HSPACE, /* 18 \H (not horizontal whitespace) */
  515. OP_HSPACE, /* 19 \h (horizontal whitespace) */
  516. OP_NOT_VSPACE, /* 20 \V (not vertical whitespace) */
  517. OP_VSPACE, /* 21 \v (vertical whitespace) */
  518. OP_EXTUNI, /* 22 \X (extended Unicode sequence */
  519. OP_EODN, /* 23 End of data or \n at end of data: \Z. */
  520. OP_EOD, /* 24 End of data: \z */
  521. OP_OPT, /* 25 Set runtime options */
  522. OP_CIRC, /* 26 Start of line - varies with multiline switch */
  523. OP_DOLL, /* 27 End of line - varies with multiline switch */
  524. OP_CHAR, /* 28 Match one character, casefully */
  525. OP_CHARNC, /* 29 Match one character, caselessly */
  526. OP_NOT, /* 30 Match one character, not the following one */
  527. OP_STAR, /* 31 The maximizing and minimizing versions of */
  528. OP_MINSTAR, /* 32 these six opcodes must come in pairs, with */
  529. OP_PLUS, /* 33 the minimizing one second. */
  530. OP_MINPLUS, /* 34 This first set applies to single characters.*/
  531. OP_QUERY, /* 35 */
  532. OP_MINQUERY, /* 36 */
  533. OP_UPTO, /* 37 From 0 to n matches */
  534. OP_MINUPTO, /* 38 */
  535. OP_EXACT, /* 39 Exactly n matches */
  536. OP_POSSTAR, /* 40 Possessified star */
  537. OP_POSPLUS, /* 41 Possessified plus */
  538. OP_POSQUERY, /* 42 Posesssified query */
  539. OP_POSUPTO, /* 43 Possessified upto */
  540. OP_NOTSTAR, /* 44 The maximizing and minimizing versions of */
  541. OP_NOTMINSTAR, /* 45 these six opcodes must come in pairs, with */
  542. OP_NOTPLUS, /* 46 the minimizing one second. They must be in */
  543. OP_NOTMINPLUS, /* 47 exactly the same order as those above. */
  544. OP_NOTQUERY, /* 48 This set applies to "not" single characters. */
  545. OP_NOTMINQUERY, /* 49 */
  546. OP_NOTUPTO, /* 50 From 0 to n matches */
  547. OP_NOTMINUPTO, /* 51 */
  548. OP_NOTEXACT, /* 52 Exactly n matches */
  549. OP_NOTPOSSTAR, /* 53 Possessified versions */
  550. OP_NOTPOSPLUS, /* 54 */
  551. OP_NOTPOSQUERY, /* 55 */
  552. OP_NOTPOSUPTO, /* 56 */
  553. OP_TYPESTAR, /* 57 The maximizing and minimizing versions of */
  554. OP_TYPEMINSTAR, /* 58 these six opcodes must come in pairs, with */
  555. OP_TYPEPLUS, /* 59 the minimizing one second. These codes must */
  556. OP_TYPEMINPLUS, /* 60 be in exactly the same order as those above. */
  557. OP_TYPEQUERY, /* 61 This set applies to character types such as \d */
  558. OP_TYPEMINQUERY, /* 62 */
  559. OP_TYPEUPTO, /* 63 From 0 to n matches */
  560. OP_TYPEMINUPTO, /* 64 */
  561. OP_TYPEEXACT, /* 65 Exactly n matches */
  562. OP_TYPEPOSSTAR, /* 66 Possessified versions */
  563. OP_TYPEPOSPLUS, /* 67 */
  564. OP_TYPEPOSQUERY, /* 68 */
  565. OP_TYPEPOSUPTO, /* 69 */
  566. OP_CRSTAR, /* 70 The maximizing and minimizing versions of */
  567. OP_CRMINSTAR, /* 71 all these opcodes must come in pairs, with */
  568. OP_CRPLUS, /* 72 the minimizing one second. These codes must */
  569. OP_CRMINPLUS, /* 73 be in exactly the same order as those above. */
  570. OP_CRQUERY, /* 74 These are for character classes and back refs */
  571. OP_CRMINQUERY, /* 75 */
  572. OP_CRRANGE, /* 76 These are different to the three sets above. */
  573. OP_CRMINRANGE, /* 77 */
  574. OP_CLASS, /* 78 Match a character class, chars < 256 only */
  575. OP_NCLASS, /* 79 Same, but the bitmap was created from a negative
  576. class - the difference is relevant only when a UTF-8
  577. character > 255 is encountered. */
  578. OP_XCLASS, /* 80 Extended class for handling UTF-8 chars within the
  579. class. This does both positive and negative. */
  580. OP_REF, /* 81 Match a back reference */
  581. OP_RECURSE, /* 82 Match a numbered subpattern (possibly recursive) */
  582. OP_CALLOUT, /* 83 Call out to external function if provided */
  583. OP_ALT, /* 84 Start of alternation */
  584. OP_KET, /* 85 End of group that doesn't have an unbounded repeat */
  585. OP_KETRMAX, /* 86 These two must remain together and in this */
  586. OP_KETRMIN, /* 87 order. They are for groups the repeat for ever. */
  587. /* The assertions must come before BRA, CBRA, ONCE, and COND.*/
  588. OP_ASSERT, /* 88 Positive lookahead */
  589. OP_ASSERT_NOT, /* 89 Negative lookahead */
  590. OP_ASSERTBACK, /* 90 Positive lookbehind */
  591. OP_ASSERTBACK_NOT, /* 91 Negative lookbehind */
  592. OP_REVERSE, /* 92 Move pointer back - used in lookbehind assertions */
  593. /* ONCE, BRA, CBRA, and COND must come after the assertions, with ONCE first,
  594. as there's a test for >= ONCE for a subpattern that isn't an assertion. */
  595. OP_ONCE, /* 93 Atomic group */
  596. OP_BRA, /* 94 Start of non-capturing bracket */
  597. OP_CBRA, /* 95 Start of capturing bracket */
  598. OP_COND, /* 96 Conditional group */
  599. /* These three must follow the previous three, in the same order. There's a
  600. check for >= SBRA to distinguish the two sets. */
  601. OP_SBRA, /* 97 Start of non-capturing bracket, check empty */
  602. OP_SCBRA, /* 98 Start of capturing bracket, check empty */
  603. OP_SCOND, /* 99 Conditional group, check empty */
  604. OP_CREF, /* 100 Used to hold a capture number as condition */
  605. OP_RREF, /* 101 Used to hold a recursion number as condition */
  606. OP_DEF, /* 102 The DEFINE condition */
  607. OP_BRAZERO, /* 103 These two must remain together and in this */
  608. OP_BRAMINZERO, /* 104 order. */
  609. /* These are backtracking control verbs */
  610. OP_PRUNE, /* 105 */
  611. OP_SKIP, /* 106 */
  612. OP_THEN, /* 107 */
  613. OP_COMMIT, /* 108 */
  614. /* These are forced failure and success verbs */
  615. OP_FAIL, /* 109 */
  616. OP_ACCEPT, /* 110 */
  617. /* This is used to skip a subpattern with a {0} quantifier */
  618. OP_SKIPZERO /* 111 */
  619. };
  620. /* This macro defines textual names for all the opcodes. These are used only
  621. for debugging. The macro is referenced only in pcre_printint.c. */
  622. #define OP_NAME_LIST \
  623. "End", "\\A", "\\G", "\\K", "\\B", "\\b", "\\D", "\\d", \
  624. "\\S", "\\s", "\\W", "\\w", "Any", "AllAny", "Anybyte", \
  625. "notprop", "prop", "\\R", "\\H", "\\h", "\\V", "\\v", \
  626. "extuni", "\\Z", "\\z", \
  627. "Opt", "^", "$", "char", "charnc", "not", \
  628. "*", "*?", "+", "+?", "?", "??", "{", "{", "{", \
  629. "*+","++", "?+", "{", \
  630. "*", "*?", "+", "+?", "?", "??", "{", "{", "{", \
  631. "*+","++", "?+", "{", \
  632. "*", "*?", "+", "+?", "?", "??", "{", "{", "{", \
  633. "*+","++", "?+", "{", \
  634. "*", "*?", "+", "+?", "?", "??", "{", "{", \
  635. "class", "nclass", "xclass", "Ref", "Recurse", "Callout", \
  636. "Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \
  637. "AssertB", "AssertB not", "Reverse", \
  638. "Once", "Bra", "CBra", "Cond", "SBra", "SCBra", "SCond", \
  639. "Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero", \
  640. "*PRUNE", "*SKIP", "*THEN", "*COMMIT", "*FAIL", "*ACCEPT", \
  641. "Skip zero"
  642. /* This macro defines the length of fixed length operations in the compiled
  643. regex. The lengths are used when searching for specific things, and also in the
  644. debugging printing of a compiled regex. We use a macro so that it can be
  645. defined close to the definitions of the opcodes themselves.
  646. As things have been extended, some of these are no longer fixed lenths, but are
  647. minima instead. For example, the length of a single-character repeat may vary
  648. in UTF-8 mode. The code that uses this table must know about such things. */
  649. #define OP_LENGTHS \
  650. 1, /* End */ \
  651. 1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \
  652. 1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \
  653. 1, 1, 1, /* Any, AllAny, Anybyte */ \
  654. 3, 3, 1, /* NOTPROP, PROP, EXTUNI */ \
  655. 1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \
  656. 1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \
  657. 2, /* Char - the minimum length */ \
  658. 2, /* Charnc - the minimum length */ \
  659. 2, /* not */ \
  660. /* Positive single-char repeats ** These are */ \
  661. 2, 2, 2, 2, 2, 2, /* *, *?, +, +?, ?, ?? ** minima in */ \
  662. 4, 4, 4, /* upto, minupto, exact ** UTF-8 mode */ \
  663. 2, 2, 2, 4, /* *+, ++, ?+, upto+ */ \
  664. /* Negative single-char repeats - only for chars < 256 */ \
  665. 2, 2, 2, 2, 2, 2, /* NOT *, *?, +, +?, ?, ?? */ \
  666. 4, 4, 4, /* NOT upto, minupto, exact */ \
  667. 2, 2, 2, 4, /* Possessive *, +, ?, upto */ \
  668. /* Positive type repeats */ \
  669. 2, 2, 2, 2, 2, 2, /* Type *, *?, +, +?, ?, ?? */ \
  670. 4, 4, 4, /* Type upto, minupto, exact */ \
  671. 2, 2, 2, 4, /* Possessive *+, ++, ?+, upto+ */ \
  672. /* Character class & ref repeats */ \
  673. 1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */ \
  674. 5, 5, /* CRRANGE, CRMINRANGE */ \
  675. 33, /* CLASS */ \
  676. 33, /* NCLASS */ \
  677. 0, /* XCLASS - variable length */ \
  678. 3, /* REF */ \
  679. 1+LINK_SIZE, /* RECURSE */ \
  680. 2+2*LINK_SIZE, /* CALLOUT */ \
  681. 1+LINK_SIZE, /* Alt */ \
  682. 1+LINK_SIZE, /* Ket */ \
  683. 1+LINK_SIZE, /* KetRmax */ \
  684. 1+LINK_SIZE, /* KetRmin */ \
  685. 1+LINK_SIZE, /* Assert */ \
  686. 1+LINK_SIZE, /* Assert not */ \
  687. 1+LINK_SIZE, /* Assert behind */ \
  688. 1+LINK_SIZE, /* Assert behind not */ \
  689. 1+LINK_SIZE, /* Reverse */ \
  690. 1+LINK_SIZE, /* ONCE */ \
  691. 1+LINK_SIZE, /* BRA */ \
  692. 3+LINK_SIZE, /* CBRA */ \
  693. 1+LINK_SIZE, /* COND */ \
  694. 1+LINK_SIZE, /* SBRA */ \
  695. 3+LINK_SIZE, /* SCBRA */ \
  696. 1+LINK_SIZE, /* SCOND */ \
  697. 3, /* CREF */ \
  698. 3, /* RREF */ \
  699. 1, /* DEF */ \
  700. 1, 1, /* BRAZERO, BRAMINZERO */ \
  701. 1, 1, 1, 1, /* PRUNE, SKIP, THEN, COMMIT, */ \
  702. 1, 1, 1 /* FAIL, ACCEPT, SKIPZERO */
  703. /* A magic value for OP_RREF to indicate the "any recursion" condition. */
  704. #define RREF_ANY 0xffff
  705. /* Error code numbers. They are given names so that they can more easily be
  706. tracked. */
  707. enum { ERR0, ERR1, ERR2, ERR3, ERR4, ERR5, ERR6, ERR7, ERR8, ERR9,
  708. ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19,
  709. ERR20, ERR21, ERR22, ERR23, ERR24, ERR25, ERR26, ERR27, ERR28, ERR29,
  710. ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39,
  711. ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49,
  712. ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59,
  713. ERR60, ERR61, ERR62, ERR63, ERR64 };
  714. /* The real format of the start of the pcre block; the index of names and the
  715. code vector run on as long as necessary after the end. We store an explicit
  716. offset to the name table so that if a regex is compiled on one host, saved, and
  717. then run on another where the size of pointers is different, all might still
  718. be well. For the case of compiled-on-4 and run-on-8, we include an extra
  719. pointer that is always NULL. For future-proofing, a few dummy fields were
  720. originally included - even though you can never get this planning right - but
  721. there is only one left now.
  722. NOTE NOTE NOTE:
  723. Because people can now save and re-use compiled patterns, any additions to this
  724. structure should be made at the end, and something earlier (e.g. a new
  725. flag in the options or one of the dummy fields) should indicate that the new
  726. fields are present. Currently PCRE always sets the dummy fields to zero.
  727. NOTE NOTE NOTE:
  728. */
  729. typedef struct real_pcre {
  730. pcre_uint32 magic_number;
  731. pcre_uint32 size; /* Total that was malloced */
  732. pcre_uint32 options; /* Public options */
  733. pcre_uint16 flags; /* Private flags */
  734. pcre_uint16 dummy1; /* For future use */
  735. pcre_uint16 top_bracket;
  736. pcre_uint16 top_backref;
  737. pcre_uint16 first_byte;
  738. pcre_uint16 req_byte;
  739. pcre_uint16 name_table_offset; /* Offset to name table that follows */
  740. pcre_uint16 name_entry_size; /* Size of any name items */
  741. pcre_uint16 name_count; /* Number of name items */
  742. pcre_uint16 ref_count; /* Reference count */
  743. const unsigned char *tables; /* Pointer to tables or NULL for std */
  744. const unsigned char *nullpad; /* NULL padding */
  745. } real_pcre;
  746. /* The format of the block used to store data from pcre_study(). The same
  747. remark (see NOTE above) about extending this structure applies. */
  748. typedef struct pcre_study_data {
  749. pcre_uint32 size; /* Total that was malloced */
  750. pcre_uint32 options;
  751. uschar start_bits[32];
  752. } pcre_study_data;
  753. /* Structure for passing "static" information around between the functions
  754. doing the compiling, so that they are thread-safe. */
  755. typedef struct compile_data {
  756. const uschar *lcc; /* Points to lower casing table */
  757. const uschar *fcc; /* Points to case-flipping table */
  758. const uschar *cbits; /* Points to character type table */
  759. const uschar *ctypes; /* Points to table of type maps */
  760. const uschar *start_workspace;/* The start of working space */
  761. const uschar *start_code; /* The start of the compiled code */
  762. const uschar *start_pattern; /* The start of the pattern */
  763. const uschar *end_pattern; /* The end of the pattern */
  764. uschar *hwm; /* High watermark of workspace */
  765. uschar *name_table; /* The name/number table */
  766. int names_found; /* Number of entries so far */
  767. int name_entry_size; /* Size of each entry */
  768. int bracount; /* Count of capturing parens as we compile */
  769. int final_bracount; /* Saved value after first pass */
  770. int top_backref; /* Maximum back reference */
  771. unsigned int backref_map; /* Bitmap of low back refs */
  772. int external_options; /* External (initial) options */
  773. int external_flags; /* External flag bits to be set */
  774. int req_varyopt; /* "After variable item" flag for reqbyte */
  775. BOOL had_accept; /* (*ACCEPT) encountered */
  776. int nltype; /* Newline type */
  777. int nllen; /* Newline string length */
  778. uschar nl[4]; /* Newline string when fixed length */
  779. } compile_data;
  780. /* Structure for maintaining a chain of pointers to the currently incomplete
  781. branches, for testing for left recursion. */
  782. typedef struct branch_chain {
  783. struct branch_chain *outer;
  784. uschar *current;
  785. } branch_chain;
  786. /* Structure for items in a linked list that represents an explicit recursive
  787. call within the pattern. */
  788. typedef struct recursion_info {
  789. struct recursion_info *prevrec; /* Previous recursion record (or NULL) */
  790. int group_num; /* Number of group that was called */
  791. const uschar *after_call; /* "Return value": points after the call in the expr */
  792. USPTR save_start; /* Old value of mstart */
  793. int *offset_save; /* Pointer to start of saved offsets */
  794. int saved_max; /* Number of saved offsets */
  795. } recursion_info;
  796. /* Structure for building a chain of data for holding the values of the subject
  797. pointer at the start of each subpattern, so as to detect when an empty string
  798. has been matched by a subpattern - to break infinite loops. */
  799. typedef struct eptrblock {
  800. struct eptrblock *epb_prev;
  801. USPTR epb_saved_eptr;
  802. } eptrblock;
  803. /* Structure for passing "static" information around between the functions
  804. doing traditional NFA matching, so that they are thread-safe. */
  805. typedef struct match_data {
  806. unsigned long int match_call_count; /* As it says */
  807. unsigned long int match_limit; /* As it says */
  808. unsigned long int match_limit_recursion; /* As it says */
  809. int *offset_vector; /* Offset vector */
  810. int offset_end; /* One past the end */
  811. int offset_max; /* The maximum usable for return data */
  812. int nltype; /* Newline type */
  813. int nllen; /* Newline string length */
  814. uschar nl[4]; /* Newline string when fixed */
  815. const uschar *lcc; /* Points to lower casing table */
  816. const uschar *ctypes; /* Points to table of type maps */
  817. BOOL offset_overflow; /* Set if too many extractions */
  818. BOOL notbol; /* NOTBOL flag */
  819. BOOL noteol; /* NOTEOL flag */
  820. BOOL utf8; /* UTF8 flag */
  821. BOOL jscript_compat; /* JAVASCRIPT_COMPAT flag */
  822. BOOL endonly; /* Dollar not before final \n */
  823. BOOL notempty; /* Empty string match not wanted */
  824. BOOL partial; /* PARTIAL flag */
  825. BOOL hitend; /* Hit the end of the subject at some point */
  826. BOOL bsr_anycrlf; /* \R is just any CRLF, not full Unicode */
  827. const uschar *start_code; /* For use when recursing */
  828. USPTR start_subject; /* Start of the subject string */
  829. USPTR end_subject; /* End of the subject string */
  830. USPTR start_match_ptr; /* Start of matched string */
  831. USPTR end_match_ptr; /* Subject position at end match */
  832. int end_offset_top; /* Highwater mark at end of match */
  833. int capture_last; /* Most recent capture number */
  834. int start_offset; /* The start offset value */
  835. eptrblock *eptrchain; /* Chain of eptrblocks for tail recursions */
  836. int eptrn; /* Next free eptrblock */
  837. recursion_info *recursive; /* Linked list of recursion data */
  838. void *callout_data; /* To pass back to callouts */
  839. } match_data;
  840. /* A similar structure is used for the same purpose by the DFA matching
  841. functions. */
  842. typedef struct dfa_match_data {
  843. const uschar *start_code; /* Start of the compiled pattern */
  844. const uschar *start_subject; /* Start of the subject string */
  845. const uschar *end_subject; /* End of subject string */
  846. const uschar *tables; /* Character tables */
  847. int moptions; /* Match options */
  848. int poptions; /* Pattern options */
  849. int nltype; /* Newline type */
  850. int nllen; /* Newline string length */
  851. uschar nl[4]; /* Newline string when fixed */
  852. void *callout_data; /* To pass back to callouts */
  853. } dfa_match_data;
  854. /* Bit definitions for entries in the pcre_ctypes table. */
  855. #define ctype_space 0x01
  856. #define ctype_letter 0x02
  857. #define ctype_digit 0x04
  858. #define ctype_xdigit 0x08
  859. #define ctype_word 0x10 /* alphanumeric or '_' */
  860. #define ctype_meta 0x80 /* regexp meta char or zero (end pattern) */
  861. /* Offsets for the bitmap tables in pcre_cbits. Each table contains a set
  862. of bits for a class map. Some classes are built by combining these tables. */
  863. #define cbit_space 0 /* [:space:] or \s */
  864. #define cbit_xdigit 32 /* [:xdigit:] */
  865. #define cbit_digit 64 /* [:digit:] or \d */
  866. #define cbit_upper 96 /* [:upper:] */
  867. #define cbit_lower 128 /* [:lower:] */
  868. #define cbit_word 160 /* [:word:] or \w */
  869. #define cbit_graph 192 /* [:graph:] */
  870. #define cbit_print 224 /* [:print:] */
  871. #define cbit_punct 256 /* [:punct:] */
  872. #define cbit_cntrl 288 /* [:cntrl:] */
  873. #define cbit_length 320 /* Length of the cbits table */
  874. /* Offsets of the various tables from the base tables pointer, and
  875. total length. */
  876. #define lcc_offset 0
  877. #define fcc_offset 256
  878. #define cbits_offset 512
  879. #define ctypes_offset (cbits_offset + cbit_length)
  880. #define tables_length (ctypes_offset + 256)
  881. /* Layout of the UCP type table that translates property names into types and
  882. codes. Each entry used to point directly to a name, but to reduce the number of
  883. relocations in shared libraries, it now has an offset into a single string
  884. instead. */
  885. typedef struct {
  886. pcre_uint16 name_offset;
  887. pcre_uint16 type;
  888. pcre_uint16 value;
  889. } ucp_type_table;
  890. /* Internal shared data tables. These are tables that are used by more than one
  891. of the exported public functions. They have to be "external" in the C sense,
  892. but are not part of the PCRE public API. The data for these tables is in the
  893. pcre_tables.c module. */
  894. extern const int _pcre_utf8_table1[];
  895. extern const int _pcre_utf8_table2[];
  896. extern const int _pcre_utf8_table3[];
  897. extern const uschar _pcre_utf8_table4[];
  898. extern const int _pcre_utf8_table1_size;
  899. extern const char _pcre_utt_names[];
  900. extern const ucp_type_table _pcre_utt[];
  901. extern const int _pcre_utt_size;
  902. extern const uschar _pcre_default_tables[];
  903. extern const uschar _pcre_OP_lengths[];
  904. /* Internal shared functions. These are functions that are used by more than
  905. one of the exported public functions. They have to be "external" in the C
  906. sense, but are not part of the PCRE public API. */
  907. extern BOOL _pcre_is_newline(const uschar *, int, const uschar *,
  908. int *, BOOL);
  909. extern int _pcre_ord2utf8(int, uschar *);
  910. extern real_pcre *_pcre_try_flipped(const real_pcre *, real_pcre *,
  911. const pcre_study_data *, pcre_study_data *);
  912. extern int _pcre_ucp_findprop(const unsigned int, int *, int *);
  913. extern unsigned int _pcre_ucp_othercase(const unsigned int);
  914. extern int _pcre_valid_utf8(const uschar *, int);
  915. extern BOOL _pcre_was_newline(const uschar *, int, const uschar *,
  916. int *, BOOL);
  917. extern BOOL _pcre_xclass(int, const uschar *);
  918. #endif
  919. /* End of pcre_internal.h */