Parent Directory
|
Revision Log
|
Patch
revision 341 by ph10, Sat Apr 19 16:41:04 2008 UTC | revision 773 by ph10, Wed Nov 30 18:10:27 2011 UTC | |
---|---|---|
# | Line 6 | Line 6 |
6 | and semantics are as close as possible to those of the Perl 5 language. | and semantics are as close as possible to those of the Perl 5 language. |
7 | ||
8 | Written by Philip Hazel | Written by Philip Hazel |
9 | Copyright (c) 1997-2008 University of Cambridge | Copyright (c) 1997-2011 University of Cambridge |
10 | ||
11 | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
12 | Redistribution and use in source and binary forms, with or without | Redistribution and use in source and binary forms, with or without |
# | Line 53 supporting internal functions that are n | Line 53 supporting internal functions that are n |
53 | #include "pcre_internal.h" | #include "pcre_internal.h" |
54 | ||
55 | ||
56 | /* When DEBUG is defined, we need the pcre_printint() function, which is also | /* When PCRE_DEBUG is defined, we need the pcre_printint() function, which is |
57 | used by pcretest. DEBUG is not defined when building a production library. */ | also used by pcretest. PCRE_DEBUG is not defined when building a production |
58 | library. */ | |
59 | ||
60 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
61 | #include "pcre_printint.src" | #include "pcre_printint.src" |
62 | #endif | #endif |
63 | ||
# | Line 87 so this number is very generous. | Line 88 so this number is very generous. |
88 | The same workspace is used during the second, actual compile phase for | 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 | 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 | end. Each entry in this list occupies LINK_SIZE bytes, so even when LINK_SIZE |
91 | is 4 there is plenty of room. */ | is 4 there is plenty of room for most patterns. However, the memory can get |
92 | filled up by repetitions of forward references, for example patterns like | |
93 | /(?1){0,1999}(b)/, and one user did hit the limit. The code has been changed so | |
94 | that the workspace is expanded using malloc() in this situation. The value | |
95 | below is therefore a minimum, and we put a maximum on it for safety. The | |
96 | minimum is now also defined in terms of LINK_SIZE so that the use of malloc() | |
97 | kicks in at the same number of forward references in all cases. */ | |
98 | ||
99 | #define COMPILE_WORK_SIZE (4096) | #define COMPILE_WORK_SIZE (2048*LINK_SIZE) |
100 | #define COMPILE_WORK_SIZE_MAX (100*COMPILE_WORK_SIZE) | |
101 | ||
102 | /* The overrun tests check for a slightly smaller size so that they detect the | |
103 | overrun before it actually does run off the end of the data block. */ | |
104 | ||
105 | #define WORK_SIZE_SAFETY_MARGIN (100) | |
106 | ||
107 | ||
108 | /* Table for handling escaped characters in the range '0'-'z'. Positive returns | /* Table for handling escaped characters in the range '0'-'z'. Positive returns |
# | Line 97 are simple data values; negative values | Line 110 are simple data values; negative values |
110 | on. Zero means further processing is needed (for things like \x), or the escape | on. Zero means further processing is needed (for things like \x), or the escape |
111 | is invalid. */ | is invalid. */ |
112 | ||
113 | #ifndef EBCDIC /* This is the "normal" table for ASCII systems */ | #ifndef EBCDIC |
114 | ||
115 | /* This is the "normal" table for ASCII systems or for EBCDIC systems running | |
116 | in UTF-8 mode. */ | |
117 | ||
118 | static const short int escapes[] = { | static const short int escapes[] = { |
119 | 0, 0, 0, 0, 0, 0, 0, 0, /* 0 - 7 */ | 0, 0, |
120 | 0, 0, ':', ';', '<', '=', '>', '?', /* 8 - ? */ | 0, 0, |
121 | '@', -ESC_A, -ESC_B, -ESC_C, -ESC_D, -ESC_E, 0, -ESC_G, /* @ - G */ | 0, 0, |
122 | -ESC_H, 0, 0, -ESC_K, 0, 0, 0, 0, /* H - O */ | 0, 0, |
123 | -ESC_P, -ESC_Q, -ESC_R, -ESC_S, 0, 0, -ESC_V, -ESC_W, /* P - W */ | 0, 0, |
124 | -ESC_X, 0, -ESC_Z, '[', '\\', ']', '^', '_', /* X - _ */ | CHAR_COLON, CHAR_SEMICOLON, |
125 | '`', 7, -ESC_b, 0, -ESC_d, ESC_e, ESC_f, 0, /* ` - g */ | CHAR_LESS_THAN_SIGN, CHAR_EQUALS_SIGN, |
126 | -ESC_h, 0, 0, -ESC_k, 0, 0, ESC_n, 0, /* h - o */ | CHAR_GREATER_THAN_SIGN, CHAR_QUESTION_MARK, |
127 | -ESC_p, 0, ESC_r, -ESC_s, ESC_tee, 0, -ESC_v, -ESC_w, /* p - w */ | CHAR_COMMERCIAL_AT, -ESC_A, |
128 | 0, 0, -ESC_z /* x - z */ | -ESC_B, -ESC_C, |
129 | -ESC_D, -ESC_E, | |
130 | 0, -ESC_G, | |
131 | -ESC_H, 0, | |
132 | 0, -ESC_K, | |
133 | 0, 0, | |
134 | -ESC_N, 0, | |
135 | -ESC_P, -ESC_Q, | |
136 | -ESC_R, -ESC_S, | |
137 | 0, 0, | |
138 | -ESC_V, -ESC_W, | |
139 | -ESC_X, 0, | |
140 | -ESC_Z, CHAR_LEFT_SQUARE_BRACKET, | |
141 | CHAR_BACKSLASH, CHAR_RIGHT_SQUARE_BRACKET, | |
142 | CHAR_CIRCUMFLEX_ACCENT, CHAR_UNDERSCORE, | |
143 | CHAR_GRAVE_ACCENT, 7, | |
144 | -ESC_b, 0, | |
145 | -ESC_d, ESC_e, | |
146 | ESC_f, 0, | |
147 | -ESC_h, 0, | |
148 | 0, -ESC_k, | |
149 | 0, 0, | |
150 | ESC_n, 0, | |
151 | -ESC_p, 0, | |
152 | ESC_r, -ESC_s, | |
153 | ESC_tee, 0, | |
154 | -ESC_v, -ESC_w, | |
155 | 0, 0, | |
156 | -ESC_z | |
157 | }; | }; |
158 | ||
159 | #else /* This is the "abnormal" table for EBCDIC systems */ | #else |
160 | ||
161 | /* This is the "abnormal" table for EBCDIC systems without UTF-8 support. */ | |
162 | ||
163 | static const short int escapes[] = { | static const short int escapes[] = { |
164 | /* 48 */ 0, 0, 0, '.', '<', '(', '+', '|', | /* 48 */ 0, 0, 0, '.', '<', '(', '+', '|', |
165 | /* 50 */ '&', 0, 0, 0, 0, 0, 0, 0, | /* 50 */ '&', 0, 0, 0, 0, 0, 0, 0, |
# | Line 130 static const short int escapes[] = { | Line 178 static const short int escapes[] = { |
178 | /* B8 */ 0, 0, 0, 0, 0, ']', '=', '-', | /* B8 */ 0, 0, 0, 0, 0, ']', '=', '-', |
179 | /* C0 */ '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G, | /* C0 */ '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G, |
180 | /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, | /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, |
181 | /* D0 */ '}', 0, -ESC_K, 0, 0, 0, 0, -ESC_P, | /* D0 */ '}', 0, -ESC_K, 0, 0,-ESC_N, 0, -ESC_P, |
182 | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, |
183 | /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X, | /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X, |
184 | /* E8 */ 0,-ESC_Z, 0, 0, 0, 0, 0, 0, | /* E8 */ 0,-ESC_Z, 0, 0, 0, 0, 0, 0, |
# | Line 142 static const short int escapes[] = { | Line 190 static const short int escapes[] = { |
190 | ||
191 | /* Table of special "verbs" like (*PRUNE). This is a short table, so it is | /* Table of special "verbs" like (*PRUNE). This is a short table, so it is |
192 | searched linearly. Put all the names into a single string, in order to reduce | searched linearly. Put all the names into a single string, in order to reduce |
193 | the number of relocations when a shared library is dynamically linked. */ | the number of relocations when a shared library is dynamically linked. The |
194 | string is built from string macros so that it works in UTF-8 mode on EBCDIC | |
195 | platforms. */ | |
196 | ||
197 | typedef struct verbitem { | typedef struct verbitem { |
198 | int len; | int len; /* Length of verb name */ |
199 | int op; | int op; /* Op when no arg, or -1 if arg mandatory */ |
200 | int op_arg; /* Op when arg present, or -1 if not allowed */ | |
201 | } verbitem; | } verbitem; |
202 | ||
203 | static const char verbnames[] = | static const char verbnames[] = |
204 | "ACCEPT\0" | "\0" /* Empty name is a shorthand for MARK */ |
205 | "COMMIT\0" | STRING_MARK0 |
206 | "F\0" | STRING_ACCEPT0 |
207 | "FAIL\0" | STRING_COMMIT0 |
208 | "PRUNE\0" | STRING_F0 |
209 | "SKIP\0" | STRING_FAIL0 |
210 | "THEN"; | STRING_PRUNE0 |
211 | STRING_SKIP0 | |
212 | STRING_THEN; | |
213 | ||
214 | static const verbitem verbs[] = { | static const verbitem verbs[] = { |
215 | { 6, OP_ACCEPT }, | { 0, -1, OP_MARK }, |
216 | { 6, OP_COMMIT }, | { 4, -1, OP_MARK }, |
217 | { 1, OP_FAIL }, | { 6, OP_ACCEPT, -1 }, |
218 | { 4, OP_FAIL }, | { 6, OP_COMMIT, -1 }, |
219 | { 5, OP_PRUNE }, | { 1, OP_FAIL, -1 }, |
220 | { 4, OP_SKIP }, | { 4, OP_FAIL, -1 }, |
221 | { 4, OP_THEN } | { 5, OP_PRUNE, OP_PRUNE_ARG }, |
222 | { 4, OP_SKIP, OP_SKIP_ARG }, | |
223 | { 4, OP_THEN, OP_THEN_ARG } | |
224 | }; | }; |
225 | ||
226 | static const int verbcount = sizeof(verbs)/sizeof(verbitem); | static const int verbcount = sizeof(verbs)/sizeof(verbitem); |
# | Line 178 length entry. The first three must be al | Line 233 length entry. The first three must be al |
233 | for handling case independence. */ | for handling case independence. */ |
234 | ||
235 | static const char posix_names[] = | static const char posix_names[] = |
236 | "alpha\0" "lower\0" "upper\0" "alnum\0" "ascii\0" "blank\0" | STRING_alpha0 STRING_lower0 STRING_upper0 STRING_alnum0 |
237 | "cntrl\0" "digit\0" "graph\0" "print\0" "punct\0" "space\0" | STRING_ascii0 STRING_blank0 STRING_cntrl0 STRING_digit0 |
238 | "word\0" "xdigit"; | STRING_graph0 STRING_print0 STRING_punct0 STRING_space0 |
239 | STRING_word0 STRING_xdigit; | |
240 | ||
241 | static const uschar posix_name_lengths[] = { | static const uschar posix_name_lengths[] = { |
242 | 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 }; | 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 }; |
# | Line 212 static const int posix_class_maps[] = { | Line 268 static const int posix_class_maps[] = { |
268 | cbit_xdigit,-1, 0 /* xdigit */ | cbit_xdigit,-1, 0 /* xdigit */ |
269 | }; | }; |
270 | ||
271 | /* Table of substitutes for \d etc when PCRE_UCP is set. The POSIX class | |
272 | substitutes must be in the order of the names, defined above, and there are | |
273 | both positive and negative cases. NULL means no substitute. */ | |
274 | ||
275 | #ifdef SUPPORT_UCP | |
276 | static const uschar *substitutes[] = { | |
277 | (uschar *)"\\P{Nd}", /* \D */ | |
278 | (uschar *)"\\p{Nd}", /* \d */ | |
279 | (uschar *)"\\P{Xsp}", /* \S */ /* NOTE: Xsp is Perl space */ | |
280 | (uschar *)"\\p{Xsp}", /* \s */ | |
281 | (uschar *)"\\P{Xwd}", /* \W */ | |
282 | (uschar *)"\\p{Xwd}" /* \w */ | |
283 | }; | |
284 | ||
285 | static const uschar *posix_substitutes[] = { | |
286 | (uschar *)"\\p{L}", /* alpha */ | |
287 | (uschar *)"\\p{Ll}", /* lower */ | |
288 | (uschar *)"\\p{Lu}", /* upper */ | |
289 | (uschar *)"\\p{Xan}", /* alnum */ | |
290 | NULL, /* ascii */ | |
291 | (uschar *)"\\h", /* blank */ | |
292 | NULL, /* cntrl */ | |
293 | (uschar *)"\\p{Nd}", /* digit */ | |
294 | NULL, /* graph */ | |
295 | NULL, /* print */ | |
296 | NULL, /* punct */ | |
297 | (uschar *)"\\p{Xps}", /* space */ /* NOTE: Xps is POSIX space */ | |
298 | (uschar *)"\\p{Xwd}", /* word */ | |
299 | NULL, /* xdigit */ | |
300 | /* Negated cases */ | |
301 | (uschar *)"\\P{L}", /* ^alpha */ | |
302 | (uschar *)"\\P{Ll}", /* ^lower */ | |
303 | (uschar *)"\\P{Lu}", /* ^upper */ | |
304 | (uschar *)"\\P{Xan}", /* ^alnum */ | |
305 | NULL, /* ^ascii */ | |
306 | (uschar *)"\\H", /* ^blank */ | |
307 | NULL, /* ^cntrl */ | |
308 | (uschar *)"\\P{Nd}", /* ^digit */ | |
309 | NULL, /* ^graph */ | |
310 | NULL, /* ^print */ | |
311 | NULL, /* ^punct */ | |
312 | (uschar *)"\\P{Xps}", /* ^space */ /* NOTE: Xps is POSIX space */ | |
313 | (uschar *)"\\P{Xwd}", /* ^word */ | |
314 | NULL /* ^xdigit */ | |
315 | }; | |
316 | #define POSIX_SUBSIZE (sizeof(posix_substitutes)/sizeof(uschar *)) | |
317 | #endif | |
318 | ||
319 | #define STRING(a) # a | #define STRING(a) # a |
320 | #define XSTRING(s) STRING(s) | #define XSTRING(s) STRING(s) |
# | Line 224 the number of relocations needed when a | Line 327 the number of relocations needed when a |
327 | it is now one long string. We cannot use a table of offsets, because the | it is now one long string. We cannot use a table of offsets, because the |
328 | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we |
329 | simply count through to the one we want - this isn't a performance issue | simply count through to the one we want - this isn't a performance issue |
330 | because these strings are used only when there is a compilation error. */ | because these strings are used only when there is a compilation error. |
331 | ||
332 | Each substring ends with \0 to insert a null character. This includes the final | |
333 | substring, so that the whole string ends with \0\0, which can be detected when | |
334 | counting through. */ | |
335 | ||
336 | static const char error_texts[] = | static const char error_texts[] = |
337 | "no error\0" | "no error\0" |
# | Line 271 static const char error_texts[] = | Line 378 static const char error_texts[] = |
378 | /* 35 */ | /* 35 */ |
379 | "invalid condition (?(0)\0" | "invalid condition (?(0)\0" |
380 | "\\C not allowed in lookbehind assertion\0" | "\\C not allowed in lookbehind assertion\0" |
381 | "PCRE does not support \\L, \\l, \\N, \\U, or \\u\0" | "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0" |
382 | "number after (?C is > 255\0" | "number after (?C is > 255\0" |
383 | "closing ) for (?C expected\0" | "closing ) for (?C expected\0" |
384 | /* 40 */ | /* 40 */ |
# | Line 293 static const char error_texts[] = | Line 400 static const char error_texts[] = |
400 | "internal error: previously-checked referenced subpattern not found\0" | "internal error: previously-checked referenced subpattern not found\0" |
401 | "DEFINE group contains more than one branch\0" | "DEFINE group contains more than one branch\0" |
402 | /* 55 */ | /* 55 */ |
403 | "repeating a DEFINE group is not allowed\0" | "repeating a DEFINE group is not allowed\0" /** DEAD **/ |
404 | "inconsistent NEWLINE options\0" | "inconsistent NEWLINE options\0" |
405 | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" |
406 | "a numbered reference must not be zero\0" | "a numbered reference must not be zero\0" |
407 | "(*VERB) with an argument is not supported\0" | "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)\0" |
408 | /* 60 */ | /* 60 */ |
409 | "(*VERB) not recognized\0" | "(*VERB) not recognized\0" |
410 | "number is too big\0" | "number is too big\0" |
411 | "subpattern name expected\0" | "subpattern name expected\0" |
412 | "digit expected after (?+\0" | "digit expected after (?+\0" |
413 | "] is an invalid data character in JavaScript compatibility mode"; | "] is an invalid data character in JavaScript compatibility mode\0" |
414 | /* 65 */ | |
415 | "different names for subpatterns of the same number are not allowed\0" | |
416 | "(*MARK) must have an argument\0" | |
417 | "this version of PCRE is not compiled with PCRE_UCP support\0" | |
418 | "\\c must be followed by an ASCII character\0" | |
419 | "\\k is not followed by a braced, angle-bracketed, or quoted name\0" | |
420 | /* 70 */ | |
421 | "internal error: unknown opcode in find_fixedlength()\0" | |
422 | "\\N is not supported in a class\0" | |
423 | "too many forward references\0" | |
424 | ; | |
425 | ||
426 | /* Table to identify digits and hex digits. This is used when compiling | /* Table to identify digits and hex digits. This is used when compiling |
427 | patterns. Note that the tables in chartables are dependent on the locale, and | patterns. Note that the tables in chartables are dependent on the locale, and |
# | Line 322 For convenience, we use the same bit def | Line 439 For convenience, we use the same bit def |
439 | ||
440 | Then we can use ctype_digit and ctype_xdigit in the code. */ | Then we can use ctype_digit and ctype_xdigit in the code. */ |
441 | ||
442 | #ifndef EBCDIC /* This is the "normal" case, for ASCII systems */ | #ifndef EBCDIC |
443 | ||
444 | /* This is the "normal" case, for ASCII systems, and EBCDIC systems running in | |
445 | UTF-8 mode. */ | |
446 | ||
447 | static const unsigned char digitab[] = | static const unsigned char digitab[] = |
448 | { | { |
449 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */ |
# | Line 358 static const unsigned char digitab[] = | Line 479 static const unsigned char digitab[] = |
479 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 240-247 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 240-247 */ |
480 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};/* 248-255 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};/* 248-255 */ |
481 | ||
482 | #else /* This is the "abnormal" case, for EBCDIC systems */ | #else |
483 | ||
484 | /* This is the "abnormal" case, for EBCDIC systems not running in UTF-8 mode. */ | |
485 | ||
486 | static const unsigned char digitab[] = | static const unsigned char digitab[] = |
487 | { | { |
488 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 0 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 0 */ |
# | Line 433 static const unsigned char ebcdic_charta | Line 557 static const unsigned char ebcdic_charta |
557 | /* Definition to allow mutual recursion */ | /* Definition to allow mutual recursion */ |
558 | ||
559 | static BOOL | static BOOL |
560 | compile_regex(int, int, uschar **, const uschar **, int *, BOOL, BOOL, int, | compile_regex(int, uschar **, const uschar **, int *, BOOL, BOOL, int, int, |
561 | int *, int *, branch_chain *, compile_data *, int *); | int *, int *, branch_chain *, compile_data *, int *); |
562 | ||
563 | ||
# | Line 455 static const char * | Line 579 static const char * |
579 | find_error_text(int n) | find_error_text(int n) |
580 | { | { |
581 | const char *s = error_texts; | const char *s = error_texts; |
582 | for (; n > 0; n--) while (*s++ != 0); | for (; n > 0; n--) |
583 | { | |
584 | while (*s++ != 0) {}; | |
585 | if (*s == 0) return "Error text not found (please report)"; | |
586 | } | |
587 | return s; | return s; |
588 | } | } |
589 | ||
590 | ||
591 | /************************************************* | /************************************************* |
592 | * Expand the workspace * | |
593 | *************************************************/ | |
594 | ||
595 | /* This function is called during the second compiling phase, if the number of | |
596 | forward references fills the existing workspace, which is originally a block on | |
597 | the stack. A larger block is obtained from malloc() unless the ultimate limit | |
598 | has been reached or the increase will be rather small. | |
599 | ||
600 | Argument: pointer to the compile data block | |
601 | Returns: 0 if all went well, else an error number | |
602 | */ | |
603 | ||
604 | static int | |
605 | expand_workspace(compile_data *cd) | |
606 | { | |
607 | uschar *newspace; | |
608 | int newsize = cd->workspace_size * 2; | |
609 | ||
610 | if (newsize > COMPILE_WORK_SIZE_MAX) newsize = COMPILE_WORK_SIZE_MAX; | |
611 | if (cd->workspace_size >= COMPILE_WORK_SIZE_MAX || | |
612 | newsize - cd->workspace_size < WORK_SIZE_SAFETY_MARGIN) | |
613 | return ERR72; | |
614 | ||
615 | newspace = (pcre_malloc)(newsize); | |
616 | if (newspace == NULL) return ERR21; | |
617 | ||
618 | memcpy(newspace, cd->start_workspace, cd->workspace_size); | |
619 | cd->hwm = (uschar *)newspace + (cd->hwm - cd->start_workspace); | |
620 | if (cd->workspace_size > COMPILE_WORK_SIZE) | |
621 | (pcre_free)((void *)cd->start_workspace); | |
622 | cd->start_workspace = newspace; | |
623 | cd->workspace_size = newsize; | |
624 | return 0; | |
625 | } | |
626 | ||
627 | ||
628 | ||
629 | /************************************************* | |
630 | * Check for counted repeat * | |
631 | *************************************************/ | |
632 | ||
633 | /* This function is called when a '{' is encountered in a place where it might | |
634 | start a quantifier. It looks ahead to see if it really is a quantifier or not. | |
635 | It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd} | |
636 | where the ddds are digits. | |
637 | ||
638 | Arguments: | |
639 | p pointer to the first char after '{' | |
640 | ||
641 | Returns: TRUE or FALSE | |
642 | */ | |
643 | ||
644 | static BOOL | |
645 | is_counted_repeat(const uschar *p) | |
646 | { | |
647 | if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | |
648 | while ((digitab[*p] & ctype_digit) != 0) p++; | |
649 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
650 | ||
651 | if (*p++ != CHAR_COMMA) return FALSE; | |
652 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
653 | ||
654 | if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | |
655 | while ((digitab[*p] & ctype_digit) != 0) p++; | |
656 | ||
657 | return (*p == CHAR_RIGHT_CURLY_BRACKET); | |
658 | } | |
659 | ||
660 | ||
661 | ||
662 | /************************************************* | |
663 | * Handle escapes * | * Handle escapes * |
664 | *************************************************/ | *************************************************/ |
665 | ||
# | Line 503 if (c == 0) *errorcodeptr = ERR1; | Line 702 if (c == 0) *errorcodeptr = ERR1; |
702 | in a table. A non-zero result is something that can be returned immediately. | in a table. A non-zero result is something that can be returned immediately. |
703 | Otherwise further processing may be required. */ | Otherwise further processing may be required. */ |
704 | ||
705 | #ifndef EBCDIC /* ASCII coding */ | #ifndef EBCDIC /* ASCII/UTF-8 coding */ |
706 | else if (c < '0' || c > 'z') {} /* Not alphanumeric */ | else if (c < CHAR_0 || c > CHAR_z) {} /* Not alphanumeric */ |
707 | else if ((i = escapes[c - '0']) != 0) c = i; | else if ((i = escapes[c - CHAR_0]) != 0) c = i; |
708 | ||
709 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
710 | else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ | else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ |
# | Line 524 else | Line 723 else |
723 | /* A number of Perl escapes are not handled by PCRE. We give an explicit | /* A number of Perl escapes are not handled by PCRE. We give an explicit |
724 | error. */ | error. */ |
725 | ||
726 | case 'l': | case CHAR_l: |
727 | case 'L': | case CHAR_L: |
case 'N': | ||
case 'u': | ||
case 'U': | ||
728 | *errorcodeptr = ERR37; | *errorcodeptr = ERR37; |
729 | break; | break; |
730 | ||
731 | /* \g must be followed by one of a number of specific things: | case CHAR_u: |
732 | if ((options & PCRE_JAVASCRIPT_COMPAT) != 0) | |
733 | { | |
734 | /* In JavaScript, \u must be followed by four hexadecimal numbers. | |
735 | Otherwise it is a lowercase u letter. */ | |
736 | if ((digitab[ptr[1]] & ctype_xdigit) != 0 && (digitab[ptr[2]] & ctype_xdigit) != 0 | |
737 | && (digitab[ptr[3]] & ctype_xdigit) != 0 && (digitab[ptr[4]] & ctype_xdigit) != 0) | |
738 | { | |
739 | c = 0; | |
740 | for (i = 0; i < 4; ++i) | |
741 | { | |
742 | register int cc = *(++ptr); | |
743 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
744 | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ | |
745 | c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); | |
746 | #else /* EBCDIC coding */ | |
747 | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ | |
748 | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); | |
749 | #endif | |
750 | } | |
751 | } | |
752 | } | |
753 | else | |
754 | *errorcodeptr = ERR37; | |
755 | break; | |
756 | ||
757 | case CHAR_U: | |
758 | /* In JavaScript, \U is an uppercase U letter. */ | |
759 | if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) *errorcodeptr = ERR37; | |
760 | break; | |
761 | ||
762 | /* In a character class, \g is just a literal "g". Outside a character | |
763 | class, \g must be followed by one of a number of specific things: | |
764 | ||
765 | (1) A number, either plain or braced. If positive, it is an absolute | (1) A number, either plain or braced. If positive, it is an absolute |
766 | backreference. If negative, it is a relative backreference. This is a Perl | backreference. If negative, it is a relative backreference. This is a Perl |
767 | 5.10 feature. | 5.10 feature. |
768 | ||
769 | (2) Perl 5.10 also supports \g{name} as a reference to a named group. This | (2) Perl 5.10 also supports \g{name} as a reference to a named group. This |
770 | is part of Perl's movement towards a unified syntax for back references. As | is part of Perl's movement towards a unified syntax for back references. As |
771 | this is synonymous with \k{name}, we fudge it up by pretending it really | this is synonymous with \k{name}, we fudge it up by pretending it really |
772 | was \k. | was \k. |
773 | ||
774 | (3) For Oniguruma compatibility we also support \g followed by a name or a | (3) For Oniguruma compatibility we also support \g followed by a name or a |
775 | number either in angle brackets or in single quotes. However, these are | number either in angle brackets or in single quotes. However, these are |
776 | (possibly recursive) subroutine calls, _not_ backreferences. Just return | (possibly recursive) subroutine calls, _not_ backreferences. Just return |
777 | the -ESC_g code (cf \k). */ | the -ESC_g code (cf \k). */ |
778 | ||
779 | case 'g': | case CHAR_g: |
780 | if (ptr[1] == '<' || ptr[1] == '\'') | if (isclass) break; |
781 | if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE) | |
782 | { | { |
783 | c = -ESC_g; | c = -ESC_g; |
784 | break; | break; |
785 | } | } |
786 | ||
787 | /* Handle the Perl-compatible cases */ | /* Handle the Perl-compatible cases */ |
788 | ||
789 | if (ptr[1] == '{') | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) |
790 | { | { |
791 | const uschar *p; | const uschar *p; |
792 | for (p = ptr+2; *p != 0 && *p != '}'; p++) | for (p = ptr+2; *p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET; p++) |
793 | if (*p != '-' && (digitab[*p] & ctype_digit) == 0) break; | if (*p != CHAR_MINUS && (digitab[*p] & ctype_digit) == 0) break; |
794 | if (*p != 0 && *p != '}') | if (*p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET) |
795 | { | { |
796 | c = -ESC_k; | c = -ESC_k; |
797 | break; | break; |
# | Line 572 else | Line 801 else |
801 | } | } |
802 | else braced = FALSE; | else braced = FALSE; |
803 | ||
804 | if (ptr[1] == '-') | if (ptr[1] == CHAR_MINUS) |
805 | { | { |
806 | negated = TRUE; | negated = TRUE; |
807 | ptr++; | ptr++; |
# | Line 581 else | Line 810 else |
810 | ||
811 | c = 0; | c = 0; |
812 | while ((digitab[ptr[1]] & ctype_digit) != 0) | while ((digitab[ptr[1]] & ctype_digit) != 0) |
813 | c = c * 10 + *(++ptr) - '0'; | c = c * 10 + *(++ptr) - CHAR_0; |
814 | ||
815 | if (c < 0) /* Integer overflow */ | if (c < 0) /* Integer overflow */ |
816 | { | { |
817 | *errorcodeptr = ERR61; | *errorcodeptr = ERR61; |
818 | break; | break; |
819 | } | } |
820 | ||
821 | if (braced && *(++ptr) != '}') | if (braced && *(++ptr) != CHAR_RIGHT_CURLY_BRACKET) |
822 | { | { |
823 | *errorcodeptr = ERR57; | *errorcodeptr = ERR57; |
824 | break; | break; |
825 | } | } |
826 | ||
827 | if (c == 0) | if (c == 0) |
828 | { | { |
829 | *errorcodeptr = ERR58; | *errorcodeptr = ERR58; |
830 | break; | break; |
831 | } | } |
832 | ||
833 | if (negated) | if (negated) |
834 | { | { |
# | Line 626 else | Line 855 else |
855 | value is greater than 377, the least significant 8 bits are taken. Inside a | value is greater than 377, the least significant 8 bits are taken. Inside a |
856 | character class, \ followed by a digit is always an octal number. */ | character class, \ followed by a digit is always an octal number. */ |
857 | ||
858 | case '1': case '2': case '3': case '4': case '5': | case CHAR_1: case CHAR_2: case CHAR_3: case CHAR_4: case CHAR_5: |
859 | case '6': case '7': case '8': case '9': | case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9: |
860 | ||
861 | if (!isclass) | if (!isclass) |
862 | { | { |
863 | oldptr = ptr; | oldptr = ptr; |
864 | c -= '0'; | c -= CHAR_0; |
865 | while ((digitab[ptr[1]] & ctype_digit) != 0) | while ((digitab[ptr[1]] & ctype_digit) != 0) |
866 | c = c * 10 + *(++ptr) - '0'; | c = c * 10 + *(++ptr) - CHAR_0; |
867 | if (c < 0) /* Integer overflow */ | if (c < 0) /* Integer overflow */ |
868 | { | { |
869 | *errorcodeptr = ERR61; | *errorcodeptr = ERR61; |
# | Line 652 else | Line 881 else |
881 | generates a binary zero byte and treats the digit as a following literal. | generates a binary zero byte and treats the digit as a following literal. |
882 | Thus we have to pull back the pointer by one. */ | Thus we have to pull back the pointer by one. */ |
883 | ||
884 | if ((c = *ptr) >= '8') | if ((c = *ptr) >= CHAR_8) |
885 | { | { |
886 | ptr--; | ptr--; |
887 | c = 0; | c = 0; |
# | Line 665 else | Line 894 else |
894 | to do). Nowadays we allow for larger numbers in UTF-8 mode, but no more | to do). Nowadays we allow for larger numbers in UTF-8 mode, but no more |
895 | than 3 octal digits. */ | than 3 octal digits. */ |
896 | ||
897 | case '0': | case CHAR_0: |
898 | c -= '0'; | c -= CHAR_0; |
899 | while(i++ < 2 && ptr[1] >= '0' && ptr[1] <= '7') | while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7) |
900 | c = c * 8 + *(++ptr) - '0'; | c = c * 8 + *(++ptr) - CHAR_0; |
901 | if (!utf8 && c > 255) *errorcodeptr = ERR51; | if (!utf8 && c > 255) *errorcodeptr = ERR51; |
902 | break; | break; |
903 | ||
# | Line 676 else | Line 905 else |
905 | than 0xff in utf8 mode, but only if the ddd are hex digits. If not, { is | than 0xff in utf8 mode, but only if the ddd are hex digits. If not, { is |
906 | treated as a data character. */ | treated as a data character. */ |
907 | ||
908 | case 'x': | case CHAR_x: |
909 | if (ptr[1] == '{') | if ((options & PCRE_JAVASCRIPT_COMPAT) != 0) |
910 | { | |
911 | /* In JavaScript, \x must be followed by two hexadecimal numbers. | |
912 | Otherwise it is a lowercase x letter. */ | |
913 | if ((digitab[ptr[1]] & ctype_xdigit) != 0 && (digitab[ptr[2]] & ctype_xdigit) != 0) | |
914 | { | |
915 | c = 0; | |
916 | for (i = 0; i < 2; ++i) | |
917 | { | |
918 | register int cc = *(++ptr); | |
919 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
920 | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ | |
921 | c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); | |
922 | #else /* EBCDIC coding */ | |
923 | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ | |
924 | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); | |
925 | #endif | |
926 | } | |
927 | } | |
928 | break; | |
929 | } | |
930 | ||
931 | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) | |
932 | { | { |
933 | const uschar *pt = ptr + 2; | const uschar *pt = ptr + 2; |
934 | int count = 0; | int count = 0; |
# | Line 686 else | Line 937 else |
937 | while ((digitab[*pt] & ctype_xdigit) != 0) | while ((digitab[*pt] & ctype_xdigit) != 0) |
938 | { | { |
939 | register int cc = *pt++; | register int cc = *pt++; |
940 | if (c == 0 && cc == '0') continue; /* Leading zeroes */ | if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ |
941 | count++; | count++; |
942 | ||
943 | #ifndef EBCDIC /* ASCII coding */ | #ifndef EBCDIC /* ASCII/UTF-8 coding */ |
944 | if (cc >= 'a') cc -= 32; /* Convert to upper case */ | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ |
945 | c = (c << 4) + cc - ((cc < 'A')? '0' : ('A' - 10)); | c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); |
946 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
947 | if (cc >= 'a' && cc <= 'z') cc += 64; /* Convert to upper case */ | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ |
948 | c = (c << 4) + cc - ((cc >= '0')? '0' : ('A' - 10)); | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); |
949 | #endif | #endif |
950 | } | } |
951 | ||
952 | if (*pt == '}') | if (*pt == CHAR_RIGHT_CURLY_BRACKET) |
953 | { | { |
954 | if (c < 0 || count > (utf8? 8 : 2)) *errorcodeptr = ERR34; | if (c < 0 || count > (utf8? 8 : 2)) *errorcodeptr = ERR34; |
955 | ptr = pt; | ptr = pt; |
# | Line 714 else | Line 965 else |
965 | c = 0; | c = 0; |
966 | while (i++ < 2 && (digitab[ptr[1]] & ctype_xdigit) != 0) | while (i++ < 2 && (digitab[ptr[1]] & ctype_xdigit) != 0) |
967 | { | { |
968 | int cc; /* Some compilers don't like ++ */ | int cc; /* Some compilers don't like */ |
969 | cc = *(++ptr); /* in initializers */ | cc = *(++ptr); /* ++ in initializers */ |
970 | #ifndef EBCDIC /* ASCII coding */ | #ifndef EBCDIC /* ASCII/UTF-8 coding */ |
971 | if (cc >= 'a') cc -= 32; /* Convert to upper case */ | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ |
972 | c = c * 16 + cc - ((cc < 'A')? '0' : ('A' - 10)); | c = c * 16 + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); |
973 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
974 | if (cc <= 'z') cc += 64; /* Convert to upper case */ | if (cc <= CHAR_z) cc += 64; /* Convert to upper case */ |
975 | c = c * 16 + cc - ((cc >= '0')? '0' : ('A' - 10)); | c = c * 16 + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); |
976 | #endif | #endif |
977 | } | } |
978 | break; | break; |
979 | ||
980 | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. |
981 | This coding is ASCII-specific, but then the whole concept of \cx is | An error is given if the byte following \c is not an ASCII character. This |
982 | coding is ASCII-specific, but then the whole concept of \cx is | |
983 | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ |
984 | ||
985 | case 'c': | case CHAR_c: |
986 | c = *(++ptr); | c = *(++ptr); |
987 | if (c == 0) | if (c == 0) |
988 | { | { |
989 | *errorcodeptr = ERR2; | *errorcodeptr = ERR2; |
990 | break; | break; |
991 | } | } |
992 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
993 | #ifndef EBCDIC /* ASCII coding */ | if (c > 127) /* Excludes all non-ASCII in either mode */ |
994 | if (c >= 'a' && c <= 'z') c -= 32; | { |
995 | *errorcodeptr = ERR68; | |
996 | break; | |
997 | } | |
998 | if (c >= CHAR_a && c <= CHAR_z) c -= 32; | |
999 | c ^= 0x40; | c ^= 0x40; |
1000 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
1001 | if (c >= 'a' && c <= 'z') c += 64; | if (c >= CHAR_a && c <= CHAR_z) c += 64; |
1002 | c ^= 0xC0; | c ^= 0xC0; |
1003 | #endif | #endif |
1004 | break; | break; |
# | Line 764 else | Line 1020 else |
1020 | } | } |
1021 | } | } |
1022 | ||
1023 | /* Perl supports \N{name} for character names, as well as plain \N for "not | |
1024 | newline". PCRE does not support \N{name}. However, it does support | |
1025 | quantification such as \N{2,3}. */ | |
1026 | ||
1027 | if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET && | |
1028 | !is_counted_repeat(ptr+2)) | |
1029 | *errorcodeptr = ERR37; | |
1030 | ||
1031 | /* If PCRE_UCP is set, we change the values for \d etc. */ | |
1032 | ||
1033 | if ((options & PCRE_UCP) != 0 && c <= -ESC_D && c >= -ESC_w) | |
1034 | c -= (ESC_DU - ESC_D); | |
1035 | ||
1036 | /* Set the pointer to the final character before returning. */ | |
1037 | ||
1038 | *ptrptr = ptr; | *ptrptr = ptr; |
1039 | return c; | return c; |
1040 | } | } |
# | Line 804 if (c == 0) goto ERROR_RETURN; | Line 1075 if (c == 0) goto ERROR_RETURN; |
1075 | /* \P or \p can be followed by a name in {}, optionally preceded by ^ for | /* \P or \p can be followed by a name in {}, optionally preceded by ^ for |
1076 | negation. */ | negation. */ |
1077 | ||
1078 | if (c == '{') | if (c == CHAR_LEFT_CURLY_BRACKET) |
1079 | { | { |
1080 | if (ptr[1] == '^') | if (ptr[1] == CHAR_CIRCUMFLEX_ACCENT) |
1081 | { | { |
1082 | *negptr = TRUE; | *negptr = TRUE; |
1083 | ptr++; | ptr++; |
# | Line 815 if (c == '{') | Line 1086 if (c == '{') |
1086 | { | { |
1087 | c = *(++ptr); | c = *(++ptr); |
1088 | if (c == 0) goto ERROR_RETURN; | if (c == 0) goto ERROR_RETURN; |
1089 | if (c == '}') break; | if (c == CHAR_RIGHT_CURLY_BRACKET) break; |
1090 | name[i] = c; | name[i] = c; |
1091 | } | } |
1092 | if (c !='}') goto ERROR_RETURN; | if (c != CHAR_RIGHT_CURLY_BRACKET) goto ERROR_RETURN; |
1093 | name[i] = 0; | name[i] = 0; |
1094 | } | } |
1095 | ||
# | Line 864 return -1; | Line 1135 return -1; |
1135 | ||
1136 | ||
1137 | /************************************************* | /************************************************* |
* Check for counted repeat * | ||
*************************************************/ | ||
/* This function is called when a '{' is encountered in a place where it might | ||
start a quantifier. It looks ahead to see if it really is a quantifier or not. | ||
It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd} | ||
where the ddds are digits. | ||
Arguments: | ||
p pointer to the first char after '{' | ||
Returns: TRUE or FALSE | ||
*/ | ||
static BOOL | ||
is_counted_repeat(const uschar *p) | ||
{ | ||
if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | ||
while ((digitab[*p] & ctype_digit) != 0) p++; | ||
if (*p == '}') return TRUE; | ||
if (*p++ != ',') return FALSE; | ||
if (*p == '}') return TRUE; | ||
if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | ||
while ((digitab[*p] & ctype_digit) != 0) p++; | ||
return (*p == '}'); | ||
} | ||
/************************************************* | ||
1138 | * Read repeat counts * | * Read repeat counts * |
1139 | *************************************************/ | *************************************************/ |
1140 | ||
# | Line 924 int max = -1; | Line 1162 int max = -1; |
1162 | /* Read the minimum value and do a paranoid check: a negative value indicates | /* Read the minimum value and do a paranoid check: a negative value indicates |
1163 | an integer overflow. */ | an integer overflow. */ |
1164 | ||
1165 | while ((digitab[*p] & ctype_digit) != 0) min = min * 10 + *p++ - '0'; | while ((digitab[*p] & ctype_digit) != 0) min = min * 10 + *p++ - CHAR_0; |
1166 | if (min < 0 || min > 65535) | if (min < 0 || min > 65535) |
1167 | { | { |
1168 | *errorcodeptr = ERR5; | *errorcodeptr = ERR5; |
# | Line 934 if (min < 0 || min > 65535) | Line 1172 if (min < 0 || min > 65535) |
1172 | /* Read the maximum value if there is one, and again do a paranoid on its size. | /* Read the maximum value if there is one, and again do a paranoid on its size. |
1173 | Also, max must not be less than min. */ | Also, max must not be less than min. */ |
1174 | ||
1175 | if (*p == '}') max = min; else | if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else |
1176 | { | { |
1177 | if (*(++p) != '}') | if (*(++p) != CHAR_RIGHT_CURLY_BRACKET) |
1178 | { | { |
1179 | max = 0; | max = 0; |
1180 | while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - '0'; | while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - CHAR_0; |
1181 | if (max < 0 || max > 65535) | if (max < 0 || max > 65535) |
1182 | { | { |
1183 | *errorcodeptr = ERR5; | *errorcodeptr = ERR5; |
# | Line 964 return p; | Line 1202 return p; |
1202 | ||
1203 | ||
1204 | /************************************************* | /************************************************* |
1205 | * Find forward referenced subpattern * | * Subroutine for finding forward reference * |
1206 | *************************************************/ | *************************************************/ |
1207 | ||
1208 | /* This function scans along a pattern's text looking for capturing | /* This recursive function is called only from find_parens() below. The |
1209 | top-level call starts at the beginning of the pattern. All other calls must | |
1210 | start at a parenthesis. It scans along a pattern's text looking for capturing | |
1211 | subpatterns, and counting them. If it finds a named pattern that matches the | subpatterns, and counting them. If it finds a named pattern that matches the |
1212 | name it is given, it returns its number. Alternatively, if the name is NULL, it | name it is given, it returns its number. Alternatively, if the name is NULL, it |
1213 | returns when it reaches a given numbered subpattern. This is used for forward | returns when it reaches a given numbered subpattern. Recursion is used to keep |
1214 | references to subpatterns. We know that if (?P< is encountered, the name will | track of subpatterns that reset the capturing group numbers - the (?| feature. |
1215 | be terminated by '>' because that is checked in the first pass. | |
1216 | This function was originally called only from the second pass, in which we know | |
1217 | that if (?< or (?' or (?P< is encountered, the name will be correctly | |
1218 | terminated because that is checked in the first pass. There is now one call to | |
1219 | this function in the first pass, to check for a recursive back reference by | |
1220 | name (so that we can make the whole group atomic). In this case, we need check | |
1221 | only up to the current position in the pattern, and that is still OK because | |
1222 | and previous occurrences will have been checked. To make this work, the test | |
1223 | for "end of pattern" is a check against cd->end_pattern in the main loop, | |
1224 | instead of looking for a binary zero. This means that the special first-pass | |
1225 | call can adjust cd->end_pattern temporarily. (Checks for binary zero while | |
1226 | processing items within the loop are OK, because afterwards the main loop will | |
1227 | terminate.) | |
1228 | ||
1229 | Arguments: | Arguments: |
1230 | ptr current position in the pattern | ptrptr address of the current character pointer (updated) |
1231 | cd compile background data | cd compile background data |
1232 | name name to seek, or NULL if seeking a numbered subpattern | name name to seek, or NULL if seeking a numbered subpattern |
1233 | lorn name length, or subpattern number if name is NULL | lorn name length, or subpattern number if name is NULL |
1234 | xmode TRUE if we are in /x mode | xmode TRUE if we are in /x mode |
1235 | utf8 TRUE if we are in UTF-8 mode | |
1236 | count pointer to the current capturing subpattern number (updated) | |
1237 | ||
1238 | Returns: the number of the named subpattern, or -1 if not found | Returns: the number of the named subpattern, or -1 if not found |
1239 | */ | */ |
1240 | ||
1241 | static int | static int |
1242 | find_parens(const uschar *ptr, compile_data *cd, const uschar *name, int lorn, | find_parens_sub(uschar **ptrptr, compile_data *cd, const uschar *name, int lorn, |
1243 | BOOL xmode) | BOOL xmode, BOOL utf8, int *count) |
1244 | { | { |
1245 | const uschar *thisname; | uschar *ptr = *ptrptr; |
1246 | int count = cd->bracount; | int start_count = *count; |
1247 | int hwm_count = start_count; | |
1248 | BOOL dup_parens = FALSE; | |
1249 | ||
1250 | for (; *ptr != 0; ptr++) | /* If the first character is a parenthesis, check on the type of group we are |
1251 | dealing with. The very first call may not start with a parenthesis. */ | |
1252 | ||
1253 | if (ptr[0] == CHAR_LEFT_PARENTHESIS) | |
1254 | { | { |
1255 | int term; | /* Handle specials such as (*SKIP) or (*UTF8) etc. */ |
1256 | ||
1257 | if (ptr[1] == CHAR_ASTERISK) ptr += 2; | |
1258 | ||
1259 | /* Handle a normal, unnamed capturing parenthesis. */ | |
1260 | ||
1261 | else if (ptr[1] != CHAR_QUESTION_MARK) | |
1262 | { | |
1263 | *count += 1; | |
1264 | if (name == NULL && *count == lorn) return *count; | |
1265 | ptr++; | |
1266 | } | |
1267 | ||
1268 | /* All cases now have (? at the start. Remember when we are in a group | |
1269 | where the parenthesis numbers are duplicated. */ | |
1270 | ||
1271 | else if (ptr[2] == CHAR_VERTICAL_LINE) | |
1272 | { | |
1273 | ptr += 3; | |
1274 | dup_parens = TRUE; | |
1275 | } | |
1276 | ||
1277 | /* Handle comments; all characters are allowed until a ket is reached. */ | |
1278 | ||
1279 | else if (ptr[2] == CHAR_NUMBER_SIGN) | |
1280 | { | |
1281 | for (ptr += 3; *ptr != 0; ptr++) if (*ptr == CHAR_RIGHT_PARENTHESIS) break; | |
1282 | goto FAIL_EXIT; | |
1283 | } | |
1284 | ||
1285 | /* Handle a condition. If it is an assertion, just carry on so that it | |
1286 | is processed as normal. If not, skip to the closing parenthesis of the | |
1287 | condition (there can't be any nested parens). */ | |
1288 | ||
1289 | else if (ptr[2] == CHAR_LEFT_PARENTHESIS) | |
1290 | { | |
1291 | ptr += 2; | |
1292 | if (ptr[1] != CHAR_QUESTION_MARK) | |
1293 | { | |
1294 | while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++; | |
1295 | if (*ptr != 0) ptr++; | |
1296 | } | |
1297 | } | |
1298 | ||
1299 | /* Start with (? but not a condition. */ | |
1300 | ||
1301 | else | |
1302 | { | |
1303 | ptr += 2; | |
1304 | if (*ptr == CHAR_P) ptr++; /* Allow optional P */ | |
1305 | ||
1306 | /* We have to disambiguate (?<! and (?<= from (?<name> for named groups */ | |
1307 | ||
1308 | if ((*ptr == CHAR_LESS_THAN_SIGN && ptr[1] != CHAR_EXCLAMATION_MARK && | |
1309 | ptr[1] != CHAR_EQUALS_SIGN) || *ptr == CHAR_APOSTROPHE) | |
1310 | { | |
1311 | int term; | |
1312 | const uschar *thisname; | |
1313 | *count += 1; | |
1314 | if (name == NULL && *count == lorn) return *count; | |
1315 | term = *ptr++; | |
1316 | if (term == CHAR_LESS_THAN_SIGN) term = CHAR_GREATER_THAN_SIGN; | |
1317 | thisname = ptr; | |
1318 | while (*ptr != term) ptr++; | |
1319 | if (name != NULL && lorn == ptr - thisname && | |
1320 | strncmp((const char *)name, (const char *)thisname, lorn) == 0) | |
1321 | return *count; | |
1322 | term++; | |
1323 | } | |
1324 | } | |
1325 | } | |
1326 | ||
1327 | /* Past any initial parenthesis handling, scan for parentheses or vertical | |
1328 | bars. Stop if we get to cd->end_pattern. Note that this is important for the | |
1329 | first-pass call when this value is temporarily adjusted to stop at the current | |
1330 | position. So DO NOT change this to a test for binary zero. */ | |
1331 | ||
1332 | for (; ptr < cd->end_pattern; ptr++) | |
1333 | { | |
1334 | /* Skip over backslashed characters and also entire \Q...\E */ | /* Skip over backslashed characters and also entire \Q...\E */ |
1335 | ||
1336 | if (*ptr == '\\') | if (*ptr == CHAR_BACKSLASH) |
1337 | { | { |
1338 | if (*(++ptr) == 0) return -1; | if (*(++ptr) == 0) goto FAIL_EXIT; |
1339 | if (*ptr == 'Q') for (;;) | if (*ptr == CHAR_Q) for (;;) |
1340 | { | { |
1341 | while (*(++ptr) != 0 && *ptr != '\\'); | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; |
1342 | if (*ptr == 0) return -1; | if (*ptr == 0) goto FAIL_EXIT; |
1343 | if (*(++ptr) == 'E') break; | if (*(++ptr) == CHAR_E) break; |
1344 | } | } |
1345 | continue; | continue; |
1346 | } | } |
# | Line 1012 for (; *ptr != 0; ptr++) | Line 1348 for (; *ptr != 0; ptr++) |
1348 | /* Skip over character classes; this logic must be similar to the way they | /* Skip over character classes; this logic must be similar to the way they |
1349 | are handled for real. If the first character is '^', skip it. Also, if the | are handled for real. If the first character is '^', skip it. Also, if the |
1350 | first few characters (either before or after ^) are \Q\E or \E we skip them | first few characters (either before or after ^) are \Q\E or \E we skip them |
1351 | too. This makes for compatibility with Perl. */ | too. This makes for compatibility with Perl. Note the use of STR macros to |
1352 | encode "Q\\E" so that it works in UTF-8 on EBCDIC platforms. */ | |
1353 | ||
1354 | if (*ptr == '[') | if (*ptr == CHAR_LEFT_SQUARE_BRACKET) |
1355 | { | { |
1356 | BOOL negate_class = FALSE; | BOOL negate_class = FALSE; |
1357 | for (;;) | for (;;) |
1358 | { | { |
1359 | int c = *(++ptr); | if (ptr[1] == CHAR_BACKSLASH) |
if (c == '\\') | ||
1360 | { | { |
1361 | if (ptr[1] == 'E') ptr++; | if (ptr[2] == CHAR_E) |
1362 | else if (strncmp((const char *)ptr+1, "Q\\E", 3) == 0) ptr += 3; | ptr+= 2; |
1363 | else break; | else if (strncmp((const char *)ptr+2, |
1364 | STR_Q STR_BACKSLASH STR_E, 3) == 0) | |
1365 | ptr += 4; | |
1366 | else | |
1367 | break; | |
1368 | } | } |
1369 | else if (!negate_class && c == '^') | else if (!negate_class && ptr[1] == CHAR_CIRCUMFLEX_ACCENT) |
1370 | { | |
1371 | negate_class = TRUE; | negate_class = TRUE; |
1372 | ptr++; | |
1373 | } | |
1374 | else break; | else break; |
1375 | } | } |
1376 | ||
1377 | /* If the next character is ']', it is a data character that must be | /* If the next character is ']', it is a data character that must be |
1378 | skipped, except in JavaScript compatibility mode. */ | skipped, except in JavaScript compatibility mode. */ |
1379 | ||
1380 | if (ptr[1] == ']' && (cd->external_options & PCRE_JAVASCRIPT_COMPAT) == 0) | if (ptr[1] == CHAR_RIGHT_SQUARE_BRACKET && |
1381 | ptr++; | (cd->external_options & PCRE_JAVASCRIPT_COMPAT) == 0) |
1382 | ptr++; | |
1383 | while (*(++ptr) != ']') | |
1384 | while (*(++ptr) != CHAR_RIGHT_SQUARE_BRACKET) | |
1385 | { | { |
1386 | if (*ptr == 0) return -1; | if (*ptr == 0) return -1; |
1387 | if (*ptr == '\\') | if (*ptr == CHAR_BACKSLASH) |
1388 | { | { |
1389 | if (*(++ptr) == 0) return -1; | if (*(++ptr) == 0) goto FAIL_EXIT; |
1390 | if (*ptr == 'Q') for (;;) | if (*ptr == CHAR_Q) for (;;) |
1391 | { | { |
1392 | while (*(++ptr) != 0 && *ptr != '\\'); | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; |
1393 | if (*ptr == 0) return -1; | if (*ptr == 0) goto FAIL_EXIT; |
1394 | if (*(++ptr) == 'E') break; | if (*(++ptr) == CHAR_E) break; |
1395 | } | } |
1396 | continue; | continue; |
1397 | } | } |
# | Line 1057 for (; *ptr != 0; ptr++) | Line 1401 for (; *ptr != 0; ptr++) |
1401 | ||
1402 | /* Skip comments in /x mode */ | /* Skip comments in /x mode */ |
1403 | ||
1404 | if (xmode && *ptr == '#') | if (xmode && *ptr == CHAR_NUMBER_SIGN) |
1405 | { | { |
1406 | while (*(++ptr) != 0 && *ptr != '\n'); | ptr++; |
1407 | if (*ptr == 0) return -1; | while (*ptr != 0) |
1408 | { | |
1409 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | |
1410 | ptr++; | |
1411 | #ifdef SUPPORT_UTF8 | |
1412 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
1413 | #endif | |
1414 | } | |
1415 | if (*ptr == 0) goto FAIL_EXIT; | |
1416 | continue; | continue; |
1417 | } | } |
1418 | ||
1419 | /* An opening parens must now be a real metacharacter */ | /* Check for the special metacharacters */ |
1420 | ||
1421 | if (*ptr != '(') continue; | if (*ptr == CHAR_LEFT_PARENTHESIS) |
if (ptr[1] != '?' && ptr[1] != '*') | ||
1422 | { | { |
1423 | count++; | int rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, count); |
1424 | if (name == NULL && count == lorn) return count; | if (rc > 0) return rc; |
1425 | continue; | if (*ptr == 0) goto FAIL_EXIT; |
1426 | } | } |
1427 | ||
1428 | ptr += 2; | else if (*ptr == CHAR_RIGHT_PARENTHESIS) |
1429 | if (*ptr == 'P') ptr++; /* Allow optional P */ | { |
1430 | if (dup_parens && *count < hwm_count) *count = hwm_count; | |
1431 | goto FAIL_EXIT; | |
1432 | } | |
1433 | ||
1434 | /* We have to disambiguate (?<! and (?<= from (?<name> */ | else if (*ptr == CHAR_VERTICAL_LINE && dup_parens) |
1435 | { | |
1436 | if (*count > hwm_count) hwm_count = *count; | |
1437 | *count = start_count; | |
1438 | } | |
1439 | } | |
1440 | ||
1441 | if ((*ptr != '<' || ptr[1] == '!' || ptr[1] == '=') && | FAIL_EXIT: |
1442 | *ptr != '\'') | *ptrptr = ptr; |
1443 | continue; | return -1; |
1444 | } | |
1445 | ||
1446 | ||
1447 | ||
1448 | ||
1449 | /************************************************* | |
1450 | * Find forward referenced subpattern * | |
1451 | *************************************************/ | |
1452 | ||
1453 | /* This function scans along a pattern's text looking for capturing | |
1454 | subpatterns, and counting them. If it finds a named pattern that matches the | |
1455 | name it is given, it returns its number. Alternatively, if the name is NULL, it | |
1456 | returns when it reaches a given numbered subpattern. This is used for forward | |
1457 | references to subpatterns. We used to be able to start this scan from the | |
1458 | current compiling point, using the current count value from cd->bracount, and | |
1459 | do it all in a single loop, but the addition of the possibility of duplicate | |
1460 | subpattern numbers means that we have to scan from the very start, in order to | |
1461 | take account of such duplicates, and to use a recursive function to keep track | |
1462 | of the different types of group. | |
1463 | ||
1464 | count++; | Arguments: |
1465 | cd compile background data | |
1466 | name name to seek, or NULL if seeking a numbered subpattern | |
1467 | lorn name length, or subpattern number if name is NULL | |
1468 | xmode TRUE if we are in /x mode | |
1469 | utf8 TRUE if we are in UTF-8 mode | |
1470 | ||
1471 | if (name == NULL && count == lorn) return count; | Returns: the number of the found subpattern, or -1 if not found |
1472 | term = *ptr++; | */ |
1473 | if (term == '<') term = '>'; | |
1474 | thisname = ptr; | static int |
1475 | while (*ptr != term) ptr++; | find_parens(compile_data *cd, const uschar *name, int lorn, BOOL xmode, |
1476 | if (name != NULL && lorn == ptr - thisname && | BOOL utf8) |
1477 | strncmp((const char *)name, (const char *)thisname, lorn) == 0) | { |
1478 | return count; | uschar *ptr = (uschar *)cd->start_pattern; |
1479 | int count = 0; | |
1480 | int rc; | |
1481 | ||
1482 | /* If the pattern does not start with an opening parenthesis, the first call | |
1483 | to find_parens_sub() will scan right to the end (if necessary). However, if it | |
1484 | does start with a parenthesis, find_parens_sub() will return when it hits the | |
1485 | matching closing parens. That is why we have to have a loop. */ | |
1486 | ||
1487 | for (;;) | |
1488 | { | |
1489 | rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf8, &count); | |
1490 | if (rc > 0 || *ptr++ == 0) break; | |
1491 | } | } |
1492 | ||
1493 | return -1; | return rc; |
1494 | } | } |
1495 | ||
1496 | ||
1497 | ||
1498 | ||
1499 | /************************************************* | /************************************************* |
1500 | * Find first significant op code * | * Find first significant op code * |
1501 | *************************************************/ | *************************************************/ |
1502 | ||
1503 | /* This is called by several functions that scan a compiled expression looking | /* This is called by several functions that scan a compiled expression looking |
1504 | for a fixed first character, or an anchoring op code etc. It skips over things | for a fixed first character, or an anchoring op code etc. It skips over things |
1505 | that do not influence this. For some calls, a change of option is important. | that do not influence this. For some calls, it makes sense to skip negative |
1506 | For some calls, it makes sense to skip negative forward and all backward | forward and all backward assertions, and also the \b assertion; for others it |
1507 | assertions, and also the \b assertion; for others it does not. | does not. |
1508 | ||
1509 | Arguments: | Arguments: |
1510 | code pointer to the start of the group | code pointer to the start of the group |
options pointer to external options | ||
optbit the option bit whose changing is significant, or | ||
zero if none are | ||
1511 | skipassert TRUE if certain assertions are to be skipped | skipassert TRUE if certain assertions are to be skipped |
1512 | ||
1513 | Returns: pointer to the first significant opcode | Returns: pointer to the first significant opcode |
1514 | */ | */ |
1515 | ||
1516 | static const uschar* | static const uschar* |
1517 | first_significant_code(const uschar *code, int *options, int optbit, | first_significant_code(const uschar *code, BOOL skipassert) |
BOOL skipassert) | ||
1518 | { | { |
1519 | for (;;) | for (;;) |
1520 | { | { |
1521 | switch ((int)*code) | switch ((int)*code) |
1522 | { | { |
case OP_OPT: | ||
if (optbit > 0 && ((int)code[1] & optbit) != (*options & optbit)) | ||
*options = (int)code[1]; | ||
code += 2; | ||
break; | ||
1523 | case OP_ASSERT_NOT: | case OP_ASSERT_NOT: |
1524 | case OP_ASSERTBACK: | case OP_ASSERTBACK: |
1525 | case OP_ASSERTBACK_NOT: | case OP_ASSERTBACK_NOT: |
# | Line 1149 for (;;) | Line 1535 for (;;) |
1535 | ||
1536 | case OP_CALLOUT: | case OP_CALLOUT: |
1537 | case OP_CREF: | case OP_CREF: |
1538 | case OP_NCREF: | |
1539 | case OP_RREF: | case OP_RREF: |
1540 | case OP_NRREF: | |
1541 | case OP_DEF: | case OP_DEF: |
1542 | code += _pcre_OP_lengths[*code]; | code += _pcre_OP_lengths[*code]; |
1543 | break; | break; |
# | Line 1165 for (;;) | Line 1553 for (;;) |
1553 | ||
1554 | ||
1555 | /************************************************* | /************************************************* |
1556 | * Find the fixed length of a pattern * | * Find the fixed length of a branch * |
1557 | *************************************************/ | *************************************************/ |
1558 | ||
1559 | /* Scan a pattern and compute the fixed length of subject that will match it, | /* Scan a branch and compute the fixed length of subject that will match it, |
1560 | if the length is fixed. This is needed for dealing with backward assertions. | if the length is fixed. This is needed for dealing with backward assertions. |
1561 | In UTF8 mode, the result is in characters rather than bytes. | In UTF8 mode, the result is in characters rather than bytes. The branch is |
1562 | temporarily terminated with OP_END when this function is called. | |
1563 | ||
1564 | This function is called when a backward assertion is encountered, so that if it | |
1565 | fails, the error message can point to the correct place in the pattern. | |
1566 | However, we cannot do this when the assertion contains subroutine calls, | |
1567 | because they can be forward references. We solve this by remembering this case | |
1568 | and doing the check at the end; a flag specifies which mode we are running in. | |
1569 | ||
1570 | Arguments: | Arguments: |
1571 | code points to the start of the pattern (the bracket) | code points to the start of the pattern (the bracket) |
1572 | options the compiling options | utf8 TRUE in UTF-8 mode |
1573 | atend TRUE if called when the pattern is complete | |
1574 | Returns: the fixed length, or -1 if there is no fixed length, | cd the "compile data" structure |
1575 | or -2 if \C was encountered | |
1576 | Returns: the fixed length, | |
1577 | or -1 if there is no fixed length, | |
1578 | or -2 if \C was encountered (in UTF-8 mode only) | |
1579 | or -3 if an OP_RECURSE item was encountered and atend is FALSE | |
1580 | or -4 if an unknown opcode was encountered (internal error) | |
1581 | */ | */ |
1582 | ||
1583 | static int | static int |
1584 | find_fixedlength(uschar *code, int options) | find_fixedlength(uschar *code, BOOL utf8, BOOL atend, compile_data *cd) |
1585 | { | { |
1586 | int length = -1; | int length = -1; |
1587 | ||
# | Line 1194 branch, check the length against that of | Line 1594 branch, check the length against that of |
1594 | for (;;) | for (;;) |
1595 | { | { |
1596 | int d; | int d; |
1597 | uschar *ce, *cs; | |
1598 | register int op = *cc; | register int op = *cc; |
1599 | switch (op) | switch (op) |
1600 | { | { |
1601 | /* We only need to continue for OP_CBRA (normal capturing bracket) and | |
1602 | OP_BRA (normal non-capturing bracket) because the other variants of these | |
1603 | opcodes are all concerned with unlimited repeated groups, which of course | |
1604 | are not of fixed length. */ | |
1605 | ||
1606 | case OP_CBRA: | case OP_CBRA: |
1607 | case OP_BRA: | case OP_BRA: |
1608 | case OP_ONCE: | case OP_ONCE: |
1609 | case OP_ONCE_NC: | |
1610 | case OP_COND: | case OP_COND: |
1611 | d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), options); | d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), utf8, atend, cd); |
1612 | if (d < 0) return d; | if (d < 0) return d; |
1613 | branchlength += d; | branchlength += d; |
1614 | do cc += GET(cc, 1); while (*cc == OP_ALT); | do cc += GET(cc, 1); while (*cc == OP_ALT); |
1615 | cc += 1 + LINK_SIZE; | cc += 1 + LINK_SIZE; |
1616 | break; | break; |
1617 | ||
1618 | /* Reached end of a branch; if it's a ket it is the end of a nested | /* Reached end of a branch; if it's a ket it is the end of a nested call. |
1619 | call. If it's ALT it is an alternation in a nested call. If it is | If it's ALT it is an alternation in a nested call. An ACCEPT is effectively |
1620 | END it's the end of the outer call. All can be handled by the same code. */ | an ALT. If it is END it's the end of the outer call. All can be handled by |
1621 | the same code. Note that we must not include the OP_KETRxxx opcodes here, | |
1622 | because they all imply an unlimited repeat. */ | |
1623 | ||
1624 | case OP_ALT: | case OP_ALT: |
1625 | case OP_KET: | case OP_KET: |
case OP_KETRMAX: | ||
case OP_KETRMIN: | ||
1626 | case OP_END: | case OP_END: |
1627 | case OP_ACCEPT: | |
1628 | case OP_ASSERT_ACCEPT: | |
1629 | if (length < 0) length = branchlength; | if (length < 0) length = branchlength; |
1630 | else if (length != branchlength) return -1; | else if (length != branchlength) return -1; |
1631 | if (*cc != OP_ALT) return length; | if (*cc != OP_ALT) return length; |
# | Line 1224 for (;;) | Line 1633 for (;;) |
1633 | branchlength = 0; | branchlength = 0; |
1634 | break; | break; |
1635 | ||
1636 | /* A true recursion implies not fixed length, but a subroutine call may | |
1637 | be OK. If the subroutine is a forward reference, we can't deal with | |
1638 | it until the end of the pattern, so return -3. */ | |
1639 | ||
1640 | case OP_RECURSE: | |
1641 | if (!atend) return -3; | |
1642 | cs = ce = (uschar *)cd->start_code + GET(cc, 1); /* Start subpattern */ | |
1643 | do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ | |
1644 | if (cc > cs && cc < ce) return -1; /* Recursion */ | |
1645 | d = find_fixedlength(cs + 2, utf8, atend, cd); | |
1646 | if (d < 0) return d; | |
1647 | branchlength += d; | |
1648 | cc += 1 + LINK_SIZE; | |
1649 | break; | |
1650 | ||
1651 | /* Skip over assertive subpatterns */ | /* Skip over assertive subpatterns */ |
1652 | ||
1653 | case OP_ASSERT: | case OP_ASSERT: |
# | Line 1235 for (;;) | Line 1659 for (;;) |
1659 | ||
1660 | /* Skip over things that don't match chars */ | /* Skip over things that don't match chars */ |
1661 | ||
1662 | case OP_REVERSE: | case OP_MARK: |
1663 | case OP_PRUNE_ARG: | |
1664 | case OP_SKIP_ARG: | |
1665 | case OP_THEN_ARG: | |
1666 | cc += cc[1] + _pcre_OP_lengths[*cc]; | |
1667 | break; | |
1668 | ||
1669 | case OP_CALLOUT: | |
1670 | case OP_CIRC: | |
1671 | case OP_CIRCM: | |
1672 | case OP_CLOSE: | |
1673 | case OP_COMMIT: | |
1674 | case OP_CREF: | case OP_CREF: |
case OP_RREF: | ||
1675 | case OP_DEF: | case OP_DEF: |
1676 | case OP_OPT: | case OP_DOLL: |
1677 | case OP_CALLOUT: | case OP_DOLLM: |
case OP_SOD: | ||
case OP_SOM: | ||
1678 | case OP_EOD: | case OP_EOD: |
1679 | case OP_EODN: | case OP_EODN: |
1680 | case OP_CIRC: | case OP_FAIL: |
1681 | case OP_DOLL: | case OP_NCREF: |
1682 | case OP_NRREF: | |
1683 | case OP_NOT_WORD_BOUNDARY: | case OP_NOT_WORD_BOUNDARY: |
1684 | case OP_PRUNE: | |
1685 | case OP_REVERSE: | |
1686 | case OP_RREF: | |
1687 | case OP_SET_SOM: | |
1688 | case OP_SKIP: | |
1689 | case OP_SOD: | |
1690 | case OP_SOM: | |
1691 | case OP_THEN: | |
1692 | case OP_WORD_BOUNDARY: | case OP_WORD_BOUNDARY: |
1693 | cc += _pcre_OP_lengths[*cc]; | cc += _pcre_OP_lengths[*cc]; |
1694 | break; | break; |
# | Line 1255 for (;;) | Line 1696 for (;;) |
1696 | /* Handle literal characters */ | /* Handle literal characters */ |
1697 | ||
1698 | case OP_CHAR: | case OP_CHAR: |
1699 | case OP_CHARNC: | case OP_CHARI: |
1700 | case OP_NOT: | case OP_NOT: |
1701 | case OP_NOTI: | |
1702 | branchlength++; | branchlength++; |
1703 | cc += 2; | cc += 2; |
1704 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
1705 | if ((options & PCRE_UTF8) != 0) | if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f]; |
{ | ||
while ((*cc & 0xc0) == 0x80) cc++; | ||
} | ||
1706 | #endif | #endif |
1707 | break; | break; |
1708 | ||
# | Line 1271 for (;;) | Line 1710 for (;;) |
1710 | need to skip over a multibyte character in UTF8 mode. */ | need to skip over a multibyte character in UTF8 mode. */ |
1711 | ||
1712 | case OP_EXACT: | case OP_EXACT: |
1713 | case OP_EXACTI: | |
1714 | case OP_NOTEXACT: | |
1715 | case OP_NOTEXACTI: | |
1716 | branchlength += GET2(cc,1); | branchlength += GET2(cc,1); |
1717 | cc += 4; | cc += 4; |
1718 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
1719 | if ((options & PCRE_UTF8) != 0) | if (utf8 && cc[-1] >= 0xc0) cc += _pcre_utf8_table4[cc[-1] & 0x3f]; |
{ | ||
while((*cc & 0x80) == 0x80) cc++; | ||
} | ||
1720 | #endif | #endif |
1721 | break; | break; |
1722 | ||
# | Line 1294 for (;;) | Line 1733 for (;;) |
1733 | cc += 2; | cc += 2; |
1734 | /* Fall through */ | /* Fall through */ |
1735 | ||
1736 | case OP_HSPACE: | |
1737 | case OP_VSPACE: | |
1738 | case OP_NOT_HSPACE: | |
1739 | case OP_NOT_VSPACE: | |
1740 | case OP_NOT_DIGIT: | case OP_NOT_DIGIT: |
1741 | case OP_DIGIT: | case OP_DIGIT: |
1742 | case OP_NOT_WHITESPACE: | case OP_NOT_WHITESPACE: |
# | Line 1301 for (;;) | Line 1744 for (;;) |
1744 | case OP_NOT_WORDCHAR: | case OP_NOT_WORDCHAR: |
1745 | case OP_WORDCHAR: | case OP_WORDCHAR: |
1746 | case OP_ANY: | case OP_ANY: |
1747 | case OP_ALLANY: | |
1748 | branchlength++; | branchlength++; |
1749 | cc++; | cc++; |
1750 | break; | break; |
1751 | ||
1752 | /* The single-byte matcher isn't allowed */ | /* The single-byte matcher isn't allowed. This only happens in UTF-8 mode; |
1753 | otherwise \C is coded as OP_ALLANY. */ | |
1754 | ||
1755 | case OP_ANYBYTE: | case OP_ANYBYTE: |
1756 | return -2; | return -2; |
# | Line 1324 for (;;) | Line 1769 for (;;) |
1769 | ||
1770 | switch (*cc) | switch (*cc) |
1771 | { | { |
1772 | case OP_CRPLUS: | |
1773 | case OP_CRMINPLUS: | |
1774 | case OP_CRSTAR: | case OP_CRSTAR: |
1775 | case OP_CRMINSTAR: | case OP_CRMINSTAR: |
1776 | case OP_CRQUERY: | case OP_CRQUERY: |
# | Line 1344 for (;;) | Line 1791 for (;;) |
1791 | ||
1792 | /* Anything else is variable length */ | /* Anything else is variable length */ |
1793 | ||
1794 | default: | case OP_ANYNL: |
1795 | case OP_BRAMINZERO: | |
1796 | case OP_BRAPOS: | |
1797 | case OP_BRAPOSZERO: | |
1798 | case OP_BRAZERO: | |
1799 | case OP_CBRAPOS: | |
1800 | case OP_EXTUNI: | |
1801 | case OP_KETRMAX: | |
1802 | case OP_KETRMIN: | |
1803 | case OP_KETRPOS: | |
1804 | case OP_MINPLUS: | |
1805 | case OP_MINPLUSI: | |
1806 | case OP_MINQUERY: | |
1807 | case OP_MINQUERYI: | |
1808 | case OP_MINSTAR: | |
1809 | case OP_MINSTARI: | |
1810 | case OP_MINUPTO: | |
1811 | case OP_MINUPTOI: | |
1812 | case OP_NOTMINPLUS: | |
1813 | case OP_NOTMINPLUSI: | |
1814 | case OP_NOTMINQUERY: | |
1815 | case OP_NOTMINQUERYI: | |
1816 | case OP_NOTMINSTAR: | |
1817 | case OP_NOTMINSTARI: | |
1818 | case OP_NOTMINUPTO: | |
1819 | case OP_NOTMINUPTOI: | |
1820 | case OP_NOTPLUS: | |
1821 | case OP_NOTPLUSI: | |
1822 | case OP_NOTPOSPLUS: | |
1823 | case OP_NOTPOSPLUSI: | |
1824 | case OP_NOTPOSQUERY: | |
1825 | case OP_NOTPOSQUERYI: | |
1826 | case OP_NOTPOSSTAR: | |
1827 | case OP_NOTPOSSTARI: | |
1828 | case OP_NOTPOSUPTO: | |
1829 | case OP_NOTPOSUPTOI: | |
1830 | case OP_NOTQUERY: | |
1831 | case OP_NOTQUERYI: | |
1832 | case OP_NOTSTAR: | |
1833 | case OP_NOTSTARI: | |
1834 | case OP_NOTUPTO: | |
1835 | case OP_NOTUPTOI: | |
1836 | case OP_PLUS: | |
1837 | case OP_PLUSI: | |
1838 | case OP_POSPLUS: | |
1839 | case OP_POSPLUSI: | |
1840 | case OP_POSQUERY: | |
1841 | case OP_POSQUERYI: | |
1842 | case OP_POSSTAR: | |
1843 | case OP_POSSTARI: | |
1844 | case OP_POSUPTO: | |
1845 | case OP_POSUPTOI: | |
1846 | case OP_QUERY: | |
1847 | case OP_QUERYI: | |
1848 | case OP_REF: | |
1849 | case OP_REFI: | |
1850 | case OP_SBRA: | |
1851 | case OP_SBRAPOS: | |
1852 | case OP_SCBRA: | |
1853 | case OP_SCBRAPOS: | |
1854 | case OP_SCOND: | |
1855 | case OP_SKIPZERO: | |
1856 | case OP_STAR: | |
1857 | case OP_STARI: | |
1858 | case OP_TYPEMINPLUS: | |
1859 | case OP_TYPEMINQUERY: | |
1860 | case OP_TYPEMINSTAR: | |
1861 | case OP_TYPEMINUPTO: | |
1862 | case OP_TYPEPLUS: | |
1863 | case OP_TYPEPOSPLUS: | |
1864 | case OP_TYPEPOSQUERY: | |
1865 | case OP_TYPEPOSSTAR: | |
1866 | case OP_TYPEPOSUPTO: | |
1867 | case OP_TYPEQUERY: | |
1868 | case OP_TYPESTAR: | |
1869 | case OP_TYPEUPTO: | |
1870 | case OP_UPTO: | |
1871 | case OP_UPTOI: | |
1872 | return -1; | return -1; |
1873 | ||
1874 | /* Catch unrecognized opcodes so that when new ones are added they | |
1875 | are not forgotten, as has happened in the past. */ | |
1876 | ||
1877 | default: | |
1878 | return -4; | |
1879 | } | } |
1880 | } | } |
1881 | /* Control never gets here */ | /* Control never gets here */ |
# | Line 1355 for (;;) | Line 1885 for (;;) |
1885 | ||
1886 | ||
1887 | /************************************************* | /************************************************* |
1888 | * Scan compiled regex for numbered bracket * | * Scan compiled regex for specific bracket * |
1889 | *************************************************/ | *************************************************/ |
1890 | ||
1891 | /* This little function scans through a compiled pattern until it finds a | /* This little function scans through a compiled pattern until it finds a |
1892 | capturing bracket with the given number. | capturing bracket with the given number, or, if the number is negative, an |
1893 | instance of OP_REVERSE for a lookbehind. The function is global in the C sense | |
1894 | so that it can be called from pcre_study() when finding the minimum matching | |
1895 | length. | |
1896 | ||
1897 | Arguments: | Arguments: |
1898 | code points to start of expression | code points to start of expression |
1899 | utf8 TRUE in UTF-8 mode | utf8 TRUE in UTF-8 mode |
1900 | number the required bracket number | number the required bracket number or negative to find a lookbehind |
1901 | ||
1902 | Returns: pointer to the opcode for the bracket, or NULL if not found | Returns: pointer to the opcode for the bracket, or NULL if not found |
1903 | */ | */ |
1904 | ||
1905 | static const uschar * | const uschar * |
1906 | find_bracket(const uschar *code, BOOL utf8, int number) | _pcre_find_bracket(const uschar *code, BOOL utf8, int number) |
1907 | { | { |
1908 | for (;;) | for (;;) |
1909 | { | { |
1910 | register int c = *code; | register int c = *code; |
1911 | ||
1912 | if (c == OP_END) return NULL; | if (c == OP_END) return NULL; |
1913 | ||
1914 | /* XCLASS is used for classes that cannot be represented just by a bit | /* XCLASS is used for classes that cannot be represented just by a bit |
# | Line 1383 for (;;) | Line 1917 for (;;) |
1917 | ||
1918 | if (c == OP_XCLASS) code += GET(code, 1); | if (c == OP_XCLASS) code += GET(code, 1); |
1919 | ||
1920 | /* Handle recursion */ | |
1921 | ||
1922 | else if (c == OP_REVERSE) | |
1923 | { | |
1924 | if (number < 0) return (uschar *)code; | |
1925 | code += _pcre_OP_lengths[c]; | |
1926 | } | |
1927 | ||
1928 | /* Handle capturing bracket */ | /* Handle capturing bracket */ |
1929 | ||
1930 | else if (c == OP_CBRA) | else if (c == OP_CBRA || c == OP_SCBRA || |
1931 | c == OP_CBRAPOS || c == OP_SCBRAPOS) | |
1932 | { | { |
1933 | int n = GET2(code, 1+LINK_SIZE); | int n = GET2(code, 1+LINK_SIZE); |
1934 | if (n == number) return (uschar *)code; | if (n == number) return (uschar *)code; |
# | Line 1394 for (;;) | Line 1937 for (;;) |
1937 | ||
1938 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
1939 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
1940 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
1941 | must add in its length. */ | |
1942 | ||
1943 | else | else |
1944 | { | { |
# | Line 1418 for (;;) | Line 1962 for (;;) |
1962 | case OP_TYPEPOSUPTO: | case OP_TYPEPOSUPTO: |
1963 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; |
1964 | break; | break; |
1965 | ||
1966 | case OP_MARK: | |
1967 | case OP_PRUNE_ARG: | |
1968 | case OP_SKIP_ARG: | |
1969 | code += code[1]; | |
1970 | break; | |
1971 | ||
1972 | case OP_THEN_ARG: | |
1973 | code += code[1]; | |
1974 | break; | |
1975 | } | } |
1976 | ||
1977 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
# | Line 1432 for (;;) | Line 1986 for (;;) |
1986 | if (utf8) switch(c) | if (utf8) switch(c) |
1987 | { | { |
1988 | case OP_CHAR: | case OP_CHAR: |
1989 | case OP_CHARNC: | case OP_CHARI: |
1990 | case OP_EXACT: | case OP_EXACT: |
1991 | case OP_EXACTI: | |
1992 | case OP_UPTO: | case OP_UPTO: |
1993 | case OP_UPTOI: | |
1994 | case OP_MINUPTO: | case OP_MINUPTO: |
1995 | case OP_MINUPTOI: | |
1996 | case OP_POSUPTO: | case OP_POSUPTO: |
1997 | case OP_POSUPTOI: | |
1998 | case OP_STAR: | case OP_STAR: |
1999 | case OP_STARI: | |
2000 | case OP_MINSTAR: | case OP_MINSTAR: |
2001 | case OP_MINSTARI: | |
2002 | case OP_POSSTAR: | case OP_POSSTAR: |
2003 | case OP_POSSTARI: | |
2004 | case OP_PLUS: | case OP_PLUS: |
2005 | case OP_PLUSI: | |
2006 | case OP_MINPLUS: | case OP_MINPLUS: |
2007 | case OP_MINPLUSI: | |
2008 | case OP_POSPLUS: | case OP_POSPLUS: |
2009 | case OP_POSPLUSI: | |
2010 | case OP_QUERY: | case OP_QUERY: |
2011 | case OP_QUERYI: | |
2012 | case OP_MINQUERY: | case OP_MINQUERY: |
2013 | case OP_MINQUERYI: | |
2014 | case OP_POSQUERY: | case OP_POSQUERY: |
2015 | case OP_POSQUERYI: | |
2016 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; |
2017 | break; | break; |
2018 | } | } |
2019 | #else | |
2020 | (void)(utf8); /* Keep compiler happy by referencing function argument */ | |
2021 | #endif | #endif |
2022 | } | } |
2023 | } | } |
# | Line 1487 for (;;) | Line 2056 for (;;) |
2056 | ||
2057 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
2058 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
2059 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
2060 | must add in its length. */ | |
2061 | ||
2062 | else | else |
2063 | { | { |
# | Line 1511 for (;;) | Line 2081 for (;;) |
2081 | case OP_TYPEEXACT: | case OP_TYPEEXACT: |
2082 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; |
2083 | break; | break; |
2084 | ||
2085 | case OP_MARK: | |
2086 | case OP_PRUNE_ARG: | |
2087 | case OP_SKIP_ARG: | |
2088 | code += code[1]; | |
2089 | break; | |
2090 | ||
2091 | case OP_THEN_ARG: | |
2092 | code += code[1]; | |
2093 | break; | |
2094 | } | } |
2095 | ||
2096 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
# | Line 1525 for (;;) | Line 2105 for (;;) |
2105 | if (utf8) switch(c) | if (utf8) switch(c) |
2106 | { | { |
2107 | case OP_CHAR: | case OP_CHAR: |
2108 | case OP_CHARNC: | case OP_CHARI: |
2109 | case OP_EXACT: | case OP_EXACT: |
2110 | case OP_EXACTI: | |
2111 | case OP_UPTO: | case OP_UPTO: |
2112 | case OP_UPTOI: | |
2113 | case OP_MINUPTO: | case OP_MINUPTO: |
2114 | case OP_MINUPTOI: | |
2115 | case OP_POSUPTO: | case OP_POSUPTO: |
2116 | case OP_POSUPTOI: | |
2117 | case OP_STAR: | case OP_STAR: |
2118 | case OP_STARI: | |
2119 | case OP_MINSTAR: | case OP_MINSTAR: |
2120 | case OP_MINSTARI: | |
2121 | case OP_POSSTAR: | case OP_POSSTAR: |
2122 | case OP_POSSTARI: | |
2123 | case OP_PLUS: | case OP_PLUS: |
2124 | case OP_PLUSI: | |
2125 | case OP_MINPLUS: | case OP_MINPLUS: |
2126 | case OP_MINPLUSI: | |
2127 | case OP_POSPLUS: | case OP_POSPLUS: |
2128 | case OP_POSPLUSI: | |
2129 | case OP_QUERY: | case OP_QUERY: |
2130 | case OP_QUERYI: | |
2131 | case OP_MINQUERY: | case OP_MINQUERY: |
2132 | case OP_MINQUERYI: | |
2133 | case OP_POSQUERY: | case OP_POSQUERY: |
2134 | case OP_POSQUERYI: | |
2135 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; |
2136 | break; | break; |
2137 | } | } |
2138 | #else | |
2139 | (void)(utf8); /* Keep compiler happy by referencing function argument */ | |
2140 | #endif | #endif |
2141 | } | } |
2142 | } | } |
# | Line 1565 Arguments: | Line 2160 Arguments: |
2160 | code points to start of search | code points to start of search |
2161 | endcode points to where to stop | endcode points to where to stop |
2162 | utf8 TRUE if in UTF8 mode | utf8 TRUE if in UTF8 mode |
2163 | cd contains pointers to tables etc. | |
2164 | ||
2165 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
2166 | */ | */ |
2167 | ||
2168 | static BOOL | static BOOL |
2169 | could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8) | could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8, |
2170 | compile_data *cd) | |
2171 | { | { |
2172 | register int c; | register int c; |
2173 | for (code = first_significant_code(code + _pcre_OP_lengths[*code], NULL, 0, TRUE); | for (code = first_significant_code(code + _pcre_OP_lengths[*code], TRUE); |
2174 | code < endcode; | code < endcode; |
2175 | code = first_significant_code(code + _pcre_OP_lengths[c], NULL, 0, TRUE)) | code = first_significant_code(code + _pcre_OP_lengths[c], TRUE)) |
2176 | { | { |
2177 | const uschar *ccode; | const uschar *ccode; |
2178 | ||
# | Line 1591 for (code = first_significant_code(code | Line 2188 for (code = first_significant_code(code |
2188 | continue; | continue; |
2189 | } | } |
2190 | ||
2191 | /* For a recursion/subroutine call, if its end has been reached, which | |
2192 | implies a backward reference subroutine call, we can scan it. If it's a | |
2193 | forward reference subroutine call, we can't. To detect forward reference | |
2194 | we have to scan up the list that is kept in the workspace. This function is | |
2195 | called only when doing the real compile, not during the pre-compile that | |
2196 | measures the size of the compiled pattern. */ | |
2197 | ||
2198 | if (c == OP_RECURSE) | |
2199 | { | |
2200 | const uschar *scode; | |
2201 | BOOL empty_branch; | |
2202 | ||
2203 | /* Test for forward reference */ | |
2204 | ||
2205 | for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) | |
2206 | if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; | |
2207 | ||
2208 | /* Not a forward reference, test for completed backward reference */ | |
2209 | ||
2210 | empty_branch = FALSE; | |
2211 | scode = cd->start_code + GET(code, 1); | |
2212 | if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ | |
2213 | ||
2214 | /* Completed backwards reference */ | |
2215 | ||
2216 | do | |
2217 | { | |
2218 | if (could_be_empty_branch(scode, endcode, utf8, cd)) | |
2219 | { | |
2220 | empty_branch = TRUE; | |
2221 | break; | |
2222 | } | |
2223 | scode += GET(scode, 1); | |
2224 | } | |
2225 | while (*scode == OP_ALT); | |
2226 | ||
2227 | if (!empty_branch) return FALSE; /* All branches are non-empty */ | |
2228 | continue; | |
2229 | } | |
2230 | ||
2231 | /* Groups with zero repeats can of course be empty; skip them. */ | /* Groups with zero repeats can of course be empty; skip them. */ |
2232 | ||
2233 | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO) | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO || |
2234 | c == OP_BRAPOSZERO) | |
2235 | { | { |
2236 | code += _pcre_OP_lengths[c]; | code += _pcre_OP_lengths[c]; |
2237 | do code += GET(code, 1); while (*code == OP_ALT); | do code += GET(code, 1); while (*code == OP_ALT); |
# | Line 1601 for (code = first_significant_code(code | Line 2239 for (code = first_significant_code(code |
2239 | continue; | continue; |
2240 | } | } |
2241 | ||
2242 | /* A nested group that is already marked as "could be empty" can just be | |
2243 | skipped. */ | |
2244 | ||
2245 | if (c == OP_SBRA || c == OP_SBRAPOS || | |
2246 | c == OP_SCBRA || c == OP_SCBRAPOS) | |
2247 | { | |
2248 | do code += GET(code, 1); while (*code == OP_ALT); | |
2249 | c = *code; | |
2250 | continue; | |
2251 | } | |
2252 | ||
2253 | /* For other groups, scan the branches. */ | /* For other groups, scan the branches. */ |
2254 | ||
2255 | if (c == OP_BRA || c == OP_CBRA || c == OP_ONCE || c == OP_COND) | if (c == OP_BRA || c == OP_BRAPOS || |
2256 | c == OP_CBRA || c == OP_CBRAPOS || | |
2257 | c == OP_ONCE || c == OP_ONCE_NC || | |
2258 | c == OP_COND) | |
2259 | { | { |
2260 | BOOL empty_branch; | BOOL empty_branch; |
2261 | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ |
2262 | ||
2263 | /* Scan a closed bracket */ | /* If a conditional group has only one branch, there is a second, implied, |
2264 | empty branch, so just skip over the conditional, because it could be empty. | |
2265 | Otherwise, scan the individual branches of the group. */ | |
2266 | ||
2267 | empty_branch = FALSE; | if (c == OP_COND && code[GET(code, 1)] != OP_ALT) |
do | ||
{ | ||
if (!empty_branch && could_be_empty_branch(code, endcode, utf8)) | ||
empty_branch = TRUE; | ||
2268 | code += GET(code, 1); | code += GET(code, 1); |
2269 | else | |
2270 | { | |
2271 | empty_branch = FALSE; | |
2272 | do | |
2273 | { | |
2274 | if (!empty_branch && could_be_empty_branch(code, endcode, utf8, cd)) | |
2275 | empty_branch = TRUE; | |
2276 | code += GET(code, 1); | |
2277 | } | |
2278 | while (*code == OP_ALT); | |
2279 | if (!empty_branch) return FALSE; /* All branches are non-empty */ | |
2280 | } | } |
2281 | while (*code == OP_ALT); | |
if (!empty_branch) return FALSE; /* All branches are non-empty */ | ||
2282 | c = *code; | c = *code; |
2283 | continue; | continue; |
2284 | } | } |
# | Line 1679 for (code = first_significant_code(code | Line 2339 for (code = first_significant_code(code |
2339 | case OP_NOT_WORDCHAR: | case OP_NOT_WORDCHAR: |
2340 | case OP_WORDCHAR: | case OP_WORDCHAR: |
2341 | case OP_ANY: | case OP_ANY: |
2342 | case OP_ALLANY: | |
2343 | case OP_ANYBYTE: | case OP_ANYBYTE: |
2344 | case OP_CHAR: | case OP_CHAR: |
2345 | case OP_CHARNC: | case OP_CHARI: |
2346 | case OP_NOT: | case OP_NOT: |
2347 | case OP_NOTI: | |
2348 | case OP_PLUS: | case OP_PLUS: |
2349 | case OP_MINPLUS: | case OP_MINPLUS: |
2350 | case OP_POSPLUS: | case OP_POSPLUS: |
# | Line 1722 for (code = first_significant_code(code | Line 2384 for (code = first_significant_code(code |
2384 | case OP_KET: | case OP_KET: |
2385 | case OP_KETRMAX: | case OP_KETRMAX: |
2386 | case OP_KETRMIN: | case OP_KETRMIN: |
2387 | case OP_KETRPOS: | |
2388 | case OP_ALT: | case OP_ALT: |
2389 | return TRUE; | return TRUE; |
2390 | ||
# | Line 1730 for (code = first_significant_code(code | Line 2393 for (code = first_significant_code(code |
2393 | ||
2394 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
2395 | case OP_STAR: | case OP_STAR: |
2396 | case OP_STARI: | |
2397 | case OP_MINSTAR: | case OP_MINSTAR: |
2398 | case OP_MINSTARI: | |
2399 | case OP_POSSTAR: | case OP_POSSTAR: |
2400 | case OP_POSSTARI: | |
2401 | case OP_QUERY: | case OP_QUERY: |
2402 | case OP_QUERYI: | |
2403 | case OP_MINQUERY: | case OP_MINQUERY: |
2404 | case OP_MINQUERYI: | |
2405 | case OP_POSQUERY: | case OP_POSQUERY: |
2406 | case OP_POSQUERYI: | |
2407 | if (utf8 && code[1] >= 0xc0) code += _pcre_utf8_table4[code[1] & 0x3f]; | |
2408 | break; | |
2409 | ||
2410 | case OP_UPTO: | case OP_UPTO: |
2411 | case OP_UPTOI: | |
2412 | case OP_MINUPTO: | case OP_MINUPTO: |
2413 | case OP_MINUPTOI: | |
2414 | case OP_POSUPTO: | case OP_POSUPTO: |
2415 | if (utf8) while ((code[2] & 0xc0) == 0x80) code++; | case OP_POSUPTOI: |
2416 | if (utf8 && code[3] >= 0xc0) code += _pcre_utf8_table4[code[3] & 0x3f]; | |
2417 | break; | break; |
2418 | #endif | #endif |
2419 | ||
2420 | /* MARK, and PRUNE/SKIP/THEN with an argument must skip over the argument | |
2421 | string. */ | |
2422 | ||
2423 | case OP_MARK: | |
2424 | case OP_PRUNE_ARG: | |
2425 | case OP_SKIP_ARG: | |
2426 | code += code[1]; | |
2427 | break; | |
2428 | ||
2429 | case OP_THEN_ARG: | |
2430 | code += code[1]; | |
2431 | break; | |
2432 | ||
2433 | /* None of the remaining opcodes are required to match a character. */ | |
2434 | ||
2435 | default: | |
2436 | break; | |
2437 | } | } |
2438 | } | } |
2439 | ||
# | Line 1757 return TRUE; | Line 2450 return TRUE; |
2450 | the current branch of the current pattern to see if it could match the empty | the current branch of the current pattern to see if it could match the empty |
2451 | string. If it could, we must look outwards for branches at other levels, | string. If it could, we must look outwards for branches at other levels, |
2452 | stopping when we pass beyond the bracket which is the subject of the recursion. | stopping when we pass beyond the bracket which is the subject of the recursion. |
2453 | This function is called only during the real compile, not during the | |
2454 | pre-compile. | |
2455 | ||
2456 | Arguments: | Arguments: |
2457 | code points to start of the recursion | code points to start of the recursion |
2458 | endcode points to where to stop (current RECURSE item) | endcode points to where to stop (current RECURSE item) |
2459 | bcptr points to the chain of current (unclosed) branch starts | bcptr points to the chain of current (unclosed) branch starts |
2460 | utf8 TRUE if in UTF-8 mode | utf8 TRUE if in UTF-8 mode |
2461 | cd pointers to tables etc | |
2462 | ||
2463 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
2464 | */ | */ |
2465 | ||
2466 | static BOOL | static BOOL |
2467 | could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr, | could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr, |
2468 | BOOL utf8) | BOOL utf8, compile_data *cd) |
2469 | { | { |
2470 | while (bcptr != NULL && bcptr->current >= code) | while (bcptr != NULL && bcptr->current_branch >= code) |
2471 | { | { |
2472 | if (!could_be_empty_branch(bcptr->current, endcode, utf8)) return FALSE; | if (!could_be_empty_branch(bcptr->current_branch, endcode, utf8, cd)) |
2473 | return FALSE; | |
2474 | bcptr = bcptr->outer; | bcptr = bcptr->outer; |
2475 | } | } |
2476 | return TRUE; | return TRUE; |
# | Line 1805 where Perl recognizes it as the POSIX cl | Line 2502 where Perl recognizes it as the POSIX cl |
2502 | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
2503 | I think. | I think. |
2504 | ||
2505 | A user pointed out that PCRE was rejecting [:a[:digit:]] whereas Perl was not. | |
2506 | It seems that the appearance of a nested POSIX class supersedes an apparent | |
2507 | external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or | |
2508 | a digit. | |
2509 | ||
2510 | In Perl, unescaped square brackets may also appear as part of class names. For | |
2511 | example, [:a[:abc]b:] gives unknown POSIX class "[:abc]b:]". However, for | |
2512 | [:a[:abc]b][b:] it gives unknown POSIX class "[:abc]b][b:]", which does not | |
2513 | seem right at all. PCRE does not allow closing square brackets in POSIX class | |
2514 | names. | |
2515 | ||
2516 | Arguments: | Arguments: |
2517 | ptr pointer to the initial [ | ptr pointer to the initial [ |
2518 | endptr where to return the end pointer | endptr where to return the end pointer |
# | Line 1819 int terminator; /* Don't combin | Line 2527 int terminator; /* Don't combin |
2527 | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
2528 | for (++ptr; *ptr != 0; ptr++) | for (++ptr; *ptr != 0; ptr++) |
2529 | { | { |
2530 | if (*ptr == '\\' && ptr[1] == ']') ptr++; else | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
2531 | ptr++; | |
2532 | else if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE; | |
2533 | else | |
2534 | { | { |
2535 | if (*ptr == ']') return FALSE; | if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
if (*ptr == terminator && ptr[1] == ']') | ||
2536 | { | { |
2537 | *endptr = ptr; | *endptr = ptr; |
2538 | return TRUE; | return TRUE; |
2539 | } | } |
2540 | if (*ptr == CHAR_LEFT_SQUARE_BRACKET && | |
2541 | (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || | |
2542 | ptr[1] == CHAR_EQUALS_SIGN) && | |
2543 | check_posix_syntax(ptr, endptr)) | |
2544 | return FALSE; | |
2545 | } | } |
2546 | } | } |
2547 | return FALSE; | return FALSE; |
# | Line 1909 while ((ptr = (uschar *)find_recurse(ptr | Line 2624 while ((ptr = (uschar *)find_recurse(ptr |
2624 | ||
2625 | /* See if this recursion is on the forward reference list. If so, adjust the | /* See if this recursion is on the forward reference list. If so, adjust the |
2626 | reference. */ | reference. */ |
2627 | ||
2628 | for (hc = save_hwm; hc < cd->hwm; hc += LINK_SIZE) | for (hc = save_hwm; hc < cd->hwm; hc += LINK_SIZE) |
2629 | { | { |
2630 | offset = GET(hc, 0); | offset = GET(hc, 0); |
# | Line 1955 auto_callout(uschar *code, const uschar | Line 2670 auto_callout(uschar *code, const uschar |
2670 | { | { |
2671 | *code++ = OP_CALLOUT; | *code++ = OP_CALLOUT; |
2672 | *code++ = 255; | *code++ = 255; |
2673 | PUT(code, 0, ptr - cd->start_pattern); /* Pattern offset */ | PUT(code, 0, (int)(ptr - cd->start_pattern)); /* Pattern offset */ |
2674 | PUT(code, LINK_SIZE, 0); /* Default length */ | PUT(code, LINK_SIZE, 0); /* Default length */ |
2675 | return code + 2*LINK_SIZE; | return code + 2*LINK_SIZE; |
2676 | } | } |
2677 | ||
# | Line 1981 Returns: nothing | Line 2696 Returns: nothing |
2696 | static void | static void |
2697 | complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd) | complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd) |
2698 | { | { |
2699 | int length = ptr - cd->start_pattern - GET(previous_callout, 2); | int length = (int)(ptr - cd->start_pattern - GET(previous_callout, 2)); |
2700 | PUT(previous_callout, 2 + LINK_SIZE, length); | PUT(previous_callout, 2 + LINK_SIZE, length); |
2701 | } | } |
2702 | ||
# | Line 2013 get_othercase_range(unsigned int *cptr, | Line 2728 get_othercase_range(unsigned int *cptr, |
2728 | unsigned int c, othercase, next; | unsigned int c, othercase, next; |
2729 | ||
2730 | for (c = *cptr; c <= d; c++) | for (c = *cptr; c <= d; c++) |
2731 | { if ((othercase = _pcre_ucp_othercase(c)) != NOTACHAR) break; } | { if ((othercase = UCD_OTHERCASE(c)) != c) break; } |
2732 | ||
2733 | if (c > d) return FALSE; | if (c > d) return FALSE; |
2734 | ||
# | Line 2022 next = othercase + 1; | Line 2737 next = othercase + 1; |
2737 | ||
2738 | for (++c; c <= d; c++) | for (++c; c <= d; c++) |
2739 | { | { |
2740 | if (_pcre_ucp_othercase(c) != next) break; | if (UCD_OTHERCASE(c) != next) break; |
2741 | next++; | next++; |
2742 | } | } |
2743 | ||
# | Line 2031 for (++c; c <= d; c++) | Line 2746 for (++c; c <= d; c++) |
2746 | ||
2747 | return TRUE; | return TRUE; |
2748 | } | } |
2749 | ||
2750 | ||
2751 | ||
2752 | /************************************************* | |
2753 | * Check a character and a property * | |
2754 | *************************************************/ | |
2755 | ||
2756 | /* This function is called by check_auto_possessive() when a property item | |
2757 | is adjacent to a fixed character. | |
2758 | ||
2759 | Arguments: | |
2760 | c the character | |
2761 | ptype the property type | |
2762 | pdata the data for the type | |
2763 | negated TRUE if it's a negated property (\P or \p{^) | |
2764 | ||
2765 | Returns: TRUE if auto-possessifying is OK | |
2766 | */ | |
2767 | ||
2768 | static BOOL | |
2769 | check_char_prop(int c, int ptype, int pdata, BOOL negated) | |
2770 | { | |
2771 | const ucd_record *prop = GET_UCD(c); | |
2772 | switch(ptype) | |
2773 | { | |
2774 | case PT_LAMP: | |
2775 | return (prop->chartype == ucp_Lu || | |
2776 | prop->chartype == ucp_Ll || | |
2777 | prop->chartype == ucp_Lt) == negated; | |
2778 | ||
2779 | case PT_GC: | |
2780 | return (pdata == _pcre_ucp_gentype[prop->chartype]) == negated; | |
2781 | ||
2782 | case PT_PC: | |
2783 | return (pdata == prop->chartype) == negated; | |
2784 | ||
2785 | case PT_SC: | |
2786 | return (pdata == prop->script) == negated; | |
2787 | ||
2788 | /* These are specials */ | |
2789 | ||
2790 | case PT_ALNUM: | |
2791 | return (_pcre_ucp_gentype[prop->chartype] == ucp_L || | |
2792 | _pcre_ucp_gentype[prop->chartype] == ucp_N) == negated; | |
2793 | ||
2794 | case PT_SPACE: /* Perl space */ | |
2795 | return (_pcre_ucp_gentype[prop->chartype] == ucp_Z || | |
2796 | c == CHAR_HT || c == CHAR_NL || c == CHAR_FF || c == CHAR_CR) | |
2797 | == negated; | |
2798 | ||
2799 | case PT_PXSPACE: /* POSIX space */ | |
2800 | return (_pcre_ucp_gentype[prop->chartype] == ucp_Z || | |
2801 | c == CHAR_HT || c == CHAR_NL || c == CHAR_VT || | |
2802 | c == CHAR_FF || c == CHAR_CR) | |
2803 | == negated; | |
2804 | ||
2805 | case PT_WORD: | |
2806 | return (_pcre_ucp_gentype[prop->chartype] == ucp_L || | |
2807 | _pcre_ucp_gentype[prop->chartype] == ucp_N || | |
2808 | c == CHAR_UNDERSCORE) == negated; | |
2809 | } | |
2810 | return FALSE; | |
2811 | } | |
2812 | #endif /* SUPPORT_UCP */ | #endif /* SUPPORT_UCP */ |
2813 | ||
2814 | ||
# | Line 2044 whether the next thing could possibly ma | Line 2822 whether the next thing could possibly ma |
2822 | sense to automatically possessify the repeated item. | sense to automatically possessify the repeated item. |
2823 | ||
2824 | Arguments: | Arguments: |
2825 | op_code the repeated op code | previous pointer to the repeated opcode |
this data for this item, depends on the opcode | ||
2826 | utf8 TRUE in UTF-8 mode | utf8 TRUE in UTF-8 mode |
utf8_char used for utf8 character bytes, NULL if not relevant | ||
2827 | ptr next character in pattern | ptr next character in pattern |
2828 | options options bits | options options bits |
2829 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
# | Line 2056 Returns: TRUE if possessifying is | Line 2832 Returns: TRUE if possessifying is |
2832 | */ | */ |
2833 | ||
2834 | static BOOL | static BOOL |
2835 | check_auto_possessive(int op_code, int item, BOOL utf8, uschar *utf8_char, | check_auto_possessive(const uschar *previous, BOOL utf8, const uschar *ptr, |
2836 | const uschar *ptr, int options, compile_data *cd) | int options, compile_data *cd) |
2837 | { | { |
2838 | int next; | int c, next; |
2839 | int op_code = *previous++; | |
2840 | ||
2841 | /* Skip whitespace and comments in extended mode */ | /* Skip whitespace and comments in extended mode */ |
2842 | ||
# | Line 2068 if ((options & PCRE_EXTENDED) != 0) | Line 2845 if ((options & PCRE_EXTENDED) != 0) |
2845 | for (;;) | for (;;) |
2846 | { | { |
2847 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
2848 | if (*ptr == '#') | if (*ptr == CHAR_NUMBER_SIGN) |
2849 | { | { |
2850 | while (*(++ptr) != 0) | ptr++; |
2851 | while (*ptr != 0) | |
2852 | { | |
2853 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
2854 | ptr++; | |
2855 | #ifdef SUPPORT_UTF8 | |
2856 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
2857 | #endif | |
2858 | } | |
2859 | } | } |
2860 | else break; | else break; |
2861 | } | } |
# | Line 2080 if ((options & PCRE_EXTENDED) != 0) | Line 2864 if ((options & PCRE_EXTENDED) != 0) |
2864 | /* If the next item is one that we can handle, get its value. A non-negative | /* If the next item is one that we can handle, get its value. A non-negative |
2865 | value is a character, a negative value is an escape value. */ | value is a character, a negative value is an escape value. */ |
2866 | ||
2867 | if (*ptr == '\\') | if (*ptr == CHAR_BACKSLASH) |
2868 | { | { |
2869 | int temperrorcode = 0; | int temperrorcode = 0; |
2870 | next = check_escape(&ptr, &temperrorcode, cd->bracount, options, FALSE); | next = check_escape(&ptr, &temperrorcode, cd->bracount, options, FALSE); |
# | Line 2105 if ((options & PCRE_EXTENDED) != 0) | Line 2889 if ((options & PCRE_EXTENDED) != 0) |
2889 | for (;;) | for (;;) |
2890 | { | { |
2891 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
2892 | if (*ptr == '#') | if (*ptr == CHAR_NUMBER_SIGN) |
2893 | { | { |
2894 | while (*(++ptr) != 0) | ptr++; |
2895 | while (*ptr != 0) | |
2896 | { | |
2897 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
2898 | ptr++; | |
2899 | #ifdef SUPPORT_UTF8 | |
2900 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
2901 | #endif | |
2902 | } | |
2903 | } | } |
2904 | else break; | else break; |
2905 | } | } |
# | Line 2116 if ((options & PCRE_EXTENDED) != 0) | Line 2907 if ((options & PCRE_EXTENDED) != 0) |
2907 | ||
2908 | /* If the next thing is itself optional, we have to give up. */ | /* If the next thing is itself optional, we have to give up. */ |
2909 | ||
2910 | if (*ptr == '*' || *ptr == '?' || strncmp((char *)ptr, "{0,", 3) == 0) | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || |
2911 | return FALSE; | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) |
2912 | return FALSE; | |
/* Now compare the next item with the previous opcode. If the previous is a | ||
positive single character match, "item" either contains the character or, if | ||
"item" is greater than 127 in utf8 mode, the character's bytes are in | ||
utf8_char. */ | ||
2913 | ||
2914 | /* Handle cases when the next item is a character. */ | /* Now compare the next item with the previous opcode. First, handle cases when |
2915 | the next item is a character. */ | |
2916 | ||
2917 | if (next >= 0) switch(op_code) | if (next >= 0) switch(op_code) |
2918 | { | { |
2919 | case OP_CHAR: | case OP_CHAR: |
2920 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
2921 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
2922 | #else | |
2923 | c = *previous; | |
2924 | #endif | #endif |
2925 | return item != next; | return c != next; |
2926 | ||
2927 | /* For CHARNC (caseless character) we must check the other case. If we have | /* For CHARI (caseless character) we must check the other case. If we have |
2928 | Unicode property support, we can use it to test the other case of | Unicode property support, we can use it to test the other case of |
2929 | high-valued characters. */ | high-valued characters. */ |
2930 | ||
2931 | case OP_CHARNC: | case OP_CHARI: |
2932 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
2933 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
2934 | #else | |
2935 | c = *previous; | |
2936 | #endif | #endif |
2937 | if (item == next) return FALSE; | if (c == next) return FALSE; |
2938 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
2939 | if (utf8) | if (utf8) |
2940 | { | { |
2941 | unsigned int othercase; | unsigned int othercase; |
2942 | if (next < 128) othercase = cd->fcc[next]; else | if (next < 128) othercase = cd->fcc[next]; else |
2943 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
2944 | othercase = _pcre_ucp_othercase((unsigned int)next); | othercase = UCD_OTHERCASE((unsigned int)next); |
2945 | #else | #else |
2946 | othercase = NOTACHAR; | othercase = NOTACHAR; |
2947 | #endif | #endif |
2948 | return (unsigned int)item != othercase; | return (unsigned int)c != othercase; |
2949 | } | } |
2950 | else | else |
2951 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF8 */ |
2952 | return (item != cd->fcc[next]); /* Non-UTF-8 mode */ | return (c != cd->fcc[next]); /* Non-UTF-8 mode */ |
2953 | ||
2954 | /* For OP_NOT, "item" must be a single-byte character. */ | /* For OP_NOT and OP_NOTI, the data is always a single-byte character. These |
2955 | opcodes are not used for multi-byte characters, because they are coded using | |
2956 | an XCLASS instead. */ | |
2957 | ||
2958 | case OP_NOT: | case OP_NOT: |
2959 | if (item == next) return TRUE; | return (c = *previous) == next; |
2960 | if ((options & PCRE_CASELESS) == 0) return FALSE; | |
2961 | case OP_NOTI: | |
2962 | if ((c = *previous) == next) return TRUE; | |
2963 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
2964 | if (utf8) | if (utf8) |
2965 | { | { |
2966 | unsigned int othercase; | unsigned int othercase; |
2967 | if (next < 128) othercase = cd->fcc[next]; else | if (next < 128) othercase = cd->fcc[next]; else |
2968 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
2969 | othercase = _pcre_ucp_othercase(next); | othercase = UCD_OTHERCASE(next); |
2970 | #else | #else |
2971 | othercase = NOTACHAR; | othercase = NOTACHAR; |
2972 | #endif | #endif |
2973 | return (unsigned int)item == othercase; | return (unsigned int)c == othercase; |
2974 | } | } |
2975 | else | else |
2976 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF8 */ |
2977 | return (item == cd->fcc[next]); /* Non-UTF-8 mode */ | return (c == cd->fcc[next]); /* Non-UTF-8 mode */ |
2978 | ||
2979 | /* Note that OP_DIGIT etc. are generated only when PCRE_UCP is *not* set. | |
2980 | When it is set, \d etc. are converted into OP_(NOT_)PROP codes. */ | |
2981 | ||
2982 | case OP_DIGIT: | case OP_DIGIT: |
2983 | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; |
# | Line 2222 if (next >= 0) switch(op_code) | Line 3020 if (next >= 0) switch(op_code) |
3020 | case 0x202f: | case 0x202f: |
3021 | case 0x205f: | case 0x205f: |
3022 | case 0x3000: | case 0x3000: |
3023 | return op_code != OP_HSPACE; | return op_code == OP_NOT_HSPACE; |
3024 | default: | default: |
3025 | return op_code == OP_HSPACE; | return op_code != OP_NOT_HSPACE; |
3026 | } | } |
3027 | ||
3028 | case OP_ANYNL: | |
3029 | case OP_VSPACE: | case OP_VSPACE: |
3030 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
3031 | switch(next) | switch(next) |
# | Line 2238 if (next >= 0) switch(op_code) | Line 3037 if (next >= 0) switch(op_code) |
3037 | case 0x85: | case 0x85: |
3038 | case 0x2028: | case 0x2028: |
3039 | case 0x2029: | case 0x2029: |
3040 | return op_code != OP_VSPACE; | return op_code == OP_NOT_VSPACE; |
3041 | default: | default: |
3042 | return op_code == OP_VSPACE; | return op_code != OP_NOT_VSPACE; |
3043 | } | } |
3044 | ||
3045 | #ifdef SUPPORT_UCP | |
3046 | case OP_PROP: | |
3047 | return check_char_prop(next, previous[0], previous[1], FALSE); | |
3048 | ||
3049 | case OP_NOTPROP: | |
3050 | return check_char_prop(next, previous[0], previous[1], TRUE); | |
3051 | #endif | |
3052 | ||
3053 | default: | default: |
3054 | return FALSE; | return FALSE; |
3055 | } | } |
3056 | ||
3057 | ||
3058 | /* Handle the case when the next item is \d, \s, etc. */ | /* Handle the case when the next item is \d, \s, etc. Note that when PCRE_UCP |
3059 | is set, \d turns into ESC_du rather than ESC_d, etc., so ESC_d etc. are | |
3060 | generated only when PCRE_UCP is *not* set, that is, when only ASCII | |
3061 | characteristics are recognized. Similarly, the opcodes OP_DIGIT etc. are | |
3062 | replaced by OP_PROP codes when PCRE_UCP is set. */ | |
3063 | ||
3064 | switch(op_code) | switch(op_code) |
3065 | { | { |
3066 | case OP_CHAR: | case OP_CHAR: |
3067 | case OP_CHARNC: | case OP_CHARI: |
3068 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
3069 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
3070 | #else | |
3071 | c = *previous; | |
3072 | #endif | #endif |
3073 | switch(-next) | switch(-next) |
3074 | { | { |
3075 | case ESC_d: | case ESC_d: |
3076 | return item > 127 || (cd->ctypes[item] & ctype_digit) == 0; | return c > 127 || (cd->ctypes[c] & ctype_digit) == 0; |
3077 | ||
3078 | case ESC_D: | case ESC_D: |
3079 | return item <= 127 && (cd->ctypes[item] & ctype_digit) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_digit) != 0; |
3080 | ||
3081 | case ESC_s: | case ESC_s: |
3082 | return item > 127 || (cd->ctypes[item] & ctype_space) == 0; | return c > 127 || (cd->ctypes[c] & ctype_space) == 0; |
3083 | ||
3084 | case ESC_S: | case ESC_S: |
3085 | return item <= 127 && (cd->ctypes[item] & ctype_space) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_space) != 0; |
3086 | ||
3087 | case ESC_w: | case ESC_w: |
3088 | return item > 127 || (cd->ctypes[item] & ctype_word) == 0; | return c > 127 || (cd->ctypes[c] & ctype_word) == 0; |
3089 | ||
3090 | case ESC_W: | case ESC_W: |
3091 | return item <= 127 && (cd->ctypes[item] & ctype_word) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_word) != 0; |
3092 | ||
3093 | case ESC_h: | case ESC_h: |
3094 | case ESC_H: | case ESC_H: |
3095 | switch(item) | switch(c) |
3096 | { | { |
3097 | case 0x09: | case 0x09: |
3098 | case 0x20: | case 0x20: |
# | Line 2307 switch(op_code) | Line 3120 switch(op_code) |
3120 | ||
3121 | case ESC_v: | case ESC_v: |
3122 | case ESC_V: | case ESC_V: |
3123 | switch(item) | switch(c) |
3124 | { | { |
3125 | case 0x0a: | case 0x0a: |
3126 | case 0x0b: | case 0x0b: |
# | Line 2321 switch(op_code) | Line 3134 switch(op_code) |
3134 | return -next == ESC_v; | return -next == ESC_v; |
3135 | } | } |
3136 | ||
3137 | /* When PCRE_UCP is set, these values get generated for \d etc. Find | |
3138 | their substitutions and process them. The result will always be either | |
3139 | -ESC_p or -ESC_P. Then fall through to process those values. */ | |
3140 | ||
3141 | #ifdef SUPPORT_UCP | |
3142 | case ESC_du: | |
3143 | case ESC_DU: | |
3144 | case ESC_wu: | |
3145 | case ESC_WU: | |
3146 | case ESC_su: | |
3147 | case ESC_SU: | |
3148 | { | |
3149 | int temperrorcode = 0; | |
3150 | ptr = substitutes[-next - ESC_DU]; | |
3151 | next = check_escape(&ptr, &temperrorcode, 0, options, FALSE); | |
3152 | if (temperrorcode != 0) return FALSE; | |
3153 | ptr++; /* For compatibility */ | |
3154 | } | |
3155 | /* Fall through */ | |
3156 | ||
3157 | case ESC_p: | |
3158 | case ESC_P: | |
3159 | { | |
3160 | int ptype, pdata, errorcodeptr; | |
3161 | BOOL negated; | |
3162 | ||
3163 | ptr--; /* Make ptr point at the p or P */ | |
3164 | ptype = get_ucp(&ptr, &negated, &pdata, &errorcodeptr); | |
3165 | if (ptype < 0) return FALSE; | |
3166 | ptr++; /* Point past the final curly ket */ | |
3167 | ||
3168 | /* If the property item is optional, we have to give up. (When generated | |
3169 | from \d etc by PCRE_UCP, this test will have been applied much earlier, | |
3170 | to the original \d etc. At this point, ptr will point to a zero byte. */ | |
3171 | ||
3172 | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || | |
3173 | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) | |
3174 | return FALSE; | |
3175 | ||
3176 | /* Do the property check. */ | |
3177 | ||
3178 | return check_char_prop(c, ptype, pdata, (next == -ESC_P) != negated); | |
3179 | } | |
3180 | #endif | |
3181 | ||
3182 | default: | default: |
3183 | return FALSE; | return FALSE; |
3184 | } | } |
3185 | ||
3186 | /* In principle, support for Unicode properties should be integrated here as | |
3187 | well. It means re-organizing the above code so as to get hold of the property | |
3188 | values before switching on the op-code. However, I wonder how many patterns | |
3189 | combine ASCII \d etc with Unicode properties? (Note that if PCRE_UCP is set, | |
3190 | these op-codes are never generated.) */ | |
3191 | ||
3192 | case OP_DIGIT: | case OP_DIGIT: |
3193 | return next == -ESC_D || next == -ESC_s || next == -ESC_W || | return next == -ESC_D || next == -ESC_s || next == -ESC_W || |
3194 | next == -ESC_h || next == -ESC_v; | next == -ESC_h || next == -ESC_v || next == -ESC_R; |
3195 | ||
3196 | case OP_NOT_DIGIT: | case OP_NOT_DIGIT: |
3197 | return next == -ESC_d; | return next == -ESC_d; |
3198 | ||
3199 | case OP_WHITESPACE: | case OP_WHITESPACE: |
3200 | return next == -ESC_S || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_d || next == -ESC_w || next == -ESC_R; |
3201 | ||
3202 | case OP_NOT_WHITESPACE: | case OP_NOT_WHITESPACE: |
3203 | return next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_s || next == -ESC_h || next == -ESC_v; |
3204 | ||
3205 | case OP_HSPACE: | case OP_HSPACE: |
3206 | return next == -ESC_S || next == -ESC_H || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_H || next == -ESC_d || |
3207 | next == -ESC_w || next == -ESC_v || next == -ESC_R; | |
3208 | ||
3209 | case OP_NOT_HSPACE: | case OP_NOT_HSPACE: |
3210 | return next == -ESC_h; | return next == -ESC_h; |
3211 | ||
3212 | /* Can't have \S in here because VT matches \S (Perl anomaly) */ | /* Can't have \S in here because VT matches \S (Perl anomaly) */ |
3213 | case OP_ANYNL: | |
3214 | case OP_VSPACE: | case OP_VSPACE: |
3215 | return next == -ESC_V || next == -ESC_d || next == -ESC_w; | return next == -ESC_V || next == -ESC_d || next == -ESC_w; |
3216 | ||
3217 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
3218 | return next == -ESC_v; | return next == -ESC_v || next == -ESC_R; |
3219 | ||
3220 | case OP_WORDCHAR: | case OP_WORDCHAR: |
3221 | return next == -ESC_W || next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_W || next == -ESC_s || next == -ESC_h || |
3222 | next == -ESC_v || next == -ESC_R; | |
3223 | ||
3224 | case OP_NOT_WORDCHAR: | case OP_NOT_WORDCHAR: |
3225 | return next == -ESC_w || next == -ESC_d; | return next == -ESC_w || next == -ESC_d; |
# | Line 2384 Arguments: | Line 3251 Arguments: |
3251 | firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) | firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) |
3252 | reqbyteptr set to the last literal character required, else < 0 | reqbyteptr set to the last literal character required, else < 0 |
3253 | bcptr points to current branch chain | bcptr points to current branch chain |
3254 | cond_depth conditional nesting depth | |
3255 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
3256 | lengthptr NULL during the real compile phase | lengthptr NULL during the real compile phase |
3257 | points to length accumulator during pre-compile phase | points to length accumulator during pre-compile phase |
# | Line 2395 Returns: TRUE on success | Line 3263 Returns: TRUE on success |
3263 | static BOOL | static BOOL |
3264 | compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr, | compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr, |
3265 | int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, | int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, |
3266 | compile_data *cd, int *lengthptr) | int cond_depth, compile_data *cd, int *lengthptr) |
3267 | { | { |
3268 | int repeat_type, op_type; | int repeat_type, op_type; |
3269 | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ |
# | Line 2404 int greedy_default, greedy_non_default; | Line 3272 int greedy_default, greedy_non_default; |
3272 | int firstbyte, reqbyte; | int firstbyte, reqbyte; |
3273 | int zeroreqbyte, zerofirstbyte; | int zeroreqbyte, zerofirstbyte; |
3274 | int req_caseopt, reqvary, tempreqvary; | int req_caseopt, reqvary, tempreqvary; |
3275 | int options = *optionsptr; | int options = *optionsptr; /* May change dynamically */ |
3276 | int after_manual_callout = 0; | int after_manual_callout = 0; |
3277 | int length_prevgroup = 0; | int length_prevgroup = 0; |
3278 | register int c; | register int c; |
# | Line 2416 BOOL inescq = FALSE; | Line 3284 BOOL inescq = FALSE; |
3284 | BOOL groupsetfirstbyte = FALSE; | BOOL groupsetfirstbyte = FALSE; |
3285 | const uschar *ptr = *ptrptr; | const uschar *ptr = *ptrptr; |
3286 | const uschar *tempptr; | const uschar *tempptr; |
3287 | const uschar *nestptr = NULL; | |
3288 | uschar *previous = NULL; | uschar *previous = NULL; |
3289 | uschar *previous_callout = NULL; | uschar *previous_callout = NULL; |
3290 | uschar *save_hwm = NULL; | uschar *save_hwm = NULL; |
3291 | uschar classbits[32]; | uschar classbits[32]; |
3292 | ||
3293 | /* We can fish out the UTF-8 setting once and for all into a BOOL, but we | |
3294 | must not do this for other options (e.g. PCRE_EXTENDED) because they may change | |
3295 | dynamically as we process the pattern. */ | |
3296 | ||
3297 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
3298 | BOOL class_utf8; | BOOL class_utf8; |
3299 | BOOL utf8 = (options & PCRE_UTF8) != 0; | BOOL utf8 = (options & PCRE_UTF8) != 0; |
# | Line 2429 uschar *class_utf8data_base; | Line 3302 uschar *class_utf8data_base; |
3302 | uschar utf8_char[6]; | uschar utf8_char[6]; |
3303 | #else | #else |
3304 | BOOL utf8 = FALSE; | BOOL utf8 = FALSE; |
uschar *utf8_char = NULL; | ||
3305 | #endif | #endif |
3306 | ||
3307 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
3308 | if (lengthptr != NULL) DPRINTF((">> start branch\n")); | if (lengthptr != NULL) DPRINTF((">> start branch\n")); |
3309 | #endif | #endif |
3310 | ||
# | Line 2480 for (;; ptr++) | Line 3352 for (;; ptr++) |
3352 | int subfirstbyte; | int subfirstbyte; |
3353 | int terminator; | int terminator; |
3354 | int mclength; | int mclength; |
3355 | int tempbracount; | |
3356 | uschar mcbuffer[8]; | uschar mcbuffer[8]; |
3357 | ||
3358 | /* Get next byte in the pattern */ | /* Get next byte in the pattern */ |
3359 | ||
3360 | c = *ptr; | c = *ptr; |
3361 | ||
3362 | /* If we are at the end of a nested substitution, revert to the outer level | |
3363 | string. Nesting only happens one level deep. */ | |
3364 | ||
3365 | if (c == 0 && nestptr != NULL) | |
3366 | { | |
3367 | ptr = nestptr; | |
3368 | nestptr = NULL; | |
3369 | c = *ptr; | |
3370 | } | |
3371 | ||
3372 | /* If we are in the pre-compile phase, accumulate the length used for the | /* If we are in the pre-compile phase, accumulate the length used for the |
3373 | previous cycle of this loop. */ | previous cycle of this loop. */ |
3374 | ||
3375 | if (lengthptr != NULL) | if (lengthptr != NULL) |
3376 | { | { |
3377 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
3378 | if (code > cd->hwm) cd->hwm = code; /* High water info */ | if (code > cd->hwm) cd->hwm = code; /* High water info */ |
3379 | #endif | #endif |
3380 | if (code > cd->start_workspace + COMPILE_WORK_SIZE) /* Check for overrun */ | if (code > cd->start_workspace + cd->workspace_size - |
3381 | WORK_SIZE_SAFETY_MARGIN) /* Check for overrun */ | |
3382 | { | { |
3383 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
3384 | goto FAILED; | goto FAILED; |
# | Line 2516 for (;; ptr++) | Line 3400 for (;; ptr++) |
3400 | goto FAILED; | goto FAILED; |
3401 | } | } |
3402 | ||
3403 | *lengthptr += code - last_code; | *lengthptr += (int)(code - last_code); |
3404 | DPRINTF(("length=%d added %d c=%c\n", *lengthptr, code - last_code, c)); | DPRINTF(("length=%d added %d c=%c\n", *lengthptr, (int)(code - last_code), |
3405 | c)); | |
3406 | ||
3407 | /* If "previous" is set and it is not at the start of the work space, move | /* If "previous" is set and it is not at the start of the work space, move |
3408 | it back to there, in order to avoid filling up the work space. Otherwise, | it back to there, in order to avoid filling up the work space. Otherwise, |
# | Line 2543 for (;; ptr++) | Line 3428 for (;; ptr++) |
3428 | /* In the real compile phase, just check the workspace used by the forward | /* In the real compile phase, just check the workspace used by the forward |
3429 | reference list. */ | reference list. */ |
3430 | ||
3431 | else if (cd->hwm > cd->start_workspace + COMPILE_WORK_SIZE) | else if (cd->hwm > cd->start_workspace + cd->workspace_size - |
3432 | WORK_SIZE_SAFETY_MARGIN) | |
3433 | { | { |
3434 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
3435 | goto FAILED; | goto FAILED; |
# | Line 2553 for (;; ptr++) | Line 3439 for (;; ptr++) |
3439 | ||
3440 | if (inescq && c != 0) | if (inescq && c != 0) |
3441 | { | { |
3442 | if (c == '\\' && ptr[1] == 'E') | if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E) |
3443 | { | { |
3444 | inescq = FALSE; | inescq = FALSE; |
3445 | ptr++; | ptr++; |
# | Line 2579 for (;; ptr++) | Line 3465 for (;; ptr++) |
3465 | /* Fill in length of a previous callout, except when the next thing is | /* Fill in length of a previous callout, except when the next thing is |
3466 | a quantifier. */ | a quantifier. */ |
3467 | ||
3468 | is_quantifier = c == '*' || c == '+' || c == '?' || | is_quantifier = |
3469 | (c == '{' && is_counted_repeat(ptr+1)); | c == CHAR_ASTERISK || c == CHAR_PLUS || c == CHAR_QUESTION_MARK || |
3470 | (c == CHAR_LEFT_CURLY_BRACKET && is_counted_repeat(ptr+1)); | |
3471 | ||
3472 | if (!is_quantifier && previous_callout != NULL && | if (!is_quantifier && previous_callout != NULL && |
3473 | after_manual_callout-- <= 0) | after_manual_callout-- <= 0) |
# | Line 2590 for (;; ptr++) | Line 3477 for (;; ptr++) |
3477 | previous_callout = NULL; | previous_callout = NULL; |
3478 | } | } |
3479 | ||
3480 | /* In extended mode, skip white space and comments */ | /* In extended mode, skip white space and comments. */ |
3481 | ||
3482 | if ((options & PCRE_EXTENDED) != 0) | if ((options & PCRE_EXTENDED) != 0) |
3483 | { | { |
3484 | if ((cd->ctypes[c] & ctype_space) != 0) continue; | if ((cd->ctypes[c] & ctype_space) != 0) continue; |
3485 | if (c == '#') | if (c == CHAR_NUMBER_SIGN) |
3486 | { | { |
3487 | while (*(++ptr) != 0) | ptr++; |
3488 | while (*ptr != 0) | |
3489 | { | { |
3490 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } |
3491 | ptr++; | |
3492 | #ifdef SUPPORT_UTF8 | |
3493 | if (utf8) while ((*ptr & 0xc0) == 0x80) ptr++; | |
3494 | #endif | |
3495 | } | } |
3496 | if (*ptr != 0) continue; | if (*ptr != 0) continue; |
3497 | ||
# | Line 2620 for (;; ptr++) | Line 3512 for (;; ptr++) |
3512 | { | { |
3513 | /* ===================================================================*/ | /* ===================================================================*/ |
3514 | case 0: /* The branch terminates at string end */ | case 0: /* The branch terminates at string end */ |
3515 | case '|': /* or | or ) */ | case CHAR_VERTICAL_LINE: /* or | or ) */ |
3516 | case ')': | case CHAR_RIGHT_PARENTHESIS: |
3517 | *firstbyteptr = firstbyte; | *firstbyteptr = firstbyte; |
3518 | *reqbyteptr = reqbyte; | *reqbyteptr = reqbyte; |
3519 | *codeptr = code; | *codeptr = code; |
# | Line 2633 for (;; ptr++) | Line 3525 for (;; ptr++) |
3525 | *errorcodeptr = ERR20; | *errorcodeptr = ERR20; |
3526 | goto FAILED; | goto FAILED; |
3527 | } | } |
3528 | *lengthptr += code - last_code; /* To include callout length */ | *lengthptr += (int)(code - last_code); /* To include callout length */ |
3529 | DPRINTF((">> end branch\n")); | DPRINTF((">> end branch\n")); |
3530 | } | } |
3531 | return TRUE; | return TRUE; |
# | Line 2643 for (;; ptr++) | Line 3535 for (;; ptr++) |
3535 | /* Handle single-character metacharacters. In multiline mode, ^ disables | /* Handle single-character metacharacters. In multiline mode, ^ disables |
3536 | the setting of any following char as a first character. */ | the setting of any following char as a first character. */ |
3537 | ||
3538 | case '^': | case CHAR_CIRCUMFLEX_ACCENT: |
3539 | previous = NULL; | |
3540 | if ((options & PCRE_MULTILINE) != 0) | if ((options & PCRE_MULTILINE) != 0) |
3541 | { | { |
3542 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
3543 | *code++ = OP_CIRCM; | |
3544 | } | } |
3545 | previous = NULL; | else *code++ = OP_CIRC; |
*code++ = OP_CIRC; | ||
3546 | break; | break; |
3547 | ||
3548 | case '$': | case CHAR_DOLLAR_SIGN: |
3549 | previous = NULL; | previous = NULL; |
3550 | *code++ = OP_DOLL; | *code++ = ((options & PCRE_MULTILINE) != 0)? OP_DOLLM : OP_DOLL; |
3551 | break; | break; |
3552 | ||
3553 | /* There can never be a first char if '.' is first, whatever happens about | /* There can never be a first char if '.' is first, whatever happens about |
3554 | repeats. The value of reqbyte doesn't change either. */ | repeats. The value of reqbyte doesn't change either. */ |
3555 | ||
3556 | case '.': | case CHAR_DOT: |
3557 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
3558 | zerofirstbyte = firstbyte; | zerofirstbyte = firstbyte; |
3559 | zeroreqbyte = reqbyte; | zeroreqbyte = reqbyte; |
3560 | previous = code; | previous = code; |
3561 | *code++ = OP_ANY; | *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; |
3562 | break; | break; |
3563 | ||
3564 | ||
# | Line 2680 for (;; ptr++) | Line 3573 for (;; ptr++) |
3573 | opcode is compiled. It may optionally have a bit map for characters < 256, | opcode is compiled. It may optionally have a bit map for characters < 256, |
3574 | but those above are are explicitly listed afterwards. A flag byte tells | but those above are are explicitly listed afterwards. A flag byte tells |
3575 | whether the bitmap is present, and whether this is a negated class or not. | whether the bitmap is present, and whether this is a negated class or not. |
3576 | ||
3577 | In JavaScript compatibility mode, an isolated ']' causes an error. In | In JavaScript compatibility mode, an isolated ']' causes an error. In |
3578 | default (Perl) mode, it is treated as a data character. */ | default (Perl) mode, it is treated as a data character. */ |
3579 | ||
3580 | case ']': | case CHAR_RIGHT_SQUARE_BRACKET: |
3581 | if ((cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) | if ((cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) |
3582 | { | { |
3583 | *errorcodeptr = ERR64; | *errorcodeptr = ERR64; |
3584 | goto FAILED; | goto FAILED; |
3585 | } | } |
3586 | goto NORMAL_CHAR; | goto NORMAL_CHAR; |
3587 | ||
3588 | case '[': | case CHAR_LEFT_SQUARE_BRACKET: |
3589 | previous = code; | previous = code; |
3590 | ||
3591 | /* PCRE supports POSIX class stuff inside a class. Perl gives an error if | /* PCRE supports POSIX class stuff inside a class. Perl gives an error if |
3592 | they are encountered at the top level, so we'll do that too. */ | they are encountered at the top level, so we'll do that too. */ |
3593 | ||
3594 | if ((ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && | if ((ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || |
3595 | ptr[1] == CHAR_EQUALS_SIGN) && | |
3596 | check_posix_syntax(ptr, &tempptr)) | check_posix_syntax(ptr, &tempptr)) |
3597 | { | { |
3598 | *errorcodeptr = (ptr[1] == ':')? ERR13 : ERR31; | *errorcodeptr = (ptr[1] == CHAR_COLON)? ERR13 : ERR31; |
3599 | goto FAILED; | goto FAILED; |
3600 | } | } |
3601 | ||
# | Line 2713 for (;; ptr++) | Line 3607 for (;; ptr++) |
3607 | for (;;) | for (;;) |
3608 | { | { |
3609 | c = *(++ptr); | c = *(++ptr); |
3610 | if (c == '\\') | if (c == CHAR_BACKSLASH) |
3611 | { | { |
3612 | if (ptr[1] == 'E') ptr++; | if (ptr[1] == CHAR_E) |
3613 | else if (strncmp((const char *)ptr+1, "Q\\E", 3) == 0) ptr += 3; | ptr++; |
3614 | else break; | else if (strncmp((const char *)ptr+1, |
3615 | STR_Q STR_BACKSLASH STR_E, 3) == 0) | |
3616 | ptr += 3; | |
3617 | else | |
3618 | break; | |
3619 | } | } |
3620 | else if (!negate_class && c == '^') | else if (!negate_class && c == CHAR_CIRCUMFLEX_ACCENT) |
3621 | negate_class = TRUE; | negate_class = TRUE; |
3622 | else break; | else break; |
3623 | } | } |
3624 | ||
3625 | /* Empty classes are allowed in JavaScript compatibility mode. Otherwise, | /* Empty classes are allowed in JavaScript compatibility mode. Otherwise, |
3626 | an initial ']' is taken as a data character -- the code below handles | an initial ']' is taken as a data character -- the code below handles |
3627 | that. In JS mode, [] must always fail, so generate OP_FAIL, whereas | that. In JS mode, [] must always fail, so generate OP_FAIL, whereas |
3628 | [^] must match any character, so generate OP_ALLANY. */ | [^] must match any character, so generate OP_ALLANY. */ |
3629 | ||
3630 | if (c ==']' && (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) | if (c == CHAR_RIGHT_SQUARE_BRACKET && |
3631 | (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) | |
3632 | { | { |
3633 | *code++ = negate_class? OP_ALLANY : OP_FAIL; | *code++ = negate_class? OP_ALLANY : OP_FAIL; |
3634 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
3635 | zerofirstbyte = firstbyte; | zerofirstbyte = firstbyte; |
3636 | break; | break; |
3637 | } | } |
3638 | ||
3639 | /* If a class contains a negative special such as \S, we need to flip the | /* If a class contains a negative special such as \S, we need to flip the |
3640 | negation flag at the end, so that support for characters > 255 works | negation flag at the end, so that support for characters > 255 works |
# | Line 2794 for (;; ptr++) | Line 3693 for (;; ptr++) |
3693 | ||
3694 | if (inescq) | if (inescq) |
3695 | { | { |
3696 | if (c == '\\' && ptr[1] == 'E') /* If we are at \E */ | if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E) /* If we are at \E */ |
3697 | { | { |
3698 | inescq = FALSE; /* Reset literal state */ | inescq = FALSE; /* Reset literal state */ |
3699 | ptr++; /* Skip the 'E' */ | ptr++; /* Skip the 'E' */ |
# | Line 2809 for (;; ptr++) | Line 3708 for (;; ptr++) |
3708 | [.ch.] and [=ch=] ("collating elements") and fault them, as Perl | [.ch.] and [=ch=] ("collating elements") and fault them, as Perl |
3709 | 5.6 and 5.8 do. */ | 5.6 and 5.8 do. */ |
3710 | ||
3711 | if (c == '[' && | if (c == CHAR_LEFT_SQUARE_BRACKET && |
3712 | (ptr[1] == ':' || ptr[1] == '.' || ptr[1] == '=') && | (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || |
3713 | check_posix_syntax(ptr, &tempptr)) | ptr[1] == CHAR_EQUALS_SIGN) && check_posix_syntax(ptr, &tempptr)) |
3714 | { | { |
3715 | BOOL local_negate = FALSE; | BOOL local_negate = FALSE; |
3716 | int posix_class, taboffset, tabopt; | int posix_class, taboffset, tabopt; |
3717 | register const uschar *cbits = cd->cbits; | register const uschar *cbits = cd->cbits; |
3718 | uschar pbits[32]; | uschar pbits[32]; |
3719 | ||
3720 | if (ptr[1] != ':') | if (ptr[1] != CHAR_COLON) |
3721 | { | { |
3722 | *errorcodeptr = ERR31; | *errorcodeptr = ERR31; |
3723 | goto FAILED; | goto FAILED; |
3724 | } | } |
3725 | ||
3726 | ptr += 2; | ptr += 2; |
3727 | if (*ptr == '^') | if (*ptr == CHAR_CIRCUMFLEX_ACCENT) |
3728 | { | { |
3729 | local_negate = TRUE; | local_negate = TRUE; |
3730 | should_flip_negation = TRUE; /* Note negative special */ | should_flip_negation = TRUE; /* Note negative special */ |
3731 | ptr++; | ptr++; |
3732 | } | } |
3733 | ||
3734 | posix_class = check_posix_name(ptr, tempptr - ptr); | posix_class = check_posix_name(ptr, (int)(tempptr - ptr)); |
3735 | if (posix_class < 0) | if (posix_class < 0) |
3736 | { | { |
3737 | *errorcodeptr = ERR30; | *errorcodeptr = ERR30; |
# | Line 2846 for (;; ptr++) | Line 3745 for (;; ptr++) |
3745 | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) |
3746 | posix_class = 0; | posix_class = 0; |
3747 | ||
3748 | /* We build the bit map for the POSIX class in a chunk of local store | /* When PCRE_UCP is set, some of the POSIX classes are converted to |
3749 | because we may be adding and subtracting from it, and we don't want to | different escape sequences that use Unicode properties. */ |
3750 | subtract bits that may be in the main map already. At the end we or the | |
3751 | result into the bit map that is being built. */ | #ifdef SUPPORT_UCP |
3752 | if ((options & PCRE_UCP) != 0) | |
3753 | { | |
3754 | int pc = posix_class + ((local_negate)? POSIX_SUBSIZE/2 : 0); | |
3755 | if (posix_substitutes[pc] != NULL) | |
3756 | { | |
3757 | nestptr = tempptr + 1; | |
3758 | ptr = posix_substitutes[pc] - 1; | |
3759 | continue; | |
3760 | } | |
3761 | } | |
3762 | #endif | |
3763 | /* In the non-UCP case, we build the bit map for the POSIX class in a | |
3764 | chunk of local store because we may be adding and subtracting from it, | |
3765 | and we don't want to subtract bits that may be in the main map already. | |
3766 | At the end we or the result into the bit map that is being built. */ | |
3767 | ||
3768 | posix_class *= 3; | posix_class *= 3; |
3769 | ||
# | Line 2893 for (;; ptr++) | Line 3807 for (;; ptr++) |
3807 | ||
3808 | /* Backslash may introduce a single character, or it may introduce one | /* Backslash may introduce a single character, or it may introduce one |
3809 | of the specials, which just set a flag. The sequence \b is a special | of the specials, which just set a flag. The sequence \b is a special |
3810 | case. Inside a class (and only there) it is treated as backspace. | case. Inside a class (and only there) it is treated as backspace. We |
3811 | Elsewhere it marks a word boundary. Other escapes have preset maps ready | assume that other escapes have more than one character in them, so set |
3812 | to 'or' into the one we are building. We assume they have more than one | class_charcount bigger than one. Unrecognized escapes fall through and |
3813 | character in them, so set class_charcount bigger than one. */ | are either treated as literal characters (by default), or are faulted if |
3814 | PCRE_EXTRA is set. */ | |
3815 | ||
3816 | if (c == '\\') | if (c == CHAR_BACKSLASH) |
3817 | { | { |
3818 | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
3819 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
3820 | ||
3821 | if (-c == ESC_b) c = '\b'; /* \b is backspace in a class */ | if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */ |
3822 | else if (-c == ESC_X) c = 'X'; /* \X is literal X in a class */ | else if (-c == ESC_N) /* \N is not supported in a class */ |
3823 | else if (-c == ESC_R) c = 'R'; /* \R is literal R in a class */ | { |
3824 | *errorcodeptr = ERR71; | |
3825 | goto FAILED; | |
3826 | } | |
3827 | else if (-c == ESC_Q) /* Handle start of quoted string */ | else if (-c == ESC_Q) /* Handle start of quoted string */ |
3828 | { | { |
3829 | if (ptr[1] == '\\' && ptr[2] == 'E') | if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) |
3830 | { | { |
3831 | ptr += 2; /* avoid empty string */ | ptr += 2; /* avoid empty string */ |
3832 | } | } |
# | Line 2922 for (;; ptr++) | Line 3840 for (;; ptr++) |
3840 | register const uschar *cbits = cd->cbits; | register const uschar *cbits = cd->cbits; |
3841 | class_charcount += 2; /* Greater than 1 is what matters */ | class_charcount += 2; /* Greater than 1 is what matters */ |
3842 | ||
3843 | /* Save time by not doing this in the pre-compile phase. */ | switch (-c) |
if (lengthptr == NULL) switch (-c) | ||
3844 | { | { |
3845 | #ifdef SUPPORT_UCP | |
3846 | case ESC_du: /* These are the values given for \d etc */ | |
3847 | case ESC_DU: /* when PCRE_UCP is set. We replace the */ | |
3848 | case ESC_wu: /* escape sequence with an appropriate \p */ | |
3849 | case ESC_WU: /* or \P to test Unicode properties instead */ | |
3850 | case ESC_su: /* of the default ASCII testing. */ | |
3851 | case ESC_SU: | |
3852 | nestptr = ptr; | |
3853 | ptr = substitutes[-c - ESC_DU] - 1; /* Just before substitute */ | |
3854 | class_charcount -= 2; /* Undo! */ | |
3855 | continue; | |
3856 | #endif | |
3857 | case ESC_d: | case ESC_d: |
3858 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; |
3859 | continue; | continue; |
# | Line 2944 for (;; ptr++) | Line 3872 for (;; ptr++) |
3872 | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
3873 | continue; | continue; |
3874 | ||
3875 | /* Perl 5.004 onwards omits VT from \s, but we must preserve it | |
3876 | if it was previously set by something earlier in the character | |
3877 | class. */ | |
3878 | ||
3879 | case ESC_s: | case ESC_s: |
3880 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | classbits[0] |= cbits[cbit_space]; |
3881 | classbits[1] &= ~0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= cbits[cbit_space+1] & ~0x08; |
3882 | for (c = 2; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | |
3883 | continue; | continue; |
3884 | ||
3885 | case ESC_S: | case ESC_S: |
# | Line 2955 for (;; ptr++) | Line 3888 for (;; ptr++) |
3888 | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
3889 | continue; | continue; |
3890 | ||
3891 | default: /* Not recognized; fall through */ | case ESC_h: |
break; /* Need "default" setting to stop compiler warning. */ | ||
} | ||
/* In the pre-compile phase, just do the recognition. */ | ||
else if (c == -ESC_d || c == -ESC_D || c == -ESC_w || | ||
c == -ESC_W || c == -ESC_s || c == -ESC_S) continue; | ||
/* We need to deal with \H, \h, \V, and \v in both phases because | ||
they use extra memory. */ | ||
if (-c == ESC_h) | ||
{ | ||
3892 | SETBIT(classbits, 0x09); /* VT */ | SETBIT(classbits, 0x09); /* VT */ |
3893 | SETBIT(classbits, 0x20); /* SPACE */ | SETBIT(classbits, 0x20); /* SPACE */ |
3894 | SETBIT(classbits, 0xa0); /* NSBP */ | SETBIT(classbits, 0xa0); /* NSBP */ |
# | Line 2992 for (;; ptr++) | Line 3912 for (;; ptr++) |
3912 | } | } |
3913 | #endif | #endif |
3914 | continue; | continue; |
} | ||
3915 | ||
3916 | if (-c == ESC_H) | case ESC_H: |
{ | ||
3917 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
3918 | { | { |
3919 | int x = 0xff; | int x = 0xff; |
# | Line 3037 for (;; ptr++) | Line 3955 for (;; ptr++) |
3955 | } | } |
3956 | #endif | #endif |
3957 | continue; | continue; |
} | ||
3958 | ||
3959 | if (-c == ESC_v) | case ESC_v: |
{ | ||
3960 | SETBIT(classbits, 0x0a); /* LF */ | SETBIT(classbits, 0x0a); /* LF */ |
3961 | SETBIT(classbits, 0x0b); /* VT */ | SETBIT(classbits, 0x0b); /* VT */ |
3962 | SETBIT(classbits, 0x0c); /* FF */ | SETBIT(classbits, 0x0c); /* FF */ |
# | Line 3056 for (;; ptr++) | Line 3972 for (;; ptr++) |
3972 | } | } |
3973 | #endif | #endif |
3974 | continue; | continue; |
} | ||
3975 | ||
3976 | if (-c == ESC_V) | case ESC_V: |
{ | ||
3977 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
3978 | { | { |
3979 | int x = 0xff; | int x = 0xff; |
# | Line 3089 for (;; ptr++) | Line 4003 for (;; ptr++) |
4003 | } | } |
4004 | #endif | #endif |
4005 | continue; | continue; |
} | ||
/* We need to deal with \P and \p in both phases. */ | ||
4006 | ||
4007 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
4008 | if (-c == ESC_p || -c == ESC_P) | case ESC_p: |
4009 | { | case ESC_P: |
4010 | BOOL negated; | { |
4011 | int pdata; | BOOL negated; |
4012 | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); | int pdata; |
4013 | if (ptype < 0) goto FAILED; | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); |
4014 | class_utf8 = TRUE; | if (ptype < 0) goto FAILED; |
4015 | *class_utf8data++ = ((-c == ESC_p) != negated)? | class_utf8 = TRUE; |
4016 | XCL_PROP : XCL_NOTPROP; | *class_utf8data++ = ((-c == ESC_p) != negated)? |
4017 | *class_utf8data++ = ptype; | XCL_PROP : XCL_NOTPROP; |
4018 | *class_utf8data++ = pdata; | *class_utf8data++ = ptype; |
4019 | class_charcount -= 2; /* Not a < 256 character */ | *class_utf8data++ = pdata; |
4020 | continue; | class_charcount -= 2; /* Not a < 256 character */ |
4021 | } | continue; |
4022 | } | |
4023 | #endif | #endif |
4024 | /* Unrecognized escapes are faulted if PCRE is running in its | /* Unrecognized escapes are faulted if PCRE is running in its |
4025 | strict mode. By default, for compatibility with Perl, they are | strict mode. By default, for compatibility with Perl, they are |
4026 | treated as literals. */ | treated as literals. */ |
4027 | ||
4028 | if ((options & PCRE_EXTRA) != 0) | default: |
4029 | { | if ((options & PCRE_EXTRA) != 0) |
4030 | *errorcodeptr = ERR7; | { |
4031 | goto FAILED; | *errorcodeptr = ERR7; |
4032 | goto FAILED; | |
4033 | } | |
4034 | class_charcount -= 2; /* Undo the default count from above */ | |
4035 | c = *ptr; /* Get the final character and fall through */ | |
4036 | break; | |
4037 | } | } |
class_charcount -= 2; /* Undo the default count from above */ | ||
c = *ptr; /* Get the final character and fall through */ | ||
4038 | } | } |
4039 | ||
4040 | /* Fall through if we have a single character (c >= 0). This may be | /* Fall through if we have a single character (c >= 0). This may be |
# | Line 3134 for (;; ptr++) | Line 4048 for (;; ptr++) |
4048 | entirely. The code for handling \Q and \E is messy. */ | entirely. The code for handling \Q and \E is messy. */ |
4049 | ||
4050 | CHECK_RANGE: | CHECK_RANGE: |
4051 | while (ptr[1] == '\\' && ptr[2] == 'E') | while (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) |
4052 | { | { |
4053 | inescq = FALSE; | inescq = FALSE; |
4054 | ptr += 2; | ptr += 2; |
# | Line 3144 for (;; ptr++) | Line 4058 for (;; ptr++) |
4058 | ||
4059 | /* Remember \r or \n */ | /* Remember \r or \n */ |
4060 | ||
4061 | if (c == '\r' || c == '\n') cd->external_flags |= PCRE_HASCRORLF; | if (c == CHAR_CR || c == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF; |
4062 | ||
4063 | /* Check for range */ | /* Check for range */ |
4064 | ||
4065 | if (!inescq && ptr[1] == '-') | if (!inescq && ptr[1] == CHAR_MINUS) |
4066 | { | { |
4067 | int d; | int d; |
4068 | ptr += 2; | ptr += 2; |
4069 | while (*ptr == '\\' && ptr[1] == 'E') ptr += 2; | while (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_E) ptr += 2; |
4070 | ||
4071 | /* If we hit \Q (not followed by \E) at this point, go into escaped | /* If we hit \Q (not followed by \E) at this point, go into escaped |
4072 | mode. */ | mode. */ |
4073 | ||
4074 | while (*ptr == '\\' && ptr[1] == 'Q') | while (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_Q) |
4075 | { | { |
4076 | ptr += 2; | ptr += 2; |
4077 | if (*ptr == '\\' && ptr[1] == 'E') { ptr += 2; continue; } | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_E) |
4078 | { ptr += 2; continue; } | |
4079 | inescq = TRUE; | inescq = TRUE; |
4080 | break; | break; |
4081 | } | } |
4082 | ||
4083 | if (*ptr == 0 || (!inescq && *ptr == ']')) | if (*ptr == 0 || (!inescq && *ptr == CHAR_RIGHT_SQUARE_BRACKET)) |
4084 | { | { |
4085 | ptr = oldptr; | ptr = oldptr; |
4086 | goto LONE_SINGLE_CHARACTER; | goto LONE_SINGLE_CHARACTER; |
# | Line 3184 for (;; ptr++) | Line 4099 for (;; ptr++) |
4099 | not any of the other escapes. Perl 5.6 treats a hyphen as a literal | not any of the other escapes. Perl 5.6 treats a hyphen as a literal |
4100 | in such circumstances. */ | in such circumstances. */ |
4101 | ||
4102 | if (!inescq && d == '\\') | if (!inescq && d == CHAR_BACKSLASH) |
4103 | { | { |
4104 | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
4105 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
4106 | ||
4107 | /* \b is backspace; \X is literal X; \R is literal R; any other | /* \b is backspace; any other special means the '-' was literal */ |
special means the '-' was literal */ | ||
4108 | ||
4109 | if (d < 0) | if (d < 0) |
4110 | { | { |
4111 | if (d == -ESC_b) d = '\b'; | if (d == -ESC_b) d = CHAR_BS; else |
else if (d == -ESC_X) d = 'X'; | ||
else if (d == -ESC_R) d = 'R'; else | ||
4112 | { | { |
4113 | ptr = oldptr; | ptr = oldptr; |
4114 | goto LONE_SINGLE_CHARACTER; /* A few lines below */ | goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
# | Line 3217 for (;; ptr++) | Line 4129 for (;; ptr++) |
4129 | ||
4130 | /* Remember \r or \n */ | /* Remember \r or \n */ |
4131 | ||
4132 | if (d == '\r' || d == '\n') cd->external_flags |= PCRE_HASCRORLF; | if (d == CHAR_CR || d == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF; |
4133 | ||
4134 | /* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless | /* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless |
4135 | matching, we have to use an XCLASS with extra data items. Caseless | matching, we have to use an XCLASS with extra data items. Caseless |
# | Line 3337 for (;; ptr++) | Line 4249 for (;; ptr++) |
4249 | if ((options & PCRE_CASELESS) != 0) | if ((options & PCRE_CASELESS) != 0) |
4250 | { | { |
4251 | unsigned int othercase; | unsigned int othercase; |
4252 | if ((othercase = _pcre_ucp_othercase(c)) != NOTACHAR) | if ((othercase = UCD_OTHERCASE(c)) != c) |
4253 | { | { |
4254 | *class_utf8data++ = XCL_SINGLE; | *class_utf8data++ = XCL_SINGLE; |
4255 | class_utf8data += _pcre_ord2utf8(othercase, class_utf8data); | class_utf8data += _pcre_ord2utf8(othercase, class_utf8data); |
# | Line 3362 for (;; ptr++) | Line 4274 for (;; ptr++) |
4274 | } | } |
4275 | } | } |
4276 | ||
4277 | /* Loop until ']' reached. This "while" is the end of the "do" above. */ | /* Loop until ']' reached. This "while" is the end of the "do" far above. |
4278 | If we are at the end of an internal nested string, revert to the outer | |
4279 | string. */ | |
4280 | ||
4281 | while (((c = *(++ptr)) != 0 || | |
4282 | (nestptr != NULL && | |
4283 | (ptr = nestptr, nestptr = NULL, c = *(++ptr)) != 0)) && | |
4284 | (c != CHAR_RIGHT_SQUARE_BRACKET || inescq)); | |
4285 | ||
4286 | while ((c = *(++ptr)) != 0 && (c != ']' || inescq)); | /* Check for missing terminating ']' */ |
4287 | ||
4288 | if (c == 0) /* Missing terminating ']' */ | if (c == 0) |
4289 | { | { |
4290 | *errorcodeptr = ERR6; | *errorcodeptr = ERR6; |
4291 | goto FAILED; | goto FAILED; |
4292 | } | } |
4293 | ||
/* This code has been disabled because it would mean that \s counts as | ||
an explicit \r or \n reference, and that's not really what is wanted. Now | ||
we set the flag only if there is a literal "\r" or "\n" in the class. */ | ||
#if 0 | ||
/* Remember whether \r or \n are in this class */ | ||
if (negate_class) | ||
{ | ||
if ((classbits[1] & 0x24) != 0x24) cd->external_flags |= PCRE_HASCRORLF; | ||
} | ||
else | ||
{ | ||
if ((classbits[1] & 0x24) != 0) cd->external_flags |= PCRE_HASCRORLF; | ||
} | ||
#endif | ||
4294 | /* If class_charcount is 1, we saw precisely one character whose value is | /* If class_charcount is 1, we saw precisely one character whose value is |
4295 | less than 256. As long as there were no characters >= 128 and there was no | less than 256. As long as there were no characters >= 128 and there was no |
4296 | use of \p or \P, in other words, no use of any XCLASS features, we can | use of \p or \P, in other words, no use of any XCLASS features, we can |
# | Line 3398 we set the flag only if there is a liter | Line 4298 we set the flag only if there is a liter |
4298 | ||
4299 | In UTF-8 mode, we can optimize the negative case only if there were no | In UTF-8 mode, we can optimize the negative case only if there were no |
4300 | characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR | characters >= 128 because OP_NOT and the related opcodes like OP_NOTSTAR |
4301 | operate on single-bytes only. This is an historical hangover. Maybe one day | operate on single-bytes characters only. This is an historical hangover. |
4302 | we can tidy these opcodes to handle multi-byte characters. | Maybe one day we can tidy these opcodes to handle multi-byte characters. |
4303 | ||
4304 | The optimization throws away the bit map. We turn the item into a | The optimization throws away the bit map. We turn the item into a |
4305 | 1-character OP_CHAR[NC] if it's positive, or OP_NOT if it's negative. Note | 1-character OP_CHAR[I] if it's positive, or OP_NOT[I] if it's negative. |
4306 | that OP_NOT does not support multibyte characters. In the positive case, it | Note that OP_NOT[I] does not support multibyte characters. In the positive |
4307 | can cause firstbyte to be set. Otherwise, there can be no first char if | case, it can cause firstbyte to be set. Otherwise, there can be no first |
4308 | this item is first, whatever repeat count may follow. In the case of | char if this item is first, whatever repeat count may follow. In the case |
4309 | reqbyte, save the previous value for reinstating. */ | of reqbyte, save the previous value for reinstating. */ |
4310 | ||
4311 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
4312 | if (class_charcount == 1 && !class_utf8 && | if (class_charcount == 1 && !class_utf8 && |
# | Line 3417 we set the flag only if there is a liter | Line 4317 we set the flag only if there is a liter |
4317 | { | { |
4318 | zeroreqbyte = reqbyte; | zeroreqbyte = reqbyte; |
4319 | ||
4320 | /* The OP_NOT opcode works on one-byte characters only. */ | /* The OP_NOT[I] opcodes work on one-byte characters only. */ |
4321 | ||
4322 | if (negate_class) | if (negate_class) |
4323 | { | { |
4324 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; |
4325 | zerofirstbyte = firstbyte; | zerofirstbyte = firstbyte; |
4326 | *code++ = OP_NOT; | *code++ = ((options & PCRE_CASELESS) != 0)? OP_NOTI: OP_NOT; |
4327 | *code++ = class_lastchar; | *code++ = class_lastchar; |
4328 | break; | break; |
4329 | } | } |
# | Line 3454 we set the flag only if there is a liter | Line 4354 we set the flag only if there is a liter |
4354 | ||
4355 | /* If there are characters with values > 255, we have to compile an | /* If there are characters with values > 255, we have to compile an |
4356 | extended class, with its own opcode, unless there was a negated special | extended class, with its own opcode, unless there was a negated special |
4357 | such as \S in the class, because in that case all characters > 255 are in | such as \S in the class, and PCRE_UCP is not set, because in that case all |
4358 | the class, so any that were explicitly given as well can be ignored. If | characters > 255 are in the class, so any that were explicitly given as |
4359 | (when there are explicit characters > 255 that must be listed) there are no | well can be ignored. If (when there are explicit characters > 255 that must |
4360 | characters < 256, we can omit the bitmap in the actual compiled code. */ | be listed) there are no characters < 256, we can omit the bitmap in the |
4361 | actual compiled code. */ | |
4362 | ||
4363 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
4364 | if (class_utf8 && !should_flip_negation) | if (class_utf8 && (!should_flip_negation || (options & PCRE_UCP) != 0)) |
4365 | { | { |
4366 | *class_utf8data++ = XCL_END; /* Marks the end of extra data */ | *class_utf8data++ = XCL_END; /* Marks the end of extra data */ |
4367 | *code++ = OP_XCLASS; | *code++ = OP_XCLASS; |
# | Line 3486 we set the flag only if there is a liter | Line 4387 we set the flag only if there is a liter |
4387 | } | } |
4388 | #endif | #endif |
4389 | ||
4390 | /* If there are no characters > 255, set the opcode to OP_CLASS or | /* If there are no characters > 255, or they are all to be included or |
4391 | OP_NCLASS, depending on whether the whole class was negated and whether | excluded, set the opcode to OP_CLASS or OP_NCLASS, depending on whether the |
4392 | there were negative specials such as \S in the class. Then copy the 32-byte | whole class was negated and whether there were negative specials such as \S |
4393 | map into the code vector, negating it if necessary. */ | (non-UCP) in the class. Then copy the 32-byte map into the code vector, |
4394 | negating it if necessary. */ | |
4395 | ||
4396 | *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; | *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS; |
4397 | if (negate_class) | if (negate_class) |
# | Line 3509 we set the flag only if there is a liter | Line 4411 we set the flag only if there is a liter |
4411 | /* Various kinds of repeat; '{' is not necessarily a quantifier, but this | /* Various kinds of repeat; '{' is not necessarily a quantifier, but this |
4412 | has been tested above. */ | has been tested above. */ |
4413 | ||
4414 | case '{': | case CHAR_LEFT_CURLY_BRACKET: |
4415 | if (!is_quantifier) goto NORMAL_CHAR; | if (!is_quantifier) goto NORMAL_CHAR; |
4416 | ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); | ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); |
4417 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
4418 | goto REPEAT; | goto REPEAT; |
4419 | ||
4420 | case '*': | case CHAR_ASTERISK: |
4421 | repeat_min = 0; | repeat_min = 0; |
4422 | repeat_max = -1; | repeat_max = -1; |
4423 | goto REPEAT; | goto REPEAT; |
4424 | ||
4425 | case '+': | case CHAR_PLUS: |
4426 | repeat_min = 1; | repeat_min = 1; |
4427 | repeat_max = -1; | repeat_max = -1; |
4428 | goto REPEAT; | goto REPEAT; |
4429 | ||
4430 | case '?': | case CHAR_QUESTION_MARK: |
4431 | repeat_min = 0; | repeat_min = 0; |
4432 | repeat_max = 1; | repeat_max = 1; |
4433 | ||
# | Line 3549 we set the flag only if there is a liter | Line 4451 we set the flag only if there is a liter |
4451 | op_type = 0; /* Default single-char op codes */ | op_type = 0; /* Default single-char op codes */ |
4452 | possessive_quantifier = FALSE; /* Default not possessive quantifier */ | possessive_quantifier = FALSE; /* Default not possessive quantifier */ |
4453 | ||
4454 | /* Save start of previous item, in case we have to move it up to make space | /* Save start of previous item, in case we have to move it up in order to |
4455 | for an inserted OP_ONCE for the additional '+' extension. */ | insert something before it. */ |
4456 | ||
4457 | tempcode = previous; | tempcode = previous; |
4458 | ||
# | Line 3560 we set the flag only if there is a liter | Line 4462 we set the flag only if there is a liter |
4462 | but if PCRE_UNGREEDY is set, it works the other way round. We change the | but if PCRE_UNGREEDY is set, it works the other way round. We change the |
4463 | repeat type to the non-default. */ | repeat type to the non-default. */ |
4464 | ||
4465 | if (ptr[1] == '+') | if (ptr[1] == CHAR_PLUS) |
4466 | { | { |
4467 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
4468 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
4469 | ptr++; | ptr++; |
4470 | } | } |
4471 | else if (ptr[1] == '?') | else if (ptr[1] == CHAR_QUESTION_MARK) |
4472 | { | { |
4473 | repeat_type = greedy_non_default; | repeat_type = greedy_non_default; |
4474 | ptr++; | ptr++; |
4475 | } | } |
4476 | else repeat_type = greedy_default; | else repeat_type = greedy_default; |
4477 | ||
4478 | /* If previous was a recursion call, wrap it in atomic brackets so that | |
4479 | previous becomes the atomic group. All recursions were so wrapped in the | |
4480 | past, but it no longer happens for non-repeated recursions. In fact, the | |
4481 | repeated ones could be re-implemented independently so as not to need this, | |
4482 | but for the moment we rely on the code for repeating groups. */ | |
4483 | ||
4484 | if (*previous == OP_RECURSE) | |
4485 | { | |
4486 | memmove(previous + 1 + LINK_SIZE, previous, 1 + LINK_SIZE); | |
4487 | *previous = OP_ONCE; | |
4488 | PUT(previous, 1, 2 + 2*LINK_SIZE); | |
4489 | previous[2 + 2*LINK_SIZE] = OP_KET; | |
4490 | PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE); | |
4491 | code += 2 + 2 * LINK_SIZE; | |
4492 | length_prevgroup = 3 + 3*LINK_SIZE; | |
4493 | ||
4494 | /* When actually compiling, we need to check whether this was a forward | |
4495 | reference, and if so, adjust the offset. */ | |
4496 | ||
4497 | if (lengthptr == NULL && cd->hwm >= cd->start_workspace + LINK_SIZE) | |
4498 | { | |
4499 | int offset = GET(cd->hwm, -LINK_SIZE); | |
4500 | if (offset == previous + 1 - cd->start_code) | |
4501 | PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE); | |
4502 | } | |
4503 | } | |
4504 | ||
4505 | /* Now handle repetition for the different types of item. */ | |
4506 | ||
4507 | /* If previous was a character match, abolish the item and generate a | /* If previous was a character match, abolish the item and generate a |
4508 | repeat item instead. If a char item has a minumum of more than one, ensure | repeat item instead. If a char item has a minumum of more than one, ensure |
4509 | that it is set in reqbyte - it might not be if a sequence such as x{3} is | that it is set in reqbyte - it might not be if a sequence such as x{3} is |
4510 | the first thing in a branch because the x will have gone into firstbyte | the first thing in a branch because the x will have gone into firstbyte |
4511 | instead. */ | instead. */ |
4512 | ||
4513 | if (*previous == OP_CHAR || *previous == OP_CHARNC) | if (*previous == OP_CHAR || *previous == OP_CHARI) |
4514 | { | { |
4515 | op_type = (*previous == OP_CHAR)? 0 : OP_STARI - OP_STAR; | |
4516 | ||
4517 | /* Deal with UTF-8 characters that take up more than one byte. It's | /* Deal with UTF-8 characters that take up more than one byte. It's |
4518 | easier to write this out separately than try to macrify it. Use c to | easier to write this out separately than try to macrify it. Use c to |
4519 | hold the length of the character in bytes, plus 0x80 to flag that it's a | hold the length of the character in bytes, plus 0x80 to flag that it's a |
# | Line 3613 we set the flag only if there is a liter | Line 4546 we set the flag only if there is a liter |
4546 | ||
4547 | if (!possessive_quantifier && | if (!possessive_quantifier && |
4548 | repeat_max < 0 && | repeat_max < 0 && |
4549 | check_auto_possessive(*previous, c, utf8, utf8_char, ptr + 1, | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
options, cd)) | ||
4550 | { | { |
4551 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
4552 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
# | Line 3626 we set the flag only if there is a liter | Line 4558 we set the flag only if there is a liter |
4558 | /* If previous was a single negated character ([^a] or similar), we use | /* If previous was a single negated character ([^a] or similar), we use |
4559 | one of the special opcodes, replacing it. The code is shared with single- | one of the special opcodes, replacing it. The code is shared with single- |
4560 | character repeats by setting opt_type to add a suitable offset into | character repeats by setting opt_type to add a suitable offset into |
4561 | repeat_type. We can also test for auto-possessification. OP_NOT is | repeat_type. We can also test for auto-possessification. OP_NOT and OP_NOTI |
4562 | currently used only for single-byte chars. */ | are currently used only for single-byte chars. */ |
4563 | ||
4564 | else if (*previous == OP_NOT) | else if (*previous == OP_NOT || *previous == OP_NOTI) |
4565 | { | { |
4566 | op_type = OP_NOTSTAR - OP_STAR; /* Use "not" opcodes */ | op_type = ((*previous == OP_NOT)? OP_NOTSTAR : OP_NOTSTARI) - OP_STAR; |
4567 | c = previous[1]; | c = previous[1]; |
4568 | if (!possessive_quantifier && | if (!possessive_quantifier && |
4569 | repeat_max < 0 && | repeat_max < 0 && |
4570 | check_auto_possessive(OP_NOT, c, utf8, NULL, ptr + 1, options, cd)) | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
4571 | { | { |
4572 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
4573 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
# | Line 3659 we set the flag only if there is a liter | Line 4591 we set the flag only if there is a liter |
4591 | ||
4592 | if (!possessive_quantifier && | if (!possessive_quantifier && |
4593 | repeat_max < 0 && | repeat_max < 0 && |
4594 | check_auto_possessive(c, 0, utf8, NULL, ptr + 1, options, cd)) | check_auto_possessive(previous, utf8, ptr + 1, options, cd)) |
4595 | { | { |
4596 | repeat_type = 0; /* Force greedy */ | repeat_type = 0; /* Force greedy */ |
4597 | possessive_quantifier = TRUE; | possessive_quantifier = TRUE; |
# | Line 3681 we set the flag only if there is a liter | Line 4613 we set the flag only if there is a liter |
4613 | ||
4614 | if (repeat_max == 0) goto END_REPEAT; | if (repeat_max == 0) goto END_REPEAT; |
4615 | ||
4616 | /*--------------------------------------------------------------------*/ | |
4617 | /* This code is obsolete from release 8.00; the restriction was finally | |
4618 | removed: */ | |
4619 | ||
4620 | /* All real repeats make it impossible to handle partial matching (maybe | /* All real repeats make it impossible to handle partial matching (maybe |
4621 | one day we will be able to remove this restriction). */ | one day we will be able to remove this restriction). */ |
4622 | ||
4623 | if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ |
4624 | /*--------------------------------------------------------------------*/ | |
4625 | ||
4626 | /* Combine the op_type with the repeat_type */ | /* Combine the op_type with the repeat_type */ |
4627 | ||
# | Line 3823 we set the flag only if there is a liter | Line 4760 we set the flag only if there is a liter |
4760 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF8 |
4761 | *previous == OP_XCLASS || | *previous == OP_XCLASS || |
4762 | #endif | #endif |
4763 | *previous == OP_REF) | *previous == OP_REF || |
4764 | *previous == OP_REFI) | |
4765 | { | { |
4766 | if (repeat_max == 0) | if (repeat_max == 0) |
4767 | { | { |
# | Line 3831 we set the flag only if there is a liter | Line 4769 we set the flag only if there is a liter |
4769 | goto END_REPEAT; | goto END_REPEAT; |
4770 | } | } |
4771 | ||
4772 | /*--------------------------------------------------------------------*/ | |
4773 | /* This code is obsolete from release 8.00; the restriction was finally | |
4774 | removed: */ | |
4775 | ||
4776 | /* All real repeats make it impossible to handle partial matching (maybe | /* All real repeats make it impossible to handle partial matching (maybe |
4777 | one day we will be able to remove this restriction). */ | one day we will be able to remove this restriction). */ |
4778 | ||
4779 | if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; | /* if (repeat_max != 1) cd->external_flags |= PCRE_NOPARTIAL; */ |
4780 | /*--------------------------------------------------------------------*/ | |
4781 | ||
4782 | if (repeat_min == 0 && repeat_max == -1) | if (repeat_min == 0 && repeat_max == -1) |
4783 | *code++ = OP_CRSTAR + repeat_type; | *code++ = OP_CRSTAR + repeat_type; |
# | Line 3852 we set the flag only if there is a liter | Line 4795 we set the flag only if there is a liter |
4795 | } | } |
4796 | ||
4797 | /* If previous was a bracket group, we may have to replicate it in certain | /* If previous was a bracket group, we may have to replicate it in certain |
4798 | cases. */ | cases. Note that at this point we can encounter only the "basic" bracket |
4799 | opcodes such as BRA and CBRA, as this is the place where they get converted | |
4800 | into the more special varieties such as BRAPOS and SBRA. A test for >= | |
4801 | OP_ASSERT and <= OP_COND includes ASSERT, ASSERT_NOT, ASSERTBACK, | |
4802 | ASSERTBACK_NOT, ONCE, BRA, CBRA, and COND. Originally, PCRE did not allow | |
4803 | repetition of assertions, but now it does, for Perl compatibility. */ | |
4804 | ||
4805 | else if (*previous == OP_BRA || *previous == OP_CBRA || | else if (*previous >= OP_ASSERT && *previous <= OP_COND) |
*previous == OP_ONCE || *previous == OP_COND) | ||
4806 | { | { |
4807 | register int i; | register int i; |
4808 | int ketoffset = 0; | int len = (int)(code - previous); |
int len = code - previous; | ||
4809 | uschar *bralink = NULL; | uschar *bralink = NULL; |
4810 | uschar *brazeroptr = NULL; | |
4811 | ||
4812 | /* Repeating a DEFINE group is pointless */ | /* Repeating a DEFINE group is pointless, but Perl allows the syntax, so |
4813 | we just ignore the repeat. */ | |
4814 | ||
4815 | if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) | if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF) |
4816 | { | goto END_REPEAT; |
*errorcodeptr = ERR55; | ||
goto FAILED; | ||
} | ||
4817 | ||
4818 | /* If the maximum repeat count is unlimited, find the end of the bracket | /* There is no sense in actually repeating assertions. The only potential |
4819 | by scanning through from the start, and compute the offset back to it | use of repetition is in cases when the assertion is optional. Therefore, |
4820 | from the current code pointer. There may be an OP_OPT setting following | if the minimum is greater than zero, just ignore the repeat. If the |
4821 | the final KET, so we can't find the end just by going back from the code | maximum is not not zero or one, set it to 1. */ |
4822 | pointer. */ | |
4823 | if (*previous < OP_ONCE) /* Assertion */ | |
4824 | if (repeat_max == -1) | { |
4825 | { | if (repeat_min > 0) goto END_REPEAT; |
4826 | register uschar *ket = previous; | if (repeat_max < 0 || repeat_max > 1) repeat_max = 1; |
do ket += GET(ket, 1); while (*ket != OP_KET); | ||
ketoffset = code - ket; | ||
4827 | } | } |
4828 | ||
4829 | /* The case of a zero minimum is special because of the need to stick | /* The case of a zero minimum is special because of the need to stick |
# | Line 3900 we set the flag only if there is a liter | Line 4843 we set the flag only if there is a liter |
4843 | ** code = previous; | ** code = previous; |
4844 | ** goto END_REPEAT; | ** goto END_REPEAT; |
4845 | ** } | ** } |
4846 | ||
4847 | However, that fails when a group is referenced as a subroutine from | However, that fails when a group or a subgroup within it is referenced |
4848 | elsewhere in the pattern, so now we stick in OP_SKIPZERO in front of it | as a subroutine from elsewhere in the pattern, so now we stick in |
4849 | so that it is skipped on execution. As we don't have a list of which | OP_SKIPZERO in front of it so that it is skipped on execution. As we |
4850 | groups are referenced, we cannot do this selectively. | don't have a list of which groups are referenced, we cannot do this |
4851 | selectively. | |
4852 | ||
4853 | If the maximum is 1 or unlimited, we just have to stick in the BRAZERO | If the maximum is 1 or unlimited, we just have to stick in the BRAZERO |
4854 | and do no more at this point. However, we do need to adjust any | and do no more at this point. However, we do need to adjust any |
# | Line 3923 we set the flag only if there is a liter | Line 4867 we set the flag only if there is a liter |
4867 | { | { |
4868 | *previous++ = OP_SKIPZERO; | *previous++ = OP_SKIPZERO; |