/[pcre]/code/branches/pcre16/pcre_compile.c
ViewVC logotype

Contents of /code/branches/pcre16/pcre_compile.c

Parent Directory Parent Directory | Revision Log Revision Log


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