This source file includes following definitions.
- find_error_text
- expand_workspace
- is_counted_repeat
- check_escape
- get_ucp
- read_repeat_counts
- first_significant_code
- find_fixedlength
- find_recurse
- could_be_empty_branch
- could_be_empty
- get_repeat_base
- check_char_prop
- get_chr_property_list
- compare_opcodes
- auto_possessify
- check_posix_syntax
- check_posix_name
- adjust_recurse
- auto_callout
- complete_callout
- get_othercase_range
- add_to_class
- add_list_to_class
- add_not_list_to_class
- compile_branch
- compile_regex
- is_anchored
- is_startline
- find_firstassertedchar
- add_name
- pcre_compile
- pcre_compile2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 #ifdef HAVE_CONFIG_H
46 #include "config.h"
47 #endif
48
49 #define NLBLOCK cd
50 #define PSSTART start_pattern
51 #define PSEND end_pattern
52
53 #include "pcre_internal.h"
54
55
56
57
58
59
60
61 #ifdef PCRE_DEBUG
62
63 #define PCRE_INCLUDED
64 #include "pcre_printint.c"
65 #undef PCRE_INCLUDED
66 #endif
67
68
69
70
71 #define SETBIT(a,b) a[(b)/8] |= (1 << ((b)&7))
72
73
74
75
76
77
78 #define OFLOW_MAX (INT_MAX - 20)
79
80
81
82 static int
83 add_list_to_class(pcre_uint8 *, pcre_uchar **, int, compile_data *,
84 const pcre_uint32 *, unsigned int);
85
86 static BOOL
87 compile_regex(int, pcre_uchar **, const pcre_uchar **, int *, BOOL, BOOL, int, int,
88 pcre_uint32 *, pcre_int32 *, pcre_uint32 *, pcre_int32 *, branch_chain *,
89 compile_data *, int *);
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115 #define COMPILE_WORK_SIZE (2048*LINK_SIZE)
116 #define COMPILE_WORK_SIZE_MAX (100*COMPILE_WORK_SIZE)
117
118
119
120
121
122
123 #define NAMED_GROUP_LIST_SIZE 20
124
125
126
127
128 #define WORK_SIZE_SAFETY_MARGIN (100)
129
130
131
132 #define REQ_CASELESS (1 << 0)
133 #define REQ_VARY (1 << 1)
134
135 #define REQ_UNSET (-2)
136 #define REQ_NONE (-1)
137
138
139
140 #define UTF_LENGTH 0x10000000l
141
142
143
144
145
146
147 #ifndef EBCDIC
148
149
150
151
152 static const short int escapes[] = {
153 0, 0,
154 0, 0,
155 0, 0,
156 0, 0,
157 0, 0,
158 CHAR_COLON, CHAR_SEMICOLON,
159 CHAR_LESS_THAN_SIGN, CHAR_EQUALS_SIGN,
160 CHAR_GREATER_THAN_SIGN, CHAR_QUESTION_MARK,
161 CHAR_COMMERCIAL_AT, -ESC_A,
162 -ESC_B, -ESC_C,
163 -ESC_D, -ESC_E,
164 0, -ESC_G,
165 -ESC_H, 0,
166 0, -ESC_K,
167 0, 0,
168 -ESC_N, 0,
169 -ESC_P, -ESC_Q,
170 -ESC_R, -ESC_S,
171 0, 0,
172 -ESC_V, -ESC_W,
173 -ESC_X, 0,
174 -ESC_Z, CHAR_LEFT_SQUARE_BRACKET,
175 CHAR_BACKSLASH, CHAR_RIGHT_SQUARE_BRACKET,
176 CHAR_CIRCUMFLEX_ACCENT, CHAR_UNDERSCORE,
177 CHAR_GRAVE_ACCENT, ESC_a,
178 -ESC_b, 0,
179 -ESC_d, ESC_e,
180 ESC_f, 0,
181 -ESC_h, 0,
182 0, -ESC_k,
183 0, 0,
184 ESC_n, 0,
185 -ESC_p, 0,
186 ESC_r, -ESC_s,
187 ESC_tee, 0,
188 -ESC_v, -ESC_w,
189 0, 0,
190 -ESC_z
191 };
192
193 #else
194
195
196
197 static const short int escapes[] = {
198 0, 0, 0, '.', '<', '(', '+', '|',
199 '&', 0, 0, 0, 0, 0, 0, 0,
200 0, 0, '!', '$', '*', ')', ';', '~',
201 '-', '/', 0, 0, 0, 0, 0, 0,
202 0, 0, '|', ',', '%', '_', '>', '?',
203 0, 0, 0, 0, 0, 0, 0, 0,
204 0, '`', ':', '#', '@', '\'', '=', '"',
205 0, ESC_a, -ESC_b, 0, -ESC_d, ESC_e, ESC_f, 0,
206 -ESC_h, 0, 0, '{', 0, 0, 0, 0,
207 0, 0, -ESC_k, 0, 0, ESC_n, 0, -ESC_p,
208 0, ESC_r, 0, '}', 0, 0, 0, 0,
209 0, '~', -ESC_s, ESC_tee, 0,-ESC_v, -ESC_w, 0,
210 0,-ESC_z, 0, 0, 0, '[', 0, 0,
211 0, 0, 0, 0, 0, 0, 0, 0,
212 0, 0, 0, 0, 0, ']', '=', '-',
213 '{',-ESC_A, -ESC_B, -ESC_C, -ESC_D,-ESC_E, 0, -ESC_G,
214 -ESC_H, 0, 0, 0, 0, 0, 0, 0,
215 '}', 0, -ESC_K, 0, 0,-ESC_N, 0, -ESC_P,
216 -ESC_Q,-ESC_R, 0, 0, 0, 0, 0, 0,
217 '\\', 0, -ESC_S, 0, 0,-ESC_V, -ESC_W, -ESC_X,
218 0,-ESC_Z, 0, 0, 0, 0, 0, 0,
219 0, 0, 0, 0, 0, 0, 0, 0,
220 0, 0, 0, 0, 0, 0, 0, 0
221 };
222
223
224
225
226 static unsigned char ebcdic_escape_c[] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
227
228 #endif
229
230
231
232
233
234
235
236
237 typedef struct verbitem {
238 int len;
239 int op;
240 int op_arg;
241 } verbitem;
242
243 static const char verbnames[] =
244 "\0"
245 STRING_MARK0
246 STRING_ACCEPT0
247 STRING_COMMIT0
248 STRING_F0
249 STRING_FAIL0
250 STRING_PRUNE0
251 STRING_SKIP0
252 STRING_THEN;
253
254 static const verbitem verbs[] = {
255 { 0, -1, OP_MARK },
256 { 4, -1, OP_MARK },
257 { 6, OP_ACCEPT, -1 },
258 { 6, OP_COMMIT, -1 },
259 { 1, OP_FAIL, -1 },
260 { 4, OP_FAIL, -1 },
261 { 5, OP_PRUNE, OP_PRUNE_ARG },
262 { 4, OP_SKIP, OP_SKIP_ARG },
263 { 4, OP_THEN, OP_THEN_ARG }
264 };
265
266 static const int verbcount = sizeof(verbs)/sizeof(verbitem);
267
268
269
270
271
272 static const pcre_uchar sub_start_of_word[] = {
273 CHAR_BACKSLASH, CHAR_b, CHAR_LEFT_PARENTHESIS, CHAR_QUESTION_MARK,
274 CHAR_EQUALS_SIGN, CHAR_BACKSLASH, CHAR_w, CHAR_RIGHT_PARENTHESIS, '\0' };
275
276 static const pcre_uchar sub_end_of_word[] = {
277 CHAR_BACKSLASH, CHAR_b, CHAR_LEFT_PARENTHESIS, CHAR_QUESTION_MARK,
278 CHAR_LESS_THAN_SIGN, CHAR_EQUALS_SIGN, CHAR_BACKSLASH, CHAR_w,
279 CHAR_RIGHT_PARENTHESIS, '\0' };
280
281
282
283
284
285
286
287
288
289 static const char posix_names[] =
290 STRING_alpha0 STRING_lower0 STRING_upper0 STRING_alnum0
291 STRING_ascii0 STRING_blank0 STRING_cntrl0 STRING_digit0
292 STRING_graph0 STRING_print0 STRING_punct0 STRING_space0
293 STRING_word0 STRING_xdigit;
294
295 static const pcre_uint8 posix_name_lengths[] = {
296 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 6, 0 };
297
298 #define PC_GRAPH 8
299 #define PC_PRINT 9
300 #define PC_PUNCT 10
301
302
303
304
305
306
307
308
309
310
311
312
313 static const int posix_class_maps[] = {
314 cbit_word, cbit_digit, -2,
315 cbit_lower, -1, 0,
316 cbit_upper, -1, 0,
317 cbit_word, -1, 2,
318 cbit_print, cbit_cntrl, 0,
319 cbit_space, -1, 1,
320 cbit_cntrl, -1, 0,
321 cbit_digit, -1, 0,
322 cbit_graph, -1, 0,
323 cbit_print, -1, 0,
324 cbit_punct, -1, 0,
325 cbit_space, -1, 0,
326 cbit_word, -1, 0,
327 cbit_xdigit,-1, 0
328 };
329
330
331
332
333 #ifdef SUPPORT_UCP
334 static const pcre_uchar string_PNd[] = {
335 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
336 CHAR_N, CHAR_d, CHAR_RIGHT_CURLY_BRACKET, '\0' };
337 static const pcre_uchar string_pNd[] = {
338 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
339 CHAR_N, CHAR_d, CHAR_RIGHT_CURLY_BRACKET, '\0' };
340 static const pcre_uchar string_PXsp[] = {
341 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
342 CHAR_X, CHAR_s, CHAR_p, CHAR_RIGHT_CURLY_BRACKET, '\0' };
343 static const pcre_uchar string_pXsp[] = {
344 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
345 CHAR_X, CHAR_s, CHAR_p, CHAR_RIGHT_CURLY_BRACKET, '\0' };
346 static const pcre_uchar string_PXwd[] = {
347 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
348 CHAR_X, CHAR_w, CHAR_d, CHAR_RIGHT_CURLY_BRACKET, '\0' };
349 static const pcre_uchar string_pXwd[] = {
350 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
351 CHAR_X, CHAR_w, CHAR_d, CHAR_RIGHT_CURLY_BRACKET, '\0' };
352
353 static const pcre_uchar *substitutes[] = {
354 string_PNd,
355 string_pNd,
356 string_PXsp,
357 string_pXsp,
358 string_PXwd,
359 string_pXwd
360 };
361
362
363
364
365
366
367
368 static const pcre_uchar string_pL[] = {
369 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
370 CHAR_L, CHAR_RIGHT_CURLY_BRACKET, '\0' };
371 static const pcre_uchar string_pLl[] = {
372 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
373 CHAR_L, CHAR_l, CHAR_RIGHT_CURLY_BRACKET, '\0' };
374 static const pcre_uchar string_pLu[] = {
375 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
376 CHAR_L, CHAR_u, CHAR_RIGHT_CURLY_BRACKET, '\0' };
377 static const pcre_uchar string_pXan[] = {
378 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
379 CHAR_X, CHAR_a, CHAR_n, CHAR_RIGHT_CURLY_BRACKET, '\0' };
380 static const pcre_uchar string_h[] = {
381 CHAR_BACKSLASH, CHAR_h, '\0' };
382 static const pcre_uchar string_pXps[] = {
383 CHAR_BACKSLASH, CHAR_p, CHAR_LEFT_CURLY_BRACKET,
384 CHAR_X, CHAR_p, CHAR_s, CHAR_RIGHT_CURLY_BRACKET, '\0' };
385 static const pcre_uchar string_PL[] = {
386 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
387 CHAR_L, CHAR_RIGHT_CURLY_BRACKET, '\0' };
388 static const pcre_uchar string_PLl[] = {
389 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
390 CHAR_L, CHAR_l, CHAR_RIGHT_CURLY_BRACKET, '\0' };
391 static const pcre_uchar string_PLu[] = {
392 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
393 CHAR_L, CHAR_u, CHAR_RIGHT_CURLY_BRACKET, '\0' };
394 static const pcre_uchar string_PXan[] = {
395 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
396 CHAR_X, CHAR_a, CHAR_n, CHAR_RIGHT_CURLY_BRACKET, '\0' };
397 static const pcre_uchar string_H[] = {
398 CHAR_BACKSLASH, CHAR_H, '\0' };
399 static const pcre_uchar string_PXps[] = {
400 CHAR_BACKSLASH, CHAR_P, CHAR_LEFT_CURLY_BRACKET,
401 CHAR_X, CHAR_p, CHAR_s, CHAR_RIGHT_CURLY_BRACKET, '\0' };
402
403 static const pcre_uchar *posix_substitutes[] = {
404 string_pL,
405 string_pLl,
406 string_pLu,
407 string_pXan,
408 NULL,
409 string_h,
410 NULL,
411 string_pNd,
412 NULL,
413 NULL,
414 NULL,
415 string_pXps,
416 string_pXwd,
417 NULL,
418
419 string_PL,
420 string_PLl,
421 string_PLu,
422 string_PXan,
423 NULL,
424 string_H,
425 NULL,
426 string_PNd,
427 NULL,
428 NULL,
429 NULL,
430 string_PXps,
431 string_PXwd,
432 NULL
433 };
434 #define POSIX_SUBSIZE (sizeof(posix_substitutes) / sizeof(pcre_uchar *))
435 #endif
436
437 #define STRING(a) # a
438 #define XSTRING(s) STRING(s)
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454 static const char error_texts[] =
455 "no error\0"
456 "\\ at end of pattern\0"
457 "\\c at end of pattern\0"
458 "unrecognized character follows \\\0"
459 "numbers out of order in {} quantifier\0"
460
461 "number too big in {} quantifier\0"
462 "missing terminating ] for character class\0"
463 "invalid escape sequence in character class\0"
464 "range out of order in character class\0"
465 "nothing to repeat\0"
466
467 "internal error: invalid forward reference offset\0"
468 "internal error: unexpected repeat\0"
469 "unrecognized character after (? or (?-\0"
470 "POSIX named classes are supported only within a class\0"
471 "missing )\0"
472
473 "reference to non-existent subpattern\0"
474 "erroffset passed as NULL\0"
475 "unknown option bit(s) set\0"
476 "missing ) after comment\0"
477 "parentheses nested too deeply\0"
478
479 "regular expression is too large\0"
480 "failed to get memory\0"
481 "unmatched parentheses\0"
482 "internal error: code overflow\0"
483 "unrecognized character after (?<\0"
484
485 "lookbehind assertion is not fixed length\0"
486 "malformed number or name after (?(\0"
487 "conditional group contains more than two branches\0"
488 "assertion expected after (?(\0"
489 "(?R or (?[+-]digits must be followed by )\0"
490
491 "unknown POSIX class name\0"
492 "POSIX collating elements are not supported\0"
493 "this version of PCRE is compiled without UTF support\0"
494 "spare error\0"
495 "character value in \\x{} or \\o{} is too large\0"
496
497 "invalid condition (?(0)\0"
498 "\\C not allowed in lookbehind assertion\0"
499 "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0"
500 "number after (?C is > 255\0"
501 "closing ) for (?C expected\0"
502
503 "recursive call could loop indefinitely\0"
504 "unrecognized character after (?P\0"
505 "syntax error in subpattern name (missing terminator)\0"
506 "two named subpatterns have the same name\0"
507 "invalid UTF-8 string\0"
508
509 "support for \\P, \\p, and \\X has not been compiled\0"
510 "malformed \\P or \\p sequence\0"
511 "unknown property name after \\P or \\p\0"
512 "subpattern name is too long (maximum " XSTRING(MAX_NAME_SIZE) " characters)\0"
513 "too many named subpatterns (maximum " XSTRING(MAX_NAME_COUNT) ")\0"
514
515 "repeated subpattern is too long\0"
516 "octal value is greater than \\377 in 8-bit non-UTF-8 mode\0"
517 "internal error: overran compiling workspace\0"
518 "internal error: previously-checked referenced subpattern not found\0"
519 "DEFINE group contains more than one branch\0"
520
521 "repeating a DEFINE group is not allowed\0"
522 "inconsistent NEWLINE options\0"
523 "\\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number\0"
524 "a numbered reference must not be zero\0"
525 "an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)\0"
526
527 "(*VERB) not recognized or malformed\0"
528 "number is too big\0"
529 "subpattern name expected\0"
530 "digit expected after (?+\0"
531 "] is an invalid data character in JavaScript compatibility mode\0"
532
533 "different names for subpatterns of the same number are not allowed\0"
534 "(*MARK) must have an argument\0"
535 "this version of PCRE is not compiled with Unicode property support\0"
536 #ifndef EBCDIC
537 "\\c must be followed by an ASCII character\0"
538 #else
539 "\\c must be followed by a letter or one of [\\]^_?\0"
540 #endif
541 "\\k is not followed by a braced, angle-bracketed, or quoted name\0"
542
543 "internal error: unknown opcode in find_fixedlength()\0"
544 "\\N is not supported in a class\0"
545 "too many forward references\0"
546 "disallowed Unicode code point (>= 0xd800 && <= 0xdfff)\0"
547 "invalid UTF-16 string\0"
548
549 "name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)\0"
550 "character value in \\u.... sequence is too large\0"
551 "invalid UTF-32 string\0"
552 "setting UTF is disabled by the application\0"
553 "non-hex character in \\x{} (closing brace missing?)\0"
554
555 "non-octal character in \\o{} (closing brace missing?)\0"
556 "missing opening brace after \\o\0"
557 "parentheses are too deeply nested\0"
558 "invalid range in character class\0"
559 "group name must start with a non-digit\0"
560
561 "parentheses are too deeply nested (stack check)\0"
562 "digits missing in \\x{} or \\o{}\0"
563 ;
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
586
587 #ifndef EBCDIC
588
589
590
591
592 static const pcre_uint8 digitab[] =
593 {
594 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
595 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
596 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
597 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
598 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
599 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
600 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
601 0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,
602 0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
603 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
604 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
605 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
606 0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
607 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
608 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
609 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
610 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
611 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
612 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
613 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
614 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
615 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
616 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
617 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
618 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
619 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
620 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
621 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
622 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
623 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
624 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
625 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
626
627 #else
628
629
630
631 static const pcre_uint8 digitab[] =
632 {
633 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
634 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
635 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
636 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
637 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
638 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
639 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
640 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
641 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
642 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
643 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
644 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
645 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
646 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
647 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
648 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
649 0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
650 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
651 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
652 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
653 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
654 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
655 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
656 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
657 0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
658 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
659 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
660 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
661 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
662 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
663 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
664 0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00};
665
666 static const pcre_uint8 ebcdic_chartab[] = {
667 0x80,0x00,0x00,0x00,0x00,0x01,0x00,0x00,
668 0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
669 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,
670 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
671 0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,
672 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
673 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
674 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
675 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
676 0x00,0x00,0x00,0x80,0x00,0x80,0x80,0x80,
677 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
678 0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,
679 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
680 0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x80,
681 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
682 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
683 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12,
684 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
685 0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
686 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
687 0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,
688 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
689 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
690 0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,
691 0x80,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12,
692 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
693 0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
694 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
695 0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,
696 0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,
697 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
698 0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00};
699 #endif
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715 #define APTROWS (LAST_AUTOTAB_LEFT_OP - FIRST_AUTOTAB_OP + 1)
716 #define APTCOLS (LAST_AUTOTAB_RIGHT_OP - FIRST_AUTOTAB_OP + 1)
717
718 static const pcre_uint8 autoposstab[APTROWS][APTCOLS] = {
719
720 { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
721 { 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1 },
722 { 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1 },
723 { 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
724 { 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
725 { 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1 },
726 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
727 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
728 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
729 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
730 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
731 { 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0 },
732 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0 },
733 { 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0 },
734 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0 },
735 { 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0 },
736 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 }
737 };
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770 static const pcre_uint8 propposstab[PT_TABSIZE][PT_TABSIZE] = {
771
772 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
773 { 0, 3, 0, 0, 0, 3, 1, 1, 0, 0, 0 },
774 { 0, 0, 2, 4, 0, 9, 10, 10, 11, 0, 0 },
775 { 0, 0, 5, 2, 0, 15, 16, 16, 17, 0, 0 },
776 { 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0 },
777 { 0, 3, 6, 12, 0, 3, 1, 1, 0, 0, 0 },
778 { 0, 1, 7, 13, 0, 1, 3, 3, 1, 0, 0 },
779 { 0, 1, 7, 13, 0, 1, 3, 3, 1, 0, 0 },
780 { 0, 0, 8, 14, 0, 0, 1, 1, 3, 0, 0 },
781 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
782 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3 }
783 };
784
785
786
787
788
789
790
791
792 static const pcre_uint8 catposstab[7][30] = {
793
794 { 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
795 { 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
796 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
797 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
798 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1 },
799 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1 },
800 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0 }
801 };
802
803
804
805
806
807
808
809
810
811
812
813
814 static const pcre_uint8 posspropstab[3][4] = {
815 { ucp_L, ucp_N, ucp_N, ucp_Nl },
816 { ucp_Z, ucp_Z, ucp_C, ucp_Cc },
817 { ucp_L, ucp_N, ucp_P, ucp_Po }
818 };
819
820
821
822
823
824
825
826 static const pcre_uint8 opcode_possessify[] = {
827 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
828 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
829
830 0,
831 OP_POSSTAR, 0,
832 OP_POSPLUS, 0,
833 OP_POSQUERY, 0,
834 OP_POSUPTO, 0,
835 0,
836 0, 0, 0, 0,
837
838 OP_POSSTARI, 0,
839 OP_POSPLUSI, 0,
840 OP_POSQUERYI, 0,
841 OP_POSUPTOI, 0,
842 0,
843 0, 0, 0, 0,
844
845 OP_NOTPOSSTAR, 0,
846 OP_NOTPOSPLUS, 0,
847 OP_NOTPOSQUERY, 0,
848 OP_NOTPOSUPTO, 0,
849 0,
850 0, 0, 0, 0,
851
852 OP_NOTPOSSTARI, 0,
853 OP_NOTPOSPLUSI, 0,
854 OP_NOTPOSQUERYI, 0,
855 OP_NOTPOSUPTOI, 0,
856 0,
857 0, 0, 0, 0,
858
859 OP_TYPEPOSSTAR, 0,
860 OP_TYPEPOSPLUS, 0,
861 OP_TYPEPOSQUERY, 0,
862 OP_TYPEPOSUPTO, 0,
863 0,
864 0, 0, 0, 0,
865
866 OP_CRPOSSTAR, 0,
867 OP_CRPOSPLUS, 0,
868 OP_CRPOSQUERY, 0,
869 OP_CRPOSRANGE, 0,
870 0, 0, 0, 0,
871
872 0, 0, 0,
873 0, 0,
874 0, 0,
875 0, 0
876 };
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893 static const char *
894 find_error_text(int n)
895 {
896 const char *s = error_texts;
897 for (; n > 0; n--)
898 {
899 while (*s++ != CHAR_NULL) {};
900 if (*s == CHAR_NULL) return "Error text not found (please report)";
901 }
902 return s;
903 }
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920 static int
921 expand_workspace(compile_data *cd)
922 {
923 pcre_uchar *newspace;
924 int newsize = cd->workspace_size * 2;
925
926 if (newsize > COMPILE_WORK_SIZE_MAX) newsize = COMPILE_WORK_SIZE_MAX;
927 if (cd->workspace_size >= COMPILE_WORK_SIZE_MAX ||
928 newsize - cd->workspace_size < WORK_SIZE_SAFETY_MARGIN)
929 return ERR72;
930
931 newspace = (PUBL(malloc))(IN_UCHARS(newsize));
932 if (newspace == NULL) return ERR21;
933 memcpy(newspace, cd->start_workspace, cd->workspace_size * sizeof(pcre_uchar));
934 cd->hwm = (pcre_uchar *)newspace + (cd->hwm - cd->start_workspace);
935 if (cd->workspace_size > COMPILE_WORK_SIZE)
936 (PUBL(free))((void *)cd->start_workspace);
937 cd->start_workspace = newspace;
938 cd->workspace_size = newsize;
939 return 0;
940 }
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959 static BOOL
960 is_counted_repeat(const pcre_uchar *p)
961 {
962 if (!IS_DIGIT(*p)) return FALSE;
963 p++;
964 while (IS_DIGIT(*p)) p++;
965 if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE;
966
967 if (*p++ != CHAR_COMMA) return FALSE;
968 if (*p == CHAR_RIGHT_CURLY_BRACKET) return TRUE;
969
970 if (!IS_DIGIT(*p)) return FALSE;
971 p++;
972 while (IS_DIGIT(*p)) p++;
973
974 return (*p == CHAR_RIGHT_CURLY_BRACKET);
975 }
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004 static int
1005 check_escape(const pcre_uchar **ptrptr, pcre_uint32 *chptr, int *errorcodeptr,
1006 int bracount, int options, BOOL isclass)
1007 {
1008
1009 BOOL utf = (options & PCRE_UTF8) != 0;
1010 const pcre_uchar *ptr = *ptrptr + 1;
1011 pcre_uint32 c;
1012 int escape = 0;
1013 int i;
1014
1015 GETCHARINCTEST(c, ptr);
1016 ptr--;
1017
1018
1019
1020 if (c == CHAR_NULL) *errorcodeptr = ERR1;
1021
1022
1023
1024
1025
1026 #ifndef EBCDIC
1027
1028 else if (c < CHAR_0 || c > CHAR_z) {}
1029 else if ((i = escapes[c - CHAR_0]) != 0)
1030 { if (i > 0) c = (pcre_uint32)i; else escape = -i; }
1031
1032 #else
1033
1034 else if (c < CHAR_a || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {}
1035 else if ((i = escapes[c - 0x48]) != 0) { if (i > 0) c = (pcre_uint32)i; else escape = -i; }
1036 #endif
1037
1038
1039
1040 else
1041 {
1042 const pcre_uchar *oldptr;
1043 BOOL braced, negated, overflow;
1044 int s;
1045
1046 switch (c)
1047 {
1048
1049
1050
1051 case CHAR_l:
1052 case CHAR_L:
1053 *errorcodeptr = ERR37;
1054 break;
1055
1056 case CHAR_u:
1057 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
1058 {
1059
1060
1061 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1062 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0
1063 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0
1064 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0)
1065 {
1066 c = 0;
1067 for (i = 0; i < 4; ++i)
1068 {
1069 register pcre_uint32 cc = *(++ptr);
1070 #ifndef EBCDIC
1071 if (cc >= CHAR_a) cc -= 32;
1072 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1073 #else
1074 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64;
1075 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1076 #endif
1077 }
1078
1079 #if defined COMPILE_PCRE8
1080 if (c > (utf ? 0x10ffffU : 0xffU))
1081 #elif defined COMPILE_PCRE16
1082 if (c > (utf ? 0x10ffffU : 0xffffU))
1083 #elif defined COMPILE_PCRE32
1084 if (utf && c > 0x10ffffU)
1085 #endif
1086 {
1087 *errorcodeptr = ERR76;
1088 }
1089 else if (utf && c >= 0xd800 && c <= 0xdfff) *errorcodeptr = ERR73;
1090 }
1091 }
1092 else
1093 *errorcodeptr = ERR37;
1094 break;
1095
1096 case CHAR_U:
1097
1098 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) *errorcodeptr = ERR37;
1099 break;
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118 case CHAR_g:
1119 if (isclass) break;
1120 if (ptr[1] == CHAR_LESS_THAN_SIGN || ptr[1] == CHAR_APOSTROPHE)
1121 {
1122 escape = ESC_g;
1123 break;
1124 }
1125
1126
1127
1128 if (ptr[1] == CHAR_LEFT_CURLY_BRACKET)
1129 {
1130 const pcre_uchar *p;
1131 for (p = ptr+2; *p != CHAR_NULL && *p != CHAR_RIGHT_CURLY_BRACKET; p++)
1132 if (*p != CHAR_MINUS && !IS_DIGIT(*p)) break;
1133 if (*p != CHAR_NULL && *p != CHAR_RIGHT_CURLY_BRACKET)
1134 {
1135 escape = ESC_k;
1136 break;
1137 }
1138 braced = TRUE;
1139 ptr++;
1140 }
1141 else braced = FALSE;
1142
1143 if (ptr[1] == CHAR_MINUS)
1144 {
1145 negated = TRUE;
1146 ptr++;
1147 }
1148 else negated = FALSE;
1149
1150
1151 s = 0;
1152 overflow = FALSE;
1153 while (IS_DIGIT(ptr[1]))
1154 {
1155 if (s > INT_MAX / 10 - 1)
1156 {
1157 overflow = TRUE;
1158 break;
1159 }
1160 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1161 }
1162 if (overflow)
1163 {
1164 while (IS_DIGIT(ptr[1]))
1165 ptr++;
1166 *errorcodeptr = ERR61;
1167 break;
1168 }
1169
1170 if (braced && *(++ptr) != CHAR_RIGHT_CURLY_BRACKET)
1171 {
1172 *errorcodeptr = ERR57;
1173 break;
1174 }
1175
1176 if (s == 0)
1177 {
1178 *errorcodeptr = ERR58;
1179 break;
1180 }
1181
1182 if (negated)
1183 {
1184 if (s > bracount)
1185 {
1186 *errorcodeptr = ERR15;
1187 break;
1188 }
1189 s = bracount - (s - 1);
1190 }
1191
1192 escape = -s;
1193 break;
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211 case CHAR_1: case CHAR_2: case CHAR_3: case CHAR_4: case CHAR_5:
1212 case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9:
1213
1214 if (!isclass)
1215 {
1216 oldptr = ptr;
1217
1218 s = (int)(c -CHAR_0);
1219 overflow = FALSE;
1220 while (IS_DIGIT(ptr[1]))
1221 {
1222 if (s > INT_MAX / 10 - 1)
1223 {
1224 overflow = TRUE;
1225 break;
1226 }
1227 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1228 }
1229 if (overflow)
1230 {
1231 while (IS_DIGIT(ptr[1]))
1232 ptr++;
1233 *errorcodeptr = ERR61;
1234 break;
1235 }
1236 if (s < 8 || s <= bracount)
1237 {
1238 escape = -s;
1239 break;
1240 }
1241 ptr = oldptr;
1242 }
1243
1244
1245
1246
1247
1248
1249 if ((c = *ptr) >= CHAR_8) break;
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259 case CHAR_0:
1260 c -= CHAR_0;
1261 while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7)
1262 c = c * 8 + *(++ptr) - CHAR_0;
1263 #ifdef COMPILE_PCRE8
1264 if (!utf && c > 0xff) *errorcodeptr = ERR51;
1265 #endif
1266 break;
1267
1268
1269
1270
1271 case CHAR_o:
1272 if (ptr[1] != CHAR_LEFT_CURLY_BRACKET) *errorcodeptr = ERR81; else
1273 if (ptr[2] == CHAR_RIGHT_CURLY_BRACKET) *errorcodeptr = ERR86; else
1274 {
1275 ptr += 2;
1276 c = 0;
1277 overflow = FALSE;
1278 while (*ptr >= CHAR_0 && *ptr <= CHAR_7)
1279 {
1280 register pcre_uint32 cc = *ptr++;
1281 if (c == 0 && cc == CHAR_0) continue;
1282 #ifdef COMPILE_PCRE32
1283 if (c >= 0x20000000l) { overflow = TRUE; break; }
1284 #endif
1285 c = (c << 3) + cc - CHAR_0 ;
1286 #if defined COMPILE_PCRE8
1287 if (c > (utf ? 0x10ffffU : 0xffU)) { overflow = TRUE; break; }
1288 #elif defined COMPILE_PCRE16
1289 if (c > (utf ? 0x10ffffU : 0xffffU)) { overflow = TRUE; break; }
1290 #elif defined COMPILE_PCRE32
1291 if (utf && c > 0x10ffffU) { overflow = TRUE; break; }
1292 #endif
1293 }
1294 if (overflow)
1295 {
1296 while (*ptr >= CHAR_0 && *ptr <= CHAR_7) ptr++;
1297 *errorcodeptr = ERR34;
1298 }
1299 else if (*ptr == CHAR_RIGHT_CURLY_BRACKET)
1300 {
1301 if (utf && c >= 0xd800 && c <= 0xdfff) *errorcodeptr = ERR73;
1302 }
1303 else *errorcodeptr = ERR80;
1304 }
1305 break;
1306
1307
1308
1309
1310 case CHAR_x:
1311 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
1312 {
1313 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1314 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0)
1315 {
1316 c = 0;
1317 for (i = 0; i < 2; ++i)
1318 {
1319 register pcre_uint32 cc = *(++ptr);
1320 #ifndef EBCDIC
1321 if (cc >= CHAR_a) cc -= 32;
1322 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1323 #else
1324 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64;
1325 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1326 #endif
1327 }
1328 }
1329 }
1330
1331
1332
1333
1334
1335
1336
1337
1338 else
1339 {
1340 if (ptr[1] == CHAR_LEFT_CURLY_BRACKET)
1341 {
1342 ptr += 2;
1343 if (*ptr == CHAR_RIGHT_CURLY_BRACKET)
1344 {
1345 *errorcodeptr = ERR86;
1346 break;
1347 }
1348 c = 0;
1349 overflow = FALSE;
1350 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0)
1351 {
1352 register pcre_uint32 cc = *ptr++;
1353 if (c == 0 && cc == CHAR_0) continue;
1354
1355 #ifdef COMPILE_PCRE32
1356 if (c >= 0x10000000l) { overflow = TRUE; break; }
1357 #endif
1358
1359 #ifndef EBCDIC
1360 if (cc >= CHAR_a) cc -= 32;
1361 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1362 #else
1363 if (cc >= CHAR_a && cc <= CHAR_z) cc += 64;
1364 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1365 #endif
1366
1367 #if defined COMPILE_PCRE8
1368 if (c > (utf ? 0x10ffffU : 0xffU)) { overflow = TRUE; break; }
1369 #elif defined COMPILE_PCRE16
1370 if (c > (utf ? 0x10ffffU : 0xffffU)) { overflow = TRUE; break; }
1371 #elif defined COMPILE_PCRE32
1372 if (utf && c > 0x10ffffU) { overflow = TRUE; break; }
1373 #endif
1374 }
1375
1376 if (overflow)
1377 {
1378 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++;
1379 *errorcodeptr = ERR34;
1380 }
1381
1382 else if (*ptr == CHAR_RIGHT_CURLY_BRACKET)
1383 {
1384 if (utf && c >= 0xd800 && c <= 0xdfff) *errorcodeptr = ERR73;
1385 }
1386
1387
1388
1389
1390
1391
1392 else *errorcodeptr = ERR79;
1393 }
1394
1395
1396
1397 else
1398 {
1399 c = 0;
1400 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0)
1401 {
1402 pcre_uint32 cc;
1403 cc = *(++ptr);
1404 #ifndef EBCDIC
1405 if (cc >= CHAR_a) cc -= 32;
1406 c = c * 16 + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1407 #else
1408 if (cc <= CHAR_z) cc += 64;
1409 c = c * 16 + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1410 #endif
1411 }
1412 }
1413 }
1414 break;
1415
1416
1417
1418
1419
1420
1421 case CHAR_c:
1422 c = *(++ptr);
1423 if (c == CHAR_NULL)
1424 {
1425 *errorcodeptr = ERR2;
1426 break;
1427 }
1428 #ifndef EBCDIC
1429 if (c > 127)
1430 {
1431 *errorcodeptr = ERR68;
1432 break;
1433 }
1434 if (c >= CHAR_a && c <= CHAR_z) c -= 32;
1435 c ^= 0x40;
1436 #else
1437 if (c >= CHAR_a && c <= CHAR_z) c += 64;
1438 if (c == CHAR_QUESTION_MARK)
1439 c = ('\\' == 188 && '`' == 74)? 0x5f : 0xff;
1440 else
1441 {
1442 for (i = 0; i < 32; i++)
1443 {
1444 if (c == ebcdic_escape_c[i]) break;
1445 }
1446 if (i < 32) c = i; else *errorcodeptr = ERR68;
1447 }
1448 #endif
1449 break;
1450
1451
1452
1453
1454
1455
1456
1457 default:
1458 if ((options & PCRE_EXTRA) != 0) switch(c)
1459 {
1460 default:
1461 *errorcodeptr = ERR3;
1462 break;
1463 }
1464 break;
1465 }
1466 }
1467
1468
1469
1470
1471
1472 if (escape == ESC_N && ptr[1] == CHAR_LEFT_CURLY_BRACKET &&
1473 !is_counted_repeat(ptr+2))
1474 *errorcodeptr = ERR37;
1475
1476
1477
1478 if ((options & PCRE_UCP) != 0 && escape >= ESC_D && escape <= ESC_w)
1479 escape += (ESC_DU - ESC_D);
1480
1481
1482
1483 *ptrptr = ptr;
1484 *chptr = c;
1485 return escape;
1486 }
1487
1488
1489
1490 #ifdef SUPPORT_UCP
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510 static BOOL
1511 get_ucp(const pcre_uchar **ptrptr, BOOL *negptr, unsigned int *ptypeptr,
1512 unsigned int *pdataptr, int *errorcodeptr)
1513 {
1514 pcre_uchar c;
1515 int i, bot, top;
1516 const pcre_uchar *ptr = *ptrptr;
1517 pcre_uchar name[32];
1518
1519 c = *(++ptr);
1520 if (c == CHAR_NULL) goto ERROR_RETURN;
1521
1522 *negptr = FALSE;
1523
1524
1525
1526
1527 if (c == CHAR_LEFT_CURLY_BRACKET)
1528 {
1529 if (ptr[1] == CHAR_CIRCUMFLEX_ACCENT)
1530 {
1531 *negptr = TRUE;
1532 ptr++;
1533 }
1534 for (i = 0; i < (int)(sizeof(name) / sizeof(pcre_uchar)) - 1; i++)
1535 {
1536 c = *(++ptr);
1537 if (c == CHAR_NULL) goto ERROR_RETURN;
1538 if (c == CHAR_RIGHT_CURLY_BRACKET) break;
1539 name[i] = c;
1540 }
1541 if (c != CHAR_RIGHT_CURLY_BRACKET) goto ERROR_RETURN;
1542 name[i] = 0;
1543 }
1544
1545
1546
1547 else
1548 {
1549 name[0] = c;
1550 name[1] = 0;
1551 }
1552
1553 *ptrptr = ptr;
1554
1555
1556
1557 bot = 0;
1558 top = PRIV(utt_size);
1559
1560 while (bot < top)
1561 {
1562 int r;
1563 i = (bot + top) >> 1;
1564 r = STRCMP_UC_C8(name, PRIV(utt_names) + PRIV(utt)[i].name_offset);
1565 if (r == 0)
1566 {
1567 *ptypeptr = PRIV(utt)[i].type;
1568 *pdataptr = PRIV(utt)[i].value;
1569 return TRUE;
1570 }
1571 if (r > 0) bot = i + 1; else top = i;
1572 }
1573
1574 *errorcodeptr = ERR47;
1575 *ptrptr = ptr;
1576 return FALSE;
1577
1578 ERROR_RETURN:
1579 *errorcodeptr = ERR46;
1580 *ptrptr = ptr;
1581 return FALSE;
1582 }
1583 #endif
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606 static const pcre_uchar *
1607 read_repeat_counts(const pcre_uchar *p, int *minp, int *maxp, int *errorcodeptr)
1608 {
1609 int min = 0;
1610 int max = -1;
1611
1612 while (IS_DIGIT(*p))
1613 {
1614 min = min * 10 + (int)(*p++ - CHAR_0);
1615 if (min > 65535)
1616 {
1617 *errorcodeptr = ERR5;
1618 return p;
1619 }
1620 }
1621
1622 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else
1623 {
1624 if (*(++p) != CHAR_RIGHT_CURLY_BRACKET)
1625 {
1626 max = 0;
1627 while(IS_DIGIT(*p))
1628 {
1629 max = max * 10 + (int)(*p++ - CHAR_0);
1630 if (max > 65535)
1631 {
1632 *errorcodeptr = ERR5;
1633 return p;
1634 }
1635 }
1636 if (max < min)
1637 {
1638 *errorcodeptr = ERR4;
1639 return p;
1640 }
1641 }
1642 }
1643
1644 *minp = min;
1645 *maxp = max;
1646 return p;
1647 }
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668 static const pcre_uchar*
1669 first_significant_code(const pcre_uchar *code, BOOL skipassert)
1670 {
1671 for (;;)
1672 {
1673 switch ((int)*code)
1674 {
1675 case OP_ASSERT_NOT:
1676 case OP_ASSERTBACK:
1677 case OP_ASSERTBACK_NOT:
1678 if (!skipassert) return code;
1679 do code += GET(code, 1); while (*code == OP_ALT);
1680 code += PRIV(OP_lengths)[*code];
1681 break;
1682
1683 case OP_WORD_BOUNDARY:
1684 case OP_NOT_WORD_BOUNDARY:
1685 if (!skipassert) return code;
1686
1687
1688 case OP_CALLOUT:
1689 case OP_CREF:
1690 case OP_DNCREF:
1691 case OP_RREF:
1692 case OP_DNRREF:
1693 case OP_DEF:
1694 code += PRIV(OP_lengths)[*code];
1695 break;
1696
1697 default:
1698 return code;
1699 }
1700 }
1701
1702 }
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735 static int
1736 find_fixedlength(pcre_uchar *code, BOOL utf, BOOL atend, compile_data *cd,
1737 recurse_check *recurses)
1738 {
1739 int length = -1;
1740 recurse_check this_recurse;
1741 register int branchlength = 0;
1742 register pcre_uchar *cc = code + 1 + LINK_SIZE;
1743
1744
1745
1746
1747 for (;;)
1748 {
1749 int d;
1750 pcre_uchar *ce, *cs;
1751 register pcre_uchar op = *cc;
1752
1753 switch (op)
1754 {
1755
1756
1757
1758
1759
1760 case OP_CBRA:
1761 case OP_BRA:
1762 case OP_ONCE:
1763 case OP_ONCE_NC:
1764 case OP_COND:
1765 d = find_fixedlength(cc + ((op == OP_CBRA)? IMM2_SIZE : 0), utf, atend, cd,
1766 recurses);
1767 if (d < 0) return d;
1768 branchlength += d;
1769 do cc += GET(cc, 1); while (*cc == OP_ALT);
1770 cc += 1 + LINK_SIZE;
1771 break;
1772
1773
1774
1775
1776
1777
1778
1779 case OP_ALT:
1780 case OP_KET:
1781 case OP_END:
1782 case OP_ACCEPT:
1783 case OP_ASSERT_ACCEPT:
1784 if (length < 0) length = branchlength;
1785 else if (length != branchlength) return -1;
1786 if (*cc != OP_ALT) return length;
1787 cc += 1 + LINK_SIZE;
1788 branchlength = 0;
1789 break;
1790
1791
1792
1793
1794
1795 case OP_RECURSE:
1796 if (!atend) return -3;
1797 cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1);
1798 do ce += GET(ce, 1); while (*ce == OP_ALT);
1799 if (cc > cs && cc < ce) return -1;
1800 else
1801 {
1802 recurse_check *r = recurses;
1803 for (r = recurses; r != NULL; r = r->prev) if (r->group == cs) break;
1804 if (r != NULL) return -1;
1805 }
1806 this_recurse.prev = recurses;
1807 this_recurse.group = cs;
1808 d = find_fixedlength(cs + IMM2_SIZE, utf, atend, cd, &this_recurse);
1809 if (d < 0) return d;
1810 branchlength += d;
1811 cc += 1 + LINK_SIZE;
1812 break;
1813
1814
1815
1816 case OP_ASSERT:
1817 case OP_ASSERT_NOT:
1818 case OP_ASSERTBACK:
1819 case OP_ASSERTBACK_NOT:
1820 do cc += GET(cc, 1); while (*cc == OP_ALT);
1821 cc += 1 + LINK_SIZE;
1822 break;
1823
1824
1825
1826 case OP_MARK:
1827 case OP_PRUNE_ARG:
1828 case OP_SKIP_ARG:
1829 case OP_THEN_ARG:
1830 cc += cc[1] + PRIV(OP_lengths)[*cc];
1831 break;
1832
1833 case OP_CALLOUT:
1834 case OP_CIRC:
1835 case OP_CIRCM:
1836 case OP_CLOSE:
1837 case OP_COMMIT:
1838 case OP_CREF:
1839 case OP_DEF:
1840 case OP_DNCREF:
1841 case OP_DNRREF:
1842 case OP_DOLL:
1843 case OP_DOLLM:
1844 case OP_EOD:
1845 case OP_EODN:
1846 case OP_FAIL:
1847 case OP_NOT_WORD_BOUNDARY:
1848 case OP_PRUNE:
1849 case OP_REVERSE:
1850 case OP_RREF:
1851 case OP_SET_SOM:
1852 case OP_SKIP:
1853 case OP_SOD:
1854 case OP_SOM:
1855 case OP_THEN:
1856 case OP_WORD_BOUNDARY:
1857 cc += PRIV(OP_lengths)[*cc];
1858 break;
1859
1860
1861
1862 case OP_CHAR:
1863 case OP_CHARI:
1864 case OP_NOT:
1865 case OP_NOTI:
1866 branchlength++;
1867 cc += 2;
1868 #ifdef SUPPORT_UTF
1869 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1870 #endif
1871 break;
1872
1873
1874
1875
1876 case OP_EXACT:
1877 case OP_EXACTI:
1878 case OP_NOTEXACT:
1879 case OP_NOTEXACTI:
1880 branchlength += (int)GET2(cc,1);
1881 cc += 2 + IMM2_SIZE;
1882 #ifdef SUPPORT_UTF
1883 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1884 #endif
1885 break;
1886
1887 case OP_TYPEEXACT:
1888 branchlength += GET2(cc,1);
1889 if (cc[1 + IMM2_SIZE] == OP_PROP || cc[1 + IMM2_SIZE] == OP_NOTPROP)
1890 cc += 2;
1891 cc += 1 + IMM2_SIZE + 1;
1892 break;
1893
1894
1895
1896 case OP_PROP:
1897 case OP_NOTPROP:
1898 cc += 2;
1899
1900
1901 case OP_HSPACE:
1902 case OP_VSPACE:
1903 case OP_NOT_HSPACE:
1904 case OP_NOT_VSPACE:
1905 case OP_NOT_DIGIT:
1906 case OP_DIGIT:
1907 case OP_NOT_WHITESPACE:
1908 case OP_WHITESPACE:
1909 case OP_NOT_WORDCHAR:
1910 case OP_WORDCHAR:
1911 case OP_ANY:
1912 case OP_ALLANY:
1913 branchlength++;
1914 cc++;
1915 break;
1916
1917
1918
1919
1920 case OP_ANYBYTE:
1921 return -2;
1922
1923
1924
1925 case OP_CLASS:
1926 case OP_NCLASS:
1927 #if defined SUPPORT_UTF || defined COMPILE_PCRE16 || defined COMPILE_PCRE32
1928 case OP_XCLASS:
1929
1930
1931 if (op == OP_XCLASS)
1932 cc += GET(cc, 1);
1933 else
1934 cc += PRIV(OP_lengths)[OP_CLASS];
1935 #else
1936 cc += PRIV(OP_lengths)[OP_CLASS];
1937 #endif
1938
1939 switch (*cc)
1940 {
1941 case OP_CRSTAR:
1942 case OP_CRMINSTAR:
1943 case OP_CRPLUS:
1944 case OP_CRMINPLUS:
1945 case OP_CRQUERY:
1946 case OP_CRMINQUERY:
1947 case OP_CRPOSSTAR:
1948 case OP_CRPOSPLUS:
1949 case OP_CRPOSQUERY:
1950 return -1;
1951
1952 case OP_CRRANGE:
1953 case OP_CRMINRANGE:
1954 case OP_CRPOSRANGE:
1955 if (GET2(cc,1) != GET2(cc,1+IMM2_SIZE)) return -1;
1956 branchlength += (int)GET2(cc,1);
1957 cc += 1 + 2 * IMM2_SIZE;
1958 break;
1959
1960 default:
1961 branchlength++;
1962 }
1963 break;
1964
1965
1966
1967 case OP_ANYNL:
1968 case OP_BRAMINZERO:
1969 case OP_BRAPOS:
1970 case OP_BRAPOSZERO:
1971 case OP_BRAZERO:
1972 case OP_CBRAPOS:
1973 case OP_EXTUNI:
1974 case OP_KETRMAX:
1975 case OP_KETRMIN:
1976 case OP_KETRPOS:
1977 case OP_MINPLUS:
1978 case OP_MINPLUSI:
1979 case OP_MINQUERY:
1980 case OP_MINQUERYI:
1981 case OP_MINSTAR:
1982 case OP_MINSTARI:
1983 case OP_MINUPTO:
1984 case OP_MINUPTOI:
1985 case OP_NOTMINPLUS:
1986 case OP_NOTMINPLUSI:
1987 case OP_NOTMINQUERY:
1988 case OP_NOTMINQUERYI:
1989 case OP_NOTMINSTAR:
1990 case OP_NOTMINSTARI:
1991 case OP_NOTMINUPTO:
1992 case OP_NOTMINUPTOI:
1993 case OP_NOTPLUS:
1994 case OP_NOTPLUSI:
1995 case OP_NOTPOSPLUS:
1996 case OP_NOTPOSPLUSI:
1997 case OP_NOTPOSQUERY:
1998 case OP_NOTPOSQUERYI:
1999 case OP_NOTPOSSTAR:
2000 case OP_NOTPOSSTARI:
2001 case OP_NOTPOSUPTO:
2002 case OP_NOTPOSUPTOI:
2003 case OP_NOTQUERY:
2004 case OP_NOTQUERYI:
2005 case OP_NOTSTAR:
2006 case OP_NOTSTARI:
2007 case OP_NOTUPTO:
2008 case OP_NOTUPTOI:
2009 case OP_PLUS:
2010 case OP_PLUSI:
2011 case OP_POSPLUS:
2012 case OP_POSPLUSI:
2013 case OP_POSQUERY:
2014 case OP_POSQUERYI:
2015 case OP_POSSTAR:
2016 case OP_POSSTARI:
2017 case OP_POSUPTO:
2018 case OP_POSUPTOI:
2019 case OP_QUERY:
2020 case OP_QUERYI:
2021 case OP_REF:
2022 case OP_REFI:
2023 case OP_DNREF:
2024 case OP_DNREFI:
2025 case OP_SBRA:
2026 case OP_SBRAPOS:
2027 case OP_SCBRA:
2028 case OP_SCBRAPOS:
2029 case OP_SCOND:
2030 case OP_SKIPZERO:
2031 case OP_STAR:
2032 case OP_STARI:
2033 case OP_TYPEMINPLUS:
2034 case OP_TYPEMINQUERY:
2035 case OP_TYPEMINSTAR:
2036 case OP_TYPEMINUPTO:
2037 case OP_TYPEPLUS:
2038 case OP_TYPEPOSPLUS:
2039 case OP_TYPEPOSQUERY:
2040 case OP_TYPEPOSSTAR:
2041 case OP_TYPEPOSUPTO:
2042 case OP_TYPEQUERY:
2043 case OP_TYPESTAR:
2044 case OP_TYPEUPTO:
2045 case OP_UPTO:
2046 case OP_UPTOI:
2047 return -1;
2048
2049
2050
2051
2052 default:
2053 return -4;
2054 }
2055 }
2056
2057 }
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079 const pcre_uchar *
2080 PRIV(find_bracket)(const pcre_uchar *code, BOOL utf, int number)
2081 {
2082 for (;;)
2083 {
2084 register pcre_uchar c = *code;
2085
2086 if (c == OP_END) return NULL;
2087
2088
2089
2090
2091
2092 if (c == OP_XCLASS) code += GET(code, 1);
2093
2094
2095
2096 else if (c == OP_REVERSE)
2097 {
2098 if (number < 0) return (pcre_uchar *)code;
2099 code += PRIV(OP_lengths)[c];
2100 }
2101
2102
2103
2104 else if (c == OP_CBRA || c == OP_SCBRA ||
2105 c == OP_CBRAPOS || c == OP_SCBRAPOS)
2106 {
2107 int n = (int)GET2(code, 1+LINK_SIZE);
2108 if (n == number) return (pcre_uchar *)code;
2109 code += PRIV(OP_lengths)[c];
2110 }
2111
2112
2113
2114
2115
2116
2117 else
2118 {
2119 switch(c)
2120 {
2121 case OP_TYPESTAR:
2122 case OP_TYPEMINSTAR:
2123 case OP_TYPEPLUS:
2124 case OP_TYPEMINPLUS:
2125 case OP_TYPEQUERY:
2126 case OP_TYPEMINQUERY:
2127 case OP_TYPEPOSSTAR:
2128 case OP_TYPEPOSPLUS:
2129 case OP_TYPEPOSQUERY:
2130 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
2131 break;
2132
2133 case OP_TYPEUPTO:
2134 case OP_TYPEMINUPTO:
2135 case OP_TYPEEXACT:
2136 case OP_TYPEPOSUPTO:
2137 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP)
2138 code += 2;
2139 break;
2140
2141 case OP_MARK:
2142 case OP_PRUNE_ARG:
2143 case OP_SKIP_ARG:
2144 case OP_THEN_ARG:
2145 code += code[1];
2146 break;
2147 }
2148
2149
2150
2151 code += PRIV(OP_lengths)[c];
2152
2153
2154
2155
2156
2157 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
2158 if (utf) switch(c)
2159 {
2160 case OP_CHAR:
2161 case OP_CHARI:
2162 case OP_NOT:
2163 case OP_NOTI:
2164 case OP_EXACT:
2165 case OP_EXACTI:
2166 case OP_NOTEXACT:
2167 case OP_NOTEXACTI:
2168 case OP_UPTO:
2169 case OP_UPTOI:
2170 case OP_NOTUPTO:
2171 case OP_NOTUPTOI:
2172 case OP_MINUPTO:
2173 case OP_MINUPTOI:
2174 case OP_NOTMINUPTO:
2175 case OP_NOTMINUPTOI:
2176 case OP_POSUPTO:
2177 case OP_POSUPTOI:
2178 case OP_NOTPOSUPTO:
2179 case OP_NOTPOSUPTOI:
2180 case OP_STAR:
2181 case OP_STARI:
2182 case OP_NOTSTAR:
2183 case OP_NOTSTARI:
2184 case OP_MINSTAR:
2185 case OP_MINSTARI:
2186 case OP_NOTMINSTAR:
2187 case OP_NOTMINSTARI:
2188 case OP_POSSTAR:
2189 case OP_POSSTARI:
2190 case OP_NOTPOSSTAR:
2191 case OP_NOTPOSSTARI:
2192 case OP_PLUS:
2193 case OP_PLUSI:
2194 case OP_NOTPLUS:
2195 case OP_NOTPLUSI:
2196 case OP_MINPLUS:
2197 case OP_MINPLUSI:
2198 case OP_NOTMINPLUS:
2199 case OP_NOTMINPLUSI:
2200 case OP_POSPLUS:
2201 case OP_POSPLUSI:
2202 case OP_NOTPOSPLUS:
2203 case OP_NOTPOSPLUSI:
2204 case OP_QUERY:
2205 case OP_QUERYI:
2206 case OP_NOTQUERY:
2207 case OP_NOTQUERYI:
2208 case OP_MINQUERY:
2209 case OP_MINQUERYI:
2210 case OP_NOTMINQUERY:
2211 case OP_NOTMINQUERYI:
2212 case OP_POSQUERY:
2213 case OP_POSQUERYI:
2214 case OP_NOTPOSQUERY:
2215 case OP_NOTPOSQUERYI:
2216 if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]);
2217 break;
2218 }
2219 #else
2220 (void)(utf);
2221 #endif
2222 }
2223 }
2224 }
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242 static const pcre_uchar *
2243 find_recurse(const pcre_uchar *code, BOOL utf)
2244 {
2245 for (;;)
2246 {
2247 register pcre_uchar c = *code;
2248 if (c == OP_END) return NULL;
2249 if (c == OP_RECURSE) return code;
2250
2251
2252
2253
2254
2255 if (c == OP_XCLASS) code += GET(code, 1);
2256
2257
2258
2259
2260
2261
2262 else
2263 {
2264 switch(c)
2265 {
2266 case OP_TYPESTAR:
2267 case OP_TYPEMINSTAR:
2268 case OP_TYPEPLUS:
2269 case OP_TYPEMINPLUS:
2270 case OP_TYPEQUERY:
2271 case OP_TYPEMINQUERY:
2272 case OP_TYPEPOSSTAR:
2273 case OP_TYPEPOSPLUS:
2274 case OP_TYPEPOSQUERY:
2275 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
2276 break;
2277
2278 case OP_TYPEPOSUPTO:
2279 case OP_TYPEUPTO:
2280 case OP_TYPEMINUPTO:
2281 case OP_TYPEEXACT:
2282 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP)
2283 code += 2;
2284 break;
2285
2286 case OP_MARK:
2287 case OP_PRUNE_ARG:
2288 case OP_SKIP_ARG:
2289 case OP_THEN_ARG:
2290 code += code[1];
2291 break;
2292 }
2293
2294
2295
2296 code += PRIV(OP_lengths)[c];
2297
2298
2299
2300
2301
2302 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
2303 if (utf) switch(c)
2304 {
2305 case OP_CHAR:
2306 case OP_CHARI:
2307 case OP_NOT:
2308 case OP_NOTI:
2309 case OP_EXACT:
2310 case OP_EXACTI:
2311 case OP_NOTEXACT:
2312 case OP_NOTEXACTI:
2313 case OP_UPTO:
2314 case OP_UPTOI:
2315 case OP_NOTUPTO:
2316 case OP_NOTUPTOI:
2317 case OP_MINUPTO:
2318 case OP_MINUPTOI:
2319 case OP_NOTMINUPTO:
2320 case OP_NOTMINUPTOI:
2321 case OP_POSUPTO:
2322 case OP_POSUPTOI:
2323 case OP_NOTPOSUPTO:
2324 case OP_NOTPOSUPTOI:
2325 case OP_STAR:
2326 case OP_STARI:
2327 case OP_NOTSTAR:
2328 case OP_NOTSTARI:
2329 case OP_MINSTAR:
2330 case OP_MINSTARI:
2331 case OP_NOTMINSTAR:
2332 case OP_NOTMINSTARI:
2333 case OP_POSSTAR:
2334 case OP_POSSTARI:
2335 case OP_NOTPOSSTAR:
2336 case OP_NOTPOSSTARI:
2337 case OP_PLUS:
2338 case OP_PLUSI:
2339 case OP_NOTPLUS:
2340 case OP_NOTPLUSI:
2341 case OP_MINPLUS:
2342 case OP_MINPLUSI:
2343 case OP_NOTMINPLUS:
2344 case OP_NOTMINPLUSI:
2345 case OP_POSPLUS:
2346 case OP_POSPLUSI:
2347 case OP_NOTPOSPLUS:
2348 case OP_NOTPOSPLUSI:
2349 case OP_QUERY:
2350 case OP_QUERYI:
2351 case OP_NOTQUERY:
2352 case OP_NOTQUERYI:
2353 case OP_MINQUERY:
2354 case OP_MINQUERYI:
2355 case OP_NOTMINQUERY:
2356 case OP_NOTMINQUERYI:
2357 case OP_POSQUERY:
2358 case OP_POSQUERYI:
2359 case OP_NOTPOSQUERY:
2360 case OP_NOTPOSQUERYI:
2361 if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]);
2362 break;
2363 }
2364 #else
2365 (void)(utf);
2366 #endif
2367 }
2368 }
2369 }
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395 static BOOL
2396 could_be_empty_branch(const pcre_uchar *code, const pcre_uchar *endcode,
2397 BOOL utf, compile_data *cd, recurse_check *recurses)
2398 {
2399 register pcre_uchar c;
2400 recurse_check this_recurse;
2401
2402 for (code = first_significant_code(code + PRIV(OP_lengths)[*code], TRUE);
2403 code < endcode;
2404 code = first_significant_code(code + PRIV(OP_lengths)[c], TRUE))
2405 {
2406 const pcre_uchar *ccode;
2407
2408 c = *code;
2409
2410
2411
2412
2413 if (c == OP_ASSERT)
2414 {
2415 do code += GET(code, 1); while (*code == OP_ALT);
2416 c = *code;
2417 continue;
2418 }
2419
2420
2421
2422
2423
2424
2425
2426
2427 if (c == OP_RECURSE)
2428 {
2429 const pcre_uchar *scode = cd->start_code + GET(code, 1);
2430 const pcre_uchar *endgroup = scode;
2431 BOOL empty_branch;
2432
2433
2434
2435
2436
2437 if (cd->start_workspace != NULL)
2438 {
2439 const pcre_uchar *tcode;
2440 for (tcode = cd->start_workspace; tcode < cd->hwm; tcode += LINK_SIZE)
2441 if ((int)GET(tcode, 0) == (int)(code + 1 - cd->start_code)) return TRUE;
2442 if (GET(scode, 1) == 0) return TRUE;
2443 }
2444
2445
2446
2447
2448
2449
2450 do endgroup += GET(endgroup, 1); while (*endgroup == OP_ALT);
2451 if (code >= scode && code <= endgroup) continue;
2452 else
2453 {
2454 recurse_check *r = recurses;
2455 for (r = recurses; r != NULL; r = r->prev)
2456 if (r->group == scode) break;
2457 if (r != NULL) continue;
2458 }
2459
2460
2461
2462
2463 empty_branch = FALSE;
2464 this_recurse.prev = recurses;
2465 this_recurse.group = scode;
2466
2467 do
2468 {
2469 if (could_be_empty_branch(scode, endcode, utf, cd, &this_recurse))
2470 {
2471 empty_branch = TRUE;
2472 break;
2473 }
2474 scode += GET(scode, 1);
2475 }
2476 while (*scode == OP_ALT);
2477
2478 if (!empty_branch) return FALSE;
2479 continue;
2480 }
2481
2482
2483
2484 if (c == OP_BRAZERO || c == OP_BRAMINZERO || c == OP_SKIPZERO ||
2485 c == OP_BRAPOSZERO)
2486 {
2487 code += PRIV(OP_lengths)[c];
2488 do code += GET(code, 1); while (*code == OP_ALT);
2489 c = *code;
2490 continue;
2491 }
2492
2493
2494
2495
2496 if (c == OP_SBRA || c == OP_SBRAPOS ||
2497 c == OP_SCBRA || c == OP_SCBRAPOS)
2498 {
2499 do code += GET(code, 1); while (*code == OP_ALT);
2500 c = *code;
2501 continue;
2502 }
2503
2504
2505
2506 if (c == OP_BRA || c == OP_BRAPOS ||
2507 c == OP_CBRA || c == OP_CBRAPOS ||
2508 c == OP_ONCE || c == OP_ONCE_NC ||
2509 c == OP_COND || c == OP_SCOND)
2510 {
2511 BOOL empty_branch;
2512 if (GET(code, 1) == 0) return TRUE;
2513
2514
2515
2516
2517
2518 if (c == OP_COND && code[GET(code, 1)] != OP_ALT)
2519 code += GET(code, 1);
2520 else
2521 {
2522 empty_branch = FALSE;
2523 do
2524 {
2525 if (!empty_branch && could_be_empty_branch(code, endcode, utf, cd,
2526 recurses)) empty_branch = TRUE;
2527 code += GET(code, 1);
2528 }
2529 while (*code == OP_ALT);
2530 if (!empty_branch) return FALSE;
2531 }
2532
2533 c = *code;
2534 continue;
2535 }
2536
2537
2538
2539 switch (c)
2540 {
2541
2542
2543
2544
2545
2546
2547 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
2548 case OP_XCLASS:
2549 ccode = code += GET(code, 1);
2550 goto CHECK_CLASS_REPEAT;
2551 #endif
2552
2553 case OP_CLASS:
2554 case OP_NCLASS:
2555 ccode = code + PRIV(OP_lengths)[OP_CLASS];
2556
2557 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
2558 CHECK_CLASS_REPEAT:
2559 #endif
2560
2561 switch (*ccode)
2562 {
2563 case OP_CRSTAR:
2564 case OP_CRMINSTAR:
2565 case OP_CRQUERY:
2566 case OP_CRMINQUERY:
2567 case OP_CRPOSSTAR:
2568 case OP_CRPOSQUERY:
2569 break;
2570
2571 default:
2572 case OP_CRPLUS:
2573 case OP_CRMINPLUS:
2574 case OP_CRPOSPLUS:
2575 return FALSE;
2576
2577 case OP_CRRANGE:
2578 case OP_CRMINRANGE:
2579 case OP_CRPOSRANGE:
2580 if (GET2(ccode, 1) > 0) return FALSE;
2581 break;
2582 }
2583 break;
2584
2585
2586
2587 case OP_ANY:
2588 case OP_ALLANY:
2589 case OP_ANYBYTE:
2590
2591 case OP_PROP:
2592 case OP_NOTPROP:
2593 case OP_ANYNL:
2594
2595 case OP_NOT_HSPACE:
2596 case OP_HSPACE:
2597 case OP_NOT_VSPACE:
2598 case OP_VSPACE:
2599 case OP_EXTUNI:
2600
2601 case OP_NOT_DIGIT:
2602 case OP_DIGIT:
2603 case OP_NOT_WHITESPACE:
2604 case OP_WHITESPACE:
2605 case OP_NOT_WORDCHAR:
2606 case OP_WORDCHAR:
2607
2608 case OP_CHAR:
2609 case OP_CHARI:
2610 case OP_NOT:
2611 case OP_NOTI:
2612
2613 case OP_PLUS:
2614 case OP_PLUSI:
2615 case OP_MINPLUS:
2616 case OP_MINPLUSI:
2617
2618 case OP_NOTPLUS:
2619 case OP_NOTPLUSI:
2620 case OP_NOTMINPLUS:
2621 case OP_NOTMINPLUSI:
2622
2623 case OP_POSPLUS:
2624 case OP_POSPLUSI:
2625 case OP_NOTPOSPLUS:
2626 case OP_NOTPOSPLUSI:
2627
2628 case OP_EXACT:
2629 case OP_EXACTI:
2630 case OP_NOTEXACT:
2631 case OP_NOTEXACTI:
2632
2633 case OP_TYPEPLUS:
2634 case OP_TYPEMINPLUS:
2635 case OP_TYPEPOSPLUS:
2636 case OP_TYPEEXACT:
2637
2638 return FALSE;
2639
2640
2641
2642
2643 case OP_TYPESTAR:
2644 case OP_TYPEMINSTAR:
2645 case OP_TYPEPOSSTAR:
2646 case OP_TYPEQUERY:
2647 case OP_TYPEMINQUERY:
2648 case OP_TYPEPOSQUERY:
2649 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
2650 break;
2651
2652
2653
2654 case OP_TYPEUPTO:
2655 case OP_TYPEMINUPTO:
2656 case OP_TYPEPOSUPTO:
2657 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP)
2658 code += 2;
2659 break;
2660
2661
2662
2663 case OP_KET:
2664 case OP_KETRMAX:
2665 case OP_KETRMIN:
2666 case OP_KETRPOS:
2667 case OP_ALT:
2668 return TRUE;
2669
2670
2671
2672
2673
2674 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
2675 case OP_STAR:
2676 case OP_STARI:
2677 case OP_NOTSTAR:
2678 case OP_NOTSTARI:
2679
2680 case OP_MINSTAR:
2681 case OP_MINSTARI:
2682 case OP_NOTMINSTAR:
2683 case OP_NOTMINSTARI:
2684
2685 case OP_POSSTAR:
2686 case OP_POSSTARI:
2687 case OP_NOTPOSSTAR:
2688 case OP_NOTPOSSTARI:
2689
2690 case OP_QUERY:
2691 case OP_QUERYI:
2692 case OP_NOTQUERY:
2693 case OP_NOTQUERYI:
2694
2695 case OP_MINQUERY:
2696 case OP_MINQUERYI:
2697 case OP_NOTMINQUERY:
2698 case OP_NOTMINQUERYI:
2699
2700 case OP_POSQUERY:
2701 case OP_POSQUERYI:
2702 case OP_NOTPOSQUERY:
2703 case OP_NOTPOSQUERYI:
2704
2705 if (utf && HAS_EXTRALEN(code[1])) code += GET_EXTRALEN(code[1]);
2706 break;
2707
2708 case OP_UPTO:
2709 case OP_UPTOI:
2710 case OP_NOTUPTO:
2711 case OP_NOTUPTOI:
2712
2713 case OP_MINUPTO:
2714 case OP_MINUPTOI:
2715 case OP_NOTMINUPTO:
2716 case OP_NOTMINUPTOI:
2717
2718 case OP_POSUPTO:
2719 case OP_POSUPTOI:
2720 case OP_NOTPOSUPTO:
2721 case OP_NOTPOSUPTOI:
2722
2723 if (utf && HAS_EXTRALEN(code[1 + IMM2_SIZE])) code += GET_EXTRALEN(code[1 + IMM2_SIZE]);
2724 break;
2725 #endif
2726
2727
2728
2729
2730 case OP_MARK:
2731 case OP_PRUNE_ARG:
2732 case OP_SKIP_ARG:
2733 case OP_THEN_ARG:
2734 code += code[1];
2735 break;
2736
2737
2738
2739 default:
2740 break;
2741 }
2742 }
2743
2744 return TRUE;
2745 }
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770 static BOOL
2771 could_be_empty(const pcre_uchar *code, const pcre_uchar *endcode,
2772 branch_chain *bcptr, BOOL utf, compile_data *cd)
2773 {
2774 while (bcptr != NULL && bcptr->current_branch >= code)
2775 {
2776 if (!could_be_empty_branch(bcptr->current_branch, endcode, utf, cd, NULL))
2777 return FALSE;
2778 bcptr = bcptr->outer;
2779 }
2780 return TRUE;
2781 }
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796 static pcre_uchar
2797 get_repeat_base(pcre_uchar c)
2798 {
2799 return (c > OP_TYPEPOSUPTO)? c :
2800 (c >= OP_TYPESTAR)? OP_TYPESTAR :
2801 (c >= OP_NOTSTARI)? OP_NOTSTARI :
2802 (c >= OP_NOTSTAR)? OP_NOTSTAR :
2803 (c >= OP_STARI)? OP_STARI :
2804 OP_STAR;
2805 }
2806
2807
2808
2809 #ifdef SUPPORT_UCP
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826 static BOOL
2827 check_char_prop(pcre_uint32 c, unsigned int ptype, unsigned int pdata,
2828 BOOL negated)
2829 {
2830 const pcre_uint32 *p;
2831 const ucd_record *prop = GET_UCD(c);
2832
2833 switch(ptype)
2834 {
2835 case PT_LAMP:
2836 return (prop->chartype == ucp_Lu ||
2837 prop->chartype == ucp_Ll ||
2838 prop->chartype == ucp_Lt) == negated;
2839
2840 case PT_GC:
2841 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated;
2842
2843 case PT_PC:
2844 return (pdata == prop->chartype) == negated;
2845
2846 case PT_SC:
2847 return (pdata == prop->script) == negated;
2848
2849
2850
2851 case PT_ALNUM:
2852 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
2853 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated;
2854
2855
2856
2857
2858
2859 case PT_SPACE:
2860 case PT_PXSPACE:
2861 switch(c)
2862 {
2863 HSPACE_CASES:
2864 VSPACE_CASES:
2865 return negated;
2866
2867 default:
2868 return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == negated;
2869 }
2870 break;
2871
2872 case PT_WORD:
2873 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
2874 PRIV(ucp_gentype)[prop->chartype] == ucp_N ||
2875 c == CHAR_UNDERSCORE) == negated;
2876
2877 case PT_CLIST:
2878 p = PRIV(ucd_caseless_sets) + prop->caseset;
2879 for (;;)
2880 {
2881 if (c < *p) return !negated;
2882 if (c == *p++) return negated;
2883 }
2884 break;
2885 }
2886
2887 return FALSE;
2888 }
2889 #endif
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914 static const pcre_uchar *
2915 get_chr_property_list(const pcre_uchar *code, BOOL utf,
2916 const pcre_uint8 *fcc, pcre_uint32 *list)
2917 {
2918 pcre_uchar c = *code;
2919 pcre_uchar base;
2920 const pcre_uchar *end;
2921 pcre_uint32 chr;
2922
2923 #ifdef SUPPORT_UCP
2924 pcre_uint32 *clist_dest;
2925 const pcre_uint32 *clist_src;
2926 #else
2927 utf = utf;
2928 #endif
2929
2930 list[0] = c;
2931 list[1] = FALSE;
2932 code++;
2933
2934 if (c >= OP_STAR && c <= OP_TYPEPOSUPTO)
2935 {
2936 base = get_repeat_base(c);
2937 c -= (base - OP_STAR);
2938
2939 if (c == OP_UPTO || c == OP_MINUPTO || c == OP_EXACT || c == OP_POSUPTO)
2940 code += IMM2_SIZE;
2941
2942 list[1] = (c != OP_PLUS && c != OP_MINPLUS && c != OP_EXACT && c != OP_POSPLUS);
2943
2944 switch(base)
2945 {
2946 case OP_STAR:
2947 list[0] = OP_CHAR;
2948 break;
2949
2950 case OP_STARI:
2951 list[0] = OP_CHARI;
2952 break;
2953
2954 case OP_NOTSTAR:
2955 list[0] = OP_NOT;
2956 break;
2957
2958 case OP_NOTSTARI:
2959 list[0] = OP_NOTI;
2960 break;
2961
2962 case OP_TYPESTAR:
2963 list[0] = *code;
2964 code++;
2965 break;
2966 }
2967 c = list[0];
2968 }
2969
2970 switch(c)
2971 {
2972 case OP_NOT_DIGIT:
2973 case OP_DIGIT:
2974 case OP_NOT_WHITESPACE:
2975 case OP_WHITESPACE:
2976 case OP_NOT_WORDCHAR:
2977 case OP_WORDCHAR:
2978 case OP_ANY:
2979 case OP_ALLANY:
2980 case OP_ANYNL:
2981 case OP_NOT_HSPACE:
2982 case OP_HSPACE:
2983 case OP_NOT_VSPACE:
2984 case OP_VSPACE:
2985 case OP_EXTUNI:
2986 case OP_EODN:
2987 case OP_EOD:
2988 case OP_DOLL:
2989 case OP_DOLLM:
2990 return code;
2991
2992 case OP_CHAR:
2993 case OP_NOT:
2994 GETCHARINCTEST(chr, code);
2995 list[2] = chr;
2996 list[3] = NOTACHAR;
2997 return code;
2998
2999 case OP_CHARI:
3000 case OP_NOTI:
3001 list[0] = (c == OP_CHARI) ? OP_CHAR : OP_NOT;
3002 GETCHARINCTEST(chr, code);
3003 list[2] = chr;
3004
3005 #ifdef SUPPORT_UCP
3006 if (chr < 128 || (chr < 256 && !utf))
3007 list[3] = fcc[chr];
3008 else
3009 list[3] = UCD_OTHERCASE(chr);
3010 #elif defined SUPPORT_UTF || !defined COMPILE_PCRE8
3011 list[3] = (chr < 256) ? fcc[chr] : chr;
3012 #else
3013 list[3] = fcc[chr];
3014 #endif
3015
3016
3017
3018 if (chr == list[3])
3019 list[3] = NOTACHAR;
3020 else
3021 list[4] = NOTACHAR;
3022 return code;
3023
3024 #ifdef SUPPORT_UCP
3025 case OP_PROP:
3026 case OP_NOTPROP:
3027 if (code[0] != PT_CLIST)
3028 {
3029 list[2] = code[0];
3030 list[3] = code[1];
3031 return code + 2;
3032 }
3033
3034
3035
3036 clist_src = PRIV(ucd_caseless_sets) + code[1];
3037 clist_dest = list + 2;
3038 code += 2;
3039
3040 do {
3041 if (clist_dest >= list + 8)
3042 {
3043
3044
3045 list[2] = code[0];
3046 list[3] = code[1];
3047 return code;
3048 }
3049 *clist_dest++ = *clist_src;
3050 }
3051 while(*clist_src++ != NOTACHAR);
3052
3053
3054
3055
3056 list[0] = (c == OP_PROP) ? OP_CHAR : OP_NOT;
3057 return code;
3058 #endif
3059
3060 case OP_NCLASS:
3061 case OP_CLASS:
3062 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3063 case OP_XCLASS:
3064 if (c == OP_XCLASS)
3065 end = code + GET(code, 0) - 1;
3066 else
3067 #endif
3068 end = code + 32 / sizeof(pcre_uchar);
3069
3070 switch(*end)
3071 {
3072 case OP_CRSTAR:
3073 case OP_CRMINSTAR:
3074 case OP_CRQUERY:
3075 case OP_CRMINQUERY:
3076 case OP_CRPOSSTAR:
3077 case OP_CRPOSQUERY:
3078 list[1] = TRUE;
3079 end++;
3080 break;
3081
3082 case OP_CRPLUS:
3083 case OP_CRMINPLUS:
3084 case OP_CRPOSPLUS:
3085 end++;
3086 break;
3087
3088 case OP_CRRANGE:
3089 case OP_CRMINRANGE:
3090 case OP_CRPOSRANGE:
3091 list[1] = (GET2(end, 1) == 0);
3092 end += 1 + 2 * IMM2_SIZE;
3093 break;
3094 }
3095 list[2] = (pcre_uint32)(end - code);
3096 return end;
3097 }
3098 return NULL;
3099 }
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119 static BOOL
3120 compare_opcodes(const pcre_uchar *code, BOOL utf, const compile_data *cd,
3121 const pcre_uint32 *base_list, const pcre_uchar *base_end, int *rec_limit)
3122 {
3123 pcre_uchar c;
3124 pcre_uint32 list[8];
3125 const pcre_uint32 *chr_ptr;
3126 const pcre_uint32 *ochr_ptr;
3127 const pcre_uint32 *list_ptr;
3128 const pcre_uchar *next_code;
3129 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3130 const pcre_uchar *xclass_flags;
3131 #endif
3132 const pcre_uint8 *class_bitset;
3133 const pcre_uint8 *set1, *set2, *set_end;
3134 pcre_uint32 chr;
3135 BOOL accepted, invert_bits;
3136 BOOL entered_a_group = FALSE;
3137
3138 if (*rec_limit == 0) return FALSE;
3139 --(*rec_limit);
3140
3141
3142
3143
3144
3145
3146 for(;;)
3147 {
3148
3149
3150
3151 c = *code;
3152
3153
3154
3155 if (c == OP_CALLOUT)
3156 {
3157 code += PRIV(OP_lengths)[c];
3158 continue;
3159 }
3160
3161 if (c == OP_ALT)
3162 {
3163 do code += GET(code, 1); while (*code == OP_ALT);
3164 c = *code;
3165 }
3166
3167 switch(c)
3168 {
3169 case OP_END:
3170 case OP_KETRPOS:
3171
3172
3173
3174
3175 return base_list[1] != 0;
3176
3177 case OP_KET:
3178
3179
3180
3181
3182 if (base_list[1] == 0) return FALSE;
3183
3184 switch(*(code - GET(code, 1)))
3185 {
3186 case OP_ASSERT:
3187 case OP_ASSERT_NOT:
3188 case OP_ASSERTBACK:
3189 case OP_ASSERTBACK_NOT:
3190 case OP_ONCE:
3191 case OP_ONCE_NC:
3192
3193
3194
3195
3196 return !entered_a_group;
3197 }
3198
3199 code += PRIV(OP_lengths)[c];
3200 continue;
3201
3202 case OP_ONCE:
3203 case OP_ONCE_NC:
3204 case OP_BRA:
3205 case OP_CBRA:
3206 next_code = code + GET(code, 1);
3207 code += PRIV(OP_lengths)[c];
3208
3209 while (*next_code == OP_ALT)
3210 {
3211 if (!compare_opcodes(code, utf, cd, base_list, base_end, rec_limit))
3212 return FALSE;
3213 code = next_code + 1 + LINK_SIZE;
3214 next_code += GET(next_code, 1);
3215 }
3216
3217 entered_a_group = TRUE;
3218 continue;
3219
3220 case OP_BRAZERO:
3221 case OP_BRAMINZERO:
3222
3223 next_code = code + 1;
3224 if (*next_code != OP_BRA && *next_code != OP_CBRA
3225 && *next_code != OP_ONCE && *next_code != OP_ONCE_NC) return FALSE;
3226
3227 do next_code += GET(next_code, 1); while (*next_code == OP_ALT);
3228
3229
3230
3231 next_code += 1 + LINK_SIZE;
3232 if (!compare_opcodes(next_code, utf, cd, base_list, base_end, rec_limit))
3233 return FALSE;
3234
3235 code += PRIV(OP_lengths)[c];
3236 continue;
3237
3238 default:
3239 break;
3240 }
3241
3242
3243
3244 code = get_chr_property_list(code, utf, cd->fcc, list);
3245 if (code == NULL) return FALSE;
3246
3247
3248
3249
3250 if (base_list[0] == OP_CHAR)
3251 {
3252 chr_ptr = base_list + 2;
3253 list_ptr = list;
3254 }
3255 else if (list[0] == OP_CHAR)
3256 {
3257 chr_ptr = list + 2;
3258 list_ptr = base_list;
3259 }
3260
3261
3262
3263 else if (base_list[0] == OP_CLASS || list[0] == OP_CLASS
3264 #ifdef COMPILE_PCRE8
3265
3266 || (!utf && (base_list[0] == OP_NCLASS || list[0] == OP_NCLASS))
3267 #endif
3268 )
3269 {
3270 #ifdef COMPILE_PCRE8
3271 if (base_list[0] == OP_CLASS || (!utf && base_list[0] == OP_NCLASS))
3272 #else
3273 if (base_list[0] == OP_CLASS)
3274 #endif
3275 {
3276 set1 = (pcre_uint8 *)(base_end - base_list[2]);
3277 list_ptr = list;
3278 }
3279 else
3280 {
3281 set1 = (pcre_uint8 *)(code - list[2]);
3282 list_ptr = base_list;
3283 }
3284
3285 invert_bits = FALSE;
3286 switch(list_ptr[0])
3287 {
3288 case OP_CLASS:
3289 case OP_NCLASS:
3290 set2 = (pcre_uint8 *)
3291 ((list_ptr == list ? code : base_end) - list_ptr[2]);
3292 break;
3293
3294 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3295 case OP_XCLASS:
3296 xclass_flags = (list_ptr == list ? code : base_end) - list_ptr[2] + LINK_SIZE;
3297 if ((*xclass_flags & XCL_HASPROP) != 0) return FALSE;
3298 if ((*xclass_flags & XCL_MAP) == 0)
3299 {
3300
3301 if (list[1] == 0) return TRUE;
3302
3303 continue;
3304 }
3305 set2 = (pcre_uint8 *)(xclass_flags + 1);
3306 break;
3307 #endif
3308
3309 case OP_NOT_DIGIT:
3310 invert_bits = TRUE;
3311
3312 case OP_DIGIT:
3313 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit);
3314 break;
3315
3316 case OP_NOT_WHITESPACE:
3317 invert_bits = TRUE;
3318
3319 case OP_WHITESPACE:
3320 set2 = (pcre_uint8 *)(cd->cbits + cbit_space);
3321 break;
3322
3323 case OP_NOT_WORDCHAR:
3324 invert_bits = TRUE;
3325
3326 case OP_WORDCHAR:
3327 set2 = (pcre_uint8 *)(cd->cbits + cbit_word);
3328 break;
3329
3330 default:
3331 return FALSE;
3332 }
3333
3334
3335
3336 set_end = set1 + 32;
3337 if (invert_bits)
3338 {
3339 do
3340 {
3341 if ((*set1++ & ~(*set2++)) != 0) return FALSE;
3342 }
3343 while (set1 < set_end);
3344 }
3345 else
3346 {
3347 do
3348 {
3349 if ((*set1++ & *set2++) != 0) return FALSE;
3350 }
3351 while (set1 < set_end);
3352 }
3353
3354 if (list[1] == 0) return TRUE;
3355
3356 continue;
3357 }
3358
3359
3360
3361
3362 else
3363 {
3364 pcre_uint32 leftop, rightop;
3365
3366 leftop = base_list[0];
3367 rightop = list[0];
3368
3369 #ifdef SUPPORT_UCP
3370 accepted = FALSE;
3371 if (leftop == OP_PROP || leftop == OP_NOTPROP)
3372 {
3373 if (rightop == OP_EOD)
3374 accepted = TRUE;
3375 else if (rightop == OP_PROP || rightop == OP_NOTPROP)
3376 {
3377 int n;
3378 const pcre_uint8 *p;
3379 BOOL same = leftop == rightop;
3380 BOOL lisprop = leftop == OP_PROP;
3381 BOOL risprop = rightop == OP_PROP;
3382 BOOL bothprop = lisprop && risprop;
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393 n = propposstab[base_list[2]][list[2]];
3394 switch(n)
3395 {
3396 case 0: break;
3397 case 1: accepted = bothprop; break;
3398 case 2: accepted = (base_list[3] == list[3]) != same; break;
3399 case 3: accepted = !same; break;
3400
3401 case 4:
3402 accepted = risprop && catposstab[base_list[3]][list[3]] == same;
3403 break;
3404
3405 case 5:
3406 accepted = lisprop && catposstab[list[3]][base_list[3]] == same;
3407 break;
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428 case 6:
3429 case 7:
3430 case 8:
3431 p = posspropstab[n-6];
3432 accepted = risprop && lisprop ==
3433 (list[3] != p[0] &&
3434 list[3] != p[1] &&
3435 (list[3] != p[2] || !lisprop));
3436 break;
3437
3438 case 9:
3439 case 10:
3440 case 11:
3441 p = posspropstab[n-9];
3442 accepted = lisprop && risprop ==
3443 (base_list[3] != p[0] &&
3444 base_list[3] != p[1] &&
3445 (base_list[3] != p[2] || !risprop));
3446 break;
3447
3448 case 12:
3449 case 13:
3450 case 14:
3451 p = posspropstab[n-12];
3452 accepted = risprop && lisprop ==
3453 (catposstab[p[0]][list[3]] &&
3454 catposstab[p[1]][list[3]] &&
3455 (list[3] != p[3] || !lisprop));
3456 break;
3457
3458 case 15:
3459 case 16:
3460 case 17:
3461 p = posspropstab[n-15];
3462 accepted = lisprop && risprop ==
3463 (catposstab[p[0]][base_list[3]] &&
3464 catposstab[p[1]][base_list[3]] &&
3465 (base_list[3] != p[3] || !risprop));
3466 break;
3467 }
3468 }
3469 }
3470
3471 else
3472 #endif
3473
3474 accepted = leftop >= FIRST_AUTOTAB_OP && leftop <= LAST_AUTOTAB_LEFT_OP &&
3475 rightop >= FIRST_AUTOTAB_OP && rightop <= LAST_AUTOTAB_RIGHT_OP &&
3476 autoposstab[leftop - FIRST_AUTOTAB_OP][rightop - FIRST_AUTOTAB_OP];
3477
3478 if (!accepted) return FALSE;
3479
3480 if (list[1] == 0) return TRUE;
3481
3482 continue;
3483 }
3484
3485
3486
3487
3488 do
3489 {
3490 chr = *chr_ptr;
3491
3492 switch(list_ptr[0])
3493 {
3494 case OP_CHAR:
3495 ochr_ptr = list_ptr + 2;
3496 do
3497 {
3498 if (chr == *ochr_ptr) return FALSE;
3499 ochr_ptr++;
3500 }
3501 while(*ochr_ptr != NOTACHAR);
3502 break;
3503
3504 case OP_NOT:
3505 ochr_ptr = list_ptr + 2;
3506 do
3507 {
3508 if (chr == *ochr_ptr)
3509 break;
3510 ochr_ptr++;
3511 }
3512 while(*ochr_ptr != NOTACHAR);
3513 if (*ochr_ptr == NOTACHAR) return FALSE;
3514 break;
3515
3516
3517
3518
3519 case OP_DIGIT:
3520 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE;
3521 break;
3522
3523 case OP_NOT_DIGIT:
3524 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE;
3525 break;
3526
3527 case OP_WHITESPACE:
3528 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE;
3529 break;
3530
3531 case OP_NOT_WHITESPACE:
3532 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE;
3533 break;
3534
3535 case OP_WORDCHAR:
3536 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE;
3537 break;
3538
3539 case OP_NOT_WORDCHAR:
3540 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE;
3541 break;
3542
3543 case OP_HSPACE:
3544 switch(chr)
3545 {
3546 HSPACE_CASES: return FALSE;
3547 default: break;
3548 }
3549 break;
3550
3551 case OP_NOT_HSPACE:
3552 switch(chr)
3553 {
3554 HSPACE_CASES: break;
3555 default: return FALSE;
3556 }
3557 break;
3558
3559 case OP_ANYNL:
3560 case OP_VSPACE:
3561 switch(chr)
3562 {
3563 VSPACE_CASES: return FALSE;
3564 default: break;
3565 }
3566 break;
3567
3568 case OP_NOT_VSPACE:
3569 switch(chr)
3570 {
3571 VSPACE_CASES: break;
3572 default: return FALSE;
3573 }
3574 break;
3575
3576 case OP_DOLL:
3577 case OP_EODN:
3578 switch (chr)
3579 {
3580 case CHAR_CR:
3581 case CHAR_LF:
3582 case CHAR_VT:
3583 case CHAR_FF:
3584 case CHAR_NEL:
3585 #ifndef EBCDIC
3586 case 0x2028:
3587 case 0x2029:
3588 #endif
3589 return FALSE;
3590 }
3591 break;
3592
3593 case OP_EOD:
3594 break;
3595
3596 #ifdef SUPPORT_UCP
3597 case OP_PROP:
3598 case OP_NOTPROP:
3599 if (!check_char_prop(chr, list_ptr[2], list_ptr[3],
3600 list_ptr[0] == OP_NOTPROP))
3601 return FALSE;
3602 break;
3603 #endif
3604
3605 case OP_NCLASS:
3606 if (chr > 255) return FALSE;
3607
3608
3609 case OP_CLASS:
3610 if (chr > 255) break;
3611 class_bitset = (pcre_uint8 *)
3612 ((list_ptr == list ? code : base_end) - list_ptr[2]);
3613 if ((class_bitset[chr >> 3] & (1 << (chr & 7))) != 0) return FALSE;
3614 break;
3615
3616 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3617 case OP_XCLASS:
3618 if (PRIV(xclass)(chr, (list_ptr == list ? code : base_end) -
3619 list_ptr[2] + LINK_SIZE, utf)) return FALSE;
3620 break;
3621 #endif
3622
3623 default:
3624 return FALSE;
3625 }
3626
3627 chr_ptr++;
3628 }
3629 while(*chr_ptr != NOTACHAR);
3630
3631
3632
3633 if (list[1] == 0) return TRUE;
3634 }
3635
3636
3637
3638
3639 }
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658 static void
3659 auto_possessify(pcre_uchar *code, BOOL utf, const compile_data *cd)
3660 {
3661 register pcre_uchar c;
3662 const pcre_uchar *end;
3663 pcre_uchar *repeat_opcode;
3664 pcre_uint32 list[8];
3665 int rec_limit;
3666
3667 for (;;)
3668 {
3669 c = *code;
3670
3671
3672
3673
3674
3675
3676
3677 if (c >= OP_TABLE_LENGTH) return;
3678
3679 if (c >= OP_STAR && c <= OP_TYPEPOSUPTO)
3680 {
3681 c -= get_repeat_base(c) - OP_STAR;
3682 end = (c <= OP_MINUPTO) ?
3683 get_chr_property_list(code, utf, cd->fcc, list) : NULL;
3684 list[1] = c == OP_STAR || c == OP_PLUS || c == OP_QUERY || c == OP_UPTO;
3685
3686 rec_limit = 1000;
3687 if (end != NULL && compare_opcodes(end, utf, cd, list, end, &rec_limit))
3688 {
3689 switch(c)
3690 {
3691 case OP_STAR:
3692 *code += OP_POSSTAR - OP_STAR;
3693 break;
3694
3695 case OP_MINSTAR:
3696 *code += OP_POSSTAR - OP_MINSTAR;
3697 break;
3698
3699 case OP_PLUS:
3700 *code += OP_POSPLUS - OP_PLUS;
3701 break;
3702
3703 case OP_MINPLUS:
3704 *code += OP_POSPLUS - OP_MINPLUS;
3705 break;
3706
3707 case OP_QUERY:
3708 *code += OP_POSQUERY - OP_QUERY;
3709 break;
3710
3711 case OP_MINQUERY:
3712 *code += OP_POSQUERY - OP_MINQUERY;
3713 break;
3714
3715 case OP_UPTO:
3716 *code += OP_POSUPTO - OP_UPTO;
3717 break;
3718
3719 case OP_MINUPTO:
3720 *code += OP_POSUPTO - OP_MINUPTO;
3721 break;
3722 }
3723 }
3724 c = *code;
3725 }
3726 else if (c == OP_CLASS || c == OP_NCLASS || c == OP_XCLASS)
3727 {
3728 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3729 if (c == OP_XCLASS)
3730 repeat_opcode = code + GET(code, 1);
3731 else
3732 #endif
3733 repeat_opcode = code + 1 + (32 / sizeof(pcre_uchar));
3734
3735 c = *repeat_opcode;
3736 if (c >= OP_CRSTAR && c <= OP_CRMINRANGE)
3737 {
3738
3739 end = get_chr_property_list(code, utf, cd->fcc, list);
3740
3741 list[1] = (c & 1) == 0;
3742
3743 rec_limit = 1000;
3744 if (compare_opcodes(end, utf, cd, list, end, &rec_limit))
3745 {
3746 switch (c)
3747 {
3748 case OP_CRSTAR:
3749 case OP_CRMINSTAR:
3750 *repeat_opcode = OP_CRPOSSTAR;
3751 break;
3752
3753 case OP_CRPLUS:
3754 case OP_CRMINPLUS:
3755 *repeat_opcode = OP_CRPOSPLUS;
3756 break;
3757
3758 case OP_CRQUERY:
3759 case OP_CRMINQUERY:
3760 *repeat_opcode = OP_CRPOSQUERY;
3761 break;
3762
3763 case OP_CRRANGE:
3764 case OP_CRMINRANGE:
3765 *repeat_opcode = OP_CRPOSRANGE;
3766 break;
3767 }
3768 }
3769 }
3770 c = *code;
3771 }
3772
3773 switch(c)
3774 {
3775 case OP_END:
3776 return;
3777
3778 case OP_TYPESTAR:
3779 case OP_TYPEMINSTAR:
3780 case OP_TYPEPLUS:
3781 case OP_TYPEMINPLUS:
3782 case OP_TYPEQUERY:
3783 case OP_TYPEMINQUERY:
3784 case OP_TYPEPOSSTAR:
3785 case OP_TYPEPOSPLUS:
3786 case OP_TYPEPOSQUERY:
3787 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2;
3788 break;
3789
3790 case OP_TYPEUPTO:
3791 case OP_TYPEMINUPTO:
3792 case OP_TYPEEXACT:
3793 case OP_TYPEPOSUPTO:
3794 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP)
3795 code += 2;
3796 break;
3797
3798 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
3799 case OP_XCLASS:
3800 code += GET(code, 1);
3801 break;
3802 #endif
3803
3804 case OP_MARK:
3805 case OP_PRUNE_ARG:
3806 case OP_SKIP_ARG:
3807 case OP_THEN_ARG:
3808 code += code[1];
3809 break;
3810 }
3811
3812
3813
3814 code += PRIV(OP_lengths)[c];
3815
3816
3817
3818
3819
3820 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
3821 if (utf) switch(c)
3822 {
3823 case OP_CHAR:
3824 case OP_CHARI:
3825 case OP_NOT:
3826 case OP_NOTI:
3827 case OP_STAR:
3828 case OP_MINSTAR:
3829 case OP_PLUS:
3830 case OP_MINPLUS:
3831 case OP_QUERY:
3832 case OP_MINQUERY:
3833 case OP_UPTO:
3834 case OP_MINUPTO:
3835 case OP_EXACT:
3836 case OP_POSSTAR:
3837 case OP_POSPLUS:
3838 case OP_POSQUERY:
3839 case OP_POSUPTO:
3840 case OP_STARI:
3841 case OP_MINSTARI:
3842 case OP_PLUSI:
3843 case OP_MINPLUSI:
3844 case OP_QUERYI:
3845 case OP_MINQUERYI:
3846 case OP_UPTOI:
3847 case OP_MINUPTOI:
3848 case OP_EXACTI:
3849 case OP_POSSTARI:
3850 case OP_POSPLUSI:
3851 case OP_POSQUERYI:
3852 case OP_POSUPTOI:
3853 case OP_NOTSTAR:
3854 case OP_NOTMINSTAR:
3855 case OP_NOTPLUS:
3856 case OP_NOTMINPLUS:
3857 case OP_NOTQUERY:
3858 case OP_NOTMINQUERY:
3859 case OP_NOTUPTO:
3860 case OP_NOTMINUPTO:
3861 case OP_NOTEXACT:
3862 case OP_NOTPOSSTAR:
3863 case OP_NOTPOSPLUS:
3864 case OP_NOTPOSQUERY:
3865 case OP_NOTPOSUPTO:
3866 case OP_NOTSTARI:
3867 case OP_NOTMINSTARI:
3868 case OP_NOTPLUSI:
3869 case OP_NOTMINPLUSI:
3870 case OP_NOTQUERYI:
3871 case OP_NOTMINQUERYI:
3872 case OP_NOTUPTOI:
3873 case OP_NOTMINUPTOI:
3874 case OP_NOTEXACTI:
3875 case OP_NOTPOSSTARI:
3876 case OP_NOTPOSPLUSI:
3877 case OP_NOTPOSQUERYI:
3878 case OP_NOTPOSUPTOI:
3879 if (HAS_EXTRALEN(code[-1])) code += GET_EXTRALEN(code[-1]);
3880 break;
3881 }
3882 #else
3883 (void)(utf);
3884 #endif
3885 }
3886 }
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932 static BOOL
3933 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar **endptr)
3934 {
3935 pcre_uchar terminator;
3936 terminator = *(++ptr);
3937 for (++ptr; *ptr != CHAR_NULL; ptr++)
3938 {
3939 if (*ptr == CHAR_BACKSLASH &&
3940 (ptr[1] == CHAR_RIGHT_SQUARE_BRACKET ||
3941 ptr[1] == CHAR_BACKSLASH))
3942 ptr++;
3943 else if ((*ptr == CHAR_LEFT_SQUARE_BRACKET && ptr[1] == terminator) ||
3944 *ptr == CHAR_RIGHT_SQUARE_BRACKET) return FALSE;
3945 else if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
3946 {
3947 *endptr = ptr;
3948 return TRUE;
3949 }
3950 }
3951 return FALSE;
3952 }
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971 static int
3972 check_posix_name(const pcre_uchar *ptr, int len)
3973 {
3974 const char *pn = posix_names;
3975 register int yield = 0;
3976 while (posix_name_lengths[yield] != 0)
3977 {
3978 if (len == posix_name_lengths[yield] &&
3979 STRNCMP_UC_C8(ptr, pn, (unsigned int)len) == 0) return yield;
3980 pn += posix_name_lengths[yield] + 1;
3981 yield++;
3982 }
3983 return -1;
3984 }
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019 static void
4020 adjust_recurse(pcre_uchar *group, int adjust, BOOL utf, compile_data *cd,
4021 size_t save_hwm_offset)
4022 {
4023 int offset;
4024 pcre_uchar *hc;
4025 pcre_uchar *ptr = group;
4026
4027 while ((ptr = (pcre_uchar *)find_recurse(ptr, utf)) != NULL)
4028 {
4029 for (hc = (pcre_uchar *)cd->start_workspace + save_hwm_offset; hc < cd->hwm;
4030 hc += LINK_SIZE)
4031 {
4032 offset = (int)GET(hc, 0);
4033 if (cd->start_code + offset == ptr + 1) break;
4034 }
4035
4036
4037
4038
4039 if (hc >= cd->hwm)
4040 {
4041 offset = (int)GET(ptr, 1);
4042 if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
4043 }
4044
4045 ptr += 1 + LINK_SIZE;
4046 }
4047
4048
4049
4050 for (hc = (pcre_uchar *)cd->start_workspace + save_hwm_offset; hc < cd->hwm;
4051 hc += LINK_SIZE)
4052 {
4053 offset = (int)GET(hc, 0);
4054 PUT(hc, 0, offset + adjust);
4055 }
4056 }
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075 static pcre_uchar *
4076 auto_callout(pcre_uchar *code, const pcre_uchar *ptr, compile_data *cd)
4077 {
4078 *code++ = OP_CALLOUT;
4079 *code++ = 255;
4080 PUT(code, 0, (int)(ptr - cd->start_pattern));
4081 PUT(code, LINK_SIZE, 0);
4082 return code + 2 * LINK_SIZE;
4083 }
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103 static void
4104 complete_callout(pcre_uchar *previous_callout, const pcre_uchar *ptr, compile_data *cd)
4105 {
4106 int length = (int)(ptr - cd->start_pattern - GET(previous_callout, 2));
4107 PUT(previous_callout, 2 + LINK_SIZE, length);
4108 }
4109
4110
4111
4112 #ifdef SUPPORT_UCP
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135 static int
4136 get_othercase_range(pcre_uint32 *cptr, pcre_uint32 d, pcre_uint32 *ocptr,
4137 pcre_uint32 *odptr)
4138 {
4139 pcre_uint32 c, othercase, next;
4140 unsigned int co;
4141
4142
4143
4144
4145 for (c = *cptr; c <= d; c++)
4146 {
4147 if ((co = UCD_CASESET(c)) != 0)
4148 {
4149 *ocptr = c++;
4150 *cptr = c;
4151 return (int)co;
4152 }
4153 if ((othercase = UCD_OTHERCASE(c)) != c) break;
4154 }
4155
4156 if (c > d) return -1;
4157
4158
4159
4160
4161
4162 *ocptr = othercase;
4163 next = othercase + 1;
4164
4165 for (++c; c <= d; c++)
4166 {
4167 if ((co = UCD_CASESET(c)) != 0 || UCD_OTHERCASE(c) != next) break;
4168 next++;
4169 }
4170
4171 *odptr = next - 1;
4172 *cptr = c;
4173 return 0;
4174 }
4175 #endif
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200 static int
4201 add_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options,
4202 compile_data *cd, pcre_uint32 start, pcre_uint32 end)
4203 {
4204 pcre_uint32 c;
4205 pcre_uint32 classbits_end = (end <= 0xff ? end : 0xff);
4206 int n8 = 0;
4207
4208
4209
4210
4211
4212
4213 if ((options & PCRE_CASELESS) != 0)
4214 {
4215 #ifdef SUPPORT_UCP
4216 if ((options & PCRE_UTF8) != 0)
4217 {
4218 int rc;
4219 pcre_uint32 oc, od;
4220
4221 options &= ~PCRE_CASELESS;
4222 c = start;
4223
4224 while ((rc = get_othercase_range(&c, end, &oc, &od)) >= 0)
4225 {
4226
4227
4228 if (rc > 0) n8 += add_list_to_class(classbits, uchardptr, options, cd,
4229 PRIV(ucd_caseless_sets) + rc, oc);
4230
4231
4232
4233 else if (oc >= start && od <= end) continue;
4234
4235
4236
4237
4238
4239 else if (oc < start && od >= start - 1) start = oc;
4240 else if (od > end && oc <= end + 1)
4241 {
4242 end = od;
4243 if (end > classbits_end) classbits_end = (end <= 0xff ? end : 0xff);
4244 }
4245 else n8 += add_to_class(classbits, uchardptr, options, cd, oc, od);
4246 }
4247 }
4248 else
4249 #endif
4250
4251
4252
4253 for (c = start; c <= classbits_end; c++)
4254 {
4255 SETBIT(classbits, cd->fcc[c]);
4256 n8++;
4257 }
4258 }
4259
4260
4261
4262
4263
4264 #if defined COMPILE_PCRE8
4265 #ifdef SUPPORT_UTF
4266 if ((options & PCRE_UTF8) == 0)
4267 #endif
4268 if (end > 0xff) end = 0xff;
4269
4270 #elif defined COMPILE_PCRE16
4271 #ifdef SUPPORT_UTF
4272 if ((options & PCRE_UTF16) == 0)
4273 #endif
4274 if (end > 0xffff) end = 0xffff;
4275
4276 #endif
4277
4278
4279
4280 for (c = start; c <= classbits_end; c++)
4281 {
4282
4283 SETBIT(classbits, c);
4284 n8++;
4285 }
4286
4287 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4288 if (start <= 0xff) start = 0xff + 1;
4289
4290 if (end >= start)
4291 {
4292 pcre_uchar *uchardata = *uchardptr;
4293 #ifdef SUPPORT_UTF
4294 if ((options & PCRE_UTF8) != 0)
4295 {
4296 if (start < end)
4297 {
4298 *uchardata++ = XCL_RANGE;
4299 uchardata += PRIV(ord2utf)(start, uchardata);
4300 uchardata += PRIV(ord2utf)(end, uchardata);
4301 }
4302 else if (start == end)
4303 {
4304 *uchardata++ = XCL_SINGLE;
4305 uchardata += PRIV(ord2utf)(start, uchardata);
4306 }
4307 }
4308 else
4309 #endif
4310
4311
4312
4313
4314 #ifdef COMPILE_PCRE8
4315 {}
4316 #else
4317 if (start < end)
4318 {
4319 *uchardata++ = XCL_RANGE;
4320 *uchardata++ = start;
4321 *uchardata++ = end;
4322 }
4323 else if (start == end)
4324 {
4325 *uchardata++ = XCL_SINGLE;
4326 *uchardata++ = start;
4327 }
4328 #endif
4329
4330 *uchardptr = uchardata;
4331 }
4332 #endif
4333
4334 return n8;
4335 }
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364 static int
4365 add_list_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options,
4366 compile_data *cd, const pcre_uint32 *p, unsigned int except)
4367 {
4368 int n8 = 0;
4369 while (p[0] < NOTACHAR)
4370 {
4371 int n = 0;
4372 if (p[0] != except)
4373 {
4374 while(p[n+1] == p[0] + n + 1) n++;
4375 n8 += add_to_class(classbits, uchardptr, options, cd, p[0], p[n]);
4376 }
4377 p += n + 1;
4378 }
4379 return n8;
4380 }
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402 static int
4403 add_not_list_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr,
4404 int options, compile_data *cd, const pcre_uint32 *p)
4405 {
4406 BOOL utf = (options & PCRE_UTF8) != 0;
4407 int n8 = 0;
4408 if (p[0] > 0)
4409 n8 += add_to_class(classbits, uchardptr, options, cd, 0, p[0] - 1);
4410 while (p[0] < NOTACHAR)
4411 {
4412 while (p[1] == p[0] + 1) p++;
4413 n8 += add_to_class(classbits, uchardptr, options, cd, p[0] + 1,
4414 (p[1] == NOTACHAR) ? (utf ? 0x10ffffu : 0xffffffffu) : p[1] - 1);
4415 p++;
4416 }
4417 return n8;
4418 }
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451 static BOOL
4452 compile_branch(int *optionsptr, pcre_uchar **codeptr,
4453 const pcre_uchar **ptrptr, int *errorcodeptr,
4454 pcre_uint32 *firstcharptr, pcre_int32 *firstcharflagsptr,
4455 pcre_uint32 *reqcharptr, pcre_int32 *reqcharflagsptr,
4456 branch_chain *bcptr, int cond_depth,
4457 compile_data *cd, int *lengthptr)
4458 {
4459 int repeat_type, op_type;
4460 int repeat_min = 0, repeat_max = 0;
4461 int bravalue = 0;
4462 int greedy_default, greedy_non_default;
4463 pcre_uint32 firstchar, reqchar;
4464 pcre_int32 firstcharflags, reqcharflags;
4465 pcre_uint32 zeroreqchar, zerofirstchar;
4466 pcre_int32 zeroreqcharflags, zerofirstcharflags;
4467 pcre_int32 req_caseopt, reqvary, tempreqvary;
4468 int options = *optionsptr;
4469 int after_manual_callout = 0;
4470 int length_prevgroup = 0;
4471 register pcre_uint32 c;
4472 int escape;
4473 register pcre_uchar *code = *codeptr;
4474 pcre_uchar *last_code = code;
4475 pcre_uchar *orig_code = code;
4476 pcre_uchar *tempcode;
4477 BOOL inescq = FALSE;
4478 BOOL groupsetfirstchar = FALSE;
4479 const pcre_uchar *ptr = *ptrptr;
4480 const pcre_uchar *tempptr;
4481 const pcre_uchar *nestptr = NULL;
4482 pcre_uchar *previous = NULL;
4483 pcre_uchar *previous_callout = NULL;
4484 size_t item_hwm_offset = 0;
4485 pcre_uint8 classbits[32];
4486
4487
4488
4489
4490
4491 #ifdef SUPPORT_UTF
4492
4493 BOOL utf = (options & PCRE_UTF8) != 0;
4494 #ifndef COMPILE_PCRE32
4495 pcre_uchar utf_chars[6];
4496 #endif
4497 #else
4498 BOOL utf = FALSE;
4499 #endif
4500
4501
4502
4503
4504
4505
4506 pcre_uchar *class_uchardata;
4507 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4508 BOOL xclass;
4509 pcre_uchar *class_uchardata_base;
4510 #endif
4511
4512 #ifdef PCRE_DEBUG
4513 if (lengthptr != NULL) DPRINTF((">> start branch\n"));
4514 #endif
4515
4516
4517
4518 greedy_default = ((options & PCRE_UNGREEDY) != 0);
4519 greedy_non_default = greedy_default ^ 1;
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531 firstchar = reqchar = zerofirstchar = zeroreqchar = 0;
4532 firstcharflags = reqcharflags = zerofirstcharflags = zeroreqcharflags = REQ_UNSET;
4533
4534
4535
4536
4537
4538
4539
4540 req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS:0;
4541
4542
4543
4544 for (;; ptr++)
4545 {
4546 BOOL negate_class;
4547 BOOL should_flip_negation;
4548 BOOL possessive_quantifier;
4549 BOOL is_quantifier;
4550 BOOL is_recurse;
4551 BOOL reset_bracount;
4552 int class_has_8bitchar;
4553 int class_one_char;
4554 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4555 BOOL xclass_has_prop;
4556 #endif
4557 int newoptions;
4558 int recno;
4559 int refsign;
4560 int skipbytes;
4561 pcre_uint32 subreqchar, subfirstchar;
4562 pcre_int32 subreqcharflags, subfirstcharflags;
4563 int terminator;
4564 unsigned int mclength;
4565 unsigned int tempbracount;
4566 pcre_uint32 ec;
4567 pcre_uchar mcbuffer[8];
4568
4569
4570
4571 c = *ptr;
4572
4573
4574
4575
4576 if (c == CHAR_NULL && nestptr != NULL)
4577 {
4578 ptr = nestptr;
4579 nestptr = NULL;
4580 c = *ptr;
4581 }
4582
4583
4584
4585
4586 if (lengthptr != NULL)
4587 {
4588 #ifdef PCRE_DEBUG
4589 if (code > cd->hwm) cd->hwm = code;
4590 #endif
4591 if (code > cd->start_workspace + cd->workspace_size -
4592 WORK_SIZE_SAFETY_MARGIN)
4593 {
4594 *errorcodeptr = ERR52;
4595 goto FAILED;
4596 }
4597
4598
4599
4600
4601
4602
4603
4604 if (code < last_code) code = last_code;
4605
4606
4607
4608 if (OFLOW_MAX - *lengthptr < code - last_code)
4609 {
4610 *errorcodeptr = ERR20;
4611 goto FAILED;
4612 }
4613
4614 *lengthptr += (int)(code - last_code);
4615 DPRINTF(("length=%d added %d c=%c (0x%x)\n", *lengthptr,
4616 (int)(code - last_code), c, c));
4617
4618
4619
4620
4621
4622 if (previous != NULL)
4623 {
4624 if (previous > orig_code)
4625 {
4626 memmove(orig_code, previous, IN_UCHARS(code - previous));
4627 code -= previous - orig_code;
4628 previous = orig_code;
4629 }
4630 }
4631 else code = orig_code;
4632
4633
4634
4635
4636 last_code = code;
4637 }
4638
4639
4640
4641
4642 else if (cd->hwm > cd->start_workspace + cd->workspace_size)
4643 {
4644 *errorcodeptr = ERR52;
4645 goto FAILED;
4646 }
4647
4648
4649
4650 if (inescq && c != CHAR_NULL)
4651 {
4652 if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E)
4653 {
4654 inescq = FALSE;
4655 ptr++;
4656 continue;
4657 }
4658 else
4659 {
4660 if (previous_callout != NULL)
4661 {
4662 if (lengthptr == NULL)
4663 complete_callout(previous_callout, ptr, cd);
4664 previous_callout = NULL;
4665 }
4666 if ((options & PCRE_AUTO_CALLOUT) != 0)
4667 {
4668 previous_callout = code;
4669 code = auto_callout(code, ptr, cd);
4670 }
4671 goto NORMAL_CHAR;
4672 }
4673
4674 }
4675
4676
4677
4678
4679 if ((options & PCRE_EXTENDED) != 0)
4680 {
4681 for (;;)
4682 {
4683 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr);
4684 if (c != CHAR_NUMBER_SIGN) break;
4685 ptr++;
4686 while (*ptr != CHAR_NULL)
4687 {
4688 if (IS_NEWLINE(ptr))
4689 {
4690 ptr += cd->nllen;
4691 break;
4692 }
4693 ptr++;
4694 #ifdef SUPPORT_UTF
4695 if (utf) FORWARDCHAR(ptr);
4696 #endif
4697 }
4698 c = *ptr;
4699 }
4700 }
4701
4702
4703
4704 is_quantifier =
4705 c == CHAR_ASTERISK || c == CHAR_PLUS || c == CHAR_QUESTION_MARK ||
4706 (c == CHAR_LEFT_CURLY_BRACKET && is_counted_repeat(ptr+1));
4707
4708
4709
4710
4711 if (!is_quantifier && previous_callout != NULL && nestptr == NULL &&
4712 after_manual_callout-- <= 0)
4713 {
4714 if (lengthptr == NULL)
4715 complete_callout(previous_callout, ptr, cd);
4716 previous_callout = NULL;
4717 }
4718
4719
4720
4721
4722 if ((options & PCRE_AUTO_CALLOUT) != 0 && !is_quantifier && nestptr == NULL)
4723 {
4724 previous_callout = code;
4725 code = auto_callout(code, ptr, cd);
4726 }
4727
4728
4729
4730 switch(c)
4731 {
4732
4733 case CHAR_NULL:
4734 case CHAR_VERTICAL_LINE:
4735 case CHAR_RIGHT_PARENTHESIS:
4736 *firstcharptr = firstchar;
4737 *firstcharflagsptr = firstcharflags;
4738 *reqcharptr = reqchar;
4739 *reqcharflagsptr = reqcharflags;
4740 *codeptr = code;
4741 *ptrptr = ptr;
4742 if (lengthptr != NULL)
4743 {
4744 if (OFLOW_MAX - *lengthptr < code - last_code)
4745 {
4746 *errorcodeptr = ERR20;
4747 goto FAILED;
4748 }
4749 *lengthptr += (int)(code - last_code);
4750 DPRINTF((">> end branch\n"));
4751 }
4752 return TRUE;
4753
4754
4755
4756
4757
4758
4759 case CHAR_CIRCUMFLEX_ACCENT:
4760 previous = NULL;
4761 if ((options & PCRE_MULTILINE) != 0)
4762 {
4763 if (firstcharflags == REQ_UNSET)
4764 zerofirstcharflags = firstcharflags = REQ_NONE;
4765 *code++ = OP_CIRCM;
4766 }
4767 else *code++ = OP_CIRC;
4768 break;
4769
4770 case CHAR_DOLLAR_SIGN:
4771 previous = NULL;
4772 *code++ = ((options & PCRE_MULTILINE) != 0)? OP_DOLLM : OP_DOLL;
4773 break;
4774
4775
4776
4777
4778 case CHAR_DOT:
4779 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
4780 zerofirstchar = firstchar;
4781 zerofirstcharflags = firstcharflags;
4782 zeroreqchar = reqchar;
4783 zeroreqcharflags = reqcharflags;
4784 previous = code;
4785 item_hwm_offset = cd->hwm - cd->start_workspace;
4786 *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY;
4787 break;
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805 case CHAR_RIGHT_SQUARE_BRACKET:
4806 if ((cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0)
4807 {
4808 *errorcodeptr = ERR64;
4809 goto FAILED;
4810 }
4811 goto NORMAL_CHAR;
4812
4813
4814
4815
4816
4817
4818
4819 case CHAR_LEFT_SQUARE_BRACKET:
4820 if (STRNCMP_UC_C8(ptr+1, STRING_WEIRD_STARTWORD, 6) == 0)
4821 {
4822 nestptr = ptr + 7;
4823 ptr = sub_start_of_word - 1;
4824 continue;
4825 }
4826
4827 if (STRNCMP_UC_C8(ptr+1, STRING_WEIRD_ENDWORD, 6) == 0)
4828 {
4829 nestptr = ptr + 7;
4830 ptr = sub_end_of_word - 1;
4831 continue;
4832 }
4833
4834
4835
4836 previous = code;
4837 item_hwm_offset = cd->hwm - cd->start_workspace;
4838
4839
4840
4841
4842 if ((ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
4843 ptr[1] == CHAR_EQUALS_SIGN) &&
4844 check_posix_syntax(ptr, &tempptr))
4845 {
4846 *errorcodeptr = (ptr[1] == CHAR_COLON)? ERR13 : ERR31;
4847 goto FAILED;
4848 }
4849
4850
4851
4852
4853
4854 negate_class = FALSE;
4855 for (;;)
4856 {
4857 c = *(++ptr);
4858 if (c == CHAR_BACKSLASH)
4859 {
4860 if (ptr[1] == CHAR_E)
4861 ptr++;
4862 else if (STRNCMP_UC_C8(ptr + 1, STR_Q STR_BACKSLASH STR_E, 3) == 0)
4863 ptr += 3;
4864 else
4865 break;
4866 }
4867 else if (!negate_class && c == CHAR_CIRCUMFLEX_ACCENT)
4868 negate_class = TRUE;
4869 else break;
4870 }
4871
4872
4873
4874
4875
4876
4877 if (c == CHAR_RIGHT_SQUARE_BRACKET &&
4878 (cd->external_options & PCRE_JAVASCRIPT_COMPAT) != 0)
4879 {
4880 *code++ = negate_class? OP_ALLANY : OP_FAIL;
4881 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
4882 zerofirstchar = firstchar;
4883 zerofirstcharflags = firstcharflags;
4884 break;
4885 }
4886
4887
4888
4889
4890
4891 should_flip_negation = FALSE;
4892
4893
4894
4895
4896 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4897 xclass = FALSE;
4898 class_uchardata = code + LINK_SIZE + 2;
4899 class_uchardata_base = class_uchardata;
4900 #endif
4901
4902
4903
4904
4905
4906
4907
4908 class_has_8bitchar = 0;
4909 class_one_char = 0;
4910 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4911 xclass_has_prop = FALSE;
4912 #endif
4913
4914
4915
4916
4917
4918
4919 memset(classbits, 0, 32 * sizeof(pcre_uint8));
4920
4921
4922
4923
4924
4925 if (c != CHAR_NULL) do
4926 {
4927 const pcre_uchar *oldptr;
4928
4929 #ifdef SUPPORT_UTF
4930 if (utf && HAS_EXTRALEN(c))
4931 {
4932 GETCHARLEN(c, ptr, ptr);
4933 }
4934 #endif
4935
4936 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
4937
4938
4939
4940
4941
4942
4943 if (class_uchardata > class_uchardata_base) xclass = TRUE;
4944
4945 if (lengthptr != NULL && class_uchardata > class_uchardata_base)
4946 {
4947 *lengthptr += (int)(class_uchardata - class_uchardata_base);
4948 class_uchardata = class_uchardata_base;
4949 }
4950 #endif
4951
4952
4953
4954 if (inescq)
4955 {
4956 if (c == CHAR_BACKSLASH && ptr[1] == CHAR_E)
4957 {
4958 inescq = FALSE;
4959 ptr++;
4960 continue;
4961 }
4962 goto CHECK_RANGE;
4963 }
4964
4965
4966
4967
4968
4969
4970
4971 if (c == CHAR_LEFT_SQUARE_BRACKET &&
4972 (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
4973 ptr[1] == CHAR_EQUALS_SIGN) && check_posix_syntax(ptr, &tempptr))
4974 {
4975 BOOL local_negate = FALSE;
4976 int posix_class, taboffset, tabopt;
4977 register const pcre_uint8 *cbits = cd->cbits;
4978 pcre_uint8 pbits[32];
4979
4980 if (ptr[1] != CHAR_COLON)
4981 {
4982 *errorcodeptr = ERR31;
4983 goto FAILED;
4984 }
4985
4986 ptr += 2;
4987 if (*ptr == CHAR_CIRCUMFLEX_ACCENT)
4988 {
4989 local_negate = TRUE;
4990 should_flip_negation = TRUE;
4991 ptr++;
4992 }
4993
4994 posix_class = check_posix_name(ptr, (int)(tempptr - ptr));
4995 if (posix_class < 0)
4996 {
4997 *errorcodeptr = ERR30;
4998 goto FAILED;
4999 }
5000
5001
5002
5003
5004
5005 if ((options & PCRE_CASELESS) != 0 && posix_class <= 2)
5006 posix_class = 0;
5007
5008
5009
5010
5011
5012
5013 #ifdef SUPPORT_UCP
5014 if ((options & PCRE_UCP) != 0)
5015 {
5016 unsigned int ptype = 0;
5017 int pc = posix_class + ((local_negate)? POSIX_SUBSIZE/2 : 0);
5018
5019
5020
5021
5022 if (posix_substitutes[pc] != NULL)
5023 {
5024 nestptr = tempptr + 1;
5025 ptr = posix_substitutes[pc] - 1;
5026 continue;
5027 }
5028
5029
5030
5031
5032 else switch(posix_class)
5033 {
5034 case PC_GRAPH:
5035 ptype = PT_PXGRAPH;
5036
5037 case PC_PRINT:
5038 if (ptype == 0) ptype = PT_PXPRINT;
5039
5040 case PC_PUNCT:
5041 if (ptype == 0) ptype = PT_PXPUNCT;
5042 *class_uchardata++ = local_negate? XCL_NOTPROP : XCL_PROP;
5043 *class_uchardata++ = ptype;
5044 *class_uchardata++ = 0;
5045 xclass_has_prop = TRUE;
5046 ptr = tempptr + 1;
5047 continue;
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061 default:
5062 if (!negate_class && local_negate &&
5063 (xclass || tempptr[2] != CHAR_RIGHT_SQUARE_BRACKET))
5064 {
5065 *class_uchardata++ = XCL_RANGE;
5066 class_uchardata += PRIV(ord2utf)(0x100, class_uchardata);
5067 class_uchardata += PRIV(ord2utf)(0x10ffff, class_uchardata);
5068 }
5069 break;
5070 }
5071 }
5072 #endif
5073
5074
5075
5076
5077
5078
5079 posix_class *= 3;
5080
5081
5082
5083 memcpy(pbits, cbits + posix_class_maps[posix_class],
5084 32 * sizeof(pcre_uint8));
5085
5086
5087
5088 taboffset = posix_class_maps[posix_class + 1];
5089 tabopt = posix_class_maps[posix_class + 2];
5090
5091 if (taboffset >= 0)
5092 {
5093 if (tabopt >= 0)
5094 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset];
5095 else
5096 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset];
5097 }
5098
5099
5100
5101
5102 if (tabopt < 0) tabopt = -tabopt;
5103 if (tabopt == 1) pbits[1] &= ~0x3c;
5104 else if (tabopt == 2) pbits[11] &= 0x7f;
5105
5106
5107
5108
5109 if (local_negate)
5110 for (c = 0; c < 32; c++) classbits[c] |= ~pbits[c];
5111 else
5112 for (c = 0; c < 32; c++) classbits[c] |= pbits[c];
5113
5114 ptr = tempptr + 1;
5115
5116 class_has_8bitchar = 1;
5117
5118 class_one_char = 2;
5119 continue;
5120 }
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131 if (c == CHAR_BACKSLASH)
5132 {
5133 escape = check_escape(&ptr, &ec, errorcodeptr, cd->bracount, options,
5134 TRUE);
5135 if (*errorcodeptr != 0) goto FAILED;
5136 if (escape == 0) c = ec;
5137 else if (escape == ESC_b) c = CHAR_BS;
5138 else if (escape == ESC_N)
5139 {
5140 *errorcodeptr = ERR71;
5141 goto FAILED;
5142 }
5143 else if (escape == ESC_Q)
5144 {
5145 if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E)
5146 {
5147 ptr += 2;
5148 }
5149 else inescq = TRUE;
5150 continue;
5151 }
5152 else if (escape == ESC_E) continue;
5153
5154 else
5155 {
5156 register const pcre_uint8 *cbits = cd->cbits;
5157
5158 class_has_8bitchar++;
5159
5160 class_one_char += 2;
5161
5162 switch (escape)
5163 {
5164 #ifdef SUPPORT_UCP
5165 case ESC_du:
5166 case ESC_DU:
5167 case ESC_wu:
5168 case ESC_WU:
5169 case ESC_su:
5170 case ESC_SU:
5171 nestptr = ptr;
5172 ptr = substitutes[escape - ESC_DU] - 1;
5173 class_has_8bitchar--;
5174 continue;
5175 #endif
5176 case ESC_d:
5177 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit];
5178 continue;
5179
5180 case ESC_D:
5181 should_flip_negation = TRUE;
5182 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit];
5183 continue;
5184
5185 case ESC_w:
5186 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_word];
5187 continue;
5188
5189 case ESC_W:
5190 should_flip_negation = TRUE;
5191 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word];
5192 continue;
5193
5194
5195
5196
5197
5198
5199
5200
5201 case ESC_s:
5202 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space];
5203 continue;
5204
5205 case ESC_S:
5206 should_flip_negation = TRUE;
5207 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space];
5208 continue;
5209
5210
5211
5212 case ESC_h:
5213 (void)add_list_to_class(classbits, &class_uchardata, options, cd,
5214 PRIV(hspace_list), NOTACHAR);
5215 continue;
5216
5217 case ESC_H:
5218 (void)add_not_list_to_class(classbits, &class_uchardata, options,
5219 cd, PRIV(hspace_list));
5220 continue;
5221
5222 case ESC_v:
5223 (void)add_list_to_class(classbits, &class_uchardata, options, cd,
5224 PRIV(vspace_list), NOTACHAR);
5225 continue;
5226
5227 case ESC_V:
5228 (void)add_not_list_to_class(classbits, &class_uchardata, options,
5229 cd, PRIV(vspace_list));
5230 continue;
5231
5232 case ESC_p:
5233 case ESC_P:
5234 #ifdef SUPPORT_UCP
5235 {
5236 BOOL negated;
5237 unsigned int ptype = 0, pdata = 0;
5238 if (!get_ucp(&ptr, &negated, &ptype, &pdata, errorcodeptr))
5239 goto FAILED;
5240 *class_uchardata++ = ((escape == ESC_p) != negated)?
5241 XCL_PROP : XCL_NOTPROP;
5242 *class_uchardata++ = ptype;
5243 *class_uchardata++ = pdata;
5244 xclass_has_prop = TRUE;
5245 class_has_8bitchar--;
5246 continue;
5247 }
5248 #else
5249 *errorcodeptr = ERR45;
5250 goto FAILED;
5251 #endif
5252
5253
5254
5255
5256 default:
5257 if ((options & PCRE_EXTRA) != 0)
5258 {
5259 *errorcodeptr = ERR7;
5260 goto FAILED;
5261 }
5262 class_has_8bitchar--;
5263 class_one_char -= 2;
5264 c = *ptr;
5265 break;
5266 }
5267 }
5268
5269
5270
5271
5272 escape = 0;
5273
5274 }
5275
5276
5277
5278
5279
5280
5281 CHECK_RANGE:
5282 while (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E)
5283 {
5284 inescq = FALSE;
5285 ptr += 2;
5286 }
5287 oldptr = ptr;
5288
5289
5290
5291 if (c == CHAR_CR || c == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF;
5292
5293
5294
5295 if (!inescq && ptr[1] == CHAR_MINUS)
5296 {
5297 pcre_uint32 d;
5298 ptr += 2;
5299 while (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_E) ptr += 2;
5300
5301
5302
5303
5304 while (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_Q)
5305 {
5306 ptr += 2;
5307 if (*ptr == CHAR_BACKSLASH && ptr[1] == CHAR_E)
5308 { ptr += 2; continue; }
5309 inescq = TRUE;
5310 break;
5311 }
5312
5313
5314
5315
5316 if (*ptr == CHAR_NULL || (!inescq && *ptr == CHAR_RIGHT_SQUARE_BRACKET))
5317 {
5318 ptr = oldptr;
5319 goto CLASS_SINGLE_CHARACTER;
5320 }
5321
5322
5323
5324 #ifdef SUPPORT_UTF
5325 if (utf)
5326 {
5327 GETCHARLEN(d, ptr, ptr);
5328 }
5329 else
5330 #endif
5331 d = *ptr;
5332
5333
5334
5335
5336
5337
5338
5339 if (!inescq)
5340 {
5341 if (d == CHAR_BACKSLASH)
5342 {
5343 int descape;
5344 descape = check_escape(&ptr, &d, errorcodeptr, cd->bracount, options, TRUE);
5345 if (*errorcodeptr != 0) goto FAILED;
5346
5347
5348
5349
5350 if (descape != 0)
5351 {
5352 if (descape == ESC_b) d = CHAR_BS; else
5353 {
5354 *errorcodeptr = ERR83;
5355 goto FAILED;
5356 }
5357 }
5358 }
5359
5360
5361
5362 else if (d == CHAR_LEFT_SQUARE_BRACKET &&
5363 (ptr[1] == CHAR_COLON || ptr[1] == CHAR_DOT ||
5364 ptr[1] == CHAR_EQUALS_SIGN) &&
5365 check_posix_syntax(ptr, &tempptr))
5366 {
5367 *errorcodeptr = ERR83;
5368 goto FAILED;
5369 }
5370 }
5371
5372
5373
5374
5375 if (d < c)
5376 {
5377 *errorcodeptr = ERR8;
5378 goto FAILED;
5379 }
5380 if (d == c) goto CLASS_SINGLE_CHARACTER;
5381
5382
5383
5384
5385
5386 class_one_char = 2;
5387
5388
5389
5390 if (d == CHAR_CR || d == CHAR_NL) cd->external_flags |= PCRE_HASCRORLF;
5391
5392 class_has_8bitchar +=
5393 add_to_class(classbits, &class_uchardata, options, cd, c, d);
5394
5395 continue;
5396 }
5397
5398
5399
5400
5401
5402
5403
5404 CLASS_SINGLE_CHARACTER:
5405 if (class_one_char < 2) class_one_char++;
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416 if (!inescq &&
5417 #ifdef SUPPORT_UCP
5418 !xclass_has_prop &&
5419 #endif
5420 class_one_char == 1 && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
5421 {
5422 ptr++;
5423 zeroreqchar = reqchar;
5424 zeroreqcharflags = reqcharflags;
5425
5426 if (negate_class)
5427 {
5428 #ifdef SUPPORT_UCP
5429 int d;
5430 #endif
5431 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
5432 zerofirstchar = firstchar;
5433 zerofirstcharflags = firstcharflags;
5434
5435
5436
5437
5438
5439 #ifdef SUPPORT_UCP
5440 if (utf && (options & PCRE_CASELESS) != 0 &&
5441 (d = UCD_CASESET(c)) != 0)
5442 {
5443 *code++ = OP_NOTPROP;
5444 *code++ = PT_CLIST;
5445 *code++ = d;
5446 }
5447 else
5448 #endif
5449
5450
5451 {
5452 *code++ = ((options & PCRE_CASELESS) != 0)? OP_NOTI: OP_NOT;
5453 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5454 if (utf && c > MAX_VALUE_FOR_SINGLE_CHAR)
5455 code += PRIV(ord2utf)(c, code);
5456 else
5457 #endif
5458 *code++ = c;
5459 }
5460
5461
5462
5463 goto END_CLASS;
5464 }
5465
5466
5467
5468
5469 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5470 if (utf && c > MAX_VALUE_FOR_SINGLE_CHAR)
5471 mclength = PRIV(ord2utf)(c, mcbuffer);
5472 else
5473 #endif
5474 {
5475 mcbuffer[0] = c;
5476 mclength = 1;
5477 }
5478 goto ONE_CHAR;
5479 }
5480
5481
5482
5483
5484 class_has_8bitchar +=
5485 add_to_class(classbits, &class_uchardata, options, cd, c, c);
5486 }
5487
5488
5489
5490
5491
5492 while (((c = *(++ptr)) != CHAR_NULL ||
5493 (nestptr != NULL &&
5494 (ptr = nestptr, nestptr = NULL, c = *(++ptr)) != CHAR_NULL)) &&
5495 (c != CHAR_RIGHT_SQUARE_BRACKET || inescq));
5496
5497
5498
5499 if (c == CHAR_NULL)
5500 {
5501 *errorcodeptr = ERR6;
5502 goto FAILED;
5503 }
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
5514 if (class_uchardata > class_uchardata_base) xclass = TRUE;
5515 #endif
5516
5517
5518
5519
5520
5521 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
5522 zerofirstchar = firstchar;
5523 zerofirstcharflags = firstcharflags;
5524 zeroreqchar = reqchar;
5525 zeroreqcharflags = reqcharflags;
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535 #ifdef SUPPORT_UTF
5536 if (xclass && (xclass_has_prop || !should_flip_negation ||
5537 (options & PCRE_UCP) != 0))
5538 #elif !defined COMPILE_PCRE8
5539 if (xclass && (xclass_has_prop || !should_flip_negation))
5540 #endif
5541 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
5542 {
5543 *class_uchardata++ = XCL_END;
5544 *code++ = OP_XCLASS;
5545 code += LINK_SIZE;
5546 *code = negate_class? XCL_NOT:0;
5547 if (xclass_has_prop) *code |= XCL_HASPROP;
5548
5549
5550
5551
5552 if (class_has_8bitchar > 0)
5553 {
5554 *code++ |= XCL_MAP;
5555 memmove(code + (32 / sizeof(pcre_uchar)), code,
5556 IN_UCHARS(class_uchardata - code));
5557 if (negate_class && !xclass_has_prop)
5558 for (c = 0; c < 32; c++) classbits[c] = ~classbits[c];
5559 memcpy(code, classbits, 32);
5560 code = class_uchardata + (32 / sizeof(pcre_uchar));
5561 }
5562 else code = class_uchardata;
5563
5564
5565
5566 PUT(previous, 1, (int)(code - previous));
5567 break;
5568 }
5569
5570
5571
5572
5573 if (lengthptr != NULL)
5574 *lengthptr += (int)(class_uchardata - class_uchardata_base);
5575 #endif
5576
5577
5578
5579
5580
5581
5582
5583 *code++ = (negate_class == should_flip_negation) ? OP_CLASS : OP_NCLASS;
5584 if (lengthptr == NULL)
5585 {
5586 if (negate_class)
5587 for (c = 0; c < 32; c++) classbits[c] = ~classbits[c];
5588 memcpy(code, classbits, 32);
5589 }
5590 code += 32 / sizeof(pcre_uchar);
5591
5592 END_CLASS:
5593 break;
5594
5595
5596
5597
5598
5599
5600 case CHAR_LEFT_CURLY_BRACKET:
5601 if (!is_quantifier) goto NORMAL_CHAR;
5602 ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr);
5603 if (*errorcodeptr != 0) goto FAILED;
5604 goto REPEAT;
5605
5606 case CHAR_ASTERISK:
5607 repeat_min = 0;
5608 repeat_max = -1;
5609 goto REPEAT;
5610
5611 case CHAR_PLUS:
5612 repeat_min = 1;
5613 repeat_max = -1;
5614 goto REPEAT;
5615
5616 case CHAR_QUESTION_MARK:
5617 repeat_min = 0;
5618 repeat_max = 1;
5619
5620 REPEAT:
5621 if (previous == NULL)
5622 {
5623 *errorcodeptr = ERR9;
5624 goto FAILED;
5625 }
5626
5627 if (repeat_min == 0)
5628 {
5629 firstchar = zerofirstchar;
5630 firstcharflags = zerofirstcharflags;
5631 reqchar = zeroreqchar;
5632 reqcharflags = zeroreqcharflags;
5633 }
5634
5635
5636
5637 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY;
5638
5639 op_type = 0;
5640 possessive_quantifier = FALSE;
5641
5642
5643
5644
5645 tempcode = previous;
5646
5647
5648
5649
5650
5651 if ((options & PCRE_EXTENDED) != 0)
5652 {
5653 const pcre_uchar *p = ptr + 1;
5654 for (;;)
5655 {
5656 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++;
5657 if (*p != CHAR_NUMBER_SIGN) break;
5658 p++;
5659 while (*p != CHAR_NULL)
5660 {
5661 if (IS_NEWLINE(p))
5662 {
5663 p += cd->nllen;
5664 break;
5665 }
5666 p++;
5667 #ifdef SUPPORT_UTF
5668 if (utf) FORWARDCHAR(p);
5669 #endif
5670 }
5671 }
5672 ptr = p - 1;
5673 }
5674
5675
5676
5677
5678
5679
5680
5681 if (ptr[1] == CHAR_PLUS)
5682 {
5683 repeat_type = 0;
5684 possessive_quantifier = TRUE;
5685 ptr++;
5686 }
5687 else if (ptr[1] == CHAR_QUESTION_MARK)
5688 {
5689 repeat_type = greedy_non_default;
5690 ptr++;
5691 }
5692 else repeat_type = greedy_default;
5693
5694
5695
5696
5697
5698
5699
5700 if (*previous == OP_RECURSE)
5701 {
5702 memmove(previous + 1 + LINK_SIZE, previous, IN_UCHARS(1 + LINK_SIZE));
5703 *previous = OP_ONCE;
5704 PUT(previous, 1, 2 + 2*LINK_SIZE);
5705 previous[2 + 2*LINK_SIZE] = OP_KET;
5706 PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE);
5707 code += 2 + 2 * LINK_SIZE;
5708 length_prevgroup = 3 + 3*LINK_SIZE;
5709
5710
5711
5712
5713 if (lengthptr == NULL && cd->hwm >= cd->start_workspace + LINK_SIZE)
5714 {
5715 int offset = GET(cd->hwm, -LINK_SIZE);
5716 if (offset == previous + 1 - cd->start_code)
5717 PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE);
5718 }
5719 }
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729 if (*previous == OP_CHAR || *previous == OP_CHARI
5730 || *previous == OP_NOT || *previous == OP_NOTI)
5731 {
5732 switch (*previous)
5733 {
5734 default:
5735 case OP_CHAR: op_type = OP_STAR - OP_STAR; break;
5736 case OP_CHARI: op_type = OP_STARI - OP_STAR; break;
5737 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break;
5738 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break;
5739 }
5740
5741
5742
5743
5744
5745
5746 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5747 if (utf && NOT_FIRSTCHAR(code[-1]))
5748 {
5749 pcre_uchar *lastchar = code - 1;
5750 BACKCHAR(lastchar);
5751 c = (int)(code - lastchar);
5752 memcpy(utf_chars, lastchar, IN_UCHARS(c));
5753 c |= UTF_LENGTH;
5754 }
5755 else
5756 #endif
5757
5758
5759
5760 {
5761 c = code[-1];
5762 if (*previous <= OP_CHARI && repeat_min > 1)
5763 {
5764 reqchar = c;
5765 reqcharflags = req_caseopt | cd->req_varyopt;
5766 }
5767 }
5768
5769 goto OUTPUT_SINGLE_REPEAT;
5770 }
5771
5772
5773
5774
5775
5776
5777
5778
5779 else if (*previous < OP_EODN)
5780 {
5781 pcre_uchar *oldcode;
5782 int prop_type, prop_value;
5783 op_type = OP_TYPESTAR - OP_STAR;
5784 c = *previous;
5785
5786 OUTPUT_SINGLE_REPEAT:
5787 if (*previous == OP_PROP || *previous == OP_NOTPROP)
5788 {
5789 prop_type = previous[1];
5790 prop_value = previous[2];
5791 }
5792 else prop_type = prop_value = -1;
5793
5794 oldcode = code;
5795 code = previous;
5796
5797
5798
5799
5800 if (repeat_max == 0) goto END_REPEAT;
5801
5802
5803
5804 repeat_type += op_type;
5805
5806
5807
5808
5809 if (repeat_min == 0)
5810 {
5811 if (repeat_max == -1) *code++ = OP_STAR + repeat_type;
5812 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type;
5813 else
5814 {
5815 *code++ = OP_UPTO + repeat_type;
5816 PUT2INC(code, 0, repeat_max);
5817 }
5818 }
5819
5820
5821
5822
5823
5824
5825 else if (repeat_min == 1)
5826 {
5827 if (repeat_max == -1)
5828 *code++ = OP_PLUS + repeat_type;
5829 else
5830 {
5831 code = oldcode;
5832 if (repeat_max == 1) goto END_REPEAT;
5833 *code++ = OP_UPTO + repeat_type;
5834 PUT2INC(code, 0, repeat_max - 1);
5835 }
5836 }
5837
5838
5839
5840
5841 else
5842 {
5843 *code++ = OP_EXACT + op_type;
5844 PUT2INC(code, 0, repeat_min);
5845
5846
5847
5848
5849
5850
5851
5852 if (repeat_max < 0)
5853 {
5854 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5855 if (utf && (c & UTF_LENGTH) != 0)
5856 {
5857 memcpy(code, utf_chars, IN_UCHARS(c & 7));
5858 code += c & 7;
5859 }
5860 else
5861 #endif
5862 {
5863 *code++ = c;
5864 if (prop_type >= 0)
5865 {
5866 *code++ = prop_type;
5867 *code++ = prop_value;
5868 }
5869 }
5870 *code++ = OP_STAR + repeat_type;
5871 }
5872
5873
5874
5875
5876
5877 else if (repeat_max != repeat_min)
5878 {
5879 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5880 if (utf && (c & UTF_LENGTH) != 0)
5881 {
5882 memcpy(code, utf_chars, IN_UCHARS(c & 7));
5883 code += c & 7;
5884 }
5885 else
5886 #endif
5887 *code++ = c;
5888 if (prop_type >= 0)
5889 {
5890 *code++ = prop_type;
5891 *code++ = prop_value;
5892 }
5893 repeat_max -= repeat_min;
5894
5895 if (repeat_max == 1)
5896 {
5897 *code++ = OP_QUERY + repeat_type;
5898 }
5899 else
5900 {
5901 *code++ = OP_UPTO + repeat_type;
5902 PUT2INC(code, 0, repeat_max);
5903 }
5904 }
5905 }
5906
5907
5908
5909 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
5910 if (utf && (c & UTF_LENGTH) != 0)
5911 {
5912 memcpy(code, utf_chars, IN_UCHARS(c & 7));
5913 code += c & 7;
5914 }
5915 else
5916 #endif
5917 *code++ = c;
5918
5919
5920
5921
5922 #ifdef SUPPORT_UCP
5923 if (prop_type >= 0)
5924 {
5925 *code++ = prop_type;
5926 *code++ = prop_value;
5927 }
5928 #endif
5929 }
5930
5931
5932
5933
5934 else if (*previous == OP_CLASS || *previous == OP_NCLASS ||
5935 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
5936 *previous == OP_XCLASS ||
5937 #endif
5938 *previous == OP_REF || *previous == OP_REFI ||
5939 *previous == OP_DNREF || *previous == OP_DNREFI)
5940 {
5941 if (repeat_max == 0)
5942 {
5943 code = previous;
5944 goto END_REPEAT;
5945 }
5946
5947 if (repeat_min == 0 && repeat_max == -1)
5948 *code++ = OP_CRSTAR + repeat_type;
5949 else if (repeat_min == 1 && repeat_max == -1)
5950 *code++ = OP_CRPLUS + repeat_type;
5951 else if (repeat_min == 0 && repeat_max == 1)
5952 *code++ = OP_CRQUERY + repeat_type;
5953 else
5954 {
5955 *code++ = OP_CRRANGE + repeat_type;
5956 PUT2INC(code, 0, repeat_min);
5957 if (repeat_max == -1) repeat_max = 0;
5958 PUT2INC(code, 0, repeat_max);
5959 }
5960 }
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971 else if (*previous >= OP_ASSERT && *previous <= OP_COND)
5972 {
5973 register int i;
5974 int len = (int)(code - previous);
5975 size_t base_hwm_offset = item_hwm_offset;
5976 pcre_uchar *bralink = NULL;
5977 pcre_uchar *brazeroptr = NULL;
5978
5979
5980
5981
5982 if (*previous == OP_COND && previous[LINK_SIZE+1] == OP_DEF)
5983 goto END_REPEAT;
5984
5985
5986
5987
5988
5989
5990 if (*previous < OP_ONCE)
5991 {
5992 if (repeat_min > 0) goto END_REPEAT;
5993 if (repeat_max < 0 || repeat_max > 1) repeat_max = 1;
5994 }
5995
5996
5997
5998
5999
6000
6001
6002
6003 if (repeat_min == 0)
6004 {
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027 if (repeat_max <= 1)
6028 {
6029 *code = OP_END;
6030 adjust_recurse(previous, 1, utf, cd, item_hwm_offset);
6031 memmove(previous + 1, previous, IN_UCHARS(len));
6032 code++;
6033 if (repeat_max == 0)
6034 {
6035 *previous++ = OP_SKIPZERO;
6036 goto END_REPEAT;
6037 }
6038 brazeroptr = previous;
6039 *previous++ = OP_BRAZERO + repeat_type;
6040 }
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050 else
6051 {
6052 int offset;
6053 *code = OP_END;
6054 adjust_recurse(previous, 2 + LINK_SIZE, utf, cd, item_hwm_offset);
6055 memmove(previous + 2 + LINK_SIZE, previous, IN_UCHARS(len));
6056 code += 2 + LINK_SIZE;
6057 *previous++ = OP_BRAZERO + repeat_type;
6058 *previous++ = OP_BRA;
6059
6060
6061
6062
6063 offset = (bralink == NULL)? 0 : (int)(previous - bralink);
6064 bralink = previous;
6065 PUTINC(previous, 0, offset);
6066 }
6067
6068 repeat_max--;
6069 }
6070
6071
6072
6073
6074
6075
6076
6077
6078 else
6079 {
6080 if (repeat_min > 1)
6081 {
6082
6083
6084
6085
6086
6087 if (lengthptr != NULL)
6088 {
6089 int delta = (repeat_min - 1)*length_prevgroup;
6090 if ((INT64_OR_DOUBLE)(repeat_min - 1)*
6091 (INT64_OR_DOUBLE)length_prevgroup >
6092 (INT64_OR_DOUBLE)INT_MAX ||
6093 OFLOW_MAX - *lengthptr < delta)
6094 {
6095 *errorcodeptr = ERR20;
6096 goto FAILED;
6097 }
6098 *lengthptr += delta;
6099 }
6100
6101
6102
6103
6104
6105
6106 else
6107 {
6108 if (groupsetfirstchar && reqcharflags < 0)
6109 {
6110 reqchar = firstchar;
6111 reqcharflags = firstcharflags;
6112 }
6113
6114 for (i = 1; i < repeat_min; i++)
6115 {
6116 pcre_uchar *hc;
6117 size_t this_hwm_offset = cd->hwm - cd->start_workspace;
6118 memcpy(code, previous, IN_UCHARS(len));
6119
6120 while (cd->hwm > cd->start_workspace + cd->workspace_size -
6121 WORK_SIZE_SAFETY_MARGIN -
6122 (this_hwm_offset - base_hwm_offset))
6123 {
6124 *errorcodeptr = expand_workspace(cd);
6125 if (*errorcodeptr != 0) goto FAILED;
6126 }
6127
6128 for (hc = (pcre_uchar *)cd->start_workspace + base_hwm_offset;
6129 hc < (pcre_uchar *)cd->start_workspace + this_hwm_offset;
6130 hc += LINK_SIZE)
6131 {
6132 PUT(cd->hwm, 0, GET(hc, 0) + len);
6133 cd->hwm += LINK_SIZE;
6134 }
6135 base_hwm_offset = this_hwm_offset;
6136 code += len;
6137 }
6138 }
6139 }
6140
6141 if (repeat_max > 0) repeat_max -= repeat_min;
6142 }
6143
6144
6145
6146
6147
6148
6149
6150
6151 if (repeat_max >= 0)
6152 {
6153
6154
6155
6156
6157
6158
6159
6160 if (lengthptr != NULL && repeat_max > 0)
6161 {
6162 int delta = repeat_max * (length_prevgroup + 1 + 2 + 2*LINK_SIZE) -
6163 2 - 2*LINK_SIZE;
6164 if ((INT64_OR_DOUBLE)repeat_max *
6165 (INT64_OR_DOUBLE)(length_prevgroup + 1 + 2 + 2*LINK_SIZE)
6166 > (INT64_OR_DOUBLE)INT_MAX ||
6167 OFLOW_MAX - *lengthptr < delta)
6168 {
6169 *errorcodeptr = ERR20;
6170 goto FAILED;
6171 }
6172 *lengthptr += delta;
6173 }
6174
6175
6176
6177 else for (i = repeat_max - 1; i >= 0; i--)
6178 {
6179 pcre_uchar *hc;
6180 size_t this_hwm_offset = cd->hwm - cd->start_workspace;
6181
6182 *code++ = OP_BRAZERO + repeat_type;
6183
6184
6185
6186
6187 if (i != 0)
6188 {
6189 int offset;
6190 *code++ = OP_BRA;
6191 offset = (bralink == NULL)? 0 : (int)(code - bralink);
6192 bralink = code;
6193 PUTINC(code, 0, offset);
6194 }
6195
6196 memcpy(code, previous, IN_UCHARS(len));
6197
6198
6199
6200
6201 while (cd->hwm > cd->start_workspace + cd->workspace_size -
6202 WORK_SIZE_SAFETY_MARGIN -
6203 (this_hwm_offset - base_hwm_offset))
6204 {
6205 *errorcodeptr = expand_workspace(cd);
6206 if (*errorcodeptr != 0) goto FAILED;
6207 }
6208
6209 for (hc = (pcre_uchar *)cd->start_workspace + base_hwm_offset;
6210 hc < (pcre_uchar *)cd->start_workspace + this_hwm_offset;
6211 hc += LINK_SIZE)
6212 {
6213 PUT(cd->hwm, 0, GET(hc, 0) + len + ((i != 0)? 2+LINK_SIZE : 1));
6214 cd->hwm += LINK_SIZE;
6215 }
6216 base_hwm_offset = this_hwm_offset;
6217 code += len;
6218 }
6219
6220
6221
6222
6223 while (bralink != NULL)
6224 {
6225 int oldlinkoffset;
6226 int offset = (int)(code - bralink + 1);
6227 pcre_uchar *bra = code - offset;
6228 oldlinkoffset = GET(bra, 1);
6229 bralink = (oldlinkoffset == 0)? NULL : bralink - oldlinkoffset;
6230 *code++ = OP_KET;
6231 PUTINC(code, 0, offset);
6232 PUT(bra, 1, offset);
6233 }
6234 }
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261 else
6262 {
6263 pcre_uchar *ketcode = code - 1 - LINK_SIZE;
6264 pcre_uchar *bracode = ketcode - GET(ketcode, 1);
6265
6266
6267
6268 if ((*bracode == OP_ONCE || *bracode == OP_ONCE_NC) &&
6269 possessive_quantifier) *bracode = OP_BRA;
6270
6271
6272
6273
6274 if (*bracode == OP_ONCE || *bracode == OP_ONCE_NC)
6275 *ketcode = OP_KETRMAX + repeat_type;
6276
6277
6278
6279
6280 else
6281 {
6282
6283
6284 if (lengthptr == NULL)
6285 {
6286 pcre_uchar *scode = bracode;
6287 do
6288 {
6289 if (could_be_empty_branch(scode, ketcode, utf, cd, NULL))
6290 {
6291 *bracode += OP_SBRA - OP_BRA;
6292 break;
6293 }
6294 scode += GET(scode, 1);
6295 }
6296 while (*scode == OP_ALT);
6297 }
6298
6299
6300
6301
6302 if (*bracode == OP_COND && bracode[GET(bracode,1)] != OP_ALT)
6303 *bracode = OP_SCOND;
6304
6305
6306
6307 if (possessive_quantifier)
6308 {
6309
6310
6311
6312
6313
6314 if (*bracode == OP_COND || *bracode == OP_SCOND)
6315 {
6316 int nlen = (int)(code - bracode);
6317 *code = OP_END;
6318 adjust_recurse(bracode, 1 + LINK_SIZE, utf, cd, item_hwm_offset);
6319 memmove(bracode + 1 + LINK_SIZE, bracode, IN_UCHARS(nlen));
6320 code += 1 + LINK_SIZE;
6321 nlen += 1 + LINK_SIZE;
6322 *bracode = (*bracode == OP_COND)? OP_BRAPOS : OP_SBRAPOS;
6323 *code++ = OP_KETRPOS;
6324 PUTINC(code, 0, nlen);
6325 PUT(bracode, 1, nlen);
6326 }
6327
6328
6329
6330 else
6331 {
6332 *bracode += 1;
6333 *ketcode = OP_KETRPOS;
6334 }
6335
6336
6337
6338
6339 if (brazeroptr != NULL) *brazeroptr = OP_BRAPOSZERO;
6340 if (repeat_min < 2) possessive_quantifier = FALSE;
6341 }
6342
6343
6344
6345 else *ketcode = OP_KETRMAX + repeat_type;
6346 }
6347 }
6348 }
6349
6350
6351
6352
6353
6354
6355 else if (*previous == OP_FAIL) goto END_REPEAT;
6356
6357
6358
6359 else
6360 {
6361 *errorcodeptr = ERR11;
6362 goto FAILED;
6363 }
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377 if (possessive_quantifier)
6378 {
6379 int len;
6380
6381
6382
6383
6384
6385
6386
6387 switch(*tempcode)
6388 {
6389 case OP_TYPEEXACT:
6390 tempcode += PRIV(OP_lengths)[*tempcode] +
6391 ((tempcode[1 + IMM2_SIZE] == OP_PROP
6392 || tempcode[1 + IMM2_SIZE] == OP_NOTPROP)? 2 : 0);
6393 break;
6394
6395
6396
6397 case OP_CHAR:
6398 case OP_CHARI:
6399 case OP_NOT:
6400 case OP_NOTI:
6401 case OP_EXACT:
6402 case OP_EXACTI:
6403 case OP_NOTEXACT:
6404 case OP_NOTEXACTI:
6405 tempcode += PRIV(OP_lengths)[*tempcode];
6406 #ifdef SUPPORT_UTF
6407 if (utf && HAS_EXTRALEN(tempcode[-1]))
6408 tempcode += GET_EXTRALEN(tempcode[-1]);
6409 #endif
6410 break;
6411
6412
6413
6414
6415 case OP_CLASS:
6416 case OP_NCLASS:
6417 tempcode += 1 + 32/sizeof(pcre_uchar);
6418 break;
6419
6420 #if defined SUPPORT_UTF || !defined COMPILE_PCRE8
6421 case OP_XCLASS:
6422 tempcode += GET(tempcode, 1);
6423 break;
6424 #endif
6425 }
6426
6427
6428
6429
6430
6431
6432
6433 len = (int)(code - tempcode);
6434 if (len > 0)
6435 {
6436 unsigned int repcode = *tempcode;
6437
6438
6439
6440
6441
6442 if (repcode < OP_CALLOUT && opcode_possessify[repcode] > 0)
6443 *tempcode = opcode_possessify[repcode];
6444
6445
6446
6447
6448
6449 else
6450 {
6451 *code = OP_END;
6452 adjust_recurse(tempcode, 1 + LINK_SIZE, utf, cd, item_hwm_offset);
6453 memmove(tempcode + 1 + LINK_SIZE, tempcode, IN_UCHARS(len));
6454 code += 1 + LINK_SIZE;
6455 len += 1 + LINK_SIZE;
6456 tempcode[0] = OP_ONCE;
6457 *code++ = OP_KET;
6458 PUTINC(code, 0, len);
6459 PUT(tempcode, 1, len);
6460 }
6461 }
6462
6463 #ifdef NEVER
6464 if (len > 0) switch (*tempcode)
6465 {
6466 case OP_STAR: *tempcode = OP_POSSTAR; break;
6467 case OP_PLUS: *tempcode = OP_POSPLUS; break;
6468 case OP_QUERY: *tempcode = OP_POSQUERY; break;
6469 case OP_UPTO: *tempcode = OP_POSUPTO; break;
6470
6471 case OP_STARI: *tempcode = OP_POSSTARI; break;
6472 case OP_PLUSI: *tempcode = OP_POSPLUSI; break;
6473 case OP_QUERYI: *tempcode = OP_POSQUERYI; break;
6474 case OP_UPTOI: *tempcode = OP_POSUPTOI; break;
6475
6476 case OP_NOTSTAR: *tempcode = OP_NOTPOSSTAR; break;
6477 case OP_NOTPLUS: *tempcode = OP_NOTPOSPLUS; break;
6478 case OP_NOTQUERY: *tempcode = OP_NOTPOSQUERY; break;
6479 case OP_NOTUPTO: *tempcode = OP_NOTPOSUPTO; break;
6480
6481 case OP_NOTSTARI: *tempcode = OP_NOTPOSSTARI; break;
6482 case OP_NOTPLUSI: *tempcode = OP_NOTPOSPLUSI; break;
6483 case OP_NOTQUERYI: *tempcode = OP_NOTPOSQUERYI; break;
6484 case OP_NOTUPTOI: *tempcode = OP_NOTPOSUPTOI; break;
6485
6486 case OP_TYPESTAR: *tempcode = OP_TYPEPOSSTAR; break;
6487 case OP_TYPEPLUS: *tempcode = OP_TYPEPOSPLUS; break;
6488 case OP_TYPEQUERY: *tempcode = OP_TYPEPOSQUERY; break;
6489 case OP_TYPEUPTO: *tempcode = OP_TYPEPOSUPTO; break;
6490
6491 case OP_CRSTAR: *tempcode = OP_CRPOSSTAR; break;
6492 case OP_CRPLUS: *tempcode = OP_CRPOSPLUS; break;
6493 case OP_CRQUERY: *tempcode = OP_CRPOSQUERY; break;
6494 case OP_CRRANGE: *tempcode = OP_CRPOSRANGE; break;
6495
6496
6497
6498
6499 default:
6500 *code = OP_END;
6501 adjust_recurse(tempcode, 1 + LINK_SIZE, utf, cd, item_hwm_offset);
6502 memmove(tempcode + 1 + LINK_SIZE, tempcode, IN_UCHARS(len));
6503 code += 1 + LINK_SIZE;
6504 len += 1 + LINK_SIZE;
6505 tempcode[0] = OP_ONCE;
6506 *code++ = OP_KET;
6507 PUTINC(code, 0, len);
6508 PUT(tempcode, 1, len);
6509 break;
6510 }
6511 #endif
6512 }
6513
6514
6515
6516
6517
6518 END_REPEAT:
6519 previous = NULL;
6520 cd->req_varyopt |= reqvary;
6521 break;
6522
6523
6524
6525
6526
6527
6528
6529 case CHAR_LEFT_PARENTHESIS:
6530 ptr++;
6531
6532
6533
6534
6535 if (ptr[0] == CHAR_QUESTION_MARK && ptr[1] == CHAR_NUMBER_SIGN)
6536 {
6537 ptr += 2;
6538 while (*ptr != CHAR_NULL && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++;
6539 if (*ptr == CHAR_NULL)
6540 {
6541 *errorcodeptr = ERR18;
6542 goto FAILED;
6543 }
6544 continue;
6545 }
6546
6547
6548
6549 if (ptr[0] == CHAR_ASTERISK && (ptr[1] == ':'
6550 || (MAX_255(ptr[1]) && ((cd->ctypes[ptr[1]] & ctype_letter) != 0))))
6551 {
6552 int i, namelen;
6553 int arglen = 0;
6554 const char *vn = verbnames;
6555 const pcre_uchar *name = ptr + 1;
6556 const pcre_uchar *arg = NULL;
6557 previous = NULL;
6558 ptr++;
6559 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_letter) != 0) ptr++;
6560 namelen = (int)(ptr - name);
6561
6562
6563
6564
6565
6566 if (*ptr == CHAR_COLON)
6567 {
6568 arg = ++ptr;
6569 while (*ptr != CHAR_NULL && *ptr != CHAR_RIGHT_PARENTHESIS) ptr++;
6570 arglen = (int)(ptr - arg);
6571 if ((unsigned int)arglen > MAX_MARK)
6572 {
6573 *errorcodeptr = ERR75;
6574 goto FAILED;
6575 }
6576 }
6577
6578 if (*ptr != CHAR_RIGHT_PARENTHESIS)
6579 {
6580 *errorcodeptr = ERR60;
6581 goto FAILED;
6582 }
6583
6584
6585
6586 for (i = 0; i < verbcount; i++)
6587 {
6588 if (namelen == verbs[i].len &&
6589 STRNCMP_UC_C8(name, vn, namelen) == 0)
6590 {
6591 int setverb;
6592
6593
6594
6595
6596 if (verbs[i].op == OP_ACCEPT)
6597 {
6598 open_capitem *oc;
6599 if (arglen != 0)
6600 {
6601 *errorcodeptr = ERR59;
6602 goto FAILED;
6603 }
6604 cd->had_accept = TRUE;
6605 for (oc = cd->open_caps; oc != NULL; oc = oc->next)
6606 {
6607 *code++ = OP_CLOSE;
6608 PUT2INC(code, 0, oc->number);
6609 }
6610 setverb = *code++ =
6611 (cd->assert_depth > 0)? OP_ASSERT_ACCEPT : OP_ACCEPT;
6612
6613
6614 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
6615 }
6616
6617
6618
6619 else if (arglen == 0)
6620 {
6621 if (verbs[i].op < 0)
6622 {
6623 *errorcodeptr = ERR66;
6624 goto FAILED;
6625 }
6626 setverb = *code++ = verbs[i].op;
6627 }
6628
6629 else
6630 {
6631 if (verbs[i].op_arg < 0)
6632 {
6633 *errorcodeptr = ERR59;
6634 goto FAILED;
6635 }
6636 setverb = *code++ = verbs[i].op_arg;
6637 if (lengthptr != NULL)
6638 {
6639 *lengthptr += arglen;
6640 *code++ = 0;
6641 }
6642 else
6643 {
6644 *code++ = arglen;
6645 memcpy(code, arg, IN_UCHARS(arglen));
6646 code += arglen;
6647 }
6648 *code++ = 0;
6649 }
6650
6651 switch (setverb)
6652 {
6653 case OP_THEN:
6654 case OP_THEN_ARG:
6655 cd->external_flags |= PCRE_HASTHEN;
6656 break;
6657
6658 case OP_PRUNE:
6659 case OP_PRUNE_ARG:
6660 case OP_SKIP:
6661 case OP_SKIP_ARG:
6662 cd->had_pruneorskip = TRUE;
6663 break;
6664 }
6665
6666 break;
6667 }
6668
6669 vn += verbs[i].len + 1;
6670 }
6671
6672 if (i < verbcount) continue;
6673 *errorcodeptr = ERR60;
6674 goto FAILED;
6675 }
6676
6677
6678
6679 newoptions = options;
6680 skipbytes = 0;
6681 bravalue = OP_CBRA;
6682 item_hwm_offset = cd->hwm - cd->start_workspace;
6683 reset_bracount = FALSE;
6684
6685
6686
6687
6688 if (*ptr == CHAR_QUESTION_MARK)
6689 {
6690 int i, set, unset, namelen;
6691 int *optset;
6692 const pcre_uchar *name;
6693 pcre_uchar *slot;
6694
6695 switch (*(++ptr))
6696 {
6697
6698 case CHAR_VERTICAL_LINE:
6699 reset_bracount = TRUE;
6700 cd->dupgroups = TRUE;
6701
6702
6703
6704 case CHAR_COLON:
6705 bravalue = OP_BRA;
6706 ptr++;
6707 break;
6708
6709
6710
6711 case CHAR_LEFT_PARENTHESIS:
6712 bravalue = OP_COND;
6713 tempptr = ptr;
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732 if (ptr[1] == CHAR_QUESTION_MARK && ptr[2] == CHAR_C)
6733 {
6734 for (i = 3;; i++) if (!IS_DIGIT(ptr[i])) break;
6735 if (ptr[i] == CHAR_RIGHT_PARENTHESIS)
6736 tempptr += i + 1;
6737 }
6738
6739
6740
6741
6742
6743 if (tempptr[1] == CHAR_QUESTION_MARK &&
6744 (tempptr[2] == CHAR_EQUALS_SIGN ||
6745 tempptr[2] == CHAR_EXCLAMATION_MARK ||
6746 (tempptr[2] == CHAR_LESS_THAN_SIGN &&
6747 (tempptr[3] == CHAR_EQUALS_SIGN ||
6748 tempptr[3] == CHAR_EXCLAMATION_MARK))))
6749 {
6750 cd->iscondassert = TRUE;
6751 break;
6752 }
6753
6754
6755
6756
6757 code[1+LINK_SIZE] = OP_CREF;
6758 skipbytes = 1+IMM2_SIZE;
6759 refsign = -1;
6760 namelen = -1;
6761 name = NULL;
6762 recno = 0;
6763
6764
6765
6766 ptr++;
6767 if (*ptr == CHAR_R && ptr[1] == CHAR_AMPERSAND)
6768 {
6769 terminator = -1;
6770 ptr += 2;
6771 code[1+LINK_SIZE] = OP_RREF;
6772 }
6773
6774
6775
6776
6777
6778 else if (*ptr == CHAR_LESS_THAN_SIGN)
6779 {
6780 terminator = CHAR_GREATER_THAN_SIGN;
6781 ptr++;
6782 }
6783 else if (*ptr == CHAR_APOSTROPHE)
6784 {
6785 terminator = CHAR_APOSTROPHE;
6786 ptr++;
6787 }
6788 else
6789 {
6790 terminator = CHAR_NULL;
6791 if (*ptr == CHAR_MINUS || *ptr == CHAR_PLUS) refsign = *ptr++;
6792 else if (IS_DIGIT(*ptr)) refsign = 0;
6793 }
6794
6795
6796
6797 if (refsign >= 0)
6798 {
6799 while (IS_DIGIT(*ptr))
6800 {
6801 if (recno > INT_MAX / 10 - 1)
6802 {
6803 while (IS_DIGIT(*ptr)) ptr++;
6804 *errorcodeptr = ERR61;
6805 goto FAILED;
6806 }
6807 recno = recno * 10 + (int)(*ptr - CHAR_0);
6808 ptr++;
6809 }
6810 }
6811
6812
6813
6814
6815
6816
6817 else
6818 {
6819 if (IS_DIGIT(*ptr))
6820 {
6821 *errorcodeptr = ERR84;
6822 goto FAILED;
6823 }
6824 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0)
6825 {
6826 *errorcodeptr = ERR28;
6827 goto FAILED;
6828 }
6829 name = ptr++;
6830 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0)
6831 {
6832 ptr++;
6833 }
6834 namelen = (int)(ptr - name);
6835 if (lengthptr != NULL) skipbytes += IMM2_SIZE;
6836 }
6837
6838
6839
6840 if ((terminator > 0 && *ptr++ != (pcre_uchar)terminator) ||
6841 *ptr++ != CHAR_RIGHT_PARENTHESIS)
6842 {
6843 ptr--;
6844 *errorcodeptr = ERR26;
6845 goto FAILED;
6846 }
6847
6848
6849
6850 if (lengthptr != NULL) break;
6851
6852
6853
6854
6855
6856 if (refsign >= 0)
6857 {
6858 if (recno <= 0)
6859 {
6860 *errorcodeptr = ERR35;
6861 goto FAILED;
6862 }
6863 if (refsign != 0) recno = (refsign == CHAR_MINUS)?
6864 cd->bracount - recno + 1 : recno + cd->bracount;
6865 if (recno <= 0 || recno > cd->final_bracount)
6866 {
6867 *errorcodeptr = ERR15;
6868 goto FAILED;
6869 }
6870 PUT2(code, 2+LINK_SIZE, recno);
6871 if (recno > cd->top_backref) cd->top_backref = recno;
6872 break;
6873 }
6874
6875
6876
6877 slot = cd->name_table;
6878 for (i = 0; i < cd->names_found; i++)
6879 {
6880 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) == 0) break;
6881 slot += cd->name_entry_size;
6882 }
6883
6884
6885
6886
6887
6888
6889 if (i < cd->names_found)
6890 {
6891 int offset = i++;
6892 int count = 1;
6893 recno = GET2(slot, 0);
6894 if (recno > cd->top_backref) cd->top_backref = recno;
6895 for (; i < cd->names_found; i++)
6896 {
6897 slot += cd->name_entry_size;
6898 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) != 0 ||
6899 (slot+IMM2_SIZE)[namelen] != 0) break;
6900 count++;
6901 }
6902
6903 if (count > 1)
6904 {
6905 PUT2(code, 2+LINK_SIZE, offset);
6906 PUT2(code, 2+LINK_SIZE+IMM2_SIZE, count);
6907 skipbytes += IMM2_SIZE;
6908 code[1+LINK_SIZE]++;
6909 }
6910 else
6911 {
6912 PUT2(code, 2+LINK_SIZE, recno);
6913 }
6914 }
6915
6916
6917
6918
6919
6920
6921
6922 else if (terminator != CHAR_NULL)
6923 {
6924 *errorcodeptr = ERR15;
6925 goto FAILED;
6926 }
6927
6928
6929
6930
6931 else if (*name == CHAR_R)
6932 {
6933 recno = 0;
6934 for (i = 1; i < namelen; i++)
6935 {
6936 if (!IS_DIGIT(name[i]))
6937 {
6938 *errorcodeptr = ERR15;
6939 goto FAILED;
6940 }
6941 if (recno > INT_MAX / 10 - 1)
6942 {
6943 *errorcodeptr = ERR61;
6944 goto FAILED;
6945 }
6946 recno = recno * 10 + name[i] - CHAR_0;
6947 }
6948 if (recno == 0) recno = RREF_ANY;
6949 code[1+LINK_SIZE] = OP_RREF;
6950 PUT2(code, 2+LINK_SIZE, recno);
6951 }
6952
6953
6954
6955
6956 else if (namelen == 6 && STRNCMP_UC_C8(name, STRING_DEFINE, 6) == 0)
6957 {
6958 code[1+LINK_SIZE] = OP_DEF;
6959 skipbytes = 1;
6960 }
6961
6962
6963
6964 else
6965 {
6966 *errorcodeptr = ERR15;
6967 goto FAILED;
6968 }
6969 break;
6970
6971
6972
6973 case CHAR_EQUALS_SIGN:
6974 bravalue = OP_ASSERT;
6975 cd->assert_depth += 1;
6976 ptr++;
6977 break;
6978
6979
6980
6981
6982
6983
6984
6985
6986 case CHAR_EXCLAMATION_MARK:
6987 ptr++;
6988 if (*ptr == CHAR_RIGHT_PARENTHESIS && ptr[1] != CHAR_ASTERISK &&
6989 ptr[1] != CHAR_PLUS && ptr[1] != CHAR_QUESTION_MARK &&
6990 (ptr[1] != CHAR_LEFT_CURLY_BRACKET || !is_counted_repeat(ptr+2)))
6991 {
6992 *code++ = OP_FAIL;
6993 previous = NULL;
6994 continue;
6995 }
6996 bravalue = OP_ASSERT_NOT;
6997 cd->assert_depth += 1;
6998 break;
6999
7000
7001
7002 case CHAR_LESS_THAN_SIGN:
7003 switch (ptr[1])
7004 {
7005 case CHAR_EQUALS_SIGN:
7006 bravalue = OP_ASSERTBACK;
7007 cd->assert_depth += 1;
7008 ptr += 2;
7009 break;
7010
7011 case CHAR_EXCLAMATION_MARK:
7012 bravalue = OP_ASSERTBACK_NOT;
7013 cd->assert_depth += 1;
7014 ptr += 2;
7015 break;
7016
7017 default:
7018 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0)
7019 goto DEFINE_NAME;
7020 ptr++;
7021 *errorcodeptr = ERR24;
7022 goto FAILED;
7023 }
7024 break;
7025
7026
7027
7028 case CHAR_GREATER_THAN_SIGN:
7029 bravalue = OP_ONCE;
7030 ptr++;
7031 break;
7032
7033
7034
7035 case CHAR_C:
7036 previous_callout = code;
7037 after_manual_callout = 1;
7038 *code++ = OP_CALLOUT;
7039 {
7040 int n = 0;
7041 ptr++;
7042 while(IS_DIGIT(*ptr))
7043 n = n * 10 + *ptr++ - CHAR_0;
7044 if (*ptr != CHAR_RIGHT_PARENTHESIS)
7045 {
7046 *errorcodeptr = ERR39;
7047 goto FAILED;
7048 }
7049 if (n > 255)
7050 {
7051 *errorcodeptr = ERR38;
7052 goto FAILED;
7053 }
7054 *code++ = n;
7055 PUT(code, 0, (int)(ptr - cd->start_pattern + 1));
7056 PUT(code, LINK_SIZE, 0);
7057 code += 2 * LINK_SIZE;
7058 }
7059 previous = NULL;
7060 continue;
7061
7062
7063
7064 case CHAR_P:
7065 if (*(++ptr) == CHAR_EQUALS_SIGN ||
7066 *ptr == CHAR_GREATER_THAN_SIGN)
7067 {
7068 is_recurse = *ptr == CHAR_GREATER_THAN_SIGN;
7069 terminator = CHAR_RIGHT_PARENTHESIS;
7070 goto NAMED_REF_OR_RECURSE;
7071 }
7072 else if (*ptr != CHAR_LESS_THAN_SIGN)
7073 {
7074 *errorcodeptr = ERR41;
7075 goto FAILED;
7076 }
7077
7078
7079
7080
7081 DEFINE_NAME:
7082 case CHAR_APOSTROPHE:
7083 terminator = (*ptr == CHAR_LESS_THAN_SIGN)?
7084 CHAR_GREATER_THAN_SIGN : CHAR_APOSTROPHE;
7085 name = ++ptr;
7086 if (IS_DIGIT(*ptr))
7087 {
7088 *errorcodeptr = ERR84;
7089 goto FAILED;
7090 }
7091 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++;
7092 namelen = (int)(ptr - name);
7093
7094
7095
7096
7097
7098
7099
7100 if (lengthptr != NULL)
7101 {
7102 named_group *ng;
7103 pcre_uint32 number = cd->bracount + 1;
7104
7105 if (*ptr != (pcre_uchar)terminator)
7106 {
7107 *errorcodeptr = ERR42;
7108 goto FAILED;
7109 }
7110
7111 if (cd->names_found >= MAX_NAME_COUNT)
7112 {
7113 *errorcodeptr = ERR49;
7114 goto FAILED;
7115 }
7116
7117 if (namelen + IMM2_SIZE + 1 > cd->name_entry_size)
7118 {
7119 cd->name_entry_size = namelen + IMM2_SIZE + 1;
7120 if (namelen > MAX_NAME_SIZE)
7121 {
7122 *errorcodeptr = ERR48;
7123 goto FAILED;
7124 }
7125 }
7126
7127
7128
7129
7130
7131
7132
7133
7134 ng = cd->named_groups;
7135 for (i = 0; i < cd->names_found; i++, ng++)
7136 {
7137 if (namelen == ng->length &&
7138 STRNCMP_UC_UC(name, ng->name, namelen) == 0)
7139 {
7140 if (ng->number == number) break;
7141 if ((options & PCRE_DUPNAMES) == 0)
7142 {
7143 *errorcodeptr = ERR43;
7144 goto FAILED;
7145 }
7146 cd->dupnames = TRUE;
7147 }
7148 else if (ng->number == number)
7149 {
7150 *errorcodeptr = ERR65;
7151 goto FAILED;
7152 }
7153 }
7154
7155 if (i >= cd->names_found)
7156 {
7157
7158
7159 if (cd->names_found >= cd->named_group_list_size)
7160 {
7161 int newsize = cd->named_group_list_size * 2;
7162 named_group *newspace = (PUBL(malloc))
7163 (newsize * sizeof(named_group));
7164
7165 if (newspace == NULL)
7166 {
7167 *errorcodeptr = ERR21;
7168 goto FAILED;
7169 }
7170
7171 memcpy(newspace, cd->named_groups,
7172 cd->named_group_list_size * sizeof(named_group));
7173 if (cd->named_group_list_size > NAMED_GROUP_LIST_SIZE)
7174 (PUBL(free))((void *)cd->named_groups);
7175 cd->named_groups = newspace;
7176 cd->named_group_list_size = newsize;
7177 }
7178
7179 cd->named_groups[cd->names_found].name = name;
7180 cd->named_groups[cd->names_found].length = namelen;
7181 cd->named_groups[cd->names_found].number = number;
7182 cd->names_found++;
7183 }
7184 }
7185
7186 ptr++;
7187 goto NUMBERED_GROUP;
7188
7189
7190
7191 case CHAR_AMPERSAND:
7192 terminator = CHAR_RIGHT_PARENTHESIS;
7193 is_recurse = TRUE;
7194
7195
7196
7197
7198
7199
7200
7201
7202 NAMED_REF_OR_RECURSE:
7203 name = ++ptr;
7204 if (IS_DIGIT(*ptr))
7205 {
7206 *errorcodeptr = ERR84;
7207 goto FAILED;
7208 }
7209 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++;
7210 namelen = (int)(ptr - name);
7211
7212
7213
7214
7215
7216
7217
7218
7219 if (lengthptr != NULL)
7220 {
7221 named_group *ng;
7222 recno = 0;
7223
7224 if (namelen == 0)
7225 {
7226 *errorcodeptr = ERR62;
7227 goto FAILED;
7228 }
7229 if (*ptr != (pcre_uchar)terminator)
7230 {
7231 *errorcodeptr = ERR42;
7232 goto FAILED;
7233 }
7234 if (namelen > MAX_NAME_SIZE)
7235 {
7236 *errorcodeptr = ERR48;
7237 goto FAILED;
7238 }
7239
7240
7241
7242 if (!is_recurse) cd->namedrefcount++;
7243
7244
7245
7246
7247
7248 *lengthptr += IMM2_SIZE;
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261 *lengthptr += 2 + 2*LINK_SIZE;
7262
7263
7264
7265
7266
7267
7268
7269
7270 if (cd->dupgroups) *lengthptr += 4 + 4*LINK_SIZE;
7271
7272
7273
7274
7275
7276
7277 else
7278 {
7279 ng = cd->named_groups;
7280 for (i = 0; i < cd->names_found; i++, ng++)
7281 {
7282 if (namelen == ng->length &&
7283 STRNCMP_UC_UC(name, ng->name, namelen) == 0)
7284 {
7285 open_capitem *oc;
7286 recno = ng->number;
7287 if (is_recurse) break;
7288 for (oc = cd->open_caps; oc != NULL; oc = oc->next)
7289 {
7290 if (oc->number == recno)
7291 {
7292 oc->flag = TRUE;
7293 break;
7294 }
7295 }
7296 }
7297 }
7298 }
7299 }
7300
7301
7302
7303
7304
7305
7306 else
7307 {
7308 slot = cd->name_table;
7309 for (i = 0; i < cd->names_found; i++)
7310 {
7311 if (STRNCMP_UC_UC(name, slot+IMM2_SIZE, namelen) == 0 &&
7312 slot[IMM2_SIZE+namelen] == 0)
7313 break;
7314 slot += cd->name_entry_size;
7315 }
7316
7317 if (i < cd->names_found)
7318 {
7319 recno = GET2(slot, 0);
7320 }
7321 else
7322 {
7323 *errorcodeptr = ERR15;
7324 goto FAILED;
7325 }
7326 }
7327
7328
7329
7330
7331 if (is_recurse) goto HANDLE_RECURSION;
7332
7333
7334
7335
7336 if (lengthptr == NULL && cd->dupnames)
7337 {
7338 int count = 1;
7339 unsigned int index = i;
7340 pcre_uchar *cslot = slot + cd->name_entry_size;
7341
7342 for (i++; i < cd->names_found; i++)
7343 {
7344 if (STRCMP_UC_UC(slot + IMM2_SIZE, cslot + IMM2_SIZE) != 0) break;
7345 count++;
7346 cslot += cd->name_entry_size;
7347 }
7348
7349 if (count > 1)
7350 {
7351 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
7352 previous = code;
7353 item_hwm_offset = cd->hwm - cd->start_workspace;
7354 *code++ = ((options & PCRE_CASELESS) != 0)? OP_DNREFI : OP_DNREF;
7355 PUT2INC(code, 0, index);
7356 PUT2INC(code, 0, count);
7357
7358
7359
7360 for (; slot < cslot; slot += cd->name_entry_size)
7361 {
7362 open_capitem *oc;
7363 recno = GET2(slot, 0);
7364 cd->backref_map |= (recno < 32)? (1 << recno) : 1;
7365 if (recno > cd->top_backref) cd->top_backref = recno;
7366
7367
7368
7369
7370
7371 for (oc = cd->open_caps; oc != NULL; oc = oc->next)
7372 {
7373 if (oc->number == recno)
7374 {
7375 oc->flag = TRUE;
7376 break;
7377 }
7378 }
7379 }
7380
7381 continue;
7382 }
7383 }
7384
7385
7386
7387 goto HANDLE_REFERENCE;
7388
7389
7390
7391 case CHAR_R:
7392 recno = 0;
7393 if (*(++ptr) != CHAR_RIGHT_PARENTHESIS)
7394 {
7395 *errorcodeptr = ERR29;
7396 goto FAILED;
7397 }
7398 goto HANDLE_RECURSION;
7399
7400
7401
7402 case CHAR_MINUS: case CHAR_PLUS:
7403 case CHAR_0: case CHAR_1: case CHAR_2: case CHAR_3: case CHAR_4:
7404 case CHAR_5: case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9:
7405 {
7406 const pcre_uchar *called;
7407 terminator = CHAR_RIGHT_PARENTHESIS;
7408
7409
7410
7411
7412
7413
7414
7415 HANDLE_NUMERICAL_RECURSION:
7416
7417 if ((refsign = *ptr) == CHAR_PLUS)
7418 {
7419 ptr++;
7420 if (!IS_DIGIT(*ptr))
7421 {
7422 *errorcodeptr = ERR63;
7423 goto FAILED;
7424 }
7425 }
7426 else if (refsign == CHAR_MINUS)
7427 {
7428 if (!IS_DIGIT(ptr[1]))
7429 goto OTHER_CHAR_AFTER_QUERY;
7430 ptr++;
7431 }
7432
7433 recno = 0;
7434 while(IS_DIGIT(*ptr))
7435 {
7436 if (recno > INT_MAX / 10 - 1)
7437 {
7438 while (IS_DIGIT(*ptr)) ptr++;
7439 *errorcodeptr = ERR61;
7440 goto FAILED;
7441 }
7442 recno = recno * 10 + *ptr++ - CHAR_0;
7443 }
7444
7445 if (*ptr != (pcre_uchar)terminator)
7446 {
7447 *errorcodeptr = ERR29;
7448 goto FAILED;
7449 }
7450
7451 if (refsign == CHAR_MINUS)
7452 {
7453 if (recno == 0)
7454 {
7455 *errorcodeptr = ERR58;
7456 goto FAILED;
7457 }
7458 recno = cd->bracount - recno + 1;
7459 if (recno <= 0)
7460 {
7461 *errorcodeptr = ERR15;
7462 goto FAILED;
7463 }
7464 }
7465 else if (refsign == CHAR_PLUS)
7466 {
7467 if (recno == 0)
7468 {
7469 *errorcodeptr = ERR58;
7470 goto FAILED;
7471 }
7472 recno += cd->bracount;
7473 }
7474
7475
7476
7477 HANDLE_RECURSION:
7478
7479 previous = code;
7480 item_hwm_offset = cd->hwm - cd->start_workspace;
7481 called = cd->start_code;
7482
7483
7484
7485
7486
7487
7488
7489
7490 if (lengthptr == NULL)
7491 {
7492 *code = OP_END;
7493 if (recno != 0)
7494 called = PRIV(find_bracket)(cd->start_code, utf, recno);
7495
7496
7497
7498 if (called == NULL)
7499 {
7500 if (recno > cd->final_bracount)
7501 {
7502 *errorcodeptr = ERR15;
7503 goto FAILED;
7504 }
7505
7506
7507
7508
7509
7510 called = cd->start_code + recno;
7511 if (cd->hwm >= cd->start_workspace + cd->workspace_size -
7512 WORK_SIZE_SAFETY_MARGIN)
7513 {
7514 *errorcodeptr = expand_workspace(cd);
7515 if (*errorcodeptr != 0) goto FAILED;
7516 }
7517 PUTINC(cd->hwm, 0, (int)(code + 1 - cd->start_code));
7518 }
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529 else if (GET(called, 1) == 0 && cond_depth <= 0 &&
7530 could_be_empty(called, code, bcptr, utf, cd))
7531 {
7532 *errorcodeptr = ERR40;
7533 goto FAILED;
7534 }
7535 }
7536
7537
7538
7539
7540
7541 *code = OP_RECURSE;
7542 PUT(code, 1, (int)(called - cd->start_code));
7543 code += 1 + LINK_SIZE;
7544 groupsetfirstchar = FALSE;
7545 }
7546
7547
7548
7549 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
7550 continue;
7551
7552
7553
7554 default:
7555 OTHER_CHAR_AFTER_QUERY:
7556 set = unset = 0;
7557 optset = &set;
7558
7559 while (*ptr != CHAR_RIGHT_PARENTHESIS && *ptr != CHAR_COLON)
7560 {
7561 switch (*ptr++)
7562 {
7563 case CHAR_MINUS: optset = &unset; break;
7564
7565 case CHAR_J:
7566 *optset |= PCRE_DUPNAMES;
7567 cd->external_flags |= PCRE_JCHANGED;
7568 break;
7569
7570 case CHAR_i: *optset |= PCRE_CASELESS; break;
7571 case CHAR_m: *optset |= PCRE_MULTILINE; break;
7572 case CHAR_s: *optset |= PCRE_DOTALL; break;
7573 case CHAR_x: *optset |= PCRE_EXTENDED; break;
7574 case CHAR_U: *optset |= PCRE_UNGREEDY; break;
7575 case CHAR_X: *optset |= PCRE_EXTRA; break;
7576
7577 default: *errorcodeptr = ERR12;
7578 ptr--;
7579 goto FAILED;
7580 }
7581 }
7582
7583
7584
7585 newoptions = (options | set) & (~unset);
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608 if (*ptr == CHAR_RIGHT_PARENTHESIS)
7609 {
7610 if (code == cd->start_code + 1 + LINK_SIZE &&
7611 (lengthptr == NULL || *lengthptr == 2 + 2*LINK_SIZE))
7612 {
7613 cd->external_options = newoptions;
7614 }
7615 else
7616 {
7617 greedy_default = ((newoptions & PCRE_UNGREEDY) != 0);
7618 greedy_non_default = greedy_default ^ 1;
7619 req_caseopt = ((newoptions & PCRE_CASELESS) != 0)? REQ_CASELESS:0;
7620 }
7621
7622
7623
7624
7625 *optionsptr = options = newoptions;
7626 previous = NULL;
7627 continue;
7628 }
7629
7630
7631
7632
7633
7634
7635 bravalue = OP_BRA;
7636 ptr++;
7637 }
7638 }
7639
7640
7641
7642
7643
7644 else if ((options & PCRE_NO_AUTO_CAPTURE) != 0)
7645 {
7646 bravalue = OP_BRA;
7647 }
7648
7649
7650
7651 else
7652 {
7653 NUMBERED_GROUP:
7654 cd->bracount += 1;
7655 PUT2(code, 1+LINK_SIZE, cd->bracount);
7656 skipbytes = IMM2_SIZE;
7657 }
7658
7659
7660
7661
7662 if ((cd->parens_depth += 1) > PARENS_NEST_LIMIT)
7663 {
7664 *errorcodeptr = ERR82;
7665 goto FAILED;
7666 }
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676 if (bravalue >= OP_ASSERT && bravalue <= OP_ASSERTBACK_NOT &&
7677 cd->iscondassert)
7678 {
7679 previous = NULL;
7680 cd->iscondassert = FALSE;
7681 }
7682 else
7683 {
7684 previous = code;
7685 item_hwm_offset = cd->hwm - cd->start_workspace;
7686 }
7687
7688 *code = bravalue;
7689 tempcode = code;
7690 tempreqvary = cd->req_varyopt;
7691 tempbracount = cd->bracount;
7692 length_prevgroup = 0;
7693
7694 if (!compile_regex(
7695 newoptions,
7696 &tempcode,
7697 &ptr,
7698 errorcodeptr,
7699 (bravalue == OP_ASSERTBACK ||
7700 bravalue == OP_ASSERTBACK_NOT),
7701 reset_bracount,
7702 skipbytes,
7703 cond_depth +
7704 ((bravalue == OP_COND)?1:0),
7705 &subfirstchar,
7706 &subfirstcharflags,
7707 &subreqchar,
7708 &subreqcharflags,
7709 bcptr,
7710 cd,
7711 (lengthptr == NULL)? NULL :
7712 &length_prevgroup
7713 ))
7714 goto FAILED;
7715
7716 cd->parens_depth -= 1;
7717
7718
7719
7720
7721 if (bravalue == OP_ONCE && cd->bracount <= tempbracount)
7722 *code = OP_ONCE_NC;
7723
7724 if (bravalue >= OP_ASSERT && bravalue <= OP_ASSERTBACK_NOT)
7725 cd->assert_depth -= 1;
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736 if (bravalue == OP_COND && lengthptr == NULL)
7737 {
7738 pcre_uchar *tc = code;
7739 int condcount = 0;
7740
7741 do {
7742 condcount++;
7743 tc += GET(tc,1);
7744 }
7745 while (*tc != OP_KET);
7746
7747
7748
7749
7750 if (code[LINK_SIZE+1] == OP_DEF)
7751 {
7752 if (condcount > 1)
7753 {
7754 *errorcodeptr = ERR54;
7755 goto FAILED;
7756 }
7757 bravalue = OP_DEF;
7758 }
7759
7760
7761
7762
7763
7764 else
7765 {
7766 if (condcount > 2)
7767 {
7768 *errorcodeptr = ERR27;
7769 goto FAILED;
7770 }
7771 if (condcount == 1) subfirstcharflags = subreqcharflags = REQ_NONE;
7772 }
7773 }
7774
7775
7776
7777 if (*ptr != CHAR_RIGHT_PARENTHESIS)
7778 {
7779 *errorcodeptr = ERR14;
7780 goto FAILED;
7781 }
7782
7783
7784
7785
7786
7787
7788 if (lengthptr != NULL)
7789 {
7790 if (OFLOW_MAX - *lengthptr < length_prevgroup - 2 - 2*LINK_SIZE)
7791 {
7792 *errorcodeptr = ERR20;
7793 goto FAILED;
7794 }
7795 *lengthptr += length_prevgroup - 2 - 2*LINK_SIZE;
7796 code++;
7797 PUTINC(code, 0, 1 + LINK_SIZE);
7798 *code++ = OP_KET;
7799 PUTINC(code, 0, 1 + LINK_SIZE);
7800 break;
7801 }
7802
7803
7804
7805 code = tempcode;
7806
7807
7808
7809
7810 if (bravalue == OP_DEF) break;
7811
7812
7813
7814
7815
7816
7817
7818
7819 zeroreqchar = reqchar;
7820 zeroreqcharflags = reqcharflags;
7821 zerofirstchar = firstchar;
7822 zerofirstcharflags = firstcharflags;
7823 groupsetfirstchar = FALSE;
7824
7825 if (bravalue >= OP_ONCE)
7826 {
7827
7828
7829
7830
7831
7832
7833 if (firstcharflags == REQ_UNSET)
7834 {
7835 if (subfirstcharflags >= 0)
7836 {
7837 firstchar = subfirstchar;
7838 firstcharflags = subfirstcharflags;
7839 groupsetfirstchar = TRUE;
7840 }
7841 else firstcharflags = REQ_NONE;
7842 zerofirstcharflags = REQ_NONE;
7843 }
7844
7845
7846
7847
7848
7849 else if (subfirstcharflags >= 0 && subreqcharflags < 0)
7850 {
7851 subreqchar = subfirstchar;
7852 subreqcharflags = subfirstcharflags | tempreqvary;
7853 }
7854
7855
7856
7857
7858 if (subreqcharflags >= 0)
7859 {
7860 reqchar = subreqchar;
7861 reqcharflags = subreqcharflags;
7862 }
7863 }
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873 else if (bravalue == OP_ASSERT && subreqcharflags >= 0)
7874 {
7875 reqchar = subreqchar;
7876 reqcharflags = subreqcharflags;
7877 }
7878 break;
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890 case CHAR_BACKSLASH:
7891 tempptr = ptr;
7892 escape = check_escape(&ptr, &ec, errorcodeptr, cd->bracount, options, FALSE);
7893 if (*errorcodeptr != 0) goto FAILED;
7894
7895 if (escape == 0)
7896 c = ec;
7897 else
7898 {
7899 if (escape == ESC_Q)
7900 {
7901 if (ptr[1] == CHAR_BACKSLASH && ptr[2] == CHAR_E)
7902 ptr += 2;
7903 else inescq = TRUE;
7904 continue;
7905 }
7906
7907 if (escape == ESC_E) continue;
7908
7909
7910
7911
7912 if (firstcharflags == REQ_UNSET && escape > ESC_b && escape < ESC_Z)
7913 firstcharflags = REQ_NONE;
7914
7915
7916
7917 zerofirstchar = firstchar;
7918 zerofirstcharflags = firstcharflags;
7919 zeroreqchar = reqchar;
7920 zeroreqcharflags = reqcharflags;
7921
7922
7923
7924
7925
7926
7927
7928
7929 if (escape == ESC_g)
7930 {
7931 const pcre_uchar *p;
7932 pcre_uint32 cf;
7933
7934 item_hwm_offset = cd->hwm - cd->start_workspace;
7935 terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)?
7936 CHAR_GREATER_THAN_SIGN : CHAR_APOSTROPHE;
7937
7938
7939
7940
7941
7942
7943 skipbytes = 0;
7944 reset_bracount = FALSE;
7945
7946
7947
7948 cf = ptr[1];
7949 if (cf != CHAR_PLUS && cf != CHAR_MINUS && !IS_DIGIT(cf))
7950 {
7951 is_recurse = TRUE;
7952 goto NAMED_REF_OR_RECURSE;
7953 }
7954
7955
7956
7957
7958 p = ptr + 2;
7959 while (IS_DIGIT(*p)) p++;
7960 if (*p != (pcre_uchar)terminator)
7961 {
7962 *errorcodeptr = ERR57;
7963 goto FAILED;
7964 }
7965 ptr++;
7966 goto HANDLE_NUMERICAL_RECURSION;
7967 }
7968
7969
7970
7971
7972 if (escape == ESC_k)
7973 {
7974 if ((ptr[1] != CHAR_LESS_THAN_SIGN &&
7975 ptr[1] != CHAR_APOSTROPHE && ptr[1] != CHAR_LEFT_CURLY_BRACKET))
7976 {
7977 *errorcodeptr = ERR69;
7978 goto FAILED;
7979 }
7980 is_recurse = FALSE;
7981 terminator = (*(++ptr) == CHAR_LESS_THAN_SIGN)?
7982 CHAR_GREATER_THAN_SIGN : (*ptr == CHAR_APOSTROPHE)?
7983 CHAR_APOSTROPHE : CHAR_RIGHT_CURLY_BRACKET;
7984 goto NAMED_REF_OR_RECURSE;
7985 }
7986
7987
7988
7989
7990
7991 if (escape < 0)
7992 {
7993 open_capitem *oc;
7994 recno = -escape;
7995
7996
7997
7998
7999 HANDLE_REFERENCE:
8000 if (firstcharflags == REQ_UNSET) firstcharflags = REQ_NONE;
8001 previous = code;
8002 item_hwm_offset = cd->hwm - cd->start_workspace;
8003 *code++ = ((options & PCRE_CASELESS) != 0)? OP_REFI : OP_REF;
8004 PUT2INC(code, 0, recno);
8005 cd->backref_map |= (recno < 32)? (1 << recno) : 1;
8006 if (recno > cd->top_backref) cd->top_backref = recno;
8007
8008
8009
8010
8011
8012 for (oc = cd->open_caps; oc != NULL; oc = oc->next)
8013 {
8014 if (oc->number == recno)
8015 {
8016 oc->flag = TRUE;
8017 break;
8018 }
8019 }
8020 }
8021
8022
8023
8024 #ifdef SUPPORT_UCP
8025 else if (escape == ESC_P || escape == ESC_p)
8026 {
8027 BOOL negated;
8028 unsigned int ptype = 0, pdata = 0;
8029 if (!get_ucp(&ptr, &negated, &ptype, &pdata, errorcodeptr))
8030 goto FAILED;
8031 previous = code;
8032 item_hwm_offset = cd->hwm - cd->start_workspace;
8033 *code++ = ((escape == ESC_p) != negated)? OP_PROP : OP_NOTPROP;
8034 *code++ = ptype;
8035 *code++ = pdata;
8036 }
8037 #else
8038
8039
8040
8041
8042 else if (escape == ESC_X || escape == ESC_P || escape == ESC_p)
8043 {
8044 *errorcodeptr = ERR45;
8045 goto FAILED;
8046 }
8047 #endif
8048
8049
8050
8051
8052
8053
8054
8055 else
8056 {
8057 if ((escape == ESC_b || escape == ESC_B || escape == ESC_A) &&
8058 cd->max_lookbehind == 0)
8059 cd->max_lookbehind = 1;
8060 #ifdef SUPPORT_UCP
8061 if (escape >= ESC_DU && escape <= ESC_wu)
8062 {
8063 nestptr = ptr + 1;
8064 ptr = substitutes[escape - ESC_DU] - 1;
8065 }
8066 else
8067 #endif
8068
8069
8070
8071 {
8072 previous = (escape > ESC_b && escape < ESC_Z)? code : NULL;
8073 item_hwm_offset = cd->hwm - cd->start_workspace;
8074 *code++ = (!utf && escape == ESC_C)? OP_ALLANY : escape;
8075 }
8076 }
8077 continue;
8078 }
8079
8080
8081
8082
8083
8084 #if defined SUPPORT_UTF && !defined COMPILE_PCRE32
8085 if (utf && c > MAX_VALUE_FOR_SINGLE_CHAR)
8086 mclength = PRIV(ord2utf)(c, mcbuffer);
8087 else
8088 #endif
8089
8090 {
8091 mcbuffer[0] = c;
8092 mclength = 1;
8093 }
8094 goto ONE_CHAR;
8095
8096
8097
8098
8099
8100
8101
8102 default:
8103 NORMAL_CHAR:
8104 mclength = 1;
8105 mcbuffer[0] = c;
8106
8107 #ifdef SUPPORT_UTF
8108 if (utf && HAS_EXTRALEN(c))
8109 ACROSSCHAR(TRUE, ptr[1], mcbuffer[mclength++] = *(++ptr));
8110 #endif
8111
8112
8113
8114
8115 ONE_CHAR:
8116 previous = code;
8117 item_hwm_offset = cd->hwm - cd->start_workspace;
8118
8119
8120
8121
8122
8123 #ifdef SUPPORT_UCP
8124 if (utf && (options & PCRE_CASELESS) != 0)
8125 {
8126 GETCHAR(c, mcbuffer);
8127 if ((c = UCD_CASESET(c)) != 0)
8128 {
8129 *code++ = OP_PROP;
8130 *code++ = PT_CLIST;
8131 *code++ = c;
8132 if (firstcharflags == REQ_UNSET)
8133 firstcharflags = zerofirstcharflags = REQ_NONE;
8134 break;
8135 }
8136 }
8137 #endif
8138
8139
8140
8141 *code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARI : OP_CHAR;
8142 for (c = 0; c < mclength; c++) *code++ = mcbuffer[c];
8143
8144
8145
8146 if (mcbuffer[0] == CHAR_CR || mcbuffer[0] == CHAR_NL)
8147 cd->external_flags |= PCRE_HASCRORLF;
8148
8149
8150
8151
8152
8153
8154 if (firstcharflags == REQ_UNSET)
8155 {
8156 zerofirstcharflags = REQ_NONE;
8157 zeroreqchar = reqchar;
8158 zeroreqcharflags = reqcharflags;
8159
8160
8161
8162
8163 if (mclength == 1 || req_caseopt == 0)
8164 {
8165 firstchar = mcbuffer[0] | req_caseopt;
8166 firstchar = mcbuffer[0];
8167 firstcharflags = req_caseopt;
8168
8169 if (mclength != 1)
8170 {
8171 reqchar = code[-1];
8172 reqcharflags = cd->req_varyopt;
8173 }
8174 }
8175 else firstcharflags = reqcharflags = REQ_NONE;
8176 }
8177
8178
8179
8180
8181 else
8182 {
8183 zerofirstchar = firstchar;
8184 zerofirstcharflags = firstcharflags;
8185 zeroreqchar = reqchar;
8186 zeroreqcharflags = reqcharflags;
8187 if (mclength == 1 || req_caseopt == 0)
8188 {
8189 reqchar = code[-1];
8190 reqcharflags = req_caseopt | cd->req_varyopt;
8191 }
8192 }
8193
8194 break;
8195 }
8196 }
8197
8198
8199
8200
8201
8202
8203 FAILED:
8204 *ptrptr = ptr;
8205 return FALSE;
8206 }
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
8235
8236
8237
8238
8239
8240
8241
8242 static BOOL
8243 compile_regex(int options, pcre_uchar **codeptr, const pcre_uchar **ptrptr,
8244 int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes,
8245 int cond_depth,
8246 pcre_uint32 *firstcharptr, pcre_int32 *firstcharflagsptr,
8247 pcre_uint32 *reqcharptr, pcre_int32 *reqcharflagsptr,
8248 branch_chain *bcptr, compile_data *cd, int *lengthptr)
8249 {
8250 const pcre_uchar *ptr = *ptrptr;
8251 pcre_uchar *code = *codeptr;
8252 pcre_uchar *last_branch = code;
8253 pcre_uchar *start_bracket = code;
8254 pcre_uchar *reverse_count = NULL;
8255 open_capitem capitem;
8256 int capnumber = 0;
8257 pcre_uint32 firstchar, reqchar;
8258 pcre_int32 firstcharflags, reqcharflags;
8259 pcre_uint32 branchfirstchar, branchreqchar;
8260 pcre_int32 branchfirstcharflags, branchreqcharflags;
8261 int length;
8262 unsigned int orig_bracount;
8263 unsigned int max_bracount;
8264 branch_chain bc;
8265 size_t save_hwm_offset;
8266
8267
8268
8269 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)())
8270 {
8271 *errorcodeptr= ERR85;
8272 return FALSE;
8273 }
8274
8275
8276
8277 bc.outer = bcptr;
8278 bc.current_branch = code;
8279
8280 firstchar = reqchar = 0;
8281 firstcharflags = reqcharflags = REQ_UNSET;
8282
8283 save_hwm_offset = cd->hwm - cd->start_workspace;
8284
8285
8286
8287
8288
8289
8290
8291
8292 length = 2 + 2*LINK_SIZE + skipbytes;
8293
8294
8295
8296
8297
8298
8299
8300
8301
8302
8303
8304
8305 if (*code == OP_CBRA)
8306 {
8307 capnumber = GET2(code, 1 + LINK_SIZE);
8308 capitem.number = capnumber;
8309 capitem.next = cd->open_caps;
8310 capitem.flag = FALSE;
8311 cd->open_caps = &capitem;
8312 }
8313
8314
8315
8316 PUT(code, 1, 0);
8317 code += 1 + LINK_SIZE + skipbytes;
8318
8319
8320
8321 orig_bracount = max_bracount = cd->bracount;
8322 for (;;)
8323 {
8324
8325
8326
8327 if (reset_bracount) cd->bracount = orig_bracount;
8328
8329
8330
8331 if (lookbehind)
8332 {
8333 *code++ = OP_REVERSE;
8334 reverse_count = code;
8335 PUTINC(code, 0, 0);
8336 length += 1 + LINK_SIZE;
8337 }
8338
8339
8340
8341
8342 if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstchar,
8343 &branchfirstcharflags, &branchreqchar, &branchreqcharflags, &bc,
8344 cond_depth, cd, (lengthptr == NULL)? NULL : &length))
8345 {
8346 *ptrptr = ptr;
8347 return FALSE;
8348 }
8349
8350
8351
8352
8353 if (cd->bracount > max_bracount) max_bracount = cd->bracount;
8354
8355
8356
8357 if (lengthptr == NULL)
8358 {
8359
8360
8361
8362 if (*last_branch != OP_ALT)
8363 {
8364 firstchar = branchfirstchar;
8365 firstcharflags = branchfirstcharflags;
8366 reqchar = branchreqchar;
8367 reqcharflags = branchreqcharflags;
8368 }
8369
8370
8371
8372
8373
8374
8375 else
8376 {
8377
8378
8379
8380
8381 if (firstcharflags >= 0 &&
8382 (firstcharflags != branchfirstcharflags || firstchar != branchfirstchar))
8383 {
8384 if (reqcharflags < 0)
8385 {
8386 reqchar = firstchar;
8387 reqcharflags = firstcharflags;
8388 }
8389 firstcharflags = REQ_NONE;
8390 }
8391
8392
8393
8394
8395 if (firstcharflags < 0 && branchfirstcharflags >= 0 && branchreqcharflags < 0)
8396 {
8397 branchreqchar = branchfirstchar;
8398 branchreqcharflags = branchfirstcharflags;
8399 }
8400
8401
8402
8403 if (((reqcharflags & ~REQ_VARY) != (branchreqcharflags & ~REQ_VARY)) ||
8404 reqchar != branchreqchar)
8405 reqcharflags = REQ_NONE;
8406 else
8407 {
8408 reqchar = branchreqchar;
8409 reqcharflags |= branchreqcharflags;
8410 }
8411 }
8412
8413
8414
8415
8416
8417
8418
8419
8420
8421 if (lookbehind)
8422 {
8423 int fixed_length;
8424 *code = OP_END;
8425 fixed_length = find_fixedlength(last_branch, (options & PCRE_UTF8) != 0,
8426 FALSE, cd, NULL);
8427 DPRINTF(("fixed length = %d\n", fixed_length));
8428 if (fixed_length == -3)
8429 {
8430 cd->check_lookbehind = TRUE;
8431 }
8432 else if (fixed_length < 0)
8433 {
8434 *errorcodeptr = (fixed_length == -2)? ERR36 :
8435 (fixed_length == -4)? ERR70: ERR25;
8436 *ptrptr = ptr;
8437 return FALSE;
8438 }
8439 else
8440 {
8441 if (fixed_length > cd->max_lookbehind)
8442 cd->max_lookbehind = fixed_length;
8443 PUT(reverse_count, 0, fixed_length);
8444 }
8445 }
8446 }
8447
8448
8449
8450
8451
8452
8453
8454
8455 if (*ptr != CHAR_VERTICAL_LINE)
8456 {
8457 if (lengthptr == NULL)
8458 {
8459 int branch_length = (int)(code - last_branch);
8460 do
8461 {
8462 int prev_length = GET(last_branch, 1);
8463 PUT(last_branch, 1, branch_length);
8464 branch_length = prev_length;
8465 last_branch -= branch_length;
8466 }
8467 while (branch_length > 0);
8468 }
8469
8470
8471
8472 *code = OP_KET;
8473 PUT(code, 1, (int)(code - start_bracket));
8474 code += 1 + LINK_SIZE;
8475
8476
8477
8478
8479
8480
8481 if (capnumber > 0)
8482 {
8483 if (cd->open_caps->flag)
8484 {
8485 *code = OP_END;
8486 adjust_recurse(start_bracket, 1 + LINK_SIZE,
8487 (options & PCRE_UTF8) != 0, cd, save_hwm_offset);
8488 memmove(start_bracket + 1 + LINK_SIZE, start_bracket,
8489 IN_UCHARS(code - start_bracket));
8490 *start_bracket = OP_ONCE;
8491 code += 1 + LINK_SIZE;
8492 PUT(start_bracket, 1, (int)(code - start_bracket));
8493 *code = OP_KET;
8494 PUT(code, 1, (int)(code - start_bracket));
8495 code += 1 + LINK_SIZE;
8496 length += 2 + 2*LINK_SIZE;
8497 }
8498 cd->open_caps = cd->open_caps->next;
8499 }
8500
8501
8502
8503 cd->bracount = max_bracount;
8504
8505
8506
8507 *codeptr = code;
8508 *ptrptr = ptr;
8509 *firstcharptr = firstchar;
8510 *firstcharflagsptr = firstcharflags;
8511 *reqcharptr = reqchar;
8512 *reqcharflagsptr = reqcharflags;
8513 if (lengthptr != NULL)
8514 {
8515 if (OFLOW_MAX - *lengthptr < length)
8516 {
8517 *errorcodeptr = ERR20;
8518 return FALSE;
8519 }
8520 *lengthptr += length;
8521 }
8522 return TRUE;
8523 }
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
8534 if (lengthptr != NULL)
8535 {
8536 code = *codeptr + 1 + LINK_SIZE + skipbytes;
8537 length += 1 + LINK_SIZE;
8538 }
8539 else
8540 {
8541 *code = OP_ALT;
8542 PUT(code, 1, (int)(code - last_branch));
8543 bc.current_branch = last_branch = code;
8544 code += 1 + LINK_SIZE;
8545 }
8546
8547 ptr++;
8548 }
8549
8550 }
8551
8552
8553
8554
8555
8556
8557
8558
8559
8560
8561
8562
8563
8564
8565
8566
8567
8568
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
8581
8582
8583
8584
8585
8586
8587
8588
8589
8590
8591
8592
8593
8594
8595
8596 static BOOL
8597 is_anchored(register const pcre_uchar *code, unsigned int bracket_map,
8598 compile_data *cd, int atomcount)
8599 {
8600 do {
8601 const pcre_uchar *scode = first_significant_code(
8602 code + PRIV(OP_lengths)[*code], FALSE);
8603 register int op = *scode;
8604
8605
8606
8607 if (op == OP_BRA || op == OP_BRAPOS ||
8608 op == OP_SBRA || op == OP_SBRAPOS)
8609 {
8610 if (!is_anchored(scode, bracket_map, cd, atomcount)) return FALSE;
8611 }
8612
8613
8614
8615 else if (op == OP_CBRA || op == OP_CBRAPOS ||
8616 op == OP_SCBRA || op == OP_SCBRAPOS)
8617 {
8618 int n = GET2(scode, 1+LINK_SIZE);
8619 int new_map = bracket_map | ((n < 32)? (1 << n) : 1);
8620 if (!is_anchored(scode, new_map, cd, atomcount)) return FALSE;
8621 }
8622
8623
8624
8625 else if (op == OP_ASSERT || op == OP_COND)
8626 {
8627 if (!is_anchored(scode, bracket_map, cd, atomcount)) return FALSE;
8628 }
8629
8630
8631
8632 else if (op == OP_ONCE || op == OP_ONCE_NC)
8633 {
8634 if (!is_anchored(scode, bracket_map, cd, atomcount + 1))
8635 return FALSE;
8636 }
8637
8638
8639
8640
8641
8642 else if ((op == OP_TYPESTAR || op == OP_TYPEMINSTAR ||
8643 op == OP_TYPEPOSSTAR))
8644 {
8645 if (scode[1] != OP_ALLANY || (bracket_map & cd->backref_map) != 0 ||
8646 atomcount > 0 || cd->had_pruneorskip)
8647 return FALSE;
8648 }
8649
8650
8651
8652 else if (op != OP_SOD && op != OP_SOM && op != OP_CIRC) return FALSE;
8653
8654 code += GET(code, 1);
8655 }
8656 while (*code == OP_ALT);
8657 return TRUE;
8658 }
8659
8660
8661
8662
8663
8664
8665
8666
8667
8668
8669
8670
8671
8672
8673
8674
8675
8676
8677
8678
8679
8680
8681
8682
8683
8684
8685
8686 static BOOL
8687 is_startline(const pcre_uchar *code, unsigned int bracket_map,
8688 compile_data *cd, int atomcount)
8689 {
8690 do {
8691 const pcre_uchar *scode = first_significant_code(
8692 code + PRIV(OP_lengths)[*code], FALSE);
8693 register int op = *scode;
8694
8695
8696
8697
8698
8699
8700 if (op == OP_COND)
8701 {
8702 scode += 1 + LINK_SIZE;
8703 if (*scode == OP_CALLOUT) scode += PRIV(OP_lengths)[OP_CALLOUT];
8704 switch (*scode)
8705 {
8706 case OP_CREF:
8707 case OP_DNCREF:
8708 case OP_RREF:
8709 case OP_DNRREF:
8710 case OP_DEF:
8711 case OP_FAIL:
8712 return FALSE;
8713
8714 default:
8715 if (!is_startline(scode, bracket_map, cd, atomcount)) return FALSE;
8716 do scode += GET(scode, 1); while (*scode == OP_ALT);
8717 scode += 1 + LINK_SIZE;
8718 break;
8719 }
8720 scode = first_significant_code(scode, FALSE);
8721 op = *scode;
8722 }
8723
8724
8725
8726 if (op == OP_BRA || op == OP_BRAPOS ||
8727 op == OP_SBRA || op == OP_SBRAPOS)
8728 {
8729 if (!is_startline(scode, bracket_map, cd, atomcount)) return FALSE;
8730 }
8731
8732
8733
8734 else if (op == OP_CBRA || op == OP_CBRAPOS ||
8735 op == OP_SCBRA || op == OP_SCBRAPOS)
8736 {
8737 int n = GET2(scode, 1+LINK_SIZE);
8738 int new_map = bracket_map | ((n < 32)? (1 << n) : 1);
8739 if (!is_startline(scode, new_map, cd, atomcount)) return FALSE;
8740 }
8741
8742
8743
8744 else if (op == OP_ASSERT)
8745 {
8746 if (!is_startline(scode, bracket_map, cd, atomcount)) return FALSE;
8747 }
8748
8749
8750
8751 else if (op == OP_ONCE || op == OP_ONCE_NC)
8752 {
8753 if (!is_startline(scode, bracket_map, cd, atomcount + 1)) return FALSE;
8754 }
8755
8756
8757
8758
8759
8760
8761
8762 else if (op == OP_TYPESTAR || op == OP_TYPEMINSTAR || op == OP_TYPEPOSSTAR)
8763 {
8764 if (scode[1] != OP_ANY || (bracket_map & cd->backref_map) != 0 ||
8765 atomcount > 0 || cd->had_pruneorskip)
8766 return FALSE;
8767 }
8768
8769
8770
8771
8772
8773
8774 else if (op != OP_CIRC && op != OP_CIRCM) return FALSE;
8775
8776
8777
8778 code += GET(code, 1);
8779 }
8780 while (*code == OP_ALT);
8781 return TRUE;
8782 }
8783
8784
8785
8786
8787
8788
8789
8790
8791
8792
8793
8794
8795
8796
8797
8798
8799
8800
8801
8802
8803
8804
8805
8806
8807 static pcre_uint32
8808 find_firstassertedchar(const pcre_uchar *code, pcre_int32 *flags,
8809 BOOL inassert)
8810 {
8811 register pcre_uint32 c = 0;
8812 int cflags = REQ_NONE;
8813
8814 *flags = REQ_NONE;
8815 do {
8816 pcre_uint32 d;
8817 int dflags;
8818 int xl = (*code == OP_CBRA || *code == OP_SCBRA ||
8819 *code == OP_CBRAPOS || *code == OP_SCBRAPOS)? IMM2_SIZE:0;
8820 const pcre_uchar *scode = first_significant_code(code + 1+LINK_SIZE + xl,
8821 TRUE);
8822 register pcre_uchar op = *scode;
8823
8824 switch(op)
8825 {
8826 default:
8827 return 0;
8828
8829 case OP_BRA:
8830 case OP_BRAPOS:
8831 case OP_CBRA:
8832 case OP_SCBRA:
8833 case OP_CBRAPOS:
8834 case OP_SCBRAPOS:
8835 case OP_ASSERT:
8836 case OP_ONCE:
8837 case OP_ONCE_NC:
8838 d = find_firstassertedchar(scode, &dflags, op == OP_ASSERT);
8839 if (dflags < 0)
8840 return 0;
8841 if (cflags < 0) { c = d; cflags = dflags; } else if (c != d || cflags != dflags) return 0;
8842 break;
8843
8844 case OP_EXACT:
8845 scode += IMM2_SIZE;
8846
8847
8848 case OP_CHAR:
8849 case OP_PLUS:
8850 case OP_MINPLUS:
8851 case OP_POSPLUS:
8852 if (!inassert) return 0;
8853 if (cflags < 0) { c = scode[1]; cflags = 0; }
8854 else if (c != scode[1]) return 0;
8855 break;
8856
8857 case OP_EXACTI:
8858 scode += IMM2_SIZE;
8859
8860
8861 case OP_CHARI:
8862 case OP_PLUSI:
8863 case OP_MINPLUSI:
8864 case OP_POSPLUSI:
8865 if (!inassert) return 0;
8866 if (cflags < 0) { c = scode[1]; cflags = REQ_CASELESS; }
8867 else if (c != scode[1]) return 0;
8868 break;
8869 }
8870
8871 code += GET(code, 1);
8872 }
8873 while (*code == OP_ALT);
8874
8875 *flags = cflags;
8876 return c;
8877 }
8878
8879
8880
8881
8882
8883
8884
8885
8886
8887
8888
8889
8890
8891
8892
8893
8894
8895
8896
8897
8898 static void
8899 add_name(compile_data *cd, const pcre_uchar *name, int length,
8900 unsigned int groupno)
8901 {
8902 int i;
8903 pcre_uchar *slot = cd->name_table;
8904
8905 for (i = 0; i < cd->names_found; i++)
8906 {
8907 int crc = memcmp(name, slot+IMM2_SIZE, IN_UCHARS(length));
8908 if (crc == 0 && slot[IMM2_SIZE+length] != 0)
8909 crc = -1;
8910
8911
8912
8913
8914
8915
8916 if (crc < 0)
8917 {
8918 memmove(slot + cd->name_entry_size, slot,
8919 IN_UCHARS((cd->names_found - i) * cd->name_entry_size));
8920 break;
8921 }
8922
8923
8924
8925 slot += cd->name_entry_size;
8926 }
8927
8928 PUT2(slot, 0, groupno);
8929 memcpy(slot + IMM2_SIZE, name, IN_UCHARS(length));
8930 slot[IMM2_SIZE + length] = 0;
8931 cd->names_found++;
8932 }
8933
8934
8935
8936
8937
8938
8939
8940
8941
8942
8943
8944
8945
8946
8947
8948
8949
8950
8951
8952
8953
8954
8955
8956
8957
8958 #if defined COMPILE_PCRE8
8959 PCRE_EXP_DEFN pcre * PCRE_CALL_CONVENTION
8960 pcre_compile(const char *pattern, int options, const char **errorptr,
8961 int *erroroffset, const unsigned char *tables)
8962 #elif defined COMPILE_PCRE16
8963 PCRE_EXP_DEFN pcre16 * PCRE_CALL_CONVENTION
8964 pcre16_compile(PCRE_SPTR16 pattern, int options, const char **errorptr,
8965 int *erroroffset, const unsigned char *tables)
8966 #elif defined COMPILE_PCRE32
8967 PCRE_EXP_DEFN pcre32 * PCRE_CALL_CONVENTION
8968 pcre32_compile(PCRE_SPTR32 pattern, int options, const char **errorptr,
8969 int *erroroffset, const unsigned char *tables)
8970 #endif
8971 {
8972 #if defined COMPILE_PCRE8
8973 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8974 #elif defined COMPILE_PCRE16
8975 return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8976 #elif defined COMPILE_PCRE32
8977 return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8978 #endif
8979 }
8980
8981
8982 #if defined COMPILE_PCRE8
8983 PCRE_EXP_DEFN pcre * PCRE_CALL_CONVENTION
8984 pcre_compile2(const char *pattern, int options, int *errorcodeptr,
8985 const char **errorptr, int *erroroffset, const unsigned char *tables)
8986 #elif defined COMPILE_PCRE16
8987 PCRE_EXP_DEFN pcre16 * PCRE_CALL_CONVENTION
8988 pcre16_compile2(PCRE_SPTR16 pattern, int options, int *errorcodeptr,
8989 const char **errorptr, int *erroroffset, const unsigned char *tables)
8990 #elif defined COMPILE_PCRE32
8991 PCRE_EXP_DEFN pcre32 * PCRE_CALL_CONVENTION
8992 pcre32_compile2(PCRE_SPTR32 pattern, int options, int *errorcodeptr,
8993 const char **errorptr, int *erroroffset, const unsigned char *tables)
8994 #endif
8995 {
8996 REAL_PCRE *re;
8997 int length = 1;
8998 pcre_int32 firstcharflags, reqcharflags;
8999 pcre_uint32 firstchar, reqchar;
9000 pcre_uint32 limit_match = PCRE_UINT32_MAX;
9001 pcre_uint32 limit_recursion = PCRE_UINT32_MAX;
9002 int newline;
9003 int errorcode = 0;
9004 int skipatstart = 0;
9005 BOOL utf;
9006 BOOL never_utf = FALSE;
9007 size_t size;
9008 pcre_uchar *code;
9009 const pcre_uchar *codestart;
9010 const pcre_uchar *ptr;
9011 compile_data compile_block;
9012 compile_data *cd = &compile_block;
9013
9014
9015
9016
9017
9018
9019
9020
9021 pcre_uchar cworkspace[COMPILE_WORK_SIZE];
9022
9023
9024
9025
9026 named_group named_groups[NAMED_GROUP_LIST_SIZE];
9027
9028
9029
9030 ptr = (const pcre_uchar *)pattern;
9031
9032
9033
9034
9035
9036 if (errorptr == NULL)
9037 {
9038 if (errorcodeptr != NULL) *errorcodeptr = 99;
9039 return NULL;
9040 }
9041
9042 *errorptr = NULL;
9043 if (errorcodeptr != NULL) *errorcodeptr = ERR0;
9044
9045
9046
9047 if (erroroffset == NULL)
9048 {
9049 errorcode = ERR16;
9050 goto PCRE_EARLY_ERROR_RETURN2;
9051 }
9052
9053 *erroroffset = 0;
9054
9055
9056
9057 if (tables == NULL) tables = PRIV(default_tables);
9058 cd->lcc = tables + lcc_offset;
9059 cd->fcc = tables + fcc_offset;
9060 cd->cbits = tables + cbits_offset;
9061 cd->ctypes = tables + ctypes_offset;
9062
9063
9064
9065 if ((options & ~PUBLIC_COMPILE_OPTIONS) != 0)
9066 {
9067 errorcode = ERR17;
9068 goto PCRE_EARLY_ERROR_RETURN;
9069 }
9070
9071
9072
9073 if ((options & PCRE_NEVER_UTF) != 0) never_utf = TRUE;
9074
9075
9076
9077
9078 cd->external_flags = 0;
9079
9080 while (ptr[skipatstart] == CHAR_LEFT_PARENTHESIS &&
9081 ptr[skipatstart+1] == CHAR_ASTERISK)
9082 {
9083 int newnl = 0;
9084 int newbsr = 0;
9085
9086
9087
9088
9089
9090 #ifdef COMPILE_PCRE8
9091 if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_UTF8_RIGHTPAR, 5) == 0)
9092 { skipatstart += 7; options |= PCRE_UTF8; continue; }
9093 #endif
9094 #ifdef COMPILE_PCRE16
9095 if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_UTF16_RIGHTPAR, 6) == 0)
9096 { skipatstart += 8; options |= PCRE_UTF16; continue; }
9097 #endif
9098 #ifdef COMPILE_PCRE32
9099 if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_UTF32_RIGHTPAR, 6) == 0)
9100 { skipatstart += 8; options |= PCRE_UTF32; continue; }
9101 #endif
9102
9103 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_UTF_RIGHTPAR, 4) == 0)
9104 { skipatstart += 6; options |= PCRE_UTF8; continue; }
9105 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_UCP_RIGHTPAR, 4) == 0)
9106 { skipatstart += 6; options |= PCRE_UCP; continue; }
9107 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_NO_AUTO_POSSESS_RIGHTPAR, 16) == 0)
9108 { skipatstart += 18; options |= PCRE_NO_AUTO_POSSESS; continue; }
9109 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_NO_START_OPT_RIGHTPAR, 13) == 0)
9110 { skipatstart += 15; options |= PCRE_NO_START_OPTIMIZE; continue; }
9111
9112 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_LIMIT_MATCH_EQ, 12) == 0)
9113 {
9114 pcre_uint32 c = 0;
9115 int p = skipatstart + 14;
9116 while (isdigit(ptr[p]))
9117 {
9118 if (c > PCRE_UINT32_MAX / 10 - 1) break;
9119 c = c*10 + ptr[p++] - CHAR_0;
9120 }
9121 if (ptr[p++] != CHAR_RIGHT_PARENTHESIS) break;
9122 if (c < limit_match)
9123 {
9124 limit_match = c;
9125 cd->external_flags |= PCRE_MLSET;
9126 }
9127 skipatstart = p;
9128 continue;
9129 }
9130
9131 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_LIMIT_RECURSION_EQ, 16) == 0)
9132 {
9133 pcre_uint32 c = 0;
9134 int p = skipatstart + 18;
9135 while (isdigit(ptr[p]))
9136 {
9137 if (c > PCRE_UINT32_MAX / 10 - 1) break;
9138 c = c*10 + ptr[p++] - CHAR_0;
9139 }
9140 if (ptr[p++] != CHAR_RIGHT_PARENTHESIS) break;
9141 if (c < limit_recursion)
9142 {
9143 limit_recursion = c;
9144 cd->external_flags |= PCRE_RLSET;
9145 }
9146 skipatstart = p;
9147 continue;
9148 }
9149
9150 if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_CR_RIGHTPAR, 3) == 0)
9151 { skipatstart += 5; newnl = PCRE_NEWLINE_CR; }
9152 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_LF_RIGHTPAR, 3) == 0)
9153 { skipatstart += 5; newnl = PCRE_NEWLINE_LF; }
9154 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_CRLF_RIGHTPAR, 5) == 0)
9155 { skipatstart += 7; newnl = PCRE_NEWLINE_CR + PCRE_NEWLINE_LF; }
9156 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_ANY_RIGHTPAR, 4) == 0)
9157 { skipatstart += 6; newnl = PCRE_NEWLINE_ANY; }
9158 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_ANYCRLF_RIGHTPAR, 8) == 0)
9159 { skipatstart += 10; newnl = PCRE_NEWLINE_ANYCRLF; }
9160
9161 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_BSR_ANYCRLF_RIGHTPAR, 12) == 0)
9162 { skipatstart += 14; newbsr = PCRE_BSR_ANYCRLF; }
9163 else if (STRNCMP_UC_C8(ptr+skipatstart+2, STRING_BSR_UNICODE_RIGHTPAR, 12) == 0)
9164 { skipatstart += 14; newbsr = PCRE_BSR_UNICODE; }
9165
9166 if (newnl != 0)
9167 options = (options & ~PCRE_NEWLINE_BITS) | newnl;
9168 else if (newbsr != 0)
9169 options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr;
9170 else break;
9171 }
9172
9173
9174 utf = (options & PCRE_UTF8) != 0;
9175 if (utf && never_utf)
9176 {
9177 errorcode = ERR78;
9178 goto PCRE_EARLY_ERROR_RETURN2;
9179 }
9180
9181
9182
9183
9184
9185
9186 #ifdef SUPPORT_UTF
9187 if (utf && (options & PCRE_NO_UTF8_CHECK) == 0 &&
9188 (errorcode = PRIV(valid_utf)((PCRE_PUCHAR)pattern, -1, erroroffset)) != 0)
9189 {
9190 #if defined COMPILE_PCRE8
9191 errorcode = ERR44;
9192 #elif defined COMPILE_PCRE16
9193 errorcode = ERR74;
9194 #elif defined COMPILE_PCRE32
9195 errorcode = ERR77;
9196 #endif
9197 goto PCRE_EARLY_ERROR_RETURN2;
9198 }
9199 #else
9200 if (utf)
9201 {
9202 errorcode = ERR32;
9203 goto PCRE_EARLY_ERROR_RETURN;
9204 }
9205 #endif
9206
9207
9208
9209 #ifndef SUPPORT_UCP
9210 if ((options & PCRE_UCP) != 0)
9211 {
9212 errorcode = ERR67;
9213 goto PCRE_EARLY_ERROR_RETURN;
9214 }
9215 #endif
9216
9217
9218
9219 if ((options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) ==
9220 (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE))
9221 {
9222 errorcode = ERR56;
9223 goto PCRE_EARLY_ERROR_RETURN;
9224 }
9225
9226
9227
9228
9229
9230 switch (options & PCRE_NEWLINE_BITS)
9231 {
9232 case 0: newline = NEWLINE; break;
9233 case PCRE_NEWLINE_CR: newline = CHAR_CR; break;
9234 case PCRE_NEWLINE_LF: newline = CHAR_NL; break;
9235 case PCRE_NEWLINE_CR+
9236 PCRE_NEWLINE_LF: newline = (CHAR_CR << 8) | CHAR_NL; break;
9237 case PCRE_NEWLINE_ANY: newline = -1; break;
9238 case PCRE_NEWLINE_ANYCRLF: newline = -2; break;
9239 default: errorcode = ERR56; goto PCRE_EARLY_ERROR_RETURN;
9240 }
9241
9242 if (newline == -2)
9243 {
9244 cd->nltype = NLTYPE_ANYCRLF;
9245 }
9246 else if (newline < 0)
9247 {
9248 cd->nltype = NLTYPE_ANY;
9249 }
9250 else
9251 {
9252 cd->nltype = NLTYPE_FIXED;
9253 if (newline > 255)
9254 {
9255 cd->nllen = 2;
9256 cd->nl[0] = (newline >> 8) & 255;
9257 cd->nl[1] = newline & 255;
9258 }
9259 else
9260 {
9261 cd->nllen = 1;
9262 cd->nl[0] = newline;
9263 }
9264 }
9265
9266
9267
9268
9269
9270 cd->top_backref = 0;
9271 cd->backref_map = 0;
9272
9273
9274
9275 DPRINTF(("------------------------------------------------------------------\n"));
9276 #ifdef PCRE_DEBUG
9277 print_puchar(stdout, (PCRE_PUCHAR)pattern);
9278 #endif
9279 DPRINTF(("\n"));
9280
9281
9282
9283
9284
9285
9286
9287
9288 cd->bracount = cd->final_bracount = 0;
9289 cd->names_found = 0;
9290 cd->name_entry_size = 0;
9291 cd->name_table = NULL;
9292 cd->dupnames = FALSE;
9293 cd->dupgroups = FALSE;
9294 cd->namedrefcount = 0;
9295 cd->start_code = cworkspace;
9296 cd->hwm = cworkspace;
9297 cd->iscondassert = FALSE;
9298 cd->start_workspace = cworkspace;
9299 cd->workspace_size = COMPILE_WORK_SIZE;
9300 cd->named_groups = named_groups;
9301 cd->named_group_list_size = NAMED_GROUP_LIST_SIZE;
9302 cd->start_pattern = (const pcre_uchar *)pattern;
9303 cd->end_pattern = (const pcre_uchar *)(pattern + STRLEN_UC((const pcre_uchar *)pattern));
9304 cd->req_varyopt = 0;
9305 cd->parens_depth = 0;
9306 cd->assert_depth = 0;
9307 cd->max_lookbehind = 0;
9308 cd->external_options = options;
9309 cd->open_caps = NULL;
9310
9311
9312
9313
9314
9315
9316
9317 ptr += skipatstart;
9318 code = cworkspace;
9319 *code = OP_BRA;
9320
9321 (void)compile_regex(cd->external_options, &code, &ptr, &errorcode, FALSE,
9322 FALSE, 0, 0, &firstchar, &firstcharflags, &reqchar, &reqcharflags, NULL,
9323 cd, &length);
9324 if (errorcode != 0) goto PCRE_EARLY_ERROR_RETURN;
9325
9326 DPRINTF(("end pre-compile: length=%d workspace=%d\n", length,
9327 (int)(cd->hwm - cworkspace)));
9328
9329 if (length > MAX_PATTERN_SIZE)
9330 {
9331 errorcode = ERR20;
9332 goto PCRE_EARLY_ERROR_RETURN;
9333 }
9334
9335
9336
9337
9338
9339 size = sizeof(REAL_PCRE) +
9340 (length + cd->names_found * cd->name_entry_size) * sizeof(pcre_uchar);
9341
9342
9343
9344 re = (REAL_PCRE *)(PUBL(malloc))(size);
9345 if (re == NULL)
9346 {
9347 errorcode = ERR21;
9348 goto PCRE_EARLY_ERROR_RETURN;
9349 }
9350
9351
9352
9353
9354
9355
9356
9357 re->magic_number = MAGIC_NUMBER;
9358 re->size = (int)size;
9359 re->options = cd->external_options;
9360 re->flags = cd->external_flags;
9361 re->limit_match = limit_match;
9362 re->limit_recursion = limit_recursion;
9363 re->first_char = 0;
9364 re->req_char = 0;
9365 re->name_table_offset = sizeof(REAL_PCRE) / sizeof(pcre_uchar);
9366 re->name_entry_size = cd->name_entry_size;
9367 re->name_count = cd->names_found;
9368 re->ref_count = 0;
9369 re->tables = (tables == PRIV(default_tables))? NULL : tables;
9370 re->nullpad = NULL;
9371 #ifdef COMPILE_PCRE32
9372 re->dummy = 0;
9373 #else
9374 re->dummy1 = re->dummy2 = re->dummy3 = 0;
9375 #endif
9376
9377
9378
9379
9380
9381
9382
9383
9384 cd->final_bracount = cd->bracount;
9385 cd->parens_depth = 0;
9386 cd->assert_depth = 0;
9387 cd->bracount = 0;
9388 cd->max_lookbehind = 0;
9389 cd->name_table = (pcre_uchar *)re + re->name_table_offset;
9390 codestart = cd->name_table + re->name_entry_size * re->name_count;
9391 cd->start_code = codestart;
9392 cd->hwm = (pcre_uchar *)(cd->start_workspace);
9393 cd->iscondassert = FALSE;
9394 cd->req_varyopt = 0;
9395 cd->had_accept = FALSE;
9396 cd->had_pruneorskip = FALSE;
9397 cd->check_lookbehind = FALSE;
9398 cd->open_caps = NULL;
9399
9400
9401
9402
9403 if (cd->names_found > 0)
9404 {
9405 int i = cd->names_found;
9406 named_group *ng = cd->named_groups;
9407 cd->names_found = 0;
9408 for (; i > 0; i--, ng++)
9409 add_name(cd, ng->name, ng->length, ng->number);
9410 if (cd->named_group_list_size > NAMED_GROUP_LIST_SIZE)
9411 (PUBL(free))((void *)cd->named_groups);
9412 }
9413
9414
9415
9416
9417
9418 ptr = (const pcre_uchar *)pattern + skipatstart;
9419 code = (pcre_uchar *)codestart;
9420 *code = OP_BRA;
9421 (void)compile_regex(re->options, &code, &ptr, &errorcode, FALSE, FALSE, 0, 0,
9422 &firstchar, &firstcharflags, &reqchar, &reqcharflags, NULL, cd, NULL);
9423 re->top_bracket = cd->bracount;
9424 re->top_backref = cd->top_backref;
9425 re->max_lookbehind = cd->max_lookbehind;
9426 re->flags = cd->external_flags | PCRE_MODE;
9427
9428 if (cd->had_accept)
9429 {
9430 reqchar = 0;
9431 reqcharflags = REQ_NONE;
9432 }
9433
9434
9435
9436 if (errorcode == 0 && *ptr != CHAR_NULL) errorcode = ERR22;
9437
9438
9439
9440
9441 *code++ = OP_END;
9442
9443 #ifndef PCRE_DEBUG
9444 if (code - codestart > length) errorcode = ERR23;
9445 #endif
9446
9447 #ifdef SUPPORT_VALGRIND
9448
9449
9450
9451 VALGRIND_MAKE_MEM_NOACCESS(code, (length - (code - codestart)) * sizeof(pcre_uchar));
9452 #endif
9453
9454
9455
9456
9457 if (cd->hwm > cd->start_workspace)
9458 {
9459 int prev_recno = -1;
9460 const pcre_uchar *groupptr = NULL;
9461 while (errorcode == 0 && cd->hwm > cd->start_workspace)
9462 {
9463 int offset, recno;
9464 cd->hwm -= LINK_SIZE;
9465 offset = GET(cd->hwm, 0);
9466
9467
9468
9469
9470 if (offset == 0 || codestart[offset-1] != OP_RECURSE)
9471 {
9472 errorcode = ERR10;
9473 break;
9474 }
9475
9476 recno = GET(codestart, offset);
9477 if (recno != prev_recno)
9478 {
9479 groupptr = PRIV(find_bracket)(codestart, utf, recno);
9480 prev_recno = recno;
9481 }
9482 if (groupptr == NULL) errorcode = ERR53;
9483 else PUT(((pcre_uchar *)codestart), offset, (int)(groupptr - codestart));
9484 }
9485 }
9486
9487
9488
9489
9490 if (cd->workspace_size > COMPILE_WORK_SIZE)
9491 (PUBL(free))((void *)cd->start_workspace);
9492 cd->start_workspace = NULL;
9493
9494
9495
9496
9497 if (errorcode == 0 && re->top_backref > re->top_bracket) errorcode = ERR15;
9498
9499
9500
9501
9502
9503
9504
9505
9506 if (errorcode == 0 && (options & PCRE_NO_AUTO_POSSESS) == 0)
9507 {
9508 pcre_uchar *temp = (pcre_uchar *)codestart;
9509 auto_possessify(temp, utf, cd);
9510 }
9511
9512
9513
9514
9515
9516
9517
9518
9519
9520 if (errorcode == 0 && cd->check_lookbehind)
9521 {
9522 pcre_uchar *cc = (pcre_uchar *)codestart;
9523
9524
9525
9526
9527
9528
9529 for (cc = (pcre_uchar *)PRIV(find_bracket)(codestart, utf, -1);
9530 cc != NULL;
9531 cc = (pcre_uchar *)PRIV(find_bracket)(cc, utf, -1))
9532 {
9533 if (GET(cc, 1) == 0)
9534 {
9535 int fixed_length;
9536 pcre_uchar *be = cc - 1 - LINK_SIZE + GET(cc, -LINK_SIZE);
9537 int end_op = *be;
9538 *be = OP_END;
9539 fixed_length = find_fixedlength(cc, (re->options & PCRE_UTF8) != 0, TRUE,
9540 cd, NULL);
9541 *be = end_op;
9542 DPRINTF(("fixed length = %d\n", fixed_length));
9543 if (fixed_length < 0)
9544 {
9545 errorcode = (fixed_length == -2)? ERR36 :
9546 (fixed_length == -4)? ERR70 : ERR25;
9547 break;
9548 }
9549 if (fixed_length > cd->max_lookbehind) cd->max_lookbehind = fixed_length;
9550 PUT(cc, 1, fixed_length);
9551 }
9552 cc += 1 + LINK_SIZE;
9553 }
9554 }
9555
9556
9557
9558 if (errorcode != 0)
9559 {
9560 (PUBL(free))(re);
9561 PCRE_EARLY_ERROR_RETURN:
9562 *erroroffset = (int)(ptr - (const pcre_uchar *)pattern);
9563 PCRE_EARLY_ERROR_RETURN2:
9564 *errorptr = find_error_text(errorcode);
9565 if (errorcodeptr != NULL) *errorcodeptr = errorcode;
9566 return NULL;
9567 }
9568
9569
9570
9571
9572
9573
9574
9575
9576
9577
9578
9579
9580 if ((re->options & PCRE_ANCHORED) == 0)
9581 {
9582 if (is_anchored(codestart, 0, cd, 0)) re->options |= PCRE_ANCHORED;
9583 else
9584 {
9585 if (firstcharflags < 0)
9586 firstchar = find_firstassertedchar(codestart, &firstcharflags, FALSE);
9587 if (firstcharflags >= 0)
9588 {
9589 #if defined COMPILE_PCRE8
9590 re->first_char = firstchar & 0xff;
9591 #elif defined COMPILE_PCRE16
9592 re->first_char = firstchar & 0xffff;
9593 #elif defined COMPILE_PCRE32
9594 re->first_char = firstchar;
9595 #endif
9596 if ((firstcharflags & REQ_CASELESS) != 0)
9597 {
9598 #if defined SUPPORT_UCP && !(defined COMPILE_PCRE8)
9599
9600 if (utf)
9601 {
9602 if (re->first_char < 128)
9603 {
9604 if (cd->fcc[re->first_char] != re->first_char)
9605 re->flags |= PCRE_FCH_CASELESS;
9606 }
9607 else if (UCD_OTHERCASE(re->first_char) != re->first_char)
9608 re->flags |= PCRE_FCH_CASELESS;
9609 }
9610 else
9611 #endif
9612 if (MAX_255(re->first_char)
9613 && cd->fcc[re->first_char] != re->first_char)
9614 re->flags |= PCRE_FCH_CASELESS;
9615 }
9616
9617 re->flags |= PCRE_FIRSTSET;
9618 }
9619
9620 else if (is_startline(codestart, 0, cd, 0)) re->flags |= PCRE_STARTLINE;
9621 }
9622 }
9623
9624
9625
9626
9627
9628 if (reqcharflags >= 0 &&
9629 ((re->options & PCRE_ANCHORED) == 0 || (reqcharflags & REQ_VARY) != 0))
9630 {
9631 #if defined COMPILE_PCRE8
9632 re->req_char = reqchar & 0xff;
9633 #elif defined COMPILE_PCRE16
9634 re->req_char = reqchar & 0xffff;
9635 #elif defined COMPILE_PCRE32
9636 re->req_char = reqchar;
9637 #endif
9638 if ((reqcharflags & REQ_CASELESS) != 0)
9639 {
9640 #if defined SUPPORT_UCP && !(defined COMPILE_PCRE8)
9641
9642 if (utf)
9643 {
9644 if (re->req_char < 128)
9645 {
9646 if (cd->fcc[re->req_char] != re->req_char)
9647 re->flags |= PCRE_RCH_CASELESS;
9648 }
9649 else if (UCD_OTHERCASE(re->req_char) != re->req_char)
9650 re->flags |= PCRE_RCH_CASELESS;
9651 }
9652 else
9653 #endif
9654 if (MAX_255(re->req_char) && cd->fcc[re->req_char] != re->req_char)
9655 re->flags |= PCRE_RCH_CASELESS;
9656 }
9657
9658 re->flags |= PCRE_REQCHSET;
9659 }
9660
9661
9662
9663
9664 #ifdef PCRE_DEBUG
9665 printf("Length = %d top_bracket = %d top_backref = %d\n",
9666 length, re->top_bracket, re->top_backref);
9667
9668 printf("Options=%08x\n", re->options);
9669
9670 if ((re->flags & PCRE_FIRSTSET) != 0)
9671 {
9672 pcre_uchar ch = re->first_char;
9673 const char *caseless =
9674 ((re->flags & PCRE_FCH_CASELESS) == 0)? "" : " (caseless)";
9675 if (PRINTABLE(ch)) printf("First char = %c%s\n", ch, caseless);
9676 else printf("First char = \\x%02x%s\n", ch, caseless);
9677 }
9678
9679 if ((re->flags & PCRE_REQCHSET) != 0)
9680 {
9681 pcre_uchar ch = re->req_char;
9682 const char *caseless =
9683 ((re->flags & PCRE_RCH_CASELESS) == 0)? "" : " (caseless)";
9684 if (PRINTABLE(ch)) printf("Req char = %c%s\n", ch, caseless);
9685 else printf("Req char = \\x%02x%s\n", ch, caseless);
9686 }
9687
9688 #if defined COMPILE_PCRE8
9689 pcre_printint((pcre *)re, stdout, TRUE);
9690 #elif defined COMPILE_PCRE16
9691 pcre16_printint((pcre *)re, stdout, TRUE);
9692 #elif defined COMPILE_PCRE32
9693 pcre32_printint((pcre *)re, stdout, TRUE);
9694 #endif
9695
9696
9697
9698
9699 if (code - codestart > length)
9700 {
9701 (PUBL(free))(re);
9702 *errorptr = find_error_text(ERR23);
9703 *erroroffset = ptr - (pcre_uchar *)pattern;
9704 if (errorcodeptr != NULL) *errorcodeptr = ERR23;
9705 return NULL;
9706 }
9707 #endif
9708
9709
9710
9711
9712 do
9713 {
9714 if (could_be_empty_branch(codestart, code, utf, cd, NULL))
9715 {
9716 re->flags |= PCRE_MATCH_EMPTY;
9717 break;
9718 }
9719 codestart += GET(codestart, 1);
9720 }
9721 while (*codestart == OP_ALT);
9722
9723 #if defined COMPILE_PCRE8
9724 return (pcre *)re;
9725 #elif defined COMPILE_PCRE16
9726 return (pcre16 *)re;
9727 #elif defined COMPILE_PCRE32
9728 return (pcre32 *)re;
9729 #endif
9730 }
9731
9732