Parent Directory
|
Revision Log
|
Patch
| revision 392 by ph10, Tue Mar 17 21:30:30 2009 UTC | revision 836 by ph10, Wed Dec 28 17:16:11 2011 UTC | |
|---|---|---|
| # | Line 6 | Line 6 |
| 6 | and semantics are as close as possible to those of the Perl 5 language. | and semantics are as close as possible to those of the Perl 5 language. |
| 7 | ||
| 8 | Written by Philip Hazel | Written by Philip Hazel |
| 9 | Copyright (c) 1997-2009 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 53 supporting internal functions that are n | Line 53 supporting internal functions that are n |
| 53 | #include "pcre_internal.h" | #include "pcre_internal.h" |
| 54 | ||
| 55 | ||
| 56 | /* When DEBUG is defined, we need the pcre_printint() function, which is also | /* When PCRE_DEBUG is defined, we need the pcre(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 | #ifdef DEBUG | COMPILE_PCREx macro will already be appropriately set. */ |
| 60 | #include "pcre_printint.src" | |
| 61 | #ifdef PCRE_DEBUG | |
| 62 | /* 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 | ||
| # | Line 87 so this number is very generous. | Line 92 so this number is very generous. |
| 92 | The same workspace is used during the second, actual compile phase for | 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 | 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 | end. Each entry in this list occupies LINK_SIZE bytes, so even when LINK_SIZE |
| 95 | is 4 there is plenty of room. */ | 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 REQ_CASELESS 0x10000000l /* Indicates caselessness */ | |
| 114 | #define REQ_VARY 0x20000000l /* Reqchar followed non-literal item */ | |
| 115 | ||
| 116 | #define COMPILE_WORK_SIZE (4096) | /* 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 |
| # | Line 118 static const short int escapes[] = { | Line 143 static const short int escapes[] = { |
| 143 | -ESC_H, 0, | -ESC_H, 0, |
| 144 | 0, -ESC_K, | 0, -ESC_K, |
| 145 | 0, 0, | 0, 0, |
| 146 | 0, 0, | -ESC_N, 0, |
| 147 | -ESC_P, -ESC_Q, | -ESC_P, -ESC_Q, |
| 148 | -ESC_R, -ESC_S, | -ESC_R, -ESC_S, |
| 149 | 0, 0, | 0, 0, |
| # | Line 165 static const short int escapes[] = { | Line 190 static const short int escapes[] = { |
| 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 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, | /* C8 */-ESC_H, 0, 0, 0, 0, 0, 0, 0, |
| 193 | /* D0 */ '}', 0, -ESC_K, 0, 0, 0, 0, -ESC_P, | /* D0 */ '}', 0, -ESC_K, 0, 0,-ESC_N, 0, -ESC_P, |
| 194 | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, | /* D8 */-ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0, |
| 195 | /* E0 */ '\\', 0, -ESC_S, 0, 0,-ESC_V, -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, |
| # | Line 182 string is built from string macros so th | Line 207 string is built from string macros so th |
| 207 | platforms. */ | platforms. */ |
| 208 | ||
| 209 | typedef struct verbitem { | typedef struct verbitem { |
| 210 | int len; | int len; /* Length of verb name */ |
| 211 | int op; | 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; | } verbitem; |
| 214 | ||
| 215 | static const char verbnames[] = | static const char verbnames[] = |
| 216 | "\0" /* Empty name is a shorthand for MARK */ | |
| 217 | STRING_MARK0 | |
| 218 | STRING_ACCEPT0 | STRING_ACCEPT0 |
| 219 | STRING_COMMIT0 | STRING_COMMIT0 |
| 220 | STRING_F0 | STRING_F0 |
| # | Line 196 static const char verbnames[] = | Line 224 static const char verbnames[] = |
| 224 | STRING_THEN; | STRING_THEN; |
| 225 | ||
| 226 | static const verbitem verbs[] = { | static const verbitem verbs[] = { |
| 227 | { 6, OP_ACCEPT }, | { 0, -1, OP_MARK }, |
| 228 | { 6, OP_COMMIT }, | { 4, -1, OP_MARK }, |
| 229 | { 1, OP_FAIL }, | { 6, OP_ACCEPT, -1 }, |
| 230 | { 4, OP_FAIL }, | { 6, OP_COMMIT, -1 }, |
| 231 | { 5, OP_PRUNE }, | { 1, OP_FAIL, -1 }, |
| 232 | { 4, OP_SKIP }, | { 4, OP_FAIL, -1 }, |
| 233 | { 4, OP_THEN } | { 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); | static const int verbcount = sizeof(verbs)/sizeof(verbitem); |
| # | Line 220 static const char posix_names[] = | Line 250 static const char posix_names[] = |
| 250 | STRING_graph0 STRING_print0 STRING_punct0 STRING_space0 | STRING_graph0 STRING_print0 STRING_punct0 STRING_space0 |
| 251 | STRING_word0 STRING_xdigit; | 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. Each class is formed from a | /* Table of class bit maps for each POSIX class. Each class is formed from a |
| # | Line 250 static const int posix_class_maps[] = { | Line 280 static const int posix_class_maps[] = { |
| 280 | cbit_xdigit,-1, 0 /* 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 | #ifdef SUPPORT_UCP | |
| 288 | 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 | #define STRING(a) # a | #define STRING(a) # a |
| 386 | #define XSTRING(s) STRING(s) | #define XSTRING(s) STRING(s) |
| # | Line 262 the number of relocations needed when a | Line 393 the number of relocations needed when a |
| 393 | it is now one long string. We cannot use a table of offsets, because the | it is now one long string. We cannot use a table of offsets, because the |
| 394 | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we | lengths of inserts such as XSTRING(MAX_NAME_SIZE) are not known. Instead, we |
| 395 | simply count through to the one we want - this isn't a performance issue | simply count through to the one we want - this isn't a performance issue |
| 396 | because these strings are used only when there is a compilation error. */ | 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[] = | static const char error_texts[] = |
| 403 | "no error\0" | "no error\0" |
| # | Line 309 static const char error_texts[] = | Line 444 static const char error_texts[] = |
| 444 | /* 35 */ | /* 35 */ |
| 445 | "invalid condition (?(0)\0" | "invalid condition (?(0)\0" |
| 446 | "\\C not allowed in lookbehind assertion\0" | "\\C not allowed in lookbehind assertion\0" |
| 447 | "PCRE does not support \\L, \\l, \\N, \\U, or \\u\0" | "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0" |
| 448 | "number after (?C is > 255\0" | "number after (?C is > 255\0" |
| 449 | "closing ) for (?C expected\0" | "closing ) for (?C expected\0" |
| 450 | /* 40 */ | /* 40 */ |
| # | Line 331 static const char error_texts[] = | Line 466 static const char error_texts[] = |
| 466 | "internal error: previously-checked referenced subpattern not found\0" | "internal error: previously-checked referenced subpattern not found\0" |
| 467 | "DEFINE group contains more than one branch\0" | "DEFINE group contains more than one branch\0" |
| 468 | /* 55 */ | /* 55 */ |
| 469 | "repeating a DEFINE group is not allowed\0" | "repeating a DEFINE group is not allowed\0" /** DEAD **/ |
| 470 | "inconsistent NEWLINE options\0" | "inconsistent NEWLINE options\0" |
| 471 | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" | "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0" |
| 472 | "a numbered reference must not be zero\0" | "a numbered reference must not be zero\0" |
| 473 | "(*VERB) with an argument is not supported\0" | "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)\0" |
| 474 | /* 60 */ | /* 60 */ |
| 475 | "(*VERB) not recognized\0" | "(*VERB) not recognized\0" |
| 476 | "number is too big\0" | "number is too big\0" |
| 477 | "subpattern name expected\0" | "subpattern name expected\0" |
| 478 | "digit expected after (?+\0" | "digit expected after (?+\0" |
| 479 | "] is an invalid data character in JavaScript compatibility mode"; | "] 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 PCRE_UCP 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 UTF-8/16 code point (>= 0xd800 && <= 0xdfff)\0" | |
| 491 | ; | |
| 492 | ||
| 493 | /* Table to identify digits and hex digits. This is used when compiling | /* Table to identify digits and hex digits. This is used when compiling |
| 494 | 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 360 For convenience, we use the same bit def | Line 506 For convenience, we use the same bit def |
| 506 | ||
| 507 | Then we can use ctype_digit and ctype_xdigit in the code. */ | Then we can use ctype_digit and ctype_xdigit in the code. */ |
| 508 | ||
| 509 | /* Using a simple comparison for decimal numbers rather than a memory read | |
| 510 | is much faster, and the resulting code is simpler (the compiler turns it | |
| 511 | into a subtraction and unsigned comparison). */ | |
| 512 | ||
| 513 | #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) | |
| 514 | ||
| 515 | #ifndef EBCDIC | #ifndef EBCDIC |
| 516 | ||
| 517 | /* This is the "normal" case, for ASCII systems, and EBCDIC systems running in | /* This is the "normal" case, for ASCII systems, and EBCDIC systems running in |
| 518 | UTF-8 mode. */ | UTF-8 mode. */ |
| 519 | ||
| 520 | static const unsigned char digitab[] = | static const pcre_uint8 digitab[] = |
| 521 | { | { |
| 522 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */ |
| 523 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */ |
| # | Line 404 static const unsigned char digitab[] = | Line 556 static const unsigned char digitab[] = |
| 556 | ||
| 557 | /* This is the "abnormal" case, for EBCDIC systems not running in UTF-8 mode. */ | /* This is the "abnormal" case, for EBCDIC systems not running in UTF-8 mode. */ |
| 558 | ||
| 559 | static const unsigned char digitab[] = | static const pcre_uint8 digitab[] = |
| 560 | { | { |
| 561 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 0 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 0 */ |
| 562 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */ | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 8- 15 */ |
| # | Line 439 static const unsigned char digitab[] = | Line 591 static const unsigned char digitab[] = |
| 591 | 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c, /* 0 - 7 F0 */ | 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c, /* 0 - 7 F0 */ |
| 592 | 0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00};/* 8 -255 */ | 0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00};/* 8 -255 */ |
| 593 | ||
| 594 | static const unsigned char ebcdic_chartab[] = { /* chartable partial dup */ | static const pcre_uint8 ebcdic_chartab[] = { /* chartable partial dup */ |
| 595 | 0x80,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 0- 7 */ | 0x80,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 0- 7 */ |
| 596 | 0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00, /* 8- 15 */ | 0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00, /* 8- 15 */ |
| 597 | 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 16- 23 */ | 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, /* 16- 23 */ |
| # | Line 478 static const unsigned char ebcdic_charta | Line 630 static const unsigned char ebcdic_charta |
| 630 | /* Definition to allow mutual recursion */ | /* Definition to allow mutual recursion */ |
| 631 | ||
| 632 | static BOOL | static BOOL |
| 633 | compile_regex(int, int, uschar **, const uschar **, int *, BOOL, BOOL, int, | compile_regex(int, pcre_uchar **, const pcre_uchar **, int *, BOOL, BOOL, int, int, |
| 634 | int *, int *, branch_chain *, compile_data *, int *); | int *, int *, branch_chain *, compile_data *, int *); |
| 635 | ||
| 636 | ||
| # | Line 500 static const char * | Line 652 static const char * |
| 652 | find_error_text(int n) | find_error_text(int n) |
| 653 | { | { |
| 654 | const char *s = error_texts; | const char *s = error_texts; |
| 655 | for (; n > 0; n--) while (*s++ != 0) {}; | for (; n > 0; n--) |
| 656 | { | |
| 657 | while (*s++ != 0) {}; | |
| 658 | if (*s == 0) return "Error text not found (please report)"; | |
| 659 | } | |
| 660 | return s; | return s; |
| 661 | } | } |
| 662 | ||
| 663 | ||
| 664 | /************************************************* | /************************************************* |
| 665 | * Expand the workspace * | |
| 666 | *************************************************/ | |
| 667 | ||
| 668 | /* This function is called during the second compiling phase, if the number of | |
| 669 | forward references fills the existing workspace, which is originally a block on | |
| 670 | the stack. A larger block is obtained from malloc() unless the ultimate limit | |
| 671 | has been reached or the increase will be rather small. | |
| 672 | ||
| 673 | Argument: pointer to the compile data block | |
| 674 | Returns: 0 if all went well, else an error number | |
| 675 | */ | |
| 676 | ||
| 677 | static int | |
| 678 | expand_workspace(compile_data *cd) | |
| 679 | { | |
| 680 | pcre_uchar *newspace; | |
| 681 | int newsize = cd->workspace_size * 2; | |
| 682 | ||
| 683 | if (newsize > COMPILE_WORK_SIZE_MAX) newsize = COMPILE_WORK_SIZE_MAX; | |
| 684 | if (cd->workspace_size >= COMPILE_WORK_SIZE_MAX || | |
| 685 | newsize - cd->workspace_size < WORK_SIZE_SAFETY_MARGIN) | |
| 686 | return ERR72; | |
| 687 | ||
| 688 | newspace = (PUBL(malloc))(IN_UCHARS(newsize)); | |
| 689 | if (newspace == NULL) return ERR21; | |
| 690 | memcpy(newspace, cd->start_workspace, cd->workspace_size * sizeof(pcre_uchar)); | |
| 691 | cd->hwm = (pcre_uchar *)newspace + (cd->hwm - cd->start_workspace); | |
| 692 | if (cd->workspace_size > COMPILE_WORK_SIZE) | |
| 693 | (PUBL(free))((void *)cd->start_workspace); | |
| 694 | cd->start_workspace = newspace; | |
| 695 | cd->workspace_size = newsize; | |
| 696 | return 0; | |
| 697 | } | |
| 698 | ||
| 699 | ||
| 700 | ||
| 701 | /************************************************* | |
| 702 | * Check for counted repeat * | |
| 703 | *************************************************/ | |
| 704 | ||
| 705 | /* This function is called when a '{' is encountered in a place where it might | |
| 706 | start a quantifier. It looks ahead to see if it really is a quantifier or not. | |
| 707 | It is only a quantifier if it is one of the forms {ddd} {ddd,} or {ddd,ddd} | |
| 708 | where the ddds are digits. | |
| 709 | ||
| 710 | Arguments: | |
| 711 | p pointer to the first char after '{' | |
| 712 | ||
| 713 | Returns: TRUE or FALSE | |
| 714 | */ | |
| 715 | ||
| 716 | static BOOL | |
| 717 | is_counted_repeat(const pcre_uchar *p) | |
| 718 | { | |
| 719 | if (!IS_DIGIT(*p)) return FALSE; | |
| 720 | p++; | |
| 721 | while (IS_DIGIT(*p)) p++; | |
| 722 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
| 723 | ||
| 724 | if (*p++ != CHAR_COMMA) return FALSE; | |
| 725 | if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | |
| 726 | ||
| 727 | if (!IS_DIGIT(*p)) return FALSE; | |
| 728 | p++; | |
| 729 | while (IS_DIGIT(*p)) p++; | |
| 730 | ||
| 731 | return (*p == CHAR_RIGHT_CURLY_BRACKET); | |
| 732 | } | |
| 733 | ||
| 734 | ||
| 735 | ||
| 736 | /************************************************* | |
| 737 | * Handle escapes * | * Handle escapes * |
| 738 | *************************************************/ | *************************************************/ |
| 739 | ||
| # | Line 530 Returns: zero or positive => a d | Line 758 Returns: zero or positive => a d |
| 758 | */ | */ |
| 759 | ||
| 760 | static int | static int |
| 761 | check_escape(const uschar **ptrptr, int *errorcodeptr, int bracount, | check_escape(const pcre_uchar **ptrptr, int *errorcodeptr, int bracount, |
| 762 | int options, BOOL isclass) | int options, BOOL isclass) |
| 763 | { | { |
| 764 | BOOL utf8 = (options & PCRE_UTF8) != 0; | /* PCRE_UTF16 has the same value as PCRE_UTF8. */ |
| 765 | const uschar *ptr = *ptrptr + 1; | BOOL utf = (options & PCRE_UTF8) != 0; |
| 766 | int c, i; | const pcre_uchar *ptr = *ptrptr + 1; |
| 767 | pcre_int32 c; | |
| 768 | int i; | |
| 769 | ||
| 770 | GETCHARINCTEST(c, ptr); /* Get character value, increment pointer */ | GETCHARINCTEST(c, ptr); /* Get character value, increment pointer */ |
| 771 | ptr--; /* Set pointer back to the last byte */ | ptr--; /* Set pointer back to the last byte */ |
| # | Line 549 in a table. A non-zero result is somethi | Line 779 in a table. A non-zero result is somethi |
| 779 | Otherwise further processing may be required. */ | Otherwise further processing may be required. */ |
| 780 | ||
| 781 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | #ifndef EBCDIC /* ASCII/UTF-8 coding */ |
| 782 | else if (c < CHAR_0 || c > CHAR_z) {} /* Not alphanumeric */ | /* Not alphanumeric */ |
| 783 | else if (c < CHAR_0 || c > CHAR_z) {} | |
| 784 | else if ((i = escapes[c - CHAR_0]) != 0) c = i; | else if ((i = escapes[c - CHAR_0]) != 0) c = i; |
| 785 | ||
| 786 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
| 787 | else if (c < 'a' || (ebcdic_chartab[c] & 0x0E) == 0) {} /* Not alphanumeric */ | /* Not alphanumeric */ |
| 788 | else if (c < 'a' || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {} | |
| 789 | else if ((i = escapes[c - 0x48]) != 0) c = i; | else if ((i = escapes[c - 0x48]) != 0) c = i; |
| 790 | #endif | #endif |
| 791 | ||
| # | Line 561 else if ((i = escapes[c - 0x48]) != 0) | Line 793 else if ((i = escapes[c - 0x48]) != 0) |
| 793 | ||
| 794 | else | else |
| 795 | { | { |
| 796 | const uschar *oldptr; | const pcre_uchar *oldptr; |
| 797 | BOOL braced, negated; | BOOL braced, negated; |
| 798 | ||
| 799 | switch (c) | switch (c) |
| # | Line 571 else | Line 803 else |
| 803 | ||
| 804 | case CHAR_l: | case CHAR_l: |
| 805 | case CHAR_L: | case CHAR_L: |
| 806 | case CHAR_N: | *errorcodeptr = ERR37; |
| 807 | break; | |
| 808 | ||
| 809 | case CHAR_u: | case CHAR_u: |
| 810 | if ((options & PCRE_JAVASCRIPT_COMPAT) != 0) | |
| 811 | { | |
| 812 | /* In JavaScript, \u must be followed by four hexadecimal numbers. | |
| 813 | Otherwise it is a lowercase u letter. */ | |
| 814 | if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 | |
| 815 | && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 | |
| 816 | && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 | |
| 817 | && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) | |
| 818 | { | |
| 819 | c = 0; | |
| 820 | for (i = 0; i < 4; ++i) | |
| 821 | { | |
| 822 | register int cc = *(++ptr); | |
| 823 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
| 824 | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ | |
| 825 | c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); | |
| 826 | #else /* EBCDIC coding */ | |
| 827 | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ | |
| 828 | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); | |
| 829 | #endif | |
| 830 | } | |
| 831 | } | |
| 832 | } | |
| 833 | else | |
| 834 | *errorcodeptr = ERR37; | |
| 835 | break; | |
| 836 | ||
| 837 | case CHAR_U: | case CHAR_U: |
| 838 | *errorcodeptr = ERR37; | /* In JavaScript, \U is an uppercase U letter. */ |
| 839 | if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) *errorcodeptr = ERR37; | |
| 840 | break; | break; |
| 841 | ||
| 842 | /* \g must be followed by one of a number of specific things: | /* In a character class, \g is just a literal "g". Outside a character |
| 843 | class, \g must be followed by one of a number of specific things: | |
| 844 | ||
| 845 | (1) A number, either plain or braced. If positive, it is an absolute | (1) A number, either plain or braced. If positive, it is an absolute |
| 846 | backreference. If negative, it is a relative backreference. This is a Perl | backreference. If negative, it is a relative backreference. This is a Perl |
| # | Line 594 else | Line 857 else |
| 857 | the -ESC_g code (cf \k). */ | the -ESC_g code (cf \k). */ |
| 858 | ||
| 859 | case CHAR_g: | case CHAR_g: |
| 860 | if (isclass) break; | |
| 861 | if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE) | if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE) |
| 862 | { | { |
| 863 | c = -ESC_g; | c = -ESC_g; |
| # | Line 604 else | Line 868 else |
| 868 | ||
| 869 | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) |
| 870 | { | { |
| 871 | const uschar *p; | const pcre_uchar *p; |
| 872 | for (p = ptr+2; *p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET; p++) | for (p = ptr+2; *p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET; p++) |
| 873 | if (*p != CHAR_MINUS && (digitab[*p] & ctype_digit) == 0) break; | if (*p != CHAR_MINUS && !IS_DIGIT(*p)) break; |
| 874 | if (*p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET) | if (*p != 0 && *p != CHAR_RIGHT_CURLY_BRACKET) |
| 875 | { | { |
| 876 | c = -ESC_k; | c = -ESC_k; |
| # | Line 624 else | Line 888 else |
| 888 | } | } |
| 889 | else negated = FALSE; | else negated = FALSE; |
| 890 | ||
| 891 | /* The integer range is limited by the machine's int representation. */ | |
| 892 | c = 0; | c = 0; |
| 893 | while ((digitab[ptr[1]] & ctype_digit) != 0) | while (IS_DIGIT(ptr[1])) |
| 894 | { | |
| 895 | if (((unsigned int)c) > INT_MAX / 10) /* Integer overflow */ | |
| 896 | { | |
| 897 | c = -1; | |
| 898 | break; | |
| 899 | } | |
| 900 | c = c * 10 + *(++ptr) - CHAR_0; | c = c * 10 + *(++ptr) - CHAR_0; |
| 901 | } | |
| 902 | if (c < 0) /* Integer overflow */ | if (((unsigned int)c) > INT_MAX) /* Integer overflow */ |
| 903 | { | { |
| 904 | while (IS_DIGIT(ptr[1])) | |
| 905 | ptr++; | |
| 906 | *errorcodeptr = ERR61; | *errorcodeptr = ERR61; |
| 907 | break; | break; |
| 908 | } | } |
| # | Line 677 else | Line 950 else |
| 950 | if (!isclass) | if (!isclass) |
| 951 | { | { |
| 952 | oldptr = ptr; | oldptr = ptr; |
| 953 | /* The integer range is limited by the machine's int representation. */ | |
| 954 | c -= CHAR_0; | c -= CHAR_0; |
| 955 | while ((digitab[ptr[1]] & ctype_digit) != 0) | while (IS_DIGIT(ptr[1])) |
| 956 | { | |
| 957 | if (((unsigned int)c) > INT_MAX / 10) /* Integer overflow */ | |
| 958 | { | |
| 959 | c = -1; | |
| 960 | break; | |
| 961 | } | |
| 962 | c = c * 10 + *(++ptr) - CHAR_0; | c = c * 10 + *(++ptr) - CHAR_0; |
| 963 | if (c < 0) /* Integer overflow */ | } |
| 964 | if (((unsigned int)c) > INT_MAX) /* Integer overflow */ | |
| 965 | { | { |
| 966 | while (IS_DIGIT(ptr[1])) | |
| 967 | ptr++; | |
| 968 | *errorcodeptr = ERR61; | *errorcodeptr = ERR61; |
| 969 | break; | break; |
| 970 | } | } |
| # | Line 714 else | Line 997 else |
| 997 | c -= CHAR_0; | c -= CHAR_0; |
| 998 | while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7) | while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7) |
| 999 | c = c * 8 + *(++ptr) - CHAR_0; | c = c * 8 + *(++ptr) - CHAR_0; |
| 1000 | if (!utf8 && c > 255) *errorcodeptr = ERR51; | if (!utf && c > 0xff) *errorcodeptr = ERR51; |
| 1001 | break; | break; |
| 1002 | ||
| 1003 | /* \x is complicated. \x{ddd} is a character number which can be greater | /* \x is complicated. \x{ddd} is a character number which can be greater |
| 1004 | than 0xff in utf8 mode, but only if the ddd are hex digits. If not, { is | than 0xff in utf or non-8bit mode, but only if the ddd are hex digits. |
| 1005 | treated as a data character. */ | If not, { is treated as a data character. */ |
| 1006 | ||
| 1007 | case CHAR_x: | case CHAR_x: |
| 1008 | if ((options & PCRE_JAVASCRIPT_COMPAT) != 0) | |
| 1009 | { | |
| 1010 | /* In JavaScript, \x must be followed by two hexadecimal numbers. | |
| 1011 | Otherwise it is a lowercase x letter. */ | |
| 1012 | if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 | |
| 1013 | && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) | |
| 1014 | { | |
| 1015 | c = 0; | |
| 1016 | for (i = 0; i < 2; ++i) | |
| 1017 | { | |
| 1018 | register int cc = *(++ptr); | |
| 1019 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
| 1020 | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ | |
| 1021 | c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); | |
| 1022 | #else /* EBCDIC coding */ | |
| 1023 | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ | |
| 1024 | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); | |
| 1025 | #endif | |
| 1026 | } | |
| 1027 | } | |
| 1028 | break; | |
| 1029 | } | |
| 1030 | ||
| 1031 | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) | if (ptr[1] == CHAR_LEFT_CURLY_BRACKET) |
| 1032 | { | { |
| 1033 | const uschar *pt = ptr + 2; | const pcre_uchar *pt = ptr + 2; |
| int count = 0; | ||
| 1034 | ||
| 1035 | c = 0; | c = 0; |
| 1036 | while ((digitab[*pt] & ctype_xdigit) != 0) | while (MAX_255(*pt) && (digitab[*pt] & ctype_xdigit) != 0) |
| 1037 | { | { |
| 1038 | register int cc = *pt++; | register int cc = *pt++; |
| 1039 | if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ | if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ |
| count++; | ||
| 1040 | ||
| 1041 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | #ifndef EBCDIC /* ASCII/UTF-8 coding */ |
| 1042 | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ | if (cc >= CHAR_a) cc -= 32; /* Convert to upper case */ |
| # | Line 741 else | Line 1045 else |
| 1045 | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ | if (cc >= CHAR_a && cc <= CHAR_z) cc += 64; /* Convert to upper case */ |
| 1046 | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); | c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); |
| 1047 | #endif | #endif |
| 1048 | ||
| 1049 | #ifdef COMPILE_PCRE8 | |
| 1050 | if (c > (utf ? 0x10ffff : 0xff)) { c = -1; break; } | |
| 1051 | #else | |
| 1052 | #ifdef COMPILE_PCRE16 | |
| 1053 | if (c > (utf ? 0x10ffff : 0xffff)) { c = -1; break; } | |
| 1054 | #endif | |
| 1055 | #endif | |
| 1056 | } | |
| 1057 | ||
| 1058 | if (c < 0) | |
| 1059 | { | |
| 1060 | while (MAX_255(*pt) && (digitab[*pt] & ctype_xdigit) != 0) pt++; | |
| 1061 | *errorcodeptr = ERR34; | |
| 1062 | } | } |
| 1063 | ||
| 1064 | if (*pt == CHAR_RIGHT_CURLY_BRACKET) | if (*pt == CHAR_RIGHT_CURLY_BRACKET) |
| 1065 | { | { |
| 1066 | if (c < 0 || count > (utf8? 8 : 2)) *errorcodeptr = ERR34; | if (utf && c >= 0xd800 && c <= 0xdfff) *errorcodeptr = ERR73; |
| 1067 | ptr = pt; | ptr = pt; |
| 1068 | break; | break; |
| 1069 | } | } |
| # | Line 757 else | Line 1075 else |
| 1075 | /* Read just a single-byte hex-defined char */ | /* Read just a single-byte hex-defined char */ |
| 1076 | ||
| 1077 | c = 0; | c = 0; |
| 1078 | while (i++ < 2 && (digitab[ptr[1]] & ctype_xdigit) != 0) | while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0) |
| 1079 | { | { |
| 1080 | int cc; /* Some compilers don't like */ | int cc; /* Some compilers don't like */ |
| 1081 | cc = *(++ptr); /* ++ in initializers */ | cc = *(++ptr); /* ++ in initializers */ |
| # | Line 772 else | Line 1090 else |
| 1090 | break; | break; |
| 1091 | ||
| 1092 | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. | /* For \c, a following letter is upper-cased; then the 0x40 bit is flipped. |
| 1093 | This coding is ASCII-specific, but then the whole concept of \cx is | An error is given if the byte following \c is not an ASCII character. This |
| 1094 | coding is ASCII-specific, but then the whole concept of \cx is | |
| 1095 | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ | ASCII-specific. (However, an EBCDIC equivalent has now been added.) */ |
| 1096 | ||
| 1097 | case CHAR_c: | case CHAR_c: |
| # | Line 782 else | Line 1101 else |
| 1101 | *errorcodeptr = ERR2; | *errorcodeptr = ERR2; |
| 1102 | break; | break; |
| 1103 | } | } |
| 1104 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | |
| 1105 | #ifndef EBCDIC /* ASCII/UTF-8 coding */ | if (c > 127) /* Excludes all non-ASCII in either mode */ |
| 1106 | { | |
| 1107 | *errorcodeptr = ERR68; | |
| 1108 | break; | |
| 1109 | } | |
| 1110 | if (c >= CHAR_a && c <= CHAR_z) c -= 32; | if (c >= CHAR_a && c <= CHAR_z) c -= 32; |
| 1111 | c ^= 0x40; | c ^= 0x40; |
| 1112 | #else /* EBCDIC coding */ | #else /* EBCDIC coding */ |
| 1113 | if (c >= CHAR_a && c <= CHAR_z) c += 64; | if (c >= CHAR_a && c <= CHAR_z) c += 64; |
| 1114 | c ^= 0xC0; | c ^= 0xC0; |
| 1115 | #endif | #endif |
| # | Line 809 else | Line 1132 else |
| 1132 | } | } |
| 1133 | } | } |
| 1134 | ||
| 1135 | /* Perl supports \N{name} for character names, as well as plain \N for "not | |
| 1136 | newline". PCRE does not support \N{name}. However, it does support | |
| 1137 | quantification such as \N{2,3}. */ | |
| 1138 | ||
| 1139 | if (c == -ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET && | |
| 1140 | !is_counted_repeat(ptr+2)) | |
| 1141 | *errorcodeptr = ERR37; | |
| 1142 | ||
| 1143 | /* If PCRE_UCP is set, we change the values for \d etc. */ | |
| 1144 | ||
| 1145 | if ((options & PCRE_UCP) != 0 && c <= -ESC_D && c >= -ESC_w) | |
| 1146 | c -= (ESC_DU - ESC_D); | |
| 1147 | ||
| 1148 | /* Set the pointer to the final character before returning. */ | |
| 1149 | ||
| 1150 | *ptrptr = ptr; | *ptrptr = ptr; |
| 1151 | return c; | return c; |
| 1152 | } | } |
| # | Line 835 Returns: type value from ucp_typ | Line 1173 Returns: type value from ucp_typ |
| 1173 | */ | */ |
| 1174 | ||
| 1175 | static int | static int |
| 1176 | get_ucp(const uschar **ptrptr, BOOL *negptr, int *dptr, int *errorcodeptr) | get_ucp(const pcre_uchar **ptrptr, BOOL *negptr, int *dptr, int *errorcodeptr) |
| 1177 | { | { |
| 1178 | int c, i, bot, top; | int c, i, bot, top; |
| 1179 | const uschar *ptr = *ptrptr; | const pcre_uchar *ptr = *ptrptr; |
| 1180 | char name[32]; | pcre_uchar name[32]; |
| 1181 | ||
| 1182 | c = *(++ptr); | c = *(++ptr); |
| 1183 | if (c == 0) goto ERROR_RETURN; | if (c == 0) goto ERROR_RETURN; |
| # | Line 856 if (c == CHAR_LEFT_CURLY_BRACKET) | Line 1194 if (c == CHAR_LEFT_CURLY_BRACKET) |
| 1194 | *negptr = TRUE; | *negptr = TRUE; |
| 1195 | ptr++; | ptr++; |
| 1196 | } | } |
| 1197 | for (i = 0; i < (int)sizeof(name) - 1; i++) | for (i = 0; i < (int)(sizeof(name) / sizeof(pcre_uchar)) - 1; i++) |
| 1198 | { | { |
| 1199 | c = *(++ptr); | c = *(++ptr); |
| 1200 | if (c == 0) goto ERROR_RETURN; | if (c == 0) goto ERROR_RETURN; |
| # | Line 880 else | Line 1218 else |
| 1218 | /* Search for a recognized property name using binary chop */ | /* Search for a recognized property name using binary chop */ |
| 1219 | ||
| 1220 | bot = 0; | bot = 0; |
| 1221 | top = _pcre_utt_size; | top = PRIV(utt_size); |
| 1222 | ||
| 1223 | while (bot < top) | while (bot < top) |
| 1224 | { | { |
| 1225 | i = (bot + top) >> 1; | i = (bot + top) >> 1; |
| 1226 | c = strcmp(name, _pcre_utt_names + _pcre_utt[i].name_offset); | c = STRCMP_UC_C8(name, PRIV(utt_names) + PRIV(utt)[i].name_offset); |
| 1227 | if (c == 0) | if (c == 0) |
| 1228 | { | { |
| 1229 | *dptr = _pcre_utt[i].value; | *dptr = PRIV(utt)[i].value; |
| 1230 | return _pcre_utt[i].type; | return PRIV(utt)[i].type; |
| 1231 | } | } |
| 1232 | if (c > 0) bot = i + 1; else top = i; | if (c > 0) bot = i + 1; else top = i; |
| 1233 | } | } |
| # | Line 909 return -1; | Line 1247 return -1; |
| 1247 | ||
| 1248 | ||
| 1249 | /************************************************* | /************************************************* |
| * 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 == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | ||
| if (*p++ != CHAR_COMMA) return FALSE; | ||
| if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE; | ||
| if ((digitab[*p++] & ctype_digit) == 0) return FALSE; | ||
| while ((digitab[*p] & ctype_digit) != 0) p++; | ||
| return (*p == CHAR_RIGHT_CURLY_BRACKET); | ||
| } | ||
| /************************************************* | ||
| 1250 | * Read repeat counts * | * Read repeat counts * |
| 1251 | *************************************************/ | *************************************************/ |
| 1252 | ||
| # | Line 960 Returns: pointer to '}' on succe | Line 1265 Returns: pointer to '}' on succe |
| 1265 | current ptr on error, with errorcodeptr set non-zero | current ptr on error, with errorcodeptr set non-zero |
| 1266 | */ | */ |
| 1267 | ||
| 1268 | static const uschar * | static const pcre_uchar * |
| 1269 | 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) |
| 1270 | { | { |
| 1271 | int min = 0; | int min = 0; |
| 1272 | int max = -1; | int max = -1; |
| # | Line 969 int max = -1; | Line 1274 int max = -1; |
| 1274 | /* 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 |
| 1275 | an integer overflow. */ | an integer overflow. */ |
| 1276 | ||
| 1277 | while ((digitab[*p] & ctype_digit) != 0) min = min * 10 + *p++ - CHAR_0; | while (IS_DIGIT(*p)) min = min * 10 + *p++ - CHAR_0; |
| 1278 | if (min < 0 || min > 65535) | if (min < 0 || min > 65535) |
| 1279 | { | { |
| 1280 | *errorcodeptr = ERR5; | *errorcodeptr = ERR5; |
| # | Line 984 if (*p == CHAR_RIGHT_CURLY_BRACKET) max | Line 1289 if (*p == CHAR_RIGHT_CURLY_BRACKET) max |
| 1289 | if (*(++p) != CHAR_RIGHT_CURLY_BRACKET) | if (*(++p) != CHAR_RIGHT_CURLY_BRACKET) |
| 1290 | { | { |
| 1291 | max = 0; | max = 0; |
| 1292 | while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - CHAR_0; | while(IS_DIGIT(*p)) max = max * 10 + *p++ - CHAR_0; |
| 1293 | if (max < 0 || max > 65535) | if (max < 0 || max > 65535) |
| 1294 | { | { |
| 1295 | *errorcodeptr = ERR5; | *errorcodeptr = ERR5; |
| # | Line 1009 return p; | Line 1314 return p; |
| 1314 | ||
| 1315 | ||
| 1316 | /************************************************* | /************************************************* |
| 1317 | * Find forward referenced subpattern * | * Subroutine for finding forward reference * |
| 1318 | *************************************************/ | *************************************************/ |
| 1319 | ||
| 1320 | /* This function scans along a pattern's text looking for capturing | /* This recursive function is called only from find_parens() below. The |
| 1321 | top-level call starts at the beginning of the pattern. All other calls must | |
| 1322 | start at a parenthesis. It scans along a pattern's text looking for capturing | |
| 1323 | subpatterns, and counting them. If it finds a named pattern that matches the | subpatterns, and counting them. If it finds a named pattern that matches the |
| 1324 | name it is given, it returns its number. Alternatively, if the name is NULL, it | name it is given, it returns its number. Alternatively, if the name is NULL, it |
| 1325 | returns when it reaches a given numbered subpattern. This is used for forward | returns when it reaches a given numbered subpattern. Recursion is used to keep |
| 1326 | references to subpatterns. We know that if (?P< is encountered, the name will | track of subpatterns that reset the capturing group numbers - the (?| feature. |
| 1327 | be terminated by '>' because that is checked in the first pass. | |
| 1328 | This function was originally called only from the second pass, in which we know | |
| 1329 | that if (?< or (?' or (?P< is encountered, the name will be correctly | |
| 1330 | terminated because that is checked in the first pass. There is now one call to | |
| 1331 | this function in the first pass, to check for a recursive back reference by | |
| 1332 | name (so that we can make the whole group atomic). In this case, we need check | |
| 1333 | only up to the current position in the pattern, and that is still OK because | |
| 1334 | and previous occurrences will have been checked. To make this work, the test | |
| 1335 | for "end of pattern" is a check against cd->end_pattern in the main loop, | |
| 1336 | instead of looking for a binary zero. This means that the special first-pass | |
| 1337 | call can adjust cd->end_pattern temporarily. (Checks for binary zero while | |
| 1338 | processing items within the loop are OK, because afterwards the main loop will | |
| 1339 | terminate.) | |
| 1340 | ||
| 1341 | Arguments: | Arguments: |
| 1342 | ptr current position in the pattern | ptrptr address of the current character pointer (updated) |
| 1343 | cd compile background data | cd compile background data |
| 1344 | name name to seek, or NULL if seeking a numbered subpattern | name name to seek, or NULL if seeking a numbered subpattern |
| 1345 | lorn name length, or subpattern number if name is NULL | lorn name length, or subpattern number if name is NULL |
| 1346 | xmode TRUE if we are in /x mode | xmode TRUE if we are in /x mode |
| 1347 | utf TRUE if we are in UTF-8 / UTF-16 mode | |
| 1348 | count pointer to the current capturing subpattern number (updated) | |
| 1349 | ||
| 1350 | Returns: the number of the named subpattern, or -1 if not found | Returns: the number of the named subpattern, or -1 if not found |
| 1351 | */ | */ |
| 1352 | ||
| 1353 | static int | static int |
| 1354 | find_parens(const uschar *ptr, compile_data *cd, const uschar *name, int lorn, | find_parens_sub(pcre_uchar **ptrptr, compile_data *cd, const pcre_uchar *name, int lorn, |
| 1355 | BOOL xmode) | BOOL xmode, BOOL utf, int *count) |
| 1356 | { | { |
| 1357 | const uschar *thisname; | pcre_uchar *ptr = *ptrptr; |
| 1358 | int count = cd->bracount; | int start_count = *count; |
| 1359 | int hwm_count = start_count; | |
| 1360 | BOOL dup_parens = FALSE; | |
| 1361 | ||
| 1362 | /* If the first character is a parenthesis, check on the type of group we are | |
| 1363 | dealing with. The very first call may not start with a parenthesis. */ | |
| 1364 | ||
| 1365 | for (; *ptr != 0; ptr++) | if (ptr[0] == CHAR_LEFT_PARENTHESIS) |
| 1366 | { | { |
| 1367 | int term; | /* Handle specials such as (*SKIP) or (*UTF8) etc. */ |
| 1368 | ||
| 1369 | if (ptr[1] == CHAR_ASTERISK) ptr += 2; | |
| 1370 | ||
| 1371 | /* Handle a normal, unnamed capturing parenthesis. */ | |
| 1372 | ||
| 1373 | else if (ptr[1] != CHAR_QUESTION_MARK) | |
| 1374 | { | |
| 1375 | *count += 1; | |
| 1376 | if (name == NULL && *count == lorn) return *count; | |
| 1377 | ptr++; | |
| 1378 | } | |
| 1379 | ||
| 1380 | /* All cases now have (? at the start. Remember when we are in a group | |
| 1381 | where the parenthesis numbers are duplicated. */ | |
| 1382 | ||
| 1383 | else if (ptr[2] == CHAR_VERTICAL_LINE) | |
| 1384 | { | |
| 1385 | ptr += 3; | |
| 1386 | dup_parens = TRUE; | |
| 1387 | } | |
| 1388 | ||
| 1389 | /* Handle comments; all characters are allowed until a ket is reached. */ | |
| 1390 | ||
| 1391 | else if (ptr[2] == CHAR_NUMBER_SIGN) | |
| 1392 | { | |
| 1393 | for (ptr += 3; *ptr != 0; ptr++) if (*ptr == CHAR_RIGHT_PARENTHESIS) break; | |
| 1394 | goto FAIL_EXIT; | |
| 1395 | } | |
| 1396 | ||
| 1397 | /* Handle a condition. If it is an assertion, just carry on so that it | |
| 1398 | is processed as normal. If not, skip to the closing parenthesis of the | |
| 1399 | condition (there can't be any nested parens). */ | |
| 1400 | ||
| 1401 | else if (ptr[2] == CHAR_LEFT_PARENTHESIS) | |
| 1402 | { | |
| 1403 | ptr += 2; | |
| 1404 | if (ptr[1] != CHAR_QUESTION_MARK) | |
| 1405 | { | |
| 1406 | while (*ptr != 0 && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++; | |
| 1407 | if (*ptr != 0) ptr++; | |
| 1408 | } | |
| 1409 | } | |
| 1410 | ||
| 1411 | /* Start with (? but not a condition. */ | |
| 1412 | ||
| 1413 | else | |
| 1414 | { | |
| 1415 | ptr += 2; | |
| 1416 | if (*ptr == CHAR_P) ptr++; /* Allow optional P */ | |
| 1417 | ||
| 1418 | /* We have to disambiguate (?<! and (?<= from (?<name> for named groups */ | |
| 1419 | ||
| 1420 | if ((*ptr == CHAR_LESS_THAN_SIGN && ptr[1] != CHAR_EXCLAMATION_MARK && | |
| 1421 | ptr[1] != CHAR_EQUALS_SIGN) || *ptr == CHAR_APOSTROPHE) | |
| 1422 | { | |
| 1423 | int term; | |
| 1424 | const pcre_uchar *thisname; | |
| 1425 | *count += 1; | |
| 1426 | if (name == NULL && *count == lorn) return *count; | |
| 1427 | term = *ptr++; | |
| 1428 | if (term == CHAR_LESS_THAN_SIGN) term = CHAR_GREATER_THAN_SIGN; | |
| 1429 | thisname = ptr; | |
| 1430 | while (*ptr != term) ptr++; | |
| 1431 | if (name != NULL && lorn == ptr - thisname && | |
| 1432 | STRNCMP_UC_UC(name, thisname, lorn) == 0) | |
| 1433 | return *count; | |
| 1434 | term++; | |
| 1435 | } | |
| 1436 | } | |
| 1437 | } | |
| 1438 | ||
| 1439 | /* Past any initial parenthesis handling, scan for parentheses or vertical | |
| 1440 | bars. Stop if we get to cd->end_pattern. Note that this is important for the | |
| 1441 | first-pass call when this value is temporarily adjusted to stop at the current | |
| 1442 | position. So DO NOT change this to a test for binary zero. */ | |
| 1443 | ||
| 1444 | for (; ptr < cd->end_pattern; ptr++) | |
| 1445 | { | |
| 1446 | /* Skip over backslashed characters and also entire \Q...\E */ | /* Skip over backslashed characters and also entire \Q...\E */ |
| 1447 | ||
| 1448 | if (*ptr == CHAR_BACKSLASH) | if (*ptr == CHAR_BACKSLASH) |
| 1449 | { | { |
| 1450 | if (*(++ptr) == 0) return -1; | if (*(++ptr) == 0) goto FAIL_EXIT; |
| 1451 | if (*ptr == CHAR_Q) for (;;) | if (*ptr == CHAR_Q) for (;;) |
| 1452 | { | { |
| 1453 | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; |
| 1454 | if (*ptr == 0) return -1; | if (*ptr == 0) goto FAIL_EXIT; |
| 1455 | if (*(++ptr) == CHAR_E) break; | if (*(++ptr) == CHAR_E) break; |
| 1456 | } | } |
| 1457 | continue; | continue; |
| # | Line 1065 for (; *ptr != 0; ptr++) | Line 1468 for (; *ptr != 0; ptr++) |
| 1468 | BOOL negate_class = FALSE; | BOOL negate_class = FALSE; |
| 1469 | for (;;) | for (;;) |
| 1470 | { | { |
| 1471 | int c = *(++ptr); | if (ptr[1] == CHAR_BACKSLASH) |
| if (c == CHAR_BACKSLASH) | ||
| 1472 | { | { |
| 1473 | if (ptr[1] == CHAR_E) | if (ptr[2] == CHAR_E) |
| 1474 | ptr++; | ptr+= 2; |
| 1475 | else if (strncmp((const char *)ptr+1, | else if (STRNCMP_UC_C8(ptr + 2, |
| 1476 | STR_Q STR_BACKSLASH STR_E, 3) == 0) | STR_Q STR_BACKSLASH STR_E, 3) == 0) |
| 1477 | ptr += 3; | ptr += 4; |
| 1478 | else | else |
| 1479 | break; | break; |
| 1480 | } | } |
| 1481 | else if (!negate_class && c == CHAR_CIRCUMFLEX_ACCENT) | else if (!negate_class && ptr[1] == CHAR_CIRCUMFLEX_ACCENT) |
| 1482 | { | |
| 1483 | negate_class = TRUE; | negate_class = TRUE; |
| 1484 | ptr++; | |
| 1485 | } | |
| 1486 | else break; | else break; |
| 1487 | } | } |
| 1488 | ||
| # | Line 1093 for (; *ptr != 0; ptr++) | Line 1498 for (; *ptr != 0; ptr++) |
| 1498 | if (*ptr == 0) return -1; | if (*ptr == 0) return -1; |
| 1499 | if (*ptr == CHAR_BACKSLASH) | if (*ptr == CHAR_BACKSLASH) |
| 1500 | { | { |
| 1501 | if (*(++ptr) == 0) return -1; | if (*(++ptr) == 0) goto FAIL_EXIT; |
| 1502 | if (*ptr == CHAR_Q) for (;;) | if (*ptr == CHAR_Q) for (;;) |
| 1503 | { | { |
| 1504 | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; | while (*(++ptr) != 0 && *ptr != CHAR_BACKSLASH) {}; |
| 1505 | if (*ptr == 0) return -1; | if (*ptr == 0) goto FAIL_EXIT; |
| 1506 | if (*(++ptr) == CHAR_E) break; | if (*(++ptr) == CHAR_E) break; |
| 1507 | } | } |
| 1508 | continue; | continue; |
| # | Line 1110 for (; *ptr != 0; ptr++) | Line 1515 for (; *ptr != 0; ptr++) |
| 1515 | ||
| 1516 | if (xmode && *ptr == CHAR_NUMBER_SIGN) | if (xmode && *ptr == CHAR_NUMBER_SIGN) |
| 1517 | { | { |
| 1518 | while (*(++ptr) != 0 && *ptr != CHAR_NL) {}; | ptr++; |
| 1519 | if (*ptr == 0) return -1; | while (*ptr != 0) |
| 1520 | { | |
| 1521 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | |
| 1522 | ptr++; | |
| 1523 | #ifdef SUPPORT_UTF | |
| 1524 | if (utf) FORWARDCHAR(ptr); | |
| 1525 | #endif | |
| 1526 | } | |
| 1527 | if (*ptr == 0) goto FAIL_EXIT; | |
| 1528 | continue; | continue; |
| 1529 | } | } |
| 1530 | ||
| 1531 | /* An opening parens must now be a real metacharacter */ | /* Check for the special metacharacters */ |
| 1532 | ||
| 1533 | if (*ptr != CHAR_LEFT_PARENTHESIS) continue; | if (*ptr == CHAR_LEFT_PARENTHESIS) |
| if (ptr[1] != CHAR_QUESTION_MARK && ptr[1] != CHAR_ASTERISK) | ||
| 1534 | { | { |
| 1535 | count++; | int rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf, count); |
| 1536 | if (name == NULL && count == lorn) return count; | if (rc > 0) return rc; |
| 1537 | continue; | if (*ptr == 0) goto FAIL_EXIT; |
| 1538 | } | } |
| 1539 | ||
| 1540 | ptr += 2; | else if (*ptr == CHAR_RIGHT_PARENTHESIS) |
| 1541 | if (*ptr == CHAR_P) ptr++; /* Allow optional P */ | { |
| 1542 | if (dup_parens && *count < hwm_count) *count = hwm_count; | |
| 1543 | goto FAIL_EXIT; | |
| 1544 | } | |
| 1545 | ||
| 1546 | /* We have to disambiguate (?<! and (?<= from (?<name> */ | else if (*ptr == CHAR_VERTICAL_LINE && dup_parens) |
| 1547 | { | |
| 1548 | if (*count > hwm_count) hwm_count = *count; | |
| 1549 | *count = start_count; | |
| 1550 | } | |
| 1551 | } | |
| 1552 | ||
| 1553 | FAIL_EXIT: | |
| 1554 | *ptrptr = ptr; | |
| 1555 | return -1; | |
| 1556 | } | |
| 1557 | ||
| if ((*ptr != CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_EXCLAMATION_MARK || | ||
| ptr[1] == CHAR_EQUALS_SIGN) && *ptr != CHAR_APOSTROPHE) | ||
| continue; | ||
| 1558 | ||
| count++; | ||
| 1559 | ||
| 1560 | if (name == NULL && count == lorn) return count; | |
| 1561 | term = *ptr++; | /************************************************* |
| 1562 | if (term == CHAR_LESS_THAN_SIGN) term = CHAR_GREATER_THAN_SIGN; | * Find forward referenced subpattern * |
| 1563 | thisname = ptr; | *************************************************/ |
| 1564 | while (*ptr != term) ptr++; | |
| 1565 | if (name != NULL && lorn == ptr - thisname && | /* This function scans along a pattern's text looking for capturing |
| 1566 | strncmp((const char *)name, (const char *)thisname, lorn) == 0) | subpatterns, and counting them. If it finds a named pattern that matches the |
| 1567 | return count; | name it is given, it returns its number. Alternatively, if the name is NULL, it |
| 1568 | returns when it reaches a given numbered subpattern. This is used for forward | |
| 1569 | references to subpatterns. We used to be able to start this scan from the | |
| 1570 | current compiling point, using the current count value from cd->bracount, and | |
| 1571 | do it all in a single loop, but the addition of the possibility of duplicate | |
| 1572 | subpattern numbers means that we have to scan from the very start, in order to | |
| 1573 | take account of such duplicates, and to use a recursive function to keep track | |
| 1574 | of the different types of group. | |
| 1575 | ||
| 1576 | Arguments: | |
| 1577 | cd compile background data | |
| 1578 | name name to seek, or NULL if seeking a numbered subpattern | |
| 1579 | lorn name length, or subpattern number if name is NULL | |
| 1580 | xmode TRUE if we are in /x mode | |
| 1581 | utf TRUE if we are in UTF-8 / UTF-16 mode | |
| 1582 | ||
| 1583 | Returns: the number of the found subpattern, or -1 if not found | |
| 1584 | */ | |
| 1585 | ||
| 1586 | static int | |
| 1587 | find_parens(compile_data *cd, const pcre_uchar *name, int lorn, BOOL xmode, | |
| 1588 | BOOL utf) | |
| 1589 | { | |
| 1590 | pcre_uchar *ptr = (pcre_uchar *)cd->start_pattern; | |
| 1591 | int count = 0; | |
| 1592 | int rc; | |
| 1593 | ||
| 1594 | /* If the pattern does not start with an opening parenthesis, the first call | |
| 1595 | to find_parens_sub() will scan right to the end (if necessary). However, if it | |
| 1596 | does start with a parenthesis, find_parens_sub() will return when it hits the | |
| 1597 | matching closing parens. That is why we have to have a loop. */ | |
| 1598 | ||
| 1599 | for (;;) | |
| 1600 | { | |
| 1601 | rc = find_parens_sub(&ptr, cd, name, lorn, xmode, utf, &count); | |
| 1602 | if (rc > 0 || *ptr++ == 0) break; | |
| 1603 | } | } |
| 1604 | ||
| 1605 | return -1; | return rc; |
| 1606 | } | } |
| 1607 | ||
| 1608 | ||
| 1609 | ||
| 1610 | ||
| 1611 | /************************************************* | /************************************************* |
| 1612 | * Find first significant op code * | * Find first significant op code * |
| 1613 | *************************************************/ | *************************************************/ |
| 1614 | ||
| 1615 | /* This is called by several functions that scan a compiled expression looking | /* This is called by several functions that scan a compiled expression looking |
| 1616 | for a fixed first character, or an anchoring op code etc. It skips over things | for a fixed first character, or an anchoring op code etc. It skips over things |
| 1617 | that do not influence this. For some calls, a change of option is important. | that do not influence this. For some calls, it makes sense to skip negative |
| 1618 | For some calls, it makes sense to skip negative forward and all backward | forward and all backward assertions, and also the \b assertion; for others it |
| 1619 | assertions, and also the \b assertion; for others it does not. | does not. |
| 1620 | ||
| 1621 | Arguments: | Arguments: |
| 1622 | code pointer to the start of the group | code pointer to the start of the group |
| options pointer to external options | ||
| optbit the option bit whose changing is significant, or | ||
| zero if none are | ||
| 1623 | skipassert TRUE if certain assertions are to be skipped | skipassert TRUE if certain assertions are to be skipped |
| 1624 | ||
| 1625 | Returns: pointer to the first significant opcode | Returns: pointer to the first significant opcode |
| 1626 | */ | */ |
| 1627 | ||
| 1628 | static const uschar* | static const pcre_uchar* |
| 1629 | first_significant_code(const uschar *code, int *options, int optbit, | first_significant_code(const pcre_uchar *code, BOOL skipassert) |
| BOOL skipassert) | ||
| 1630 | { | { |
| 1631 | for (;;) | for (;;) |
| 1632 | { | { |
| 1633 | switch ((int)*code) | switch ((int)*code) |
| 1634 | { | { |
| case OP_OPT: | ||
| if (optbit > 0 && ((int)code[1] & optbit) != (*options & optbit)) | ||
| *options = (int)code[1]; | ||
| code += 2; | ||
| break; | ||
| 1635 | case OP_ASSERT_NOT: | case OP_ASSERT_NOT: |
| 1636 | case OP_ASSERTBACK: | case OP_ASSERTBACK: |
| 1637 | case OP_ASSERTBACK_NOT: | case OP_ASSERTBACK_NOT: |
| 1638 | if (!skipassert) return code; | if (!skipassert) return code; |
| 1639 | do code += GET(code, 1); while (*code == OP_ALT); | do code += GET(code, 1); while (*code == OP_ALT); |
| 1640 | code += _pcre_OP_lengths[*code]; | code += PRIV(OP_lengths)[*code]; |
| 1641 | break; | break; |
| 1642 | ||
| 1643 | case OP_WORD_BOUNDARY: | case OP_WORD_BOUNDARY: |
| # | Line 1200 for (;;) | Line 1647 for (;;) |
| 1647 | ||
| 1648 | case OP_CALLOUT: | case OP_CALLOUT: |
| 1649 | case OP_CREF: | case OP_CREF: |
| 1650 | case OP_NCREF: | |
| 1651 | case OP_RREF: | case OP_RREF: |
| 1652 | case OP_NRREF: | |
| 1653 | case OP_DEF: | case OP_DEF: |
| 1654 | code += _pcre_OP_lengths[*code]; | code += PRIV(OP_lengths)[*code]; |
| 1655 | break; | break; |
| 1656 | ||
| 1657 | default: | default: |
| # | Line 1216 for (;;) | Line 1665 for (;;) |
| 1665 | ||
| 1666 | ||
| 1667 | /************************************************* | /************************************************* |
| 1668 | * Find the fixed length of a pattern * | * Find the fixed length of a branch * |
| 1669 | *************************************************/ | *************************************************/ |
| 1670 | ||
| 1671 | /* Scan a pattern and compute the fixed length of subject that will match it, | /* Scan a branch and compute the fixed length of subject that will match it, |
| 1672 | if the length is fixed. This is needed for dealing with backward assertions. | if the length is fixed. This is needed for dealing with backward assertions. |
| 1673 | In UTF8 mode, the result is in characters rather than bytes. | In UTF8 mode, the result is in characters rather than bytes. The branch is |
| 1674 | temporarily terminated with OP_END when this function is called. | |
| 1675 | ||
| 1676 | This function is called when a backward assertion is encountered, so that if it | |
| 1677 | fails, the error message can point to the correct place in the pattern. | |
| 1678 | However, we cannot do this when the assertion contains subroutine calls, | |
| 1679 | because they can be forward references. We solve this by remembering this case | |
| 1680 | and doing the check at the end; a flag specifies which mode we are running in. | |
| 1681 | ||
| 1682 | Arguments: | Arguments: |
| 1683 | code points to the start of the pattern (the bracket) | code points to the start of the pattern (the bracket) |
| 1684 | options the compiling options | utf TRUE in UTF-8 / UTF-16 mode |
| 1685 | atend TRUE if called when the pattern is complete | |
| 1686 | Returns: the fixed length, or -1 if there is no fixed length, | cd the "compile data" structure |
| 1687 | or -2 if \C was encountered | |
| 1688 | Returns: the fixed length, | |
| 1689 | or -1 if there is no fixed length, | |
| 1690 | or -2 if \C was encountered (in UTF-8 mode only) | |
| 1691 | or -3 if an OP_RECURSE item was encountered and atend is FALSE | |
| 1692 | or -4 if an unknown opcode was encountered (internal error) | |
| 1693 | */ | */ |
| 1694 | ||
| 1695 | static int | static int |
| 1696 | find_fixedlength(uschar *code, int options) | find_fixedlength(pcre_uchar *code, BOOL utf, BOOL atend, compile_data *cd) |
| 1697 | { | { |
| 1698 | int length = -1; | int length = -1; |
| 1699 | ||
| 1700 | register int branchlength = 0; | register int branchlength = 0; |
| 1701 | register uschar *cc = code + 1 + LINK_SIZE; | register pcre_uchar *cc = code + 1 + LINK_SIZE; |
| 1702 | ||
| 1703 | /* 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 |
| 1704 | branch, check the length against that of the other branches. */ | branch, check the length against that of the other branches. */ |
| # | Line 1245 branch, check the length against that of | Line 1706 branch, check the length against that of |
| 1706 | for (;;) | for (;;) |
| 1707 | { | { |
| 1708 | int d; | int d; |
| 1709 | pcre_uchar *ce, *cs; | |
| 1710 | register int op = *cc; | register int op = *cc; |
| 1711 | ||
| 1712 | switch (op) | switch (op) |
| 1713 | { | { |
| 1714 | /* We only need to continue for OP_CBRA (normal capturing bracket) and | |
| 1715 | OP_BRA (normal non-capturing bracket) because the other variants of these | |
| 1716 | opcodes are all concerned with unlimited repeated groups, which of course | |
| 1717 | are not of fixed length. */ | |
| 1718 | ||
| 1719 | case OP_CBRA: | case OP_CBRA: |
| 1720 | case OP_BRA: | case OP_BRA: |
| 1721 | case OP_ONCE: | case OP_ONCE: |
| 1722 | case OP_ONCE_NC: | |
| 1723 | case OP_COND: | case OP_COND: |
| 1724 | d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), options); | d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd); |
| 1725 | if (d < 0) return d; | if (d < 0) return d; |
| 1726 | branchlength += d; | branchlength += d; |
| 1727 | do cc += GET(cc, 1); while (*cc == OP_ALT); | do cc += GET(cc, 1); while (*cc == OP_ALT); |
| 1728 | cc += 1 + LINK_SIZE; | cc += 1 + LINK_SIZE; |
| 1729 | break; | break; |
| 1730 | ||
| 1731 | /* 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. |
| 1732 | 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 |
| 1733 | 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 |
| 1734 | the same code. Note that we must not include the OP_KETRxxx opcodes here, | |
| 1735 | because they all imply an unlimited repeat. */ | |
| 1736 | ||
| 1737 | case OP_ALT: | case OP_ALT: |
| 1738 | case OP_KET: | case OP_KET: |
| case OP_KETRMAX: | ||
| case OP_KETRMIN: | ||
| 1739 | case OP_END: | case OP_END: |
| 1740 | case OP_ACCEPT: | |
| 1741 | case OP_ASSERT_ACCEPT: | |
| 1742 | if (length < 0) length = branchlength; | if (length < 0) length = branchlength; |
| 1743 | else if (length != branchlength) return -1; | else if (length != branchlength) return -1; |
| 1744 | if (*cc != OP_ALT) return length; | if (*cc != OP_ALT) return length; |
| # | Line 1275 for (;;) | Line 1746 for (;;) |
| 1746 | branchlength = 0; | branchlength = 0; |
| 1747 | break; | break; |
| 1748 | ||
| 1749 | /* A true recursion implies not fixed length, but a subroutine call may | |
| 1750 | be OK. If the subroutine is a forward reference, we can't deal with | |
| 1751 | it until the end of the pattern, so return -3. */ | |
| 1752 | ||
| 1753 | case OP_RECURSE: | |
| 1754 | if (!atend) return -3; | |
| 1755 | cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1); /* Start subpattern */ | |
| 1756 | do ce += GET(ce, 1); while (*ce == OP_ALT); /* End subpattern */ | |
| 1757 | if (cc > cs && cc < ce) return -1; /* Recursion */ | |
| 1758 | d = find_fixedlength(cs + IMM2_SIZE, utf, atend, cd); | |
| 1759 | if (d < 0) return d; | |
| 1760 | branchlength += d; | |
| 1761 | cc += 1 + LINK_SIZE; | |
| 1762 | break; | |
| 1763 | ||
| 1764 | /* Skip over assertive subpatterns */ | /* Skip over assertive subpatterns */ |
| 1765 | ||
| 1766 | case OP_ASSERT: | case OP_ASSERT: |
| # | Line 1282 for (;;) | Line 1768 for (;;) |
| 1768 | case OP_ASSERTBACK: | case OP_ASSERTBACK: |
| 1769 | case OP_ASSERTBACK_NOT: | case OP_ASSERTBACK_NOT: |
| 1770 | do cc += GET(cc, 1); while (*cc == OP_ALT); | do cc += GET(cc, 1); while (*cc == OP_ALT); |
| 1771 | /* Fall through */ | cc += PRIV(OP_lengths)[*cc]; |
| 1772 | break; | |
| 1773 | ||
| 1774 | /* Skip over things that don't match chars */ | /* Skip over things that don't match chars */ |
| 1775 | ||
| 1776 | case OP_REVERSE: | case OP_MARK: |
| 1777 | case OP_PRUNE_ARG: | |
| 1778 | case OP_SKIP_ARG: | |
| 1779 | case OP_THEN_ARG: | |
| 1780 | cc += cc[1] + PRIV(OP_lengths)[*cc]; | |
| 1781 | break; | |
| 1782 | ||
| 1783 | case OP_CALLOUT: | |
| 1784 | case OP_CIRC: | |
| 1785 | case OP_CIRCM: | |
| 1786 | case OP_CLOSE: | |
| 1787 | case OP_COMMIT: | |
| 1788 | case OP_CREF: | case OP_CREF: |
| case OP_RREF: | ||
| 1789 | case OP_DEF: | case OP_DEF: |
| 1790 | case OP_OPT: | case OP_DOLL: |
| 1791 | case OP_CALLOUT: | case OP_DOLLM: |
| case OP_SOD: | ||
| case OP_SOM: | ||
| 1792 | case OP_EOD: | case OP_EOD: |
| 1793 | case OP_EODN: | case OP_EODN: |
| 1794 | case OP_CIRC: | case OP_FAIL: |
| 1795 | case OP_DOLL: | case OP_NCREF: |
| 1796 | case OP_NRREF: | |
| 1797 | case OP_NOT_WORD_BOUNDARY: | case OP_NOT_WORD_BOUNDARY: |
| 1798 | case OP_PRUNE: | |
| 1799 | case OP_REVERSE: | |
| 1800 | case OP_RREF: | |
| 1801 | case OP_SET_SOM: | |
| 1802 | case OP_SKIP: | |
| 1803 | case OP_SOD: | |
| 1804 | case OP_SOM: | |
| 1805 | case OP_THEN: | |
| 1806 | case OP_WORD_BOUNDARY: | case OP_WORD_BOUNDARY: |
| 1807 | cc += _pcre_OP_lengths[*cc]; | cc += PRIV(OP_lengths)[*cc]; |
| 1808 | break; | break; |
| 1809 | ||
| 1810 | /* Handle literal characters */ | /* Handle literal characters */ |
| 1811 | ||
| 1812 | case OP_CHAR: | case OP_CHAR: |
| 1813 | case OP_CHARNC: | case OP_CHARI: |
| 1814 | case OP_NOT: | case OP_NOT: |
| 1815 | case OP_NOTI: | |
| 1816 | branchlength++; | branchlength++; |
| 1817 | cc += 2; | cc += 2; |
| 1818 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 1819 | if ((options & PCRE_UTF8) != 0) | if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); |
| { | ||
| while ((*cc & 0xc0) == 0x80) cc++; | ||
| } | ||
| 1820 | #endif | #endif |
| 1821 | break; | break; |
| 1822 | ||
| # | Line 1322 for (;;) | Line 1824 for (;;) |
| 1824 | need to skip over a multibyte character in UTF8 mode. */ | need to skip over a multibyte character in UTF8 mode. */ |
| 1825 | ||
| 1826 | case OP_EXACT: | case OP_EXACT: |
| 1827 | case OP_EXACTI: | |
| 1828 | case OP_NOTEXACT: | |
| 1829 | case OP_NOTEXACTI: | |
| 1830 | branchlength += GET2(cc,1); | branchlength += GET2(cc,1); |
| 1831 | cc += 4; | cc += 2 + IMM2_SIZE; |
| 1832 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 1833 | if ((options & PCRE_UTF8) != 0) | if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); |
| { | ||
| while((*cc & 0x80) == 0x80) cc++; | ||
| } | ||
| 1834 | #endif | #endif |
| 1835 | break; | break; |
| 1836 | ||
| 1837 | case OP_TYPEEXACT: | case OP_TYPEEXACT: |
| 1838 | branchlength += GET2(cc,1); | branchlength += GET2(cc,1); |
| 1839 | if (cc[3] == OP_PROP || cc[3] == OP_NOTPROP) cc += 2; | if (cc[1 + IMM2_SIZE] == OP_PROP || cc[1 + IMM2_SIZE] == OP_NOTPROP) cc += 2; |
| 1840 | cc += 4; | cc += 1 + IMM2_SIZE + 1; |
| 1841 | break; | break; |
| 1842 | ||
| 1843 | /* Handle single-char matchers */ | /* Handle single-char matchers */ |
| # | Line 1345 for (;;) | Line 1847 for (;;) |
| 1847 | cc += 2; | cc += 2; |
| 1848 | /* Fall through */ | /* Fall through */ |
| 1849 | ||
| 1850 | case OP_HSPACE: | |
| 1851 | case OP_VSPACE: | |
| 1852 | case OP_NOT_HSPACE: | |
| 1853 | case OP_NOT_VSPACE: | |
| 1854 | case OP_NOT_DIGIT: | case OP_NOT_DIGIT: |
| 1855 | case OP_DIGIT: | case OP_DIGIT: |
| 1856 | case OP_NOT_WHITESPACE: | case OP_NOT_WHITESPACE: |
| # | Line 1357 for (;;) | Line 1863 for (;;) |
| 1863 | cc++; | cc++; |
| 1864 | break; | break; |
| 1865 | ||
| 1866 | /* The single-byte matcher isn't allowed */ | /* The single-byte matcher isn't allowed. This only happens in UTF-8 mode; |
| 1867 | otherwise \C is coded as OP_ALLANY. */ | |
| 1868 | ||
| 1869 | case OP_ANYBYTE: | case OP_ANYBYTE: |
| 1870 | return -2; | return -2; |
| 1871 | ||
| 1872 | /* Check a class for variable quantification */ | /* Check a class for variable quantification */ |
| 1873 | ||
| 1874 | #ifdef SUPPORT_UTF8 | #if defined SUPPORT_UTF || defined COMPILE_PCRE16 |
| 1875 | case OP_XCLASS: | case OP_XCLASS: |
| 1876 | cc += GET(cc, 1) - 33; | cc += GET(cc, 1) - PRIV(OP_lengths)[OP_CLASS]; |
| 1877 | /* Fall through */ | /* Fall through */ |
| 1878 | #endif | #endif |
| 1879 | ||
| 1880 | case OP_CLASS: | case OP_CLASS: |
| 1881 | case OP_NCLASS: | case OP_NCLASS: |
| 1882 | cc += 33; | cc += PRIV(OP_lengths)[OP_CLASS]; |
| 1883 | ||
| 1884 | switch (*cc) | switch (*cc) |
| 1885 | { | { |
| 1886 | case OP_CRPLUS: | |
| 1887 | case OP_CRMINPLUS: | |
| 1888 | case OP_CRSTAR: | case OP_CRSTAR: |
| 1889 | case OP_CRMINSTAR: | case OP_CRMINSTAR: |
| 1890 | case OP_CRQUERY: | case OP_CRQUERY: |
| # | Line 1384 for (;;) | Line 1893 for (;;) |
| 1893 | ||
| 1894 | case OP_CRRANGE: | case OP_CRRANGE: |
| 1895 | case OP_CRMINRANGE: | case OP_CRMINRANGE: |
| 1896 | if (GET2(cc,1) != GET2(cc,3)) return -1; | if (GET2(cc,1) != GET2(cc,1+IMM2_SIZE)) return -1; |
| 1897 | branchlength += GET2(cc,1); | branchlength += GET2(cc,1); |
| 1898 | cc += 5; | cc += 1 + 2 * IMM2_SIZE; |
| 1899 | break; | break; |
| 1900 | ||
| 1901 | default: | default: |
| # | Line 1396 for (;;) | Line 1905 for (;;) |
| 1905 | ||
| 1906 | /* Anything else is variable length */ | /* Anything else is variable length */ |
| 1907 | ||
| 1908 | default: | case OP_ANYNL: |
| 1909 | case OP_BRAMINZERO: | |
| 1910 | case OP_BRAPOS: | |
| 1911 | case OP_BRAPOSZERO: | |
| 1912 | case OP_BRAZERO: | |
| 1913 | case OP_CBRAPOS: | |
| 1914 | case OP_EXTUNI: | |
| 1915 | case OP_KETRMAX: | |
| 1916 | case OP_KETRMIN: | |
| 1917 | case OP_KETRPOS: | |
| 1918 | case OP_MINPLUS: | |
| 1919 | case OP_MINPLUSI: | |
| 1920 | case OP_MINQUERY: | |
| 1921 | case OP_MINQUERYI: | |
| 1922 | case OP_MINSTAR: | |
| 1923 | case OP_MINSTARI: | |
| 1924 | case OP_MINUPTO: | |
| 1925 | case OP_MINUPTOI: | |
| 1926 | case OP_NOTMINPLUS: | |
| 1927 | case OP_NOTMINPLUSI: | |
| 1928 | case OP_NOTMINQUERY: | |
| 1929 | case OP_NOTMINQUERYI: | |
| 1930 | case OP_NOTMINSTAR: | |
| 1931 | case OP_NOTMINSTARI: | |
| 1932 | case OP_NOTMINUPTO: | |
| 1933 | case OP_NOTMINUPTOI: | |
| 1934 | case OP_NOTPLUS: | |
| 1935 | case OP_NOTPLUSI: | |
| 1936 | case OP_NOTPOSPLUS: | |
| 1937 | case OP_NOTPOSPLUSI: | |
| 1938 | case OP_NOTPOSQUERY: | |
| 1939 | case OP_NOTPOSQUERYI: | |
| 1940 | case OP_NOTPOSSTAR: | |
| 1941 | case OP_NOTPOSSTARI: | |
| 1942 | case OP_NOTPOSUPTO: | |
| 1943 | case OP_NOTPOSUPTOI: | |
| 1944 | case OP_NOTQUERY: | |
| 1945 | case OP_NOTQUERYI: | |
| 1946 | case OP_NOTSTAR: | |
| 1947 | case OP_NOTSTARI: | |
| 1948 | case OP_NOTUPTO: | |
| 1949 | case OP_NOTUPTOI: | |
| 1950 | case OP_PLUS: | |
| 1951 | case OP_PLUSI: | |
| 1952 | case OP_POSPLUS: | |
| 1953 | case OP_POSPLUSI: | |
| 1954 | case OP_POSQUERY: | |
| 1955 | case OP_POSQUERYI: | |
| 1956 | case OP_POSSTAR: | |
| 1957 | case OP_POSSTARI: | |
| 1958 | case OP_POSUPTO: | |
| 1959 | case OP_POSUPTOI: | |
| 1960 | case OP_QUERY: | |
| 1961 | case OP_QUERYI: | |
| 1962 | case OP_REF: | |
| 1963 | case OP_REFI: | |
| 1964 | case OP_SBRA: | |
| 1965 | case OP_SBRAPOS: | |
| 1966 | case OP_SCBRA: | |
| 1967 | case OP_SCBRAPOS: | |
| 1968 | case OP_SCOND: | |
| 1969 | case OP_SKIPZERO: | |
| 1970 | case OP_STAR: | |
| 1971 | case OP_STARI: | |
| 1972 | case OP_TYPEMINPLUS: | |
| 1973 | case OP_TYPEMINQUERY: | |
| 1974 | case OP_TYPEMINSTAR: | |
| 1975 | case OP_TYPEMINUPTO: | |
| 1976 | case OP_TYPEPLUS: | |
| 1977 | case OP_TYPEPOSPLUS: | |
| 1978 | case OP_TYPEPOSQUERY: | |
| 1979 | case OP_TYPEPOSSTAR: | |
| 1980 | case OP_TYPEPOSUPTO: | |
| 1981 | case OP_TYPEQUERY: | |
| 1982 | case OP_TYPESTAR: | |
| 1983 | case OP_TYPEUPTO: | |
| 1984 | case OP_UPTO: | |
| 1985 | case OP_UPTOI: | |
| 1986 | return -1; | return -1; |
| 1987 | ||
| 1988 | /* Catch unrecognized opcodes so that when new ones are added they | |
| 1989 | are not forgotten, as has happened in the past. */ | |
| 1990 | ||
| 1991 | default: | |
| 1992 | return -4; | |
| 1993 | } | } |
| 1994 | } | } |
| 1995 | /* Control never gets here */ | /* Control never gets here */ |
| # | Line 1407 for (;;) | Line 1999 for (;;) |
| 1999 | ||
| 2000 | ||
| 2001 | /************************************************* | /************************************************* |
| 2002 | * Scan compiled regex for numbered bracket * | * Scan compiled regex for specific bracket * |
| 2003 | *************************************************/ | *************************************************/ |
| 2004 | ||
| 2005 | /* This little function scans through a compiled pattern until it finds a | /* This little function scans through a compiled pattern until it finds a |
| 2006 | capturing bracket with the given number. | capturing bracket with the given number, or, if the number is negative, an |
| 2007 | instance of OP_REVERSE for a lookbehind. The function is global in the C sense | |
| 2008 | so that it can be called from pcre_study() when finding the minimum matching | |
| 2009 | length. | |
| 2010 | ||
| 2011 | Arguments: | Arguments: |
| 2012 | code points to start of expression | code points to start of expression |
| 2013 | utf8 TRUE in UTF-8 mode | utf TRUE in UTF-8 / UTF-16 mode |
| 2014 | number the required bracket number | number the required bracket number or negative to find a lookbehind |
| 2015 | ||
| 2016 | 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 |
| 2017 | */ | */ |
| 2018 | ||
| 2019 | static const uschar * | const pcre_uchar * |
| 2020 | find_bracket(const uschar *code, BOOL utf8, int number) | PRIV(find_bracket)(const pcre_uchar *code, BOOL utf, int number) |
| 2021 | { | { |
| 2022 | for (;;) | for (;;) |
| 2023 | { | { |
| 2024 | register int c = *code; | register int c = *code; |
| 2025 | ||
| 2026 | if (c == OP_END) return NULL; | if (c == OP_END) return NULL; |
| 2027 | ||
| 2028 | /* XCLASS is used for classes that cannot be represented just by a bit | /* XCLASS is used for classes that cannot be represented just by a bit |
| # | Line 1435 for (;;) | Line 2031 for (;;) |
| 2031 | ||
| 2032 | if (c == OP_XCLASS) code += GET(code, 1); | if (c == OP_XCLASS) code += GET(code, 1); |
| 2033 | ||
| 2034 | /* Handle recursion */ | |
| 2035 | ||
| 2036 | else if (c == OP_REVERSE) | |
| 2037 | { | |
| 2038 | if (number < 0) return (pcre_uchar *)code; | |
| 2039 | code += PRIV(OP_lengths)[c]; | |
| 2040 | } | |
| 2041 | ||
| 2042 | /* Handle capturing bracket */ | /* Handle capturing bracket */ |
| 2043 | ||
| 2044 | else if (c == OP_CBRA) | else if (c == OP_CBRA || c == OP_SCBRA || |
| 2045 | c == OP_CBRAPOS || c == OP_SCBRAPOS) | |
| 2046 | { | { |
| 2047 | int n = GET2(code, 1+LINK_SIZE); | int n = GET2(code, 1+LINK_SIZE); |
| 2048 | if (n == number) return (uschar *)code; | if (n == number) return (pcre_uchar *)code; |
| 2049 | code += _pcre_OP_lengths[c]; | code += PRIV(OP_lengths)[c]; |
| 2050 | } | } |
| 2051 | ||
| 2052 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
| 2053 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
| 2054 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
| 2055 | must add in its length. */ | |
| 2056 | ||
| 2057 | else | else |
| 2058 | { | { |
| # | Line 1468 for (;;) | Line 2074 for (;;) |
| 2074 | case OP_TYPEMINUPTO: | case OP_TYPEMINUPTO: |
| 2075 | case OP_TYPEEXACT: | case OP_TYPEEXACT: |
| 2076 | case OP_TYPEPOSUPTO: | case OP_TYPEPOSUPTO: |
| 2077 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[1 + IMM2_SIZE] == OP_PROP |
| 2078 | || code[1 + IMM2_SIZE] == OP_NOTPROP) code += 2; | |
| 2079 | break; | |
| 2080 | ||
| 2081 | case OP_MARK: | |
| 2082 | case OP_PRUNE_ARG: | |
| 2083 | case OP_SKIP_ARG: | |
| 2084 | code += code[1]; | |
| 2085 | break; | |
| 2086 | ||
| 2087 | case OP_THEN_ARG: | |
| 2088 | code += code[1]; | |
| 2089 | break; | break; |
| 2090 | } | } |
| 2091 | ||
| 2092 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
| 2093 | ||
| 2094 | code += _pcre_OP_lengths[c]; | code += PRIV(OP_lengths)[c]; |
| 2095 | ||
| 2096 | /* In UTF-8 mode, opcodes that are followed by a character may be followed by | /* In UTF-8 mode, opcodes that are followed by a character may be followed by |
| 2097 | a multi-byte character. The length in the table is a minimum, so we have to | a multi-byte character. The length in the table is a minimum, so we have to |
| 2098 | arrange to skip the extra bytes. */ | arrange to skip the extra bytes. */ |
| 2099 | ||
| 2100 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 2101 | if (utf8) switch(c) | if (utf) switch(c) |
| 2102 | { | { |
| 2103 | case OP_CHAR: | case OP_CHAR: |
| 2104 | case OP_CHARNC: | case OP_CHARI: |
| 2105 | case OP_EXACT: | case OP_EXACT: |
| 2106 | case OP_EXACTI: | |
| 2107 | case OP_UPTO: | case OP_UPTO: |
| 2108 | case OP_UPTOI: | |
| 2109 | case OP_MINUPTO: | case OP_MINUPTO: |
| 2110 | case OP_MINUPTOI: | |
| 2111 | case OP_POSUPTO: | case OP_POSUPTO: |
| 2112 | case OP_POSUPTOI: | |
| 2113 | case OP_STAR: | case OP_STAR: |
| 2114 | case OP_STARI: | |
| 2115 | case OP_MINSTAR: | case OP_MINSTAR: |
| 2116 | case OP_MINSTARI: | |
| 2117 | case OP_POSSTAR: | case OP_POSSTAR: |
| 2118 | case OP_POSSTARI: | |
| 2119 | case OP_PLUS: | case OP_PLUS: |
| 2120 | case OP_PLUSI: | |
| 2121 | case OP_MINPLUS: | case OP_MINPLUS: |
| 2122 | case OP_MINPLUSI: | |
| 2123 | case OP_POSPLUS: | case OP_POSPLUS: |
| 2124 | case OP_POSPLUSI: | |
| 2125 | case OP_QUERY: | case OP_QUERY: |
| 2126 | case OP_QUERYI: | |
| 2127 | case OP_MINQUERY: | case OP_MINQUERY: |
| 2128 | case OP_MINQUERYI: | |
| 2129 | case OP_POSQUERY: | case OP_POSQUERY: |
| 2130 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | case OP_POSQUERYI: |
| 2131 | if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]); | |
| 2132 | break; | break; |
| 2133 | } | } |
| 2134 | #else | #else |
| 2135 | (void)(utf8); /* Keep compiler happy by referencing function argument */ | (void)(utf); /* Keep compiler happy by referencing function argument */ |
| 2136 | #endif | #endif |
| 2137 | } | } |
| 2138 | } | } |
| # | Line 1519 instance of OP_RECURSE. | Line 2149 instance of OP_RECURSE. |
| 2149 | ||
| 2150 | Arguments: | Arguments: |
| 2151 | code points to start of expression | code points to start of expression |
| 2152 | utf8 TRUE in UTF-8 mode | utf TRUE in UTF-8 / UTF-16 mode |
| 2153 | ||
| 2154 | 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 |
| 2155 | */ | */ |
| 2156 | ||
| 2157 | static const uschar * | static const pcre_uchar * |
| 2158 | find_recurse(const uschar *code, BOOL utf8) | find_recurse(const pcre_uchar *code, BOOL utf) |
| 2159 | { | { |
| 2160 | for (;;) | for (;;) |
| 2161 | { | { |
| # | Line 1541 for (;;) | Line 2171 for (;;) |
| 2171 | ||
| 2172 | /* Otherwise, we can get the item's length from the table, except that for | /* Otherwise, we can get the item's length from the table, except that for |
| 2173 | repeated character types, we have to test for \p and \P, which have an extra | repeated character types, we have to test for \p and \P, which have an extra |
| 2174 | two bytes of parameters. */ | two bytes of parameters, and for MARK/PRUNE/SKIP/THEN with an argument, we |
| 2175 | must add in its length. */ | |
| 2176 | ||
| 2177 | else | else |
| 2178 | { | { |
| # | Line 1563 for (;;) | Line 2194 for (;;) |
| 2194 | case OP_TYPEUPTO: | case OP_TYPEUPTO: |
| 2195 | case OP_TYPEMINUPTO: | case OP_TYPEMINUPTO: |
| 2196 | case OP_TYPEEXACT: | case OP_TYPEEXACT: |
| 2197 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[1 + IMM2_SIZE] == OP_PROP |
| 2198 | || code[1 + IMM2_SIZE] == OP_NOTPROP) code += 2; | |
| 2199 | break; | |
| 2200 | ||
| 2201 | case OP_MARK: | |
| 2202 | case OP_PRUNE_ARG: | |
| 2203 | case OP_SKIP_ARG: | |
| 2204 | code += code[1]; | |
| 2205 | break; | |
| 2206 | ||
| 2207 | case OP_THEN_ARG: | |
| 2208 | code += code[1]; | |
| 2209 | break; | break; |
| 2210 | } | } |
| 2211 | ||
| 2212 | /* Add in the fixed length from the table */ | /* Add in the fixed length from the table */ |
| 2213 | ||
| 2214 | code += _pcre_OP_lengths[c]; | code += PRIV(OP_lengths)[c]; |
| 2215 | ||
| 2216 | /* 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 |
| 2217 | 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 |
| 2218 | to arrange to skip the extra bytes. */ | to arrange to skip the extra bytes. */ |
| 2219 | ||
| 2220 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 2221 | if (utf8) switch(c) | if (utf) switch(c) |
| 2222 | { | { |
| 2223 | case OP_CHAR: | case OP_CHAR: |
| 2224 | case OP_CHARNC: | case OP_CHARI: |
| 2225 | case OP_EXACT: | case OP_EXACT: |
| 2226 | case OP_EXACTI: | |
| 2227 | case OP_UPTO: | case OP_UPTO: |
| 2228 | case OP_UPTOI: | |
| 2229 | case OP_MINUPTO: | case OP_MINUPTO: |
| 2230 | case OP_MINUPTOI: | |
| 2231 | case OP_POSUPTO: | case OP_POSUPTO: |
| 2232 | case OP_POSUPTOI: | |
| 2233 | case OP_STAR: | case OP_STAR: |
| 2234 | case OP_STARI: | |
| 2235 | case OP_MINSTAR: | case OP_MINSTAR: |
| 2236 | case OP_MINSTARI: | |
| 2237 | case OP_POSSTAR: | case OP_POSSTAR: |
| 2238 | case OP_POSSTARI: | |
| 2239 | case OP_PLUS: | case OP_PLUS: |
| 2240 | case OP_PLUSI: | |
| 2241 | case OP_MINPLUS: | case OP_MINPLUS: |
| 2242 | case OP_MINPLUSI: | |
| 2243 | case OP_POSPLUS: | case OP_POSPLUS: |
| 2244 | case OP_POSPLUSI: | |
| 2245 | case OP_QUERY: | case OP_QUERY: |
| 2246 | case OP_QUERYI: | |
| 2247 | case OP_MINQUERY: | case OP_MINQUERY: |
| 2248 | case OP_MINQUERYI: | |
| 2249 | case OP_POSQUERY: | case OP_POSQUERY: |
| 2250 | if (code[-1] >= 0xc0) code += _pcre_utf8_table4[code[-1] & 0x3f]; | case OP_POSQUERYI: |
| 2251 | if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]); | |
| 2252 | break; | break; |
| 2253 | } | } |
| 2254 | #else | #else |
| 2255 | (void)(utf8); /* Keep compiler happy by referencing function argument */ | (void)(utf); /* Keep compiler happy by referencing function argument */ |
| 2256 | #endif | #endif |
| 2257 | } | } |
| 2258 | } | } |
| # | Line 1620 bracket whose current branch will alread | Line 2275 bracket whose current branch will alread |
| 2275 | Arguments: | Arguments: |
| 2276 | code points to start of search | code points to start of search |
| 2277 | endcode points to where to stop | endcode points to where to stop |
| 2278 | utf8 TRUE if in UTF8 mode | utf TRUE if in UTF-8 / UTF-16 mode |
| 2279 | cd contains pointers to tables etc. | |
| 2280 | ||
| 2281 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
| 2282 | */ | */ |
| 2283 | ||
| 2284 | static BOOL | static BOOL |
| 2285 | could_be_empty_branch(const uschar *code, const uschar *endcode, BOOL utf8) | could_be_empty_branch(const pcre_uchar *code, const pcre_uchar *endcode, |
| 2286 | BOOL utf, compile_data *cd) | |
| 2287 | { | { |
| 2288 | register int c; | register int c; |
| 2289 | for (code = first_significant_code(code + _pcre_OP_lengths[*code], NULL, 0, TRUE); | for (code = first_significant_code(code + PRIV(OP_lengths)[*code], TRUE); |
| 2290 | code < endcode; | code < endcode; |
| 2291 | code = first_significant_code(code + _pcre_OP_lengths[c], NULL, 0, TRUE)) | code = first_significant_code(code + PRIV(OP_lengths)[c], TRUE)) |
| 2292 | { | { |
| 2293 | const uschar *ccode; | const pcre_uchar *ccode; |
| 2294 | ||
| 2295 | c = *code; | c = *code; |
| 2296 | ||
| # | Line 1647 for (code = first_significant_code(code | Line 2304 for (code = first_significant_code(code |
| 2304 | continue; | continue; |
| 2305 | } | } |
| 2306 | ||
| 2307 | /* For a recursion/subroutine call, if its end has been reached, which | |
| 2308 | implies a backward reference subroutine call, we can scan it. If it's a | |
| 2309 | forward reference subroutine call, we can't. To detect forward reference | |
| 2310 | we have to scan up the list that is kept in the workspace. This function is | |
| 2311 | called only when doing the real compile, not during the pre-compile that | |
| 2312 | measures the size of the compiled pattern. */ | |
| 2313 | ||
| 2314 | if (c == OP_RECURSE) | |
| 2315 | { | |
| 2316 | const pcre_uchar *scode; | |
| 2317 | BOOL empty_branch; | |
| 2318 | ||
| 2319 | /* Test for forward reference */ | |
| 2320 | ||
| 2321 | for (scode = cd->start_workspace; scode < cd->hwm; scode += LINK_SIZE) | |
| 2322 | if (GET(scode, 0) == code + 1 - cd->start_code) return TRUE; | |
| 2323 | ||
| 2324 | /* Not a forward reference, test for completed backward reference */ | |
| 2325 | ||
| 2326 | empty_branch = FALSE; | |
| 2327 | scode = cd->start_code + GET(code, 1); | |
| 2328 | if (GET(scode, 1) == 0) return TRUE; /* Unclosed */ | |
| 2329 | ||
| 2330 | /* Completed backwards reference */ | |
| 2331 | ||
| 2332 | do | |
| 2333 | { | |
| 2334 | if (could_be_empty_branch(scode, endcode, utf, cd)) | |
| 2335 | { | |
| 2336 | empty_branch = TRUE; | |
| 2337 | break; | |
| 2338 | } | |
| 2339 | scode += GET(scode, 1); | |
| 2340 | } | |
| 2341 | while (*scode == OP_ALT); | |
| 2342 | ||
| 2343 | if (!empty_branch) return FALSE; /* All branches are non-empty */ | |
| 2344 | continue; | |
| 2345 | } | |
| 2346 | ||
| 2347 | /* Groups with zero repeats can of course be empty; skip them. */ | /* Groups with zero repeats can of course be empty; skip them. */ |
| 2348 | ||
| 2349 | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO) | if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO || |
| 2350 | c == OP_BRAPOSZERO) | |
| 2351 | { | |
| 2352 | code += PRIV(OP_lengths)[c]; | |
| 2353 | do code += GET(code, 1); while (*code == OP_ALT); | |
| 2354 | c = *code; | |
| 2355 | continue; | |
| 2356 | } | |
| 2357 | ||
| 2358 | /* A nested group that is already marked as "could be empty" can just be | |
| 2359 | skipped. */ | |
| 2360 | ||
| 2361 | if (c == OP_SBRA || c == OP_SBRAPOS || | |
| 2362 | c == OP_SCBRA || c == OP_SCBRAPOS) | |
| 2363 | { | { |
| code += _pcre_OP_lengths[c]; | ||
| 2364 | do code += GET(code, 1); while (*code == OP_ALT); | do code += GET(code, 1); while (*code == OP_ALT); |
| 2365 | c = *code; | c = *code; |
| 2366 | continue; | continue; |
| # | Line 1659 for (code = first_significant_code(code | Line 2368 for (code = first_significant_code(code |
| 2368 | ||
| 2369 | /* For other groups, scan the branches. */ | /* For other groups, scan the branches. */ |
| 2370 | ||
| 2371 | if (c == OP_BRA || c == OP_CBRA || c == OP_ONCE || c == OP_COND) | if (c == OP_BRA || c == OP_BRAPOS || |
| 2372 | c == OP_CBRA || c == OP_CBRAPOS || | |
| 2373 | c == OP_ONCE || c == OP_ONCE_NC || | |
| 2374 | c == OP_COND) | |
| 2375 | { | { |
| 2376 | BOOL empty_branch; | BOOL empty_branch; |
| 2377 | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ | if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ |
| 2378 | ||
| 2379 | /* Scan a closed bracket */ | /* If a conditional group has only one branch, there is a second, implied, |
| 2380 | empty branch, so just skip over the conditional, because it could be empty. | |
| 2381 | Otherwise, scan the individual branches of the group. */ | |
| 2382 | ||
| 2383 | empty_branch = FALSE; | if (c == OP_COND && code[GET(code, 1)] != OP_ALT) |
| do | ||
| { | ||
| if (!empty_branch && could_be_empty_branch(code, endcode, utf8)) | ||
| empty_branch = TRUE; | ||
| 2384 | code += GET(code, 1); | code += GET(code, 1); |
| 2385 | else | |
| 2386 | { | |
| 2387 | empty_branch = FALSE; | |
| 2388 | do | |
| 2389 | { | |
| 2390 | if (!empty_branch && could_be_empty_branch(code, endcode, utf, cd)) | |
| 2391 | empty_branch = TRUE; | |
| 2392 | code += GET(code, 1); | |
| 2393 | } | |
| 2394 | while (*code == OP_ALT); | |
| 2395 | if (!empty_branch) return FALSE; /* All branches are non-empty */ | |
| 2396 | } | } |
| 2397 | while (*code == OP_ALT); | |
| if (!empty_branch) return FALSE; /* All branches are non-empty */ | ||
| 2398 | c = *code; | c = *code; |
| 2399 | continue; | continue; |
| 2400 | } | } |
| # | Line 1685 for (code = first_significant_code(code | Line 2405 for (code = first_significant_code(code |
| 2405 | { | { |
| 2406 | /* Check for quantifiers after a class. XCLASS is used for classes that | /* Check for quantifiers after a class. XCLASS is used for classes that |
| 2407 | cannot be represented just by a bit map. This includes negated single | cannot be represented just by a bit map. This includes negated single |
| 2408 | high-valued characters. The length in _pcre_OP_lengths[] is zero; the | high-valued characters. The length in PRIV(OP_lengths)[] is zero; the |
| 2409 | actual length is stored in the compiled code, so we must update "code" | actual length is stored in the compiled code, so we must update "code" |
| 2410 | here. */ | here. */ |
| 2411 | ||
| 2412 | #ifdef SUPPORT_UTF8 | #if defined SUPPORT_UTF || !defined COMPILE_PCRE8 |
| 2413 | case OP_XCLASS: | case OP_XCLASS: |
| 2414 | ccode = code += GET(code, 1); | ccode = code += GET(code, 1); |
| 2415 | goto CHECK_CLASS_REPEAT; | goto CHECK_CLASS_REPEAT; |
| # | Line 1697 for (code = first_significant_code(code | Line 2417 for (code = first_significant_code(code |
| 2417 | ||
| 2418 | case OP_CLASS: | case OP_CLASS: |
| 2419 | case OP_NCLASS: | case OP_NCLASS: |
| 2420 | ccode = code + 33; | ccode = code + PRIV(OP_lengths)[OP_CLASS]; |
| 2421 | ||
| 2422 | #ifdef SUPPORT_UTF8 | #if defined SUPPORT_UTF || !defined COMPILE_PCRE8 |
| 2423 | CHECK_CLASS_REPEAT: | CHECK_CLASS_REPEAT: |
| 2424 | #endif | #endif |
| 2425 | ||
| # | Line 1738 for (code = first_significant_code(code | Line 2458 for (code = first_significant_code(code |
| 2458 | case OP_ALLANY: | case OP_ALLANY: |
| 2459 | case OP_ANYBYTE: | case OP_ANYBYTE: |
| 2460 | case OP_CHAR: | case OP_CHAR: |
| 2461 | case OP_CHARNC: | case OP_CHARI: |
| 2462 | case OP_NOT: | case OP_NOT: |
| 2463 | case OP_NOTI: | |
| 2464 | case OP_PLUS: | case OP_PLUS: |
| 2465 | case OP_MINPLUS: | case OP_MINPLUS: |
| 2466 | case OP_POSPLUS: | case OP_POSPLUS: |
| # | Line 1771 for (code = first_significant_code(code | Line 2492 for (code = first_significant_code(code |
| 2492 | case OP_TYPEUPTO: | case OP_TYPEUPTO: |
| 2493 | case OP_TYPEMINUPTO: | case OP_TYPEMINUPTO: |
| 2494 | case OP_TYPEPOSUPTO: | case OP_TYPEPOSUPTO: |
| 2495 | if (code[3] == OP_PROP || code[3] == OP_NOTPROP) code += 2; | if (code[1 + IMM2_SIZE] == OP_PROP |
| 2496 | || code[1 + IMM2_SIZE] == OP_NOTPROP) code += 2; | |
| 2497 | break; | break; |
| 2498 | ||
| 2499 | /* End of branch */ | /* End of branch */ |
| # | Line 1779 for (code = first_significant_code(code | Line 2501 for (code = first_significant_code(code |
| 2501 | case OP_KET: | case OP_KET: |
| 2502 | case OP_KETRMAX: | case OP_KETRMAX: |
| 2503 | case OP_KETRMIN: | case OP_KETRMIN: |
| 2504 | case OP_KETRPOS: | |
| 2505 | case OP_ALT: | case OP_ALT: |
| 2506 | return TRUE; | return TRUE; |
| 2507 | ||
| 2508 | /* In UTF-8 mode, STAR, MINSTAR, POSSTAR, QUERY, MINQUERY, POSQUERY, UPTO, | /* In UTF-8 mode, STAR, MINSTAR, POSSTAR, QUERY, MINQUERY, POSQUERY, UPTO, |
| 2509 | MINUPTO, and POSUPTO may be followed by a multibyte character */ | MINUPTO, and POSUPTO may be followed by a multibyte character */ |
| 2510 | ||
| 2511 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 2512 | case OP_STAR: | case OP_STAR: |
| 2513 | case OP_STARI: | |
| 2514 | case OP_MINSTAR: | case OP_MINSTAR: |
| 2515 | case OP_MINSTARI: | |
| 2516 | case OP_POSSTAR: | case OP_POSSTAR: |
| 2517 | case OP_POSSTARI: | |
| 2518 | case OP_QUERY: | case OP_QUERY: |
| 2519 | case OP_QUERYI: | |
| 2520 | case OP_MINQUERY: | case OP_MINQUERY: |
| 2521 | case OP_MINQUERYI: | |
| 2522 | case OP_POSQUERY: | case OP_POSQUERY: |
| 2523 | case OP_POSQUERYI: | |
| 2524 | if (utf && HAS_EXTRALEN(code[1])) code += GET_EXTRALEN(code[1]); | |
| 2525 | break; | |
| 2526 | ||
| 2527 | case OP_UPTO: | case OP_UPTO: |
| 2528 | case OP_UPTOI: | |
| 2529 | case OP_MINUPTO: | case OP_MINUPTO: |
| 2530 | case OP_MINUPTOI: | |
| 2531 | case OP_POSUPTO: | case OP_POSUPTO: |
| 2532 | if (utf8) while ((code[2] & 0xc0) == 0x80) code++; | case OP_POSUPTOI: |
| 2533 | if (utf && HAS_EXTRALEN(code[1 + IMM2_SIZE])) code += GET_EXTRALEN(code[1 + IMM2_SIZE]); | |
| 2534 | break; | |
| 2535 | #endif | |
| 2536 | ||
| 2537 | /* MARK, and PRUNE/SKIP/THEN with an argument must skip over the argument | |
| 2538 | string. */ | |
| 2539 | ||
| 2540 | case OP_MARK: | |
| 2541 | case OP_PRUNE_ARG: | |
| 2542 | case OP_SKIP_ARG: | |
| 2543 | code += code[1]; | |
| 2544 | break; | |
| 2545 | ||
| 2546 | case OP_THEN_ARG: | |
| 2547 | code += code[1]; | |
| 2548 | break; | |
| 2549 | ||
| 2550 | /* None of the remaining opcodes are required to match a character. */ | |
| 2551 | ||
| 2552 | default: | |
| 2553 | break; | break; |
| #endif | ||
| 2554 | } | } |
| 2555 | } | } |
| 2556 | ||
| # | Line 1814 return TRUE; | Line 2567 return TRUE; |
| 2567 | 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 |
| 2568 | 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, |
| 2569 | 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. |
| 2570 | This function is called only during the real compile, not during the | |
| 2571 | pre-compile. | |
| 2572 | ||
| 2573 | Arguments: | Arguments: |
| 2574 | code points to start of the recursion | code points to start of the recursion |
| 2575 | endcode points to where to stop (current RECURSE item) | endcode points to where to stop (current RECURSE item) |
| 2576 | bcptr points to the chain of current (unclosed) branch starts | bcptr points to the chain of current (unclosed) branch starts |
| 2577 | utf8 TRUE if in UTF-8 mode | utf TRUE if in UTF-8 / UTF-16 mode |
| 2578 | cd pointers to tables etc | |
| 2579 | ||
| 2580 | Returns: TRUE if what is matched could be empty | Returns: TRUE if what is matched could be empty |
| 2581 | */ | */ |
| 2582 | ||
| 2583 | static BOOL | static BOOL |
| 2584 | could_be_empty(const uschar *code, const uschar *endcode, branch_chain *bcptr, | could_be_empty(const pcre_uchar *code, const pcre_uchar *endcode, |
| 2585 | BOOL utf8) | branch_chain *bcptr, BOOL utf, compile_data *cd) |
| 2586 | { | { |
| 2587 | while (bcptr != NULL && bcptr->current >= code) | while (bcptr != NULL && bcptr->current_branch >= code) |
| 2588 | { | { |
| 2589 | if (!could_be_empty_branch(bcptr->current, endcode, utf8)) return FALSE; | if (!could_be_empty_branch(bcptr->current_branch, endcode, utf, cd)) |
| 2590 | return FALSE; | |
| 2591 | bcptr = bcptr->outer; | bcptr = bcptr->outer; |
| 2592 | } | } |
| 2593 | return TRUE; | return TRUE; |
| # | Line 1862 where Perl recognizes it as the POSIX cl | Line 2619 where Perl recognizes it as the POSIX cl |
| 2619 | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, | "l\ower". This is a lesser evil that not diagnosing bad classes when Perl does, |
| 2620 | I think. | I think. |
| 2621 | ||
| 2622 | A user pointed out that PCRE was rejecting [:a[:digit:]] whereas Perl was not. | |
| 2623 | It seems that the appearance of a nested POSIX class supersedes an apparent | |
| 2624 | external class. For example, [:a[:digit:]b:] matches "a", "b", ":", or | |
| 2625 | a digit. | |
| 2626 | ||
| 2627 | In Perl, unescaped square brackets may also appear as part of class names. For | |
| 2628 | example, [:a[:abc]b:] gives unknown POSIX class "[:abc]b:]". However, for | |
| 2629 | [:a[:abc]b][b:] it gives unknown POSIX class "[:abc]b][b:]", which does not | |
| 2630 | seem right at all. PCRE does not allow closing square brackets in POSIX class | |
| 2631 | names. | |
| 2632 | ||
| 2633 | Arguments: | Arguments: |
| 2634 | ptr pointer to the initial [ | ptr pointer to the initial [ |
| 2635 | endptr where to return the end pointer | endptr where to return the end pointer |
| # | Line 1870 Returns: TRUE or FALSE | Line 2638 Returns: TRUE or FALSE |
| 2638 | */ | */ |
| 2639 | ||
| 2640 | static BOOL | static BOOL |
| 2641 | check_posix_syntax(const uschar *ptr, const uschar **endptr) | check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr) |
| 2642 | { | { |
| 2643 | int terminator; /* Don't combine these lines; the Solaris cc */ | int terminator; /* Don't combine these lines; the Solaris cc */ |
| 2644 | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ | terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */ |
| 2645 | for (++ptr; *ptr != 0; ptr++) | for (++ptr; *ptr != 0; ptr++) |
| 2646 | { | { |
| 2647 | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) ptr++; else | if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2648 | ptr++; | |
| 2649 | else if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE; | |
| 2650 | else | |
| 2651 | { | { |
| if (*ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE; | ||
| 2652 | if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) | if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET) |
| 2653 | { | { |
| 2654 | *endptr = ptr; | *endptr = ptr; |
| 2655 | return TRUE; | return TRUE; |
| 2656 | } | } |
| 2657 | if (*ptr == CHAR_LEFT_SQUARE_BRACKET && | |
| 2658 | (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT || | |
| 2659 | ptr[1] == CHAR_EQUALS_SIGN) && | |
| 2660 | check_posix_syntax(ptr, endptr)) | |
| 2661 | return FALSE; | |
| 2662 | } | } |
| 2663 | } | } |
| 2664 | return FALSE; | return FALSE; |
| # | Line 1907 Returns: a value representing the na | Line 2682 Returns: a value representing the na |
| 2682 | */ | */ |
| 2683 | ||
| 2684 | static int | static int |
| 2685 | check_posix_name(const uschar *ptr, int len) | check_posix_name(const pcre_uchar *ptr, int len) |
| 2686 | { | { |
| 2687 | const char *pn = posix_names; | const char *pn = posix_names; |
| 2688 | register int yield = 0; | register int yield = 0; |
| 2689 | while (posix_name_lengths[yield] != 0) | while (posix_name_lengths[yield] != 0) |
| 2690 | { | { |
| 2691 | if (len == posix_name_lengths[yield] && | if (len == posix_name_lengths[yield] && |
| 2692 | strncmp((const char *)ptr, pn, len) == 0) return yield; | STRNCMP_UC_C8(ptr, pn, len) == 0) return yield; |
| 2693 | pn += posix_name_lengths[yield] + 1; | pn += posix_name_lengths[yield] + 1; |
| 2694 | yield++; | yield++; |
| 2695 | } | } |
| # | Line 1946 value in the reference (which is a group | Line 2721 value in the reference (which is a group |
| 2721 | Arguments: | Arguments: |
| 2722 | group points to the start of the group | group points to the start of the group |
| 2723 | adjust the amount by which the group is to be moved | adjust the amount by which the group is to be moved |
| 2724 | utf8 TRUE in UTF-8 mode | utf TRUE in UTF-8 / UTF-16 mode |
| 2725 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
| 2726 | save_hwm the hwm forward reference pointer at the start of the group | save_hwm the hwm forward reference pointer at the start of the group |
| 2727 | ||
| # | Line 1954 Returns: nothing | Line 2729 Returns: nothing |
| 2729 | */ | */ |
| 2730 | ||
| 2731 | static void | static void |
| 2732 | adjust_recurse(uschar *group, int adjust, BOOL utf8, compile_data *cd, | adjust_recurse(pcre_uchar *group, int adjust, BOOL utf, compile_data *cd, |
| 2733 | uschar *save_hwm) | pcre_uchar *save_hwm) |
| 2734 | { | { |
| 2735 | uschar *ptr = group; | pcre_uchar *ptr = group; |
| 2736 | ||
| 2737 | while ((ptr = (uschar *)find_recurse(ptr, utf8)) != NULL) | while ((ptr = (pcre_uchar *)find_recurse(ptr, utf)) != NULL) |
| 2738 | { | { |
| 2739 | int offset; | int offset; |
| 2740 | uschar *hc; | pcre_uchar *hc; |
| 2741 | ||
| 2742 | /* See if this recursion is on the forward reference list. If so, adjust the | /* See if this recursion is on the forward reference list. If so, adjust the |
| 2743 | reference. */ | reference. */ |
| # | Line 2007 Arguments: | Line 2782 Arguments: |
| 2782 | Returns: new code pointer | Returns: new code pointer |
| 2783 | */ | */ |
| 2784 | ||
| 2785 | static uschar * | static pcre_uchar * |
| 2786 | auto_callout(uschar *code, const uschar *ptr, compile_data *cd) | auto_callout(pcre_uchar *code, const pcre_uchar *ptr, compile_data *cd) |
| 2787 | { | { |
| 2788 | *code++ = OP_CALLOUT; | *code++ = OP_CALLOUT; |
| 2789 | *code++ = 255; | *code++ = 255; |
| 2790 | PUT(code, 0, ptr - cd->start_pattern); /* Pattern offset */ | PUT(code, 0, (int)(ptr - cd->start_pattern)); /* Pattern offset */ |
| 2791 | PUT(code, LINK_SIZE, 0); /* Default length */ | PUT(code, LINK_SIZE, 0); /* Default length */ |
| 2792 | return code + 2*LINK_SIZE; | return code + 2 * LINK_SIZE; |
| 2793 | } | } |
| 2794 | ||
| 2795 | ||
| # | Line 2036 Returns: nothing | Line 2811 Returns: nothing |
| 2811 | */ | */ |
| 2812 | ||
| 2813 | static void | static void |
| 2814 | complete_callout(uschar *previous_callout, const uschar *ptr, compile_data *cd) | complete_callout(pcre_uchar *previous_callout, const pcre_uchar *ptr, compile_data *cd) |
| 2815 | { | { |
| 2816 | int length = ptr - cd->start_pattern - GET(previous_callout, 2); | int length = (int)(ptr - cd->start_pattern - GET(previous_callout, 2)); |
| 2817 | PUT(previous_callout, 2 + LINK_SIZE, length); | PUT(previous_callout, 2 + LINK_SIZE, length); |
| 2818 | } | } |
| 2819 | ||
| # | Line 2088 for (++c; c <= d; c++) | Line 2863 for (++c; c <= d; c++) |
| 2863 | ||
| 2864 | return TRUE; | return TRUE; |
| 2865 | } | } |
| 2866 | ||
| 2867 | ||
| 2868 | ||
| 2869 | /************************************************* | |
| 2870 | * Check a character and a property * | |
| 2871 | *************************************************/ | |
| 2872 | ||
| 2873 | /* This function is called by check_auto_possessive() when a property item | |
| 2874 | is adjacent to a fixed character. | |
| 2875 | ||
| 2876 | Arguments: | |
| 2877 | c the character | |
| 2878 | ptype the property type | |
| 2879 | pdata the data for the type | |
| 2880 | negated TRUE if it's a negated property (\P or \p{^) | |
| 2881 | ||
| 2882 | Returns: TRUE if auto-possessifying is OK | |
| 2883 | */ | |
| 2884 | ||
| 2885 | static BOOL | |
| 2886 | check_char_prop(int c, int ptype, int pdata, BOOL negated) | |
| 2887 | { | |
| 2888 | const ucd_record *prop = GET_UCD(c); | |
| 2889 | switch(ptype) | |
| 2890 | { | |
| 2891 | case PT_LAMP: | |
| 2892 | return (prop->chartype == ucp_Lu || | |
| 2893 | prop->chartype == ucp_Ll || | |
| 2894 | prop->chartype == ucp_Lt) == negated; | |
| 2895 | ||
| 2896 | case PT_GC: | |
| 2897 | return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated; | |
| 2898 | ||
| 2899 | case PT_PC: | |
| 2900 | return (pdata == prop->chartype) == negated; | |
| 2901 | ||
| 2902 | case PT_SC: | |
| 2903 | return (pdata == prop->script) == negated; | |
| 2904 | ||
| 2905 | /* These are specials */ | |
| 2906 | ||
| 2907 | case PT_ALNUM: | |
| 2908 | return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || | |
| 2909 | PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated; | |
| 2910 | ||
| 2911 | case PT_SPACE: /* Perl space */ | |
| 2912 | return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z || | |
| 2913 | c == CHAR_HT || c == CHAR_NL || c == CHAR_FF || c == CHAR_CR) | |
| 2914 | == negated; | |
| 2915 | ||
| 2916 | case PT_PXSPACE: /* POSIX space */ | |
| 2917 | return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z || | |
| 2918 | c == CHAR_HT || c == CHAR_NL || c == CHAR_VT || | |
| 2919 | c == CHAR_FF || c == CHAR_CR) | |
| 2920 | == negated; | |
| 2921 | ||
| 2922 | case PT_WORD: | |
| 2923 | return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || | |
| 2924 | PRIV(ucp_gentype)[prop->chartype] == ucp_N || | |
| 2925 | c == CHAR_UNDERSCORE) == negated; | |
| 2926 | } | |
| 2927 | return FALSE; | |
| 2928 | } | |
| 2929 | #endif /* SUPPORT_UCP */ | #endif /* SUPPORT_UCP */ |
| 2930 | ||
| 2931 | ||
| # | Line 2101 whether the next thing could possibly ma | Line 2939 whether the next thing could possibly ma |
| 2939 | sense to automatically possessify the repeated item. | sense to automatically possessify the repeated item. |
| 2940 | ||
| 2941 | Arguments: | Arguments: |
| 2942 | op_code the repeated op code | previous pointer to the repeated opcode |
| 2943 | this data for this item, depends on the opcode | utf TRUE in UTF-8 / UTF-16 mode |
| utf8 TRUE in UTF-8 mode | ||
| utf8_char used for utf8 character bytes, NULL if not relevant | ||
| 2944 | ptr next character in pattern | ptr next character in pattern |
| 2945 | options options bits | options options bits |
| 2946 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
| # | Line 2113 Returns: TRUE if possessifying is | Line 2949 Returns: TRUE if possessifying is |
| 2949 | */ | */ |
| 2950 | ||
| 2951 | static BOOL | static BOOL |
| 2952 | check_auto_possessive(int op_code, int item, BOOL utf8, uschar *utf8_char, | check_auto_possessive(const pcre_uchar *previous, BOOL utf, |
| 2953 | const uschar *ptr, int options, compile_data *cd) | const pcre_uchar *ptr, int options, compile_data *cd) |
| 2954 | { | { |
| 2955 | int next; | pcre_int32 c, next; |
| 2956 | int op_code = *previous++; | |
| 2957 | ||
| 2958 | /* Skip whitespace and comments in extended mode */ | /* Skip whitespace and comments in extended mode */ |
| 2959 | ||
| # | Line 2124 if ((options & PCRE_EXTENDED) != 0) | Line 2961 if ((options & PCRE_EXTENDED) != 0) |
| 2961 | { | { |
| 2962 | for (;;) | for (;;) |
| 2963 | { | { |
| 2964 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
| 2965 | if (*ptr == CHAR_NUMBER_SIGN) | if (*ptr == CHAR_NUMBER_SIGN) |
| 2966 | { | { |
| 2967 | while (*(++ptr) != 0) | ptr++; |
| 2968 | while (*ptr != 0) | |
| 2969 | { | |
| 2970 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
| 2971 | ptr++; | |
| 2972 | #ifdef SUPPORT_UTF | |
| 2973 | if (utf) FORWARDCHAR(ptr); | |
| 2974 | #endif | |
| 2975 | } | |
| 2976 | } | } |
| 2977 | else break; | else break; |
| 2978 | } | } |
| # | Line 2144 if (*ptr == CHAR_BACKSLASH) | Line 2988 if (*ptr == CHAR_BACKSLASH) |
| 2988 | if (temperrorcode != 0) return FALSE; | if (temperrorcode != 0) return FALSE; |
| 2989 | ptr++; /* Point after the escape sequence */ | ptr++; /* Point after the escape sequence */ |
| 2990 | } | } |
| 2991 | else if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_meta) == 0) | |
| else if ((cd->ctypes[*ptr] & ctype_meta) == 0) | ||
| 2992 | { | { |
| 2993 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 2994 | if (utf8) { GETCHARINC(next, ptr); } else | if (utf) { GETCHARINC(next, ptr); } else |
| 2995 | #endif | #endif |
| 2996 | next = *ptr++; | next = *ptr++; |
| 2997 | } | } |
| 2998 | else return FALSE; | else return FALSE; |
| 2999 | ||
| 3000 | /* Skip whitespace and comments in extended mode */ | /* Skip whitespace and comments in extended mode */ |
| # | Line 2161 if ((options & PCRE_EXTENDED) != 0) | Line 3003 if ((options & PCRE_EXTENDED) != 0) |
| 3003 | { | { |
| 3004 | for (;;) | for (;;) |
| 3005 | { | { |
| 3006 | while ((cd->ctypes[*ptr] & ctype_space) != 0) ptr++; | while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_space) != 0) ptr++; |
| 3007 | if (*ptr == CHAR_NUMBER_SIGN) | if (*ptr == CHAR_NUMBER_SIGN) |
| 3008 | { | { |
| 3009 | while (*(++ptr) != 0) | ptr++; |
| 3010 | while (*ptr != 0) | |
| 3011 | { | |
| 3012 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen; break; } |
| 3013 | ptr++; | |
| 3014 | #ifdef SUPPORT_UTF | |
| 3015 | if (utf) FORWARDCHAR(ptr); | |
| 3016 | #endif | |
| 3017 | } | |
| 3018 | } | } |
| 3019 | else break; | else break; |
| 3020 | } | } |
| # | Line 2174 if ((options & PCRE_EXTENDED) != 0) | Line 3023 if ((options & PCRE_EXTENDED) != 0) |
| 3023 | /* If the next thing is itself optional, we have to give up. */ | /* If the next thing is itself optional, we have to give up. */ |
| 3024 | ||
| 3025 | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || |
| 3026 | strncmp((char *)ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) | STRNCMP_UC_C8(ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) |
| 3027 | return FALSE; | return FALSE; |
| 3028 | ||
| 3029 | /* Now compare the next item with the previous opcode. If the previous is a | /* Now compare the next item with the previous opcode. First, handle cases when |
| 3030 | positive single character match, "item" either contains the character or, if | the next item is a character. */ |
| "item" is greater than 127 in utf8 mode, the character's bytes are in | ||
| utf8_char. */ | ||
| /* Handle cases when the next item is a character. */ | ||
| 3031 | ||
| 3032 | if (next >= 0) switch(op_code) | if (next >= 0) switch(op_code) |
| 3033 | { | { |
| 3034 | case OP_CHAR: | case OP_CHAR: |
| 3035 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 3036 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 3037 | #else | #else |
| 3038 | (void)(utf8_char); /* Keep compiler happy by referencing function argument */ | c = *previous; |
| 3039 | #endif | #endif |
| 3040 | return item != next; | return c != next; |
| 3041 | ||
| 3042 | /* For CHARNC (caseless character) we must check the other case. If we have | /* For CHARI (caseless character) we must check the other case. If we have |
| 3043 | Unicode property support, we can use it to test the other case of | Unicode property support, we can use it to test the other case of |
| 3044 | high-valued characters. */ | high-valued characters. */ |
| 3045 | ||
| 3046 | case OP_CHARNC: | case OP_CHARI: |
| 3047 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 3048 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 3049 | #endif | #else |
| 3050 | if (item == next) return FALSE; | c = *previous; |
| 3051 | #ifdef SUPPORT_UTF8 | #endif |
| 3052 | if (utf8) | if (c == next) return FALSE; |
| 3053 | #ifdef SUPPORT_UTF | |
| 3054 | if (utf) | |
| 3055 | { | { |
| 3056 | unsigned int othercase; | unsigned int othercase; |
| 3057 | if (next < 128) othercase = cd->fcc[next]; else | if (next < 128) othercase = cd->fcc[next]; else |
| # | Line 2214 if (next >= 0) switch(op_code) | Line 3060 if (next >= 0) switch(op_code) |
| 3060 | #else | #else |
| 3061 | othercase = NOTACHAR; | othercase = NOTACHAR; |
| 3062 | #endif | #endif |
| 3063 | return (unsigned int)item != othercase; | return (unsigned int)c != othercase; |
| 3064 | } | } |
| 3065 | else | else |
| 3066 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF */ |
| 3067 | return (item != cd->fcc[next]); /* Non-UTF-8 mode */ | return (c != TABLE_GET(next, cd->fcc, next)); /* Non-UTF-8 mode */ |
| 3068 | ||
| 3069 | /* For OP_NOT, "item" must be a single-byte character. */ | /* For OP_NOT and OP_NOTI, the data is always a single-byte character. These |
| 3070 | opcodes are not used for multi-byte characters, because they are coded using | |
| 3071 | an XCLASS instead. */ | |
| 3072 | ||
| 3073 | case OP_NOT: | case OP_NOT: |
| 3074 | if (item == next) return TRUE; | return (c = *previous) == next; |
| 3075 | if ((options & PCRE_CASELESS) == 0) return FALSE; | |
| 3076 | #ifdef SUPPORT_UTF8 | case OP_NOTI: |
| 3077 | if (utf8) | if ((c = *previous) == next) return TRUE; |
| 3078 | #ifdef SUPPORT_UTF | |
| 3079 | if (utf) | |
| 3080 | { | { |
| 3081 | unsigned int othercase; | unsigned int othercase; |
| 3082 | if (next < 128) othercase = cd->fcc[next]; else | if (next < 128) othercase = cd->fcc[next]; else |
| # | Line 2235 if (next >= 0) switch(op_code) | Line 3085 if (next >= 0) switch(op_code) |
| 3085 | #else | #else |
| 3086 | othercase = NOTACHAR; | othercase = NOTACHAR; |
| 3087 | #endif | #endif |
| 3088 | return (unsigned int)item == othercase; | return (unsigned int)c == othercase; |
| 3089 | } | } |
| 3090 | else | else |
| 3091 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF */ |
| 3092 | return (item == cd->fcc[next]); /* Non-UTF-8 mode */ | return (c == TABLE_GET(next, cd->fcc, next)); /* Non-UTF-8 mode */ |
| 3093 | ||
| 3094 | /* Note that OP_DIGIT etc. are generated only when PCRE_UCP is *not* set. | |
| 3095 | When it is set, \d etc. are converted into OP_(NOT_)PROP codes. */ | |
| 3096 | ||
| 3097 | case OP_DIGIT: | case OP_DIGIT: |
| 3098 | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; | return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; |
| # | Line 2282 if (next >= 0) switch(op_code) | Line 3135 if (next >= 0) switch(op_code) |
| 3135 | case 0x202f: | case 0x202f: |
| 3136 | case 0x205f: | case 0x205f: |
| 3137 | case 0x3000: | case 0x3000: |
| 3138 | return op_code != OP_HSPACE; | return op_code == OP_NOT_HSPACE; |
| 3139 | default: | default: |
| 3140 | return op_code == OP_HSPACE; | return op_code != OP_NOT_HSPACE; |
| 3141 | } | } |
| 3142 | ||
| 3143 | case OP_ANYNL: | |
| 3144 | case OP_VSPACE: | case OP_VSPACE: |
| 3145 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
| 3146 | switch(next) | switch(next) |
| # | Line 2298 if (next >= 0) switch(op_code) | Line 3152 if (next >= 0) switch(op_code) |
| 3152 | case 0x85: | case 0x85: |
| 3153 | case 0x2028: | case 0x2028: |
| 3154 | case 0x2029: | case 0x2029: |
| 3155 | return op_code != OP_VSPACE; | return op_code == OP_NOT_VSPACE; |
| 3156 | default: | default: |
| 3157 | return op_code == OP_VSPACE; | return op_code != OP_NOT_VSPACE; |
| 3158 | } | } |
| 3159 | ||
| 3160 | #ifdef SUPPORT_UCP | |
| 3161 | case OP_PROP: | |
| 3162 | return check_char_prop(next, previous[0], previous[1], FALSE); | |
| 3163 | ||
| 3164 | case OP_NOTPROP: | |
| 3165 | return check_char_prop(next, previous[0], previous[1], TRUE); | |
| 3166 | #endif | |
| 3167 | ||
| 3168 | default: | default: |
| 3169 | return FALSE; | return FALSE; |
| 3170 | } | } |
| 3171 | ||
| 3172 | ||
| 3173 | /* Handle the case when the next item is \d, \s, etc. */ | /* Handle the case when the next item is \d, \s, etc. Note that when PCRE_UCP |
| 3174 | is set, \d turns into ESC_du rather than ESC_d, etc., so ESC_d etc. are | |
| 3175 | generated only when PCRE_UCP is *not* set, that is, when only ASCII | |
| 3176 | characteristics are recognized. Similarly, the opcodes OP_DIGIT etc. are | |
| 3177 | replaced by OP_PROP codes when PCRE_UCP is set. */ | |
| 3178 | ||
| 3179 | switch(op_code) | switch(op_code) |
| 3180 | { | { |
| 3181 | case OP_CHAR: | case OP_CHAR: |
| 3182 | case OP_CHARNC: | case OP_CHARI: |
| 3183 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 3184 | if (utf8 && item > 127) { GETCHAR(item, utf8_char); } | GETCHARTEST(c, previous); |
| 3185 | #else | |
| 3186 | c = *previous; | |
| 3187 | #endif | #endif |
| 3188 | switch(-next) | switch(-next) |
| 3189 | { | { |
| 3190 | case ESC_d: | case ESC_d: |
| 3191 | return item > 127 || (cd->ctypes[item] & ctype_digit) == 0; | return c > 127 || (cd->ctypes[c] & ctype_digit) == 0; |
| 3192 | ||
| 3193 | case ESC_D: | case ESC_D: |
| 3194 | return item <= 127 && (cd->ctypes[item] & ctype_digit) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_digit) != 0; |
| 3195 | ||
| 3196 | case ESC_s: | case ESC_s: |
| 3197 | return item > 127 || (cd->ctypes[item] & ctype_space) == 0; | return c > 127 || (cd->ctypes[c] & ctype_space) == 0; |
| 3198 | ||
| 3199 | case ESC_S: | case ESC_S: |
| 3200 | return item <= 127 && (cd->ctypes[item] & ctype_space) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_space) != 0; |
| 3201 | ||
| 3202 | case ESC_w: | case ESC_w: |
| 3203 | return item > 127 || (cd->ctypes[item] & ctype_word) == 0; | return c > 127 || (cd->ctypes[c] & ctype_word) == 0; |
| 3204 | ||
| 3205 | case ESC_W: | case ESC_W: |
| 3206 | return item <= 127 && (cd->ctypes[item] & ctype_word) != 0; | return c <= 127 && (cd->ctypes[c] & ctype_word) != 0; |
| 3207 | ||
| 3208 | case ESC_h: | case ESC_h: |
| 3209 | case ESC_H: | case ESC_H: |
| 3210 | switch(item) | switch(c) |
| 3211 | { | { |
| 3212 | case 0x09: | case 0x09: |
| 3213 | case 0x20: | case 0x20: |
| # | Line 2367 switch(op_code) | Line 3235 switch(op_code) |
| 3235 | ||
| 3236 | case ESC_v: | case ESC_v: |
| 3237 | case ESC_V: | case ESC_V: |
| 3238 | switch(item) | switch(c) |
| 3239 | { | { |
| 3240 | case 0x0a: | case 0x0a: |
| 3241 | case 0x0b: | case 0x0b: |
| # | Line 2381 switch(op_code) | Line 3249 switch(op_code) |
| 3249 | return -next == ESC_v; | return -next == ESC_v; |
| 3250 | } | } |
| 3251 | ||
| 3252 | /* When PCRE_UCP is set, these values get generated for \d etc. Find | |
| 3253 | their substitutions and process them. The result will always be either | |
| 3254 | -ESC_p or -ESC_P. Then fall through to process those values. */ | |
| 3255 | ||
| 3256 | #ifdef SUPPORT_UCP | |
| 3257 | case ESC_du: | |
| 3258 | case ESC_DU: | |
| 3259 | case ESC_wu: | |
| 3260 | case ESC_WU: | |
| 3261 | case ESC_su: | |
| 3262 | case ESC_SU: | |
| 3263 | { | |
| 3264 | int temperrorcode = 0; | |
| 3265 | ptr = substitutes[-next - ESC_DU]; | |
| 3266 | next = check_escape(&ptr, &temperrorcode, 0, options, FALSE); | |
| 3267 | if (temperrorcode != 0) return FALSE; | |
| 3268 | ptr++; /* For compatibility */ | |
| 3269 | } | |
| 3270 | /* Fall through */ | |
| 3271 | ||
| 3272 | case ESC_p: | |
| 3273 | case ESC_P: | |
| 3274 | { | |
| 3275 | int ptype, pdata, errorcodeptr; | |
| 3276 | BOOL negated; | |
| 3277 | ||
| 3278 | ptr--; /* Make ptr point at the p or P */ | |
| 3279 | ptype = get_ucp(&ptr, &negated, &pdata, &errorcodeptr); | |
| 3280 | if (ptype < 0) return FALSE; | |
| 3281 | ptr++; /* Point past the final curly ket */ | |
| 3282 | ||
| 3283 | /* If the property item is optional, we have to give up. (When generated | |
| 3284 | from \d etc by PCRE_UCP, this test will have been applied much earlier, | |
| 3285 | to the original \d etc. At this point, ptr will point to a zero byte. */ | |
| 3286 | ||
| 3287 | if (*ptr == CHAR_ASTERISK || *ptr == CHAR_QUESTION_MARK || | |
| 3288 | STRNCMP_UC_C8(ptr, STR_LEFT_CURLY_BRACKET STR_0 STR_COMMA, 3) == 0) | |
| 3289 | return FALSE; | |
| 3290 | ||
| 3291 | /* Do the property check. */ | |
| 3292 | ||
| 3293 | return check_char_prop(c, ptype, pdata, (next == -ESC_P) != negated); | |
| 3294 | } | |
| 3295 | #endif | |
| 3296 | ||
| 3297 | default: | default: |
| 3298 | return FALSE; | return FALSE; |
| 3299 | } | } |
| 3300 | ||
| 3301 | /* In principle, support for Unicode properties should be integrated here as | |
| 3302 | well. It means re-organizing the above code so as to get hold of the property | |
| 3303 | values before switching on the op-code. However, I wonder how many patterns | |
| 3304 | combine ASCII \d etc with Unicode properties? (Note that if PCRE_UCP is set, | |
| 3305 | these op-codes are never generated.) */ | |
| 3306 | ||
| 3307 | case OP_DIGIT: | case OP_DIGIT: |
| 3308 | return next == -ESC_D || next == -ESC_s || next == -ESC_W || | return next == -ESC_D || next == -ESC_s || next == -ESC_W || |
| 3309 | next == -ESC_h || next == -ESC_v; | next == -ESC_h || next == -ESC_v || next == -ESC_R; |
| 3310 | ||
| 3311 | case OP_NOT_DIGIT: | case OP_NOT_DIGIT: |
| 3312 | return next == -ESC_d; | return next == -ESC_d; |
| 3313 | ||
| 3314 | case OP_WHITESPACE: | case OP_WHITESPACE: |
| 3315 | return next == -ESC_S || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_d || next == -ESC_w || next == -ESC_R; |
| 3316 | ||
| 3317 | case OP_NOT_WHITESPACE: | case OP_NOT_WHITESPACE: |
| 3318 | return next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_s || next == -ESC_h || next == -ESC_v; |
| 3319 | ||
| 3320 | case OP_HSPACE: | case OP_HSPACE: |
| 3321 | return next == -ESC_S || next == -ESC_H || next == -ESC_d || next == -ESC_w; | return next == -ESC_S || next == -ESC_H || next == -ESC_d || |
| 3322 | next == -ESC_w || next == -ESC_v || next == -ESC_R; | |
| 3323 | ||
| 3324 | case OP_NOT_HSPACE: | case OP_NOT_HSPACE: |
| 3325 | return next == -ESC_h; | return next == -ESC_h; |
| 3326 | ||
| 3327 | /* Can't have \S in here because VT matches \S (Perl anomaly) */ | /* Can't have \S in here because VT matches \S (Perl anomaly) */ |
| 3328 | case OP_ANYNL: | |
| 3329 | case OP_VSPACE: | case OP_VSPACE: |
| 3330 | return next == -ESC_V || next == -ESC_d || next == -ESC_w; | return next == -ESC_V || next == -ESC_d || next == -ESC_w; |
| 3331 | ||
| 3332 | case OP_NOT_VSPACE: | case OP_NOT_VSPACE: |
| 3333 | return next == -ESC_v; | return next == -ESC_v || next == -ESC_R; |
| 3334 | ||
| 3335 | case OP_WORDCHAR: | case OP_WORDCHAR: |
| 3336 | return next == -ESC_W || next == -ESC_s || next == -ESC_h || next == -ESC_v; | return next == -ESC_W || next == -ESC_s || next == -ESC_h || |
| 3337 | next == -ESC_v || next == -ESC_R; | |
| 3338 | ||
| 3339 | case OP_NOT_WORDCHAR: | case OP_NOT_WORDCHAR: |
| 3340 | return next == -ESC_w || next == -ESC_d; | return next == -ESC_w || next == -ESC_d; |
| # | Line 2441 Arguments: | Line 3363 Arguments: |
| 3363 | codeptr points to the pointer to the current code point | codeptr points to the pointer to the current code point |
| 3364 | ptrptr points to the current pattern pointer | ptrptr points to the current pattern pointer |
| 3365 | errorcodeptr points to error code variable | errorcodeptr points to error code variable |
| 3366 | firstbyteptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) | firstcharptr set to initial literal character, or < 0 (REQ_UNSET, REQ_NONE) |
| 3367 | reqbyteptr set to the last literal character required, else < 0 | reqcharptr set to the last literal character required, else < 0 |
| 3368 | bcptr points to current branch chain | bcptr points to current branch chain |
| 3369 | cond_depth conditional nesting depth | |
| 3370 | cd contains pointers to tables etc. | cd contains pointers to tables etc. |
| 3371 | lengthptr NULL during the real compile phase | lengthptr NULL during the real compile phase |
| 3372 | points to length accumulator during pre-compile phase | points to length accumulator during pre-compile phase |
| # | Line 2453 Returns: TRUE on success | Line 3376 Returns: TRUE on success |
| 3376 | */ | */ |
| 3377 | ||
| 3378 | static BOOL | static BOOL |
| 3379 | compile_branch(int *optionsptr, uschar **codeptr, const uschar **ptrptr, | compile_branch(int *optionsptr, pcre_uchar **codeptr, |
| 3380 | int *errorcodeptr, int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, | const pcre_uchar **ptrptr, int *errorcodeptr, pcre_int32 *firstcharptr, |
| 3381 | pcre_int32 *reqcharptr, branch_chain *bcptr, int cond_depth, | |
| 3382 | compile_data *cd, int *lengthptr) | compile_data *cd, int *lengthptr) |
| 3383 | { | { |
| 3384 | int repeat_type, op_type; | int repeat_type, op_type; |
| 3385 | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ | int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ |
| 3386 | int bravalue = 0; | int bravalue = 0; |
| 3387 | int greedy_default, greedy_non_default; | int greedy_default, greedy_non_default; |
| 3388 | int firstbyte, reqbyte; | pcre_int32 firstchar, reqchar; |
| 3389 | int zeroreqbyte, zerofirstbyte; | pcre_int32 zeroreqchar, zerofirstchar; |
| 3390 | int req_caseopt, reqvary, tempreqvary; | pcre_int32 req_caseopt, reqvary, tempreqvary; |
| 3391 | int options = *optionsptr; | int options = *optionsptr; /* May change dynamically */ |
| 3392 | int after_manual_callout = 0; | int after_manual_callout = 0; |
| 3393 | int length_prevgroup = 0; | int length_prevgroup = 0; |
| 3394 | register int c; | register int c; |
| 3395 | register uschar *code = *codeptr; | register pcre_uchar *code = *codeptr; |
| 3396 | uschar *last_code = code; | pcre_uchar *last_code = code; |
| 3397 | uschar *orig_code = code; | pcre_uchar *orig_code = code; |
| 3398 | uschar *tempcode; | pcre_uchar *tempcode; |
| 3399 | BOOL inescq = FALSE; | BOOL inescq = FALSE; |
| 3400 | BOOL groupsetfirstbyte = FALSE; | BOOL groupsetfirstchar = FALSE; |
| 3401 | const uschar *ptr = *ptrptr; | const pcre_uchar *ptr = *ptrptr; |
| 3402 | const uschar *tempptr; | const pcre_uchar *tempptr; |
| 3403 | uschar *previous = NULL; | const pcre_uchar *nestptr = NULL; |
| 3404 | uschar *previous_callout = NULL; | pcre_uchar *previous = NULL; |
| 3405 | uschar *save_hwm = NULL; | pcre_uchar *previous_callout = NULL; |
| 3406 | uschar classbits[32]; | pcre_uchar *save_hwm = NULL; |
| 3407 | pcre_uint8 classbits[32]; | |
| 3408 | #ifdef SUPPORT_UTF8 | |
| 3409 | BOOL class_utf8; | /* We can fish out the UTF-8 setting once and for all into a BOOL, but we |
| 3410 | BOOL utf8 = (options & PCRE_UTF8) != 0; | must not do this for other options (e.g. PCRE_EXTENDED) because they may change |
| 3411 | uschar *class_utf8data; | dynamically as we process the pattern. */ |
| 3412 | uschar *class_utf8data_base; | |
| 3413 | uschar utf8_char[6]; | #ifdef SUPPORT_UTF |
| 3414 | /* PCRE_UTF16 has the same value as PCRE_UTF8. */ | |
| 3415 | BOOL utf = (options & PCRE_UTF8) != 0; | |
| 3416 | pcre_uchar utf_chars[6]; | |
| 3417 | #else | #else |
| 3418 | BOOL utf8 = FALSE; | BOOL utf = FALSE; |
| 3419 | uschar *utf8_char = NULL; | #endif |
| 3420 | ||
| 3421 | /* Helper variables for OP_XCLASS opcode (for characters > 255). */ | |
| 3422 | ||
| 3423 | #if defined SUPPORT_UTF || !defined COMPILE_PCRE8 | |
| 3424 | BOOL xclass; | |
| 3425 | pcre_uchar *class_uchardata; | |
| 3426 | pcre_uchar *class_uchardata_base; | |
| 3427 | #endif | #endif |
| 3428 | ||
| 3429 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
| 3430 | if (lengthptr != NULL) DPRINTF((">> start branch\n")); | if (lengthptr != NULL) DPRINTF((">> start branch\n")); |
| 3431 | #endif | #endif |
| 3432 | ||
| # | Line 2503 greedy_non_default = greedy_default ^ 1; | Line 3437 greedy_non_default = greedy_default ^ 1; |
| 3437 | ||
| 3438 | /* Initialize no first byte, no required byte. REQ_UNSET means "no char | /* Initialize no first byte, no required byte. REQ_UNSET means "no char |
| 3439 | 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 |
| 3440 | 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 |
| 3441 | find one. | find one. |
| 3442 | ||
| 3443 | 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 |
| 3444 | 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 |
| 3445 | zerofirstbyte and zeroreqbyte when such a repeat is encountered. The individual | zerofirstbyte and zeroreqchar when such a repeat is encountered. The individual |
| 3446 | item types that can be repeated set these backoff variables appropriately. */ | item types that can be repeated set these backoff variables appropriately. */ |
| 3447 | ||
| 3448 | firstbyte = reqbyte = zerofirstbyte = zeroreqbyte = REQ_UNSET; | firstchar = reqchar = zerofirstchar = zeroreqchar = REQ_UNSET; |
| 3449 | ||
| 3450 | /* The variable req_caseopt contains either the REQ_CASELESS value or zero, | /* The variable req_caseopt contains either the REQ_CASELESS value |
| 3451 | 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 |
| 3452 | 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 |
| 3453 | case status of the value. This is used only for ASCII characters. */ | firstchar or reqchar variables to record the case status of the |
| 3454 | value. This is used only for ASCII characters. */ | |
| 3455 | ||
| 3456 | req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0; | req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS:0; |
| 3457 | ||
| 3458 | /* Switch on next character until the end of the branch */ | /* Switch on next character until the end of the branch */ |
| 3459 | ||
| # | Line 2530 for (;; ptr++) | Line 3465 for (;; ptr++) |
| 3465 | BOOL is_quantifier; | BOOL is_quantifier; |
| 3466 | BOOL is_recurse; | BOOL is_recurse; |
| 3467 | BOOL reset_bracount; | BOOL reset_bracount; |
| 3468 | int class_charcount; | int class_has_8bitchar; |
| 3469 | int class_lastchar; | int class_single_char; |
| 3470 | int newoptions; | int newoptions; |
| 3471 | int recno; | int recno; |
| 3472 | int refsign; | int refsign; |
| 3473 | int skipbytes; | int skipbytes; |
| 3474 | int subreqbyte; | int subreqchar; |
| 3475 | int subfirstbyte; | int subfirstchar; |
| 3476 | int terminator; | int terminator; |
| 3477 | int mclength; | int mclength; |
| 3478 | uschar mcbuffer[8]; | int tempbracount; |
| 3479 | pcre_uchar mcbuffer[8]; | |
| 3480 | ||
| 3481 | /* Get next byte in the pattern */ | /* Get next character in the pattern */ |
| 3482 | ||
| 3483 | c = *ptr; | c = *ptr; |
| 3484 | ||
| 3485 | /* If we are at the end of a nested substitution, revert to the outer level | |
| 3486 | string. Nesting only happens one level deep. */ | |
| 3487 | ||
| 3488 | if (c == 0 && nestptr != NULL) | |
| 3489 | { | |
| 3490 | ptr = nestptr; | |
| 3491 | nestptr = NULL; | |
| 3492 | c = *ptr; | |
| 3493 | } | |
| 3494 | ||
| 3495 | /* If we are in the pre-compile phase, accumulate the length used for the | /* If we are in the pre-compile phase, accumulate the length used for the |
| 3496 | previous cycle of this loop. */ | previous cycle of this loop. */ |
| 3497 | ||
| 3498 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| 3499 | { | { |
| 3500 | #ifdef DEBUG | #ifdef PCRE_DEBUG |
| 3501 | if (code > cd->hwm) cd->hwm = code; /* High water info */ | if (code > cd->hwm) cd->hwm = code; /* High water info */ |
| 3502 | #endif | #endif |
| 3503 | if (code > cd->start_workspace + COMPILE_WORK_SIZE) /* Check for overrun */ | if (code > cd->start_workspace + cd->workspace_size - |
| 3504 | WORK_SIZE_SAFETY_MARGIN) /* Check for overrun */ | |
| 3505 | { | { |
| 3506 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
| 3507 | goto FAILED; | goto FAILED; |
| # | Line 2576 for (;; ptr++) | Line 3523 for (;; ptr++) |
| 3523 | goto FAILED; | goto FAILED; |
| 3524 | } | } |
| 3525 | ||
| 3526 | *lengthptr += code - last_code; | *lengthptr += (int)(code - last_code); |
| 3527 | DPRINTF(("length=%d added %d c=%c\n", *lengthptr, code - last_code, c)); | DPRINTF(("length=%d added %d c=%c (0x%x)\n", *lengthptr, |
| 3528 | (int)(code - last_code), c, c)); | |
| 3529 | ||
| 3530 | /* If "previous" is set and it is not at the start of the work space, move | /* If "previous" is set and it is not at the start of the work space, move |
| 3531 | it back to there, in order to avoid filling up the work space. Otherwise, | it back to there, in order to avoid filling up the work space. Otherwise, |
| 3532 | if "previous" is NULL, reset the current code pointer to the start. */ | if "previous" is NULL, reset the current code pointer to the start. */ |
| # | Line 2587 for (;; ptr++) | Line 3535 for (;; ptr++) |
| 3535 | { | { |
| 3536 | if (previous > orig_code) | if (previous > orig_code) |
| 3537 | { | { |
| 3538 | memmove(orig_code, previous, code - previous); | memmove(orig_code, previous, IN_UCHARS(code - previous)); |
| 3539 | code -= previous - orig_code; | code -= previous - orig_code; |
| 3540 | previous = orig_code; | previous = orig_code; |
| 3541 | } | } |
| # | Line 2603 for (;; ptr++) | Line 3551 for (;; ptr++) |
| 3551 | /* In the real compile phase, just check the workspace used by the forward | /* In the real compile phase, just check the workspace used by the forward |
| 3552 | reference list. */ | reference list. */ |
| 3553 | ||
| 3554 | else if (cd->hwm > cd->start_workspace + COMPILE_WORK_SIZE) | else if (cd->hwm > cd->start_workspace + cd->workspace_size - |
| 3555 | WORK_SIZE_SAFETY_MARGIN) | |
| 3556 | { | { |
| 3557 | *errorcodeptr = ERR52; | *errorcodeptr = ERR52; |
| 3558 | goto FAILED; | goto FAILED; |
| # | Line 2651 for (;; ptr++) | Line 3600 for (;; ptr++) |
| 3600 | previous_callout = NULL; | previous_callout = NULL; |
| 3601 | } | } |
| 3602 | ||
| 3603 | /* In extended mode, skip white space and comments */ | /* In extended mode, skip white space and comments. */ |
| 3604 | ||
| 3605 | if ((options & PCRE_EXTENDED) != 0) | if ((options & PCRE_EXTENDED) != 0) |
| 3606 | { | { |
| 3607 | if ((cd->ctypes[c] & ctype_space) != 0) continue; | if (MAX_255(*ptr) && (cd->ctypes[c] & ctype_space) != 0) continue; |
| 3608 | if (c == CHAR_NUMBER_SIGN) | if (c == CHAR_NUMBER_SIGN) |
| 3609 | { | { |
| 3610 | while (*(++ptr) != 0) | ptr++; |
| 3611 | while (*ptr != 0) | |
| 3612 | { | { |
| 3613 | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } | if (IS_NEWLINE(ptr)) { ptr += cd->nllen - 1; break; } |
| 3614 | ptr++; | |
| 3615 | #ifdef SUPPORT_UTF | |
| 3616 | if (utf) FORWARDCHAR(ptr); | |
| 3617 | #endif | |
| 3618 | } | } |
| 3619 | if (*ptr != 0) continue; | if (*ptr != 0) continue; |
| 3620 | ||
| # | Line 2683 for (;; ptr++) | Line 3637 for (;; ptr++) |
| 3637 | case 0: /* The branch terminates at string end */ | case 0: /* The branch terminates at string end */ |
| 3638 | case CHAR_VERTICAL_LINE: /* or | or ) */ | case CHAR_VERTICAL_LINE: /* or | or ) */ |
| 3639 | case CHAR_RIGHT_PARENTHESIS: | case CHAR_RIGHT_PARENTHESIS: |
| 3640 | *firstbyteptr = firstbyte; | *firstcharptr = firstchar; |
| 3641 | *reqbyteptr = reqbyte; | *reqcharptr = reqchar; |
| 3642 | *codeptr = code; | *codeptr = code; |
| 3643 | *ptrptr = ptr; | *ptrptr = ptr; |
| 3644 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| # | Line 2694 for (;; ptr++) | Line 3648 for (;; ptr++) |
| 3648 | *errorcodeptr = ERR20; | *errorcodeptr = ERR20; |
| 3649 | goto FAILED; | goto FAILED; |
| 3650 | } | } |
| 3651 | *lengthptr += code - last_code; /* To include callout length */ | *lengthptr += (int)(code - last_code); /* To include callout length */ |
| 3652 | DPRINTF((">> end branch\n")); | DPRINTF((">> end branch\n")); |
| 3653 | } | } |
| 3654 | return TRUE; | return TRUE; |
| # | Line 2705 for (;; ptr++) | Line 3659 for (;; ptr++) |
| 3659 | the setting of any following char as a first character. */ | the setting of any following char as a first character. */ |
| 3660 | ||
| 3661 | case CHAR_CIRCUMFLEX_ACCENT: | case CHAR_CIRCUMFLEX_ACCENT: |
| 3662 | previous = NULL; | |
| 3663 | if ((options & PCRE_MULTILINE) != 0) | if ((options & PCRE_MULTILINE) != 0) |
| 3664 | { | { |
| 3665 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstchar == REQ_UNSET) firstchar = REQ_NONE; |
| 3666 | *code++ = OP_CIRCM; | |
| 3667 | } | } |
| 3668 | previous = NULL; | else *code++ = OP_CIRC; |
| *code++ = OP_CIRC; | ||
| 3669 | break; | break; |
| 3670 | ||
| 3671 | case CHAR_DOLLAR_SIGN: | case CHAR_DOLLAR_SIGN: |
| 3672 | previous = NULL; | previous = NULL; |
| 3673 | *code++ = OP_DOLL; | *code++ = ((options & PCRE_MULTILINE) != 0)? OP_DOLLM : OP_DOLL; |
| 3674 | break; | break; |
| 3675 | ||
| 3676 | /* There can never be a first char if '.' is first, whatever happens about | /* There can never be a first char if '.' is first, whatever happens about |
| 3677 | repeats. The value of reqbyte doesn't change either. */ | repeats. The value of reqchar doesn't change either. */ |
| 3678 | ||
| 3679 | case CHAR_DOT: | case CHAR_DOT: |
| 3680 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstchar == REQ_UNSET) firstchar = REQ_NONE; |
| 3681 | zerofirstbyte = firstbyte; | zerofirstchar = firstchar; |
| 3682 | zeroreqbyte = reqbyte; | zeroreqchar = reqchar; |
| 3683 | previous = code; | previous = code; |
| 3684 | *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; | *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; |
| 3685 | break; | break; |
| # | Line 2779 for (;; ptr++) | Line 3734 for (;; ptr++) |
| 3734 | { | { |
| 3735 | if (ptr[1] == CHAR_E) | if (ptr[1] == CHAR_E) |
| 3736 | ptr++; | ptr++; |
| 3737 | else if (strncmp((const char *)ptr+1, | else if (STRNCMP_UC_C8(ptr + 1, STR_Q STR_BACKSLASH STR_E, 3) == 0) |
| STR_Q STR_BACKSLASH STR_E, 3) == 0) | ||
| 3738 | ptr += 3; | ptr += 3; |
| 3739 | else | else |
| 3740 | break; | break; |
| # | Line 2799 for (;; ptr++) | Line 3753 for (;; ptr++) |
| 3753 | (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) | (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0) |
| 3754 | { | { |
| 3755 | *code++ = negate_class? OP_ALLANY : OP_FAIL; | *code++ = negate_class? OP_ALLANY : OP_FAIL; |
| 3756 | if (firstbyte == REQ_UNSET) firstbyte = REQ_NONE; | if (firstchar == REQ_UNSET) firstchar = REQ_NONE; |
| 3757 | zerofirstbyte = firstbyte; | zerofirstchar = firstchar; |
| 3758 | break; | break; |
| 3759 | } | } |
| 3760 | ||
| # | Line 2810 for (;; ptr++) | Line 3764 for (;; ptr++) |
| 3764 | ||
| 3765 | should_flip_negation = FALSE; | should_flip_negation = FALSE; |
| 3766 | ||
| 3767 | /* Keep a count of chars with values < 256 so that we can optimize the case | /* For optimization purposes, we track some properties of the class. |
| 3768 | of just a single character (as long as it's < 256). However, For higher | class_has_8bitchar will be non-zero, if the class contains at least one |
| 3769 | valued UTF-8 characters, we don't yet do any optimization. */ | < 256 character. class_single_char will be 1 if the class contains only |
| 3770 | a single character. */ | |
| 3771 | ||
| 3772 | class_charcount = 0; | class_has_8bitchar = 0; |
| 3773 | class_lastchar = -1; | class_single_char = 0; |
| 3774 | ||
| 3775 | /* Initialize the 32-char bit map to all zeros. We build the map in a | /* Initialize the 32-char bit map to all zeros. We build the map in a |
| 3776 | temporary bit of memory, in case the class contains only 1 character (less | temporary bit of memory, in case the class contains only 1 character (less |
| 3777 | than 256), because in that case the compiled code doesn't use the bit map. | than 256), because in that case the compiled code doesn't use the bit map. |
| 3778 | */ | */ |
| 3779 | ||
| 3780 | memset(classbits, 0, 32 * sizeof(uschar)); | memset(classbits, 0, 32 * sizeof(pcre_uint8)); |
| 3781 | ||
| 3782 | #ifdef SUPPORT_UTF8 | #if defined SUPPORT_UTF || !defined COMPILE_PCRE8 |
| 3783 | class_utf8 = FALSE; /* No chars >= 256 */ | xclass = FALSE; /* No chars >= 256 */ |
| 3784 | class_utf8data = code + LINK_SIZE + 2; /* For UTF-8 items */ | class_uchardata = code + LINK_SIZE + 2; /* For UTF-8 items */ |
| 3785 | class_utf8data_base = class_utf8data; /* For resetting in pass 1 */ | class_uchardata_base = class_uchardata; /* For resetting in pass 1 */ |
| 3786 | #endif | #endif |
| 3787 | ||
| 3788 | /* Process characters until ] is reached. By writing this as a "do" it | /* Process characters until ] is reached. By writing this as a "do" it |
| # | Line 2836 for (;; ptr++) | Line 3791 for (;; ptr++) |
| 3791 | ||
| 3792 | if (c != 0) do | if (c != 0) do |
| 3793 | { | { |
| 3794 | const uschar *oldptr; | const pcre_uchar *oldptr; |
| 3795 | ||
| 3796 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 3797 | if (utf8 && c > 127) | if (utf && HAS_EXTRALEN(c)) |
| 3798 | { /* Braces are required because the */ | { /* Braces are required because the */ |
| 3799 | GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ | GETCHARLEN(c, ptr, ptr); /* macro generates multiple statements */ |
| 3800 | } | } |
| 3801 | #endif | |
| 3802 | ||
| 3803 | /* In the pre-compile phase, accumulate the length of any UTF-8 extra | #if defined SUPPORT_UTF || !defined COMPILE_PCRE8 |
| 3804 | /* In the pre-compile phase, accumulate the length of any extra | |
| 3805 | data and reset the pointer. This is so that very large classes that | data and reset the pointer. This is so that very large classes that |
| 3806 | contain a zillion UTF-8 characters no longer overwrite the work space | contain a zillion > 255 characters no longer overwrite the work space |
| 3807 | (which is on the stack). */ | (which is on the stack). */ |
| 3808 | ||
| 3809 | if (lengthptr != NULL) | if (lengthptr != NULL) |
| 3810 | { | { |
| 3811 | *lengthptr += class_utf8data - class_utf8data_base; | *lengthptr += class_uchardata - class_uchardata_base; |
| 3812 | class_utf8data = class_utf8data_base; | class_uchardata = class_uchardata_base; |
| 3813 | } | } |
| 3814 | #endif | #endif |
| 3815 | ||
| 3816 | /* Inside \Q...\E everything is literal except \E */ | /* Inside \Q...\E everything is literal except \E */ |
| # | Line 2882 for (;; ptr++) | Line 3838 for (;; ptr++) |
| 3838 | { | { |
| 3839 | BOOL local_negate = FALSE; | BOOL local_negate = FALSE; |
| 3840 | int posix_class, taboffset, tabopt; | int posix_class, taboffset, tabopt; |
| 3841 | register const uschar *cbits = cd->cbits; | register const pcre_uint8 *cbits = cd->cbits; |
| 3842 | uschar pbits[32]; | pcre_uint8 pbits[32]; |
| 3843 | ||
| 3844 | if (ptr[1] != CHAR_COLON) | if (ptr[1] != CHAR_COLON) |
| 3845 | { | { |
| # | Line 2899 for (;; ptr++) | Line 3855 for (;; ptr++) |
| 3855 | ptr++; | ptr++; |
| 3856 | } | } |
| 3857 | ||
| 3858 | posix_class = check_posix_name(ptr, tempptr - ptr); | posix_class = check_posix_name(ptr, (int)(tempptr - ptr)); |
| 3859 | if (posix_class < 0) | if (posix_class < 0) |
| 3860 | { | { |
| 3861 | *errorcodeptr = ERR30; | *errorcodeptr = ERR30; |
| # | Line 2913 for (;; ptr++) | Line 3869 for (;; ptr++) |
| 3869 | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) | if ((options & PCRE_CASELESS) != 0 && posix_class <= 2) |
| 3870 | posix_class = 0; | posix_class = 0; |
| 3871 | ||
| 3872 | /* We build the bit map for the POSIX class in a chunk of local store | /* When PCRE_UCP is set, some of the POSIX classes are converted to |
| 3873 | because we may be adding and subtracting from it, and we don't want to | different escape sequences that use Unicode properties. */ |
| 3874 | subtract bits that may be in the main map already. At the end we or the | |
| 3875 | result into the bit map that is being built. */ | #ifdef SUPPORT_UCP |
| 3876 | if ((options & PCRE_UCP) != 0) | |
| 3877 | { | |
| 3878 | int pc = posix_class + ((local_negate)? POSIX_SUBSIZE/2 : 0); | |
| 3879 | if (posix_substitutes[pc] != NULL) | |
| 3880 | { | |
| 3881 | nestptr = tempptr + 1; | |
| 3882 | ptr = posix_substitutes[pc] - 1; | |
| 3883 | continue; | |
| 3884 | } | |
| 3885 | } | |
| 3886 | #endif | |
| 3887 | /* In the non-UCP case, we build the bit map for the POSIX class in a | |
| 3888 | chunk of local store because we may be adding and subtracting from it, | |
| 3889 | and we don't want to subtract bits that may be in the main map already. | |
| 3890 | At the end we or the result into the bit map that is being built. */ | |
| 3891 | ||
| 3892 | posix_class *= 3; | posix_class *= 3; |
| 3893 | ||
| 3894 | /* Copy in the first table (always present) */ | /* Copy in the first table (always present) */ |
| 3895 | ||
| 3896 | memcpy(pbits, cbits + posix_class_maps[posix_class], | memcpy(pbits, cbits + posix_class_maps[posix_class], |
| 3897 | 32 * sizeof(uschar)); | 32 * sizeof(pcre_uint8)); |
| 3898 | ||
| 3899 | /* If there is a second table, add or remove it as required. */ | /* If there is a second table, add or remove it as required. */ |
| 3900 | ||
| # | Line 2954 for (;; ptr++) | Line 3925 for (;; ptr++) |
| 3925 | for (c = 0; c < 32; c++) classbits[c] |= pbits[c]; | for (c = 0; c < 32; c++) classbits[c] |= pbits[c]; |
| 3926 | ||
| 3927 | ptr = tempptr + 1; | ptr = tempptr + 1; |
| 3928 | class_charcount = 10; /* Set > 1; assumes more than 1 per class */ | /* Every class contains at least one < 256 characters. */ |
| 3929 | class_has_8bitchar = 1; | |
| 3930 | /* Every class contains at least two characters. */ | |
| 3931 | class_single_char = 2; | |
| 3932 | continue; /* End of POSIX syntax handling */ | continue; /* End of POSIX syntax handling */ |
| 3933 | } | } |
| 3934 | ||
| 3935 | /* Backslash may introduce a single character, or it may introduce one | /* Backslash may introduce a single character, or it may introduce one |
| 3936 | of the specials, which just set a flag. The sequence \b is a special | of the specials, which just set a flag. The sequence \b is a special |
| 3937 | case. Inside a class (and only there) it is treated as backspace. | case. Inside a class (and only there) it is treated as backspace. We |
| 3938 | Elsewhere it marks a word boundary. Other escapes have preset maps ready | assume that other escapes have more than one character in them, so |
| 3939 | to 'or' into the one we are building. We assume they have more than one | speculatively set both class_has_8bitchar and class_single_char bigger |
| 3940 | character in them, so set class_charcount bigger than one. */ | than one. Unrecognized escapes fall through and are either treated |
| 3941 | as literal characters (by default), or are faulted if | |
| 3942 | PCRE_EXTRA is set. */ | |
| 3943 | ||
| 3944 | if (c == CHAR_BACKSLASH) | if (c == CHAR_BACKSLASH) |
| 3945 | { | { |
| 3946 | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 3947 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
| 3948 | ||
| 3949 | if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */ | if (-c == ESC_b) c = CHAR_BS; /* \b is backspace in a class */ |
| 3950 | else if (-c == ESC_X) c = CHAR_X; /* \X is literal X in a class */ | else if (-c == ESC_N) /* \N is not supported in a class */ |
| 3951 | else if (-c == ESC_R) c = CHAR_R; /* \R is literal R in a class */ | { |
| 3952 | *errorcodeptr = ERR71; | |
| 3953 | goto FAILED; | |
| 3954 | } | |
| 3955 | else if (-c == ESC_Q) /* Handle start of quoted string */ | else if (-c == ESC_Q) /* Handle start of quoted string */ |
| 3956 | { | { |
| 3957 | if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) | if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E) |
| # | Line 2986 for (;; ptr++) | Line 3965 for (;; ptr++) |
| 3965 | ||
| 3966 | if (c < 0) | if (c < 0) |
| 3967 | { | { |
| 3968 | register const uschar *cbits = cd->cbits; | register const pcre_uint8 *cbits = cd->cbits; |
| 3969 | class_charcount += 2; /* Greater than 1 is what matters */ | /* Every class contains at least two < 256 characters. */ |
| 3970 | class_has_8bitchar++; | |
| 3971 | /* Save time by not doing this in the pre-compile phase. */ | /* Every class contains at least two characters. */ |
| 3972 | class_single_char += 2; | |
| 3973 | ||
| 3974 | if (lengthptr == NULL) switch (-c) | switch (-c) |
| 3975 | { | { |
| 3976 | #ifdef SUPPORT_UCP | |
| 3977 | case ESC_du: /* These are the values given for \d etc */ | |
| 3978 | case ESC_DU: /* when PCRE_UCP is set. We replace the */ | |
| 3979 | case ESC_wu: /* escape sequence with an appropriate \p */ | |
| 3980 | case ESC_WU: /* or \P to test Unicode properties instead */ | |
| 3981 | case ESC_su: /* of the default ASCII testing. */ | |
| 3982 | case ESC_SU: | |
| 3983 | nestptr = ptr; | |
| 3984 | ptr = substitutes[-c - ESC_DU] - 1; /* Just before substitute */ | |
| 3985 | class_has_8bitchar--; /* Undo! */ | |
| 3986 | continue; | |
| 3987 | #endif | |
| 3988 | case ESC_d: | case ESC_d: |
| 3989 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; |
| 3990 | continue; | continue; |
| # | Line 3011 for (;; ptr++) | Line 4003 for (;; ptr++) |
| 4003 | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; | for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; |
| 4004 | continue; | continue; |
| 4005 | ||
| 4006 | /* Perl 5.004 onwards omits VT from \s, but we must preserve it | |
| 4007 | if it was previously set by something earlier in the character | |
| 4008 | class. */ | |
| 4009 | ||
| 4010 | case ESC_s: | case ESC_s: |
| 4011 | for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | classbits[0] |= cbits[cbit_space]; |
| 4012 | classbits[1] &= ~0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= cbits[cbit_space+1] & ~0x08; |
| 4013 | for (c = 2; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; | |
| 4014 | continue; | continue; |
| 4015 | ||
| 4016 | case ESC_S: | case ESC_S: |
| # | Line 3022 for (;; ptr++) | Line 4019 for (;; ptr++) |
| 4019 | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ | classbits[1] |= 0x08; /* Perl 5.004 onwards omits VT from \s */ |
| 4020 | continue; | continue; |
| 4021 | ||
| 4022 | default: /* Not recognized; fall through */ | case ESC_h: |
| break; /* Need "default" setting to stop compiler warning. */ | ||
| } | ||
| /* In the pre-compile phase, just do the recognition. */ | ||
| else if (c == -ESC_d || c == -ESC_D || c == -ESC_w || | ||
| c == -ESC_W || c == -ESC_s || c == -ESC_S) continue; | ||
| /* We need to deal with \H, \h, \V, and \v in both phases because | ||
| they use extra memory. */ | ||
| if (-c == ESC_h) | ||
| { | ||
| 4023 | SETBIT(classbits, 0x09); /* VT */ | SETBIT(classbits, 0x09); /* VT */ |
| 4024 | SETBIT(classbits, 0x20); /* SPACE */ | SETBIT(classbits, 0x20); /* SPACE */ |
| 4025 | SETBIT(classbits, 0xa0); /* NSBP */ | SETBIT(classbits, 0xa0); /* NSBP */ |
| 4026 | #ifdef SUPPORT_UTF8 | #ifndef COMPILE_PCRE8 |
| 4027 | if (utf8) | xclass = TRUE; |
| 4028 | *class_uchardata++ = XCL_SINGLE; | |
| 4029 | *class_uchardata++ = 0x1680; | |
| 4030 | *class_uchardata++ = XCL_SINGLE; | |
| 4031 | *class_uchardata++ = 0x180e; | |
| 4032 | *class_uchardata++ = XCL_RANGE; | |
| 4033 | *class_uchardata++ = 0x2000; | |
| 4034 | *class_uchardata++ = 0x200a; | |
| 4035 | *class_uchardata++ = XCL_SINGLE; | |
| 4036 | *class_uchardata++ = 0x202f; | |
| 4037 | *class_uchardata++ = XCL_SINGLE; | |
| 4038 | *class_uchardata++ = 0x205f; | |
| 4039 | *class_uchardata++ = XCL_SINGLE; | |
| 4040 | *class_uchardata++ = 0x3000; | |
| 4041 | #elif defined SUPPORT_UTF | |
| 4042 | if (utf) | |
| 4043 | { | { |
| 4044 | class_utf8 = TRUE; | xclass = TRUE; |
| 4045 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4046 | class_utf8data += _pcre_ord2utf8(0x1680, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x1680, class_uchardata); |
| 4047 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4048 | class_utf8data += _pcre_ord2utf8(0x180e, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x180e, class_uchardata); |
| 4049 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4050 | class_utf8data += _pcre_ord2utf8(0x2000, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2000, class_uchardata); |
| 4051 | class_utf8data += _pcre_ord2utf8(0x200A, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x200a, class_uchardata); |
| 4052 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4053 | class_utf8data += _pcre_ord2utf8(0x202f, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x202f, class_uchardata); |
| 4054 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4055 | class_utf8data += _pcre_ord2utf8(0x205f, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x205f, class_uchardata); |
| 4056 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4057 | class_utf8data += _pcre_ord2utf8(0x3000, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x3000, class_uchardata); |
| 4058 | } | } |
| 4059 | #endif | #endif |
| 4060 | continue; | continue; |
| } | ||
| 4061 | ||
| 4062 | if (-c == ESC_H) | case ESC_H: |
| { | ||
| 4063 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
| 4064 | { | { |
| 4065 | int x = 0xff; | int x = 0xff; |
| # | Line 3075 for (;; ptr++) | Line 4072 for (;; ptr++) |
| 4072 | } | } |
| 4073 | classbits[c] |= x; | classbits[c] |= x; |
| 4074 | } | } |
| 4075 | #ifndef COMPILE_PCRE8 | |
| 4076 | #ifdef SUPPORT_UTF8 | xclass = TRUE; |
| 4077 | if (utf8) | *class_uchardata++ = XCL_RANGE; |
| 4078 | *class_uchardata++ = 0x0100; | |
| 4079 | *class_uchardata++ = 0x167f; | |
| 4080 | *class_uchardata++ = XCL_RANGE; | |
| 4081 | *class_uchardata++ = 0x1681; | |
| 4082 | *class_uchardata++ = 0x180d; | |
| 4083 | *class_uchardata++ = XCL_RANGE; | |
| 4084 | *class_uchardata++ = 0x180f; | |
| 4085 | *class_uchardata++ = 0x1fff; | |
| 4086 | *class_uchardata++ = XCL_RANGE; | |
| 4087 | *class_uchardata++ = 0x200b; | |
| 4088 | *class_uchardata++ = 0x202e; | |
| 4089 | *class_uchardata++ = XCL_RANGE; | |
| 4090 | *class_uchardata++ = 0x2030; | |
| 4091 | *class_uchardata++ = 0x205e; | |
| 4092 | *class_uchardata++ = XCL_RANGE; | |
| 4093 | *class_uchardata++ = 0x2060; | |
| 4094 | *class_uchardata++ = 0x2fff; | |
| 4095 | *class_uchardata++ = XCL_RANGE; | |
| 4096 | *class_uchardata++ = 0x3001; | |
| 4097 | #ifdef SUPPORT_UTF | |
| 4098 | if (utf) | |
| 4099 | class_uchardata += PRIV(ord2utf)(0x10ffff, class_uchardata); | |
| 4100 | else | |
| 4101 | #endif | |
| 4102 | *class_uchardata++ = 0xffff; | |
| 4103 | #elif defined SUPPORT_UTF | |
| 4104 | if (utf) | |
| 4105 | { | { |
| 4106 | class_utf8 = TRUE; | xclass = TRUE; |
| 4107 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4108 | class_utf8data += _pcre_ord2utf8(0x0100, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x0100, class_uchardata); |
| 4109 | class_utf8data += _pcre_ord2utf8(0x167f, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x167f, class_uchardata); |
| 4110 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4111 | class_utf8data += _pcre_ord2utf8(0x1681, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x1681, class_uchardata); |
| 4112 | class_utf8data += _pcre_ord2utf8(0x180d, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x180d, class_uchardata); |
| 4113 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4114 | class_utf8data += _pcre_ord2utf8(0x180f, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x180f, class_uchardata); |
| 4115 | class_utf8data += _pcre_ord2utf8(0x1fff, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x1fff, class_uchardata); |
| 4116 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4117 | class_utf8data += _pcre_ord2utf8(0x200B, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x200b, class_uchardata); |
| 4118 | class_utf8data += _pcre_ord2utf8(0x202e, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x202e, class_uchardata); |
| 4119 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4120 | class_utf8data += _pcre_ord2utf8(0x2030, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2030, class_uchardata); |
| 4121 | class_utf8data += _pcre_ord2utf8(0x205e, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x205e, class_uchardata); |
| 4122 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4123 | class_utf8data += _pcre_ord2utf8(0x2060, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2060, class_uchardata); |
| 4124 | class_utf8data += _pcre_ord2utf8(0x2fff, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2fff, class_uchardata); |
| 4125 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4126 | class_utf8data += _pcre_ord2utf8(0x3001, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x3001, class_uchardata); |
| 4127 | class_utf8data += _pcre_ord2utf8(0x7fffffff, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x10ffff, class_uchardata); |
| 4128 | } | } |
| 4129 | #endif | #endif |
| 4130 | continue; | continue; |
| } | ||
| 4131 | ||
| 4132 | if (-c == ESC_v) | case ESC_v: |
| { | ||
| 4133 | SETBIT(classbits, 0x0a); /* LF */ | SETBIT(classbits, 0x0a); /* LF */ |
| 4134 | SETBIT(classbits, 0x0b); /* VT */ | SETBIT(classbits, 0x0b); /* VT */ |
| 4135 | SETBIT(classbits, 0x0c); /* FF */ | SETBIT(classbits, 0x0c); /* FF */ |
| 4136 | SETBIT(classbits, 0x0d); /* CR */ | SETBIT(classbits, 0x0d); /* CR */ |
| 4137 | SETBIT(classbits, 0x85); /* NEL */ | SETBIT(classbits, 0x85); /* NEL */ |
| 4138 | #ifdef SUPPORT_UTF8 | #ifndef COMPILE_PCRE8 |
| 4139 | if (utf8) | xclass = TRUE; |
| 4140 | *class_uchardata++ = XCL_RANGE; | |
| 4141 | *class_uchardata++ = 0x2028; | |
| 4142 | *class_uchardata++ = 0x2029; | |
| 4143 | #elif defined SUPPORT_UTF | |
| 4144 | if (utf) | |
| 4145 | { | { |
| 4146 | class_utf8 = TRUE; | xclass = TRUE; |
| 4147 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4148 | class_utf8data += _pcre_ord2utf8(0x2028, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2028, class_uchardata); |
| 4149 | class_utf8data += _pcre_ord2utf8(0x2029, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2029, class_uchardata); |
| 4150 | } | } |
| 4151 | #endif | #endif |
| 4152 | continue; | continue; |
| } | ||
| 4153 | ||
| 4154 | if (-c == ESC_V) | case ESC_V: |
| { | ||
| 4155 | for (c = 0; c < 32; c++) | for (c = 0; c < 32; c++) |
| 4156 | { | { |
| 4157 | int x = 0xff; | int x = 0xff; |
| # | Line 3143 for (;; ptr++) | Line 4168 for (;; ptr++) |
| 4168 | classbits[c] |= x; | classbits[c] |= x; |
| 4169 | } | } |
| 4170 | ||
| 4171 | #ifdef SUPPORT_UTF8 | #ifndef COMPILE_PCRE8 |
| 4172 | if (utf8) | xclass = TRUE; |
| 4173 | *class_uchardata++ = XCL_RANGE; | |
| 4174 | *class_uchardata++ = 0x0100; | |
| 4175 | *class_uchardata++ = 0x2027; | |
| 4176 | *class_uchardata++ = XCL_RANGE; | |
| 4177 | *class_uchardata++ = 0x202a; | |
| 4178 | #ifdef SUPPORT_UTF | |
| 4179 | if (utf) | |
| 4180 | class_uchardata += PRIV(ord2utf)(0x10ffff, class_uchardata); | |
| 4181 | else | |
| 4182 | #endif | |
| 4183 | *class_uchardata++ = 0xffff; | |
| 4184 | #elif defined SUPPORT_UTF | |
| 4185 | if (utf) | |
| 4186 | { | { |
| 4187 | class_utf8 = TRUE; | xclass = TRUE; |
| 4188 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4189 | class_utf8data += _pcre_ord2utf8(0x0100, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x0100, class_uchardata); |
| 4190 | class_utf8data += _pcre_ord2utf8(0x2027, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x2027, class_uchardata); |
| 4191 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4192 | class_utf8data += _pcre_ord2utf8(0x2029, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x202a, class_uchardata); |
| 4193 | class_utf8data += _pcre_ord2utf8(0x7fffffff, class_utf8data); | class_uchardata += PRIV(ord2utf)(0x10ffff, class_uchardata); |
| 4194 | } | } |
| 4195 | #endif | #endif |
| 4196 | continue; | continue; |
| } | ||
| /* We need to deal with \P and \p in both phases. */ | ||
| 4197 | ||
| 4198 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
| 4199 | if (-c == ESC_p || -c == ESC_P) | case ESC_p: |
| 4200 | { | case ESC_P: |
| 4201 | BOOL negated; | { |
| 4202 | int pdata; | BOOL negated; |
| 4203 | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); | int pdata; |
| 4204 | if (ptype < 0) goto FAILED; | int ptype = get_ucp(&ptr, &negated, &pdata, errorcodeptr); |
| 4205 | class_utf8 = TRUE; | if (ptype < 0) goto FAILED; |
| 4206 | *class_utf8data++ = ((-c == ESC_p) != negated)? | xclass = TRUE; |
| 4207 | XCL_PROP : XCL_NOTPROP; | *class_uchardata++ = ((-c == ESC_p) != negated)? |
| 4208 | *class_utf8data++ = ptype; | XCL_PROP : XCL_NOTPROP; |
| 4209 | *class_utf8data++ = pdata; | *class_uchardata++ = ptype; |
| 4210 | class_charcount -= 2; /* Not a < 256 character */ | *class_uchardata++ = pdata; |
| 4211 | continue; | class_has_8bitchar--; /* Undo! */ |
| 4212 | } | continue; |
| 4213 | } | |
| 4214 | #endif | #endif |
| 4215 | /* Unrecognized escapes are faulted if PCRE is running in its | /* Unrecognized escapes are faulted if PCRE is running in its |
| 4216 | strict mode. By default, for compatibility with Perl, they are | strict mode. By default, for compatibility with Perl, they are |
| 4217 | treated as literals. */ | treated as literals. */ |
| 4218 | ||
| 4219 | if ((options & PCRE_EXTRA) != 0) | default: |
| 4220 | { | if ((options & PCRE_EXTRA) != 0) |
| 4221 | *errorcodeptr = ERR7; | { |
| 4222 | goto FAILED; | *errorcodeptr = ERR7; |
| 4223 | goto FAILED; | |
| 4224 | } | |
| 4225 | class_has_8bitchar--; /* Undo the speculative increase. */ | |
| 4226 | class_single_char -= 2; /* Undo the speculative increase. */ | |
| 4227 | c = *ptr; /* Get the final character and fall through */ | |
| 4228 | break; | |
| 4229 | } | } |
| class_charcount -= 2; /* Undo the default count from above */ | ||
| c = *ptr; /* Get the final character and fall through */ | ||
| 4230 | } | } |
| 4231 | ||
| 4232 | /* Fall through if we have a single character (c >= 0). This may be | /* Fall through if we have a single character (c >= 0). This may be |
| 4233 | greater than 256 in UTF-8 mode. */ | greater than 256. */ |
| 4234 | ||
| 4235 | } /* End of backslash handling */ | } /* End of backslash handling */ |
| 4236 | ||
| # | Line 3239 for (;; ptr++) | Line 4278 for (;; ptr++) |
| 4278 | goto LONE_SINGLE_CHARACTER; | goto LONE_SINGLE_CHARACTER; |
| 4279 | } | } |
| 4280 | ||
| 4281 | #ifdef SUPPORT_UTF8 | #ifdef SUPPORT_UTF |
| 4282 | if (utf8) | if (utf) |
| 4283 | { /* Braces are required because the */ | { /* Braces are required because the */ |
| 4284 | GETCHARLEN(d, ptr, ptr); /* macro generates multiple statements */ | GETCHARLEN(d, ptr, ptr); /* macro generates multiple statements */ |
| 4285 | } | } |
| # | Line 3257 for (;; ptr++) | Line 4296 for (;; ptr++) |
| 4296 | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); | d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE); |
| 4297 | if (*errorcodeptr != 0) goto FAILED; | if (*errorcodeptr != 0) goto FAILED; |
| 4298 | ||
| 4299 | /* \b is backspace; \X is literal X; \R is literal R; any other | /* \b is backspace; any other special means the '-' was literal */ |
| special means the '-' was literal */ | ||
| 4300 | ||
| 4301 | if (d < 0) | if (d < 0) |
| 4302 | { | { |
| 4303 | if (d == -ESC_b) d = CHAR_BS; | if (d == -ESC_b) d = CHAR_BS; else |
| else if (d == -ESC_X) d = CHAR_X; | ||
| else if (d == -ESC_R) d = CHAR_R; else | ||
| 4304 | { | { |
| 4305 | ptr = oldptr; | ptr = oldptr; |
| 4306 | goto LONE_SINGLE_CHARACTER; /* A few lines below */ | goto LONE_SINGLE_CHARACTER; /* A few lines below */ |
| # | Line 3287 for (;; ptr++) | Line 4323 for (;; ptr++) |
| 4323 | ||
| 4324 | if (d == CHAR_CR || d == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF; | if (d == CHAR_CR || d == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF; |
| 4325 | ||
| 4326 | /* Since we found a character range, single character optimizations | |
| 4327 | cannot be done anymore. */ | |
| 4328 | class_single_char = 2; | |
| 4329 | ||
| 4330 | /* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless | /* In UTF-8 mode, if the upper limit is > 255, or > 127 for caseless |
| 4331 | matching, we have to use an XCLASS with extra data items. Caseless | matching, we have to use an XCLASS with extra data items. Caseless |
| 4332 | matching for characters > 127 is available only if UCP support is | matching for characters > 127 is available only if UCP support is |
| 4333 | available. */ | available. */ |
| 4334 | ||
| 4335 | #ifdef SUPPORT_UTF8 | #if defined SUPPORT_UTF && !(defined COMPILE_PCRE8) |
| 4336 | if (utf8 && (d > 255 || ((options & PCRE_CASELESS) != 0 && d > 127))) | if ((d > 255) || (utf && ((options & PCRE_CASELESS) != 0 && d > 127))) |
| 4337 | #elif defined SUPPORT_UTF | |
| 4338 | if (utf && (d > 255 || ((options & PCRE_CASELESS) != 0 && d > 127))) | |
| 4339 | #elif !(defined COMPILE_PCRE8) | |
| 4340 | if (d > 255) | |
| 4341 | #endif | |
| 4342 | #if defined SUPPORT_UTF || !(defined COMPILE_PCRE8) | |
| 4343 | { | { |
| 4344 | class_utf8 = TRUE; | xclass = TRUE; |
| 4345 | ||
| 4346 | /* With UCP support, we can find the other case equivalents of | /* With UCP support, we can find the other case equivalents of |
| 4347 | the relevant characters. There may be several ranges. Optimize how | the relevant characters. There may be several ranges. Optimize how |
| 4348 | they fit with the basic range. */ | they fit with the basic range. */ |
| 4349 | ||
| 4350 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
| 4351 | #ifndef COMPILE_PCRE8 | |
| 4352 | if (utf && (options & PCRE_CASELESS) != 0) | |
| 4353 | #else | |
| 4354 | if ((options & PCRE_CASELESS) != 0) | if ((options & PCRE_CASELESS) != 0) |
| 4355 | #endif | |
| 4356 | { | { |
| 4357 | unsigned int occ, ocd; | unsigned int occ, ocd; |
| 4358 | unsigned int cc = c; | unsigned int cc = c; |
| # | Line 3328 for (;; ptr++) | Line 4378 for (;; ptr++) |
| 4378 | ||
| 4379 | if (occ == ocd) | if (occ == ocd) |
| 4380 | { | { |
| 4381 | *class_utf8data++ = XCL_SINGLE; | *class_uchardata++ = XCL_SINGLE; |
| 4382 | } | } |
| 4383 | else | else |
| 4384 | { | { |
| 4385 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4386 | class_utf8data += _pcre_ord2utf8(occ, class_utf8data); | class_uchardata += PRIV(ord2utf)(occ, class_uchardata); |
| 4387 | } | } |
| 4388 | class_utf8data += _pcre_ord2utf8(ocd, class_utf8data); | class_uchardata += PRIV(ord2utf)(ocd, class_uchardata); |
| 4389 | } | } |
| 4390 | } | } |
| 4391 | #endif /* SUPPORT_UCP */ | #endif /* SUPPORT_UCP */ |
| # | Line 3343 for (;; ptr++) | Line 4393 for (;; ptr++) |
| 4393 | /* Now record the original range, possibly modified for UCP caseless | /* Now record the original range, possibly modified for UCP caseless |
| 4394 | overlapping ranges. */ | overlapping ranges. */ |
| 4395 | ||
| 4396 | *class_utf8data++ = XCL_RANGE; | *class_uchardata++ = XCL_RANGE; |
| 4397 | class_utf8data += _pcre_ord2utf8(c, class_utf8data); | #ifdef SUPPORT_UTF |
| 4398 | class_utf8data += _pcre_ord2utf8(d, class_utf8data); | #ifndef COMPILE_PCRE8 |
| 4399 | if (utf) | |
| 4400 | { | |
| 4401 | class_uchardata += PRIV(ord2utf)(c, class_uchardata); | |
| 4402 | class_uchardata += PRIV(ord2utf)(d, class_uchardata); | |
| 4403 | } | |
| 4404 | else | |
| 4405 | { | |
| 4406 | *class_uchardata++ = c; | |
| 4407 | *class_uchardata++ = d; | |
| 4408 | } | |
| 4409 | #else | |
| 4410 | class_uchardata += PRIV(ord2utf)(c, class_uchardata); | |
| 4411 | class_uchardata += PRIV(ord2utf)(d, class_uchardata); | |
| 4412 | #endif | |
| 4413 | #else /* SUPPORT_UTF */ | |
| 4414 | *class_uchardata++ = c; | |
| 4415 | *class_uchardata++ = d; | |
| 4416 | #endif /* SUPPORT_UTF */ | |
| 4417 | ||
| 4418 | /* With UCP support, we are done. Without UCP support, there is no | /* With UCP support, we are done. Without UCP support, there is no |
| 4419 | caseless matching for UTF-8 characters > 127; we can use the bit map | caseless matching for UTF characters > 127; we can use the bit map |
| 4420 | for the smaller ones. */ | for the smaller ones. As for 16 bit characters without UTF, we |
| 4421 | can still use */ | |
| 4422 | ||
| 4423 | #ifdef SUPPORT_UCP | #ifdef SUPPORT_UCP |
| 4424 | continue; /* With next character in the class */ | #ifndef COMPILE_PCRE8 |
| 4425 | #else | if (utf) |
| 4426 | if ((options & PCRE_CASELESS) == 0 || c > 127) continue; | #endif |
| 4427 | continue; /* With next character in the class */ | |
| 4428 | #endif /* SUPPORT_UCP */ | |
| 4429 | ||
| 4430 | #if defined SUPPORT_UTF && !defined(SUPPORT_UCP) && !(defined COMPILE_PCRE8) | |
| 4431 | if (utf) | |
| 4432 | { | |
| 4433 | if ((options & PCRE_CASELESS) == 0 || c > 127) continue; | |
| 4434 | /* Adjust upper limit and fall through to set up the map */ | |
| 4435 | d = 127; | |
| 4436 | } | |
| 4437 | else | |
| 4438 | { | |
| 4439 | if (c > 255) continue; | |
| 4440 | /* Adjust upper limit and fall through to set up the map */ | |
| 4441 | d = 255; | |
| 4442 | } | |
| 4443 | #elif defined SUPPORT_UTF && !defined(SUPPORT_UCP) | |
| 4444 | if ((options & PCRE_CASELESS) == 0 || c > 127) continue; | |
| 4445 | /* Adjust upper limit and fall through to set up the map */ | /* Adjust upper limit and fall through to set up the map */ |
| 4446 | d = 127; | d = 127; |
| 4447 | #else | |
| 4448 | #endif /* SUPPORT_UCP */ | if (c > 255) continue; |
| 4449 | /* Adjust upper limit and fall through to set up the map */ | |
| 4450 | d = 255; | |
| 4451 | #endif /* SUPPORT_UTF && !SUPPORT_UCP && !COMPILE_PCRE8 */ | |
| 4452 | } | } |
| 4453 | #endif /* SUPPORT_UTF8 */ | #endif /* SUPPORT_UTF || !COMPILE_PCRE8 */ |