Fix memory leak for some invalid regular expressions.
[glibc.git] / posix / regcomp.c
blob9f5ca2cd0e6a6fc6e783eec41f39b6202d0b231d
1 /* Extended regular expression matching and search library.
2 Copyright (C) 2002-2007,2009,2010 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
22 size_t length, reg_syntax_t syntax);
23 static void re_compile_fastmap_iter (regex_t *bufp,
24 const re_dfastate_t *init_state,
25 char *fastmap);
26 static reg_errcode_t init_dfa (re_dfa_t *dfa, size_t pat_len);
27 #ifdef RE_ENABLE_I18N
28 static void free_charset (re_charset_t *cset);
29 #endif /* RE_ENABLE_I18N */
30 static void free_workarea_compile (regex_t *preg);
31 static reg_errcode_t create_initial_state (re_dfa_t *dfa);
32 #ifdef RE_ENABLE_I18N
33 static void optimize_utf8 (re_dfa_t *dfa);
34 #endif
35 static reg_errcode_t analyze (regex_t *preg);
36 static reg_errcode_t preorder (bin_tree_t *root,
37 reg_errcode_t (fn (void *, bin_tree_t *)),
38 void *extra);
39 static reg_errcode_t postorder (bin_tree_t *root,
40 reg_errcode_t (fn (void *, bin_tree_t *)),
41 void *extra);
42 static reg_errcode_t optimize_subexps (void *extra, bin_tree_t *node);
43 static reg_errcode_t lower_subexps (void *extra, bin_tree_t *node);
44 static bin_tree_t *lower_subexp (reg_errcode_t *err, regex_t *preg,
45 bin_tree_t *node);
46 static reg_errcode_t calc_first (void *extra, bin_tree_t *node);
47 static reg_errcode_t calc_next (void *extra, bin_tree_t *node);
48 static reg_errcode_t link_nfa_nodes (void *extra, bin_tree_t *node);
49 static int duplicate_node (re_dfa_t *dfa, int org_idx, unsigned int constraint);
50 static int search_duplicated_node (const re_dfa_t *dfa, int org_node,
51 unsigned int constraint);
52 static reg_errcode_t calc_eclosure (re_dfa_t *dfa);
53 static reg_errcode_t calc_eclosure_iter (re_node_set *new_set, re_dfa_t *dfa,
54 int node, int root);
55 static reg_errcode_t calc_inveclosure (re_dfa_t *dfa);
56 static int fetch_number (re_string_t *input, re_token_t *token,
57 reg_syntax_t syntax);
58 static int peek_token (re_token_t *token, re_string_t *input,
59 reg_syntax_t syntax) internal_function;
60 static bin_tree_t *parse (re_string_t *regexp, regex_t *preg,
61 reg_syntax_t syntax, reg_errcode_t *err);
62 static bin_tree_t *parse_reg_exp (re_string_t *regexp, regex_t *preg,
63 re_token_t *token, reg_syntax_t syntax,
64 int nest, reg_errcode_t *err);
65 static bin_tree_t *parse_branch (re_string_t *regexp, regex_t *preg,
66 re_token_t *token, reg_syntax_t syntax,
67 int nest, reg_errcode_t *err);
68 static bin_tree_t *parse_expression (re_string_t *regexp, regex_t *preg,
69 re_token_t *token, reg_syntax_t syntax,
70 int nest, reg_errcode_t *err);
71 static bin_tree_t *parse_sub_exp (re_string_t *regexp, regex_t *preg,
72 re_token_t *token, reg_syntax_t syntax,
73 int nest, reg_errcode_t *err);
74 static bin_tree_t *parse_dup_op (bin_tree_t *dup_elem, re_string_t *regexp,
75 re_dfa_t *dfa, re_token_t *token,
76 reg_syntax_t syntax, reg_errcode_t *err);
77 static bin_tree_t *parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa,
78 re_token_t *token, reg_syntax_t syntax,
79 reg_errcode_t *err);
80 static reg_errcode_t parse_bracket_element (bracket_elem_t *elem,
81 re_string_t *regexp,
82 re_token_t *token, int token_len,
83 re_dfa_t *dfa,
84 reg_syntax_t syntax,
85 int accept_hyphen);
86 static reg_errcode_t parse_bracket_symbol (bracket_elem_t *elem,
87 re_string_t *regexp,
88 re_token_t *token);
89 #ifdef RE_ENABLE_I18N
90 static reg_errcode_t build_equiv_class (bitset_t sbcset,
91 re_charset_t *mbcset,
92 int *equiv_class_alloc,
93 const unsigned char *name);
94 static reg_errcode_t build_charclass (RE_TRANSLATE_TYPE trans,
95 bitset_t sbcset,
96 re_charset_t *mbcset,
97 int *char_class_alloc,
98 const unsigned char *class_name,
99 reg_syntax_t syntax);
100 #else /* not RE_ENABLE_I18N */
101 static reg_errcode_t build_equiv_class (bitset_t sbcset,
102 const unsigned char *name);
103 static reg_errcode_t build_charclass (RE_TRANSLATE_TYPE trans,
104 bitset_t sbcset,
105 const unsigned char *class_name,
106 reg_syntax_t syntax);
107 #endif /* not RE_ENABLE_I18N */
108 static bin_tree_t *build_charclass_op (re_dfa_t *dfa,
109 RE_TRANSLATE_TYPE trans,
110 const unsigned char *class_name,
111 const unsigned char *extra,
112 int non_match, reg_errcode_t *err);
113 static bin_tree_t *create_tree (re_dfa_t *dfa,
114 bin_tree_t *left, bin_tree_t *right,
115 re_token_type_t type);
116 static bin_tree_t *create_token_tree (re_dfa_t *dfa,
117 bin_tree_t *left, bin_tree_t *right,
118 const re_token_t *token);
119 static bin_tree_t *duplicate_tree (const bin_tree_t *src, re_dfa_t *dfa);
120 static void free_token (re_token_t *node);
121 static reg_errcode_t free_tree (void *extra, bin_tree_t *node);
122 static reg_errcode_t mark_opt_subexp (void *extra, bin_tree_t *node);
124 /* This table gives an error message for each of the error codes listed
125 in regex.h. Obviously the order here has to be same as there.
126 POSIX doesn't require that we do anything for REG_NOERROR,
127 but why not be nice? */
129 const char __re_error_msgid[] attribute_hidden =
131 #define REG_NOERROR_IDX 0
132 gettext_noop ("Success") /* REG_NOERROR */
133 "\0"
134 #define REG_NOMATCH_IDX (REG_NOERROR_IDX + sizeof "Success")
135 gettext_noop ("No match") /* REG_NOMATCH */
136 "\0"
137 #define REG_BADPAT_IDX (REG_NOMATCH_IDX + sizeof "No match")
138 gettext_noop ("Invalid regular expression") /* REG_BADPAT */
139 "\0"
140 #define REG_ECOLLATE_IDX (REG_BADPAT_IDX + sizeof "Invalid regular expression")
141 gettext_noop ("Invalid collation character") /* REG_ECOLLATE */
142 "\0"
143 #define REG_ECTYPE_IDX (REG_ECOLLATE_IDX + sizeof "Invalid collation character")
144 gettext_noop ("Invalid character class name") /* REG_ECTYPE */
145 "\0"
146 #define REG_EESCAPE_IDX (REG_ECTYPE_IDX + sizeof "Invalid character class name")
147 gettext_noop ("Trailing backslash") /* REG_EESCAPE */
148 "\0"
149 #define REG_ESUBREG_IDX (REG_EESCAPE_IDX + sizeof "Trailing backslash")
150 gettext_noop ("Invalid back reference") /* REG_ESUBREG */
151 "\0"
152 #define REG_EBRACK_IDX (REG_ESUBREG_IDX + sizeof "Invalid back reference")
153 gettext_noop ("Unmatched [ or [^") /* REG_EBRACK */
154 "\0"
155 #define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
156 gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
157 "\0"
158 #define REG_EBRACE_IDX (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")
159 gettext_noop ("Unmatched \\{") /* REG_EBRACE */
160 "\0"
161 #define REG_BADBR_IDX (REG_EBRACE_IDX + sizeof "Unmatched \\{")
162 gettext_noop ("Invalid content of \\{\\}") /* REG_BADBR */
163 "\0"
164 #define REG_ERANGE_IDX (REG_BADBR_IDX + sizeof "Invalid content of \\{\\}")
165 gettext_noop ("Invalid range end") /* REG_ERANGE */
166 "\0"
167 #define REG_ESPACE_IDX (REG_ERANGE_IDX + sizeof "Invalid range end")
168 gettext_noop ("Memory exhausted") /* REG_ESPACE */
169 "\0"
170 #define REG_BADRPT_IDX (REG_ESPACE_IDX + sizeof "Memory exhausted")
171 gettext_noop ("Invalid preceding regular expression") /* REG_BADRPT */
172 "\0"
173 #define REG_EEND_IDX (REG_BADRPT_IDX + sizeof "Invalid preceding regular expression")
174 gettext_noop ("Premature end of regular expression") /* REG_EEND */
175 "\0"
176 #define REG_ESIZE_IDX (REG_EEND_IDX + sizeof "Premature end of regular expression")
177 gettext_noop ("Regular expression too big") /* REG_ESIZE */
178 "\0"
179 #define REG_ERPAREN_IDX (REG_ESIZE_IDX + sizeof "Regular expression too big")
180 gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */
183 const size_t __re_error_msgid_idx[] attribute_hidden =
185 REG_NOERROR_IDX,
186 REG_NOMATCH_IDX,
187 REG_BADPAT_IDX,
188 REG_ECOLLATE_IDX,
189 REG_ECTYPE_IDX,
190 REG_EESCAPE_IDX,
191 REG_ESUBREG_IDX,
192 REG_EBRACK_IDX,
193 REG_EPAREN_IDX,
194 REG_EBRACE_IDX,
195 REG_BADBR_IDX,
196 REG_ERANGE_IDX,
197 REG_ESPACE_IDX,
198 REG_BADRPT_IDX,
199 REG_EEND_IDX,
200 REG_ESIZE_IDX,
201 REG_ERPAREN_IDX
204 /* Entry points for GNU code. */
206 /* re_compile_pattern is the GNU regular expression compiler: it
207 compiles PATTERN (of length LENGTH) and puts the result in BUFP.
208 Returns 0 if the pattern was valid, otherwise an error string.
210 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
211 are set in BUFP on entry. */
213 const char *
214 re_compile_pattern (pattern, length, bufp)
215 const char *pattern;
216 size_t length;
217 struct re_pattern_buffer *bufp;
219 reg_errcode_t ret;
221 /* And GNU code determines whether or not to get register information
222 by passing null for the REGS argument to re_match, etc., not by
223 setting no_sub, unless RE_NO_SUB is set. */
224 bufp->no_sub = !!(re_syntax_options & RE_NO_SUB);
226 /* Match anchors at newline. */
227 bufp->newline_anchor = 1;
229 ret = re_compile_internal (bufp, pattern, length, re_syntax_options);
231 if (!ret)
232 return NULL;
233 return gettext (__re_error_msgid + __re_error_msgid_idx[(int) ret]);
235 #ifdef _LIBC
236 weak_alias (__re_compile_pattern, re_compile_pattern)
237 #endif
239 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can
240 also be assigned to arbitrarily: each pattern buffer stores its own
241 syntax, so it can be changed between regex compilations. */
242 /* This has no initializer because initialized variables in Emacs
243 become read-only after dumping. */
244 reg_syntax_t re_syntax_options;
247 /* Specify the precise syntax of regexps for compilation. This provides
248 for compatibility for various utilities which historically have
249 different, incompatible syntaxes.
251 The argument SYNTAX is a bit mask comprised of the various bits
252 defined in regex.h. We return the old syntax. */
254 reg_syntax_t
255 re_set_syntax (syntax)
256 reg_syntax_t syntax;
258 reg_syntax_t ret = re_syntax_options;
260 re_syntax_options = syntax;
261 return ret;
263 #ifdef _LIBC
264 weak_alias (__re_set_syntax, re_set_syntax)
265 #endif
268 re_compile_fastmap (bufp)
269 struct re_pattern_buffer *bufp;
271 re_dfa_t *dfa = (re_dfa_t *) bufp->buffer;
272 char *fastmap = bufp->fastmap;
274 memset (fastmap, '\0', sizeof (char) * SBC_MAX);
275 re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
276 if (dfa->init_state != dfa->init_state_word)
277 re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
278 if (dfa->init_state != dfa->init_state_nl)
279 re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
280 if (dfa->init_state != dfa->init_state_begbuf)
281 re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
282 bufp->fastmap_accurate = 1;
283 return 0;
285 #ifdef _LIBC
286 weak_alias (__re_compile_fastmap, re_compile_fastmap)
287 #endif
289 static inline void
290 __attribute ((always_inline))
291 re_set_fastmap (char *fastmap, int icase, int ch)
293 fastmap[ch] = 1;
294 if (icase)
295 fastmap[tolower (ch)] = 1;
298 /* Helper function for re_compile_fastmap.
299 Compile fastmap for the initial_state INIT_STATE. */
301 static void
302 re_compile_fastmap_iter (regex_t *bufp, const re_dfastate_t *init_state,
303 char *fastmap)
305 re_dfa_t *dfa = (re_dfa_t *) bufp->buffer;
306 int node_cnt;
307 int icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE));
308 for (node_cnt = 0; node_cnt < init_state->nodes.nelem; ++node_cnt)
310 int node = init_state->nodes.elems[node_cnt];
311 re_token_type_t type = dfa->nodes[node].type;
313 if (type == CHARACTER)
315 re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c);
316 #ifdef RE_ENABLE_I18N
317 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
319 unsigned char *buf = alloca (dfa->mb_cur_max), *p;
320 wchar_t wc;
321 mbstate_t state;
323 p = buf;
324 *p++ = dfa->nodes[node].opr.c;
325 while (++node < dfa->nodes_len
326 && dfa->nodes[node].type == CHARACTER
327 && dfa->nodes[node].mb_partial)
328 *p++ = dfa->nodes[node].opr.c;
329 memset (&state, '\0', sizeof (state));
330 if (__mbrtowc (&wc, (const char *) buf, p - buf,
331 &state) == p - buf
332 && (__wcrtomb ((char *) buf, towlower (wc), &state)
333 != (size_t) -1))
334 re_set_fastmap (fastmap, 0, buf[0]);
336 #endif
338 else if (type == SIMPLE_BRACKET)
340 int i, ch;
341 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
343 int j;
344 bitset_word_t w = dfa->nodes[node].opr.sbcset[i];
345 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
346 if (w & ((bitset_word_t) 1 << j))
347 re_set_fastmap (fastmap, icase, ch);
350 #ifdef RE_ENABLE_I18N
351 else if (type == COMPLEX_BRACKET)
353 re_charset_t *cset = dfa->nodes[node].opr.mbcset;
354 int i;
356 # ifdef _LIBC
357 /* See if we have to try all bytes which start multiple collation
358 elements.
359 e.g. In da_DK, we want to catch 'a' since "aa" is a valid
360 collation element, and don't catch 'b' since 'b' is
361 the only collation element which starts from 'b' (and
362 it is caught by SIMPLE_BRACKET). */
363 if (_NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES) != 0
364 && (cset->ncoll_syms || cset->nranges))
366 const int32_t *table = (const int32_t *)
367 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
368 for (i = 0; i < SBC_MAX; ++i)
369 if (table[i] < 0)
370 re_set_fastmap (fastmap, icase, i);
372 # endif /* _LIBC */
374 /* See if we have to start the match at all multibyte characters,
375 i.e. where we would not find an invalid sequence. This only
376 applies to multibyte character sets; for single byte character
377 sets, the SIMPLE_BRACKET again suffices. */
378 if (dfa->mb_cur_max > 1
379 && (cset->nchar_classes || cset->non_match || cset->nranges
380 # ifdef _LIBC
381 || cset->nequiv_classes
382 # endif /* _LIBC */
385 unsigned char c = 0;
388 mbstate_t mbs;
389 memset (&mbs, 0, sizeof (mbs));
390 if (__mbrtowc (NULL, (char *) &c, 1, &mbs) == (size_t) -2)
391 re_set_fastmap (fastmap, false, (int) c);
393 while (++c != 0);
396 else
398 /* ... Else catch all bytes which can start the mbchars. */
399 for (i = 0; i < cset->nmbchars; ++i)
401 char buf[256];
402 mbstate_t state;
403 memset (&state, '\0', sizeof (state));
404 if (__wcrtomb (buf, cset->mbchars[i], &state) != (size_t) -1)
405 re_set_fastmap (fastmap, icase, *(unsigned char *) buf);
406 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
408 if (__wcrtomb (buf, towlower (cset->mbchars[i]), &state)
409 != (size_t) -1)
410 re_set_fastmap (fastmap, false, *(unsigned char *) buf);
415 #endif /* RE_ENABLE_I18N */
416 else if (type == OP_PERIOD
417 #ifdef RE_ENABLE_I18N
418 || type == OP_UTF8_PERIOD
419 #endif /* RE_ENABLE_I18N */
420 || type == END_OF_RE)
422 memset (fastmap, '\1', sizeof (char) * SBC_MAX);
423 if (type == END_OF_RE)
424 bufp->can_be_null = 1;
425 return;
430 /* Entry point for POSIX code. */
431 /* regcomp takes a regular expression as a string and compiles it.
433 PREG is a regex_t *. We do not expect any fields to be initialized,
434 since POSIX says we shouldn't. Thus, we set
436 `buffer' to the compiled pattern;
437 `used' to the length of the compiled pattern;
438 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
439 REG_EXTENDED bit in CFLAGS is set; otherwise, to
440 RE_SYNTAX_POSIX_BASIC;
441 `newline_anchor' to REG_NEWLINE being set in CFLAGS;
442 `fastmap' to an allocated space for the fastmap;
443 `fastmap_accurate' to zero;
444 `re_nsub' to the number of subexpressions in PATTERN.
446 PATTERN is the address of the pattern string.
448 CFLAGS is a series of bits which affect compilation.
450 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
451 use POSIX basic syntax.
453 If REG_NEWLINE is set, then . and [^...] don't match newline.
454 Also, regexec will try a match beginning after every newline.
456 If REG_ICASE is set, then we considers upper- and lowercase
457 versions of letters to be equivalent when matching.
459 If REG_NOSUB is set, then when PREG is passed to regexec, that
460 routine will report only success or failure, and nothing about the
461 registers.
463 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for
464 the return codes and their meanings.) */
467 regcomp (preg, pattern, cflags)
468 regex_t *__restrict preg;
469 const char *__restrict pattern;
470 int cflags;
472 reg_errcode_t ret;
473 reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED
474 : RE_SYNTAX_POSIX_BASIC);
476 preg->buffer = NULL;
477 preg->allocated = 0;
478 preg->used = 0;
480 /* Try to allocate space for the fastmap. */
481 preg->fastmap = re_malloc (char, SBC_MAX);
482 if (BE (preg->fastmap == NULL, 0))
483 return REG_ESPACE;
485 syntax |= (cflags & REG_ICASE) ? RE_ICASE : 0;
487 /* If REG_NEWLINE is set, newlines are treated differently. */
488 if (cflags & REG_NEWLINE)
489 { /* REG_NEWLINE implies neither . nor [^...] match newline. */
490 syntax &= ~RE_DOT_NEWLINE;
491 syntax |= RE_HAT_LISTS_NOT_NEWLINE;
492 /* It also changes the matching behavior. */
493 preg->newline_anchor = 1;
495 else
496 preg->newline_anchor = 0;
497 preg->no_sub = !!(cflags & REG_NOSUB);
498 preg->translate = NULL;
500 ret = re_compile_internal (preg, pattern, strlen (pattern), syntax);
502 /* POSIX doesn't distinguish between an unmatched open-group and an
503 unmatched close-group: both are REG_EPAREN. */
504 if (ret == REG_ERPAREN)
505 ret = REG_EPAREN;
507 /* We have already checked preg->fastmap != NULL. */
508 if (BE (ret == REG_NOERROR, 1))
509 /* Compute the fastmap now, since regexec cannot modify the pattern
510 buffer. This function never fails in this implementation. */
511 (void) re_compile_fastmap (preg);
512 else
514 /* Some error occurred while compiling the expression. */
515 re_free (preg->fastmap);
516 preg->fastmap = NULL;
519 return (int) ret;
521 #ifdef _LIBC
522 weak_alias (__regcomp, regcomp)
523 #endif
525 /* Returns a message corresponding to an error code, ERRCODE, returned
526 from either regcomp or regexec. We don't use PREG here. */
528 size_t
529 regerror (errcode, preg, errbuf, errbuf_size)
530 int errcode;
531 const regex_t *__restrict preg;
532 char *__restrict errbuf;
533 size_t errbuf_size;
535 const char *msg;
536 size_t msg_size;
538 if (BE (errcode < 0
539 || errcode >= (int) (sizeof (__re_error_msgid_idx)
540 / sizeof (__re_error_msgid_idx[0])), 0))
541 /* Only error codes returned by the rest of the code should be passed
542 to this routine. If we are given anything else, or if other regex
543 code generates an invalid error code, then the program has a bug.
544 Dump core so we can fix it. */
545 abort ();
547 msg = gettext (__re_error_msgid + __re_error_msgid_idx[errcode]);
549 msg_size = strlen (msg) + 1; /* Includes the null. */
551 if (BE (errbuf_size != 0, 1))
553 if (BE (msg_size > errbuf_size, 0))
555 #if defined HAVE_MEMPCPY || defined _LIBC
556 *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
557 #else
558 memcpy (errbuf, msg, errbuf_size - 1);
559 errbuf[errbuf_size - 1] = 0;
560 #endif
562 else
563 memcpy (errbuf, msg, msg_size);
566 return msg_size;
568 #ifdef _LIBC
569 weak_alias (__regerror, regerror)
570 #endif
573 #ifdef RE_ENABLE_I18N
574 /* This static array is used for the map to single-byte characters when
575 UTF-8 is used. Otherwise we would allocate memory just to initialize
576 it the same all the time. UTF-8 is the preferred encoding so this is
577 a worthwhile optimization. */
578 static const bitset_t utf8_sb_map =
580 /* Set the first 128 bits. */
581 [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
583 #endif
586 static void
587 free_dfa_content (re_dfa_t *dfa)
589 int i, j;
591 if (dfa->nodes)
592 for (i = 0; i < dfa->nodes_len; ++i)
593 free_token (dfa->nodes + i);
594 re_free (dfa->nexts);
595 for (i = 0; i < dfa->nodes_len; ++i)
597 if (dfa->eclosures != NULL)
598 re_node_set_free (dfa->eclosures + i);
599 if (dfa->inveclosures != NULL)
600 re_node_set_free (dfa->inveclosures + i);
601 if (dfa->edests != NULL)
602 re_node_set_free (dfa->edests + i);
604 re_free (dfa->edests);
605 re_free (dfa->eclosures);
606 re_free (dfa->inveclosures);
607 re_free (dfa->nodes);
609 if (dfa->state_table)
610 for (i = 0; i <= dfa->state_hash_mask; ++i)
612 struct re_state_table_entry *entry = dfa->state_table + i;
613 for (j = 0; j < entry->num; ++j)
615 re_dfastate_t *state = entry->array[j];
616 free_state (state);
618 re_free (entry->array);
620 re_free (dfa->state_table);
621 #ifdef RE_ENABLE_I18N
622 if (dfa->sb_char != utf8_sb_map)
623 re_free (dfa->sb_char);
624 #endif
625 re_free (dfa->subexp_map);
626 #ifdef DEBUG
627 re_free (dfa->re_str);
628 #endif
630 re_free (dfa);
634 /* Free dynamically allocated space used by PREG. */
636 void
637 regfree (preg)
638 regex_t *preg;
640 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
641 if (BE (dfa != NULL, 1))
642 free_dfa_content (dfa);
643 preg->buffer = NULL;
644 preg->allocated = 0;
646 re_free (preg->fastmap);
647 preg->fastmap = NULL;
649 re_free (preg->translate);
650 preg->translate = NULL;
652 #ifdef _LIBC
653 weak_alias (__regfree, regfree)
654 #endif
656 /* Entry points compatible with 4.2 BSD regex library. We don't define
657 them unless specifically requested. */
659 #if defined _REGEX_RE_COMP || defined _LIBC
661 /* BSD has one and only one pattern buffer. */
662 static struct re_pattern_buffer re_comp_buf;
664 char *
665 # ifdef _LIBC
666 /* Make these definitions weak in libc, so POSIX programs can redefine
667 these names if they don't use our functions, and still use
668 regcomp/regexec above without link errors. */
669 weak_function
670 # endif
671 re_comp (s)
672 const char *s;
674 reg_errcode_t ret;
675 char *fastmap;
677 if (!s)
679 if (!re_comp_buf.buffer)
680 return gettext ("No previous regular expression");
681 return 0;
684 if (re_comp_buf.buffer)
686 fastmap = re_comp_buf.fastmap;
687 re_comp_buf.fastmap = NULL;
688 __regfree (&re_comp_buf);
689 memset (&re_comp_buf, '\0', sizeof (re_comp_buf));
690 re_comp_buf.fastmap = fastmap;
693 if (re_comp_buf.fastmap == NULL)
695 re_comp_buf.fastmap = (char *) malloc (SBC_MAX);
696 if (re_comp_buf.fastmap == NULL)
697 return (char *) gettext (__re_error_msgid
698 + __re_error_msgid_idx[(int) REG_ESPACE]);
701 /* Since `re_exec' always passes NULL for the `regs' argument, we
702 don't need to initialize the pattern buffer fields which affect it. */
704 /* Match anchors at newlines. */
705 re_comp_buf.newline_anchor = 1;
707 ret = re_compile_internal (&re_comp_buf, s, strlen (s), re_syntax_options);
709 if (!ret)
710 return NULL;
712 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
713 return (char *) gettext (__re_error_msgid + __re_error_msgid_idx[(int) ret]);
716 #ifdef _LIBC
717 libc_freeres_fn (free_mem)
719 __regfree (&re_comp_buf);
721 #endif
723 #endif /* _REGEX_RE_COMP */
725 /* Internal entry point.
726 Compile the regular expression PATTERN, whose length is LENGTH.
727 SYNTAX indicate regular expression's syntax. */
729 static reg_errcode_t
730 re_compile_internal (regex_t *preg, const char * pattern, size_t length,
731 reg_syntax_t syntax)
733 reg_errcode_t err = REG_NOERROR;
734 re_dfa_t *dfa;
735 re_string_t regexp;
737 /* Initialize the pattern buffer. */
738 preg->fastmap_accurate = 0;
739 preg->syntax = syntax;
740 preg->not_bol = preg->not_eol = 0;
741 preg->used = 0;
742 preg->re_nsub = 0;
743 preg->can_be_null = 0;
744 preg->regs_allocated = REGS_UNALLOCATED;
746 /* Initialize the dfa. */
747 dfa = (re_dfa_t *) preg->buffer;
748 if (BE (preg->allocated < sizeof (re_dfa_t), 0))
750 /* If zero allocated, but buffer is non-null, try to realloc
751 enough space. This loses if buffer's address is bogus, but
752 that is the user's responsibility. If ->buffer is NULL this
753 is a simple allocation. */
754 dfa = re_realloc (preg->buffer, re_dfa_t, 1);
755 if (dfa == NULL)
756 return REG_ESPACE;
757 preg->allocated = sizeof (re_dfa_t);
758 preg->buffer = (unsigned char *) dfa;
760 preg->used = sizeof (re_dfa_t);
762 err = init_dfa (dfa, length);
763 if (BE (err != REG_NOERROR, 0))
765 free_dfa_content (dfa);
766 preg->buffer = NULL;
767 preg->allocated = 0;
768 return err;
770 #ifdef DEBUG
771 /* Note: length+1 will not overflow since it is checked in init_dfa. */
772 dfa->re_str = re_malloc (char, length + 1);
773 strncpy (dfa->re_str, pattern, length + 1);
774 #endif
776 __libc_lock_init (dfa->lock);
778 err = re_string_construct (&regexp, pattern, length, preg->translate,
779 syntax & RE_ICASE, dfa);
780 if (BE (err != REG_NOERROR, 0))
782 re_compile_internal_free_return:
783 free_workarea_compile (preg);
784 re_string_destruct (&regexp);
785 free_dfa_content (dfa);
786 preg->buffer = NULL;
787 preg->allocated = 0;
788 return err;
791 /* Parse the regular expression, and build a structure tree. */
792 preg->re_nsub = 0;
793 dfa->str_tree = parse (&regexp, preg, syntax, &err);
794 if (BE (dfa->str_tree == NULL, 0))
795 goto re_compile_internal_free_return;
797 /* Analyze the tree and create the nfa. */
798 err = analyze (preg);
799 if (BE (err != REG_NOERROR, 0))
800 goto re_compile_internal_free_return;
802 #ifdef RE_ENABLE_I18N
803 /* If possible, do searching in single byte encoding to speed things up. */
804 if (dfa->is_utf8 && !(syntax & RE_ICASE) && preg->translate == NULL)
805 optimize_utf8 (dfa);
806 #endif
808 /* Then create the initial state of the dfa. */
809 err = create_initial_state (dfa);
811 /* Release work areas. */
812 free_workarea_compile (preg);
813 re_string_destruct (&regexp);
815 if (BE (err != REG_NOERROR, 0))
817 free_dfa_content (dfa);
818 preg->buffer = NULL;
819 preg->allocated = 0;
822 return err;
825 /* Initialize DFA. We use the length of the regular expression PAT_LEN
826 as the initial length of some arrays. */
828 static reg_errcode_t
829 init_dfa (re_dfa_t *dfa, size_t pat_len)
831 unsigned int table_size;
832 #ifndef _LIBC
833 char *codeset_name;
834 #endif
836 memset (dfa, '\0', sizeof (re_dfa_t));
838 /* Force allocation of str_tree_storage the first time. */
839 dfa->str_tree_storage_idx = BIN_TREE_STORAGE_SIZE;
841 /* Avoid overflows. */
842 if (pat_len == SIZE_MAX)
843 return REG_ESPACE;
845 dfa->nodes_alloc = pat_len + 1;
846 dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc);
848 /* table_size = 2 ^ ceil(log pat_len) */
849 for (table_size = 1; ; table_size <<= 1)
850 if (table_size > pat_len)
851 break;
853 dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
854 dfa->state_hash_mask = table_size - 1;
856 dfa->mb_cur_max = MB_CUR_MAX;
857 #ifdef _LIBC
858 if (dfa->mb_cur_max == 6
859 && strcmp (_NL_CURRENT (LC_CTYPE, _NL_CTYPE_CODESET_NAME), "UTF-8") == 0)
860 dfa->is_utf8 = 1;
861 dfa->map_notascii = (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MAP_TO_NONASCII)
862 != 0);
863 #else
864 # ifdef HAVE_LANGINFO_CODESET
865 codeset_name = nl_langinfo (CODESET);
866 # else
867 codeset_name = getenv ("LC_ALL");
868 if (codeset_name == NULL || codeset_name[0] == '\0')
869 codeset_name = getenv ("LC_CTYPE");
870 if (codeset_name == NULL || codeset_name[0] == '\0')
871 codeset_name = getenv ("LANG");
872 if (codeset_name == NULL)
873 codeset_name = "";
874 else if (strchr (codeset_name, '.') != NULL)
875 codeset_name = strchr (codeset_name, '.') + 1;
876 # endif
878 if (strcasecmp (codeset_name, "UTF-8") == 0
879 || strcasecmp (codeset_name, "UTF8") == 0)
880 dfa->is_utf8 = 1;
882 /* We check exhaustively in the loop below if this charset is a
883 superset of ASCII. */
884 dfa->map_notascii = 0;
885 #endif
887 #ifdef RE_ENABLE_I18N
888 if (dfa->mb_cur_max > 1)
890 if (dfa->is_utf8)
891 dfa->sb_char = (re_bitset_ptr_t) utf8_sb_map;
892 else
894 int i, j, ch;
896 dfa->sb_char = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
897 if (BE (dfa->sb_char == NULL, 0))
898 return REG_ESPACE;
900 /* Set the bits corresponding to single byte chars. */
901 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
902 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
904 wint_t wch = __btowc (ch);
905 if (wch != WEOF)
906 dfa->sb_char[i] |= (bitset_word_t) 1 << j;
907 # ifndef _LIBC
908 if (isascii (ch) && wch != ch)
909 dfa->map_notascii = 1;
910 # endif
914 #endif
916 if (BE (dfa->nodes == NULL || dfa->state_table == NULL, 0))
917 return REG_ESPACE;
918 return REG_NOERROR;
921 /* Initialize WORD_CHAR table, which indicate which character is
922 "word". In this case "word" means that it is the word construction
923 character used by some operators like "\<", "\>", etc. */
925 static void
926 internal_function
927 init_word_char (re_dfa_t *dfa)
929 int i, j, ch;
930 dfa->word_ops_used = 1;
931 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
932 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
933 if (isalnum (ch) || ch == '_')
934 dfa->word_char[i] |= (bitset_word_t) 1 << j;
937 /* Free the work area which are only used while compiling. */
939 static void
940 free_workarea_compile (regex_t *preg)
942 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
943 bin_tree_storage_t *storage, *next;
944 for (storage = dfa->str_tree_storage; storage; storage = next)
946 next = storage->next;
947 re_free (storage);
949 dfa->str_tree_storage = NULL;
950 dfa->str_tree_storage_idx = BIN_TREE_STORAGE_SIZE;
951 dfa->str_tree = NULL;
952 re_free (dfa->org_indices);
953 dfa->org_indices = NULL;
956 /* Create initial states for all contexts. */
958 static reg_errcode_t
959 create_initial_state (re_dfa_t *dfa)
961 int first, i;
962 reg_errcode_t err;
963 re_node_set init_nodes;
965 /* Initial states have the epsilon closure of the node which is
966 the first node of the regular expression. */
967 first = dfa->str_tree->first->node_idx;
968 dfa->init_node = first;
969 err = re_node_set_init_copy (&init_nodes, dfa->eclosures + first);
970 if (BE (err != REG_NOERROR, 0))
971 return err;
973 /* The back-references which are in initial states can epsilon transit,
974 since in this case all of the subexpressions can be null.
975 Then we add epsilon closures of the nodes which are the next nodes of
976 the back-references. */
977 if (dfa->nbackref > 0)
978 for (i = 0; i < init_nodes.nelem; ++i)
980 int node_idx = init_nodes.elems[i];
981 re_token_type_t type = dfa->nodes[node_idx].type;
983 int clexp_idx;
984 if (type != OP_BACK_REF)
985 continue;
986 for (clexp_idx = 0; clexp_idx < init_nodes.nelem; ++clexp_idx)
988 re_token_t *clexp_node;
989 clexp_node = dfa->nodes + init_nodes.elems[clexp_idx];
990 if (clexp_node->type == OP_CLOSE_SUBEXP
991 && clexp_node->opr.idx == dfa->nodes[node_idx].opr.idx)
992 break;
994 if (clexp_idx == init_nodes.nelem)
995 continue;
997 if (type == OP_BACK_REF)
999 int dest_idx = dfa->edests[node_idx].elems[0];
1000 if (!re_node_set_contains (&init_nodes, dest_idx))
1002 reg_errcode_t err = re_node_set_merge (&init_nodes,
1003 dfa->eclosures
1004 + dest_idx);
1005 if (err != REG_NOERROR)
1006 return err;
1007 i = 0;
1012 /* It must be the first time to invoke acquire_state. */
1013 dfa->init_state = re_acquire_state_context (&err, dfa, &init_nodes, 0);
1014 /* We don't check ERR here, since the initial state must not be NULL. */
1015 if (BE (dfa->init_state == NULL, 0))
1016 return err;
1017 if (dfa->init_state->has_constraint)
1019 dfa->init_state_word = re_acquire_state_context (&err, dfa, &init_nodes,
1020 CONTEXT_WORD);
1021 dfa->init_state_nl = re_acquire_state_context (&err, dfa, &init_nodes,
1022 CONTEXT_NEWLINE);
1023 dfa->init_state_begbuf = re_acquire_state_context (&err, dfa,
1024 &init_nodes,
1025 CONTEXT_NEWLINE
1026 | CONTEXT_BEGBUF);
1027 if (BE (dfa->init_state_word == NULL || dfa->init_state_nl == NULL
1028 || dfa->init_state_begbuf == NULL, 0))
1029 return err;
1031 else
1032 dfa->init_state_word = dfa->init_state_nl
1033 = dfa->init_state_begbuf = dfa->init_state;
1035 re_node_set_free (&init_nodes);
1036 return REG_NOERROR;
1039 #ifdef RE_ENABLE_I18N
1040 /* If it is possible to do searching in single byte encoding instead of UTF-8
1041 to speed things up, set dfa->mb_cur_max to 1, clear is_utf8 and change
1042 DFA nodes where needed. */
1044 static void
1045 optimize_utf8 (re_dfa_t *dfa)
1047 int node, i, mb_chars = 0, has_period = 0;
1049 for (node = 0; node < dfa->nodes_len; ++node)
1050 switch (dfa->nodes[node].type)
1052 case CHARACTER:
1053 if (dfa->nodes[node].opr.c >= 0x80)
1054 mb_chars = 1;
1055 break;
1056 case ANCHOR:
1057 switch (dfa->nodes[node].opr.ctx_type)
1059 case LINE_FIRST:
1060 case LINE_LAST:
1061 case BUF_FIRST:
1062 case BUF_LAST:
1063 break;
1064 default:
1065 /* Word anchors etc. cannot be handled. It's okay to test
1066 opr.ctx_type since constraints (for all DFA nodes) are
1067 created by ORing one or more opr.ctx_type values. */
1068 return;
1070 break;
1071 case OP_PERIOD:
1072 has_period = 1;
1073 break;
1074 case OP_BACK_REF:
1075 case OP_ALT:
1076 case END_OF_RE:
1077 case OP_DUP_ASTERISK:
1078 case OP_OPEN_SUBEXP:
1079 case OP_CLOSE_SUBEXP:
1080 break;
1081 case COMPLEX_BRACKET:
1082 return;
1083 case SIMPLE_BRACKET:
1084 /* Just double check. The non-ASCII range starts at 0x80. */
1085 assert (0x80 % BITSET_WORD_BITS == 0);
1086 for (i = 0x80 / BITSET_WORD_BITS; i < BITSET_WORDS; ++i)
1087 if (dfa->nodes[node].opr.sbcset[i])
1088 return;
1089 break;
1090 default:
1091 abort ();
1094 if (mb_chars || has_period)
1095 for (node = 0; node < dfa->nodes_len; ++node)
1097 if (dfa->nodes[node].type == CHARACTER
1098 && dfa->nodes[node].opr.c >= 0x80)
1099 dfa->nodes[node].mb_partial = 0;
1100 else if (dfa->nodes[node].type == OP_PERIOD)
1101 dfa->nodes[node].type = OP_UTF8_PERIOD;
1104 /* The search can be in single byte locale. */
1105 dfa->mb_cur_max = 1;
1106 dfa->is_utf8 = 0;
1107 dfa->has_mb_node = dfa->nbackref > 0 || has_period;
1109 #endif
1111 /* Analyze the structure tree, and calculate "first", "next", "edest",
1112 "eclosure", and "inveclosure". */
1114 static reg_errcode_t
1115 analyze (regex_t *preg)
1117 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
1118 reg_errcode_t ret;
1120 /* Allocate arrays. */
1121 dfa->nexts = re_malloc (int, dfa->nodes_alloc);
1122 dfa->org_indices = re_malloc (int, dfa->nodes_alloc);
1123 dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc);
1124 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc);
1125 if (BE (dfa->nexts == NULL || dfa->org_indices == NULL || dfa->edests == NULL
1126 || dfa->eclosures == NULL, 0))
1127 return REG_ESPACE;
1129 dfa->subexp_map = re_malloc (int, preg->re_nsub);
1130 if (dfa->subexp_map != NULL)
1132 int i;
1133 for (i = 0; i < preg->re_nsub; i++)
1134 dfa->subexp_map[i] = i;
1135 preorder (dfa->str_tree, optimize_subexps, dfa);
1136 for (i = 0; i < preg->re_nsub; i++)
1137 if (dfa->subexp_map[i] != i)
1138 break;
1139 if (i == preg->re_nsub)
1141 free (dfa->subexp_map);
1142 dfa->subexp_map = NULL;
1146 ret = postorder (dfa->str_tree, lower_subexps, preg);
1147 if (BE (ret != REG_NOERROR, 0))
1148 return ret;
1149 ret = postorder (dfa->str_tree, calc_first, dfa);
1150 if (BE (ret != REG_NOERROR, 0))
1151 return ret;
1152 preorder (dfa->str_tree, calc_next, dfa);
1153 ret = preorder (dfa->str_tree, link_nfa_nodes, dfa);
1154 if (BE (ret != REG_NOERROR, 0))
1155 return ret;
1156 ret = calc_eclosure (dfa);
1157 if (BE (ret != REG_NOERROR, 0))
1158 return ret;
1160 /* We only need this during the prune_impossible_nodes pass in regexec.c;
1161 skip it if p_i_n will not run, as calc_inveclosure can be quadratic. */
1162 if ((!preg->no_sub && preg->re_nsub > 0 && dfa->has_plural_match)
1163 || dfa->nbackref)
1165 dfa->inveclosures = re_malloc (re_node_set, dfa->nodes_len);
1166 if (BE (dfa->inveclosures == NULL, 0))
1167 return REG_ESPACE;
1168 ret = calc_inveclosure (dfa);
1171 return ret;
1174 /* Our parse trees are very unbalanced, so we cannot use a stack to
1175 implement parse tree visits. Instead, we use parent pointers and
1176 some hairy code in these two functions. */
1177 static reg_errcode_t
1178 postorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)),
1179 void *extra)
1181 bin_tree_t *node, *prev;
1183 for (node = root; ; )
1185 /* Descend down the tree, preferably to the left (or to the right
1186 if that's the only child). */
1187 while (node->left || node->right)
1188 if (node->left)
1189 node = node->left;
1190 else
1191 node = node->right;
1195 reg_errcode_t err = fn (extra, node);
1196 if (BE (err != REG_NOERROR, 0))
1197 return err;
1198 if (node->parent == NULL)
1199 return REG_NOERROR;
1200 prev = node;
1201 node = node->parent;
1203 /* Go up while we have a node that is reached from the right. */
1204 while (node->right == prev || node->right == NULL);
1205 node = node->right;
1209 static reg_errcode_t
1210 preorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)),
1211 void *extra)
1213 bin_tree_t *node;
1215 for (node = root; ; )
1217 reg_errcode_t err = fn (extra, node);
1218 if (BE (err != REG_NOERROR, 0))
1219 return err;
1221 /* Go to the left node, or up and to the right. */
1222 if (node->left)
1223 node = node->left;
1224 else
1226 bin_tree_t *prev = NULL;
1227 while (node->right == prev || node->right == NULL)
1229 prev = node;
1230 node = node->parent;
1231 if (!node)
1232 return REG_NOERROR;
1234 node = node->right;
1239 /* Optimization pass: if a SUBEXP is entirely contained, strip it and tell
1240 re_search_internal to map the inner one's opr.idx to this one's. Adjust
1241 backreferences as well. Requires a preorder visit. */
1242 static reg_errcode_t
1243 optimize_subexps (void *extra, bin_tree_t *node)
1245 re_dfa_t *dfa = (re_dfa_t *) extra;
1247 if (node->token.type == OP_BACK_REF && dfa->subexp_map)
1249 int idx = node->token.opr.idx;
1250 node->token.opr.idx = dfa->subexp_map[idx];
1251 dfa->used_bkref_map |= 1 << node->token.opr.idx;
1254 else if (node->token.type == SUBEXP
1255 && node->left && node->left->token.type == SUBEXP)
1257 int other_idx = node->left->token.opr.idx;
1259 node->left = node->left->left;
1260 if (node->left)
1261 node->left->parent = node;
1263 dfa->subexp_map[other_idx] = dfa->subexp_map[node->token.opr.idx];
1264 if (other_idx < BITSET_WORD_BITS)
1265 dfa->used_bkref_map &= ~((bitset_word_t) 1 << other_idx);
1268 return REG_NOERROR;
1271 /* Lowering pass: Turn each SUBEXP node into the appropriate concatenation
1272 of OP_OPEN_SUBEXP, the body of the SUBEXP (if any) and OP_CLOSE_SUBEXP. */
1273 static reg_errcode_t
1274 lower_subexps (void *extra, bin_tree_t *node)
1276 regex_t *preg = (regex_t *) extra;
1277 reg_errcode_t err = REG_NOERROR;
1279 if (node->left && node->left->token.type == SUBEXP)
1281 node->left = lower_subexp (&err, preg, node->left);
1282 if (node->left)
1283 node->left->parent = node;
1285 if (node->right && node->right->token.type == SUBEXP)
1287 node->right = lower_subexp (&err, preg, node->right);
1288 if (node->right)
1289 node->right->parent = node;
1292 return err;
1295 static bin_tree_t *
1296 lower_subexp (reg_errcode_t *err, regex_t *preg, bin_tree_t *node)
1298 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
1299 bin_tree_t *body = node->left;
1300 bin_tree_t *op, *cls, *tree1, *tree;
1302 if (preg->no_sub
1303 /* We do not optimize empty subexpressions, because otherwise we may
1304 have bad CONCAT nodes with NULL children. This is obviously not
1305 very common, so we do not lose much. An example that triggers
1306 this case is the sed "script" /\(\)/x. */
1307 && node->left != NULL
1308 && (node->token.opr.idx >= BITSET_WORD_BITS
1309 || !(dfa->used_bkref_map
1310 & ((bitset_word_t) 1 << node->token.opr.idx))))
1311 return node->left;
1313 /* Convert the SUBEXP node to the concatenation of an
1314 OP_OPEN_SUBEXP, the contents, and an OP_CLOSE_SUBEXP. */
1315 op = create_tree (dfa, NULL, NULL, OP_OPEN_SUBEXP);
1316 cls = create_tree (dfa, NULL, NULL, OP_CLOSE_SUBEXP);
1317 tree1 = body ? create_tree (dfa, body, cls, CONCAT) : cls;
1318 tree = create_tree (dfa, op, tree1, CONCAT);
1319 if (BE (tree == NULL || tree1 == NULL || op == NULL || cls == NULL, 0))
1321 *err = REG_ESPACE;
1322 return NULL;
1325 op->token.opr.idx = cls->token.opr.idx = node->token.opr.idx;
1326 op->token.opt_subexp = cls->token.opt_subexp = node->token.opt_subexp;
1327 return tree;
1330 /* Pass 1 in building the NFA: compute FIRST and create unlinked automaton
1331 nodes. Requires a postorder visit. */
1332 static reg_errcode_t
1333 calc_first (void *extra, bin_tree_t *node)
1335 re_dfa_t *dfa = (re_dfa_t *) extra;
1336 if (node->token.type == CONCAT)
1338 node->first = node->left->first;
1339 node->node_idx = node->left->node_idx;
1341 else
1343 node->first = node;
1344 node->node_idx = re_dfa_add_node (dfa, node->token);
1345 if (BE (node->node_idx == -1, 0))
1346 return REG_ESPACE;
1347 if (node->token.type == ANCHOR)
1348 dfa->nodes[node->node_idx].constraint = node->token.opr.ctx_type;
1350 return REG_NOERROR;
1353 /* Pass 2: compute NEXT on the tree. Preorder visit. */
1354 static reg_errcode_t
1355 calc_next (void *extra, bin_tree_t *node)
1357 switch (node->token.type)
1359 case OP_DUP_ASTERISK:
1360 node->left->next = node;
1361 break;
1362 case CONCAT:
1363 node->left->next = node->right->first;
1364 node->right->next = node->next;
1365 break;
1366 default:
1367 if (node->left)
1368 node->left->next = node->next;
1369 if (node->right)
1370 node->right->next = node->next;
1371 break;
1373 return REG_NOERROR;
1376 /* Pass 3: link all DFA nodes to their NEXT node (any order will do). */
1377 static reg_errcode_t
1378 link_nfa_nodes (void *extra, bin_tree_t *node)
1380 re_dfa_t *dfa = (re_dfa_t *) extra;
1381 int idx = node->node_idx;
1382 reg_errcode_t err = REG_NOERROR;
1384 switch (node->token.type)
1386 case CONCAT:
1387 break;
1389 case END_OF_RE:
1390 assert (node->next == NULL);
1391 break;
1393 case OP_DUP_ASTERISK:
1394 case OP_ALT:
1396 int left, right;
1397 dfa->has_plural_match = 1;
1398 if (node->left != NULL)
1399 left = node->left->first->node_idx;
1400 else
1401 left = node->next->node_idx;
1402 if (node->right != NULL)
1403 right = node->right->first->node_idx;
1404 else
1405 right = node->next->node_idx;
1406 assert (left > -1);
1407 assert (right > -1);
1408 err = re_node_set_init_2 (dfa->edests + idx, left, right);
1410 break;
1412 case ANCHOR:
1413 case OP_OPEN_SUBEXP:
1414 case OP_CLOSE_SUBEXP:
1415 err = re_node_set_init_1 (dfa->edests + idx, node->next->node_idx);
1416 break;
1418 case OP_BACK_REF:
1419 dfa->nexts[idx] = node->next->node_idx;
1420 if (node->token.type == OP_BACK_REF)
1421 err = re_node_set_init_1 (dfa->edests + idx, dfa->nexts[idx]);
1422 break;
1424 default:
1425 assert (!IS_EPSILON_NODE (node->token.type));
1426 dfa->nexts[idx] = node->next->node_idx;
1427 break;
1430 return err;
1433 /* Duplicate the epsilon closure of the node ROOT_NODE.
1434 Note that duplicated nodes have constraint INIT_CONSTRAINT in addition
1435 to their own constraint. */
1437 static reg_errcode_t
1438 internal_function
1439 duplicate_node_closure (re_dfa_t *dfa, int top_org_node, int top_clone_node,
1440 int root_node, unsigned int init_constraint)
1442 int org_node, clone_node, ret;
1443 unsigned int constraint = init_constraint;
1444 for (org_node = top_org_node, clone_node = top_clone_node;;)
1446 int org_dest, clone_dest;
1447 if (dfa->nodes[org_node].type == OP_BACK_REF)
1449 /* If the back reference epsilon-transit, its destination must
1450 also have the constraint. Then duplicate the epsilon closure
1451 of the destination of the back reference, and store it in
1452 edests of the back reference. */
1453 org_dest = dfa->nexts[org_node];
1454 re_node_set_empty (dfa->edests + clone_node);
1455 clone_dest = duplicate_node (dfa, org_dest, constraint);
1456 if (BE (clone_dest == -1, 0))
1457 return REG_ESPACE;
1458 dfa->nexts[clone_node] = dfa->nexts[org_node];
1459 ret = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1460 if (BE (ret < 0, 0))
1461 return REG_ESPACE;
1463 else if (dfa->edests[org_node].nelem == 0)
1465 /* In case of the node can't epsilon-transit, don't duplicate the
1466 destination and store the original destination as the
1467 destination of the node. */
1468 dfa->nexts[clone_node] = dfa->nexts[org_node];
1469 break;
1471 else if (dfa->edests[org_node].nelem == 1)
1473 /* In case of the node can epsilon-transit, and it has only one
1474 destination. */
1475 org_dest = dfa->edests[org_node].elems[0];
1476 re_node_set_empty (dfa->edests + clone_node);
1477 /* If the node is root_node itself, it means the epsilon clsoure
1478 has a loop. Then tie it to the destination of the root_node. */
1479 if (org_node == root_node && clone_node != org_node)
1481 ret = re_node_set_insert (dfa->edests + clone_node, org_dest);
1482 if (BE (ret < 0, 0))
1483 return REG_ESPACE;
1484 break;
1486 /* In case of the node has another constraint, add it. */
1487 constraint |= dfa->nodes[org_node].constraint;
1488 clone_dest = duplicate_node (dfa, org_dest, constraint);
1489 if (BE (clone_dest == -1, 0))
1490 return REG_ESPACE;
1491 ret = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1492 if (BE (ret < 0, 0))
1493 return REG_ESPACE;
1495 else /* dfa->edests[org_node].nelem == 2 */
1497 /* In case of the node can epsilon-transit, and it has two
1498 destinations. In the bin_tree_t and DFA, that's '|' and '*'. */
1499 org_dest = dfa->edests[org_node].elems[0];
1500 re_node_set_empty (dfa->edests + clone_node);
1501 /* Search for a duplicated node which satisfies the constraint. */
1502 clone_dest = search_duplicated_node (dfa, org_dest, constraint);
1503 if (clone_dest == -1)
1505 /* There is no such duplicated node, create a new one. */
1506 reg_errcode_t err;
1507 clone_dest = duplicate_node (dfa, org_dest, constraint);
1508 if (BE (clone_dest == -1, 0))
1509 return REG_ESPACE;
1510 ret = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1511 if (BE (ret < 0, 0))
1512 return REG_ESPACE;
1513 err = duplicate_node_closure (dfa, org_dest, clone_dest,
1514 root_node, constraint);
1515 if (BE (err != REG_NOERROR, 0))
1516 return err;
1518 else
1520 /* There is a duplicated node which satisfies the constraint,
1521 use it to avoid infinite loop. */
1522 ret = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1523 if (BE (ret < 0, 0))
1524 return REG_ESPACE;
1527 org_dest = dfa->edests[org_node].elems[1];
1528 clone_dest = duplicate_node (dfa, org_dest, constraint);
1529 if (BE (clone_dest == -1, 0))
1530 return REG_ESPACE;
1531 ret = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1532 if (BE (ret < 0, 0))
1533 return REG_ESPACE;
1535 org_node = org_dest;
1536 clone_node = clone_dest;
1538 return REG_NOERROR;
1541 /* Search for a node which is duplicated from the node ORG_NODE, and
1542 satisfies the constraint CONSTRAINT. */
1544 static int
1545 search_duplicated_node (const re_dfa_t *dfa, int org_node,
1546 unsigned int constraint)
1548 int idx;
1549 for (idx = dfa->nodes_len - 1; dfa->nodes[idx].duplicated && idx > 0; --idx)
1551 if (org_node == dfa->org_indices[idx]
1552 && constraint == dfa->nodes[idx].constraint)
1553 return idx; /* Found. */
1555 return -1; /* Not found. */
1558 /* Duplicate the node whose index is ORG_IDX and set the constraint CONSTRAINT.
1559 Return the index of the new node, or -1 if insufficient storage is
1560 available. */
1562 static int
1563 duplicate_node (re_dfa_t *dfa, int org_idx, unsigned int constraint)
1565 int dup_idx = re_dfa_add_node (dfa, dfa->nodes[org_idx]);
1566 if (BE (dup_idx != -1, 1))
1568 dfa->nodes[dup_idx].constraint = constraint;
1569 dfa->nodes[dup_idx].constraint |= dfa->nodes[org_idx].constraint;
1570 dfa->nodes[dup_idx].duplicated = 1;
1572 /* Store the index of the original node. */
1573 dfa->org_indices[dup_idx] = org_idx;
1575 return dup_idx;
1578 static reg_errcode_t
1579 calc_inveclosure (re_dfa_t *dfa)
1581 int src, idx, ret;
1582 for (idx = 0; idx < dfa->nodes_len; ++idx)
1583 re_node_set_init_empty (dfa->inveclosures + idx);
1585 for (src = 0; src < dfa->nodes_len; ++src)
1587 int *elems = dfa->eclosures[src].elems;
1588 for (idx = 0; idx < dfa->eclosures[src].nelem; ++idx)
1590 ret = re_node_set_insert_last (dfa->inveclosures + elems[idx], src);
1591 if (BE (ret == -1, 0))
1592 return REG_ESPACE;
1596 return REG_NOERROR;
1599 /* Calculate "eclosure" for all the node in DFA. */
1601 static reg_errcode_t
1602 calc_eclosure (re_dfa_t *dfa)
1604 int node_idx, incomplete;
1605 #ifdef DEBUG
1606 assert (dfa->nodes_len > 0);
1607 #endif
1608 incomplete = 0;
1609 /* For each nodes, calculate epsilon closure. */
1610 for (node_idx = 0; ; ++node_idx)
1612 reg_errcode_t err;
1613 re_node_set eclosure_elem;
1614 if (node_idx == dfa->nodes_len)
1616 if (!incomplete)
1617 break;
1618 incomplete = 0;
1619 node_idx = 0;
1622 #ifdef DEBUG
1623 assert (dfa->eclosures[node_idx].nelem != -1);
1624 #endif
1626 /* If we have already calculated, skip it. */
1627 if (dfa->eclosures[node_idx].nelem != 0)
1628 continue;
1629 /* Calculate epsilon closure of `node_idx'. */
1630 err = calc_eclosure_iter (&eclosure_elem, dfa, node_idx, 1);
1631 if (BE (err != REG_NOERROR, 0))
1632 return err;
1634 if (dfa->eclosures[node_idx].nelem == 0)
1636 incomplete = 1;
1637 re_node_set_free (&eclosure_elem);
1640 return REG_NOERROR;
1643 /* Calculate epsilon closure of NODE. */
1645 static reg_errcode_t
1646 calc_eclosure_iter (re_node_set *new_set, re_dfa_t *dfa, int node, int root)
1648 reg_errcode_t err;
1649 int i;
1650 re_node_set eclosure;
1651 int ret;
1652 int incomplete = 0;
1653 err = re_node_set_alloc (&eclosure, dfa->edests[node].nelem + 1);
1654 if (BE (err != REG_NOERROR, 0))
1655 return err;
1657 /* This indicates that we are calculating this node now.
1658 We reference this value to avoid infinite loop. */
1659 dfa->eclosures[node].nelem = -1;
1661 /* If the current node has constraints, duplicate all nodes
1662 since they must inherit the constraints. */
1663 if (dfa->nodes[node].constraint
1664 && dfa->edests[node].nelem
1665 && !dfa->nodes[dfa->edests[node].elems[0]].duplicated)
1667 err = duplicate_node_closure (dfa, node, node, node,
1668 dfa->nodes[node].constraint);
1669 if (BE (err != REG_NOERROR, 0))
1670 return err;
1673 /* Expand each epsilon destination nodes. */
1674 if (IS_EPSILON_NODE(dfa->nodes[node].type))
1675 for (i = 0; i < dfa->edests[node].nelem; ++i)
1677 re_node_set eclosure_elem;
1678 int edest = dfa->edests[node].elems[i];
1679 /* If calculating the epsilon closure of `edest' is in progress,
1680 return intermediate result. */
1681 if (dfa->eclosures[edest].nelem == -1)
1683 incomplete = 1;
1684 continue;
1686 /* If we haven't calculated the epsilon closure of `edest' yet,
1687 calculate now. Otherwise use calculated epsilon closure. */
1688 if (dfa->eclosures[edest].nelem == 0)
1690 err = calc_eclosure_iter (&eclosure_elem, dfa, edest, 0);
1691 if (BE (err != REG_NOERROR, 0))
1692 return err;
1694 else
1695 eclosure_elem = dfa->eclosures[edest];
1696 /* Merge the epsilon closure of `edest'. */
1697 err = re_node_set_merge (&eclosure, &eclosure_elem);
1698 if (BE (err != REG_NOERROR, 0))
1699 return err;
1700 /* If the epsilon closure of `edest' is incomplete,
1701 the epsilon closure of this node is also incomplete. */
1702 if (dfa->eclosures[edest].nelem == 0)
1704 incomplete = 1;
1705 re_node_set_free (&eclosure_elem);
1709 /* An epsilon closure includes itself. */
1710 ret = re_node_set_insert (&eclosure, node);
1711 if (BE (ret < 0, 0))
1712 return REG_ESPACE;
1713 if (incomplete && !root)
1714 dfa->eclosures[node].nelem = 0;
1715 else
1716 dfa->eclosures[node] = eclosure;
1717 *new_set = eclosure;
1718 return REG_NOERROR;
1721 /* Functions for token which are used in the parser. */
1723 /* Fetch a token from INPUT.
1724 We must not use this function inside bracket expressions. */
1726 static void
1727 internal_function
1728 fetch_token (re_token_t *result, re_string_t *input, reg_syntax_t syntax)
1730 re_string_skip_bytes (input, peek_token (result, input, syntax));
1733 /* Peek a token from INPUT, and return the length of the token.
1734 We must not use this function inside bracket expressions. */
1736 static int
1737 internal_function
1738 peek_token (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
1740 unsigned char c;
1742 if (re_string_eoi (input))
1744 token->type = END_OF_RE;
1745 return 0;
1748 c = re_string_peek_byte (input, 0);
1749 token->opr.c = c;
1751 token->word_char = 0;
1752 #ifdef RE_ENABLE_I18N
1753 token->mb_partial = 0;
1754 if (input->mb_cur_max > 1 &&
1755 !re_string_first_byte (input, re_string_cur_idx (input)))
1757 token->type = CHARACTER;
1758 token->mb_partial = 1;
1759 return 1;
1761 #endif
1762 if (c == '\\')
1764 unsigned char c2;
1765 if (re_string_cur_idx (input) + 1 >= re_string_length (input))
1767 token->type = BACK_SLASH;
1768 return 1;
1771 c2 = re_string_peek_byte_case (input, 1);
1772 token->opr.c = c2;
1773 token->type = CHARACTER;
1774 #ifdef RE_ENABLE_I18N
1775 if (input->mb_cur_max > 1)
1777 wint_t wc = re_string_wchar_at (input,
1778 re_string_cur_idx (input) + 1);
1779 token->word_char = IS_WIDE_WORD_CHAR (wc) != 0;
1781 else
1782 #endif
1783 token->word_char = IS_WORD_CHAR (c2) != 0;
1785 switch (c2)
1787 case '|':
1788 if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_NO_BK_VBAR))
1789 token->type = OP_ALT;
1790 break;
1791 case '1': case '2': case '3': case '4': case '5':
1792 case '6': case '7': case '8': case '9':
1793 if (!(syntax & RE_NO_BK_REFS))
1795 token->type = OP_BACK_REF;
1796 token->opr.idx = c2 - '1';
1798 break;
1799 case '<':
1800 if (!(syntax & RE_NO_GNU_OPS))
1802 token->type = ANCHOR;
1803 token->opr.ctx_type = WORD_FIRST;
1805 break;
1806 case '>':
1807 if (!(syntax & RE_NO_GNU_OPS))
1809 token->type = ANCHOR;
1810 token->opr.ctx_type = WORD_LAST;
1812 break;
1813 case 'b':
1814 if (!(syntax & RE_NO_GNU_OPS))
1816 token->type = ANCHOR;
1817 token->opr.ctx_type = WORD_DELIM;
1819 break;
1820 case 'B':
1821 if (!(syntax & RE_NO_GNU_OPS))
1823 token->type = ANCHOR;
1824 token->opr.ctx_type = NOT_WORD_DELIM;
1826 break;
1827 case 'w':
1828 if (!(syntax & RE_NO_GNU_OPS))
1829 token->type = OP_WORD;
1830 break;
1831 case 'W':
1832 if (!(syntax & RE_NO_GNU_OPS))
1833 token->type = OP_NOTWORD;
1834 break;
1835 case 's':
1836 if (!(syntax & RE_NO_GNU_OPS))
1837 token->type = OP_SPACE;
1838 break;
1839 case 'S':
1840 if (!(syntax & RE_NO_GNU_OPS))
1841 token->type = OP_NOTSPACE;
1842 break;
1843 case '`':
1844 if (!(syntax & RE_NO_GNU_OPS))
1846 token->type = ANCHOR;
1847 token->opr.ctx_type = BUF_FIRST;
1849 break;
1850 case '\'':
1851 if (!(syntax & RE_NO_GNU_OPS))
1853 token->type = ANCHOR;
1854 token->opr.ctx_type = BUF_LAST;
1856 break;
1857 case '(':
1858 if (!(syntax & RE_NO_BK_PARENS))
1859 token->type = OP_OPEN_SUBEXP;
1860 break;
1861 case ')':
1862 if (!(syntax & RE_NO_BK_PARENS))
1863 token->type = OP_CLOSE_SUBEXP;
1864 break;
1865 case '+':
1866 if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_BK_PLUS_QM))
1867 token->type = OP_DUP_PLUS;
1868 break;
1869 case '?':
1870 if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_BK_PLUS_QM))
1871 token->type = OP_DUP_QUESTION;
1872 break;
1873 case '{':
1874 if ((syntax & RE_INTERVALS) && (!(syntax & RE_NO_BK_BRACES)))
1875 token->type = OP_OPEN_DUP_NUM;
1876 break;
1877 case '}':
1878 if ((syntax & RE_INTERVALS) && (!(syntax & RE_NO_BK_BRACES)))
1879 token->type = OP_CLOSE_DUP_NUM;
1880 break;
1881 default:
1882 break;
1884 return 2;
1887 token->type = CHARACTER;
1888 #ifdef RE_ENABLE_I18N
1889 if (input->mb_cur_max > 1)
1891 wint_t wc = re_string_wchar_at (input, re_string_cur_idx (input));
1892 token->word_char = IS_WIDE_WORD_CHAR (wc) != 0;
1894 else
1895 #endif
1896 token->word_char = IS_WORD_CHAR (token->opr.c);
1898 switch (c)
1900 case '\n':
1901 if (syntax & RE_NEWLINE_ALT)
1902 token->type = OP_ALT;
1903 break;
1904 case '|':
1905 if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_NO_BK_VBAR))
1906 token->type = OP_ALT;
1907 break;
1908 case '*':
1909 token->type = OP_DUP_ASTERISK;
1910 break;
1911 case '+':
1912 if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_BK_PLUS_QM))
1913 token->type = OP_DUP_PLUS;
1914 break;
1915 case '?':
1916 if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_BK_PLUS_QM))
1917 token->type = OP_DUP_QUESTION;
1918 break;
1919 case '{':
1920 if ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
1921 token->type = OP_OPEN_DUP_NUM;
1922 break;
1923 case '}':
1924 if ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
1925 token->type = OP_CLOSE_DUP_NUM;
1926 break;
1927 case '(':
1928 if (syntax & RE_NO_BK_PARENS)
1929 token->type = OP_OPEN_SUBEXP;
1930 break;
1931 case ')':
1932 if (syntax & RE_NO_BK_PARENS)
1933 token->type = OP_CLOSE_SUBEXP;
1934 break;
1935 case '[':
1936 token->type = OP_OPEN_BRACKET;
1937 break;
1938 case '.':
1939 token->type = OP_PERIOD;
1940 break;
1941 case '^':
1942 if (!(syntax & (RE_CONTEXT_INDEP_ANCHORS | RE_CARET_ANCHORS_HERE)) &&
1943 re_string_cur_idx (input) != 0)
1945 char prev = re_string_peek_byte (input, -1);
1946 if (!(syntax & RE_NEWLINE_ALT) || prev != '\n')
1947 break;
1949 token->type = ANCHOR;
1950 token->opr.ctx_type = LINE_FIRST;
1951 break;
1952 case '$':
1953 if (!(syntax & RE_CONTEXT_INDEP_ANCHORS) &&
1954 re_string_cur_idx (input) + 1 != re_string_length (input))
1956 re_token_t next;
1957 re_string_skip_bytes (input, 1);
1958 peek_token (&next, input, syntax);
1959 re_string_skip_bytes (input, -1);
1960 if (next.type != OP_ALT && next.type != OP_CLOSE_SUBEXP)
1961 break;
1963 token->type = ANCHOR;
1964 token->opr.ctx_type = LINE_LAST;
1965 break;
1966 default:
1967 break;
1969 return 1;
1972 /* Peek a token from INPUT, and return the length of the token.
1973 We must not use this function out of bracket expressions. */
1975 static int
1976 internal_function
1977 peek_token_bracket (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
1979 unsigned char c;
1980 if (re_string_eoi (input))
1982 token->type = END_OF_RE;
1983 return 0;
1985 c = re_string_peek_byte (input, 0);
1986 token->opr.c = c;
1988 #ifdef RE_ENABLE_I18N
1989 if (input->mb_cur_max > 1 &&
1990 !re_string_first_byte (input, re_string_cur_idx (input)))
1992 token->type = CHARACTER;
1993 return 1;
1995 #endif /* RE_ENABLE_I18N */
1997 if (c == '\\' && (syntax & RE_BACKSLASH_ESCAPE_IN_LISTS)
1998 && re_string_cur_idx (input) + 1 < re_string_length (input))
2000 /* In this case, '\' escape a character. */
2001 unsigned char c2;
2002 re_string_skip_bytes (input, 1);
2003 c2 = re_string_peek_byte (input, 0);
2004 token->opr.c = c2;
2005 token->type = CHARACTER;
2006 return 1;
2008 if (c == '[') /* '[' is a special char in a bracket exps. */
2010 unsigned char c2;
2011 int token_len;
2012 if (re_string_cur_idx (input) + 1 < re_string_length (input))
2013 c2 = re_string_peek_byte (input, 1);
2014 else
2015 c2 = 0;
2016 token->opr.c = c2;
2017 token_len = 2;
2018 switch (c2)
2020 case '.':
2021 token->type = OP_OPEN_COLL_ELEM;
2022 break;
2023 case '=':
2024 token->type = OP_OPEN_EQUIV_CLASS;
2025 break;
2026 case ':':
2027 if (syntax & RE_CHAR_CLASSES)
2029 token->type = OP_OPEN_CHAR_CLASS;
2030 break;
2032 /* else fall through. */
2033 default:
2034 token->type = CHARACTER;
2035 token->opr.c = c;
2036 token_len = 1;
2037 break;
2039 return token_len;
2041 switch (c)
2043 case '-':
2044 token->type = OP_CHARSET_RANGE;
2045 break;
2046 case ']':
2047 token->type = OP_CLOSE_BRACKET;
2048 break;
2049 case '^':
2050 token->type = OP_NON_MATCH_LIST;
2051 break;
2052 default:
2053 token->type = CHARACTER;
2055 return 1;
2058 /* Functions for parser. */
2060 /* Entry point of the parser.
2061 Parse the regular expression REGEXP and return the structure tree.
2062 If an error is occured, ERR is set by error code, and return NULL.
2063 This function build the following tree, from regular expression <reg_exp>:
2067 <reg_exp> EOR
2069 CAT means concatenation.
2070 EOR means end of regular expression. */
2072 static bin_tree_t *
2073 parse (re_string_t *regexp, regex_t *preg, reg_syntax_t syntax,
2074 reg_errcode_t *err)
2076 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2077 bin_tree_t *tree, *eor, *root;
2078 re_token_t current_token;
2079 dfa->syntax = syntax;
2080 fetch_token (&current_token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2081 tree = parse_reg_exp (regexp, preg, &current_token, syntax, 0, err);
2082 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2083 return NULL;
2084 eor = create_tree (dfa, NULL, NULL, END_OF_RE);
2085 if (tree != NULL)
2086 root = create_tree (dfa, tree, eor, CONCAT);
2087 else
2088 root = eor;
2089 if (BE (eor == NULL || root == NULL, 0))
2091 *err = REG_ESPACE;
2092 return NULL;
2094 return root;
2097 /* This function build the following tree, from regular expression
2098 <branch1>|<branch2>:
2102 <branch1> <branch2>
2104 ALT means alternative, which represents the operator `|'. */
2106 static bin_tree_t *
2107 parse_reg_exp (re_string_t *regexp, regex_t *preg, re_token_t *token,
2108 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2110 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2111 bin_tree_t *tree, *branch = NULL;
2112 tree = parse_branch (regexp, preg, token, syntax, nest, err);
2113 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2114 return NULL;
2116 while (token->type == OP_ALT)
2118 fetch_token (token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2119 if (token->type != OP_ALT && token->type != END_OF_RE
2120 && (nest == 0 || token->type != OP_CLOSE_SUBEXP))
2122 branch = parse_branch (regexp, preg, token, syntax, nest, err);
2123 if (BE (*err != REG_NOERROR && branch == NULL, 0))
2124 return NULL;
2126 else
2127 branch = NULL;
2128 tree = create_tree (dfa, tree, branch, OP_ALT);
2129 if (BE (tree == NULL, 0))
2131 *err = REG_ESPACE;
2132 return NULL;
2135 return tree;
2138 /* This function build the following tree, from regular expression
2139 <exp1><exp2>:
2143 <exp1> <exp2>
2145 CAT means concatenation. */
2147 static bin_tree_t *
2148 parse_branch (re_string_t *regexp, regex_t *preg, re_token_t *token,
2149 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2151 bin_tree_t *tree, *exp;
2152 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2153 tree = parse_expression (regexp, preg, token, syntax, nest, err);
2154 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2155 return NULL;
2157 while (token->type != OP_ALT && token->type != END_OF_RE
2158 && (nest == 0 || token->type != OP_CLOSE_SUBEXP))
2160 exp = parse_expression (regexp, preg, token, syntax, nest, err);
2161 if (BE (*err != REG_NOERROR && exp == NULL, 0))
2163 return NULL;
2165 if (tree != NULL && exp != NULL)
2167 tree = create_tree (dfa, tree, exp, CONCAT);
2168 if (tree == NULL)
2170 *err = REG_ESPACE;
2171 return NULL;
2174 else if (tree == NULL)
2175 tree = exp;
2176 /* Otherwise exp == NULL, we don't need to create new tree. */
2178 return tree;
2181 /* This function build the following tree, from regular expression a*:
2187 static bin_tree_t *
2188 parse_expression (re_string_t *regexp, regex_t *preg, re_token_t *token,
2189 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2191 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2192 bin_tree_t *tree;
2193 switch (token->type)
2195 case CHARACTER:
2196 tree = create_token_tree (dfa, NULL, NULL, token);
2197 if (BE (tree == NULL, 0))
2199 *err = REG_ESPACE;
2200 return NULL;
2202 #ifdef RE_ENABLE_I18N
2203 if (dfa->mb_cur_max > 1)
2205 while (!re_string_eoi (regexp)
2206 && !re_string_first_byte (regexp, re_string_cur_idx (regexp)))
2208 bin_tree_t *mbc_remain;
2209 fetch_token (token, regexp, syntax);
2210 mbc_remain = create_token_tree (dfa, NULL, NULL, token);
2211 tree = create_tree (dfa, tree, mbc_remain, CONCAT);
2212 if (BE (mbc_remain == NULL || tree == NULL, 0))
2214 *err = REG_ESPACE;
2215 return NULL;
2219 #endif
2220 break;
2221 case OP_OPEN_SUBEXP:
2222 tree = parse_sub_exp (regexp, preg, token, syntax, nest + 1, err);
2223 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2224 return NULL;
2225 break;
2226 case OP_OPEN_BRACKET:
2227 tree = parse_bracket_exp (regexp, dfa, token, syntax, err);
2228 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2229 return NULL;
2230 break;
2231 case OP_BACK_REF:
2232 if (!BE (dfa->completed_bkref_map & (1 << token->opr.idx), 1))
2234 *err = REG_ESUBREG;
2235 return NULL;
2237 dfa->used_bkref_map |= 1 << token->opr.idx;
2238 tree = create_token_tree (dfa, NULL, NULL, token);
2239 if (BE (tree == NULL, 0))
2241 *err = REG_ESPACE;
2242 return NULL;
2244 ++dfa->nbackref;
2245 dfa->has_mb_node = 1;
2246 break;
2247 case OP_OPEN_DUP_NUM:
2248 if (syntax & RE_CONTEXT_INVALID_DUP)
2250 *err = REG_BADRPT;
2251 return NULL;
2253 /* FALLTHROUGH */
2254 case OP_DUP_ASTERISK:
2255 case OP_DUP_PLUS:
2256 case OP_DUP_QUESTION:
2257 if (syntax & RE_CONTEXT_INVALID_OPS)
2259 *err = REG_BADRPT;
2260 return NULL;
2262 else if (syntax & RE_CONTEXT_INDEP_OPS)
2264 fetch_token (token, regexp, syntax);
2265 return parse_expression (regexp, preg, token, syntax, nest, err);
2267 /* else fall through */
2268 case OP_CLOSE_SUBEXP:
2269 if ((token->type == OP_CLOSE_SUBEXP) &&
2270 !(syntax & RE_UNMATCHED_RIGHT_PAREN_ORD))
2272 *err = REG_ERPAREN;
2273 return NULL;
2275 /* else fall through */
2276 case OP_CLOSE_DUP_NUM:
2277 /* We treat it as a normal character. */
2279 /* Then we can these characters as normal characters. */
2280 token->type = CHARACTER;
2281 /* mb_partial and word_char bits should be initialized already
2282 by peek_token. */
2283 tree = create_token_tree (dfa, NULL, NULL, token);
2284 if (BE (tree == NULL, 0))
2286 *err = REG_ESPACE;
2287 return NULL;
2289 break;
2290 case ANCHOR:
2291 if ((token->opr.ctx_type
2292 & (WORD_DELIM | NOT_WORD_DELIM | WORD_FIRST | WORD_LAST))
2293 && dfa->word_ops_used == 0)
2294 init_word_char (dfa);
2295 if (token->opr.ctx_type == WORD_DELIM
2296 || token->opr.ctx_type == NOT_WORD_DELIM)
2298 bin_tree_t *tree_first, *tree_last;
2299 if (token->opr.ctx_type == WORD_DELIM)
2301 token->opr.ctx_type = WORD_FIRST;
2302 tree_first = create_token_tree (dfa, NULL, NULL, token);
2303 token->opr.ctx_type = WORD_LAST;
2305 else
2307 token->opr.ctx_type = INSIDE_WORD;
2308 tree_first = create_token_tree (dfa, NULL, NULL, token);
2309 token->opr.ctx_type = INSIDE_NOTWORD;
2311 tree_last = create_token_tree (dfa, NULL, NULL, token);
2312 tree = create_tree (dfa, tree_first, tree_last, OP_ALT);
2313 if (BE (tree_first == NULL || tree_last == NULL || tree == NULL, 0))
2315 *err = REG_ESPACE;
2316 return NULL;
2319 else
2321 tree = create_token_tree (dfa, NULL, NULL, token);
2322 if (BE (tree == NULL, 0))
2324 *err = REG_ESPACE;
2325 return NULL;
2328 /* We must return here, since ANCHORs can't be followed
2329 by repetition operators.
2330 eg. RE"^*" is invalid or "<ANCHOR(^)><CHAR(*)>",
2331 it must not be "<ANCHOR(^)><REPEAT(*)>". */
2332 fetch_token (token, regexp, syntax);
2333 return tree;
2334 case OP_PERIOD:
2335 tree = create_token_tree (dfa, NULL, NULL, token);
2336 if (BE (tree == NULL, 0))
2338 *err = REG_ESPACE;
2339 return NULL;
2341 if (dfa->mb_cur_max > 1)
2342 dfa->has_mb_node = 1;
2343 break;
2344 case OP_WORD:
2345 case OP_NOTWORD:
2346 tree = build_charclass_op (dfa, regexp->trans,
2347 (const unsigned char *) "alnum",
2348 (const unsigned char *) "_",
2349 token->type == OP_NOTWORD, err);
2350 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2351 return NULL;
2352 break;
2353 case OP_SPACE:
2354 case OP_NOTSPACE:
2355 tree = build_charclass_op (dfa, regexp->trans,
2356 (const unsigned char *) "space",
2357 (const unsigned char *) "",
2358 token->type == OP_NOTSPACE, err);
2359 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2360 return NULL;
2361 break;
2362 case OP_ALT:
2363 case END_OF_RE:
2364 return NULL;
2365 case BACK_SLASH:
2366 *err = REG_EESCAPE;
2367 return NULL;
2368 default:
2369 /* Must not happen? */
2370 #ifdef DEBUG
2371 assert (0);
2372 #endif
2373 return NULL;
2375 fetch_token (token, regexp, syntax);
2377 while (token->type == OP_DUP_ASTERISK || token->type == OP_DUP_PLUS
2378 || token->type == OP_DUP_QUESTION || token->type == OP_OPEN_DUP_NUM)
2380 tree = parse_dup_op (tree, regexp, dfa, token, syntax, err);
2381 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2382 return NULL;
2383 /* In BRE consecutive duplications are not allowed. */
2384 if ((syntax & RE_CONTEXT_INVALID_DUP)
2385 && (token->type == OP_DUP_ASTERISK
2386 || token->type == OP_OPEN_DUP_NUM))
2388 *err = REG_BADRPT;
2389 return NULL;
2393 return tree;
2396 /* This function build the following tree, from regular expression
2397 (<reg_exp>):
2398 SUBEXP
2400 <reg_exp>
2403 static bin_tree_t *
2404 parse_sub_exp (re_string_t *regexp, regex_t *preg, re_token_t *token,
2405 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2407 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2408 bin_tree_t *tree;
2409 size_t cur_nsub;
2410 cur_nsub = preg->re_nsub++;
2412 fetch_token (token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2414 /* The subexpression may be a null string. */
2415 if (token->type == OP_CLOSE_SUBEXP)
2416 tree = NULL;
2417 else
2419 tree = parse_reg_exp (regexp, preg, token, syntax, nest, err);
2420 if (BE (*err == REG_NOERROR && token->type != OP_CLOSE_SUBEXP, 0))
2422 if (tree != NULL)
2423 free_tree (NULL, tree);
2424 *err = REG_EPAREN;
2426 if (BE (*err != REG_NOERROR, 0))
2427 return NULL;
2430 if (cur_nsub <= '9' - '1')
2431 dfa->completed_bkref_map |= 1 << cur_nsub;
2433 tree = create_tree (dfa, tree, NULL, SUBEXP);
2434 if (BE (tree == NULL, 0))
2436 *err = REG_ESPACE;
2437 return NULL;
2439 tree->token.opr.idx = cur_nsub;
2440 return tree;
2443 /* This function parse repetition operators like "*", "+", "{1,3}" etc. */
2445 static bin_tree_t *
2446 parse_dup_op (bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa,
2447 re_token_t *token, reg_syntax_t syntax, reg_errcode_t *err)
2449 bin_tree_t *tree = NULL, *old_tree = NULL;
2450 int i, start, end, start_idx = re_string_cur_idx (regexp);
2451 re_token_t start_token = *token;
2453 if (token->type == OP_OPEN_DUP_NUM)
2455 end = 0;
2456 start = fetch_number (regexp, token, syntax);
2457 if (start == -1)
2459 if (token->type == CHARACTER && token->opr.c == ',')
2460 start = 0; /* We treat "{,m}" as "{0,m}". */
2461 else
2463 *err = REG_BADBR; /* <re>{} is invalid. */
2464 return NULL;
2467 if (BE (start != -2, 1))
2469 /* We treat "{n}" as "{n,n}". */
2470 end = ((token->type == OP_CLOSE_DUP_NUM) ? start
2471 : ((token->type == CHARACTER && token->opr.c == ',')
2472 ? fetch_number (regexp, token, syntax) : -2));
2474 if (BE (start == -2 || end == -2, 0))
2476 /* Invalid sequence. */
2477 if (BE (!(syntax & RE_INVALID_INTERVAL_ORD), 0))
2479 if (token->type == END_OF_RE)
2480 *err = REG_EBRACE;
2481 else
2482 *err = REG_BADBR;
2484 return NULL;
2487 /* If the syntax bit is set, rollback. */
2488 re_string_set_index (regexp, start_idx);
2489 *token = start_token;
2490 token->type = CHARACTER;
2491 /* mb_partial and word_char bits should be already initialized by
2492 peek_token. */
2493 return elem;
2496 if (BE ((end != -1 && start > end) || token->type != OP_CLOSE_DUP_NUM, 0))
2498 /* First number greater than second. */
2499 *err = REG_BADBR;
2500 return NULL;
2503 else
2505 start = (token->type == OP_DUP_PLUS) ? 1 : 0;
2506 end = (token->type == OP_DUP_QUESTION) ? 1 : -1;
2509 fetch_token (token, regexp, syntax);
2511 if (BE (elem == NULL, 0))
2512 return NULL;
2513 if (BE (start == 0 && end == 0, 0))
2515 postorder (elem, free_tree, NULL);
2516 return NULL;
2519 /* Extract "<re>{n,m}" to "<re><re>...<re><re>{0,<m-n>}". */
2520 if (BE (start > 0, 0))
2522 tree = elem;
2523 for (i = 2; i <= start; ++i)
2525 elem = duplicate_tree (elem, dfa);
2526 tree = create_tree (dfa, tree, elem, CONCAT);
2527 if (BE (elem == NULL || tree == NULL, 0))
2528 goto parse_dup_op_espace;
2531 if (start == end)
2532 return tree;
2534 /* Duplicate ELEM before it is marked optional. */
2535 elem = duplicate_tree (elem, dfa);
2536 old_tree = tree;
2538 else
2539 old_tree = NULL;
2541 if (elem->token.type == SUBEXP)
2542 postorder (elem, mark_opt_subexp, (void *) (long) elem->token.opr.idx);
2544 tree = create_tree (dfa, elem, NULL, (end == -1 ? OP_DUP_ASTERISK : OP_ALT));
2545 if (BE (tree == NULL, 0))
2546 goto parse_dup_op_espace;
2548 /* This loop is actually executed only when end != -1,
2549 to rewrite <re>{0,n} as (<re>(<re>...<re>?)?)?... We have
2550 already created the start+1-th copy. */
2551 for (i = start + 2; i <= end; ++i)
2553 elem = duplicate_tree (elem, dfa);
2554 tree = create_tree (dfa, tree, elem, CONCAT);
2555 if (BE (elem == NULL || tree == NULL, 0))
2556 goto parse_dup_op_espace;
2558 tree = create_tree (dfa, tree, NULL, OP_ALT);
2559 if (BE (tree == NULL, 0))
2560 goto parse_dup_op_espace;
2563 if (old_tree)
2564 tree = create_tree (dfa, old_tree, tree, CONCAT);
2566 return tree;
2568 parse_dup_op_espace:
2569 *err = REG_ESPACE;
2570 return NULL;
2573 /* Size of the names for collating symbol/equivalence_class/character_class.
2574 I'm not sure, but maybe enough. */
2575 #define BRACKET_NAME_BUF_SIZE 32
2577 #ifndef _LIBC
2578 /* Local function for parse_bracket_exp only used in case of NOT _LIBC.
2579 Build the range expression which starts from START_ELEM, and ends
2580 at END_ELEM. The result are written to MBCSET and SBCSET.
2581 RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2582 mbcset->range_ends, is a pointer argument sinse we may
2583 update it. */
2585 static reg_errcode_t
2586 internal_function
2587 # ifdef RE_ENABLE_I18N
2588 build_range_exp (bitset_t sbcset, re_charset_t *mbcset, int *range_alloc,
2589 bracket_elem_t *start_elem, bracket_elem_t *end_elem)
2590 # else /* not RE_ENABLE_I18N */
2591 build_range_exp (bitset_t sbcset, bracket_elem_t *start_elem,
2592 bracket_elem_t *end_elem)
2593 # endif /* not RE_ENABLE_I18N */
2595 unsigned int start_ch, end_ch;
2596 /* Equivalence Classes and Character Classes can't be a range start/end. */
2597 if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2598 || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2600 return REG_ERANGE;
2602 /* We can handle no multi character collating elements without libc
2603 support. */
2604 if (BE ((start_elem->type == COLL_SYM
2605 && strlen ((char *) start_elem->opr.name) > 1)
2606 || (end_elem->type == COLL_SYM
2607 && strlen ((char *) end_elem->opr.name) > 1), 0))
2608 return REG_ECOLLATE;
2610 # ifdef RE_ENABLE_I18N
2612 wchar_t wc;
2613 wint_t start_wc;
2614 wint_t end_wc;
2615 wchar_t cmp_buf[6] = {L'\0', L'\0', L'\0', L'\0', L'\0', L'\0'};
2617 start_ch = ((start_elem->type == SB_CHAR) ? start_elem->opr.ch
2618 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2619 : 0));
2620 end_ch = ((end_elem->type == SB_CHAR) ? end_elem->opr.ch
2621 : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2622 : 0));
2623 start_wc = ((start_elem->type == SB_CHAR || start_elem->type == COLL_SYM)
2624 ? __btowc (start_ch) : start_elem->opr.wch);
2625 end_wc = ((end_elem->type == SB_CHAR || end_elem->type == COLL_SYM)
2626 ? __btowc (end_ch) : end_elem->opr.wch);
2627 if (start_wc == WEOF || end_wc == WEOF)
2628 return REG_ECOLLATE;
2629 cmp_buf[0] = start_wc;
2630 cmp_buf[4] = end_wc;
2631 if (wcscoll (cmp_buf, cmp_buf + 4) > 0)
2632 return REG_ERANGE;
2634 /* Got valid collation sequence values, add them as a new entry.
2635 However, for !_LIBC we have no collation elements: if the
2636 character set is single byte, the single byte character set
2637 that we build below suffices. parse_bracket_exp passes
2638 no MBCSET if dfa->mb_cur_max == 1. */
2639 if (mbcset)
2641 /* Check the space of the arrays. */
2642 if (BE (*range_alloc == mbcset->nranges, 0))
2644 /* There is not enough space, need realloc. */
2645 wchar_t *new_array_start, *new_array_end;
2646 int new_nranges;
2648 /* +1 in case of mbcset->nranges is 0. */
2649 new_nranges = 2 * mbcset->nranges + 1;
2650 /* Use realloc since mbcset->range_starts and mbcset->range_ends
2651 are NULL if *range_alloc == 0. */
2652 new_array_start = re_realloc (mbcset->range_starts, wchar_t,
2653 new_nranges);
2654 new_array_end = re_realloc (mbcset->range_ends, wchar_t,
2655 new_nranges);
2657 if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2658 return REG_ESPACE;
2660 mbcset->range_starts = new_array_start;
2661 mbcset->range_ends = new_array_end;
2662 *range_alloc = new_nranges;
2665 mbcset->range_starts[mbcset->nranges] = start_wc;
2666 mbcset->range_ends[mbcset->nranges++] = end_wc;
2669 /* Build the table for single byte characters. */
2670 for (wc = 0; wc < SBC_MAX; ++wc)
2672 cmp_buf[2] = wc;
2673 if (wcscoll (cmp_buf, cmp_buf + 2) <= 0
2674 && wcscoll (cmp_buf + 2, cmp_buf + 4) <= 0)
2675 bitset_set (sbcset, wc);
2678 # else /* not RE_ENABLE_I18N */
2680 unsigned int ch;
2681 start_ch = ((start_elem->type == SB_CHAR ) ? start_elem->opr.ch
2682 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2683 : 0));
2684 end_ch = ((end_elem->type == SB_CHAR ) ? end_elem->opr.ch
2685 : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2686 : 0));
2687 if (start_ch > end_ch)
2688 return REG_ERANGE;
2689 /* Build the table for single byte characters. */
2690 for (ch = 0; ch < SBC_MAX; ++ch)
2691 if (start_ch <= ch && ch <= end_ch)
2692 bitset_set (sbcset, ch);
2694 # endif /* not RE_ENABLE_I18N */
2695 return REG_NOERROR;
2697 #endif /* not _LIBC */
2699 #ifndef _LIBC
2700 /* Helper function for parse_bracket_exp only used in case of NOT _LIBC..
2701 Build the collating element which is represented by NAME.
2702 The result are written to MBCSET and SBCSET.
2703 COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
2704 pointer argument since we may update it. */
2706 static reg_errcode_t
2707 internal_function
2708 # ifdef RE_ENABLE_I18N
2709 build_collating_symbol (bitset_t sbcset, re_charset_t *mbcset,
2710 int *coll_sym_alloc, const unsigned char *name)
2711 # else /* not RE_ENABLE_I18N */
2712 build_collating_symbol (bitset_t sbcset, const unsigned char *name)
2713 # endif /* not RE_ENABLE_I18N */
2715 size_t name_len = strlen ((const char *) name);
2716 if (BE (name_len != 1, 0))
2717 return REG_ECOLLATE;
2718 else
2720 bitset_set (sbcset, name[0]);
2721 return REG_NOERROR;
2724 #endif /* not _LIBC */
2726 /* This function parse bracket expression like "[abc]", "[a-c]",
2727 "[[.a-a.]]" etc. */
2729 static bin_tree_t *
2730 parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa, re_token_t *token,
2731 reg_syntax_t syntax, reg_errcode_t *err)
2733 #ifdef _LIBC
2734 const unsigned char *collseqmb;
2735 const char *collseqwc;
2736 uint32_t nrules;
2737 int32_t table_size;
2738 const int32_t *symb_table;
2739 const unsigned char *extra;
2741 /* Local function for parse_bracket_exp used in _LIBC environement.
2742 Seek the collating symbol entry correspondings to NAME.
2743 Return the index of the symbol in the SYMB_TABLE. */
2745 auto inline int32_t
2746 __attribute ((always_inline))
2747 seek_collating_symbol_entry (name, name_len)
2748 const unsigned char *name;
2749 size_t name_len;
2751 int32_t hash = elem_hash ((const char *) name, name_len);
2752 int32_t elem = hash % table_size;
2753 if (symb_table[2 * elem] != 0)
2755 int32_t second = hash % (table_size - 2) + 1;
2759 /* First compare the hashing value. */
2760 if (symb_table[2 * elem] == hash
2761 /* Compare the length of the name. */
2762 && name_len == extra[symb_table[2 * elem + 1]]
2763 /* Compare the name. */
2764 && memcmp (name, &extra[symb_table[2 * elem + 1] + 1],
2765 name_len) == 0)
2767 /* Yep, this is the entry. */
2768 break;
2771 /* Next entry. */
2772 elem += second;
2774 while (symb_table[2 * elem] != 0);
2776 return elem;
2779 /* Local function for parse_bracket_exp used in _LIBC environment.
2780 Look up the collation sequence value of BR_ELEM.
2781 Return the value if succeeded, UINT_MAX otherwise. */
2783 auto inline unsigned int
2784 __attribute ((always_inline))
2785 lookup_collation_sequence_value (br_elem)
2786 bracket_elem_t *br_elem;
2788 if (br_elem->type == SB_CHAR)
2791 if (MB_CUR_MAX == 1)
2793 if (nrules == 0)
2794 return collseqmb[br_elem->opr.ch];
2795 else
2797 wint_t wc = __btowc (br_elem->opr.ch);
2798 return __collseq_table_lookup (collseqwc, wc);
2801 else if (br_elem->type == MB_CHAR)
2803 if (nrules != 0)
2804 return __collseq_table_lookup (collseqwc, br_elem->opr.wch);
2806 else if (br_elem->type == COLL_SYM)
2808 size_t sym_name_len = strlen ((char *) br_elem->opr.name);
2809 if (nrules != 0)
2811 int32_t elem, idx;
2812 elem = seek_collating_symbol_entry (br_elem->opr.name,
2813 sym_name_len);
2814 if (symb_table[2 * elem] != 0)
2816 /* We found the entry. */
2817 idx = symb_table[2 * elem + 1];
2818 /* Skip the name of collating element name. */
2819 idx += 1 + extra[idx];
2820 /* Skip the byte sequence of the collating element. */
2821 idx += 1 + extra[idx];
2822 /* Adjust for the alignment. */
2823 idx = (idx + 3) & ~3;
2824 /* Skip the multibyte collation sequence value. */
2825 idx += sizeof (unsigned int);
2826 /* Skip the wide char sequence of the collating element. */
2827 idx += sizeof (unsigned int) *
2828 (1 + *(unsigned int *) (extra + idx));
2829 /* Return the collation sequence value. */
2830 return *(unsigned int *) (extra + idx);
2832 else if (symb_table[2 * elem] == 0 && sym_name_len == 1)
2834 /* No valid character. Match it as a single byte
2835 character. */
2836 return collseqmb[br_elem->opr.name[0]];
2839 else if (sym_name_len == 1)
2840 return collseqmb[br_elem->opr.name[0]];
2842 return UINT_MAX;
2845 /* Local function for parse_bracket_exp used in _LIBC environement.
2846 Build the range expression which starts from START_ELEM, and ends
2847 at END_ELEM. The result are written to MBCSET and SBCSET.
2848 RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2849 mbcset->range_ends, is a pointer argument sinse we may
2850 update it. */
2852 auto inline reg_errcode_t
2853 __attribute ((always_inline))
2854 build_range_exp (sbcset, mbcset, range_alloc, start_elem, end_elem)
2855 re_charset_t *mbcset;
2856 int *range_alloc;
2857 bitset_t sbcset;
2858 bracket_elem_t *start_elem, *end_elem;
2860 unsigned int ch;
2861 uint32_t start_collseq;
2862 uint32_t end_collseq;
2864 /* Equivalence Classes and Character Classes can't be a range
2865 start/end. */
2866 if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2867 || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2869 return REG_ERANGE;
2871 start_collseq = lookup_collation_sequence_value (start_elem);
2872 end_collseq = lookup_collation_sequence_value (end_elem);
2873 /* Check start/end collation sequence values. */
2874 if (BE (start_collseq == UINT_MAX || end_collseq == UINT_MAX, 0))
2875 return REG_ECOLLATE;
2876 if (BE ((syntax & RE_NO_EMPTY_RANGES) && start_collseq > end_collseq, 0))
2877 return REG_ERANGE;
2879 /* Got valid collation sequence values, add them as a new entry.
2880 However, if we have no collation elements, and the character set
2881 is single byte, the single byte character set that we
2882 build below suffices. */
2883 if (nrules > 0 || dfa->mb_cur_max > 1)
2885 /* Check the space of the arrays. */
2886 if (BE (*range_alloc == mbcset->nranges, 0))
2888 /* There is not enough space, need realloc. */
2889 uint32_t *new_array_start;
2890 uint32_t *new_array_end;
2891 int new_nranges;
2893 /* +1 in case of mbcset->nranges is 0. */
2894 new_nranges = 2 * mbcset->nranges + 1;
2895 new_array_start = re_realloc (mbcset->range_starts, uint32_t,
2896 new_nranges);
2897 new_array_end = re_realloc (mbcset->range_ends, uint32_t,
2898 new_nranges);
2900 if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2901 return REG_ESPACE;
2903 mbcset->range_starts = new_array_start;
2904 mbcset->range_ends = new_array_end;
2905 *range_alloc = new_nranges;
2908 mbcset->range_starts[mbcset->nranges] = start_collseq;
2909 mbcset->range_ends[mbcset->nranges++] = end_collseq;
2912 /* Build the table for single byte characters. */
2913 for (ch = 0; ch < SBC_MAX; ch++)
2915 uint32_t ch_collseq;
2917 if (MB_CUR_MAX == 1)
2919 if (nrules == 0)
2920 ch_collseq = collseqmb[ch];
2921 else
2922 ch_collseq = __collseq_table_lookup (collseqwc, __btowc (ch));
2923 if (start_collseq <= ch_collseq && ch_collseq <= end_collseq)
2924 bitset_set (sbcset, ch);
2926 return REG_NOERROR;
2929 /* Local function for parse_bracket_exp used in _LIBC environement.
2930 Build the collating element which is represented by NAME.
2931 The result are written to MBCSET and SBCSET.
2932 COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
2933 pointer argument sinse we may update it. */
2935 auto inline reg_errcode_t
2936 __attribute ((always_inline))
2937 build_collating_symbol (sbcset, mbcset, coll_sym_alloc, name)
2938 re_charset_t *mbcset;
2939 int *coll_sym_alloc;
2940 bitset_t sbcset;
2941 const unsigned char *name;
2943 int32_t elem, idx;
2944 size_t name_len = strlen ((const char *) name);
2945 if (nrules != 0)
2947 elem = seek_collating_symbol_entry (name, name_len);
2948 if (symb_table[2 * elem] != 0)
2950 /* We found the entry. */
2951 idx = symb_table[2 * elem + 1];
2952 /* Skip the name of collating element name. */
2953 idx += 1 + extra[idx];
2955 else if (symb_table[2 * elem] == 0 && name_len == 1)
2957 /* No valid character, treat it as a normal
2958 character. */
2959 bitset_set (sbcset, name[0]);
2960 return REG_NOERROR;
2962 else
2963 return REG_ECOLLATE;
2965 /* Got valid collation sequence, add it as a new entry. */
2966 /* Check the space of the arrays. */
2967 if (BE (*coll_sym_alloc == mbcset->ncoll_syms, 0))
2969 /* Not enough, realloc it. */
2970 /* +1 in case of mbcset->ncoll_syms is 0. */
2971 int new_coll_sym_alloc = 2 * mbcset->ncoll_syms + 1;
2972 /* Use realloc since mbcset->coll_syms is NULL
2973 if *alloc == 0. */
2974 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t,
2975 new_coll_sym_alloc);
2976 if (BE (new_coll_syms == NULL, 0))
2977 return REG_ESPACE;
2978 mbcset->coll_syms = new_coll_syms;
2979 *coll_sym_alloc = new_coll_sym_alloc;
2981 mbcset->coll_syms[mbcset->ncoll_syms++] = idx;
2982 return REG_NOERROR;
2984 else
2986 if (BE (name_len != 1, 0))
2987 return REG_ECOLLATE;
2988 else
2990 bitset_set (sbcset, name[0]);
2991 return REG_NOERROR;
2995 #endif
2997 re_token_t br_token;
2998 re_bitset_ptr_t sbcset;
2999 #ifdef RE_ENABLE_I18N
3000 re_charset_t *mbcset;
3001 int coll_sym_alloc = 0, range_alloc = 0, mbchar_alloc = 0;
3002 int equiv_class_alloc = 0, char_class_alloc = 0;
3003 #endif /* not RE_ENABLE_I18N */
3004 int non_match = 0;
3005 bin_tree_t *work_tree;
3006 int token_len;
3007 int first_round = 1;
3008 #ifdef _LIBC
3009 collseqmb = (const unsigned char *)
3010 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQMB);
3011 nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3012 if (nrules)
3015 if (MB_CUR_MAX > 1)
3017 collseqwc = _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQWC);
3018 table_size = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_SYMB_HASH_SIZEMB);
3019 symb_table = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3020 _NL_COLLATE_SYMB_TABLEMB);
3021 extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3022 _NL_COLLATE_SYMB_EXTRAMB);
3024 #endif
3025 sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3026 #ifdef RE_ENABLE_I18N
3027 mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3028 #endif /* RE_ENABLE_I18N */
3029 #ifdef RE_ENABLE_I18N
3030 if (BE (sbcset == NULL || mbcset == NULL, 0))
3031 #else
3032 if (BE (sbcset == NULL, 0))
3033 #endif /* RE_ENABLE_I18N */
3035 re_free (sbcset);
3036 #ifdef RE_ENABLE_I18N
3037 re_free (mbcset);
3038 #endif
3039 *err = REG_ESPACE;
3040 return NULL;
3043 token_len = peek_token_bracket (token, regexp, syntax);
3044 if (BE (token->type == END_OF_RE, 0))
3046 *err = REG_BADPAT;
3047 goto parse_bracket_exp_free_return;
3049 if (token->type == OP_NON_MATCH_LIST)
3051 #ifdef RE_ENABLE_I18N
3052 mbcset->non_match = 1;
3053 #endif /* not RE_ENABLE_I18N */
3054 non_match = 1;
3055 if (syntax & RE_HAT_LISTS_NOT_NEWLINE)
3056 bitset_set (sbcset, '\n');
3057 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3058 token_len = peek_token_bracket (token, regexp, syntax);
3059 if (BE (token->type == END_OF_RE, 0))
3061 *err = REG_BADPAT;
3062 goto parse_bracket_exp_free_return;
3066 /* We treat the first ']' as a normal character. */
3067 if (token->type == OP_CLOSE_BRACKET)
3068 token->type = CHARACTER;
3070 while (1)
3072 bracket_elem_t start_elem, end_elem;
3073 unsigned char start_name_buf[BRACKET_NAME_BUF_SIZE];
3074 unsigned char end_name_buf[BRACKET_NAME_BUF_SIZE];
3075 reg_errcode_t ret;
3076 int token_len2 = 0, is_range_exp = 0;
3077 re_token_t token2;
3079 start_elem.opr.name = start_name_buf;
3080 ret = parse_bracket_element (&start_elem, regexp, token, token_len, dfa,
3081 syntax, first_round);
3082 if (BE (ret != REG_NOERROR, 0))
3084 *err = ret;
3085 goto parse_bracket_exp_free_return;
3087 first_round = 0;
3089 /* Get information about the next token. We need it in any case. */
3090 token_len = peek_token_bracket (token, regexp, syntax);
3092 /* Do not check for ranges if we know they are not allowed. */
3093 if (start_elem.type != CHAR_CLASS && start_elem.type != EQUIV_CLASS)
3095 if (BE (token->type == END_OF_RE, 0))
3097 *err = REG_EBRACK;
3098 goto parse_bracket_exp_free_return;
3100 if (token->type == OP_CHARSET_RANGE)
3102 re_string_skip_bytes (regexp, token_len); /* Skip '-'. */
3103 token_len2 = peek_token_bracket (&token2, regexp, syntax);
3104 if (BE (token2.type == END_OF_RE, 0))
3106 *err = REG_EBRACK;
3107 goto parse_bracket_exp_free_return;
3109 if (token2.type == OP_CLOSE_BRACKET)
3111 /* We treat the last '-' as a normal character. */
3112 re_string_skip_bytes (regexp, -token_len);
3113 token->type = CHARACTER;
3115 else
3116 is_range_exp = 1;
3120 if (is_range_exp == 1)
3122 end_elem.opr.name = end_name_buf;
3123 ret = parse_bracket_element (&end_elem, regexp, &token2, token_len2,
3124 dfa, syntax, 1);
3125 if (BE (ret != REG_NOERROR, 0))
3127 *err = ret;
3128 goto parse_bracket_exp_free_return;
3131 token_len = peek_token_bracket (token, regexp, syntax);
3133 #ifdef _LIBC
3134 *err = build_range_exp (sbcset, mbcset, &range_alloc,
3135 &start_elem, &end_elem);
3136 #else
3137 # ifdef RE_ENABLE_I18N
3138 *err = build_range_exp (sbcset,
3139 dfa->mb_cur_max > 1 ? mbcset : NULL,
3140 &range_alloc, &start_elem, &end_elem);
3141 # else
3142 *err = build_range_exp (sbcset, &start_elem, &end_elem);
3143 # endif
3144 #endif /* RE_ENABLE_I18N */
3145 if (BE (*err != REG_NOERROR, 0))
3146 goto parse_bracket_exp_free_return;
3148 else
3150 switch (start_elem.type)
3152 case SB_CHAR:
3153 bitset_set (sbcset, start_elem.opr.ch);
3154 break;
3155 #ifdef RE_ENABLE_I18N
3156 case MB_CHAR:
3157 /* Check whether the array has enough space. */
3158 if (BE (mbchar_alloc == mbcset->nmbchars, 0))
3160 wchar_t *new_mbchars;
3161 /* Not enough, realloc it. */
3162 /* +1 in case of mbcset->nmbchars is 0. */
3163 mbchar_alloc = 2 * mbcset->nmbchars + 1;
3164 /* Use realloc since array is NULL if *alloc == 0. */
3165 new_mbchars = re_realloc (mbcset->mbchars, wchar_t,
3166 mbchar_alloc);
3167 if (BE (new_mbchars == NULL, 0))
3168 goto parse_bracket_exp_espace;
3169 mbcset->mbchars = new_mbchars;
3171 mbcset->mbchars[mbcset->nmbchars++] = start_elem.opr.wch;
3172 break;
3173 #endif /* RE_ENABLE_I18N */
3174 case EQUIV_CLASS:
3175 *err = build_equiv_class (sbcset,
3176 #ifdef RE_ENABLE_I18N
3177 mbcset, &equiv_class_alloc,
3178 #endif /* RE_ENABLE_I18N */
3179 start_elem.opr.name);
3180 if (BE (*err != REG_NOERROR, 0))
3181 goto parse_bracket_exp_free_return;
3182 break;
3183 case COLL_SYM:
3184 *err = build_collating_symbol (sbcset,
3185 #ifdef RE_ENABLE_I18N
3186 mbcset, &coll_sym_alloc,
3187 #endif /* RE_ENABLE_I18N */
3188 start_elem.opr.name);
3189 if (BE (*err != REG_NOERROR, 0))
3190 goto parse_bracket_exp_free_return;
3191 break;
3192 case CHAR_CLASS:
3193 *err = build_charclass (regexp->trans, sbcset,
3194 #ifdef RE_ENABLE_I18N
3195 mbcset, &char_class_alloc,
3196 #endif /* RE_ENABLE_I18N */
3197 start_elem.opr.name, syntax);
3198 if (BE (*err != REG_NOERROR, 0))
3199 goto parse_bracket_exp_free_return;
3200 break;
3201 default:
3202 assert (0);
3203 break;
3206 if (BE (token->type == END_OF_RE, 0))
3208 *err = REG_EBRACK;
3209 goto parse_bracket_exp_free_return;
3211 if (token->type == OP_CLOSE_BRACKET)
3212 break;
3215 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3217 /* If it is non-matching list. */
3218 if (non_match)
3219 bitset_not (sbcset);
3221 #ifdef RE_ENABLE_I18N
3222 /* Ensure only single byte characters are set. */
3223 if (dfa->mb_cur_max > 1)
3224 bitset_mask (sbcset, dfa->sb_char);
3226 if (mbcset->nmbchars || mbcset->ncoll_syms || mbcset->nequiv_classes
3227 || mbcset->nranges || (dfa->mb_cur_max > 1 && (mbcset->nchar_classes
3228 || mbcset->non_match)))
3230 bin_tree_t *mbc_tree;
3231 int sbc_idx;
3232 /* Build a tree for complex bracket. */
3233 dfa->has_mb_node = 1;
3234 br_token.type = COMPLEX_BRACKET;
3235 br_token.opr.mbcset = mbcset;
3236 mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3237 if (BE (mbc_tree == NULL, 0))
3238 goto parse_bracket_exp_espace;
3239 for (sbc_idx = 0; sbc_idx < BITSET_WORDS; ++sbc_idx)
3240 if (sbcset[sbc_idx])
3241 break;
3242 /* If there are no bits set in sbcset, there is no point
3243 of having both SIMPLE_BRACKET and COMPLEX_BRACKET. */
3244 if (sbc_idx < BITSET_WORDS)
3246 /* Build a tree for simple bracket. */
3247 br_token.type = SIMPLE_BRACKET;
3248 br_token.opr.sbcset = sbcset;
3249 work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3250 if (BE (work_tree == NULL, 0))
3251 goto parse_bracket_exp_espace;
3253 /* Then join them by ALT node. */
3254 work_tree = create_tree (dfa, work_tree, mbc_tree, OP_ALT);
3255 if (BE (work_tree == NULL, 0))
3256 goto parse_bracket_exp_espace;
3258 else
3260 re_free (sbcset);
3261 work_tree = mbc_tree;
3264 else
3265 #endif /* not RE_ENABLE_I18N */
3267 #ifdef RE_ENABLE_I18N
3268 free_charset (mbcset);
3269 #endif
3270 /* Build a tree for simple bracket. */
3271 br_token.type = SIMPLE_BRACKET;
3272 br_token.opr.sbcset = sbcset;
3273 work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3274 if (BE (work_tree == NULL, 0))
3275 goto parse_bracket_exp_espace;
3277 return work_tree;
3279 parse_bracket_exp_espace:
3280 *err = REG_ESPACE;
3281 parse_bracket_exp_free_return:
3282 re_free (sbcset);
3283 #ifdef RE_ENABLE_I18N
3284 free_charset (mbcset);
3285 #endif /* RE_ENABLE_I18N */
3286 return NULL;
3289 /* Parse an element in the bracket expression. */
3291 static reg_errcode_t
3292 parse_bracket_element (bracket_elem_t *elem, re_string_t *regexp,
3293 re_token_t *token, int token_len, re_dfa_t *dfa,
3294 reg_syntax_t syntax, int accept_hyphen)
3296 #ifdef RE_ENABLE_I18N
3297 int cur_char_size;
3298 cur_char_size = re_string_char_size_at (regexp, re_string_cur_idx (regexp));
3299 if (cur_char_size > 1)
3301 elem->type = MB_CHAR;
3302 elem->opr.wch = re_string_wchar_at (regexp, re_string_cur_idx (regexp));
3303 re_string_skip_bytes (regexp, cur_char_size);
3304 return REG_NOERROR;
3306 #endif /* RE_ENABLE_I18N */
3307 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3308 if (token->type == OP_OPEN_COLL_ELEM || token->type == OP_OPEN_CHAR_CLASS
3309 || token->type == OP_OPEN_EQUIV_CLASS)
3310 return parse_bracket_symbol (elem, regexp, token);
3311 if (BE (token->type == OP_CHARSET_RANGE, 0) && !accept_hyphen)
3313 /* A '-' must only appear as anything but a range indicator before
3314 the closing bracket. Everything else is an error. */
3315 re_token_t token2;
3316 (void) peek_token_bracket (&token2, regexp, syntax);
3317 if (token2.type != OP_CLOSE_BRACKET)
3318 /* The actual error value is not standardized since this whole
3319 case is undefined. But ERANGE makes good sense. */
3320 return REG_ERANGE;
3322 elem->type = SB_CHAR;
3323 elem->opr.ch = token->opr.c;
3324 return REG_NOERROR;
3327 /* Parse a bracket symbol in the bracket expression. Bracket symbols are
3328 such as [:<character_class>:], [.<collating_element>.], and
3329 [=<equivalent_class>=]. */
3331 static reg_errcode_t
3332 parse_bracket_symbol (bracket_elem_t *elem, re_string_t *regexp,
3333 re_token_t *token)
3335 unsigned char ch, delim = token->opr.c;
3336 int i = 0;
3337 if (re_string_eoi(regexp))
3338 return REG_EBRACK;
3339 for (;; ++i)
3341 if (i >= BRACKET_NAME_BUF_SIZE)
3342 return REG_EBRACK;
3343 if (token->type == OP_OPEN_CHAR_CLASS)
3344 ch = re_string_fetch_byte_case (regexp);
3345 else
3346 ch = re_string_fetch_byte (regexp);
3347 if (re_string_eoi(regexp))
3348 return REG_EBRACK;
3349 if (ch == delim && re_string_peek_byte (regexp, 0) == ']')
3350 break;
3351 elem->opr.name[i] = ch;
3353 re_string_skip_bytes (regexp, 1);
3354 elem->opr.name[i] = '\0';
3355 switch (token->type)
3357 case OP_OPEN_COLL_ELEM:
3358 elem->type = COLL_SYM;
3359 break;
3360 case OP_OPEN_EQUIV_CLASS:
3361 elem->type = EQUIV_CLASS;
3362 break;
3363 case OP_OPEN_CHAR_CLASS:
3364 elem->type = CHAR_CLASS;
3365 break;
3366 default:
3367 break;
3369 return REG_NOERROR;
3372 /* Helper function for parse_bracket_exp.
3373 Build the equivalence class which is represented by NAME.
3374 The result are written to MBCSET and SBCSET.
3375 EQUIV_CLASS_ALLOC is the allocated size of mbcset->equiv_classes,
3376 is a pointer argument sinse we may update it. */
3378 static reg_errcode_t
3379 #ifdef RE_ENABLE_I18N
3380 build_equiv_class (bitset_t sbcset, re_charset_t *mbcset,
3381 int *equiv_class_alloc, const unsigned char *name)
3382 #else /* not RE_ENABLE_I18N */
3383 build_equiv_class (bitset_t sbcset, const unsigned char *name)
3384 #endif /* not RE_ENABLE_I18N */
3386 #ifdef _LIBC
3387 uint32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3388 if (nrules != 0)
3390 const int32_t *table, *indirect;
3391 const unsigned char *weights, *extra, *cp;
3392 unsigned char char_buf[2];
3393 int32_t idx1, idx2;
3394 unsigned int ch;
3395 size_t len;
3396 /* This #include defines a local function! */
3397 # include <locale/weight.h>
3398 /* Calculate the index for equivalence class. */
3399 cp = name;
3400 table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3401 weights = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3402 _NL_COLLATE_WEIGHTMB);
3403 extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3404 _NL_COLLATE_EXTRAMB);
3405 indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3406 _NL_COLLATE_INDIRECTMB);
3407 idx1 = findidx (&cp);
3408 if (BE (idx1 == 0 || cp < name + strlen ((const char *) name), 0))
3409 /* This isn't a valid character. */
3410 return REG_ECOLLATE;
3412 /* Build single byte matcing table for this equivalence class. */
3413 char_buf[1] = (unsigned char) '\0';
3414 len = weights[idx1 & 0xffffff];
3415 for (ch = 0; ch < SBC_MAX; ++ch)
3417 char_buf[0] = ch;
3418 cp = char_buf;
3419 idx2 = findidx (&cp);
3421 idx2 = table[ch];
3423 if (idx2 == 0)
3424 /* This isn't a valid character. */
3425 continue;
3426 /* Compare only if the length matches and the collation rule
3427 index is the same. */
3428 if (len == weights[idx2 & 0xffffff] && (idx1 >> 24) == (idx2 >> 24))
3430 int cnt = 0;
3432 while (cnt <= len &&
3433 weights[(idx1 & 0xffffff) + 1 + cnt]
3434 == weights[(idx2 & 0xffffff) + 1 + cnt])
3435 ++cnt;
3437 if (cnt > len)
3438 bitset_set (sbcset, ch);
3441 /* Check whether the array has enough space. */
3442 if (BE (*equiv_class_alloc == mbcset->nequiv_classes, 0))
3444 /* Not enough, realloc it. */
3445 /* +1 in case of mbcset->nequiv_classes is 0. */
3446 int new_equiv_class_alloc = 2 * mbcset->nequiv_classes + 1;
3447 /* Use realloc since the array is NULL if *alloc == 0. */
3448 int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes,
3449 int32_t,
3450 new_equiv_class_alloc);
3451 if (BE (new_equiv_classes == NULL, 0))
3452 return REG_ESPACE;
3453 mbcset->equiv_classes = new_equiv_classes;
3454 *equiv_class_alloc = new_equiv_class_alloc;
3456 mbcset->equiv_classes[mbcset->nequiv_classes++] = idx1;
3458 else
3459 #endif /* _LIBC */
3461 if (BE (strlen ((const char *) name) != 1, 0))
3462 return REG_ECOLLATE;
3463 bitset_set (sbcset, *name);
3465 return REG_NOERROR;
3468 /* Helper function for parse_bracket_exp.
3469 Build the character class which is represented by NAME.
3470 The result are written to MBCSET and SBCSET.
3471 CHAR_CLASS_ALLOC is the allocated size of mbcset->char_classes,
3472 is a pointer argument sinse we may update it. */
3474 static reg_errcode_t
3475 #ifdef RE_ENABLE_I18N
3476 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3477 re_charset_t *mbcset, int *char_class_alloc,
3478 const unsigned char *class_name, reg_syntax_t syntax)
3479 #else /* not RE_ENABLE_I18N */
3480 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3481 const unsigned char *class_name, reg_syntax_t syntax)
3482 #endif /* not RE_ENABLE_I18N */
3484 int i;
3485 const char *name = (const char *) class_name;
3487 /* In case of REG_ICASE "upper" and "lower" match the both of
3488 upper and lower cases. */
3489 if ((syntax & RE_ICASE)
3490 && (strcmp (name, "upper") == 0 || strcmp (name, "lower") == 0))
3491 name = "alpha";
3493 #ifdef RE_ENABLE_I18N
3494 /* Check the space of the arrays. */
3495 if (BE (*char_class_alloc == mbcset->nchar_classes, 0))
3497 /* Not enough, realloc it. */
3498 /* +1 in case of mbcset->nchar_classes is 0. */
3499 int new_char_class_alloc = 2 * mbcset->nchar_classes + 1;
3500 /* Use realloc since array is NULL if *alloc == 0. */
3501 wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t,
3502 new_char_class_alloc);
3503 if (BE (new_char_classes == NULL, 0))
3504 return REG_ESPACE;
3505 mbcset->char_classes = new_char_classes;
3506 *char_class_alloc = new_char_class_alloc;
3508 mbcset->char_classes[mbcset->nchar_classes++] = __wctype (name);
3509 #endif /* RE_ENABLE_I18N */
3511 #define BUILD_CHARCLASS_LOOP(ctype_func) \
3512 do { \
3513 if (BE (trans != NULL, 0)) \
3515 for (i = 0; i < SBC_MAX; ++i) \
3516 if (ctype_func (i)) \
3517 bitset_set (sbcset, trans[i]); \
3519 else \
3521 for (i = 0; i < SBC_MAX; ++i) \
3522 if (ctype_func (i)) \
3523 bitset_set (sbcset, i); \
3525 } while (0)
3527 if (strcmp (name, "alnum") == 0)
3528 BUILD_CHARCLASS_LOOP (isalnum);
3529 else if (strcmp (name, "cntrl") == 0)
3530 BUILD_CHARCLASS_LOOP (iscntrl);
3531 else if (strcmp (name, "lower") == 0)
3532 BUILD_CHARCLASS_LOOP (islower);
3533 else if (strcmp (name, "space") == 0)
3534 BUILD_CHARCLASS_LOOP (isspace);
3535 else if (strcmp (name, "alpha") == 0)
3536 BUILD_CHARCLASS_LOOP (isalpha);
3537 else if (strcmp (name, "digit") == 0)
3538 BUILD_CHARCLASS_LOOP (isdigit);
3539 else if (strcmp (name, "print") == 0)
3540 BUILD_CHARCLASS_LOOP (isprint);
3541 else if (strcmp (name, "upper") == 0)
3542 BUILD_CHARCLASS_LOOP (isupper);
3543 else if (strcmp (name, "blank") == 0)
3544 BUILD_CHARCLASS_LOOP (isblank);
3545 else if (strcmp (name, "graph") == 0)
3546 BUILD_CHARCLASS_LOOP (isgraph);
3547 else if (strcmp (name, "punct") == 0)
3548 BUILD_CHARCLASS_LOOP (ispunct);
3549 else if (strcmp (name, "xdigit") == 0)
3550 BUILD_CHARCLASS_LOOP (isxdigit);
3551 else
3552 return REG_ECTYPE;
3554 return REG_NOERROR;
3557 static bin_tree_t *
3558 build_charclass_op (re_dfa_t *dfa, RE_TRANSLATE_TYPE trans,
3559 const unsigned char *class_name,
3560 const unsigned char *extra, int non_match,
3561 reg_errcode_t *err)
3563 re_bitset_ptr_t sbcset;
3564 #ifdef RE_ENABLE_I18N
3565 re_charset_t *mbcset;
3566 int alloc = 0;
3567 #endif /* not RE_ENABLE_I18N */
3568 reg_errcode_t ret;
3569 re_token_t br_token;
3570 bin_tree_t *tree;
3572 sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3573 #ifdef RE_ENABLE_I18N
3574 mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3575 #endif /* RE_ENABLE_I18N */
3577 #ifdef RE_ENABLE_I18N
3578 if (BE (sbcset == NULL || mbcset == NULL, 0))
3579 #else /* not RE_ENABLE_I18N */
3580 if (BE (sbcset == NULL, 0))
3581 #endif /* not RE_ENABLE_I18N */
3583 *err = REG_ESPACE;
3584 return NULL;
3587 if (non_match)
3589 #ifdef RE_ENABLE_I18N
3590 mbcset->non_match = 1;
3591 #endif /* not RE_ENABLE_I18N */
3594 /* We don't care the syntax in this case. */
3595 ret = build_charclass (trans, sbcset,
3596 #ifdef RE_ENABLE_I18N
3597 mbcset, &alloc,
3598 #endif /* RE_ENABLE_I18N */
3599 class_name, 0);
3601 if (BE (ret != REG_NOERROR, 0))
3603 re_free (sbcset);
3604 #ifdef RE_ENABLE_I18N
3605 free_charset (mbcset);
3606 #endif /* RE_ENABLE_I18N */
3607 *err = ret;
3608 return NULL;
3610 /* \w match '_' also. */
3611 for (; *extra; extra++)
3612 bitset_set (sbcset, *extra);
3614 /* If it is non-matching list. */
3615 if (non_match)
3616 bitset_not (sbcset);
3618 #ifdef RE_ENABLE_I18N
3619 /* Ensure only single byte characters are set. */
3620 if (dfa->mb_cur_max > 1)
3621 bitset_mask (sbcset, dfa->sb_char);
3622 #endif
3624 /* Build a tree for simple bracket. */
3625 br_token.type = SIMPLE_BRACKET;
3626 br_token.opr.sbcset = sbcset;
3627 tree = create_token_tree (dfa, NULL, NULL, &br_token);
3628 if (BE (tree == NULL, 0))
3629 goto build_word_op_espace;
3631 #ifdef RE_ENABLE_I18N
3632 if (dfa->mb_cur_max > 1)
3634 bin_tree_t *mbc_tree;
3635 /* Build a tree for complex bracket. */
3636 br_token.type = COMPLEX_BRACKET;
3637 br_token.opr.mbcset = mbcset;
3638 dfa->has_mb_node = 1;
3639 mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3640 if (BE (mbc_tree == NULL, 0))
3641 goto build_word_op_espace;
3642 /* Then join them by ALT node. */
3643 tree = create_tree (dfa, tree, mbc_tree, OP_ALT);
3644 if (BE (mbc_tree != NULL, 1))
3645 return tree;
3647 else
3649 free_charset (mbcset);
3650 return tree;
3652 #else /* not RE_ENABLE_I18N */
3653 return tree;
3654 #endif /* not RE_ENABLE_I18N */
3656 build_word_op_espace:
3657 re_free (sbcset);
3658 #ifdef RE_ENABLE_I18N
3659 free_charset (mbcset);
3660 #endif /* RE_ENABLE_I18N */
3661 *err = REG_ESPACE;
3662 return NULL;
3665 /* This is intended for the expressions like "a{1,3}".
3666 Fetch a number from `input', and return the number.
3667 Return -1, if the number field is empty like "{,1}".
3668 Return -2, If an error is occured. */
3670 static int
3671 fetch_number (re_string_t *input, re_token_t *token, reg_syntax_t syntax)
3673 int num = -1;
3674 unsigned char c;
3675 while (1)
3677 fetch_token (token, input, syntax);
3678 c = token->opr.c;
3679 if (BE (token->type == END_OF_RE, 0))
3680 return -2;
3681 if (token->type == OP_CLOSE_DUP_NUM || c == ',')
3682 break;
3683 num = ((token->type != CHARACTER || c < '0' || '9' < c || num == -2)
3684 ? -2 : ((num == -1) ? c - '0' : num * 10 + c - '0'));
3685 num = (num > RE_DUP_MAX) ? -2 : num;
3687 return num;
3690 #ifdef RE_ENABLE_I18N
3691 static void
3692 free_charset (re_charset_t *cset)
3694 re_free (cset->mbchars);
3695 # ifdef _LIBC
3696 re_free (cset->coll_syms);
3697 re_free (cset->equiv_classes);
3698 re_free (cset->range_starts);
3699 re_free (cset->range_ends);
3700 # endif
3701 re_free (cset->char_classes);
3702 re_free (cset);
3704 #endif /* RE_ENABLE_I18N */
3706 /* Functions for binary tree operation. */
3708 /* Create a tree node. */
3710 static bin_tree_t *
3711 create_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3712 re_token_type_t type)
3714 re_token_t t;
3715 t.type = type;
3716 return create_token_tree (dfa, left, right, &t);
3719 static bin_tree_t *
3720 create_token_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3721 const re_token_t *token)
3723 bin_tree_t *tree;
3724 if (BE (dfa->str_tree_storage_idx == BIN_TREE_STORAGE_SIZE, 0))
3726 bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1);
3728 if (storage == NULL)
3729 return NULL;
3730 storage->next = dfa->str_tree_storage;
3731 dfa->str_tree_storage = storage;
3732 dfa->str_tree_storage_idx = 0;
3734 tree = &dfa->str_tree_storage->data[dfa->str_tree_storage_idx++];
3736 tree->parent = NULL;
3737 tree->left = left;
3738 tree->right = right;
3739 tree->token = *token;
3740 tree->token.duplicated = 0;
3741 tree->token.opt_subexp = 0;
3742 tree->first = NULL;
3743 tree->next = NULL;
3744 tree->node_idx = -1;
3746 if (left != NULL)
3747 left->parent = tree;
3748 if (right != NULL)
3749 right->parent = tree;
3750 return tree;
3753 /* Mark the tree SRC as an optional subexpression.
3754 To be called from preorder or postorder. */
3756 static reg_errcode_t
3757 mark_opt_subexp (void *extra, bin_tree_t *node)
3759 int idx = (int) (long) extra;
3760 if (node->token.type == SUBEXP && node->token.opr.idx == idx)
3761 node->token.opt_subexp = 1;
3763 return REG_NOERROR;
3766 /* Free the allocated memory inside NODE. */
3768 static void
3769 free_token (re_token_t *node)
3771 #ifdef RE_ENABLE_I18N
3772 if (node->type == COMPLEX_BRACKET && node->duplicated == 0)
3773 free_charset (node->opr.mbcset);
3774 else
3775 #endif /* RE_ENABLE_I18N */
3776 if (node->type == SIMPLE_BRACKET && node->duplicated == 0)
3777 re_free (node->opr.sbcset);
3780 /* Worker function for tree walking. Free the allocated memory inside NODE
3781 and its children. */
3783 static reg_errcode_t
3784 free_tree (void *extra, bin_tree_t *node)
3786 free_token (&node->token);
3787 return REG_NOERROR;
3791 /* Duplicate the node SRC, and return new node. This is a preorder
3792 visit similar to the one implemented by the generic visitor, but
3793 we need more infrastructure to maintain two parallel trees --- so,
3794 it's easier to duplicate. */
3796 static bin_tree_t *
3797 duplicate_tree (const bin_tree_t *root, re_dfa_t *dfa)
3799 const bin_tree_t *node;
3800 bin_tree_t *dup_root;
3801 bin_tree_t **p_new = &dup_root, *dup_node = root->parent;
3803 for (node = root; ; )
3805 /* Create a new tree and link it back to the current parent. */
3806 *p_new = create_token_tree (dfa, NULL, NULL, &node->token);
3807 if (*p_new == NULL)
3808 return NULL;
3809 (*p_new)->parent = dup_node;
3810 (*p_new)->token.duplicated = 1;
3811 dup_node = *p_new;
3813 /* Go to the left node, or up and to the right. */
3814 if (node->left)
3816 node = node->left;
3817 p_new = &dup_node->left;
3819 else
3821 const bin_tree_t *prev = NULL;
3822 while (node->right == prev || node->right == NULL)
3824 prev = node;
3825 node = node->parent;
3826 dup_node = dup_node->parent;
3827 if (!node)
3828 return dup_root;
3830 node = node->right;
3831 p_new = &dup_node->right;