/[pcre]/code/trunk/pcre_compile.c
ViewVC logotype

Contents of /code/trunk/pcre_compile.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 807 - (hide annotations) (download)
Sun Dec 18 10:03:38 2011 UTC (17 months ago) by ph10
File MIME type: text/plain
File size: 255196 byte(s)
Renamed isnumber in pcre_compile to avoid a clash with ctype.h in Macs, and 
fixed a bug in fixed-length calculation for lookbehinds that would show up only 
in quite long subpatterns.

1 nigel 77 /*************************************************
2     * Perl-Compatible Regular Expressions *
3     *************************************************/
4    
5     /* PCRE is a library of functions to support regular expressions whose syntax
6     and semantics are as close as possible to those of the Perl 5 language.
7    
8     Written by Philip Hazel
9 ph10 598 Copyright (c) 1997-2011 University of Cambridge
10 nigel 77
11     -----------------------------------------------------------------------------
12     Redistribution and use in source and binary forms, with or without
13     modification, are permitted provided that the following conditions are met:
14    
15     * Redistributions of source code must retain the above copyright notice,
16     this list of conditions and the following disclaimer.
17    
18     * Redistributions in binary form must reproduce the above copyright
19     notice, this list of conditions and the following disclaimer in the
20     documentation and/or other materials provided with the distribution.
21    
22     * Neither the name of the University of Cambridge nor the names of its
23     contributors may be used to endorse or promote products derived from
24     this software without specific prior written permission.
25    
26     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29     ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30     LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31     CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32     SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33     INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34     CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35     ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36     POSSIBILITY OF SUCH DAMAGE.
37     -----------------------------------------------------------------------------
38     */
39    
40    
41     /* This module contains the external function pcre_compile(), along with
42     supporting internal functions that are not used by other modules. */
43    
44    
45 ph10 200 #ifdef HAVE_CONFIG_H
46 ph10 236 #include "config.h"
47 ph10 200 #endif
48 ph10 199
49 nigel 93 #define NLBLOCK cd /* Block containing newline information */
50     #define PSSTART start_pattern /* Field containing processed string start */
51     #define PSEND end_pattern /* Field containing processed string end */
52    
53 nigel 77 #include "pcre_internal.h"
54    
55    
56 ph10 475 /* When PCRE_DEBUG is defined, we need the pcre_printint() function, which is
57     also used by pcretest. PCRE_DEBUG is not defined when building a production
58     library. */
59 nigel 85
60 ph10 475 #ifdef PCRE_DEBUG
61 nigel 85 #include "pcre_printint.src"
62     #endif
63    
64    
65 ph10 178 /* Macro for setting individual bits in class bitmaps. */
66    
67     #define SETBIT(a,b) a[b/8] |= (1 << (b%8))
68    
69 ph10 202 /* Maximum length value to check against when making sure that the integer that
70     holds the compiled pattern length does not overflow. We make it a bit less than
71     INT_MAX to allow for adding in group terminating bytes, so that we don't have
72     to check them every time. */
73 ph10 178
74 ph10 202 #define OFLOW_MAX (INT_MAX - 20)
75    
76    
77 nigel 77 /*************************************************
78     * Code parameters and static tables *
79     *************************************************/
80    
81 nigel 93 /* This value specifies the size of stack workspace that is used during the
82     first pre-compile phase that determines how much memory is required. The regex
83     is partly compiled into this space, but the compiled parts are discarded as
84     soon as they can be, so that hopefully there will never be an overrun. The code
85     does, however, check for an overrun. The largest amount I've seen used is 218,
86     so this number is very generous.
87 nigel 77
88 nigel 93 The same workspace is used during the second, actual compile phase for
89     remembering forward references to groups so that they can be filled in at the
90     end. Each entry in this list occupies LINK_SIZE bytes, so even when LINK_SIZE
91 ph10 788 is 4 there is plenty of room for most patterns. However, the memory can get
92 ph10 773 filled up by repetitions of forward references, for example patterns like
93 ph10 788 /(?1){0,1999}(b)/, and one user did hit the limit. The code has been changed so
94 ph10 773 that the workspace is expanded using malloc() in this situation. The value
95     below is therefore a minimum, and we put a maximum on it for safety. The
96 ph10 788 minimum is now also defined in terms of LINK_SIZE so that the use of malloc()
97 ph10 773 kicks in at the same number of forward references in all cases. */
98 nigel 77
99 ph10 773 #define COMPILE_WORK_SIZE (2048*LINK_SIZE)
100     #define COMPILE_WORK_SIZE_MAX (100*COMPILE_WORK_SIZE)
101 nigel 77
102 ph10 507 /* The overrun tests check for a slightly smaller size so that they detect the
103 ph10 505 overrun before it actually does run off the end of the data block. */
104 nigel 93
105 ph10 773 #define WORK_SIZE_SAFETY_MARGIN (100)
106 ph10 505
107    
108 nigel 77 /* Table for handling escaped characters in the range '0'-'z'. Positive returns
109     are simple data values; negative values are for special things like \d and so
110     on. Zero means further processing is needed (for things like \x), or the escape
111     is invalid. */
112    
113 ph10 391 #ifndef EBCDIC
114    
115     /* This is the "normal" table for ASCII systems or for EBCDIC systems running
116 ph10 392 in UTF-8 mode. */
117 ph10 391
118 ph10 392 static const short int escapes[] = {
119 ph10 391 0, 0,
120     0, 0,
121 ph10 392 0, 0,
122     0, 0,
123     0, 0,
124 ph10 391 CHAR_COLON, CHAR_SEMICOLON,
125 ph10 392 CHAR_LESS_THAN_SIGN, CHAR_EQUALS_SIGN,
126 ph10 391 CHAR_GREATER_THAN_SIGN, CHAR_QUESTION_MARK,
127 ph10 392 CHAR_COMMERCIAL_AT, -ESC_A,
128     -ESC_B, -ESC_C,
129     -ESC_D, -ESC_E,
130     0, -ESC_G,
131     -ESC_H, 0,
132     0, -ESC_K,
133 ph10 391 0, 0,
134 ph10 514 -ESC_N, 0,
135 ph10 391 -ESC_P, -ESC_Q,
136     -ESC_R, -ESC_S,
137 ph10 392 0, 0,
138     -ESC_V, -ESC_W,
139     -ESC_X, 0,
140     -ESC_Z, CHAR_LEFT_SQUARE_BRACKET,
141 ph10 391 CHAR_BACKSLASH, CHAR_RIGHT_SQUARE_BRACKET,
142 ph10 392 CHAR_CIRCUMFLEX_ACCENT, CHAR_UNDERSCORE,
143 ph10 391 CHAR_GRAVE_ACCENT, 7,
144 ph10 392 -ESC_b, 0,
145     -ESC_d, ESC_e,
146 ph10 391 ESC_f, 0,
147     -ESC_h, 0,
148 ph10 392 0, -ESC_k,
149 ph10 391 0, 0,
150     ESC_n, 0,
151 ph10 392 -ESC_p, 0,
152     ESC_r, -ESC_s,
153 ph10 391 ESC_tee, 0,
154 ph10 392 -ESC_v, -ESC_w,
155     0, 0,
156 ph10 391 -ESC_z
157 nigel 77 };
158    
159 ph10 392 #else
160 ph10 391
161     /* This is the "abnormal" table for EBCDIC systems without UTF-8 support. */
162    
163 nigel 77 static const short int escapes[] = {
164     /* 48 */ 0, 0, 0, '.', '<', '(', '+', '|',
165     /* 50 */ '&', 0, 0, 0, 0, 0, 0, 0,
166     /* 58 */ 0, 0, '!', '$', '*', ')', ';', '~',
167     /* 60 */ '-', '/', 0, 0, 0, 0, 0, 0,
168     /* 68 */ 0, 0, '|', ',', '%', '_', '>', '?',
169     /* 70 */ 0, 0, 0, 0, 0, 0, 0, 0,
170     /* 78 */ 0, '`', ':', '#', '@', '\'', '=', '"',
171     /* 80 */ 0, 7, -ESC_b, 0, -ESC_d, ESC_e, ESC_f, 0,
172 ph10 178 /* 88 */-ESC_h, 0, 0, '{', 0, 0, 0, 0,
173 nigel 93 /* 90 */ 0, 0, -ESC_k, 'l', 0, ESC_n, 0, -ESC_p,
174 nigel 77 /* 98 */ 0, ESC_r, 0, '}', 0, 0, 0, 0,
175 ph10 178 /* A0 */ 0, '~', -ESC_s, ESC_tee, 0,-ESC_v, -ESC_w, 0,
176 nigel 77 /* A8 */ 0,-ESC_z, 0, 0, 0, '[', 0, 0,
177     /* B0 */ 0, 0, 0, 0, 0, 0, 0, 0,
178     /* B8 */ 0, 0, 0, 0, 0, ']', '=', '-',
179     /* C0 */ '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G,
180 ph10 178 /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0,
181 ph10 514 /* D0 */ '}', 0, -ESC_K, 0, 0,-ESC_N, 0, -ESC_P,
182 nigel 93 /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0,
183 ph10 178 /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X,
184 nigel 77 /* E8 */ 0,-ESC_Z, 0, 0, 0, 0, 0, 0,
185     /* F0 */ 0, 0, 0, 0, 0, 0, 0, 0,
186     /* F8 */ 0, 0, 0, 0, 0, 0, 0, 0
187     };
188     #endif
189    
190    
191 ph10 243 /* Table of special "verbs" like (*PRUNE). This is a short table, so it is
192     searched linearly. Put all the names into a single string, in order to reduce
193 ph10 392 the number of relocations when a shared library is dynamically linked. The
194     string is built from string macros so that it works in UTF-8 mode on EBCDIC
195 ph10 391 platforms. */
196 ph10 210
197     typedef struct verbitem {
198 ph10 510 int len; /* Length of verb name */
199     int op; /* Op when no arg, or -1 if arg mandatory */
200     int op_arg; /* Op when arg present, or -1 if not allowed */
201 ph10 211 } verbitem;
202 ph10 210
203 ph10 240 static const char verbnames[] =
204 ph10 510 "\0" /* Empty name is a shorthand for MARK */
205 ph10 512 STRING_MARK0
206 ph10 391 STRING_ACCEPT0
207     STRING_COMMIT0
208     STRING_F0
209     STRING_FAIL0
210     STRING_PRUNE0
211     STRING_SKIP0
212     STRING_THEN;
213 ph10 240
214 ph10 327 static const verbitem verbs[] = {
215 ph10 510 { 0, -1, OP_MARK },
216 ph10 512 { 4, -1, OP_MARK },
217 ph10 510 { 6, OP_ACCEPT, -1 },
218     { 6, OP_COMMIT, -1 },
219     { 1, OP_FAIL, -1 },
220     { 4, OP_FAIL, -1 },
221     { 5, OP_PRUNE, OP_PRUNE_ARG },
222     { 4, OP_SKIP, OP_SKIP_ARG },
223     { 4, OP_THEN, OP_THEN_ARG }
224 ph10 210 };
225    
226 ph10 327 static const int verbcount = sizeof(verbs)/sizeof(verbitem);
227 ph10 210
228    
229 ph10 243 /* Tables of names of POSIX character classes and their lengths. The names are
230     now all in a single string, to reduce the number of relocations when a shared
231 ph10 240 library is dynamically loaded. The list of lengths is terminated by a zero
232     length entry. The first three must be alpha, lower, upper, as this is assumed
233     for handling case independence. */
234 nigel 77
235 ph10 240 static const char posix_names[] =
236 ph10 392 STRING_alpha0 STRING_lower0 STRING_upper0 STRING_alnum0
237     STRING_ascii0 STRING_blank0 STRING_cntrl0 STRING_digit0
238 ph10 391 STRING_graph0 STRING_print0 STRING_punct0 STRING_space0
239     STRING_word0 STRING_xdigit;
240 nigel 77
241     static const uschar posix_name_lengths[] = {
242     5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 };
243    
244 nigel 87 /* Table of class bit maps for each POSIX class. Each class is formed from a
245     base map, with an optional addition or removal of another map. Then, for some
246     classes, there is some additional tweaking: for [:blank:] the vertical space
247     characters are removed, and for [:alpha:] and [:alnum:] the underscore
248     character is removed. The triples in the table consist of the base map offset,
249     second map offset or -1 if no second map, and a non-negative value for map
250     addition or a negative value for map subtraction (if there are two maps). The
251     absolute value of the third field has these meanings: 0 => no tweaking, 1 =>
252     remove vertical space characters, 2 => remove underscore. */
253 nigel 77
254     static const int posix_class_maps[] = {
255 nigel 87 cbit_word, cbit_digit, -2, /* alpha */
256     cbit_lower, -1, 0, /* lower */
257     cbit_upper, -1, 0, /* upper */
258     cbit_word, -1, 2, /* alnum - word without underscore */
259     cbit_print, cbit_cntrl, 0, /* ascii */
260     cbit_space, -1, 1, /* blank - a GNU extension */
261     cbit_cntrl, -1, 0, /* cntrl */
262     cbit_digit, -1, 0, /* digit */
263     cbit_graph, -1, 0, /* graph */
264     cbit_print, -1, 0, /* print */
265     cbit_punct, -1, 0, /* punct */
266     cbit_space, -1, 0, /* space */
267     cbit_word, -1, 0, /* word - a Perl extension */
268     cbit_xdigit,-1, 0 /* xdigit */
269 nigel 77 };
270    
271 ph10 535 /* Table of substitutes for \d etc when PCRE_UCP is set. The POSIX class
272     substitutes must be in the order of the names, defined above, and there are
273 ph10 518 both positive and negative cases. NULL means no substitute. */
274 nigel 77
275 ph10 518 #ifdef SUPPORT_UCP
276     static const uschar *substitutes[] = {
277     (uschar *)"\\P{Nd}", /* \D */
278     (uschar *)"\\p{Nd}", /* \d */
279     (uschar *)"\\P{Xsp}", /* \S */ /* NOTE: Xsp is Perl space */
280     (uschar *)"\\p{Xsp}", /* \s */
281     (uschar *)"\\P{Xwd}", /* \W */
282 ph10 535 (uschar *)"\\p{Xwd}" /* \w */
283 ph10 518 };
284 ph10 535
285 ph10 518 static const uschar *posix_substitutes[] = {
286     (uschar *)"\\p{L}", /* alpha */
287 ph10 535 (uschar *)"\\p{Ll}", /* lower */
288     (uschar *)"\\p{Lu}", /* upper */
289     (uschar *)"\\p{Xan}", /* alnum */
290 ph10 518 NULL, /* ascii */
291     (uschar *)"\\h", /* blank */
292     NULL, /* cntrl */
293     (uschar *)"\\p{Nd}", /* digit */
294     NULL, /* graph */
295     NULL, /* print */
296     NULL, /* punct */
297     (uschar *)"\\p{Xps}", /* space */ /* NOTE: Xps is POSIX space */
298     (uschar *)"\\p{Xwd}", /* word */
299 ph10 535 NULL, /* xdigit */
300 ph10 518 /* Negated cases */
301     (uschar *)"\\P{L}", /* ^alpha */
302 ph10 535 (uschar *)"\\P{Ll}", /* ^lower */
303     (uschar *)"\\P{Lu}", /* ^upper */
304     (uschar *)"\\P{Xan}", /* ^alnum */
305 ph10 518 NULL, /* ^ascii */
306     (uschar *)"\\H", /* ^blank */
307     NULL, /* ^cntrl */
308     (uschar *)"\\P{Nd}", /* ^digit */
309     NULL, /* ^graph */
310     NULL, /* ^print */
311     NULL, /* ^punct */
312     (uschar *)"\\P{Xps}", /* ^space */ /* NOTE: Xps is POSIX space */
313     (uschar *)"\\P{Xwd}", /* ^word */
314 ph10 535 NULL /* ^xdigit */
315 ph10 518 };
316     #define POSIX_SUBSIZE (sizeof(posix_substitutes)/sizeof(uschar *))
317 ph10 535 #endif
318 ph10 518
319 nigel 93 #define STRING(a) # a
320     #define XSTRING(s) STRING(s)
321    
322 nigel 77 /* The texts of compile-time error messages. These are "char *" because they
323 nigel 93 are passed to the outside world. Do not ever re-use any error number, because
324     they are documented. Always add a new error instead. Messages marked DEAD below
325 ph10 243 are no longer used. This used to be a table of strings, but in order to reduce
326     the number of relocations needed when a shared library is loaded dynamically,
327     it is now one long string. We cannot use a table of offsets, because the
328     lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we
329     simply count through to the one we want - this isn't a performance issue
330 ph10 507 because these strings are used only when there is a compilation error.
331 nigel 77
332 ph10 507 Each substring ends with \0 to insert a null character. This includes the final
333     substring, so that the whole string ends with \0\0, which can be detected when
334 ph10 499 counting through. */
335    
336 ph10 240 static const char error_texts[] =
337     "no error\0"
338     "\\ at end of pattern\0"
339     "\\c at end of pattern\0"
340     "unrecognized character follows \\\0"
341     "numbers out of order in {} quantifier\0"
342 nigel 77 /* 5 */
343 ph10 240 "number too big in {} quantifier\0"
344     "missing terminating ] for character class\0"
345     "invalid escape sequence in character class\0"
346     "range out of order in character class\0"
347     "nothing to repeat\0"
348 nigel 77 /* 10 */
349 ph10 240 "operand of unlimited repeat could match the empty string\0" /** DEAD **/
350     "internal error: unexpected repeat\0"
351 ph10 269 "unrecognized character after (? or (?-\0"
352 ph10 240 "POSIX named classes are supported only within a class\0"
353     "missing )\0"
354 nigel 77 /* 15 */
355 ph10 240 "reference to non-existent subpattern\0"
356     "erroffset passed as NULL\0"
357     "unknown option bit(s) set\0"
358     "missing ) after comment\0"
359     "parentheses nested too deeply\0" /** DEAD **/
360 nigel 77 /* 20 */
361 ph10 240 "regular expression is too large\0"
362     "failed to get memory\0"
363     "unmatched parentheses\0"
364     "internal error: code overflow\0"
365     "unrecognized character after (?<\0"
366 nigel 77 /* 25 */
367 ph10 240 "lookbehind assertion is not fixed length\0"
368     "malformed number or name after (?(\0"
369     "conditional group contains more than two branches\0"
370     "assertion expected after (?(\0"
371     "(?R or (?[+-]digits must be followed by )\0"
372 nigel 77 /* 30 */
373 ph10 240 "unknown POSIX class name\0"
374     "POSIX collating elements are not supported\0"
375     "this version of PCRE is not compiled with PCRE_UTF8 support\0"
376     "spare error\0" /** DEAD **/
377     "character value in \\x{...} sequence is too large\0"
378 nigel 77 /* 35 */
379 ph10 240 "invalid condition (?(0)\0"
380     "\\C not allowed in lookbehind assertion\0"
381 ph10 514 "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0"
382 ph10 240 "number after (?C is > 255\0"
383     "closing ) for (?C expected\0"
384 nigel 77 /* 40 */
385 ph10 240 "recursive call could loop indefinitely\0"
386     "unrecognized character after (?P\0"
387     "syntax error in subpattern name (missing terminator)\0"
388     "two named subpatterns have the same name\0"
389     "invalid UTF-8 string\0"
390 nigel 77 /* 45 */
391 ph10 240 "support for \\P, \\p, and \\X has not been compiled\0"
392     "malformed \\P or \\p sequence\0"
393     "unknown property name after \\P or \\p\0"
394     "subpattern name is too long (maximum " XSTRING(MAX_NAME_SIZE) " characters)\0"
395     "too many named subpatterns (maximum " XSTRING(MAX_NAME_COUNT) ")\0"
396 nigel 91 /* 50 */
397 ph10 240 "repeated subpattern is too long\0" /** DEAD **/
398     "octal value is greater than \\377 (not in UTF-8 mode)\0"
399     "internal error: overran compiling workspace\0"
400     "internal error: previously-checked referenced subpattern not found\0"
401     "DEFINE group contains more than one branch\0"
402 nigel 93 /* 55 */
403 ph10 637 "repeating a DEFINE group is not allowed\0" /** DEAD **/
404 ph10 240 "inconsistent NEWLINE options\0"
405 ph10 333 "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0"
406     "a numbered reference must not be zero\0"
407 ph10 510 "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)\0"
408 ph10 211 /* 60 */
409 ph10 240 "(*VERB) not recognized\0"
410 ph10 268 "number is too big\0"
411 ph10 272 "subpattern name expected\0"
412 ph10 336 "digit expected after (?+\0"
413 ph10 457 "] is an invalid data character in JavaScript compatibility mode\0"
414     /* 65 */
415 ph10 510 "different names for subpatterns of the same number are not allowed\0"
416 ph10 512 "(*MARK) must have an argument\0"
417 ph10 535 "this version of PCRE is not compiled with PCRE_UCP support\0"
418 ph10 579 "\\c must be followed by an ASCII character\0"
419 ph10 654 "\\k is not followed by a braced, angle-bracketed, or quoted name\0"
420 ph10 747 /* 70 */
421     "internal error: unknown opcode in find_fixedlength()\0"
422 ph10 788 "\\N is not supported in a class\0"
423     "too many forward references\0"
424 ph10 510 ;
425 nigel 77
426     /* Table to identify digits and hex digits. This is used when compiling
427     patterns. Note that the tables in chartables are dependent on the locale, and
428     may mark arbitrary characters as digits - but the PCRE compiling code expects
429     to handle only 0-9, a-z, and A-Z as digits when compiling. That is why we have
430     a private table here. It costs 256 bytes, but it is a lot faster than doing
431     character value tests (at least in some simple cases I timed), and in some
432     applications one wants PCRE to compile efficiently as well as match
433     efficiently.
434    
435     For convenience, we use the same bit definitions as in chartables:
436    
437     0x04 decimal digit
438     0x08 hexadecimal digit
439    
440     Then we can use ctype_digit and ctype_xdigit in the code. */
441    
442 ph10 392 #ifndef EBCDIC
443 ph10 391
444 ph10 392 /* This is the "normal" case, for ASCII systems, and EBCDIC systems running in
445 ph10 391 UTF-8 mode. */
446    
447 nigel 77 static const unsigned char digitab[] =
448     {
449     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */
450     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */
451     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 16- 23 */
452     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 24- 31 */
453     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* - ' */
454     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* ( - / */
455     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c, /* 0 - 7 */
456     0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00, /* 8 - ? */
457     0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00, /* @ - G */
458     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* H - O */
459     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* P - W */
460     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* X - _ */
461     0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00, /* ` - g */
462     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* h - o */
463     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* p - w */
464     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* x -127 */
465     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 128-135 */
466     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 136-143 */
467     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 144-151 */
468     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 152-159 */
469     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 160-167 */
470     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 168-175 */
471     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 176-183 */
472     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 184-191 */
473     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 192-199 */
474     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 200-207 */
475     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 208-215 */
476     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 216-223 */
477     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 224-231 */
478     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 232-239 */
479     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 240-247 */
480     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};/* 248-255 */
481    
482 ph10 392 #else
483 ph10 391
484     /* This is the "abnormal" case, for EBCDIC systems not running in UTF-8 mode. */
485    
486 nigel 77 static const unsigned char digitab[] =
487     {
488     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 0 */
489     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */
490     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 16- 23 10 */
491     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 24- 31 */
492     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 32- 39 20 */
493     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 40- 47 */
494     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 48- 55 30 */
495     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 56- 63 */
496     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* - 71 40 */
497     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 72- | */
498     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* & - 87 50 */
499 ph10 97 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 88- 95 */
500 nigel 77 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* - -103 60 */
501     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 104- ? */
502     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 112-119 70 */
503     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 120- " */
504     0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00, /* 128- g 80 */
505     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* h -143 */
506     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 144- p 90 */
507     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* q -159 */
508     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 160- x A0 */
509     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* y -175 */
510     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* ^ -183 B0 */
511     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 184-191 */
512     0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00, /* { - G C0 */
513     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* H -207 */
514     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* } - P D0 */
515     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* Q -223 */
516     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* \ - X E0 */
517     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* Y -239 */
518     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c, /* 0 - 7 F0 */
519     0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00};/* 8 -255 */
520    
521     static const unsigned char ebcdic_chartab[] = { /* chartable partial dup */
522     0x80,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 0- 7 */
523     0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00, /* 8- 15 */
524     0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 16- 23 */
525     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 24- 31 */
526     0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 32- 39 */
527     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 40- 47 */
528     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 48- 55 */
529     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 56- 63 */
530     0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* - 71 */
531     0x00,0x00,0x00,0x80,0x00,0x80,0x80,0x80, /* 72- | */
532     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* & - 87 */
533 ph10 97 0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00, /* 88- 95 */
534 nigel 77 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* - -103 */
535     0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x80, /* 104- ? */
536     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 112-119 */
537     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 120- " */
538     0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* 128- g */
539     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* h -143 */
540     0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* 144- p */
541     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* q -159 */
542     0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12, /* 160- x */
543     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* y -175 */
544     0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* ^ -183 */
545     0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00, /* 184-191 */
546     0x80,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* { - G */
547     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* H -207 */
548     0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* } - P */
549     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* Q -223 */
550     0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12, /* \ - X */
551     0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00, /* Y -239 */
552     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, /* 0 - 7 */
553     0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00};/* 8 -255 */
554     #endif
555    
556    
557     /* Definition to allow mutual recursion */
558    
559     static BOOL
560 ph10 642 compile_regex(int, uschar **, const uschar **, int *, BOOL, BOOL, int, int,
561     int *, int *, branch_chain *, compile_data *, int *);
562 nigel 77
563    
564    
565     /*************************************************
566 ph10 240 * Find an error text *
567     *************************************************/
568    
569 ph10 243 /* The error texts are now all in one long string, to save on relocations. As
570     some of the text is of unknown length, we can't use a table of offsets.
571     Instead, just count through the strings. This is not a performance issue
572 ph10 240 because it happens only when there has been a compilation error.
573    
574     Argument: the error number
575     Returns: pointer to the error string
576     */
577    
578     static const char *
579     find_error_text(int n)
580     {
581     const char *s = error_texts;
582 ph10 507 for (; n > 0; n--)
583 ph10 499 {
584     while (*s++ != 0) {};
585     if (*s == 0) return "Error text not found (please report)";
586 ph10 507 }
587 ph10 240 return s;
588     }
589    
590    
591     /*************************************************
592 ph10 773 * Expand the workspace *
593     *************************************************/
594    
595 ph10 788 /* This function is called during the second compiling phase, if the number of
596     forward references fills the existing workspace, which is originally a block on
597     the stack. A larger block is obtained from malloc() unless the ultimate limit
598 ph10 773 has been reached or the increase will be rather small.
599    
600     Argument: pointer to the compile data block
601     Returns: 0 if all went well, else an error number
602     */
603    
604     static int
605     expand_workspace(compile_data *cd)
606     {
607     uschar *newspace;
608     int newsize = cd->workspace_size * 2;
609    
610     if (newsize > COMPILE_WORK_SIZE_MAX) newsize = COMPILE_WORK_SIZE_MAX;
611     if (cd->workspace_size >= COMPILE_WORK_SIZE_MAX ||
612     newsize - cd->workspace_size < WORK_SIZE_SAFETY_MARGIN)
613     return ERR72;
614    
615     newspace = (pcre_malloc)(newsize);
616     if (newspace == NULL) return ERR21;
617    
618     memcpy(newspace, cd->start_workspace, cd->workspace_size);
619     cd->hwm = (uschar *)newspace + (cd->hwm - cd->start_workspace);
620 ph10 788 if (cd->workspace_size > COMPILE_WORK_SIZE)
621 ph10 773 (pcre_free)((void *)cd->start_workspace);
622     cd->start_workspace = newspace;
623     cd->workspace_size = newsize;
624     return 0;
625     }
626    
627    
628    
629     /*************************************************
630 ph10 640 * Check for counted repeat *
631     *************************************************/
632    
633     /* This function is called when a '{' is encountered in a place where it might
634     start a quantifier. It looks ahead to see if it really is a quantifier or not.
635     It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd}
636     where the ddds are digits.
637    
638     Arguments:
639     p pointer to the first char after '{'
640    
641     Returns: TRUE or FALSE
642     */
643    
644     static BOOL
645     is_counted_repeat(const uschar *p)
646     {
647     if ((digitab[*p++] & ctype_digit) == 0) return FALSE;
648     while ((digitab[*p] & ctype_digit) != 0) p++;
649     if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE;
650    
651     if (*p++ != CHAR_COMMA) return FALSE;
652     if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE;
653    
654     if ((digitab[*p++] & ctype_digit) == 0) return FALSE;
655     while ((digitab[*p] & ctype_digit) != 0) p++;
656    
657     return (*p == CHAR_RIGHT_CURLY_BRACKET);
658     }
659    
660    
661    
662     /*************************************************
663 nigel 77 * Handle escapes *
664     *************************************************/
665    
666     /* This function is called when a \ has been encountered. It either returns a
667     positive value for a simple escape such as \n, or a negative value which
668 nigel 93 encodes one of the more complicated things such as \d. A backreference to group
669     n is returned as -(ESC_REF + n); ESC_REF is the highest ESC_xxx macro. When
670     UTF-8 is enabled, a positive value greater than 255 may be returned. On entry,
671     ptr is pointing at the \. On exit, it is on the final character of the escape
672     sequence.
673 nigel 77
674     Arguments:
675     ptrptr points to the pattern position pointer
676     errorcodeptr points to the errorcode variable
677     bracount number of previous extracting brackets
678     options the options bits
679     isclass TRUE if inside a character class
680    
681     Returns: zero or positive => a data character
682     negative => a special escape sequence
683 ph10 213 on error, errorcodeptr is set
684 nigel 77 */
685    
686     static int
687     check_escape(const uschar **ptrptr, int *errorcodeptr, int bracount,
688     int options, BOOL isclass)
689     {
690 nigel 87 BOOL utf8 = (options & PCRE_UTF8) != 0;
691     const uschar *ptr = *ptrptr + 1;
692 nigel 77 int c, i;
693    
694 nigel 87 GETCHARINCTEST(c, ptr); /* Get character value, increment pointer */
695     ptr--; /* Set pointer back to the last byte */
696    
697 nigel 77 /* If backslash is at the end of the pattern, it's an error. */
698    
699     if (c == 0) *errorcodeptr = ERR1;
700    
701 ph10 274 /* Non-alphanumerics are literals. For digits or letters, do an initial lookup
702     in a table. A non-zero result is something that can be returned immediately.
703 nigel 77 Otherwise further processing may be required. */
704    
705 ph10 391 #ifndef EBCDIC /* ASCII/UTF-8 coding */
706     else if (c < CHAR_0 || c > CHAR_z) {} /* Not alphanumeric */
707     else if ((i = escapes[c - CHAR_0]) != 0) c = i;
708 nigel 77
709 ph10 97 #else /* EBCDIC coding */
710 ph10 274 else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */
711 nigel 77 else if ((i = escapes[c - 0x48]) != 0) c = i;
712     #endif
713    
714     /* Escapes that need further processing, or are illegal. */
715    
716     else
717     {
718     const uschar *oldptr;
719 nigel 93 BOOL braced, negated;
720    
721 nigel 77 switch (c)
722     {
723     /* A number of Perl escapes are not handled by PCRE. We give an explicit
724     error. */
725    
726 ph10 391 case CHAR_l:
727     case CHAR_L:
728 zherczeg 744 *errorcodeptr = ERR37;
729     break;
730    
731 ph10 391 case CHAR_u:
732 zherczeg 744 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
733     {
734     /* In JavaScript, \u must be followed by four hexadecimal numbers.
735     Otherwise it is a lowercase u letter. */
736     if ((digitab[ptr[1]] & ctype_xdigit) != 0 && (digitab[ptr[2]] & ctype_xdigit) != 0
737     && (digitab[ptr[3]] & ctype_xdigit) != 0 && (digitab[ptr[4]] & ctype_xdigit) != 0)
738     {
739     c = 0;
740     for (i = 0; i < 4; ++i)
741     {
742     register int cc = *(++ptr);
743     #ifndef EBCDIC /* ASCII/UTF-8 coding */
744     if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */
745     c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
746     #else /* EBCDIC coding */
747     if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */
748     c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
749     #endif
750     }
751     }
752     }
753     else
754     *errorcodeptr = ERR37;
755     break;
756    
757 ph10 391 case CHAR_U:
758 zherczeg 744 /* In JavaScript, \U is an uppercase U letter. */
759     if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) *errorcodeptr = ERR37;
760 nigel 77 break;
761    
762 ph10 654 /* In a character class, \g is just a literal "g". Outside a character
763 ph10 640 class, \g must be followed by one of a number of specific things:
764 ph10 345
765 ph10 333 (1) A number, either plain or braced. If positive, it is an absolute
766     backreference. If negative, it is a relative backreference. This is a Perl
767     5.10 feature.
768 ph10 345
769 ph10 333 (2) Perl 5.10 also supports \g{name} as a reference to a named group. This
770     is part of Perl's movement towards a unified syntax for back references. As
771     this is synonymous with \k{name}, we fudge it up by pretending it really
772     was \k.
773 ph10 345
774     (3) For Oniguruma compatibility we also support \g followed by a name or a
775     number either in angle brackets or in single quotes. However, these are
776     (possibly recursive) subroutine calls, _not_ backreferences. Just return
777 ph10 333 the -ESC_g code (cf \k). */
778 nigel 93
779 ph10 391 case CHAR_g:
780 ph10 640 if (isclass) break;
781 ph10 391 if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE)
782 ph10 333 {
783     c = -ESC_g;
784 ph10 345 break;
785     }
786 ph10 333
787     /* Handle the Perl-compatible cases */
788 ph10 345
789 ph10 391 if (ptr[1] == CHAR_LEFT_CURLY_BRACKET)
790 nigel 93 {
791 ph10 171 const uschar *p;
792 ph10 391 for (p = ptr+2; *p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET; p++)
793     if (*p != CHAR_MINUS && (digitab[*p] & ctype_digit) == 0) break;
794     if (*p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET)
795 ph10 171 {
796     c = -ESC_k;
797     break;
798 ph10 172 }
799 nigel 93 braced = TRUE;
800     ptr++;
801     }
802     else braced = FALSE;
803    
804 ph10 391 if (ptr[1] == CHAR_MINUS)
805 nigel 93 {
806     negated = TRUE;
807     ptr++;
808     }
809     else negated = FALSE;
810    
811     c = 0;
812     while ((digitab[ptr[1]] & ctype_digit) != 0)
813 ph10 391 c = c * 10 + *(++ptr) - CHAR_0;
814 ph10 220
815 ph10 333 if (c < 0) /* Integer overflow */
816 ph10 213 {
817     *errorcodeptr = ERR61;
818     break;
819 ph10 220 }
820 ph10 345
821 ph10 391 if (braced && *(++ptr) != CHAR_RIGHT_CURLY_BRACKET)
822 nigel 93 {
823     *errorcodeptr = ERR57;
824 ph10 213 break;
825 nigel 93 }
826 ph10 345
827 ph10 333 if (c == 0)
828     {
829     *errorcodeptr = ERR58;
830     break;
831 ph10 345 }
832 nigel 93
833     if (negated)
834     {
835     if (c > bracount)
836     {
837     *errorcodeptr = ERR15;
838 ph10 213 break;
839 nigel 93 }
840     c = bracount - (c - 1);
841     }
842    
843     c = -(ESC_REF + c);
844     break;
845    
846 nigel 77 /* The handling of escape sequences consisting of a string of digits
847     starting with one that is not zero is not straightforward. By experiment,
848     the way Perl works seems to be as follows:
849    
850     Outside a character class, the digits are read as a decimal number. If the
851     number is less than 10, or if there are that many previous extracting
852     left brackets, then it is a back reference. Otherwise, up to three octal
853     digits are read to form an escaped byte. Thus \123 is likely to be octal
854     123 (cf \0123, which is octal 012 followed by the literal 3). If the octal
855     value is greater than 377, the least significant 8 bits are taken. Inside a
856     character class, \ followed by a digit is always an octal number. */
857    
858 ph10 391 case CHAR_1: case CHAR_2: case CHAR_3: case CHAR_4: case CHAR_5:
859     case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9:
860 nigel 77
861     if (!isclass)
862     {
863     oldptr = ptr;
864 ph10 391 c -= CHAR_0;
865 nigel 77 while ((digitab[ptr[1]] & ctype_digit) != 0)
866 ph10 391 c = c * 10 + *(++ptr) - CHAR_0;
867 ph10 333 if (c < 0) /* Integer overflow */
868 ph10 213 {
869     *errorcodeptr = ERR61;
870 ph10 220 break;
871     }
872 nigel 77 if (c < 10 || c <= bracount)
873     {
874     c = -(ESC_REF + c);
875     break;
876     }
877     ptr = oldptr; /* Put the pointer back and fall through */
878     }
879    
880     /* Handle an octal number following \. If the first digit is 8 or 9, Perl
881     generates a binary zero byte and treats the digit as a following literal.
882     Thus we have to pull back the pointer by one. */
883    
884 ph10 391 if ((c = *ptr) >= CHAR_8)
885 nigel 77 {
886     ptr--;
887     c = 0;
888     break;
889     }
890    
891     /* \0 always starts an octal number, but we may drop through to here with a
892 nigel 91 larger first octal digit. The original code used just to take the least
893     significant 8 bits of octal numbers (I think this is what early Perls used
894     to do). Nowadays we allow for larger numbers in UTF-8 mode, but no more
895     than 3 octal digits. */
896 nigel 77
897 ph10 391 case CHAR_0:
898     c -= CHAR_0;
899     while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7)
900     c = c * 8 + *(++ptr) - CHAR_0;
901 nigel 91 if (!utf8 && c > 255) *errorcodeptr = ERR51;
902 nigel 77 break;
903    
904 nigel 87 /* \x is complicated. \x{ddd} is a character number which can be greater
905     than 0xff in utf8 mode, but only if the ddd are hex digits. If not, { is
906     treated as a data character. */
907 nigel 77
908 ph10 391 case CHAR_x:
909 zherczeg 744 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
910     {
911     /* In JavaScript, \x must be followed by two hexadecimal numbers.
912     Otherwise it is a lowercase x letter. */
913     if ((digitab[ptr[1]] & ctype_xdigit) != 0 && (digitab[ptr[2]] & ctype_xdigit) != 0)
914     {
915     c = 0;
916     for (i = 0; i < 2; ++i)
917     {
918     register int cc = *(++ptr);
919     #ifndef EBCDIC /* ASCII/UTF-8 coding */
920     if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */
921     c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
922     #else /* EBCDIC coding */
923     if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */
924     c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
925     #endif
926     }
927     }
928     break;
929     }
930    
931 ph10 391 if (ptr[1] == CHAR_LEFT_CURLY_BRACKET)
932 nigel 77 {
933     const uschar *pt = ptr + 2;
934 nigel 87 int count = 0;
935    
936 nigel 77 c = 0;
937     while ((digitab[*pt] & ctype_xdigit) != 0)
938     {
939 nigel 87 register int cc = *pt++;
940 ph10 391 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */
941 nigel 77 count++;
942 nigel 87
943 ph10 391 #ifndef EBCDIC /* ASCII/UTF-8 coding */
944     if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */
945     c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
946 ph10 97 #else /* EBCDIC coding */
947 ph10 391 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */
948     c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
949 nigel 77 #endif
950     }
951 nigel 87
952 ph10 391 if (*pt == CHAR_RIGHT_CURLY_BRACKET)
953 nigel 77 {
954 nigel 87 if (c < 0 || count > (utf8? 8 : 2)) *errorcodeptr = ERR34;
955 nigel 77 ptr = pt;
956     break;
957     }
958 nigel 87
959 nigel 77 /* If the sequence of hex digits does not end with '}', then we don't
960     recognize this construct; fall through to the normal \x handling. */
961     }
962    
963 nigel 87 /* Read just a single-byte hex-defined char */
964 nigel 77
965     c = 0;
966     while (i++ < 2 && (digitab[ptr[1]] & ctype_xdigit) != 0)
967     {
968 ph10 391 int cc; /* Some compilers don't like */
969     cc = *(++ptr); /* ++ in initializers */
970     #ifndef EBCDIC /* ASCII/UTF-8 coding */
971     if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */
972     c = c * 16 + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
973 ph10 97 #else /* EBCDIC coding */
974 ph10 391 if (cc <= CHAR_z) cc += 64; /* Convert to upper case */
975     c = c * 16 + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
976 nigel 77 #endif
977     }
978     break;
979    
980 nigel 93 /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped.
981 ph10 574 An error is given if the byte following \c is not an ASCII character. This
982     coding is ASCII-specific, but then the whole concept of \cx is
983 nigel 93 ASCII-specific. (However, an EBCDIC equivalent has now been added.) */
984 nigel 77
985 ph10 391 case CHAR_c:
986 nigel 77 c = *(++ptr);
987     if (c == 0)
988     {
989     *errorcodeptr = ERR2;
990 ph10 213 break;
991 nigel 77 }
992 ph10 574 #ifndef EBCDIC /* ASCII/UTF-8 coding */
993     if (c > 127) /* Excludes all non-ASCII in either mode */
994     {
995     *errorcodeptr = ERR68;
996 ph10 579 break;
997     }
998 ph10 391 if (c >= CHAR_a && c <= CHAR_z) c -= 32;
999 nigel 77 c ^= 0x40;
1000 ph10 574 #else /* EBCDIC coding */
1001 ph10 391 if (c >= CHAR_a && c <= CHAR_z) c += 64;
1002 nigel 77 c ^= 0xC0;
1003     #endif
1004     break;
1005    
1006     /* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any
1007 ph10 274 other alphanumeric following \ is an error if PCRE_EXTRA was set;
1008     otherwise, for Perl compatibility, it is a literal. This code looks a bit
1009     odd, but there used to be some cases other than the default, and there may
1010     be again in future, so I haven't "optimized" it. */
1011 nigel 77
1012     default:
1013     if ((options & PCRE_EXTRA) != 0) switch(c)
1014     {
1015     default:
1016     *errorcodeptr = ERR3;
1017     break;
1018     }
1019     break;
1020     }
1021     }
1022 ph10 518
1023     /* Perl supports \N{name} for character names, as well as plain \N for "not
1024 ph10 654 newline". PCRE does not support \N{name}. However, it does support
1025 ph10 640 quantification such as \N{2,3}. */
1026 nigel 77
1027 ph10 640 if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET &&
1028     !is_counted_repeat(ptr+2))
1029 ph10 518 *errorcodeptr = ERR37;
1030 ph10 514
1031 ph10 518 /* If PCRE_UCP is set, we change the values for \d etc. */
1032    
1033     if ((options & PCRE_UCP) != 0 && c <= -ESC_D && c >= -ESC_w)
1034     c -= (ESC_DU - ESC_D);
1035    
1036     /* Set the pointer to the final character before returning. */
1037    
1038 nigel 77 *ptrptr = ptr;
1039     return c;
1040     }
1041    
1042    
1043    
1044     #ifdef SUPPORT_UCP
1045     /*************************************************
1046     * Handle \P and \p *
1047     *************************************************/
1048    
1049     /* This function is called after \P or \p has been encountered, provided that
1050     PCRE is compiled with support for Unicode properties. On entry, ptrptr is
1051     pointing at the P or p. On exit, it is pointing at the final character of the
1052     escape sequence.
1053    
1054     Argument:
1055     ptrptr points to the pattern position pointer
1056     negptr points to a boolean that is set TRUE for negation else FALSE
1057 nigel 87 dptr points to an int that is set to the detailed property value
1058 nigel 77 errorcodeptr points to the error code variable
1059    
1060 nigel 87 Returns: type value from ucp_type_table, or -1 for an invalid type
1061 nigel 77 */
1062    
1063     static int
1064 nigel 87 get_ucp(const uschar **ptrptr, BOOL *negptr, int *dptr, int *errorcodeptr)
1065 nigel 77 {
1066     int c, i, bot, top;
1067     const uschar *ptr = *ptrptr;
1068 nigel 87 char name[32];
1069 nigel 77
1070     c = *(++ptr);
1071     if (c == 0) goto ERROR_RETURN;
1072    
1073     *negptr = FALSE;
1074    
1075 nigel 87 /* \P or \p can be followed by a name in {}, optionally preceded by ^ for
1076     negation. */
1077 nigel 77
1078 ph10 391 if (c == CHAR_LEFT_CURLY_BRACKET)
1079 nigel 77 {
1080 ph10 391 if (ptr[1] == CHAR_CIRCUMFLEX_ACCENT)
1081 nigel 77 {
1082     *negptr = TRUE;
1083     ptr++;
1084     }
1085 ph10 199 for (i = 0; i < (int)sizeof(name) - 1; i++)
1086 nigel 77 {
1087     c = *(++ptr);
1088     if (c == 0) goto ERROR_RETURN;
1089 ph10 391 if (c == CHAR_RIGHT_CURLY_BRACKET) break;
1090 nigel 77 name[i] = c;
1091     }
1092 ph10 391 if (c != CHAR_RIGHT_CURLY_BRACKET) goto ERROR_RETURN;
1093 nigel 77 name[i] = 0;
1094     }
1095    
1096     /* Otherwise there is just one following character */
1097    
1098     else
1099     {
1100     name[0] = c;
1101     name[1] = 0;
1102     }
1103    
1104     *ptrptr = ptr;
1105    
1106     /* Search for a recognized property name using binary chop */
1107    
1108     bot = 0;
1109     top = _pcre_utt_size;
1110    
1111     while (bot < top)
1112     {
1113 nigel 87 i = (bot + top) >> 1;
1114 ph10 240 c = strcmp(name, _pcre_utt_names + _pcre_utt[i].name_offset);
1115 nigel 87 if (c == 0)
1116     {
1117     *dptr = _pcre_utt[i].value;
1118     return _pcre_utt[i].type;
1119     }
1120 nigel 77 if (c > 0) bot = i + 1; else top = i;
1121     }
1122    
1123     *errorcodeptr = ERR47;
1124     *ptrptr = ptr;
1125     return -1;
1126    
1127     ERROR_RETURN:
1128     *errorcodeptr = ERR46;
1129     *ptrptr = ptr;
1130     return -1;
1131     }
1132     #endif
1133    
1134    
1135    
1136    
1137     /*************************************************
1138     * Read repeat counts *
1139     *************************************************/
1140    
1141     /* Read an item of the form {n,m} and return the values. This is called only
1142     after is_counted_repeat() has confirmed that a repeat-count quantifier exists,
1143     so the syntax is guaranteed to be correct, but we need to check the values.
1144    
1145     Arguments:
1146     p pointer to first char after '{'
1147     minp pointer to int for min
1148     maxp pointer to int for max
1149     returned as -1 if no max
1150     errorcodeptr points to error code variable
1151    
1152     Returns: pointer to '}' on success;
1153     current ptr on error, with errorcodeptr set non-zero
1154     */
1155    
1156     static const uschar *
1157     read_repeat_counts(const uschar *p, int *minp, int *maxp, int *errorcodeptr)
1158     {
1159     int min = 0;
1160     int max = -1;
1161    
1162 nigel 81 /* Read the minimum value and do a paranoid check: a negative value indicates
1163     an integer overflow. */
1164    
1165 ph10 391 while ((digitab[*p] & ctype_digit) != 0) min = min * 10 + *p++ - CHAR_0;
1166 nigel 81 if (min < 0 || min > 65535)
1167     {
1168     *errorcodeptr = ERR5;
1169     return p;
1170     }
1171 nigel 77
1172 nigel 81 /* Read the maximum value if there is one, and again do a paranoid on its size.
1173     Also, max must not be less than min. */
1174    
1175 ph10 391 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else
1176 nigel 77 {
1177 ph10 391 if (*(++p) != CHAR_RIGHT_CURLY_BRACKET)
1178 nigel 77 {
1179     max = 0;
1180 ph10 391 while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - CHAR_0;
1181 nigel 81 if (max < 0 || max > 65535)
1182     {
1183     *errorcodeptr = ERR5;
1184     return p;
1185     }
1186 nigel 77 if (max < min)
1187     {
1188     *errorcodeptr = ERR4;
1189     return p;
1190     }
1191     }
1192     }
1193    
1194 nigel 81 /* Fill in the required variables, and pass back the pointer to the terminating
1195     '}'. */
1196 nigel 77
1197 nigel 81 *minp = min;
1198     *maxp = max;
1199 nigel 77 return p;
1200     }
1201    
1202    
1203    
1204     /*************************************************
1205 ph10 408 * Subroutine for finding forward reference *
1206 nigel 91 *************************************************/
1207    
1208 ph10 408 /* This recursive function is called only from find_parens() below. The
1209     top-level call starts at the beginning of the pattern. All other calls must
1210     start at a parenthesis. It scans along a pattern's text looking for capturing
1211 nigel 93 subpatterns, and counting them. If it finds a named pattern that matches the
1212     name it is given, it returns its number. Alternatively, if the name is NULL, it
1213 ph10 578 returns when it reaches a given numbered subpattern. Recursion is used to keep
1214     track of subpatterns that reset the capturing group numbers - the (?| feature.
1215 nigel 91
1216 ph10 578 This function was originally called only from the second pass, in which we know
1217     that if (?< or (?' or (?P< is encountered, the name will be correctly
1218     terminated because that is checked in the first pass. There is now one call to
1219     this function in the first pass, to check for a recursive back reference by
1220     name (so that we can make the whole group atomic). In this case, we need check
1221 ph10 579 only up to the current position in the pattern, and that is still OK because
1222     and previous occurrences will have been checked. To make this work, the test
1223     for "end of pattern" is a check against cd->end_pattern in the main loop,
1224 ph10 578 instead of looking for a binary zero. This means that the special first-pass
1225 ph10 579 call can adjust cd->end_pattern temporarily. (Checks for binary zero while
1226     processing items within the loop are OK, because afterwards the main loop will
1227 ph10 578 terminate.)
1228    
1229 nigel 91 Arguments:
1230 ph10 408 ptrptr address of the current character pointer (updated)
1231 ph10 345 cd compile background data
1232 nigel 93 name name to seek, or NULL if seeking a numbered subpattern
1233     lorn name length, or subpattern number if name is NULL
1234     xmode TRUE if we are in /x mode
1235 ph10 579 utf8 TRUE if we are in UTF-8 mode
1236 ph10 411 count pointer to the current capturing subpattern number (updated)
1237 nigel 91
1238     Returns: the number of the named subpattern, or -1 if not found
1239     */
1240    
1241     static int
1242 ph10 408 find_parens_sub(uschar **ptrptr, compile_data *cd, const uschar *name, int lorn,
1243 ph10 556 BOOL xmode, BOOL utf8, int *count)
1244 nigel 91 {
1245 ph10 408 uschar *ptr = *ptrptr;
1246     int start_count = *count;
1247     int hwm_count = start_count;
1248     BOOL dup_parens = FALSE;
1249 nigel 93
1250 ph10 411 /* If the first character is a parenthesis, check on the type of group we are
1251 ph10 408 dealing with. The very first call may not start with a parenthesis. */
1252    
1253     if (ptr[0] == CHAR_LEFT_PARENTHESIS)
1254     {
1255 ph10 544 /* Handle specials such as (*SKIP) or (*UTF8) etc. */
1256 ph10 545
1257 ph10 544 if (ptr[1] == CHAR_ASTERISK) ptr += 2;
1258 ph10 545
1259 ph10 544 /* Handle a normal, unnamed capturing parenthesis. */
1260 ph10 408
1261 ph10 544 else if (ptr[1] != CHAR_QUESTION_MARK)
1262 ph10 408 {
1263     *count += 1;
1264     if (name == NULL && *count == lorn) return *count;
1265 ph10 411 ptr++;
1266 ph10 408 }
1267    
1268 ph10 544 /* All cases now have (? at the start. Remember when we are in a group
1269     where the parenthesis numbers are duplicated. */
1270    
1271     else if (ptr[2] == CHAR_VERTICAL_LINE)
1272     {
1273     ptr += 3;
1274     dup_parens = TRUE;
1275     }
1276 ph10 545
1277 ph10 544 /* Handle comments; all characters are allowed until a ket is reached. */
1278    
1279     else if (ptr[2] == CHAR_NUMBER_SIGN)
1280     {
1281     for (ptr += 3; *ptr != 0; ptr++) if (*ptr == CHAR_RIGHT_PARENTHESIS) break;
1282     goto FAIL_EXIT;
1283 ph10 545 }
1284 ph10 544
1285 ph10 408 /* Handle a condition. If it is an assertion, just carry on so that it
1286     is processed as normal. If not, skip to the closing parenthesis of the
1287 ph10 544 condition (there can't be any nested parens). */
1288 ph10 411
1289 ph10 408 else if (ptr[2] == CHAR_LEFT_PARENTHESIS)
1290     {
1291 ph10 411 ptr += 2;
1292 ph10 408 if (ptr[1] != CHAR_QUESTION_MARK)
1293     {
1294     while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++;
1295 ph10 411 if (*ptr != 0) ptr++;
1296 ph10 408 }
1297 ph10 411 }
1298    
1299 ph10 544 /* Start with (? but not a condition. */
1300 ph10 408
1301     else
1302 ph10 411 {
1303 ph10 408 ptr += 2;
1304     if (*ptr == CHAR_P) ptr++; /* Allow optional P */
1305    
1306     /* We have to disambiguate (?<! and (?<= from (?<name> for named groups */
1307 ph10 411
1308 ph10 408 if ((*ptr == CHAR_LESS_THAN_SIGN && ptr[1] != CHAR_EXCLAMATION_MARK &&
1309     ptr[1] != CHAR_EQUALS_SIGN) || *ptr == CHAR_APOSTROPHE)
1310     {
1311     int term;
1312     const uschar *thisname;
1313     *count += 1;
1314     if (name == NULL && *count == lorn) return *count;
1315     term = *ptr++;
1316     if (term == CHAR_LESS_THAN_SIGN) term = CHAR_GREATER_THAN_SIGN;
1317     thisname = ptr;
1318     while (*ptr != term) ptr++;
1319     if (name != NULL && lorn == ptr - thisname &&
1320     strncmp((const char *)name, (const char *)thisname, lorn) == 0)
1321     return *count;
1322 ph10 461 term++;
1323 ph10 411 }
1324 ph10 408 }
1325 ph10 411 }
1326 ph10 408
1327 ph10 411 /* Past any initial parenthesis handling, scan for parentheses or vertical
1328 ph10 579 bars. Stop if we get to cd->end_pattern. Note that this is important for the
1329     first-pass call when this value is temporarily adjusted to stop at the current
1330 ph10 578 position. So DO NOT change this to a test for binary zero. */
1331 ph10 408
1332 ph10 578 for (; ptr < cd->end_pattern; ptr++)
1333 nigel 91 {
1334 nigel 93 /* Skip over backslashed characters and also entire \Q...\E */
1335    
1336 ph10 391 if (*ptr == CHAR_BACKSLASH)
1337 nigel 93 {
1338 ph10 408 if (*(++ptr) == 0) goto FAIL_EXIT;
1339 ph10 391 if (*ptr == CHAR_Q) for (;;)
1340 nigel 93 {
1341 ph10 391 while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {};
1342 ph10 408 if (*ptr == 0) goto FAIL_EXIT;
1343 ph10 391 if (*(++ptr) == CHAR_E) break;
1344 nigel 93 }
1345     continue;
1346     }
1347    
1348 ph10 340 /* Skip over character classes; this logic must be similar to the way they
1349     are handled for real. If the first character is '^', skip it. Also, if the
1350     first few characters (either before or after ^) are \Q\E or \E we skip them
1351 ph10 392 too. This makes for compatibility with Perl. Note the use of STR macros to
1352 ph10 391 encode "Q\\E" so that it works in UTF-8 on EBCDIC platforms. */
1353 nigel 93
1354 ph10 391 if (*ptr == CHAR_LEFT_SQUARE_BRACKET)
1355 nigel 93 {
1356 ph10 340 BOOL negate_class = FALSE;
1357     for (;;)
1358     {
1359 ph10 438 if (ptr[1] == CHAR_BACKSLASH)
1360 ph10 340 {
1361 ph10 438 if (ptr[2] == CHAR_E)
1362     ptr+= 2;
1363     else if (strncmp((const char *)ptr+2,
1364 ph10 392 STR_Q STR_BACKSLASH STR_E, 3) == 0)
1365 ph10 438 ptr += 4;
1366 ph10 392 else
1367 ph10 391 break;
1368 ph10 340 }
1369 ph10 438 else if (!negate_class && ptr[1] == CHAR_CIRCUMFLEX_ACCENT)
1370 ph10 461 {
1371 ph10 340 negate_class = TRUE;
1372 ph10 438 ptr++;
1373 ph10 461 }
1374 ph10 340 else break;
1375     }
1376    
1377     /* If the next character is ']', it is a data character that must be
1378 ph10 341 skipped, except in JavaScript compatibility mode. */
1379 ph10 345
1380 ph10 392 if (ptr[1] == CHAR_RIGHT_SQUARE_BRACKET &&
1381 ph10 391 (cd->external_options & PCRE_JAVASCRIPT_COMPAT) == 0)
1382 ph10 345 ptr++;
1383    
1384 ph10 391 while (*(++ptr) != CHAR_RIGHT_SQUARE_BRACKET)
1385 nigel 93 {
1386 ph10 220 if (*ptr == 0) return -1;
1387 ph10 391 if (*ptr == CHAR_BACKSLASH)
1388 nigel 93 {
1389 ph10 408 if (*(++ptr) == 0) goto FAIL_EXIT;
1390 ph10 391 if (*ptr == CHAR_Q) for (;;)
1391 nigel 93 {
1392 ph10 391 while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {};
1393 ph10 408 if (*ptr == 0) goto FAIL_EXIT;
1394 ph10 391 if (*(++ptr) == CHAR_E) break;
1395 nigel 93 }
1396     continue;
1397     }
1398     }
1399     continue;
1400     }
1401    
1402     /* Skip comments in /x mode */
1403    
1404 ph10 391 if (xmode && *ptr == CHAR_NUMBER_SIGN)
1405 nigel 93 {
1406 ph10 579 ptr++;
1407 ph10 556 while (*ptr != 0)
1408     {
1409     if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; }
1410     ptr++;
1411 ph10 579 #ifdef SUPPORT_UTF8
1412 ph10 556 if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++;
1413     #endif
1414     }
1415 ph10 408 if (*ptr == 0) goto FAIL_EXIT;
1416 nigel 93 continue;
1417     }
1418    
1419 ph10 408 /* Check for the special metacharacters */
1420 ph10 411
1421 ph10 408 if (*ptr == CHAR_LEFT_PARENTHESIS)
1422 nigel 93 {
1423 ph10 556 int rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, count);
1424 ph10 408 if (rc > 0) return rc;
1425     if (*ptr == 0) goto FAIL_EXIT;
1426 nigel 93 }
1427 ph10 411
1428 ph10 408 else if (*ptr == CHAR_RIGHT_PARENTHESIS)
1429     {
1430     if (dup_parens && *count < hwm_count) *count = hwm_count;
1431 ph10 545 goto FAIL_EXIT;
1432 ph10 408 }
1433 ph10 411
1434     else if (*ptr == CHAR_VERTICAL_LINE && dup_parens)
1435 ph10 408 {
1436     if (*count > hwm_count) hwm_count = *count;
1437     *count = start_count;
1438 ph10 411 }
1439 ph10 408 }
1440 nigel 93
1441 ph10 408 FAIL_EXIT:
1442     *ptrptr = ptr;
1443     return -1;
1444     }
1445 nigel 93
1446    
1447    
1448    
1449 ph10 408 /*************************************************
1450     * Find forward referenced subpattern *
1451     *************************************************/
1452 nigel 93
1453 ph10 408 /* This function scans along a pattern's text looking for capturing
1454     subpatterns, and counting them. If it finds a named pattern that matches the
1455     name it is given, it returns its number. Alternatively, if the name is NULL, it
1456     returns when it reaches a given numbered subpattern. This is used for forward
1457     references to subpatterns. We used to be able to start this scan from the
1458     current compiling point, using the current count value from cd->bracount, and
1459     do it all in a single loop, but the addition of the possibility of duplicate
1460     subpattern numbers means that we have to scan from the very start, in order to
1461     take account of such duplicates, and to use a recursive function to keep track
1462     of the different types of group.
1463    
1464     Arguments:
1465     cd compile background data
1466     name name to seek, or NULL if seeking a numbered subpattern
1467     lorn name length, or subpattern number if name is NULL
1468     xmode TRUE if we are in /x mode
1469 ph10 579 utf8 TRUE if we are in UTF-8 mode
1470 ph10 408
1471     Returns: the number of the found subpattern, or -1 if not found
1472     */
1473    
1474     static int
1475 ph10 556 find_parens(compile_data *cd, const uschar *name, int lorn, BOOL xmode,
1476     BOOL utf8)
1477 ph10 408 {
1478     uschar *ptr = (uschar *)cd->start_pattern;
1479     int count = 0;
1480     int rc;
1481    
1482     /* If the pattern does not start with an opening parenthesis, the first call
1483     to find_parens_sub() will scan right to the end (if necessary). However, if it
1484     does start with a parenthesis, find_parens_sub() will return when it hits the
1485     matching closing parens. That is why we have to have a loop. */
1486    
1487 ph10 411 for (;;)
1488     {
1489 ph10 556 rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, &count);
1490 ph10 411 if (rc > 0 || *ptr++ == 0) break;
1491     }
1492    
1493 ph10 408 return rc;
1494 nigel 91 }
1495    
1496    
1497    
1498 ph10 408
1499 nigel 91 /*************************************************
1500 nigel 77 * Find first significant op code *
1501     *************************************************/
1502    
1503     /* This is called by several functions that scan a compiled expression looking
1504     for a fixed first character, or an anchoring op code etc. It skips over things
1505 ph10 602 that do not influence this. For some calls, it makes sense to skip negative
1506     forward and all backward assertions, and also the \b assertion; for others it
1507     does not.
1508 nigel 77
1509     Arguments:
1510     code pointer to the start of the group
1511     skipassert TRUE if certain assertions are to be skipped
1512    
1513     Returns: pointer to the first significant opcode
1514     */
1515    
1516     static const uschar*
1517 ph10 604 first_significant_code(const uschar *code, BOOL skipassert)
1518 nigel 77 {
1519     for (;;)
1520     {
1521     switch ((int)*code)
1522     {
1523     case OP_ASSERT_NOT:
1524     case OP_ASSERTBACK:
1525     case OP_ASSERTBACK_NOT:
1526     if (!skipassert) return code;
1527     do code += GET(code, 1); while (*code == OP_ALT);
1528     code += _pcre_OP_lengths[*code];
1529     break;
1530    
1531     case OP_WORD_BOUNDARY:
1532     case OP_NOT_WORD_BOUNDARY:
1533     if (!skipassert) return code;
1534     /* Fall through */
1535    
1536     case OP_CALLOUT:
1537     case OP_CREF:
1538 ph10 459 case OP_NCREF:
1539 nigel 93 case OP_RREF:
1540 ph10 459 case OP_NRREF:
1541 nigel 93 case OP_DEF:
1542 nigel 77 code += _pcre_OP_lengths[*code];
1543     break;
1544    
1545     default:
1546     return code;
1547     }
1548     }
1549     /* Control never reaches here */
1550     }
1551    
1552    
1553    
1554    
1555     /*************************************************
1556 ph10 454 * Find the fixed length of a branch *
1557 nigel 77 *************************************************/
1558    
1559 ph10 454 /* Scan a branch and compute the fixed length of subject that will match it,
1560 nigel 77 if the length is fixed. This is needed for dealing with backward assertions.
1561 ph10 461 In UTF8 mode, the result is in characters rather than bytes. The branch is
1562 ph10 454 temporarily terminated with OP_END when this function is called.
1563 nigel 77
1564 ph10 461 This function is called when a backward assertion is encountered, so that if it
1565     fails, the error message can point to the correct place in the pattern.
1566 ph10 454 However, we cannot do this when the assertion contains subroutine calls,
1567 ph10 461 because they can be forward references. We solve this by remembering this case
1568 ph10 454 and doing the check at the end; a flag specifies which mode we are running in.
1569    
1570 nigel 77 Arguments:
1571     code points to the start of the pattern (the bracket)
1572 ph10 604 utf8 TRUE in UTF-8 mode
1573 ph10 461 atend TRUE if called when the pattern is complete
1574     cd the "compile data" structure
1575 nigel 77
1576 ph10 461 Returns: the fixed length,
1577 ph10 454 or -1 if there is no fixed length,
1578 ph10 754 or -2 if \C was encountered (in UTF-8 mode only)
1579 ph10 454 or -3 if an OP_RECURSE item was encountered and atend is FALSE
1580 ph10 747 or -4 if an unknown opcode was encountered (internal error)
1581 nigel 77 */
1582    
1583     static int
1584 ph10 604 find_fixedlength(uschar *code, BOOL utf8, BOOL atend, compile_data *cd)
1585 nigel 77 {
1586     int length = -1;
1587    
1588     register int branchlength = 0;
1589     register uschar *cc = code + 1 + LINK_SIZE;
1590    
1591     /* Scan along the opcodes for this branch. If we get to the end of the
1592     branch, check the length against that of the other branches. */
1593    
1594     for (;;)
1595     {
1596     int d;
1597 ph10 454 uschar *ce, *cs;
1598 nigel 77 register int op = *cc;
1599     switch (op)
1600     {
1601 ph10 604 /* We only need to continue for OP_CBRA (normal capturing bracket) and
1602     OP_BRA (normal non-capturing bracket) because the other variants of these
1603     opcodes are all concerned with unlimited repeated groups, which of course
1604 ph10 747 are not of fixed length. */
1605 ph10 604
1606 nigel 93 case OP_CBRA:
1607 nigel 77 case OP_BRA:
1608     case OP_ONCE:
1609 ph10 733 case OP_ONCE_NC:
1610 nigel 77 case OP_COND:
1611 ph10 604 d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), utf8, atend, cd);
1612 nigel 77 if (d < 0) return d;
1613     branchlength += d;
1614     do cc += GET(cc, 1); while (*cc == OP_ALT);
1615     cc += 1 + LINK_SIZE;
1616     break;
1617    
1618 ph10 747 /* Reached end of a branch; if it's a ket it is the end of a nested call.
1619     If it's ALT it is an alternation in a nested call. An ACCEPT is effectively
1620     an ALT. If it is END it's the end of the outer call. All can be handled by
1621     the same code. Note that we must not include the OP_KETRxxx opcodes here,
1622     because they all imply an unlimited repeat. */
1623 nigel 77
1624     case OP_ALT:
1625     case OP_KET:
1626     case OP_END:
1627 ph10 747 case OP_ACCEPT:
1628     case OP_ASSERT_ACCEPT:
1629 nigel 77 if (length < 0) length = branchlength;
1630     else if (length != branchlength) return -1;
1631     if (*cc != OP_ALT) return length;
1632     cc += 1 + LINK_SIZE;
1633     branchlength = 0;
1634     break;
1635 ph10 461
1636 ph10 454 /* A true recursion implies not fixed length, but a subroutine call may
1637     be OK. If the subroutine is a forward reference, we can't deal with
1638     it until the end of the pattern, so return -3. */
1639 ph10 461
1640 ph10 454 case OP_RECURSE:
1641     if (!atend) return -3;
1642     cs = ce = (uschar *)cd->start_code + GET(cc, 1); /* Start subpattern */
1643     do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */
1644     if (cc > cs && cc < ce) return -1; /* Recursion */
1645 ph10 604 d = find_fixedlength(cs + 2, utf8, atend, cd);
1646 ph10 461 if (d < 0) return d;
1647 ph10 454 branchlength += d;
1648     cc += 1 + LINK_SIZE;
1649 ph10 461 break;
1650 nigel 77
1651     /* Skip over assertive subpatterns */
1652    
1653     case OP_ASSERT:
1654     case OP_ASSERT_NOT:
1655     case OP_ASSERTBACK:
1656     case OP_ASSERTBACK_NOT:
1657     do cc += GET(cc, 1); while (*cc == OP_ALT);
1658 ph10 807 cc += _pcre_OP_lengths[*cc];
1659     break;
1660 nigel 77
1661     /* Skip over things that don't match chars */
1662    
1663 ph10 747 case OP_MARK:
1664     case OP_PRUNE_ARG:
1665     case OP_SKIP_ARG:
1666     case OP_THEN_ARG:
1667     cc += cc[1] + _pcre_OP_lengths[*cc];
1668     break;
1669    
1670 nigel 77 case OP_CALLOUT:
1671     case OP_CIRC:
1672 ph10 602 case OP_CIRCM:
1673 ph10 747 case OP_CLOSE:
1674     case OP_COMMIT:
1675     case OP_CREF:
1676     case OP_DEF:
1677 nigel 77 case OP_DOLL:
1678 ph10 602 case OP_DOLLM:
1679 ph10 747 case OP_EOD:
1680     case OP_EODN:
1681     case OP_FAIL:
1682     case OP_NCREF:
1683     case OP_NRREF:
1684 nigel 77 case OP_NOT_WORD_BOUNDARY:
1685 ph10 747 case OP_PRUNE:
1686     case OP_REVERSE:
1687     case OP_RREF:
1688     case OP_SET_SOM:
1689     case OP_SKIP:
1690     case OP_SOD:
1691     case OP_SOM:
1692     case OP_THEN:
1693 nigel 77 case OP_WORD_BOUNDARY:
1694     cc += _pcre_OP_lengths[*cc];
1695     break;
1696    
1697     /* Handle literal characters */
1698    
1699     case OP_CHAR:
1700 ph10 602 case OP_CHARI:
1701 nigel 91 case OP_NOT:
1702 ph10 604 case OP_NOTI:
1703 nigel 77 branchlength++;
1704     cc += 2;
1705     #ifdef SUPPORT_UTF8
1706 ph10 604 if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f];
1707 nigel 77 #endif
1708     break;
1709    
1710     /* Handle exact repetitions. The count is already in characters, but we
1711     need to skip over a multibyte character in UTF8 mode. */
1712    
1713     case OP_EXACT:
1714 ph10 747 case OP_EXACTI:
1715     case OP_NOTEXACT:
1716     case OP_NOTEXACTI:
1717 nigel 77 branchlength += GET2(cc,1);
1718     cc += 4;
1719     #ifdef SUPPORT_UTF8
1720 ph10 604 if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f];
1721 nigel 77 #endif
1722     break;
1723    
1724     case OP_TYPEEXACT:
1725     branchlength += GET2(cc,1);
1726 ph10 220 if (cc[3] == OP_PROP || cc[3] == OP_NOTPROP) cc += 2;
1727 nigel 77 cc += 4;
1728     break;
1729    
1730     /* Handle single-char matchers */
1731    
1732     case OP_PROP:
1733     case OP_NOTPROP:
1734 nigel 87 cc += 2;
1735 nigel 77 /* Fall through */
1736    
1737 ph10 747 case OP_HSPACE:
1738     case OP_VSPACE:
1739     case OP_NOT_HSPACE:
1740     case OP_NOT_VSPACE:
1741 nigel 77 case OP_NOT_DIGIT:
1742     case OP_DIGIT:
1743     case OP_NOT_WHITESPACE:
1744     case OP_WHITESPACE:
1745     case OP_NOT_WORDCHAR:
1746     case OP_WORDCHAR:
1747     case OP_ANY:
1748 ph10 342 case OP_ALLANY:
1749 nigel 77 branchlength++;
1750     cc++;
1751     break;
1752    
1753 ph10 788 /* The single-byte matcher isn't allowed. This only happens in UTF-8 mode;
1754 ph10 754 otherwise \C is coded as OP_ALLANY. */
1755 nigel 77
1756     case OP_ANYBYTE:
1757     return -2;
1758    
1759     /* Check a class for variable quantification */
1760    
1761     #ifdef SUPPORT_UTF8
1762     case OP_XCLASS:
1763     cc += GET(cc, 1) - 33;
1764     /* Fall through */
1765     #endif
1766    
1767     case OP_CLASS:
1768     case OP_NCLASS:
1769     cc += 33;
1770    
1771     switch (*cc)
1772     {
1773 ph10 747 case OP_CRPLUS:
1774     case OP_CRMINPLUS:
1775 nigel 77 case OP_CRSTAR:
1776     case OP_CRMINSTAR:
1777     case OP_CRQUERY:
1778     case OP_CRMINQUERY:
1779     return -1;
1780    
1781     case OP_CRRANGE:
1782     case OP_CRMINRANGE:
1783     if (GET2(cc,1) != GET2(cc,3)) return -1;
1784     branchlength += GET2(cc,1);
1785     cc += 5;
1786     break;
1787    
1788     default:
1789     branchlength++;
1790     }
1791     break;
1792    
1793     /* Anything else is variable length */
1794    
1795 ph10 747 case OP_ANYNL:
1796     case OP_BRAMINZERO:
1797     case OP_BRAPOS:
1798     case OP_BRAPOSZERO:
1799     case OP_BRAZERO:
1800     case OP_CBRAPOS:
1801     case OP_EXTUNI:
1802     case OP_KETRMAX:
1803     case OP_KETRMIN:
1804     case OP_KETRPOS:
1805     case OP_MINPLUS:
1806     case OP_MINPLUSI:
1807     case OP_MINQUERY:
1808     case OP_MINQUERYI:
1809     case OP_MINSTAR:
1810     case OP_MINSTARI:
1811     case OP_MINUPTO:
1812     case OP_MINUPTOI:
1813     case OP_NOTMINPLUS:
1814     case OP_NOTMINPLUSI:
1815     case OP_NOTMINQUERY:
1816     case OP_NOTMINQUERYI:
1817     case OP_NOTMINSTAR:
1818     case OP_NOTMINSTARI:
1819     case OP_NOTMINUPTO:
1820     case OP_NOTMINUPTOI:
1821     case OP_NOTPLUS:
1822     case OP_NOTPLUSI:
1823     case OP_NOTPOSPLUS:
1824     case OP_NOTPOSPLUSI:
1825     case OP_NOTPOSQUERY:
1826     case OP_NOTPOSQUERYI:
1827     case OP_NOTPOSSTAR:
1828     case OP_NOTPOSSTARI:
1829     case OP_NOTPOSUPTO:
1830     case OP_NOTPOSUPTOI:
1831     case OP_NOTQUERY:
1832     case OP_NOTQUERYI:
1833     case OP_NOTSTAR:
1834     case OP_NOTSTARI:
1835     case OP_NOTUPTO:
1836     case OP_NOTUPTOI:
1837     case OP_PLUS:
1838     case OP_PLUSI:
1839     case OP_POSPLUS:
1840     case OP_POSPLUSI:
1841     case OP_POSQUERY:
1842     case OP_POSQUERYI:
1843     case OP_POSSTAR:
1844     case OP_POSSTARI:
1845     case OP_POSUPTO:
1846     case OP_POSUPTOI:
1847     case OP_QUERY:
1848     case OP_QUERYI:
1849     case OP_REF:
1850     case OP_REFI:
1851     case OP_SBRA:
1852     case OP_SBRAPOS:
1853     case OP_SCBRA:
1854     case OP_SCBRAPOS:
1855     case OP_SCOND:
1856     case OP_SKIPZERO:
1857     case OP_STAR:
1858     case OP_STARI:
1859     case OP_TYPEMINPLUS:
1860     case OP_TYPEMINQUERY:
1861     case OP_TYPEMINSTAR:
1862     case OP_TYPEMINUPTO:
1863     case OP_TYPEPLUS:
1864     case OP_TYPEPOSPLUS:
1865     case OP_TYPEPOSQUERY:
1866     case OP_TYPEPOSSTAR:
1867     case OP_TYPEPOSUPTO:
1868     case OP_TYPEQUERY:
1869     case OP_TYPESTAR:
1870     case OP_TYPEUPTO:
1871     case OP_UPTO:
1872     case OP_UPTOI:
1873     return -1;
1874    
1875     /* Catch unrecognized opcodes so that when new ones are added they
1876     are not forgotten, as has happened in the past. */
1877    
1878 nigel 77 default:
1879 ph10 747 return -4;
1880 nigel 77 }
1881     }
1882     /* Control never gets here */
1883     }
1884    
1885    
1886    
1887    
1888     /*************************************************
1889 ph10 454 * Scan compiled regex for specific bracket *
1890 nigel 77 *************************************************/
1891    
1892     /* This little function scans through a compiled pattern until it finds a
1893 ph10 454 capturing bracket with the given number, or, if the number is negative, an
1894 ph10 461 instance of OP_REVERSE for a lookbehind. The function is global in the C sense
1895     so that it can be called from pcre_study() when finding the minimum matching
1896 ph10 455 length.
1897 nigel 77
1898     Arguments:
1899     code points to start of expression
1900     utf8 TRUE in UTF-8 mode
1901 ph10 454 number the required bracket number or negative to find a lookbehind
1902 nigel 77
1903     Returns: pointer to the opcode for the bracket, or NULL if not found
1904     */
1905    
1906 ph10 455 const uschar *
1907     _pcre_find_bracket(const uschar *code, BOOL utf8, int number)
1908 nigel 77 {
1909     for (;;)
1910     {
1911     register int c = *code;
1912 ph10 618
1913 nigel 77 if (c == OP_END) return NULL;
1914 nigel 91
1915     /* XCLASS is used for classes that cannot be represented just by a bit
1916     map. This includes negated single high-valued characters. The length in
1917     the table is zero; the actual length is stored in the compiled code. */
1918    
1919     if (c == OP_XCLASS) code += GET(code, 1);
1920 ph10 461
1921 ph10 454 /* Handle recursion */
1922 ph10 461
1923 ph10 454 else if (c == OP_REVERSE)
1924     {
1925 ph10 461 if (number < 0) return (uschar *)code;
1926 ph10 454 code += _pcre_OP_lengths[c];
1927     }
1928 nigel 91
1929 nigel 93 /* Handle capturing bracket */
1930 nigel 91
1931 ph10 604 else if (c == OP_CBRA || c == OP_SCBRA ||
1932     c == OP_CBRAPOS || c == OP_SCBRAPOS)
1933 nigel 77 {
1934 nigel 93 int n = GET2(code, 1+LINK_SIZE);
1935 nigel 77 if (n == number) return (uschar *)code;
1936 nigel 93 code += _pcre_OP_lengths[c];
1937 nigel 77 }
1938 nigel 91
1939 ph10 220 /* Otherwise, we can get the item's length from the table, except that for
1940     repeated character types, we have to test for \p and \P, which have an extra
1941 ph10 512 two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we
1942 ph10 510 must add in its length. */
1943 nigel 91
1944 nigel 77 else
1945     {
1946 ph10 218 switch(c)
1947     {
1948     case OP_TYPESTAR:
1949     case OP_TYPEMINSTAR:
1950     case OP_TYPEPLUS:
1951     case OP_TYPEMINPLUS:
1952     case OP_TYPEQUERY:
1953     case OP_TYPEMINQUERY:
1954     case OP_TYPEPOSSTAR:
1955     case OP_TYPEPOSPLUS:
1956     case OP_TYPEPOSQUERY:
1957     if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
1958 ph10 220 break;
1959 ph10 221
1960     case OP_TYPEUPTO:
1961     case OP_TYPEMINUPTO:
1962     case OP_TYPEEXACT:
1963     case OP_TYPEPOSUPTO:
1964     if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2;
1965     break;
1966 ph10 512
1967 ph10 510 case OP_MARK:
1968     case OP_PRUNE_ARG:
1969     case OP_SKIP_ARG:
1970     code += code[1];
1971 ph10 512 break;
1972 ph10 550
1973     case OP_THEN_ARG:
1974 ph10 716 code += code[1];
1975 ph10 550 break;
1976 ph10 220 }
1977    
1978 ph10 218 /* Add in the fixed length from the table */
1979 ph10 220
1980 nigel 77 code += _pcre_OP_lengths[c];
1981 ph10 220
1982 ph10 218 /* In UTF-8 mode, opcodes that are followed by a character may be followed by
1983     a multi-byte character. The length in the table is a minimum, so we have to
1984     arrange to skip the extra bytes. */
1985 ph10 220
1986 ph10 107 #ifdef SUPPORT_UTF8
1987 nigel 77 if (utf8) switch(c)
1988     {
1989     case OP_CHAR:
1990 ph10 602 case OP_CHARI:
1991 nigel 77 case OP_EXACT:
1992 ph10 602 case OP_EXACTI:
1993 nigel 77 case OP_UPTO:
1994 ph10 602 case OP_UPTOI:
1995 nigel 77 case OP_MINUPTO:
1996 ph10 602 case OP_MINUPTOI:
1997 nigel 93 case OP_POSUPTO:
1998 ph10 602 case OP_POSUPTOI:
1999 nigel 77 case OP_STAR:
2000 ph10 602 case OP_STARI:
2001 nigel 77 case OP_MINSTAR:
2002 ph10 602 case OP_MINSTARI:
2003 nigel 93 case OP_POSSTAR:
2004 ph10 602 case OP_POSSTARI:
2005 nigel 77 case OP_PLUS:
2006 ph10 602 case OP_PLUSI:
2007 nigel 77 case OP_MINPLUS:
2008 ph10 602 case OP_MINPLUSI:
2009 nigel 93 case OP_POSPLUS:
2010 ph10 602 case OP_POSPLUSI:
2011 nigel 77 case OP_QUERY:
2012 ph10 602 case OP_QUERYI:
2013 nigel 77 case OP_MINQUERY:
2014 ph10 602 case OP_MINQUERYI:
2015 nigel 93 case OP_POSQUERY:
2016 ph10 602 case OP_POSQUERYI:
2017 nigel 93 if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f];
2018 nigel 77 break;
2019     }
2020 ph10 369 #else
2021     (void)(utf8); /* Keep compiler happy by referencing function argument */
2022 ph10 111 #endif
2023 nigel 77 }
2024     }
2025     }
2026    
2027    
2028    
2029     /*************************************************
2030     * Scan compiled regex for recursion reference *
2031     *************************************************/
2032    
2033     /* This little function scans through a compiled pattern until it finds an
2034     instance of OP_RECURSE.
2035    
2036     Arguments:
2037     code points to start of expression
2038     utf8 TRUE in UTF-8 mode
2039    
2040     Returns: pointer to the opcode for OP_RECURSE, or NULL if not found
2041     */
2042    
2043     static const uschar *
2044     find_recurse(const uschar *code, BOOL utf8)
2045     {
2046     for (;;)
2047     {
2048     register int c = *code;
2049     if (c == OP_END) return NULL;
2050 nigel 91 if (c == OP_RECURSE) return code;
2051 ph10 220
2052 nigel 91 /* XCLASS is used for classes that cannot be represented just by a bit
2053     map. This includes negated single high-valued characters. The length in
2054     the table is zero; the actual length is stored in the compiled code. */
2055    
2056     if (c == OP_XCLASS) code += GET(code, 1);
2057    
2058 ph10 220 /* Otherwise, we can get the item's length from the table, except that for
2059     repeated character types, we have to test for \p and \P, which have an extra
2060 ph10 512 two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we
2061 ph10 510 must add in its length. */
2062 nigel 91
2063 nigel 77 else
2064     {
2065 ph10 218 switch(c)
2066     {
2067     case OP_TYPESTAR:
2068     case OP_TYPEMINSTAR:
2069     case OP_TYPEPLUS:
2070     case OP_TYPEMINPLUS:
2071     case OP_TYPEQUERY:
2072     case OP_TYPEMINQUERY:
2073     case OP_TYPEPOSSTAR:
2074     case OP_TYPEPOSPLUS:
2075     case OP_TYPEPOSQUERY:
2076     if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
2077 ph10 220 break;
2078 ph10 221
2079     case OP_TYPEPOSUPTO:
2080     case OP_TYPEUPTO:
2081     case OP_TYPEMINUPTO:
2082     case OP_TYPEEXACT:
2083     if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2;
2084     break;
2085 ph10 512
2086 ph10 510 case OP_MARK:
2087     case OP_PRUNE_ARG:
2088     case OP_SKIP_ARG:
2089     code += code[1];
2090 ph10 512 break;
2091 ph10 550
2092     case OP_THEN_ARG:
2093 ph10 716 code += code[1];
2094 ph10 550 break;
2095 ph10 220 }
2096    
2097 ph10 218 /* Add in the fixed length from the table */
2098    
2099 nigel 77 code += _pcre_OP_lengths[c];
2100 ph10 220
2101 ph10 218 /* In UTF-8 mode, opcodes that are followed by a character may be followed
2102     by a multi-byte character. The length in the table is a minimum, so we have
2103     to arrange to skip the extra bytes. */
2104 ph10 220
2105 ph10 107 #ifdef SUPPORT_UTF8
2106 nigel 77 if (utf8) switch(c)
2107     {
2108     case OP_CHAR:
2109 ph10 602 case OP_CHARI:
2110 nigel 77 case OP_EXACT:
2111 ph10 602 case OP_EXACTI:
2112 nigel 77 case OP_UPTO:
2113 ph10 602 case OP_UPTOI:
2114 nigel 77 case OP_MINUPTO:
2115 ph10 602 case OP_MINUPTOI:
2116 nigel 93 case OP_POSUPTO:
2117 ph10 602 case OP_POSUPTOI:
2118 nigel 77 case OP_STAR:
2119 ph10 602 case OP_STARI:
2120 nigel 77 case OP_MINSTAR:
2121 ph10 602 case OP_MINSTARI:
2122 nigel 93 case OP_POSSTAR:
2123 ph10 602 case OP_POSSTARI:
2124 nigel 77 case OP_PLUS:
2125 ph10 602 case OP_PLUSI:
2126 nigel 77 case OP_MINPLUS:
2127 ph10 602 case OP_MINPLUSI:
2128 nigel 93 case OP_POSPLUS:
2129 ph10 602 case OP_POSPLUSI:
2130 nigel 77 case OP_QUERY:
2131 ph10 602 case OP_QUERYI:
2132 nigel 77 case OP_MINQUERY:
2133 ph10 602 case OP_MINQUERYI:
2134 nigel 93 case OP_POSQUERY:
2135 ph10 602 case OP_POSQUERYI:
2136 nigel 93 if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f];
2137 nigel 77 break;
2138     }
2139 ph10 369 #else
2140     (void)(utf8); /* Keep compiler happy by referencing function argument */
2141 ph10 111 #endif
2142 nigel 77 }
2143     }
2144     }
2145    
2146    
2147    
2148     /*************************************************
2149     * Scan compiled branch for non-emptiness *
2150     *************************************************/
2151    
2152     /* This function scans through a branch of a compiled pattern to see whether it
2153 nigel 93 can match the empty string or not. It is called from could_be_empty()
2154     below and from compile_branch() when checking for an unlimited repeat of a
2155     group that can match nothing. Note that first_significant_code() skips over
2156 ph10 282 backward and negative forward assertions when its final argument is TRUE. If we
2157     hit an unclosed bracket, we return "empty" - this means we've struck an inner
2158     bracket whose current branch will already have been scanned.
2159 nigel 77
2160     Arguments:
2161     code points to start of search
2162     endcode points to where to stop
2163     utf8 TRUE if in UTF8 mode
2164 ph10 503 cd contains pointers to tables etc.
2165 nigel 77
2166     Returns: TRUE if what is matched could be empty
2167     */
2168    
2169     static BOOL
2170 ph10 503 could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8,
2171     compile_data *cd)
2172 nigel 77 {
2173     register int c;
2174 ph10 604 for (code = first_significant_code(code + _pcre_OP_lengths[*code], TRUE);
2175 nigel 77 code < endcode;
2176 ph10 604 code = first_significant_code(code + _pcre_OP_lengths[c], TRUE))
2177 nigel 77 {
2178     const uschar *ccode;
2179    
2180     c = *code;
2181 ph10 507
2182 ph10 286 /* Skip over forward assertions; the other assertions are skipped by
2183 ph10 282 first_significant_code() with a TRUE final argument. */
2184 ph10 286
2185 ph10 282 if (c == OP_ASSERT)
2186 ph10 286 {
2187 ph10 282 do code += GET(code, 1); while (*code == OP_ALT);
2188     c = *code;
2189     continue;
2190 ph10 286 }
2191 ph10 172
2192 ph10 503 /* For a recursion/subroutine call, if its end has been reached, which
2193 ph10 624 implies a backward reference subroutine call, we can scan it. If it's a
2194     forward reference subroutine call, we can't. To detect forward reference
2195 ph10 654 we have to scan up the list that is kept in the workspace. This function is
2196     called only when doing the real compile, not during the pre-compile that
2197 ph10 624 measures the size of the compiled pattern. */
2198 ph10 507
2199 ph10 503 if (c == OP_RECURSE)
2200     {
2201 ph10 624 const uschar *scode;
2202     BOOL empty_branch;
2203 ph10 654
2204 ph10 624 /* Test for forward reference */
2205 ph10 654
2206 ph10 624 for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE)
2207 ph10 654 if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE;
2208 ph10 624
2209     /* Not a forward reference, test for completed backward reference */
2210 ph10 654
2211 ph10 624 empty_branch = FALSE;
2212     scode = cd->start_code + GET(code, 1);
2213 ph10 503 if (GET(scode, 1) == 0) return TRUE; /* Unclosed */
2214 ph10 654
2215 ph10 624 /* Completed backwards reference */
2216 ph10 654
2217 ph10 503 do
2218     {
2219 ph10 504 if (could_be_empty_branch(scode, endcode, utf8, cd))
2220     {
2221     empty_branch = TRUE;
2222 ph10 507 break;
2223     }
2224 ph10 503 scode += GET(scode, 1);
2225     }
2226     while (*scode == OP_ALT);
2227 ph10 654
2228 ph10 504 if (!empty_branch) return FALSE; /* All branches are non-empty */
2229 ph10 503 continue;
2230 ph10 507 }
2231 ph10 170
2232 ph10 604 /* Groups with zero repeats can of course be empty; skip them. */
2233    
2234     if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO ||
2235     c == OP_BRAPOSZERO)
2236     {
2237     code += _pcre_OP_lengths[c];
2238     do code += GET(code, 1); while (*code == OP_ALT);
2239     c = *code;
2240     continue;
2241     }
2242    
2243     /* A nested group that is already marked as "could be empty" can just be
2244     skipped. */
2245    
2246     if (c == OP_SBRA || c == OP_SBRAPOS ||
2247     c == OP_SCBRA || c == OP_SCBRAPOS)
2248     {
2249     do code += GET(code, 1); while (*code == OP_ALT);
2250     c = *code;
2251     continue;
2252     }
2253    
2254 ph10 170 /* For other groups, scan the branches. */
2255 ph10 172
2256 ph10 604 if (c == OP_BRA || c == OP_BRAPOS ||
2257     c == OP_CBRA || c == OP_CBRAPOS ||
2258 ph10 723 c == OP_ONCE || c == OP_ONCE_NC ||
2259     c == OP_COND)
2260 nigel 77 {
2261     BOOL empty_branch;
2262     if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */
2263 ph10 406
2264     /* If a conditional group has only one branch, there is a second, implied,
2265 ph10 395 empty branch, so just skip over the conditional, because it could be empty.
2266     Otherwise, scan the individual branches of the group. */
2267 ph10 406
2268 ph10 395 if (c == OP_COND && code[GET(code, 1)] != OP_ALT)
2269 nigel 77 code += GET(code, 1);
2270 ph10 395 else
2271 ph10 406 {
2272 ph10 395 empty_branch = FALSE;
2273     do
2274     {
2275 ph10 503 if (!empty_branch && could_be_empty_branch(code, endcode, utf8, cd))
2276 ph10 395 empty_branch = TRUE;
2277     code += GET(code, 1);
2278     }
2279     while (*code == OP_ALT);
2280     if (!empty_branch) return FALSE; /* All branches are non-empty */
2281 nigel 77 }
2282 ph10 406
2283 ph10 172 c = *code;
2284 nigel 93 continue;
2285 nigel 77 }
2286    
2287 nigel 93 /* Handle the other opcodes */
2288    
2289     switch (c)
2290 nigel 77 {
2291 ph10 216 /* Check for quantifiers after a class. XCLASS is used for classes that
2292     cannot be represented just by a bit map. This includes negated single
2293     high-valued characters. The length in _pcre_OP_lengths[] is zero; the
2294 ph10 220 actual length is stored in the compiled code, so we must update "code"
2295 ph10 216 here. */
2296 nigel 77
2297     #ifdef SUPPORT_UTF8
2298     case OP_XCLASS:
2299 ph10 216 ccode = code += GET(code, 1);
2300 nigel 77 goto CHECK_CLASS_REPEAT;
2301     #endif
2302    
2303     case OP_CLASS:
2304     case OP_NCLASS:
2305     ccode = code + 33;
2306    
2307     #ifdef SUPPORT_UTF8
2308     CHECK_CLASS_REPEAT:
2309     #endif
2310    
2311     switch (*ccode)
2312     {
2313     case OP_CRSTAR: /* These could be empty; continue */
2314     case OP_CRMINSTAR:
2315     case OP_CRQUERY:
2316     case OP_CRMINQUERY:
2317     break;
2318    
2319     default: /* Non-repeat => class must match */
2320     case OP_CRPLUS: /* These repeats aren't empty */
2321     case OP_CRMINPLUS:
2322     return FALSE;
2323    
2324     case OP_CRRANGE:
2325     case OP_CRMINRANGE:
2326     if (GET2(ccode, 1) > 0) return FALSE; /* Minimum > 0 */
2327     break;
2328     }
2329     break;
2330    
2331     /* Opcodes that must match a character */
2332    
2333     case OP_PROP:
2334     case OP_NOTPROP:
2335     case OP_EXTUNI:
2336     case OP_NOT_DIGIT:
2337     case OP_DIGIT:
2338     case OP_NOT_WHITESPACE:
2339     case OP_WHITESPACE:
2340     case OP_NOT_WORDCHAR:
2341     case OP_WORDCHAR:
2342     case OP_ANY:
2343 ph10 345 case OP_ALLANY:
2344 nigel 77 case OP_ANYBYTE:
2345     case OP_CHAR:
2346 ph10 602 case OP_CHARI:
2347 nigel 77 case OP_NOT:
2348 ph10 602 case OP_NOTI:
2349 nigel 77 case OP_PLUS:
2350     case OP_MINPLUS:
2351 nigel 93 case OP_POSPLUS:
2352 nigel 77 case OP_EXACT:
2353     case OP_NOTPLUS:
2354     case OP_NOTMINPLUS:
2355 nigel 93 case OP_NOTPOSPLUS:
2356 nigel 77 case OP_NOTEXACT:
2357     case OP_TYPEPLUS:
2358     case OP_TYPEMINPLUS:
2359 nigel 93 case OP_TYPEPOSPLUS:
2360 nigel 77 case OP_TYPEEXACT:
2361     return FALSE;
2362 ph10 227
2363     /* These are going to continue, as they may be empty, but we have to
2364     fudge the length for the \p and \P cases. */
2365    
2366 ph10 224 case OP_TYPESTAR:
2367     case OP_TYPEMINSTAR:
2368     case OP_TYPEPOSSTAR:
2369     case OP_TYPEQUERY:
2370     case OP_TYPEMINQUERY:
2371     case OP_TYPEPOSQUERY:
2372     if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
2373 ph10 227 break;
2374    
2375 ph10 224 /* Same for these */
2376 ph10 227
2377 ph10 224 case OP_TYPEUPTO:
2378     case OP_TYPEMINUPTO:
2379     case OP_TYPEPOSUPTO:
2380     if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2;
2381     break;
2382 nigel 77
2383     /* End of branch */
2384    
2385     case OP_KET:
2386     case OP_KETRMAX:
2387     case OP_KETRMIN:
2388 ph10 604 case OP_KETRPOS:
2389 nigel 77 case OP_ALT:
2390     return TRUE;
2391    
2392 nigel 93 /* In UTF-8 mode, STAR, MINSTAR, POSSTAR, QUERY, MINQUERY, POSQUERY, UPTO,
2393     MINUPTO, and POSUPTO may be followed by a multibyte character */
2394 nigel 77
2395     #ifdef SUPPORT_UTF8
2396     case OP_STAR:
2397 ph10 602 case OP_STARI:
2398 nigel 77 case OP_MINSTAR:
2399 ph10 602 case OP_MINSTARI:
2400 nigel 93 case OP_POSSTAR:
2401 ph10 602 case OP_POSSTARI:
2402 nigel 77 case OP_QUERY:
2403 ph10 602 case OP_QUERYI:
2404 nigel 77 case OP_MINQUERY:
2405 ph10 602 case OP_MINQUERYI:
2406 nigel 93 case OP_POSQUERY:
2407 ph10 602 case OP_POSQUERYI:
2408 ph10 426 if (utf8 && code[1] >= 0xc0) code += _pcre_utf8_table4[code[1] & 0x3f];
2409     break;
2410 ph10 461
2411 nigel 77 case OP_UPTO:
2412 ph10 602 case OP_UPTOI:
2413 nigel 77 case OP_MINUPTO:
2414 ph10 602 case OP_MINUPTOI:
2415 nigel 93 case OP_POSUPTO:
2416 ph10 602 case OP_POSUPTOI:
2417 ph10 426 if (utf8 && code[3] >= 0xc0) code += _pcre_utf8_table4[code[3] & 0x3f];
2418 nigel 77 break;
2419     #endif
2420 ph10 503
2421 ph10 510 /* MARK, and PRUNE/SKIP/THEN with an argument must skip over the argument
2422     string. */
2423    
2424     case OP_MARK:
2425     case OP_PRUNE_ARG:
2426     case OP_SKIP_ARG:
2427     code += code[1];
2428 ph10 512 break;
2429 ph10 510
2430 ph10 550 case OP_THEN_ARG:
2431 ph10 716 code += code[1];
2432 ph10 550 break;
2433    
2434 ph10 503 /* None of the remaining opcodes are required to match a character. */
2435 ph10 507
2436 ph10 503 default:
2437 ph10 507 break;
2438 nigel 77 }
2439     }
2440    
2441     return TRUE;
2442     }
2443    
2444    
2445    
2446     /*************************************************
2447     * Scan compiled regex for non-emptiness *
2448     *************************************************/
2449    
2450     /* This function is called to check for left recursive calls. We want to check
2451     the current branch of the current pattern to see if it could match the empty
2452     string. If it could, we must look outwards for branches at other levels,
2453     stopping when we pass beyond the bracket which is the subject of the recursion.
2454 ph10 654 This function is called only during the real compile, not during the
2455 ph10 624 pre-compile.
2456 nigel 77
2457     Arguments:
2458     code points to start of the recursion
2459     endcode points to where to stop (current RECURSE item)
2460     bcptr points to the chain of current (unclosed) branch starts
2461     utf8 TRUE if in UTF-8 mode
2462 ph10 507 cd pointers to tables etc
2463 nigel 77
2464     Returns: TRUE if what is matched could be empty
2465     */
2466    
2467     static BOOL
2468     could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr,
2469 ph10 503 BOOL utf8, compile_data *cd)
2470 nigel 77 {
2471 ph10 475 while (bcptr != NULL && bcptr->current_branch >= code)
2472 nigel 77 {
2473 ph10 503 if (!could_be_empty_branch(bcptr->current_branch, endcode, utf8, cd))
2474 ph10 475 return FALSE;
2475 nigel 77 bcptr = bcptr->outer;
2476     }
2477     return TRUE;
2478     }
2479    
2480    
2481    
2482     /*************************************************
2483     * Check for POSIX class syntax *
2484     *************************************************/
2485    
2486     /* This function is called when the sequence "[:" or "[." or "[=" is
2487 ph10 295 encountered in a character class. It checks whether this is followed by a
2488 ph10 298 sequence of characters terminated by a matching ":]" or ".]" or "=]". If we
2489 ph10 295 reach an unescaped ']' without the special preceding character, return FALSE.
2490 nigel 77
2491 ph10 298 Originally, this function only recognized a sequence of letters between the
2492     terminators, but it seems that Perl recognizes any sequence of characters,
2493     though of course unknown POSIX names are subsequently rejected. Perl gives an
2494     "Unknown POSIX class" error for [:f\oo:] for example, where previously PCRE
2495     didn't consider this to be a POSIX class. Likewise for [:1234:].
2496 ph10 295
2497 ph10 298 The problem in trying to be exactly like Perl is in the handling of escapes. We
2498     have to be sure that [abc[:x\]pqr] is *not* treated as containing a POSIX
2499     class, but [abc[:x\]pqr:]] is (so that an error can be generated). The code
2500     below handles the special case of \], but does not try to do any other escape
2501     processing. This makes it different from Perl for cases such as [:l\ower:]
2502 ph10 295 where Perl recognizes it as the POSIX class "lower" but PCRE does not recognize
2503 ph10 298 "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does,
2504 ph10 295 I think.
2505    
2506 ph10 640 A user pointed out that PCRE was rejecting [:a[:digit:]] whereas Perl was not.
2507     It seems that the appearance of a nested POSIX class supersedes an apparent
2508     external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or
2509 ph10 691 a digit.
2510 ph10 640
2511 ph10 661 In Perl, unescaped square brackets may also appear as part of class names. For
2512     example, [:a[:abc]b:] gives unknown POSIX class "[:abc]b:]". However, for
2513     [:a[:abc]b][b:] it gives unknown POSIX class "[:abc]b][b:]", which does not
2514 ph10 691 seem right at all. PCRE does not allow closing square brackets in POSIX class
2515 ph10 661 names.
2516    
2517 ph10 295 Arguments:
2518 nigel 77 ptr pointer to the initial [
2519     endptr where to return the end pointer
2520    
2521     Returns: TRUE or FALSE
2522     */
2523    
2524     static BOOL
2525 ph10 295 check_posix_syntax(const uschar *ptr, const uschar **endptr)
2526 nigel 77 {
2527     int terminator; /* Don't combine these lines; the Solaris cc */
2528     terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */
2529 ph10 295 for (++ptr; *ptr != 0; ptr++)
2530 nigel 77 {
2531 ph10 654 if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
2532     ptr++;
2533 ph10 691 else if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE;
2534 ph10 640 else
2535 ph10 298 {
2536 ph10 391 if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
2537 ph10 295 {
2538     *endptr = ptr;
2539     return TRUE;
2540 ph10 298 }
2541 ph10 640 if (*ptr == CHAR_LEFT_SQUARE_BRACKET &&
2542     (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
2543     ptr[1] == CHAR_EQUALS_SIGN) &&
2544     check_posix_syntax(ptr, endptr))
2545 ph10 654 return FALSE;
2546 ph10 298 }
2547     }
2548 nigel 77 return FALSE;
2549     }
2550    
2551    
2552    
2553    
2554     /*************************************************
2555     * Check POSIX class name *
2556     *************************************************/
2557    
2558     /* This function is called to check the name given in a POSIX-style class entry
2559     such as [:alnum:].
2560    
2561     Arguments:
2562     ptr points to the first letter
2563     len the length of the name
2564    
2565     Returns: a value representing the name, or -1 if unknown
2566     */
2567    
2568     static int
2569     check_posix_name(const uschar *ptr, int len)
2570     {
2571 ph10 240 const char *pn = posix_names;
2572 nigel 77 register int yield = 0;
2573     while (posix_name_lengths[yield] != 0)
2574     {
2575     if (len == posix_name_lengths[yield] &&
2576 ph10 240 strncmp((const char *)ptr, pn, len) == 0) return yield;
2577 ph10 243 pn += posix_name_lengths[yield] + 1;
2578 nigel 77 yield++;
2579     }
2580     return -1;
2581     }
2582    
2583    
2584     /*************************************************
2585     * Adjust OP_RECURSE items in repeated group *
2586     *************************************************/
2587    
2588     /* OP_RECURSE items contain an offset from the start of the regex to the group
2589     that is referenced. This means that groups can be replicated for fixed
2590     repetition simply by copying (because the recursion is allowed to refer to
2591     earlier groups that are outside the current group). However, when a group is
2592 ph10 335 optional (i.e. the minimum quantifier is zero), OP_BRAZERO or OP_SKIPZERO is
2593     inserted before it, after it has been compiled. This means that any OP_RECURSE
2594     items within it that refer to the group itself or any contained groups have to
2595     have their offsets adjusted. That one of the jobs of this function. Before it
2596     is called, the partially compiled regex must be temporarily terminated with
2597     OP_END.
2598 nigel 77
2599 nigel 93 This function has been extended with the possibility of forward references for
2600     recursions and subroutine calls. It must also check the list of such references
2601     for the group we are dealing with. If it finds that one of the recursions in
2602     the current group is on this list, it adjusts the offset in the list, not the
2603     value in the reference (which is a group number).
2604    
2605 nigel 77 Arguments:
2606     group points to the start of the group
2607     adjust the amount by which the group is to be moved
2608     utf8 TRUE in UTF-8 mode
2609     cd contains pointers to tables etc.
2610 nigel 93 save_hwm the hwm forward reference pointer at the start of the group
2611 nigel 77
2612     Returns: nothing
2613     */
2614    
2615     static void
2616 nigel 93 adjust_recurse(uschar *group, int adjust, BOOL utf8, compile_data *cd,
2617     uschar *save_hwm)
2618 nigel 77 {
2619     uschar *ptr = group;
2620 ph10 224
2621 nigel 77 while ((ptr = (uschar *)find_recurse(ptr, utf8)) != NULL)
2622     {
2623 nigel 93 int offset;
2624     uschar *hc;
2625    
2626     /* See if this recursion is on the forward reference list. If so, adjust the
2627     reference. */
2628 ph10 345
2629 nigel 93 for (hc = save_hwm; hc < cd->hwm; hc += LINK_SIZE)
2630     {
2631     offset = GET(hc, 0);
2632     if (cd->start_code + offset == ptr + 1)
2633     {
2634     PUT(hc, 0, offset + adjust);
2635     break;
2636     }
2637     }
2638    
2639     /* Otherwise, adjust the recursion offset if it's after the start of this
2640     group. */
2641    
2642     if (hc >= cd->hwm)
2643     {
2644     offset = GET(ptr, 1);
2645     if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
2646     }
2647    
2648 nigel 77 ptr += 1 + LINK_SIZE;
2649     }
2650     }
2651    
2652    
2653    
2654     /*************************************************
2655     * Insert an automatic callout point *
2656     *************************************************/
2657    
2658     /* This function is called when the PCRE_AUTO_CALLOUT option is set, to insert
2659     callout points before each pattern item.
2660    
2661     Arguments:
2662     code current code pointer
2663     ptr current pattern pointer
2664     cd pointers to tables etc
2665    
2666     Returns: new code pointer
2667     */
2668    
2669     static uschar *
2670     auto_callout(uschar *code, const uschar *ptr, compile_data *cd)
2671     {
2672     *code++ = OP_CALLOUT;
2673     *code++ = 255;
2674 ph10 530 PUT(code, 0, (int)(ptr - cd->start_pattern)); /* Pattern offset */
2675     PUT(code, LINK_SIZE, 0); /* Default length */
2676 nigel 77 return code + 2*LINK_SIZE;
2677     }
2678    
2679    
2680    
2681     /*************************************************
2682     * Complete a callout item *
2683     *************************************************/
2684    
2685     /* A callout item contains the length of the next item in the pattern, which
2686     we can't fill in till after we have reached the relevant point. This is used
2687     for both automatic and manual callouts.
2688    
2689     Arguments:
2690     previous_callout points to previous callout item
2691     ptr current pattern pointer
2692     cd pointers to tables etc
2693    
2694     Returns: nothing
2695     */
2696    
2697     static void
2698     complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd)
2699     {
2700 ph10 530 int length = (int)(ptr - cd->start_pattern - GET(previous_callout, 2));
2701 nigel 77 PUT(previous_callout, 2 + LINK_SIZE, length);
2702     }
2703    
2704    
2705    
2706     #ifdef SUPPORT_UCP
2707     /*************************************************
2708     * Get othercase range *
2709     *************************************************/
2710    
2711     /* This function is passed the start and end of a class range, in UTF-8 mode
2712     with UCP support. It searches up the characters, looking for internal ranges of
2713     characters in the "other" case. Each call returns the next one, updating the
2714     start address.
2715    
2716     Arguments:
2717     cptr points to starting character value; updated
2718     d end value
2719     ocptr where to put start of othercase range
2720     odptr where to put end of othercase range
2721    
2722     Yield: TRUE when range returned; FALSE when no more
2723     */
2724    
2725     static BOOL
2726 nigel 93 get_othercase_range(unsigned int *cptr, unsigned int d, unsigned int *ocptr,
2727     unsigned int *odptr)
2728 nigel 77 {
2729 nigel 93 unsigned int c, othercase, next;
2730 nigel 77
2731     for (c = *cptr; c <= d; c++)
2732 ph10 349 { if ((othercase = UCD_OTHERCASE(c)) != c) break; }
2733 nigel 77
2734     if (c > d) return FALSE;
2735    
2736     *ocptr = othercase;
2737     next = othercase + 1;
2738    
2739     for (++c; c <= d; c++)
2740     {
2741 ph10 349 if (UCD_OTHERCASE(c) != next) break;
2742 nigel 77 next++;
2743     }
2744    
2745     *odptr = next - 1;
2746     *cptr = c;
2747    
2748     return TRUE;
2749     }
2750 ph10 532
2751    
2752    
2753     /*************************************************
2754     * Check a character and a property *
2755     *************************************************/
2756    
2757     /* This function is called by check_auto_possessive() when a property item
2758     is adjacent to a fixed character.
2759    
2760     Arguments:
2761     c the character
2762     ptype the property type
2763     pdata the data for the type
2764     negated TRUE if it's a negated property (\P or \p{^)
2765 ph10 535
2766 ph10 532 Returns: TRUE if auto-possessifying is OK
2767 ph10 535 */
2768 ph10 532
2769     static BOOL
2770     check_char_prop(int c, int ptype, int pdata, BOOL negated)
2771     {
2772     const ucd_record *prop = GET_UCD(c);
2773     switch(ptype)
2774     {
2775     case PT_LAMP:
2776     return (prop->chartype == ucp_Lu ||
2777     prop->chartype == ucp_Ll ||
2778     prop->chartype == ucp_Lt) == negated;
2779    
2780     case PT_GC:
2781     return (pdata == _pcre_ucp_gentype[prop->chartype]) == negated;
2782    
2783     case PT_PC:
2784     return (pdata == prop->chartype) == negated;
2785    
2786     case PT_SC:
2787     return (pdata == prop->script) == negated;
2788    
2789     /* These are specials */
2790    
2791     case PT_ALNUM:
2792     return (_pcre_ucp_gentype[prop->chartype] == ucp_L ||
2793     _pcre_ucp_gentype[prop->chartype] == ucp_N) == negated;
2794    
2795     case PT_SPACE: /* Perl space */
2796     return (_pcre_ucp_gentype[prop->chartype] == ucp_Z ||
2797     c == CHAR_HT || c == CHAR_NL || c == CHAR_FF || c == CHAR_CR)
2798     == negated;
2799    
2800     case PT_PXSPACE: /* POSIX space */
2801     return (_pcre_ucp_gentype[prop->chartype] == ucp_Z ||
2802     c == CHAR_HT || c == CHAR_NL || c == CHAR_VT ||
2803     c == CHAR_FF || c == CHAR_CR)
2804     == negated;
2805    
2806     case PT_WORD:
2807     return (_pcre_ucp_gentype[prop->chartype] == ucp_L ||
2808     _pcre_ucp_gentype[prop->chartype] == ucp_N ||
2809     c == CHAR_UNDERSCORE) == negated;
2810     }
2811 ph10 535 return FALSE;
2812 ph10 532 }
2813 nigel 77 #endif /* SUPPORT_UCP */
2814    
2815    
2816 nigel 93
2817 nigel 77 /*************************************************
2818 nigel 93 * Check if auto-possessifying is possible *
2819     *************************************************/
2820    
2821     /* This function is called for unlimited repeats of certain items, to see
2822     whether the next thing could possibly match the repeated item. If not, it makes
2823     sense to automatically possessify the repeated item.
2824    
2825     Arguments:
2826 ph10 532 previous pointer to the repeated opcode
2827 nigel 93 utf8 TRUE in UTF-8 mode
2828     ptr next character in pattern
2829     options options bits
2830     cd contains pointers to tables etc.
2831    
2832     Returns: TRUE if possessifying is wanted
2833     */
2834    
2835     static BOOL
2836 ph10 535 check_auto_possessive(const uschar *previous, BOOL utf8, const uschar *ptr,
2837 ph10 532 int options, compile_data *cd)
2838 nigel 93 {
2839 ph10 532 int c, next;
2840     int op_code = *previous++;
2841 nigel 93
2842     /* Skip whitespace and comments in extended mode */
2843    
2844     if ((options & PCRE_EXTENDED) != 0)
2845     {
2846     for (;;)
2847     {
2848     while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++;
2849 ph10 391 if (*ptr == CHAR_NUMBER_SIGN)
2850 nigel 93 {
2851 ph10 579 ptr++;
2852 ph10 556 while (*ptr != 0)
2853     {
2854 nigel 93 if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; }
2855 ph10 556 ptr++;
2856 ph10 579 #ifdef SUPPORT_UTF8
2857 ph10 556 if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++;
2858     #endif
2859     }
2860 nigel 93 }
2861     else break;
2862     }
2863     }
2864    
2865     /* If the next item is one that we can handle, get its value. A non-negative
2866     value is a character, a negative value is an escape value. */
2867    
2868 ph10 391 if (*ptr == CHAR_BACKSLASH)
2869 nigel 93 {
2870     int temperrorcode = 0;
2871     next = check_escape(&ptr, &temperrorcode, cd->bracount, options, FALSE);
2872     if (temperrorcode != 0) return FALSE;
2873     ptr++; /* Point after the escape sequence */
2874     }
2875    
2876     else if ((cd->ctypes[*ptr] & ctype_meta) == 0)
2877     {
2878     #ifdef SUPPORT_UTF8
2879     if (utf8) { GETCHARINC(next, ptr); } else
2880     #endif
2881     next = *ptr++;
2882     }
2883    
2884     else return FALSE;
2885    
2886     /* Skip whitespace and comments in extended mode */
2887    
2888     if ((options & PCRE_EXTENDED) != 0)
2889     {
2890     for (;;)
2891     {
2892     while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++;
2893 ph10 391 if (*ptr == CHAR_NUMBER_SIGN)
2894 nigel 93 {
2895 ph10 579 ptr++;
2896 ph10 556 while (*ptr != 0)
2897     {
2898 nigel 93 if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; }
2899 ph10 556 ptr++;
2900 ph10 579 #ifdef SUPPORT_UTF8
2901 ph10 556 if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++;
2902     #endif
2903     }
2904 nigel 93 }
2905     else break;
2906     }
2907     }
2908    
2909     /* If the next thing is itself optional, we have to give up. */
2910    
2911 ph10 392 if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK ||
2912 ph10 391 strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0)
2913     return FALSE;
2914 nigel 93
2915 ph10 532 /* Now compare the next item with the previous opcode. First, handle cases when
2916     the next item is a character. */
2917 nigel 93
2918     if (next >= 0) switch(op_code)
2919     {
2920     case OP_CHAR:
2921 ph10 535 #ifdef SUPPORT_UTF8
2922 ph10 532 GETCHARTEST(c, previous);
2923 ph10 369 #else
2924 ph10 532 c = *previous;
2925 ph10 535 #endif
2926     return c != next;
2927 nigel 93
2928 ph10 602 /* For CHARI (caseless character) we must check the other case. If we have
2929 nigel 93 Unicode property support, we can use it to test the other case of
2930     high-valued characters. */
2931    
2932 ph10 602 case OP_CHARI:
2933 ph10 535 #ifdef SUPPORT_UTF8
2934 ph10 532 GETCHARTEST(c, previous);
2935     #else
2936     c = *previous;
2937 ph10 535 #endif
2938 ph10 532 if (c == next) return FALSE;
2939 nigel 93 #ifdef SUPPORT_UTF8
2940     if (utf8)
2941     {
2942     unsigned int othercase;
2943     if (next < 128) othercase = cd->fcc[next]; else
2944     #ifdef SUPPORT_UCP
2945 ph10 349 othercase = UCD_OTHERCASE((unsigned int)next);
2946 nigel 93 #else
2947     othercase = NOTACHAR;
2948     #endif
2949 ph10 532 return (unsigned int)c != othercase;
2950 nigel 93 }
2951     else
2952     #endif /* SUPPORT_UTF8 */
2953 ph10 532 return (c != cd->fcc[next]); /* Non-UTF-8 mode */
2954 nigel 93
2955 ph10 602 /* For OP_NOT and OP_NOTI, the data is always a single-byte character. These
2956 ph10 604 opcodes are not used for multi-byte characters, because they are coded using
2957 ph10 602 an XCLASS instead. */
2958 nigel 93
2959     case OP_NOT:
2960 ph10 602 return (c = *previous) == next;
2961 ph10 604
2962     case OP_NOTI:
2963 ph10 532 if ((c = *previous) == next) return TRUE;
2964 nigel 93 #ifdef SUPPORT_UTF8
2965     if (utf8)
2966     {
2967     unsigned int othercase;
2968     if (next < 128) othercase = cd->fcc[next]; else
2969     #ifdef SUPPORT_UCP
2970 ph10 349 othercase = UCD_OTHERCASE(next);
2971 nigel 93 #else
2972     othercase = NOTACHAR;
2973     #endif
2974 ph10 532 return (unsigned int)c == othercase;
2975 nigel 93 }
2976     else
2977     #endif /* SUPPORT_UTF8 */
2978 ph10 532 return (c == cd->fcc[next]); /* Non-UTF-8 mode */
2979 nigel 93
2980 ph10 535 /* Note that OP_DIGIT etc. are generated only when PCRE_UCP is *not* set.
2981     When it is set, \d etc. are converted into OP_(NOT_)PROP codes. */
2982    
2983 nigel 93 case OP_DIGIT:
2984     return next > 127 || (cd->ctypes[next] & ctype_digit) == 0;
2985    
2986     case OP_NOT_DIGIT:
2987     return next <= 127 && (cd->ctypes[next] & ctype_digit) != 0;
2988    
2989     case OP_WHITESPACE:
2990     return next > 127 || (cd->ctypes[next] & ctype_space) == 0;
2991    
2992     case OP_NOT_WHITESPACE:
2993     return next <= 127 && (cd->ctypes[next] & ctype_space) != 0;
2994    
2995     case OP_WORDCHAR:
2996     return next > 127 || (cd->ctypes[next] & ctype_word) == 0;
2997    
2998     case OP_NOT_WORDCHAR:
2999     return next <= 127 && (cd->ctypes[next] & ctype_word) != 0;
3000    
3001 ph10 180 case OP_HSPACE:
3002     case OP_NOT_HSPACE:
3003     switch(next)
3004     {
3005     case 0x09:
3006     case 0x20:
3007     case 0xa0:
3008     case 0x1680:
3009     case 0x180e:
3010     case 0x2000:
3011     case 0x2001:
3012     case 0x2002:
3013     case 0x2003:
3014     case 0x2004:
3015     case 0x2005:
3016     case 0x2006:
3017     case 0x2007:
3018     case 0x2008:
3019     case 0x2009:
3020     case 0x200A:
3021     case 0x202f:
3022     case 0x205f:
3023     case 0x3000:
3024 ph10 528 return op_code == OP_NOT_HSPACE;
3025 ph10 180 default:
3026 ph10 528 return op_code != OP_NOT_HSPACE;
3027 ph10 180 }
3028    
3029 ph10 528 case OP_ANYNL:
3030 ph10 180 case OP_VSPACE:
3031     case OP_NOT_VSPACE:
3032     switch(next)
3033     {
3034     case 0x0a:
3035     case 0x0b:
3036     case 0x0c:
3037     case 0x0d:
3038     case 0x85:
3039     case 0x2028:
3040     case 0x2029:
3041 ph10 528 return op_code == OP_NOT_VSPACE;
3042 ph10 180 default:
3043 ph10 528 return op_code != OP_NOT_VSPACE;
3044 ph10 180 }
3045    
3046 ph10 532 #ifdef SUPPORT_UCP
3047     case OP_PROP:
3048     return check_char_prop(next, previous[0], previous[1], FALSE);
3049 ph10 535
3050 ph10 532 case OP_NOTPROP:
3051     return check_char_prop(next, previous[0], previous[1], TRUE);
3052     #endif
3053    
3054 nigel 93 default:
3055     return FALSE;
3056     }
3057    
3058    
3059 ph10 535 /* Handle the case when the next item is \d, \s, etc. Note that when PCRE_UCP
3060     is set, \d turns into ESC_du rather than ESC_d, etc., so ESC_d etc. are
3061     generated only when PCRE_UCP is *not* set, that is, when only ASCII
3062     characteristics are recognized. Similarly, the opcodes OP_DIGIT etc. are
3063 ph10 532 replaced by OP_PROP codes when PCRE_UCP is set. */
3064 nigel 93
3065     switch(op_code)
3066     {
3067     case OP_CHAR:
3068 ph10 602 case OP_CHARI:
3069 ph10 535 #ifdef SUPPORT_UTF8
3070 ph10 532 GETCHARTEST(c, previous);
3071     #else
3072     c = *previous;
3073 ph10 535 #endif
3074 nigel 93 switch(-next)
3075     {
3076     case ESC_d:
3077 ph10 532 return c > 127 || (cd->ctypes[c] & ctype_digit) == 0;
3078 nigel 93
3079     case ESC_D:
3080 ph10 532 return c <= 127 && (cd->ctypes[c] & ctype_digit) != 0;
3081 nigel 93
3082     case ESC_s:
3083 ph10 532 return c > 127 || (cd->ctypes[c] & ctype_space) == 0;
3084 nigel 93
3085     case ESC_S:
3086 ph10 532 return c <= 127 && (cd->ctypes[c] & ctype_space) != 0;
3087 nigel 93
3088     case ESC_w:
3089 ph10 532 return c > 127 || (cd->ctypes[c] & ctype_word) == 0;
3090 nigel 93
3091     case ESC_W:
3092 ph10 532 return c <= 127 && (cd->ctypes[c] & ctype_word) != 0;
3093 ph10 182
3094 ph10 180 case ESC_h:
3095     case ESC_H:
3096 ph10 532 switch(c)
3097 ph10 180 {
3098     case 0x09:
3099     case 0x20:
3100     case 0xa0:
3101     case 0x1680:
3102     case 0x180e:
3103     case 0x2000:
3104     case 0x2001:
3105     case 0x2002:
3106     case 0x2003:
3107     case 0x2004:
3108     case 0x2005:
3109     case 0x2006:
3110     case 0x2007:
3111     case 0x2008:
3112     case 0x2009:
3113     case 0x200A:
3114     case 0x202f:
3115     case 0x205f:
3116     case 0x3000:
3117     return -next != ESC_h;
3118     default:
3119     return -next == ESC_h;
3120 ph10 182 }
3121    
3122 ph10 180 case ESC_v:
3123     case ESC_V:
3124 ph10 532 switch(c)
3125 ph10 180 {
3126     case 0x0a:
3127     case 0x0b:
3128     case 0x0c:
3129     case 0x0d:
3130     case 0x85:
3131     case 0x2028:
3132     case 0x2029:
3133     return -next != ESC_v;
3134     default:
3135     return -next == ESC_v;
3136 ph10 182 }
3137 ph10 535
3138     /* When PCRE_UCP is set, these values get generated for \d etc. Find
3139     their substitutions and process them. The result will always be either
3140 ph10 532 -ESC_p or -ESC_P. Then fall through to process those values. */
3141 ph10 535
3142 ph10 532 #ifdef SUPPORT_UCP
3143     case ESC_du:
3144     case ESC_DU:
3145     case ESC_wu:
3146     case ESC_WU:
3147     case ESC_su:
3148     case ESC_SU:
3149     {
3150     int temperrorcode = 0;
3151     ptr = substitutes[-next - ESC_DU];
3152     next = check_escape(&ptr, &temperrorcode, 0, options, FALSE);
3153     if (temperrorcode != 0) return FALSE;
3154     ptr++; /* For compatibility */
3155     }
3156 ph10 535 /* Fall through */
3157 nigel 93
3158 ph10 532 case ESC_p:
3159     case ESC_P:
3160     {
3161     int ptype, pdata, errorcodeptr;
3162 ph10 535 BOOL negated;
3163    
3164 ph10 532 ptr--; /* Make ptr point at the p or P */
3165     ptype = get_ucp(&ptr, &negated, &pdata, &errorcodeptr);
3166     if (ptype < 0) return FALSE;
3167     ptr++; /* Point past the final curly ket */
3168 ph10 535
3169 ph10 532 /* If the property item is optional, we have to give up. (When generated
3170     from \d etc by PCRE_UCP, this test will have been applied much earlier,
3171     to the original \d etc. At this point, ptr will point to a zero byte. */
3172 ph10 535
3173 ph10 532 if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK ||
3174     strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0)
3175     return FALSE;
3176 ph10 535
3177 ph10 532 /* Do the property check. */
3178 ph10 535
3179 ph10 532 return check_char_prop(c, ptype, pdata, (next == -ESC_P) != negated);
3180 ph10 535 }
3181 ph10 532 #endif
3182    
3183 nigel 93 default:
3184     return FALSE;
3185     }
3186    
3187 ph10 535 /* In principle, support for Unicode properties should be integrated here as
3188     well. It means re-organizing the above code so as to get hold of the property
3189     values before switching on the op-code. However, I wonder how many patterns
3190     combine ASCII \d etc with Unicode properties? (Note that if PCRE_UCP is set,
3191     these op-codes are never generated.) */
3192    
3193 nigel 93 case OP_DIGIT:
3194 ph10 180 return next == -ESC_D || next == -ESC_s || next == -ESC_W ||
3195 ph10 528 next == -ESC_h || next == -ESC_v || next == -ESC_R;
3196 nigel 93
3197     case OP_NOT_DIGIT:
3198     return next == -ESC_d;
3199    
3200     case OP_WHITESPACE:
3201 ph10 528 return next == -ESC_S || next == -ESC_d || next == -ESC_w || next == -ESC_R;
3202 nigel 93
3203     case OP_NOT_WHITESPACE:
3204 ph10 180 return next == -ESC_s || next == -ESC_h || next == -ESC_v;
3205 nigel 93
3206 ph10 180 case OP_HSPACE:
3207 ph10 535 return next == -ESC_S || next == -ESC_H || next == -ESC_d ||
3208 ph10 528 next == -ESC_w || next == -ESC_v || next == -ESC_R;
3209 ph10 180
3210     case OP_NOT_HSPACE:
3211     return next == -ESC_h;
3212 ph10 182
3213 ph10 180 /* Can't have \S in here because VT matches \S (Perl anomaly) */
3214 ph10 535 case OP_ANYNL:
3215 ph10 182 case OP_VSPACE:
3216 ph10 180 return next == -ESC_V || next == -ESC_d || next == -ESC_w;
3217    
3218     case OP_NOT_VSPACE:
3219 ph10 528 return next == -ESC_v || next == -ESC_R;
3220 ph10 180
3221 nigel 93 case OP_WORDCHAR:
3222 ph10 535 return next == -ESC_W || next == -ESC_s || next == -ESC_h ||
3223 ph10 528 next == -ESC_v || next == -ESC_R;
3224 nigel 93
3225     case OP_NOT_WORDCHAR:
3226     return next == -ESC_w || next == -ESC_d;
3227 ph10 182
3228 nigel 93 default:
3229     return FALSE;
3230     }
3231    
3232     /* Control does not reach here */
3233     }
3234    
3235    
3236    
3237     /*************************************************
3238 nigel 77 * Compile one branch *
3239     *************************************************/
3240    
3241 nigel 93 /* Scan the pattern, compiling it into the a vector. If the options are
3242 nigel 77 changed during the branch, the pointer is used to change the external options
3243 nigel 93 bits. This function is used during the pre-compile phase when we are trying
3244     to find out the amount of memory needed, as well as during the real compile
3245     phase. The value of lengthptr distinguishes the two phases.
3246 nigel 77
3247     Arguments:
3248     optionsptr pointer to the option bits
3249     codeptr points to the pointer to the current code point
3250     ptrptr points to the current pattern pointer
3251     errorcodeptr points to error code variable
3252     firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE)
3253     reqbyteptr set to the last literal character required, else < 0
3254     bcptr points to current branch chain
3255 ph10 654 cond_depth conditional nesting depth
3256 nigel 77 cd contains pointers to tables etc.
3257 nigel 93 lengthptr NULL during the real compile phase
3258     points to length accumulator during pre-compile phase
3259 nigel 77
3260     Returns: TRUE on success
3261     FALSE, with *errorcodeptr set non-zero on error
3262     */
3263    
3264     static BOOL
3265 nigel 93 compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr,
3266     int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr,
3267 ph10 642 int cond_depth, compile_data *cd, int *lengthptr)
3268 nigel 77 {
3269     int repeat_type, op_type;
3270     int repeat_min = 0, repeat_max = 0; /* To please picky compilers */
3271     int bravalue = 0;
3272     int greedy_default, greedy_non_default;
3273     int firstbyte, reqbyte;
3274     int zeroreqbyte, zerofirstbyte;
3275     int req_caseopt, reqvary, tempreqvary;
3276 ph10 635 int options = *optionsptr; /* May change dynamically */
3277 nigel 77 int after_manual_callout = 0;
3278 nigel 93 int length_prevgroup = 0;
3279 nigel 77 register int c;
3280     register uschar *code = *codeptr;
3281 nigel 93 uschar *last_code = code;
3282     uschar *orig_code = code;
3283 nigel 77 uschar *tempcode;
3284     BOOL inescq = FALSE;
3285     BOOL groupsetfirstbyte = FALSE;
3286     const uschar *ptr = *ptrptr;
3287     const uschar *tempptr;
3288 ph10 518 const uschar *nestptr = NULL;
3289 nigel 77 uschar *previous = NULL;
3290     uschar *previous_callout = NULL;
3291 nigel 93 uschar *save_hwm = NULL;
3292 nigel 77 uschar classbits[32];
3293    
3294 ph10 635 /* We can fish out the UTF-8 setting once and for all into a BOOL, but we
3295 ph10 654 must not do this for other options (e.g. PCRE_EXTENDED) because they may change
3296 ph10 635 dynamically as we process the pattern. */
3297    
3298 nigel 77 #ifdef SUPPORT_UTF8
3299     BOOL class_utf8;
3300     BOOL utf8 = (options & PCRE_UTF8) != 0;
3301     uschar *class_utf8data;
3302 ph10 300 uschar *class_utf8data_base;
3303 nigel 77 uschar utf8_char[6];
3304     #else
3305     BOOL utf8 = FALSE;
3306     #endif
3307    
3308 ph10 475 #ifdef PCRE_DEBUG
3309 nigel 93 if (lengthptr != NULL) DPRINTF((">> start branch\n"));
3310     #endif
3311    
3312 nigel 77 /* Set up the default and non-default settings for greediness */
3313    
3314     greedy_default = ((options & PCRE_UNGREEDY) != 0);
3315     greedy_non_default = greedy_default ^ 1;
3316    
3317     /* Initialize no first byte, no required byte. REQ_UNSET means "no char
3318     matching encountered yet". It gets changed to REQ_NONE if we hit something that
3319     matches a non-fixed char first char; reqbyte just remains unset if we never
3320     find one.
3321    
3322     When we hit a repeat whose minimum is zero, we may have to adjust these values
3323     to take the zero repeat into account. This is implemented by setting them to
3324     zerofirstbyte and zeroreqbyte when such a repeat is encountered. The individual
3325     item types that can be repeated set these backoff variables appropriately. */
3326    
3327     firstbyte = reqbyte = zerofirstbyte = zeroreqbyte = REQ_UNSET;
3328    
3329     /* The variable req_caseopt contains either the REQ_CASELESS value or zero,
3330     according to the current setting of the caseless flag. REQ_CASELESS is a bit
3331     value > 255. It is added into the firstbyte or reqbyte variables to record the
3332     case status of the value. This is used only for ASCII characters. */
3333    
3334     req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0;
3335    
3336     /* Switch on next character until the end of the branch */
3337    
3338     for (;; ptr++)
3339     {
3340     BOOL negate_class;
3341 ph10 286 BOOL should_flip_negation;
3342 nigel 77 BOOL possessive_quantifier;
3343     BOOL is_quantifier;
3344 nigel 93 BOOL is_recurse;
3345 ph10 180 BOOL reset_bracount;
3346 nigel 77 int class_charcount;
3347     int class_lastchar;
3348     int newoptions;
3349     int recno;
3350 ph10 172 int refsign;
3351 nigel 77 int skipbytes;
3352     int subreqbyte;
3353     int subfirstbyte;
3354 nigel 93 int terminator;
3355 nigel 77 int mclength;
3356 ph10 733 int tempbracount;
3357 nigel 77 uschar mcbuffer[8];
3358    
3359 nigel 93 /* Get next byte in the pattern */
3360 nigel 77
3361     c = *ptr;
3362 ph10 345
3363 ph10 535 /* If we are at the end of a nested substitution, revert to the outer level
3364 ph10 518 string. Nesting only happens one level deep. */
3365    
3366     if (c == 0 && nestptr != NULL)
3367     {
3368     ptr = nestptr;
3369     nestptr = NULL;
3370     c = *ptr;
3371     }
3372    
3373 nigel 93 /* If we are in the pre-compile phase, accumulate the length used for the
3374     previous cycle of this loop. */
3375    
3376     if (lengthptr != NULL)
3377     {
3378 ph10 475 #ifdef PCRE_DEBUG
3379 nigel 93 if (code > cd->hwm) cd->hwm = code; /* High water info */
3380     #endif
3381 ph10 788 if (code > cd->start_workspace + cd->workspace_size -
3382 ph10 773 WORK_SIZE_SAFETY_MARGIN) /* Check for overrun */
3383 nigel 93 {
3384     *errorcodeptr = ERR52;
3385     goto FAILED;
3386     }
3387    
3388     /* There is at least one situation where code goes backwards: this is the
3389     case of a zero quantifier after a class (e.g. [ab]{0}). At compile time,
3390     the class is simply eliminated. However, it is created first, so we have to
3391     allow memory for it. Therefore, don't ever reduce the length at this point.
3392     */
3393    
3394     if (code < last_code) code = last_code;
3395 ph10 202
3396     /* Paranoid check for integer overflow */
3397    
3398     if (OFLOW_MAX - *lengthptr < code - last_code)
3399     {
3400     *errorcodeptr = ERR20;
3401     goto FAILED;
3402     }
3403    
3404 ph10 530 *lengthptr += (int)(code - last_code);
3405 ph10 751 DPRINTF(("length=%d added %d c=%c\n", *lengthptr, (int)(code - last_code),
3406     c));
3407 nigel 93
3408     /* If "previous" is set and it is not at the start of the work space, move
3409     it back to there, in order to avoid filling up the work space. Otherwise,
3410     if "previous" is NULL, reset the current code pointer to the start. */
3411    
3412     if (previous != NULL)
3413     {
3414     if (previous > orig_code)
3415     {
3416     memmove(orig_code, previous, code - previous);
3417     code -= previous - orig_code;
3418     previous = orig_code;
3419     }
3420     }
3421     else code = orig_code;
3422    
3423     /* Remember where this code item starts so we can pick up the length
3424     next time round. */
3425    
3426     last_code = code;
3427     }
3428    
3429     /* In the real compile phase, just check the workspace used by the forward
3430     reference list. */
3431    
3432 ph10 788 else if (cd->hwm > cd->start_workspace + cd->workspace_size -
3433 ph10 773 WORK_SIZE_SAFETY_MARGIN)
3434 nigel 93 {
3435     *errorcodeptr = ERR52;
3436     goto FAILED;
3437     }
3438    
3439 nigel 77 /* If in \Q...\E, check for the end; if not, we have a literal */
3440    
3441     if (inescq && c != 0)
3442     {
3443 ph10 391 if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E)
3444 nigel 77 {
3445     inescq = FALSE;
3446     ptr++;
3447     continue;
3448     }
3449     else
3450     {
3451     if (previous_callout != NULL)
3452     {
3453 nigel 93 if (lengthptr == NULL) /* Don't attempt in pre-compile phase */
3454     complete_callout(previous_callout, ptr, cd);
3455 nigel 77 previous_callout = NULL;
3456     }
3457     if ((options & PCRE_AUTO_CALLOUT) != 0)
3458     {
3459     previous_callout = code;
3460     code = auto_callout(code, ptr, cd);
3461     }
3462     goto NORMAL_CHAR;
3463     }
3464     }
3465    
3466     /* Fill in length of a previous callout, except when the next thing is
3467     a quantifier. */
3468    
3469 ph10 392 is_quantifier =
3470 ph10 391 c == CHAR_ASTERISK || c == CHAR_PLUS || c == CHAR_QUESTION_MARK ||
3471     (c == CHAR_LEFT_CURLY_BRACKET && is_counted_repeat(ptr+1));
3472 nigel 77
3473     if (!is_quantifier && previous_callout != NULL &&
3474     after_manual_callout-- <= 0)
3475     {
3476 nigel 93 if (lengthptr == NULL) /* Don't attempt in pre-compile phase */
3477     complete_callout(previous_callout, ptr, cd);
3478 nigel 77 previous_callout = NULL;
3479     }
3480    
3481 ph10 635 /* In extended mode, skip white space and comments. */
3482 nigel 77
3483     if ((options & PCRE_EXTENDED) != 0)
3484     {
3485     if ((cd->ctypes[c] & ctype_space) != 0) continue;
3486 ph10 391 if (c == CHAR_NUMBER_SIGN)
3487 nigel 77 {
3488 ph10 579 ptr++;
3489 ph10 556 while (*ptr != 0)
3490 nigel 91 {
3491 nigel 93 if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; }
3492 ph10 556 ptr++;
3493 ph10 579 #ifdef SUPPORT_UTF8
3494 ph10 556 if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++;
3495     #endif
3496 nigel 91 }
3497 nigel 93 if (*ptr != 0) continue;
3498    
3499 nigel 91 /* Else fall through to handle end of string */
3500     c = 0;
3501 nigel 77 }
3502     }
3503    
3504     /* No auto callout for quantifiers. */
3505    
3506     if ((options & PCRE_AUTO_CALLOUT) != 0 && !is_quantifier)
3507     {
3508     previous_callout = code;
3509     code = auto_callout(code, ptr, cd);
3510     }
3511    
3512     switch(c)
3513     {
3514 nigel 93 /* ===================================================================*/
3515     case 0: /* The branch terminates at string end */
3516 ph10 391 case CHAR_VERTICAL_LINE: /* or | or ) */
3517     case CHAR_RIGHT_PARENTHESIS:
3518 nigel 77 *firstbyteptr = firstbyte;
3519     *reqbyteptr = reqbyte;
3520     *codeptr = code;
3521     *ptrptr = ptr;
3522 nigel 93 if (lengthptr != NULL)
3523     {
3524 ph10 202 if (OFLOW_MAX - *lengthptr < code - last_code)
3525     {
3526     *errorcodeptr = ERR20;
3527     goto FAILED;
3528     }
3529 ph10 530 *lengthptr += (int)(code - last_code); /* To include callout length */
3530 nigel 93 DPRINTF((">> end branch\n"));
3531     }
3532 nigel 77 return TRUE;
3533    
3534 nigel 93
3535     /* ===================================================================*/
3536 nigel 77 /* Handle single-character metacharacters. In multiline mode, ^ disables
3537     the setting of any following char as a first character. */
3538    
3539 ph10 391 case CHAR_CIRCUMFLEX_ACCENT:
3540 ph10 602 previous = NULL;
3541 nigel 77 if ((options & PCRE_MULTILINE) != 0)
3542     {
3543     if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE;
3544 ph10 602 *code++ = OP_CIRCM;
3545 nigel 77 }
3546 ph10 602 else *code++ = OP_CIRC;
3547 nigel 77 break;
3548    
3549 ph10 391 case CHAR_DOLLAR_SIGN:
3550 nigel 77 previous = NULL;
3551 ph10 602 *code++ = ((options & PCRE_MULTILINE) != 0)? OP_DOLLM : OP_DOLL;
3552 nigel 77 break;
3553    
3554     /* There can never be a first char if '.' is first, whatever happens about
3555     repeats. The value of reqbyte doesn't change either. */
3556    
3557 ph10 391 case CHAR_DOT:
3558 nigel 77 if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE;
3559     zerofirstbyte = firstbyte;
3560     zeroreqbyte = reqbyte;
3561     previous = code;
3562 ph10 342 *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY;
3563 nigel 77 break;
3564    
3565 nigel 93
3566     /* ===================================================================*/
3567 nigel 87 /* Character classes. If the included characters are all < 256, we build a
3568     32-byte bitmap of the permitted characters, except in the special case
3569     where there is only one such character. For negated classes, we build the
3570     map as usual, then invert it at the end. However, we use a different opcode
3571     so that data characters > 255 can be handled correctly.
3572 nigel 77
3573     If the class contains characters outside the 0-255 range, a different
3574     opcode is compiled. It may optionally have a bit map for characters < 256,
3575     but those above are are explicitly listed afterwards. A flag byte tells
3576     whether the bitmap is present, and whether this is a negated class or not.
3577 ph10 345
3578 ph10 336 In JavaScript compatibility mode, an isolated ']' causes an error. In
3579     default (Perl) mode, it is treated as a data character. */
3580 ph10 345
3581 ph10 391 case CHAR_RIGHT_SQUARE_BRACKET:
3582 ph10 336 if ((cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0)
3583     {
3584     *errorcodeptr = ERR64;
3585 ph10 345 goto FAILED;
3586 ph10 336 }
3587 ph10 345 goto NORMAL_CHAR;
3588 nigel 77
3589 ph10 391 case CHAR_LEFT_SQUARE_BRACKET:
3590 nigel 77 previous = code;
3591    
3592     /* PCRE supports POSIX class stuff inside a class. Perl gives an error if
3593     they are encountered at the top level, so we'll do that too. */
3594    
3595 ph10 392 if ((ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
3596 ph10 391 ptr[1] == CHAR_EQUALS_SIGN) &&
3597 ph10 295 check_posix_syntax(ptr, &tempptr))
3598 nigel 77 {
3599 ph10 391 *errorcodeptr = (ptr[1] == CHAR_COLON)? ERR13 : ERR31;
3600 nigel 77 goto FAILED;
3601     }
3602    
3603 ph10 205 /* If the first character is '^', set the negation flag and skip it. Also,
3604 ph10 208 if the first few characters (either before or after ^) are \Q\E or \E we
3605 ph10 205 skip them too. This makes for compatibility with Perl. */
3606 ph10 208
3607 ph10 205 negate_class = FALSE;
3608     for (;;)
3609 nigel 77 {
3610     c = *(++ptr);
3611 ph10 391 if (c == CHAR_BACKSLASH)
3612 ph10 205 {
3613 ph10 392 if (ptr[1] == CHAR_E)
3614 ph10 391 ptr++;
3615 ph10 392 else if (strncmp((const char *)ptr+1,
3616     STR_Q STR_BACKSLASH STR_E, 3) == 0)
3617 ph10 391 ptr += 3;
3618 ph10 392 else
3619 ph10 391 break;
3620 ph10 205 }
3621 ph10 391 else if (!negate_class && c == CHAR_CIRCUMFLEX_ACCENT)
3622 ph10 205 negate_class = TRUE;
3623     else break;
3624 ph10 208 }
3625 ph10 345
3626     /* Empty classes are allowed in JavaScript compatibility mode. Otherwise,
3627     an initial ']' is taken as a data character -- the code below handles
3628 ph10 341 that. In JS mode, [] must always fail, so generate OP_FAIL, whereas
3629     [^] must match any character, so generate OP_ALLANY. */
3630 ph10 345
3631 ph10 392 if (c == CHAR_RIGHT_SQUARE_BRACKET &&
3632 ph10 391 (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0)
3633 ph10 341 {
3634     *code++ = negate_class? OP_ALLANY : OP_FAIL;
3635     if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE;
3636     zerofirstbyte = firstbyte;
3637     break;
3638 ph10 345 }
3639 nigel 77
3640 ph10 286 /* If a class contains a negative special such as \S, we need to flip the
3641     negation flag at the end, so that support for characters > 255 works
3642 ph10 264 correctly (they are all included in the class). */
3643    
3644     should_flip_negation = FALSE;
3645    
3646 nigel 77 /* Keep a count of chars with values < 256 so that we can optimize the case
3647 nigel 93 of just a single character (as long as it's < 256). However, For higher
3648     valued UTF-8 characters, we don't yet do any optimization. */
3649 nigel 77
3650     class_charcount = 0;
3651     class_lastchar = -1;
3652    
3653 nigel 93 /* Initialize the 32-char bit map to all zeros. We build the map in a
3654     temporary bit of memory, in case the class contains only 1 character (less
3655     than 256), because in that case the compiled code doesn't use the bit map.
3656     */
3657    
3658     memset(classbits, 0, 32 * sizeof(uschar));
3659    
3660 nigel 77 #ifdef SUPPORT_UTF8
3661     class_utf8 = FALSE; /* No chars >= 256 */
3662 nigel 93 class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */
3663 ph10 309 class_utf8data_base = class_utf8data; /* For resetting in pass 1 */
3664 nigel 77 #endif
3665    
3666     /* Process characters until ] is reached. By writing this as a "do" it
3667 nigel 93 means that an initial ] is taken as a data character. At the start of the
3668     loop, c contains the first byte of the character. */
3669 nigel 77
3670 nigel 93 if (c != 0) do
3671 nigel 77 {
3672 nigel 93 const uschar *oldptr;
3673    
3674 nigel 77 #ifdef SUPPORT_UTF8
3675     if (utf8 && c > 127)
3676     { /* Braces are required because the */
3677     GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */
3678     }
3679 ph10 535
3680 ph10 300 /* In the pre-compile phase, accumulate the length of any UTF-8 extra
3681 ph10 309 data and reset the pointer. This is so that very large classes that
3682 ph10 300 contain a zillion UTF-8 characters no longer overwrite the work space
3683 ph10 309 (which is on the stack). */
3684    
3685 ph10 300 if (lengthptr != NULL)
3686     {
3687 ph10 779 *lengthptr += (int)(class_utf8data - class_utf8data_base);
3688 ph10 309 class_utf8data = class_utf8data_base;
3689     }
3690    
3691 nigel 77 #endif
3692    
3693     /* Inside \Q...\E everything is literal except \E */
3694    
3695     if (inescq)
3696     {
3697 ph10 391 if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E) /* If we are at \E */
3698 nigel 77 {
3699 nigel 93 inescq = FALSE; /* Reset literal state */
3700     ptr++; /* Skip the 'E' */
3701     continue; /* Carry on with next */
3702 nigel 77 }
3703 nigel 93 goto CHECK_RANGE; /* Could be range if \E follows */
3704 nigel 77 }
3705    
3706     /* Handle POSIX class names. Perl allows a negation extension of the
3707     form [:^name:]. A square bracket that doesn't match the syntax is
3708     treated as a literal. We also recognize the POSIX constructions
3709     [.ch.] and [=ch=] ("collating elements") and fault them, as Perl
3710     5.6 and 5.8 do. */
3711    
3712 ph10 391 if (c == CHAR_LEFT_SQUARE_BRACKET &&
3713 ph10 392 (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
3714 ph10 391 ptr[1] == CHAR_EQUALS_SIGN) && check_posix_syntax(ptr, &tempptr))
3715 nigel 77 {
3716     BOOL local_negate = FALSE;
3717 nigel 87 int posix_class, taboffset, tabopt;
3718 nigel 77 register const uschar *cbits = cd->cbits;
3719 nigel 87 uschar pbits[32];
3720 nigel 77
3721 ph10 391 if (ptr[1] != CHAR_COLON)
3722 nigel 77 {
3723     *errorcodeptr = ERR31;
3724     goto FAILED;
3725     }
3726    
3727     ptr += 2;
3728 ph10 391 if (*ptr == CHAR_CIRCUMFLEX_ACCENT)
3729 nigel 77 {
3730     local_negate = TRUE;
3731 ph10 286 should_flip_negation = TRUE; /* Note negative special */
3732 nigel 77 ptr++;
3733     }
3734    
3735 ph10 530 posix_class = check_posix_name(ptr, (int)(tempptr - ptr));
3736 nigel 77 if (posix_class < 0)
3737     {
3738     *errorcodeptr = ERR30;
3739     goto FAILED;
3740     }
3741    
3742     /* If matching is caseless, upper and lower are converted to
3743     alpha. This relies on the fact that the class table starts with
3744     alpha, lower, upper as the first 3 entries. */
3745    
3746     if ((options & PCRE_CASELESS) != 0 && posix_class <= 2)
3747     posix_class = 0;
3748 ph10 535
3749     /* When PCRE_UCP is set, some of the POSIX classes are converted to
3750 ph10 518 different escape sequences that use Unicode properties. */
3751 ph10 535
3752 ph10 518 #ifdef SUPPORT_UCP
3753     if ((options & PCRE_UCP) != 0)
3754     {
3755     int pc = posix_class + ((local_negate)? POSIX_SUBSIZE/2 : 0);
3756     if (posix_substitutes[pc] != NULL)
3757     {
3758 ph10 535 nestptr = tempptr + 1;
3759 ph10 518 ptr = posix_substitutes[pc] - 1;
3760 ph10 535 continue;
3761     }
3762     }
3763     #endif
3764 ph10 518 /* In the non-UCP case, we build the bit map for the POSIX class in a
3765     chunk of local store because we may be adding and subtracting from it,
3766     and we don't want to subtract bits that may be in the main map already.
3767     At the end we or the result into the bit map that is being built. */
3768 nigel 77
3769     posix_class *= 3;
3770 nigel 87
3771     /* Copy in the first table (always present) */
3772    
3773     memcpy(pbits, cbits + posix_class_maps[posix_class],
3774     32 * sizeof(uschar));
3775    
3776     /* If there is a second table, add or remove it as required. */
3777    
3778     taboffset = posix_class_maps[posix_class + 1];
3779     tabopt = posix_class_maps[posix_class + 2];
3780    
3781     if (taboffset >= 0)
3782 nigel 77 {
3783 nigel 87 if (tabopt >= 0)
3784     for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset];
3785 nigel 77 else
3786 nigel 87 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset];
3787 nigel 77 }
3788    
3789 nigel 87 /* Not see if we need to remove any special characters. An option
3790     value of 1 removes vertical space and 2 removes underscore. */
3791    
3792     if (tabopt < 0) tabopt = -tabopt;
3793     if (tabopt == 1) pbits[1] &= ~0x3c;
3794     else if (tabopt == 2) pbits[11] &= 0x7f;
3795    
3796     /* Add the POSIX table or its complement into the main table that is
3797     being built and we are done. */
3798    
3799     if (local_negate)
3800     for (c = 0; c < 32; c++) classbits[c] |= ~pbits[c];
3801     else
3802     for (c = 0; c < 32; c++) classbits[c] |= pbits[c];
3803    
3804 nigel 77 ptr = tempptr + 1;
3805     class_charcount = 10; /* Set > 1; assumes more than 1 per class */
3806     continue; /* End of POSIX syntax handling */
3807     }
3808    
3809     /* Backslash may introduce a single character, or it may introduce one
3810 nigel 93 of the specials, which just set a flag. The sequence \b is a special
3811 ph10 513 case. Inside a class (and only there) it is treated as backspace. We
3812     assume that other escapes have more than one character in them, so set
3813     class_charcount bigger than one. Unrecognized escapes fall through and
3814     are either treated as literal characters (by default), or are faulted if
3815     PCRE_EXTRA is set. */
3816 nigel 77
3817 ph10 391 if (c == CHAR_BACKSLASH)
3818 nigel 77 {
3819 nigel 93 c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE);
3820     if (*errorcodeptr != 0) goto FAILED;
3821 nigel 77
3822 ph10 513 if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */
3823 ph10 758 else if (-c == ESC_N) /* \N is not supported in a class */
3824     {
3825     *errorcodeptr = ERR71;
3826 ph10 788 goto FAILED;
3827     }
3828 nigel 77 else if (-c == ESC_Q) /* Handle start of quoted string */
3829     {
3830 ph10 391 if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E)
3831 nigel 77 {
3832     ptr += 2; /* avoid empty string */
3833     }
3834     else inescq = TRUE;