Fix whitespace issue.
[glibc.git] / posix / regcomp.c
blobb238c08225fafe78378e0cdec59928a97851bf47
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 if (tree != NULL)
2164 postorder (tree, free_tree, NULL);
2165 return NULL;
2167 if (tree != NULL && exp != NULL)
2169 bin_tree_t *newtree = create_tree (dfa, tree, exp, CONCAT);
2170 if (newtree == NULL)
2172 postorder (exp, free_tree, NULL);
2173 postorder (tree, free_tree, NULL);
2174 *err = REG_ESPACE;
2175 return NULL;
2177 tree = newtree;
2179 else if (tree == NULL)
2180 tree = exp;
2181 /* Otherwise exp == NULL, we don't need to create new tree. */
2183 return tree;
2186 /* This function build the following tree, from regular expression a*:
2192 static bin_tree_t *
2193 parse_expression (re_string_t *regexp, regex_t *preg, re_token_t *token,
2194 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2196 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2197 bin_tree_t *tree;
2198 switch (token->type)
2200 case CHARACTER:
2201 tree = create_token_tree (dfa, NULL, NULL, token);
2202 if (BE (tree == NULL, 0))
2204 *err = REG_ESPACE;
2205 return NULL;
2207 #ifdef RE_ENABLE_I18N
2208 if (dfa->mb_cur_max > 1)
2210 while (!re_string_eoi (regexp)
2211 && !re_string_first_byte (regexp, re_string_cur_idx (regexp)))
2213 bin_tree_t *mbc_remain;
2214 fetch_token (token, regexp, syntax);
2215 mbc_remain = create_token_tree (dfa, NULL, NULL, token);
2216 tree = create_tree (dfa, tree, mbc_remain, CONCAT);
2217 if (BE (mbc_remain == NULL || tree == NULL, 0))
2219 *err = REG_ESPACE;
2220 return NULL;
2224 #endif
2225 break;
2226 case OP_OPEN_SUBEXP:
2227 tree = parse_sub_exp (regexp, preg, token, syntax, nest + 1, err);
2228 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2229 return NULL;
2230 break;
2231 case OP_OPEN_BRACKET:
2232 tree = parse_bracket_exp (regexp, dfa, token, syntax, err);
2233 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2234 return NULL;
2235 break;
2236 case OP_BACK_REF:
2237 if (!BE (dfa->completed_bkref_map & (1 << token->opr.idx), 1))
2239 *err = REG_ESUBREG;
2240 return NULL;
2242 dfa->used_bkref_map |= 1 << token->opr.idx;
2243 tree = create_token_tree (dfa, NULL, NULL, token);
2244 if (BE (tree == NULL, 0))
2246 *err = REG_ESPACE;
2247 return NULL;
2249 ++dfa->nbackref;
2250 dfa->has_mb_node = 1;
2251 break;
2252 case OP_OPEN_DUP_NUM:
2253 if (syntax & RE_CONTEXT_INVALID_DUP)
2255 *err = REG_BADRPT;
2256 return NULL;
2258 /* FALLTHROUGH */
2259 case OP_DUP_ASTERISK:
2260 case OP_DUP_PLUS:
2261 case OP_DUP_QUESTION:
2262 if (syntax & RE_CONTEXT_INVALID_OPS)
2264 *err = REG_BADRPT;
2265 return NULL;
2267 else if (syntax & RE_CONTEXT_INDEP_OPS)
2269 fetch_token (token, regexp, syntax);
2270 return parse_expression (regexp, preg, token, syntax, nest, err);
2272 /* else fall through */
2273 case OP_CLOSE_SUBEXP:
2274 if ((token->type == OP_CLOSE_SUBEXP) &&
2275 !(syntax & RE_UNMATCHED_RIGHT_PAREN_ORD))
2277 *err = REG_ERPAREN;
2278 return NULL;
2280 /* else fall through */
2281 case OP_CLOSE_DUP_NUM:
2282 /* We treat it as a normal character. */
2284 /* Then we can these characters as normal characters. */
2285 token->type = CHARACTER;
2286 /* mb_partial and word_char bits should be initialized already
2287 by peek_token. */
2288 tree = create_token_tree (dfa, NULL, NULL, token);
2289 if (BE (tree == NULL, 0))
2291 *err = REG_ESPACE;
2292 return NULL;
2294 break;
2295 case ANCHOR:
2296 if ((token->opr.ctx_type
2297 & (WORD_DELIM | NOT_WORD_DELIM | WORD_FIRST | WORD_LAST))
2298 && dfa->word_ops_used == 0)
2299 init_word_char (dfa);
2300 if (token->opr.ctx_type == WORD_DELIM
2301 || token->opr.ctx_type == NOT_WORD_DELIM)
2303 bin_tree_t *tree_first, *tree_last;
2304 if (token->opr.ctx_type == WORD_DELIM)
2306 token->opr.ctx_type = WORD_FIRST;
2307 tree_first = create_token_tree (dfa, NULL, NULL, token);
2308 token->opr.ctx_type = WORD_LAST;
2310 else
2312 token->opr.ctx_type = INSIDE_WORD;
2313 tree_first = create_token_tree (dfa, NULL, NULL, token);
2314 token->opr.ctx_type = INSIDE_NOTWORD;
2316 tree_last = create_token_tree (dfa, NULL, NULL, token);
2317 tree = create_tree (dfa, tree_first, tree_last, OP_ALT);
2318 if (BE (tree_first == NULL || tree_last == NULL || tree == NULL, 0))
2320 *err = REG_ESPACE;
2321 return NULL;
2324 else
2326 tree = create_token_tree (dfa, NULL, NULL, token);
2327 if (BE (tree == NULL, 0))
2329 *err = REG_ESPACE;
2330 return NULL;
2333 /* We must return here, since ANCHORs can't be followed
2334 by repetition operators.
2335 eg. RE"^*" is invalid or "<ANCHOR(^)><CHAR(*)>",
2336 it must not be "<ANCHOR(^)><REPEAT(*)>". */
2337 fetch_token (token, regexp, syntax);
2338 return tree;
2339 case OP_PERIOD:
2340 tree = create_token_tree (dfa, NULL, NULL, token);
2341 if (BE (tree == NULL, 0))
2343 *err = REG_ESPACE;
2344 return NULL;
2346 if (dfa->mb_cur_max > 1)
2347 dfa->has_mb_node = 1;
2348 break;
2349 case OP_WORD:
2350 case OP_NOTWORD:
2351 tree = build_charclass_op (dfa, regexp->trans,
2352 (const unsigned char *) "alnum",
2353 (const unsigned char *) "_",
2354 token->type == OP_NOTWORD, err);
2355 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2356 return NULL;
2357 break;
2358 case OP_SPACE:
2359 case OP_NOTSPACE:
2360 tree = build_charclass_op (dfa, regexp->trans,
2361 (const unsigned char *) "space",
2362 (const unsigned char *) "",
2363 token->type == OP_NOTSPACE, err);
2364 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2365 return NULL;
2366 break;
2367 case OP_ALT:
2368 case END_OF_RE:
2369 return NULL;
2370 case BACK_SLASH:
2371 *err = REG_EESCAPE;
2372 return NULL;
2373 default:
2374 /* Must not happen? */
2375 #ifdef DEBUG
2376 assert (0);
2377 #endif
2378 return NULL;
2380 fetch_token (token, regexp, syntax);
2382 while (token->type == OP_DUP_ASTERISK || token->type == OP_DUP_PLUS
2383 || token->type == OP_DUP_QUESTION || token->type == OP_OPEN_DUP_NUM)
2385 tree = parse_dup_op (tree, regexp, dfa, token, syntax, err);
2386 if (BE (*err != REG_NOERROR && tree == NULL, 0))
2387 return NULL;
2388 /* In BRE consecutive duplications are not allowed. */
2389 if ((syntax & RE_CONTEXT_INVALID_DUP)
2390 && (token->type == OP_DUP_ASTERISK
2391 || token->type == OP_OPEN_DUP_NUM))
2393 *err = REG_BADRPT;
2394 return NULL;
2398 return tree;
2401 /* This function build the following tree, from regular expression
2402 (<reg_exp>):
2403 SUBEXP
2405 <reg_exp>
2408 static bin_tree_t *
2409 parse_sub_exp (re_string_t *regexp, regex_t *preg, re_token_t *token,
2410 reg_syntax_t syntax, int nest, reg_errcode_t *err)
2412 re_dfa_t *dfa = (re_dfa_t *) preg->buffer;
2413 bin_tree_t *tree;
2414 size_t cur_nsub;
2415 cur_nsub = preg->re_nsub++;
2417 fetch_token (token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2419 /* The subexpression may be a null string. */
2420 if (token->type == OP_CLOSE_SUBEXP)
2421 tree = NULL;
2422 else
2424 tree = parse_reg_exp (regexp, preg, token, syntax, nest, err);
2425 if (BE (*err == REG_NOERROR && token->type != OP_CLOSE_SUBEXP, 0))
2427 if (tree != NULL)
2428 postorder (tree, free_tree, NULL);
2429 *err = REG_EPAREN;
2431 if (BE (*err != REG_NOERROR, 0))
2432 return NULL;
2435 if (cur_nsub <= '9' - '1')
2436 dfa->completed_bkref_map |= 1 << cur_nsub;
2438 tree = create_tree (dfa, tree, NULL, SUBEXP);
2439 if (BE (tree == NULL, 0))
2441 *err = REG_ESPACE;
2442 return NULL;
2444 tree->token.opr.idx = cur_nsub;
2445 return tree;
2448 /* This function parse repetition operators like "*", "+", "{1,3}" etc. */
2450 static bin_tree_t *
2451 parse_dup_op (bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa,
2452 re_token_t *token, reg_syntax_t syntax, reg_errcode_t *err)
2454 bin_tree_t *tree = NULL, *old_tree = NULL;
2455 int i, start, end, start_idx = re_string_cur_idx (regexp);
2456 re_token_t start_token = *token;
2458 if (token->type == OP_OPEN_DUP_NUM)
2460 end = 0;
2461 start = fetch_number (regexp, token, syntax);
2462 if (start == -1)
2464 if (token->type == CHARACTER && token->opr.c == ',')
2465 start = 0; /* We treat "{,m}" as "{0,m}". */
2466 else
2468 *err = REG_BADBR; /* <re>{} is invalid. */
2469 return NULL;
2472 if (BE (start != -2, 1))
2474 /* We treat "{n}" as "{n,n}". */
2475 end = ((token->type == OP_CLOSE_DUP_NUM) ? start
2476 : ((token->type == CHARACTER && token->opr.c == ',')
2477 ? fetch_number (regexp, token, syntax) : -2));
2479 if (BE (start == -2 || end == -2, 0))
2481 /* Invalid sequence. */
2482 if (BE (!(syntax & RE_INVALID_INTERVAL_ORD), 0))
2484 if (token->type == END_OF_RE)
2485 *err = REG_EBRACE;
2486 else
2487 *err = REG_BADBR;
2489 return NULL;
2492 /* If the syntax bit is set, rollback. */
2493 re_string_set_index (regexp, start_idx);
2494 *token = start_token;
2495 token->type = CHARACTER;
2496 /* mb_partial and word_char bits should be already initialized by
2497 peek_token. */
2498 return elem;
2501 if (BE ((end != -1 && start > end) || token->type != OP_CLOSE_DUP_NUM, 0))
2503 /* First number greater than second. */
2504 *err = REG_BADBR;
2505 return NULL;
2508 else
2510 start = (token->type == OP_DUP_PLUS) ? 1 : 0;
2511 end = (token->type == OP_DUP_QUESTION) ? 1 : -1;
2514 fetch_token (token, regexp, syntax);
2516 if (BE (elem == NULL, 0))
2517 return NULL;
2518 if (BE (start == 0 && end == 0, 0))
2520 postorder (elem, free_tree, NULL);
2521 return NULL;
2524 /* Extract "<re>{n,m}" to "<re><re>...<re><re>{0,<m-n>}". */
2525 if (BE (start > 0, 0))
2527 tree = elem;
2528 for (i = 2; i <= start; ++i)
2530 elem = duplicate_tree (elem, dfa);
2531 tree = create_tree (dfa, tree, elem, CONCAT);
2532 if (BE (elem == NULL || tree == NULL, 0))
2533 goto parse_dup_op_espace;
2536 if (start == end)
2537 return tree;
2539 /* Duplicate ELEM before it is marked optional. */
2540 elem = duplicate_tree (elem, dfa);
2541 old_tree = tree;
2543 else
2544 old_tree = NULL;
2546 if (elem->token.type == SUBEXP)
2547 postorder (elem, mark_opt_subexp, (void *) (long) elem->token.opr.idx);
2549 tree = create_tree (dfa, elem, NULL, (end == -1 ? OP_DUP_ASTERISK : OP_ALT));
2550 if (BE (tree == NULL, 0))
2551 goto parse_dup_op_espace;
2553 /* This loop is actually executed only when end != -1,
2554 to rewrite <re>{0,n} as (<re>(<re>...<re>?)?)?... We have
2555 already created the start+1-th copy. */
2556 for (i = start + 2; i <= end; ++i)
2558 elem = duplicate_tree (elem, dfa);
2559 tree = create_tree (dfa, tree, elem, CONCAT);
2560 if (BE (elem == NULL || tree == NULL, 0))
2561 goto parse_dup_op_espace;
2563 tree = create_tree (dfa, tree, NULL, OP_ALT);
2564 if (BE (tree == NULL, 0))
2565 goto parse_dup_op_espace;
2568 if (old_tree)
2569 tree = create_tree (dfa, old_tree, tree, CONCAT);
2571 return tree;
2573 parse_dup_op_espace:
2574 *err = REG_ESPACE;
2575 return NULL;
2578 /* Size of the names for collating symbol/equivalence_class/character_class.
2579 I'm not sure, but maybe enough. */
2580 #define BRACKET_NAME_BUF_SIZE 32
2582 #ifndef _LIBC
2583 /* Local function for parse_bracket_exp only used in case of NOT _LIBC.
2584 Build the range expression which starts from START_ELEM, and ends
2585 at END_ELEM. The result are written to MBCSET and SBCSET.
2586 RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2587 mbcset->range_ends, is a pointer argument sinse we may
2588 update it. */
2590 static reg_errcode_t
2591 internal_function
2592 # ifdef RE_ENABLE_I18N
2593 build_range_exp (bitset_t sbcset, re_charset_t *mbcset, int *range_alloc,
2594 bracket_elem_t *start_elem, bracket_elem_t *end_elem)
2595 # else /* not RE_ENABLE_I18N */
2596 build_range_exp (bitset_t sbcset, bracket_elem_t *start_elem,
2597 bracket_elem_t *end_elem)
2598 # endif /* not RE_ENABLE_I18N */
2600 unsigned int start_ch, end_ch;
2601 /* Equivalence Classes and Character Classes can't be a range start/end. */
2602 if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2603 || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2605 return REG_ERANGE;
2607 /* We can handle no multi character collating elements without libc
2608 support. */
2609 if (BE ((start_elem->type == COLL_SYM
2610 && strlen ((char *) start_elem->opr.name) > 1)
2611 || (end_elem->type == COLL_SYM
2612 && strlen ((char *) end_elem->opr.name) > 1), 0))
2613 return REG_ECOLLATE;
2615 # ifdef RE_ENABLE_I18N
2617 wchar_t wc;
2618 wint_t start_wc;
2619 wint_t end_wc;
2620 wchar_t cmp_buf[6] = {L'\0', L'\0', L'\0', L'\0', L'\0', L'\0'};
2622 start_ch = ((start_elem->type == SB_CHAR) ? start_elem->opr.ch
2623 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2624 : 0));
2625 end_ch = ((end_elem->type == SB_CHAR) ? end_elem->opr.ch
2626 : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2627 : 0));
2628 start_wc = ((start_elem->type == SB_CHAR || start_elem->type == COLL_SYM)
2629 ? __btowc (start_ch) : start_elem->opr.wch);
2630 end_wc = ((end_elem->type == SB_CHAR || end_elem->type == COLL_SYM)
2631 ? __btowc (end_ch) : end_elem->opr.wch);
2632 if (start_wc == WEOF || end_wc == WEOF)
2633 return REG_ECOLLATE;
2634 cmp_buf[0] = start_wc;
2635 cmp_buf[4] = end_wc;
2636 if (wcscoll (cmp_buf, cmp_buf + 4) > 0)
2637 return REG_ERANGE;
2639 /* Got valid collation sequence values, add them as a new entry.
2640 However, for !_LIBC we have no collation elements: if the
2641 character set is single byte, the single byte character set
2642 that we build below suffices. parse_bracket_exp passes
2643 no MBCSET if dfa->mb_cur_max == 1. */
2644 if (mbcset)
2646 /* Check the space of the arrays. */
2647 if (BE (*range_alloc == mbcset->nranges, 0))
2649 /* There is not enough space, need realloc. */
2650 wchar_t *new_array_start, *new_array_end;
2651 int new_nranges;
2653 /* +1 in case of mbcset->nranges is 0. */
2654 new_nranges = 2 * mbcset->nranges + 1;
2655 /* Use realloc since mbcset->range_starts and mbcset->range_ends
2656 are NULL if *range_alloc == 0. */
2657 new_array_start = re_realloc (mbcset->range_starts, wchar_t,
2658 new_nranges);
2659 new_array_end = re_realloc (mbcset->range_ends, wchar_t,
2660 new_nranges);
2662 if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2663 return REG_ESPACE;
2665 mbcset->range_starts = new_array_start;
2666 mbcset->range_ends = new_array_end;
2667 *range_alloc = new_nranges;
2670 mbcset->range_starts[mbcset->nranges] = start_wc;
2671 mbcset->range_ends[mbcset->nranges++] = end_wc;
2674 /* Build the table for single byte characters. */
2675 for (wc = 0; wc < SBC_MAX; ++wc)
2677 cmp_buf[2] = wc;
2678 if (wcscoll (cmp_buf, cmp_buf + 2) <= 0
2679 && wcscoll (cmp_buf + 2, cmp_buf + 4) <= 0)
2680 bitset_set (sbcset, wc);
2683 # else /* not RE_ENABLE_I18N */
2685 unsigned int ch;
2686 start_ch = ((start_elem->type == SB_CHAR ) ? start_elem->opr.ch
2687 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2688 : 0));
2689 end_ch = ((end_elem->type == SB_CHAR ) ? end_elem->opr.ch
2690 : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2691 : 0));
2692 if (start_ch > end_ch)
2693 return REG_ERANGE;
2694 /* Build the table for single byte characters. */
2695 for (ch = 0; ch < SBC_MAX; ++ch)
2696 if (start_ch <= ch && ch <= end_ch)
2697 bitset_set (sbcset, ch);
2699 # endif /* not RE_ENABLE_I18N */
2700 return REG_NOERROR;
2702 #endif /* not _LIBC */
2704 #ifndef _LIBC
2705 /* Helper function for parse_bracket_exp only used in case of NOT _LIBC..
2706 Build the collating element which is represented by NAME.
2707 The result are written to MBCSET and SBCSET.
2708 COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
2709 pointer argument since we may update it. */
2711 static reg_errcode_t
2712 internal_function
2713 # ifdef RE_ENABLE_I18N
2714 build_collating_symbol (bitset_t sbcset, re_charset_t *mbcset,
2715 int *coll_sym_alloc, const unsigned char *name)
2716 # else /* not RE_ENABLE_I18N */
2717 build_collating_symbol (bitset_t sbcset, const unsigned char *name)
2718 # endif /* not RE_ENABLE_I18N */
2720 size_t name_len = strlen ((const char *) name);
2721 if (BE (name_len != 1, 0))
2722 return REG_ECOLLATE;
2723 else
2725 bitset_set (sbcset, name[0]);
2726 return REG_NOERROR;
2729 #endif /* not _LIBC */
2731 /* This function parse bracket expression like "[abc]", "[a-c]",
2732 "[[.a-a.]]" etc. */
2734 static bin_tree_t *
2735 parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa, re_token_t *token,
2736 reg_syntax_t syntax, reg_errcode_t *err)
2738 #ifdef _LIBC
2739 const unsigned char *collseqmb;
2740 const char *collseqwc;
2741 uint32_t nrules;
2742 int32_t table_size;
2743 const int32_t *symb_table;
2744 const unsigned char *extra;
2746 /* Local function for parse_bracket_exp used in _LIBC environement.
2747 Seek the collating symbol entry correspondings to NAME.
2748 Return the index of the symbol in the SYMB_TABLE. */
2750 auto inline int32_t
2751 __attribute ((always_inline))
2752 seek_collating_symbol_entry (name, name_len)
2753 const unsigned char *name;
2754 size_t name_len;
2756 int32_t hash = elem_hash ((const char *) name, name_len);
2757 int32_t elem = hash % table_size;
2758 if (symb_table[2 * elem] != 0)
2760 int32_t second = hash % (table_size - 2) + 1;
2764 /* First compare the hashing value. */
2765 if (symb_table[2 * elem] == hash
2766 /* Compare the length of the name. */
2767 && name_len == extra[symb_table[2 * elem + 1]]
2768 /* Compare the name. */
2769 && memcmp (name, &extra[symb_table[2 * elem + 1] + 1],
2770 name_len) == 0)
2772 /* Yep, this is the entry. */
2773 break;
2776 /* Next entry. */
2777 elem += second;
2779 while (symb_table[2 * elem] != 0);
2781 return elem;
2784 /* Local function for parse_bracket_exp used in _LIBC environment.
2785 Look up the collation sequence value of BR_ELEM.
2786 Return the value if succeeded, UINT_MAX otherwise. */
2788 auto inline unsigned int
2789 __attribute ((always_inline))
2790 lookup_collation_sequence_value (br_elem)
2791 bracket_elem_t *br_elem;
2793 if (br_elem->type == SB_CHAR)
2796 if (MB_CUR_MAX == 1)
2798 if (nrules == 0)
2799 return collseqmb[br_elem->opr.ch];
2800 else
2802 wint_t wc = __btowc (br_elem->opr.ch);
2803 return __collseq_table_lookup (collseqwc, wc);
2806 else if (br_elem->type == MB_CHAR)
2808 if (nrules != 0)
2809 return __collseq_table_lookup (collseqwc, br_elem->opr.wch);
2811 else if (br_elem->type == COLL_SYM)
2813 size_t sym_name_len = strlen ((char *) br_elem->opr.name);
2814 if (nrules != 0)
2816 int32_t elem, idx;
2817 elem = seek_collating_symbol_entry (br_elem->opr.name,
2818 sym_name_len);
2819 if (symb_table[2 * elem] != 0)
2821 /* We found the entry. */
2822 idx = symb_table[2 * elem + 1];
2823 /* Skip the name of collating element name. */
2824 idx += 1 + extra[idx];
2825 /* Skip the byte sequence of the collating element. */
2826 idx += 1 + extra[idx];
2827 /* Adjust for the alignment. */
2828 idx = (idx + 3) & ~3;
2829 /* Skip the multibyte collation sequence value. */
2830 idx += sizeof (unsigned int);
2831 /* Skip the wide char sequence of the collating element. */
2832 idx += sizeof (unsigned int) *
2833 (1 + *(unsigned int *) (extra + idx));
2834 /* Return the collation sequence value. */
2835 return *(unsigned int *) (extra + idx);
2837 else if (symb_table[2 * elem] == 0 && sym_name_len == 1)
2839 /* No valid character. Match it as a single byte
2840 character. */
2841 return collseqmb[br_elem->opr.name[0]];
2844 else if (sym_name_len == 1)
2845 return collseqmb[br_elem->opr.name[0]];
2847 return UINT_MAX;
2850 /* Local function for parse_bracket_exp used in _LIBC environement.
2851 Build the range expression which starts from START_ELEM, and ends
2852 at END_ELEM. The result are written to MBCSET and SBCSET.
2853 RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2854 mbcset->range_ends, is a pointer argument sinse we may
2855 update it. */
2857 auto inline reg_errcode_t
2858 __attribute ((always_inline))
2859 build_range_exp (sbcset, mbcset, range_alloc, start_elem, end_elem)
2860 re_charset_t *mbcset;
2861 int *range_alloc;
2862 bitset_t sbcset;
2863 bracket_elem_t *start_elem, *end_elem;
2865 unsigned int ch;
2866 uint32_t start_collseq;
2867 uint32_t end_collseq;
2869 /* Equivalence Classes and Character Classes can't be a range
2870 start/end. */
2871 if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2872 || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2874 return REG_ERANGE;
2876 start_collseq = lookup_collation_sequence_value (start_elem);
2877 end_collseq = lookup_collation_sequence_value (end_elem);
2878 /* Check start/end collation sequence values. */
2879 if (BE (start_collseq == UINT_MAX || end_collseq == UINT_MAX, 0))
2880 return REG_ECOLLATE;
2881 if (BE ((syntax & RE_NO_EMPTY_RANGES) && start_collseq > end_collseq, 0))
2882 return REG_ERANGE;
2884 /* Got valid collation sequence values, add them as a new entry.
2885 However, if we have no collation elements, and the character set
2886 is single byte, the single byte character set that we
2887 build below suffices. */
2888 if (nrules > 0 || dfa->mb_cur_max > 1)
2890 /* Check the space of the arrays. */
2891 if (BE (*range_alloc == mbcset->nranges, 0))
2893 /* There is not enough space, need realloc. */
2894 uint32_t *new_array_start;
2895 uint32_t *new_array_end;
2896 int new_nranges;
2898 /* +1 in case of mbcset->nranges is 0. */
2899 new_nranges = 2 * mbcset->nranges + 1;
2900 new_array_start = re_realloc (mbcset->range_starts, uint32_t,
2901 new_nranges);
2902 new_array_end = re_realloc (mbcset->range_ends, uint32_t,
2903 new_nranges);
2905 if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2906 return REG_ESPACE;
2908 mbcset->range_starts = new_array_start;
2909 mbcset->range_ends = new_array_end;
2910 *range_alloc = new_nranges;
2913 mbcset->range_starts[mbcset->nranges] = start_collseq;
2914 mbcset->range_ends[mbcset->nranges++] = end_collseq;
2917 /* Build the table for single byte characters. */
2918 for (ch = 0; ch < SBC_MAX; ch++)
2920 uint32_t ch_collseq;
2922 if (MB_CUR_MAX == 1)
2924 if (nrules == 0)
2925 ch_collseq = collseqmb[ch];
2926 else
2927 ch_collseq = __collseq_table_lookup (collseqwc, __btowc (ch));
2928 if (start_collseq <= ch_collseq && ch_collseq <= end_collseq)
2929 bitset_set (sbcset, ch);
2931 return REG_NOERROR;
2934 /* Local function for parse_bracket_exp used in _LIBC environement.
2935 Build the collating element which is represented by NAME.
2936 The result are written to MBCSET and SBCSET.
2937 COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
2938 pointer argument sinse we may update it. */
2940 auto inline reg_errcode_t
2941 __attribute ((always_inline))
2942 build_collating_symbol (sbcset, mbcset, coll_sym_alloc, name)
2943 re_charset_t *mbcset;
2944 int *coll_sym_alloc;
2945 bitset_t sbcset;
2946 const unsigned char *name;
2948 int32_t elem, idx;
2949 size_t name_len = strlen ((const char *) name);
2950 if (nrules != 0)
2952 elem = seek_collating_symbol_entry (name, name_len);
2953 if (symb_table[2 * elem] != 0)
2955 /* We found the entry. */
2956 idx = symb_table[2 * elem + 1];
2957 /* Skip the name of collating element name. */
2958 idx += 1 + extra[idx];
2960 else if (symb_table[2 * elem] == 0 && name_len == 1)
2962 /* No valid character, treat it as a normal
2963 character. */
2964 bitset_set (sbcset, name[0]);
2965 return REG_NOERROR;
2967 else
2968 return REG_ECOLLATE;
2970 /* Got valid collation sequence, add it as a new entry. */
2971 /* Check the space of the arrays. */
2972 if (BE (*coll_sym_alloc == mbcset->ncoll_syms, 0))
2974 /* Not enough, realloc it. */
2975 /* +1 in case of mbcset->ncoll_syms is 0. */
2976 int new_coll_sym_alloc = 2 * mbcset->ncoll_syms + 1;
2977 /* Use realloc since mbcset->coll_syms is NULL
2978 if *alloc == 0. */
2979 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t,
2980 new_coll_sym_alloc);
2981 if (BE (new_coll_syms == NULL, 0))
2982 return REG_ESPACE;
2983 mbcset->coll_syms = new_coll_syms;
2984 *coll_sym_alloc = new_coll_sym_alloc;
2986 mbcset->coll_syms[mbcset->ncoll_syms++] = idx;
2987 return REG_NOERROR;
2989 else
2991 if (BE (name_len != 1, 0))
2992 return REG_ECOLLATE;
2993 else
2995 bitset_set (sbcset, name[0]);
2996 return REG_NOERROR;
3000 #endif
3002 re_token_t br_token;
3003 re_bitset_ptr_t sbcset;
3004 #ifdef RE_ENABLE_I18N
3005 re_charset_t *mbcset;
3006 int coll_sym_alloc = 0, range_alloc = 0, mbchar_alloc = 0;
3007 int equiv_class_alloc = 0, char_class_alloc = 0;
3008 #endif /* not RE_ENABLE_I18N */
3009 int non_match = 0;
3010 bin_tree_t *work_tree;
3011 int token_len;
3012 int first_round = 1;
3013 #ifdef _LIBC
3014 collseqmb = (const unsigned char *)
3015 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQMB);
3016 nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3017 if (nrules)
3020 if (MB_CUR_MAX > 1)
3022 collseqwc = _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQWC);
3023 table_size = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_SYMB_HASH_SIZEMB);
3024 symb_table = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3025 _NL_COLLATE_SYMB_TABLEMB);
3026 extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3027 _NL_COLLATE_SYMB_EXTRAMB);
3029 #endif
3030 sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3031 #ifdef RE_ENABLE_I18N
3032 mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3033 #endif /* RE_ENABLE_I18N */
3034 #ifdef RE_ENABLE_I18N
3035 if (BE (sbcset == NULL || mbcset == NULL, 0))
3036 #else
3037 if (BE (sbcset == NULL, 0))
3038 #endif /* RE_ENABLE_I18N */
3040 re_free (sbcset);
3041 #ifdef RE_ENABLE_I18N
3042 re_free (mbcset);
3043 #endif
3044 *err = REG_ESPACE;
3045 return NULL;
3048 token_len = peek_token_bracket (token, regexp, syntax);
3049 if (BE (token->type == END_OF_RE, 0))
3051 *err = REG_BADPAT;
3052 goto parse_bracket_exp_free_return;
3054 if (token->type == OP_NON_MATCH_LIST)
3056 #ifdef RE_ENABLE_I18N
3057 mbcset->non_match = 1;
3058 #endif /* not RE_ENABLE_I18N */
3059 non_match = 1;
3060 if (syntax & RE_HAT_LISTS_NOT_NEWLINE)
3061 bitset_set (sbcset, '\n');
3062 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3063 token_len = peek_token_bracket (token, regexp, syntax);
3064 if (BE (token->type == END_OF_RE, 0))
3066 *err = REG_BADPAT;
3067 goto parse_bracket_exp_free_return;
3071 /* We treat the first ']' as a normal character. */
3072 if (token->type == OP_CLOSE_BRACKET)
3073 token->type = CHARACTER;
3075 while (1)
3077 bracket_elem_t start_elem, end_elem;
3078 unsigned char start_name_buf[BRACKET_NAME_BUF_SIZE];
3079 unsigned char end_name_buf[BRACKET_NAME_BUF_SIZE];
3080 reg_errcode_t ret;
3081 int token_len2 = 0, is_range_exp = 0;
3082 re_token_t token2;
3084 start_elem.opr.name = start_name_buf;
3085 ret = parse_bracket_element (&start_elem, regexp, token, token_len, dfa,
3086 syntax, first_round);
3087 if (BE (ret != REG_NOERROR, 0))
3089 *err = ret;
3090 goto parse_bracket_exp_free_return;
3092 first_round = 0;
3094 /* Get information about the next token. We need it in any case. */
3095 token_len = peek_token_bracket (token, regexp, syntax);
3097 /* Do not check for ranges if we know they are not allowed. */
3098 if (start_elem.type != CHAR_CLASS && start_elem.type != EQUIV_CLASS)
3100 if (BE (token->type == END_OF_RE, 0))
3102 *err = REG_EBRACK;
3103 goto parse_bracket_exp_free_return;
3105 if (token->type == OP_CHARSET_RANGE)
3107 re_string_skip_bytes (regexp, token_len); /* Skip '-'. */
3108 token_len2 = peek_token_bracket (&token2, regexp, syntax);
3109 if (BE (token2.type == END_OF_RE, 0))
3111 *err = REG_EBRACK;
3112 goto parse_bracket_exp_free_return;
3114 if (token2.type == OP_CLOSE_BRACKET)
3116 /* We treat the last '-' as a normal character. */
3117 re_string_skip_bytes (regexp, -token_len);
3118 token->type = CHARACTER;
3120 else
3121 is_range_exp = 1;
3125 if (is_range_exp == 1)
3127 end_elem.opr.name = end_name_buf;
3128 ret = parse_bracket_element (&end_elem, regexp, &token2, token_len2,
3129 dfa, syntax, 1);
3130 if (BE (ret != REG_NOERROR, 0))
3132 *err = ret;
3133 goto parse_bracket_exp_free_return;
3136 token_len = peek_token_bracket (token, regexp, syntax);
3138 #ifdef _LIBC
3139 *err = build_range_exp (sbcset, mbcset, &range_alloc,
3140 &start_elem, &end_elem);
3141 #else
3142 # ifdef RE_ENABLE_I18N
3143 *err = build_range_exp (sbcset,
3144 dfa->mb_cur_max > 1 ? mbcset : NULL,
3145 &range_alloc, &start_elem, &end_elem);
3146 # else
3147 *err = build_range_exp (sbcset, &start_elem, &end_elem);
3148 # endif
3149 #endif /* RE_ENABLE_I18N */
3150 if (BE (*err != REG_NOERROR, 0))
3151 goto parse_bracket_exp_free_return;
3153 else
3155 switch (start_elem.type)
3157 case SB_CHAR:
3158 bitset_set (sbcset, start_elem.opr.ch);
3159 break;
3160 #ifdef RE_ENABLE_I18N
3161 case MB_CHAR:
3162 /* Check whether the array has enough space. */
3163 if (BE (mbchar_alloc == mbcset->nmbchars, 0))
3165 wchar_t *new_mbchars;
3166 /* Not enough, realloc it. */
3167 /* +1 in case of mbcset->nmbchars is 0. */
3168 mbchar_alloc = 2 * mbcset->nmbchars + 1;
3169 /* Use realloc since array is NULL if *alloc == 0. */
3170 new_mbchars = re_realloc (mbcset->mbchars, wchar_t,
3171 mbchar_alloc);
3172 if (BE (new_mbchars == NULL, 0))
3173 goto parse_bracket_exp_espace;
3174 mbcset->mbchars = new_mbchars;
3176 mbcset->mbchars[mbcset->nmbchars++] = start_elem.opr.wch;
3177 break;
3178 #endif /* RE_ENABLE_I18N */
3179 case EQUIV_CLASS:
3180 *err = build_equiv_class (sbcset,
3181 #ifdef RE_ENABLE_I18N
3182 mbcset, &equiv_class_alloc,
3183 #endif /* RE_ENABLE_I18N */
3184 start_elem.opr.name);
3185 if (BE (*err != REG_NOERROR, 0))
3186 goto parse_bracket_exp_free_return;
3187 break;
3188 case COLL_SYM:
3189 *err = build_collating_symbol (sbcset,
3190 #ifdef RE_ENABLE_I18N
3191 mbcset, &coll_sym_alloc,
3192 #endif /* RE_ENABLE_I18N */
3193 start_elem.opr.name);
3194 if (BE (*err != REG_NOERROR, 0))
3195 goto parse_bracket_exp_free_return;
3196 break;
3197 case CHAR_CLASS:
3198 *err = build_charclass (regexp->trans, sbcset,
3199 #ifdef RE_ENABLE_I18N
3200 mbcset, &char_class_alloc,
3201 #endif /* RE_ENABLE_I18N */
3202 start_elem.opr.name, syntax);
3203 if (BE (*err != REG_NOERROR, 0))
3204 goto parse_bracket_exp_free_return;
3205 break;
3206 default:
3207 assert (0);
3208 break;
3211 if (BE (token->type == END_OF_RE, 0))
3213 *err = REG_EBRACK;
3214 goto parse_bracket_exp_free_return;
3216 if (token->type == OP_CLOSE_BRACKET)
3217 break;
3220 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3222 /* If it is non-matching list. */
3223 if (non_match)
3224 bitset_not (sbcset);
3226 #ifdef RE_ENABLE_I18N
3227 /* Ensure only single byte characters are set. */
3228 if (dfa->mb_cur_max > 1)
3229 bitset_mask (sbcset, dfa->sb_char);
3231 if (mbcset->nmbchars || mbcset->ncoll_syms || mbcset->nequiv_classes
3232 || mbcset->nranges || (dfa->mb_cur_max > 1 && (mbcset->nchar_classes
3233 || mbcset->non_match)))
3235 bin_tree_t *mbc_tree;
3236 int sbc_idx;
3237 /* Build a tree for complex bracket. */
3238 dfa->has_mb_node = 1;
3239 br_token.type = COMPLEX_BRACKET;
3240 br_token.opr.mbcset = mbcset;
3241 mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3242 if (BE (mbc_tree == NULL, 0))
3243 goto parse_bracket_exp_espace;
3244 for (sbc_idx = 0; sbc_idx < BITSET_WORDS; ++sbc_idx)
3245 if (sbcset[sbc_idx])
3246 break;
3247 /* If there are no bits set in sbcset, there is no point
3248 of having both SIMPLE_BRACKET and COMPLEX_BRACKET. */
3249 if (sbc_idx < BITSET_WORDS)
3251 /* Build a tree for simple bracket. */
3252 br_token.type = SIMPLE_BRACKET;
3253 br_token.opr.sbcset = sbcset;
3254 work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3255 if (BE (work_tree == NULL, 0))
3256 goto parse_bracket_exp_espace;
3258 /* Then join them by ALT node. */
3259 work_tree = create_tree (dfa, work_tree, mbc_tree, OP_ALT);
3260 if (BE (work_tree == NULL, 0))
3261 goto parse_bracket_exp_espace;
3263 else
3265 re_free (sbcset);
3266 work_tree = mbc_tree;
3269 else
3270 #endif /* not RE_ENABLE_I18N */
3272 #ifdef RE_ENABLE_I18N
3273 free_charset (mbcset);
3274 #endif
3275 /* Build a tree for simple bracket. */
3276 br_token.type = SIMPLE_BRACKET;
3277 br_token.opr.sbcset = sbcset;
3278 work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3279 if (BE (work_tree == NULL, 0))
3280 goto parse_bracket_exp_espace;
3282 return work_tree;
3284 parse_bracket_exp_espace:
3285 *err = REG_ESPACE;
3286 parse_bracket_exp_free_return:
3287 re_free (sbcset);
3288 #ifdef RE_ENABLE_I18N
3289 free_charset (mbcset);
3290 #endif /* RE_ENABLE_I18N */
3291 return NULL;
3294 /* Parse an element in the bracket expression. */
3296 static reg_errcode_t
3297 parse_bracket_element (bracket_elem_t *elem, re_string_t *regexp,
3298 re_token_t *token, int token_len, re_dfa_t *dfa,
3299 reg_syntax_t syntax, int accept_hyphen)
3301 #ifdef RE_ENABLE_I18N
3302 int cur_char_size;
3303 cur_char_size = re_string_char_size_at (regexp, re_string_cur_idx (regexp));
3304 if (cur_char_size > 1)
3306 elem->type = MB_CHAR;
3307 elem->opr.wch = re_string_wchar_at (regexp, re_string_cur_idx (regexp));
3308 re_string_skip_bytes (regexp, cur_char_size);
3309 return REG_NOERROR;
3311 #endif /* RE_ENABLE_I18N */
3312 re_string_skip_bytes (regexp, token_len); /* Skip a token. */
3313 if (token->type == OP_OPEN_COLL_ELEM || token->type == OP_OPEN_CHAR_CLASS
3314 || token->type == OP_OPEN_EQUIV_CLASS)
3315 return parse_bracket_symbol (elem, regexp, token);
3316 if (BE (token->type == OP_CHARSET_RANGE, 0) && !accept_hyphen)
3318 /* A '-' must only appear as anything but a range indicator before
3319 the closing bracket. Everything else is an error. */
3320 re_token_t token2;
3321 (void) peek_token_bracket (&token2, regexp, syntax);
3322 if (token2.type != OP_CLOSE_BRACKET)
3323 /* The actual error value is not standardized since this whole
3324 case is undefined. But ERANGE makes good sense. */
3325 return REG_ERANGE;
3327 elem->type = SB_CHAR;
3328 elem->opr.ch = token->opr.c;
3329 return REG_NOERROR;
3332 /* Parse a bracket symbol in the bracket expression. Bracket symbols are
3333 such as [:<character_class>:], [.<collating_element>.], and
3334 [=<equivalent_class>=]. */
3336 static reg_errcode_t
3337 parse_bracket_symbol (bracket_elem_t *elem, re_string_t *regexp,
3338 re_token_t *token)
3340 unsigned char ch, delim = token->opr.c;
3341 int i = 0;
3342 if (re_string_eoi(regexp))
3343 return REG_EBRACK;
3344 for (;; ++i)
3346 if (i >= BRACKET_NAME_BUF_SIZE)
3347 return REG_EBRACK;
3348 if (token->type == OP_OPEN_CHAR_CLASS)
3349 ch = re_string_fetch_byte_case (regexp);
3350 else
3351 ch = re_string_fetch_byte (regexp);
3352 if (re_string_eoi(regexp))
3353 return REG_EBRACK;
3354 if (ch == delim && re_string_peek_byte (regexp, 0) == ']')
3355 break;
3356 elem->opr.name[i] = ch;
3358 re_string_skip_bytes (regexp, 1);
3359 elem->opr.name[i] = '\0';
3360 switch (token->type)
3362 case OP_OPEN_COLL_ELEM:
3363 elem->type = COLL_SYM;
3364 break;
3365 case OP_OPEN_EQUIV_CLASS:
3366 elem->type = EQUIV_CLASS;
3367 break;
3368 case OP_OPEN_CHAR_CLASS:
3369 elem->type = CHAR_CLASS;
3370 break;
3371 default:
3372 break;
3374 return REG_NOERROR;
3377 /* Helper function for parse_bracket_exp.
3378 Build the equivalence class which is represented by NAME.
3379 The result are written to MBCSET and SBCSET.
3380 EQUIV_CLASS_ALLOC is the allocated size of mbcset->equiv_classes,
3381 is a pointer argument sinse we may update it. */
3383 static reg_errcode_t
3384 #ifdef RE_ENABLE_I18N
3385 build_equiv_class (bitset_t sbcset, re_charset_t *mbcset,
3386 int *equiv_class_alloc, const unsigned char *name)
3387 #else /* not RE_ENABLE_I18N */
3388 build_equiv_class (bitset_t sbcset, const unsigned char *name)
3389 #endif /* not RE_ENABLE_I18N */
3391 #ifdef _LIBC
3392 uint32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3393 if (nrules != 0)
3395 const int32_t *table, *indirect;
3396 const unsigned char *weights, *extra, *cp;
3397 unsigned char char_buf[2];
3398 int32_t idx1, idx2;
3399 unsigned int ch;
3400 size_t len;
3401 /* This #include defines a local function! */
3402 # include <locale/weight.h>
3403 /* Calculate the index for equivalence class. */
3404 cp = name;
3405 table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3406 weights = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3407 _NL_COLLATE_WEIGHTMB);
3408 extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3409 _NL_COLLATE_EXTRAMB);
3410 indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3411 _NL_COLLATE_INDIRECTMB);
3412 idx1 = findidx (&cp);
3413 if (BE (idx1 == 0 || cp < name + strlen ((const char *) name), 0))
3414 /* This isn't a valid character. */
3415 return REG_ECOLLATE;
3417 /* Build single byte matcing table for this equivalence class. */
3418 char_buf[1] = (unsigned char) '\0';
3419 len = weights[idx1 & 0xffffff];
3420 for (ch = 0; ch < SBC_MAX; ++ch)
3422 char_buf[0] = ch;
3423 cp = char_buf;
3424 idx2 = findidx (&cp);
3426 idx2 = table[ch];
3428 if (idx2 == 0)
3429 /* This isn't a valid character. */
3430 continue;
3431 /* Compare only if the length matches and the collation rule
3432 index is the same. */
3433 if (len == weights[idx2 & 0xffffff] && (idx1 >> 24) == (idx2 >> 24))
3435 int cnt = 0;
3437 while (cnt <= len &&
3438 weights[(idx1 & 0xffffff) + 1 + cnt]
3439 == weights[(idx2 & 0xffffff) + 1 + cnt])
3440 ++cnt;
3442 if (cnt > len)
3443 bitset_set (sbcset, ch);
3446 /* Check whether the array has enough space. */
3447 if (BE (*equiv_class_alloc == mbcset->nequiv_classes, 0))
3449 /* Not enough, realloc it. */
3450 /* +1 in case of mbcset->nequiv_classes is 0. */
3451 int new_equiv_class_alloc = 2 * mbcset->nequiv_classes + 1;
3452 /* Use realloc since the array is NULL if *alloc == 0. */
3453 int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes,
3454 int32_t,
3455 new_equiv_class_alloc);
3456 if (BE (new_equiv_classes == NULL, 0))
3457 return REG_ESPACE;
3458 mbcset->equiv_classes = new_equiv_classes;
3459 *equiv_class_alloc = new_equiv_class_alloc;
3461 mbcset->equiv_classes[mbcset->nequiv_classes++] = idx1;
3463 else
3464 #endif /* _LIBC */
3466 if (BE (strlen ((const char *) name) != 1, 0))
3467 return REG_ECOLLATE;
3468 bitset_set (sbcset, *name);
3470 return REG_NOERROR;
3473 /* Helper function for parse_bracket_exp.
3474 Build the character class which is represented by NAME.
3475 The result are written to MBCSET and SBCSET.
3476 CHAR_CLASS_ALLOC is the allocated size of mbcset->char_classes,
3477 is a pointer argument sinse we may update it. */
3479 static reg_errcode_t
3480 #ifdef RE_ENABLE_I18N
3481 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3482 re_charset_t *mbcset, int *char_class_alloc,
3483 const unsigned char *class_name, reg_syntax_t syntax)
3484 #else /* not RE_ENABLE_I18N */
3485 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3486 const unsigned char *class_name, reg_syntax_t syntax)
3487 #endif /* not RE_ENABLE_I18N */
3489 int i;
3490 const char *name = (const char *) class_name;
3492 /* In case of REG_ICASE "upper" and "lower" match the both of
3493 upper and lower cases. */
3494 if ((syntax & RE_ICASE)
3495 && (strcmp (name, "upper") == 0 || strcmp (name, "lower") == 0))
3496 name = "alpha";
3498 #ifdef RE_ENABLE_I18N
3499 /* Check the space of the arrays. */
3500 if (BE (*char_class_alloc == mbcset->nchar_classes, 0))
3502 /* Not enough, realloc it. */
3503 /* +1 in case of mbcset->nchar_classes is 0. */
3504 int new_char_class_alloc = 2 * mbcset->nchar_classes + 1;
3505 /* Use realloc since array is NULL if *alloc == 0. */
3506 wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t,
3507 new_char_class_alloc);
3508 if (BE (new_char_classes == NULL, 0))
3509 return REG_ESPACE;
3510 mbcset->char_classes = new_char_classes;
3511 *char_class_alloc = new_char_class_alloc;
3513 mbcset->char_classes[mbcset->nchar_classes++] = __wctype (name);
3514 #endif /* RE_ENABLE_I18N */
3516 #define BUILD_CHARCLASS_LOOP(ctype_func) \
3517 do { \
3518 if (BE (trans != NULL, 0)) \
3520 for (i = 0; i < SBC_MAX; ++i) \
3521 if (ctype_func (i)) \
3522 bitset_set (sbcset, trans[i]); \
3524 else \
3526 for (i = 0; i < SBC_MAX; ++i) \
3527 if (ctype_func (i)) \
3528 bitset_set (sbcset, i); \
3530 } while (0)
3532 if (strcmp (name, "alnum") == 0)
3533 BUILD_CHARCLASS_LOOP (isalnum);
3534 else if (strcmp (name, "cntrl") == 0)
3535 BUILD_CHARCLASS_LOOP (iscntrl);
3536 else if (strcmp (name, "lower") == 0)
3537 BUILD_CHARCLASS_LOOP (islower);
3538 else if (strcmp (name, "space") == 0)
3539 BUILD_CHARCLASS_LOOP (isspace);
3540 else if (strcmp (name, "alpha") == 0)
3541 BUILD_CHARCLASS_LOOP (isalpha);
3542 else if (strcmp (name, "digit") == 0)
3543 BUILD_CHARCLASS_LOOP (isdigit);
3544 else if (strcmp (name, "print") == 0)
3545 BUILD_CHARCLASS_LOOP (isprint);
3546 else if (strcmp (name, "upper") == 0)
3547 BUILD_CHARCLASS_LOOP (isupper);
3548 else if (strcmp (name, "blank") == 0)
3549 BUILD_CHARCLASS_LOOP (isblank);
3550 else if (strcmp (name, "graph") == 0)
3551 BUILD_CHARCLASS_LOOP (isgraph);
3552 else if (strcmp (name, "punct") == 0)
3553 BUILD_CHARCLASS_LOOP (ispunct);
3554 else if (strcmp (name, "xdigit") == 0)
3555 BUILD_CHARCLASS_LOOP (isxdigit);
3556 else
3557 return REG_ECTYPE;
3559 return REG_NOERROR;
3562 static bin_tree_t *
3563 build_charclass_op (re_dfa_t *dfa, RE_TRANSLATE_TYPE trans,
3564 const unsigned char *class_name,
3565 const unsigned char *extra, int non_match,
3566 reg_errcode_t *err)
3568 re_bitset_ptr_t sbcset;
3569 #ifdef RE_ENABLE_I18N
3570 re_charset_t *mbcset;
3571 int alloc = 0;
3572 #endif /* not RE_ENABLE_I18N */
3573 reg_errcode_t ret;
3574 re_token_t br_token;
3575 bin_tree_t *tree;
3577 sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3578 #ifdef RE_ENABLE_I18N
3579 mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3580 #endif /* RE_ENABLE_I18N */
3582 #ifdef RE_ENABLE_I18N
3583 if (BE (sbcset == NULL || mbcset == NULL, 0))
3584 #else /* not RE_ENABLE_I18N */
3585 if (BE (sbcset == NULL, 0))
3586 #endif /* not RE_ENABLE_I18N */
3588 *err = REG_ESPACE;
3589 return NULL;
3592 if (non_match)
3594 #ifdef RE_ENABLE_I18N
3595 mbcset->non_match = 1;
3596 #endif /* not RE_ENABLE_I18N */
3599 /* We don't care the syntax in this case. */
3600 ret = build_charclass (trans, sbcset,
3601 #ifdef RE_ENABLE_I18N
3602 mbcset, &alloc,
3603 #endif /* RE_ENABLE_I18N */
3604 class_name, 0);
3606 if (BE (ret != REG_NOERROR, 0))
3608 re_free (sbcset);
3609 #ifdef RE_ENABLE_I18N
3610 free_charset (mbcset);
3611 #endif /* RE_ENABLE_I18N */
3612 *err = ret;
3613 return NULL;
3615 /* \w match '_' also. */
3616 for (; *extra; extra++)
3617 bitset_set (sbcset, *extra);
3619 /* If it is non-matching list. */
3620 if (non_match)
3621 bitset_not (sbcset);
3623 #ifdef RE_ENABLE_I18N
3624 /* Ensure only single byte characters are set. */
3625 if (dfa->mb_cur_max > 1)
3626 bitset_mask (sbcset, dfa->sb_char);
3627 #endif
3629 /* Build a tree for simple bracket. */
3630 br_token.type = SIMPLE_BRACKET;
3631 br_token.opr.sbcset = sbcset;
3632 tree = create_token_tree (dfa, NULL, NULL, &br_token);
3633 if (BE (tree == NULL, 0))
3634 goto build_word_op_espace;
3636 #ifdef RE_ENABLE_I18N
3637 if (dfa->mb_cur_max > 1)
3639 bin_tree_t *mbc_tree;
3640 /* Build a tree for complex bracket. */
3641 br_token.type = COMPLEX_BRACKET;
3642 br_token.opr.mbcset = mbcset;
3643 dfa->has_mb_node = 1;
3644 mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3645 if (BE (mbc_tree == NULL, 0))
3646 goto build_word_op_espace;
3647 /* Then join them by ALT node. */
3648 tree = create_tree (dfa, tree, mbc_tree, OP_ALT);
3649 if (BE (mbc_tree != NULL, 1))
3650 return tree;
3652 else
3654 free_charset (mbcset);
3655 return tree;
3657 #else /* not RE_ENABLE_I18N */
3658 return tree;
3659 #endif /* not RE_ENABLE_I18N */
3661 build_word_op_espace:
3662 re_free (sbcset);
3663 #ifdef RE_ENABLE_I18N
3664 free_charset (mbcset);
3665 #endif /* RE_ENABLE_I18N */
3666 *err = REG_ESPACE;
3667 return NULL;
3670 /* This is intended for the expressions like "a{1,3}".
3671 Fetch a number from `input', and return the number.
3672 Return -1, if the number field is empty like "{,1}".
3673 Return -2, If an error is occured. */
3675 static int
3676 fetch_number (re_string_t *input, re_token_t *token, reg_syntax_t syntax)
3678 int num = -1;
3679 unsigned char c;
3680 while (1)
3682 fetch_token (token, input, syntax);
3683 c = token->opr.c;
3684 if (BE (token->type == END_OF_RE, 0))
3685 return -2;
3686 if (token->type == OP_CLOSE_DUP_NUM || c == ',')
3687 break;
3688 num = ((token->type != CHARACTER || c < '0' || '9' < c || num == -2)
3689 ? -2 : ((num == -1) ? c - '0' : num * 10 + c - '0'));
3690 num = (num > RE_DUP_MAX) ? -2 : num;
3692 return num;
3695 #ifdef RE_ENABLE_I18N
3696 static void
3697 free_charset (re_charset_t *cset)
3699 re_free (cset->mbchars);
3700 # ifdef _LIBC
3701 re_free (cset->coll_syms);
3702 re_free (cset->equiv_classes);
3703 re_free (cset->range_starts);
3704 re_free (cset->range_ends);
3705 # endif
3706 re_free (cset->char_classes);
3707 re_free (cset);
3709 #endif /* RE_ENABLE_I18N */
3711 /* Functions for binary tree operation. */
3713 /* Create a tree node. */
3715 static bin_tree_t *
3716 create_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3717 re_token_type_t type)
3719 re_token_t t;
3720 t.type = type;
3721 return create_token_tree (dfa, left, right, &t);
3724 static bin_tree_t *
3725 create_token_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3726 const re_token_t *token)
3728 bin_tree_t *tree;
3729 if (BE (dfa->str_tree_storage_idx == BIN_TREE_STORAGE_SIZE, 0))
3731 bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1);
3733 if (storage == NULL)
3734 return NULL;
3735 storage->next = dfa->str_tree_storage;
3736 dfa->str_tree_storage = storage;
3737 dfa->str_tree_storage_idx = 0;
3739 tree = &dfa->str_tree_storage->data[dfa->str_tree_storage_idx++];
3741 tree->parent = NULL;
3742 tree->left = left;
3743 tree->right = right;
3744 tree->token = *token;
3745 tree->token.duplicated = 0;
3746 tree->token.opt_subexp = 0;
3747 tree->first = NULL;
3748 tree->next = NULL;
3749 tree->node_idx = -1;
3751 if (left != NULL)
3752 left->parent = tree;
3753 if (right != NULL)
3754 right->parent = tree;
3755 return tree;
3758 /* Mark the tree SRC as an optional subexpression.
3759 To be called from preorder or postorder. */
3761 static reg_errcode_t
3762 mark_opt_subexp (void *extra, bin_tree_t *node)
3764 int idx = (int) (long) extra;
3765 if (node->token.type == SUBEXP && node->token.opr.idx == idx)
3766 node->token.opt_subexp = 1;
3768 return REG_NOERROR;
3771 /* Free the allocated memory inside NODE. */
3773 static void
3774 free_token (re_token_t *node)
3776 #ifdef RE_ENABLE_I18N
3777 if (node->type == COMPLEX_BRACKET && node->duplicated == 0)
3778 free_charset (node->opr.mbcset);
3779 else
3780 #endif /* RE_ENABLE_I18N */
3781 if (node->type == SIMPLE_BRACKET && node->duplicated == 0)
3782 re_free (node->opr.sbcset);
3785 /* Worker function for tree walking. Free the allocated memory inside NODE
3786 and its children. */
3788 static reg_errcode_t
3789 free_tree (void *extra, bin_tree_t *node)
3791 free_token (&node->token);
3792 return REG_NOERROR;
3796 /* Duplicate the node SRC, and return new node. This is a preorder
3797 visit similar to the one implemented by the generic visitor, but
3798 we need more infrastructure to maintain two parallel trees --- so,
3799 it's easier to duplicate. */
3801 static bin_tree_t *
3802 duplicate_tree (const bin_tree_t *root, re_dfa_t *dfa)
3804 const bin_tree_t *node;
3805 bin_tree_t *dup_root;
3806 bin_tree_t **p_new = &dup_root, *dup_node = root->parent;
3808 for (node = root; ; )
3810 /* Create a new tree and link it back to the current parent. */
3811 *p_new = create_token_tree (dfa, NULL, NULL, &node->token);
3812 if (*p_new == NULL)
3813 return NULL;
3814 (*p_new)->parent = dup_node;
3815 (*p_new)->token.duplicated = 1;
3816 dup_node = *p_new;
3818 /* Go to the left node, or up and to the right. */
3819 if (node->left)
3821 node = node->left;
3822 p_new = &dup_node->left;
3824 else
3826 const bin_tree_t *prev = NULL;
3827 while (node->right == prev || node->right == NULL)
3829 prev = node;
3830 node = node->parent;
3831 dup_node = dup_node->parent;
3832 if (!node)
3833 return dup_root;
3835 node = node->right;
3836 p_new = &dup_node->right;