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