[CVE-2009-5155] Diagnose ERE '()|\1'
[platform/upstream/diffutils.git] / lib / regcomp.c
1 /* Extended regular expression matching and search library.
2    Copyright (C) 2002-2013 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU General Public
8    License as published by the Free Software Foundation; either
9    version 3 of the License, or (at your option) any later version.
10
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    General Public License for more details.
15
16    You should have received a copy of the GNU General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 static reg_errcode_t re_compile_internal (regex_t *preg, const char * pattern,
21                                           size_t length, reg_syntax_t syntax);
22 static void re_compile_fastmap_iter (regex_t *bufp,
23                                      const re_dfastate_t *init_state,
24                                      char *fastmap);
25 static reg_errcode_t init_dfa (re_dfa_t *dfa, size_t pat_len);
26 #ifdef RE_ENABLE_I18N
27 static void free_charset (re_charset_t *cset);
28 #endif /* RE_ENABLE_I18N */
29 static void free_workarea_compile (regex_t *preg);
30 static reg_errcode_t create_initial_state (re_dfa_t *dfa);
31 #ifdef RE_ENABLE_I18N
32 static void optimize_utf8 (re_dfa_t *dfa);
33 #endif
34 static reg_errcode_t analyze (regex_t *preg);
35 static reg_errcode_t preorder (bin_tree_t *root,
36                                reg_errcode_t (fn (void *, bin_tree_t *)),
37                                void *extra);
38 static reg_errcode_t postorder (bin_tree_t *root,
39                                 reg_errcode_t (fn (void *, bin_tree_t *)),
40                                 void *extra);
41 static reg_errcode_t optimize_subexps (void *extra, bin_tree_t *node);
42 static reg_errcode_t lower_subexps (void *extra, bin_tree_t *node);
43 static bin_tree_t *lower_subexp (reg_errcode_t *err, regex_t *preg,
44                                  bin_tree_t *node);
45 static reg_errcode_t calc_first (void *extra, bin_tree_t *node);
46 static reg_errcode_t calc_next (void *extra, bin_tree_t *node);
47 static reg_errcode_t link_nfa_nodes (void *extra, bin_tree_t *node);
48 static Idx duplicate_node (re_dfa_t *dfa, Idx org_idx, unsigned int constraint);
49 static Idx search_duplicated_node (const re_dfa_t *dfa, Idx org_node,
50                                    unsigned int constraint);
51 static reg_errcode_t calc_eclosure (re_dfa_t *dfa);
52 static reg_errcode_t calc_eclosure_iter (re_node_set *new_set, re_dfa_t *dfa,
53                                          Idx node, bool root);
54 static reg_errcode_t calc_inveclosure (re_dfa_t *dfa);
55 static Idx fetch_number (re_string_t *input, re_token_t *token,
56                          reg_syntax_t syntax);
57 static int peek_token (re_token_t *token, re_string_t *input,
58                         reg_syntax_t syntax) internal_function;
59 static bin_tree_t *parse (re_string_t *regexp, regex_t *preg,
60                           reg_syntax_t syntax, reg_errcode_t *err);
61 static bin_tree_t *parse_reg_exp (re_string_t *regexp, regex_t *preg,
62                                   re_token_t *token, reg_syntax_t syntax,
63                                   Idx nest, reg_errcode_t *err);
64 static bin_tree_t *parse_branch (re_string_t *regexp, regex_t *preg,
65                                  re_token_t *token, reg_syntax_t syntax,
66                                  Idx nest, reg_errcode_t *err);
67 static bin_tree_t *parse_expression (re_string_t *regexp, regex_t *preg,
68                                      re_token_t *token, reg_syntax_t syntax,
69                                      Idx nest, reg_errcode_t *err);
70 static bin_tree_t *parse_sub_exp (re_string_t *regexp, regex_t *preg,
71                                   re_token_t *token, reg_syntax_t syntax,
72                                   Idx nest, reg_errcode_t *err);
73 static bin_tree_t *parse_dup_op (bin_tree_t *dup_elem, re_string_t *regexp,
74                                  re_dfa_t *dfa, re_token_t *token,
75                                  reg_syntax_t syntax, reg_errcode_t *err);
76 static bin_tree_t *parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa,
77                                       re_token_t *token, reg_syntax_t syntax,
78                                       reg_errcode_t *err);
79 static reg_errcode_t parse_bracket_element (bracket_elem_t *elem,
80                                             re_string_t *regexp,
81                                             re_token_t *token, int token_len,
82                                             re_dfa_t *dfa,
83                                             reg_syntax_t syntax,
84                                             bool accept_hyphen);
85 static reg_errcode_t parse_bracket_symbol (bracket_elem_t *elem,
86                                           re_string_t *regexp,
87                                           re_token_t *token);
88 #ifdef RE_ENABLE_I18N
89 static reg_errcode_t build_equiv_class (bitset_t sbcset,
90                                         re_charset_t *mbcset,
91                                         Idx *equiv_class_alloc,
92                                         const unsigned char *name);
93 static reg_errcode_t build_charclass (RE_TRANSLATE_TYPE trans,
94                                       bitset_t sbcset,
95                                       re_charset_t *mbcset,
96                                       Idx *char_class_alloc,
97                                       const char *class_name,
98                                       reg_syntax_t syntax);
99 #else  /* not RE_ENABLE_I18N */
100 static reg_errcode_t build_equiv_class (bitset_t sbcset,
101                                         const unsigned char *name);
102 static reg_errcode_t build_charclass (RE_TRANSLATE_TYPE trans,
103                                       bitset_t sbcset,
104                                       const char *class_name,
105                                       reg_syntax_t syntax);
106 #endif /* not RE_ENABLE_I18N */
107 static bin_tree_t *build_charclass_op (re_dfa_t *dfa,
108                                        RE_TRANSLATE_TYPE trans,
109                                        const char *class_name,
110                                        const char *extra,
111                                        bool non_match, reg_errcode_t *err);
112 static bin_tree_t *create_tree (re_dfa_t *dfa,
113                                 bin_tree_t *left, bin_tree_t *right,
114                                 re_token_type_t type);
115 static bin_tree_t *create_token_tree (re_dfa_t *dfa,
116                                       bin_tree_t *left, bin_tree_t *right,
117                                       const re_token_t *token);
118 static bin_tree_t *duplicate_tree (const bin_tree_t *src, re_dfa_t *dfa);
119 static void free_token (re_token_t *node);
120 static reg_errcode_t free_tree (void *extra, bin_tree_t *node);
121 static reg_errcode_t mark_opt_subexp (void *extra, bin_tree_t *node);
122 \f
123 /* This table gives an error message for each of the error codes listed
124    in regex.h.  Obviously the order here has to be same as there.
125    POSIX doesn't require that we do anything for REG_NOERROR,
126    but why not be nice?  */
127
128 static const char __re_error_msgid[] =
129   {
130 #define REG_NOERROR_IDX 0
131     gettext_noop ("Success")    /* REG_NOERROR */
132     "\0"
133 #define REG_NOMATCH_IDX (REG_NOERROR_IDX + sizeof "Success")
134     gettext_noop ("No match")   /* REG_NOMATCH */
135     "\0"
136 #define REG_BADPAT_IDX  (REG_NOMATCH_IDX + sizeof "No match")
137     gettext_noop ("Invalid regular expression") /* REG_BADPAT */
138     "\0"
139 #define REG_ECOLLATE_IDX (REG_BADPAT_IDX + sizeof "Invalid regular expression")
140     gettext_noop ("Invalid collation character") /* REG_ECOLLATE */
141     "\0"
142 #define REG_ECTYPE_IDX  (REG_ECOLLATE_IDX + sizeof "Invalid collation character")
143     gettext_noop ("Invalid character class name") /* REG_ECTYPE */
144     "\0"
145 #define REG_EESCAPE_IDX (REG_ECTYPE_IDX + sizeof "Invalid character class name")
146     gettext_noop ("Trailing backslash") /* REG_EESCAPE */
147     "\0"
148 #define REG_ESUBREG_IDX (REG_EESCAPE_IDX + sizeof "Trailing backslash")
149     gettext_noop ("Invalid back reference") /* REG_ESUBREG */
150     "\0"
151 #define REG_EBRACK_IDX  (REG_ESUBREG_IDX + sizeof "Invalid back reference")
152     gettext_noop ("Unmatched [ or [^")  /* REG_EBRACK */
153     "\0"
154 #define REG_EPAREN_IDX  (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
155     gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
156     "\0"
157 #define REG_EBRACE_IDX  (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")
158     gettext_noop ("Unmatched \\{") /* REG_EBRACE */
159     "\0"
160 #define REG_BADBR_IDX   (REG_EBRACE_IDX + sizeof "Unmatched \\{")
161     gettext_noop ("Invalid content of \\{\\}") /* REG_BADBR */
162     "\0"
163 #define REG_ERANGE_IDX  (REG_BADBR_IDX + sizeof "Invalid content of \\{\\}")
164     gettext_noop ("Invalid range end")  /* REG_ERANGE */
165     "\0"
166 #define REG_ESPACE_IDX  (REG_ERANGE_IDX + sizeof "Invalid range end")
167     gettext_noop ("Memory exhausted") /* REG_ESPACE */
168     "\0"
169 #define REG_BADRPT_IDX  (REG_ESPACE_IDX + sizeof "Memory exhausted")
170     gettext_noop ("Invalid preceding regular expression") /* REG_BADRPT */
171     "\0"
172 #define REG_EEND_IDX    (REG_BADRPT_IDX + sizeof "Invalid preceding regular expression")
173     gettext_noop ("Premature end of regular expression") /* REG_EEND */
174     "\0"
175 #define REG_ESIZE_IDX   (REG_EEND_IDX + sizeof "Premature end of regular expression")
176     gettext_noop ("Regular expression too big") /* REG_ESIZE */
177     "\0"
178 #define REG_ERPAREN_IDX (REG_ESIZE_IDX + sizeof "Regular expression too big")
179     gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */
180   };
181
182 static const size_t __re_error_msgid_idx[] =
183   {
184     REG_NOERROR_IDX,
185     REG_NOMATCH_IDX,
186     REG_BADPAT_IDX,
187     REG_ECOLLATE_IDX,
188     REG_ECTYPE_IDX,
189     REG_EESCAPE_IDX,
190     REG_ESUBREG_IDX,
191     REG_EBRACK_IDX,
192     REG_EPAREN_IDX,
193     REG_EBRACE_IDX,
194     REG_BADBR_IDX,
195     REG_ERANGE_IDX,
196     REG_ESPACE_IDX,
197     REG_BADRPT_IDX,
198     REG_EEND_IDX,
199     REG_ESIZE_IDX,
200     REG_ERPAREN_IDX
201   };
202 \f
203 /* Entry points for GNU code.  */
204
205 /* re_compile_pattern is the GNU regular expression compiler: it
206    compiles PATTERN (of length LENGTH) and puts the result in BUFP.
207    Returns 0 if the pattern was valid, otherwise an error string.
208
209    Assumes the 'allocated' (and perhaps 'buffer') and 'translate' fields
210    are set in BUFP on entry.  */
211
212 #ifdef _LIBC
213 const char *
214 re_compile_pattern (pattern, length, bufp)
215     const char *pattern;
216     size_t length;
217     struct re_pattern_buffer *bufp;
218 #else /* size_t might promote */
219 const char *
220 re_compile_pattern (const char *pattern, size_t length,
221                     struct re_pattern_buffer *bufp)
222 #endif
223 {
224   reg_errcode_t ret;
225
226   /* And GNU code determines whether or not to get register information
227      by passing null for the REGS argument to re_match, etc., not by
228      setting no_sub, unless RE_NO_SUB is set.  */
229   bufp->no_sub = !!(re_syntax_options & RE_NO_SUB);
230
231   /* Match anchors at newline.  */
232   bufp->newline_anchor = 1;
233
234   ret = re_compile_internal (bufp, pattern, length, re_syntax_options);
235
236   if (!ret)
237     return NULL;
238   return gettext (__re_error_msgid + __re_error_msgid_idx[(int) ret]);
239 }
240 #ifdef _LIBC
241 weak_alias (__re_compile_pattern, re_compile_pattern)
242 #endif
243
244 /* Set by 're_set_syntax' to the current regexp syntax to recognize.  Can
245    also be assigned to arbitrarily: each pattern buffer stores its own
246    syntax, so it can be changed between regex compilations.  */
247 /* This has no initializer because initialized variables in Emacs
248    become read-only after dumping.  */
249 reg_syntax_t re_syntax_options;
250
251
252 /* Specify the precise syntax of regexps for compilation.  This provides
253    for compatibility for various utilities which historically have
254    different, incompatible syntaxes.
255
256    The argument SYNTAX is a bit mask comprised of the various bits
257    defined in regex.h.  We return the old syntax.  */
258
259 reg_syntax_t
260 re_set_syntax (syntax)
261     reg_syntax_t syntax;
262 {
263   reg_syntax_t ret = re_syntax_options;
264
265   re_syntax_options = syntax;
266   return ret;
267 }
268 #ifdef _LIBC
269 weak_alias (__re_set_syntax, re_set_syntax)
270 #endif
271
272 int
273 re_compile_fastmap (bufp)
274     struct re_pattern_buffer *bufp;
275 {
276   re_dfa_t *dfa = bufp->buffer;
277   char *fastmap = bufp->fastmap;
278
279   memset (fastmap, '\0', sizeof (char) * SBC_MAX);
280   re_compile_fastmap_iter (bufp, dfa->init_state, fastmap);
281   if (dfa->init_state != dfa->init_state_word)
282     re_compile_fastmap_iter (bufp, dfa->init_state_word, fastmap);
283   if (dfa->init_state != dfa->init_state_nl)
284     re_compile_fastmap_iter (bufp, dfa->init_state_nl, fastmap);
285   if (dfa->init_state != dfa->init_state_begbuf)
286     re_compile_fastmap_iter (bufp, dfa->init_state_begbuf, fastmap);
287   bufp->fastmap_accurate = 1;
288   return 0;
289 }
290 #ifdef _LIBC
291 weak_alias (__re_compile_fastmap, re_compile_fastmap)
292 #endif
293
294 static inline void
295 __attribute__ ((always_inline))
296 re_set_fastmap (char *fastmap, bool icase, int ch)
297 {
298   fastmap[ch] = 1;
299   if (icase)
300     fastmap[tolower (ch)] = 1;
301 }
302
303 /* Helper function for re_compile_fastmap.
304    Compile fastmap for the initial_state INIT_STATE.  */
305
306 static void
307 re_compile_fastmap_iter (regex_t *bufp, const re_dfastate_t *init_state,
308                          char *fastmap)
309 {
310   re_dfa_t *dfa = bufp->buffer;
311   Idx node_cnt;
312   bool icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE));
313   for (node_cnt = 0; node_cnt < init_state->nodes.nelem; ++node_cnt)
314     {
315       Idx node = init_state->nodes.elems[node_cnt];
316       re_token_type_t type = dfa->nodes[node].type;
317
318       if (type == CHARACTER)
319         {
320           re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c);
321 #ifdef RE_ENABLE_I18N
322           if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
323             {
324               unsigned char buf[MB_LEN_MAX];
325               unsigned char *p;
326               wchar_t wc;
327               mbstate_t state;
328
329               p = buf;
330               *p++ = dfa->nodes[node].opr.c;
331               while (++node < dfa->nodes_len
332                      && dfa->nodes[node].type == CHARACTER
333                      && dfa->nodes[node].mb_partial)
334                 *p++ = dfa->nodes[node].opr.c;
335               memset (&state, '\0', sizeof (state));
336               if (__mbrtowc (&wc, (const char *) buf, p - buf,
337                              &state) == p - buf
338                   && (__wcrtomb ((char *) buf, towlower (wc), &state)
339                       != (size_t) -1))
340                 re_set_fastmap (fastmap, false, buf[0]);
341             }
342 #endif
343         }
344       else if (type == SIMPLE_BRACKET)
345         {
346           int i, ch;
347           for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
348             {
349               int j;
350               bitset_word_t w = dfa->nodes[node].opr.sbcset[i];
351               for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
352                 if (w & ((bitset_word_t) 1 << j))
353                   re_set_fastmap (fastmap, icase, ch);
354             }
355         }
356 #ifdef RE_ENABLE_I18N
357       else if (type == COMPLEX_BRACKET)
358         {
359           re_charset_t *cset = dfa->nodes[node].opr.mbcset;
360           Idx i;
361
362 # ifdef _LIBC
363           /* See if we have to try all bytes which start multiple collation
364              elements.
365              e.g. In da_DK, we want to catch 'a' since "aa" is a valid
366                   collation element, and don't catch 'b' since 'b' is
367                   the only collation element which starts from 'b' (and
368                   it is caught by SIMPLE_BRACKET).  */
369               if (_NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES) != 0
370                   && (cset->ncoll_syms || cset->nranges))
371                 {
372                   const int32_t *table = (const int32_t *)
373                     _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
374                   for (i = 0; i < SBC_MAX; ++i)
375                     if (table[i] < 0)
376                       re_set_fastmap (fastmap, icase, i);
377                 }
378 # endif /* _LIBC */
379
380           /* See if we have to start the match at all multibyte characters,
381              i.e. where we would not find an invalid sequence.  This only
382              applies to multibyte character sets; for single byte character
383              sets, the SIMPLE_BRACKET again suffices.  */
384           if (dfa->mb_cur_max > 1
385               && (cset->nchar_classes || cset->non_match || cset->nranges
386 # ifdef _LIBC
387                   || cset->nequiv_classes
388 # endif /* _LIBC */
389                  ))
390             {
391               unsigned char c = 0;
392               do
393                 {
394                   mbstate_t mbs;
395                   memset (&mbs, 0, sizeof (mbs));
396                   if (__mbrtowc (NULL, (char *) &c, 1, &mbs) == (size_t) -2)
397                     re_set_fastmap (fastmap, false, (int) c);
398                 }
399               while (++c != 0);
400             }
401
402           else
403             {
404               /* ... Else catch all bytes which can start the mbchars.  */
405               for (i = 0; i < cset->nmbchars; ++i)
406                 {
407                   char buf[256];
408                   mbstate_t state;
409                   memset (&state, '\0', sizeof (state));
410                   if (__wcrtomb (buf, cset->mbchars[i], &state) != (size_t) -1)
411                     re_set_fastmap (fastmap, icase, *(unsigned char *) buf);
412                   if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
413                     {
414                       if (__wcrtomb (buf, towlower (cset->mbchars[i]), &state)
415                           != (size_t) -1)
416                         re_set_fastmap (fastmap, false, *(unsigned char *) buf);
417                     }
418                 }
419             }
420         }
421 #endif /* RE_ENABLE_I18N */
422       else if (type == OP_PERIOD
423 #ifdef RE_ENABLE_I18N
424                || type == OP_UTF8_PERIOD
425 #endif /* RE_ENABLE_I18N */
426                || type == END_OF_RE)
427         {
428           memset (fastmap, '\1', sizeof (char) * SBC_MAX);
429           if (type == END_OF_RE)
430             bufp->can_be_null = 1;
431           return;
432         }
433     }
434 }
435 \f
436 /* Entry point for POSIX code.  */
437 /* regcomp takes a regular expression as a string and compiles it.
438
439    PREG is a regex_t *.  We do not expect any fields to be initialized,
440    since POSIX says we shouldn't.  Thus, we set
441
442      'buffer' to the compiled pattern;
443      'used' to the length of the compiled pattern;
444      'syntax' to RE_SYNTAX_POSIX_EXTENDED if the
445        REG_EXTENDED bit in CFLAGS is set; otherwise, to
446        RE_SYNTAX_POSIX_BASIC;
447      'newline_anchor' to REG_NEWLINE being set in CFLAGS;
448      'fastmap' to an allocated space for the fastmap;
449      'fastmap_accurate' to zero;
450      're_nsub' to the number of subexpressions in PATTERN.
451
452    PATTERN is the address of the pattern string.
453
454    CFLAGS is a series of bits which affect compilation.
455
456      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
457      use POSIX basic syntax.
458
459      If REG_NEWLINE is set, then . and [^...] don't match newline.
460      Also, regexec will try a match beginning after every newline.
461
462      If REG_ICASE is set, then we considers upper- and lowercase
463      versions of letters to be equivalent when matching.
464
465      If REG_NOSUB is set, then when PREG is passed to regexec, that
466      routine will report only success or failure, and nothing about the
467      registers.
468
469    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
470    the return codes and their meanings.)  */
471
472 int
473 regcomp (preg, pattern, cflags)
474     regex_t *_Restrict_ preg;
475     const char *_Restrict_ pattern;
476     int cflags;
477 {
478   reg_errcode_t ret;
479   reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED
480                          : RE_SYNTAX_POSIX_BASIC);
481
482   preg->buffer = NULL;
483   preg->allocated = 0;
484   preg->used = 0;
485
486   /* Try to allocate space for the fastmap.  */
487   preg->fastmap = re_malloc (char, SBC_MAX);
488   if (BE (preg->fastmap == NULL, 0))
489     return REG_ESPACE;
490
491   syntax |= (cflags & REG_ICASE) ? RE_ICASE : 0;
492
493   /* If REG_NEWLINE is set, newlines are treated differently.  */
494   if (cflags & REG_NEWLINE)
495     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
496       syntax &= ~RE_DOT_NEWLINE;
497       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
498       /* It also changes the matching behavior.  */
499       preg->newline_anchor = 1;
500     }
501   else
502     preg->newline_anchor = 0;
503   preg->no_sub = !!(cflags & REG_NOSUB);
504   preg->translate = NULL;
505
506   ret = re_compile_internal (preg, pattern, strlen (pattern), syntax);
507
508   /* POSIX doesn't distinguish between an unmatched open-group and an
509      unmatched close-group: both are REG_EPAREN.  */
510   if (ret == REG_ERPAREN)
511     ret = REG_EPAREN;
512
513   /* We have already checked preg->fastmap != NULL.  */
514   if (BE (ret == REG_NOERROR, 1))
515     /* Compute the fastmap now, since regexec cannot modify the pattern
516        buffer.  This function never fails in this implementation.  */
517     (void) re_compile_fastmap (preg);
518   else
519     {
520       /* Some error occurred while compiling the expression.  */
521       re_free (preg->fastmap);
522       preg->fastmap = NULL;
523     }
524
525   return (int) ret;
526 }
527 #ifdef _LIBC
528 weak_alias (__regcomp, regcomp)
529 #endif
530
531 /* Returns a message corresponding to an error code, ERRCODE, returned
532    from either regcomp or regexec.   We don't use PREG here.  */
533
534 #ifdef _LIBC
535 size_t
536 regerror (errcode, preg, errbuf, errbuf_size)
537     int errcode;
538     const regex_t *_Restrict_ preg;
539     char *_Restrict_ errbuf;
540     size_t errbuf_size;
541 #else /* size_t might promote */
542 size_t
543 regerror (int errcode, const regex_t *_Restrict_ preg _UNUSED_PARAMETER_,
544           char *_Restrict_ errbuf, size_t errbuf_size)
545 #endif
546 {
547   const char *msg;
548   size_t msg_size;
549
550   if (BE (errcode < 0
551           || errcode >= (int) (sizeof (__re_error_msgid_idx)
552                                / sizeof (__re_error_msgid_idx[0])), 0))
553     /* Only error codes returned by the rest of the code should be passed
554        to this routine.  If we are given anything else, or if other regex
555        code generates an invalid error code, then the program has a bug.
556        Dump core so we can fix it.  */
557     abort ();
558
559   msg = gettext (__re_error_msgid + __re_error_msgid_idx[errcode]);
560
561   msg_size = strlen (msg) + 1; /* Includes the null.  */
562
563   if (BE (errbuf_size != 0, 1))
564     {
565       size_t cpy_size = msg_size;
566       if (BE (msg_size > errbuf_size, 0))
567         {
568           cpy_size = errbuf_size - 1;
569           errbuf[cpy_size] = '\0';
570         }
571       memcpy (errbuf, msg, cpy_size);
572     }
573
574   return msg_size;
575 }
576 #ifdef _LIBC
577 weak_alias (__regerror, regerror)
578 #endif
579
580
581 #ifdef RE_ENABLE_I18N
582 /* This static array is used for the map to single-byte characters when
583    UTF-8 is used.  Otherwise we would allocate memory just to initialize
584    it the same all the time.  UTF-8 is the preferred encoding so this is
585    a worthwhile optimization.  */
586 static const bitset_t utf8_sb_map =
587 {
588   /* Set the first 128 bits.  */
589 # ifdef __GNUC__
590   [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX
591 # else
592 #  if 4 * BITSET_WORD_BITS < ASCII_CHARS
593 #   error "bitset_word_t is narrower than 32 bits"
594 #  elif 3 * BITSET_WORD_BITS < ASCII_CHARS
595   BITSET_WORD_MAX, BITSET_WORD_MAX, BITSET_WORD_MAX,
596 #  elif 2 * BITSET_WORD_BITS < ASCII_CHARS
597   BITSET_WORD_MAX, BITSET_WORD_MAX,
598 #  elif 1 * BITSET_WORD_BITS < ASCII_CHARS
599   BITSET_WORD_MAX,
600 #  endif
601   (BITSET_WORD_MAX
602    >> (SBC_MAX % BITSET_WORD_BITS == 0
603        ? 0
604        : BITSET_WORD_BITS - SBC_MAX % BITSET_WORD_BITS))
605 # endif
606 };
607 #endif
608
609
610 static void
611 free_dfa_content (re_dfa_t *dfa)
612 {
613   Idx i, j;
614
615   if (dfa->nodes)
616     for (i = 0; i < dfa->nodes_len; ++i)
617       free_token (dfa->nodes + i);
618   re_free (dfa->nexts);
619   for (i = 0; i < dfa->nodes_len; ++i)
620     {
621       if (dfa->eclosures != NULL)
622         re_node_set_free (dfa->eclosures + i);
623       if (dfa->inveclosures != NULL)
624         re_node_set_free (dfa->inveclosures + i);
625       if (dfa->edests != NULL)
626         re_node_set_free (dfa->edests + i);
627     }
628   re_free (dfa->edests);
629   re_free (dfa->eclosures);
630   re_free (dfa->inveclosures);
631   re_free (dfa->nodes);
632
633   if (dfa->state_table)
634     for (i = 0; i <= dfa->state_hash_mask; ++i)
635       {
636         struct re_state_table_entry *entry = dfa->state_table + i;
637         for (j = 0; j < entry->num; ++j)
638           {
639             re_dfastate_t *state = entry->array[j];
640             free_state (state);
641           }
642         re_free (entry->array);
643       }
644   re_free (dfa->state_table);
645 #ifdef RE_ENABLE_I18N
646   if (dfa->sb_char != utf8_sb_map)
647     re_free (dfa->sb_char);
648 #endif
649   re_free (dfa->subexp_map);
650 #ifdef DEBUG
651   re_free (dfa->re_str);
652 #endif
653
654   re_free (dfa);
655 }
656
657
658 /* Free dynamically allocated space used by PREG.  */
659
660 void
661 regfree (preg)
662     regex_t *preg;
663 {
664   re_dfa_t *dfa = preg->buffer;
665   if (BE (dfa != NULL, 1))
666     free_dfa_content (dfa);
667   preg->buffer = NULL;
668   preg->allocated = 0;
669
670   re_free (preg->fastmap);
671   preg->fastmap = NULL;
672
673   re_free (preg->translate);
674   preg->translate = NULL;
675 }
676 #ifdef _LIBC
677 weak_alias (__regfree, regfree)
678 #endif
679 \f
680 /* Entry points compatible with 4.2 BSD regex library.  We don't define
681    them unless specifically requested.  */
682
683 #if defined _REGEX_RE_COMP || defined _LIBC
684
685 /* BSD has one and only one pattern buffer.  */
686 static struct re_pattern_buffer re_comp_buf;
687
688 char *
689 # ifdef _LIBC
690 /* Make these definitions weak in libc, so POSIX programs can redefine
691    these names if they don't use our functions, and still use
692    regcomp/regexec above without link errors.  */
693 weak_function
694 # endif
695 re_comp (s)
696      const char *s;
697 {
698   reg_errcode_t ret;
699   char *fastmap;
700
701   if (!s)
702     {
703       if (!re_comp_buf.buffer)
704         return gettext ("No previous regular expression");
705       return 0;
706     }
707
708   if (re_comp_buf.buffer)
709     {
710       fastmap = re_comp_buf.fastmap;
711       re_comp_buf.fastmap = NULL;
712       __regfree (&re_comp_buf);
713       memset (&re_comp_buf, '\0', sizeof (re_comp_buf));
714       re_comp_buf.fastmap = fastmap;
715     }
716
717   if (re_comp_buf.fastmap == NULL)
718     {
719       re_comp_buf.fastmap = (char *) malloc (SBC_MAX);
720       if (re_comp_buf.fastmap == NULL)
721         return (char *) gettext (__re_error_msgid
722                                  + __re_error_msgid_idx[(int) REG_ESPACE]);
723     }
724
725   /* Since 're_exec' always passes NULL for the 'regs' argument, we
726      don't need to initialize the pattern buffer fields which affect it.  */
727
728   /* Match anchors at newlines.  */
729   re_comp_buf.newline_anchor = 1;
730
731   ret = re_compile_internal (&re_comp_buf, s, strlen (s), re_syntax_options);
732
733   if (!ret)
734     return NULL;
735
736   /* Yes, we're discarding 'const' here if !HAVE_LIBINTL.  */
737   return (char *) gettext (__re_error_msgid + __re_error_msgid_idx[(int) ret]);
738 }
739
740 #ifdef _LIBC
741 libc_freeres_fn (free_mem)
742 {
743   __regfree (&re_comp_buf);
744 }
745 #endif
746
747 #endif /* _REGEX_RE_COMP */
748 \f
749 /* Internal entry point.
750    Compile the regular expression PATTERN, whose length is LENGTH.
751    SYNTAX indicate regular expression's syntax.  */
752
753 static reg_errcode_t
754 re_compile_internal (regex_t *preg, const char * pattern, size_t length,
755                      reg_syntax_t syntax)
756 {
757   reg_errcode_t err = REG_NOERROR;
758   re_dfa_t *dfa;
759   re_string_t regexp;
760
761   /* Initialize the pattern buffer.  */
762   preg->fastmap_accurate = 0;
763   preg->syntax = syntax;
764   preg->not_bol = preg->not_eol = 0;
765   preg->used = 0;
766   preg->re_nsub = 0;
767   preg->can_be_null = 0;
768   preg->regs_allocated = REGS_UNALLOCATED;
769
770   /* Initialize the dfa.  */
771   dfa = preg->buffer;
772   if (BE (preg->allocated < sizeof (re_dfa_t), 0))
773     {
774       /* If zero allocated, but buffer is non-null, try to realloc
775          enough space.  This loses if buffer's address is bogus, but
776          that is the user's responsibility.  If ->buffer is NULL this
777          is a simple allocation.  */
778       dfa = re_realloc (preg->buffer, re_dfa_t, 1);
779       if (dfa == NULL)
780         return REG_ESPACE;
781       preg->allocated = sizeof (re_dfa_t);
782       preg->buffer = dfa;
783     }
784   preg->used = sizeof (re_dfa_t);
785
786   err = init_dfa (dfa, length);
787   if (BE (err != REG_NOERROR, 0))
788     {
789       free_dfa_content (dfa);
790       preg->buffer = NULL;
791       preg->allocated = 0;
792       return err;
793     }
794 #ifdef DEBUG
795   /* Note: length+1 will not overflow since it is checked in init_dfa.  */
796   dfa->re_str = re_malloc (char, length + 1);
797   strncpy (dfa->re_str, pattern, length + 1);
798 #endif
799
800   __libc_lock_init (dfa->lock);
801
802   err = re_string_construct (&regexp, pattern, length, preg->translate,
803                              (syntax & RE_ICASE) != 0, dfa);
804   if (BE (err != REG_NOERROR, 0))
805     {
806     re_compile_internal_free_return:
807       free_workarea_compile (preg);
808       re_string_destruct (&regexp);
809       free_dfa_content (dfa);
810       preg->buffer = NULL;
811       preg->allocated = 0;
812       return err;
813     }
814
815   /* Parse the regular expression, and build a structure tree.  */
816   preg->re_nsub = 0;
817   dfa->str_tree = parse (&regexp, preg, syntax, &err);
818   if (BE (dfa->str_tree == NULL, 0))
819     goto re_compile_internal_free_return;
820
821   /* Analyze the tree and create the nfa.  */
822   err = analyze (preg);
823   if (BE (err != REG_NOERROR, 0))
824     goto re_compile_internal_free_return;
825
826 #ifdef RE_ENABLE_I18N
827   /* If possible, do searching in single byte encoding to speed things up.  */
828   if (dfa->is_utf8 && !(syntax & RE_ICASE) && preg->translate == NULL)
829     optimize_utf8 (dfa);
830 #endif
831
832   /* Then create the initial state of the dfa.  */
833   err = create_initial_state (dfa);
834
835   /* Release work areas.  */
836   free_workarea_compile (preg);
837   re_string_destruct (&regexp);
838
839   if (BE (err != REG_NOERROR, 0))
840     {
841       free_dfa_content (dfa);
842       preg->buffer = NULL;
843       preg->allocated = 0;
844     }
845
846   return err;
847 }
848
849 /* Initialize DFA.  We use the length of the regular expression PAT_LEN
850    as the initial length of some arrays.  */
851
852 static reg_errcode_t
853 init_dfa (re_dfa_t *dfa, size_t pat_len)
854 {
855   __re_size_t table_size;
856 #ifndef _LIBC
857   const char *codeset_name;
858 #endif
859 #ifdef RE_ENABLE_I18N
860   size_t max_i18n_object_size = MAX (sizeof (wchar_t), sizeof (wctype_t));
861 #else
862   size_t max_i18n_object_size = 0;
863 #endif
864   size_t max_object_size =
865     MAX (sizeof (struct re_state_table_entry),
866          MAX (sizeof (re_token_t),
867               MAX (sizeof (re_node_set),
868                    MAX (sizeof (regmatch_t),
869                         max_i18n_object_size))));
870
871   memset (dfa, '\0', sizeof (re_dfa_t));
872
873   /* Force allocation of str_tree_storage the first time.  */
874   dfa->str_tree_storage_idx = BIN_TREE_STORAGE_SIZE;
875
876   /* Avoid overflows.  The extra "/ 2" is for the table_size doubling
877      calculation below, and for similar doubling calculations
878      elsewhere.  And it's <= rather than <, because some of the
879      doubling calculations add 1 afterwards.  */
880   if (BE (MIN (IDX_MAX, SIZE_MAX / max_object_size) / 2 <= pat_len, 0))
881     return REG_ESPACE;
882
883   dfa->nodes_alloc = pat_len + 1;
884   dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc);
885
886   /*  table_size = 2 ^ ceil(log pat_len) */
887   for (table_size = 1; ; table_size <<= 1)
888     if (table_size > pat_len)
889       break;
890
891   dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
892   dfa->state_hash_mask = table_size - 1;
893
894   dfa->mb_cur_max = MB_CUR_MAX;
895 #ifdef _LIBC
896   if (dfa->mb_cur_max == 6
897       && strcmp (_NL_CURRENT (LC_CTYPE, _NL_CTYPE_CODESET_NAME), "UTF-8") == 0)
898     dfa->is_utf8 = 1;
899   dfa->map_notascii = (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MAP_TO_NONASCII)
900                        != 0);
901 #else
902   codeset_name = nl_langinfo (CODESET);
903   if ((codeset_name[0] == 'U' || codeset_name[0] == 'u')
904       && (codeset_name[1] == 'T' || codeset_name[1] == 't')
905       && (codeset_name[2] == 'F' || codeset_name[2] == 'f')
906       && strcmp (codeset_name + 3 + (codeset_name[3] == '-'), "8") == 0)
907     dfa->is_utf8 = 1;
908
909   /* We check exhaustively in the loop below if this charset is a
910      superset of ASCII.  */
911   dfa->map_notascii = 0;
912 #endif
913
914 #ifdef RE_ENABLE_I18N
915   if (dfa->mb_cur_max > 1)
916     {
917       if (dfa->is_utf8)
918         dfa->sb_char = (re_bitset_ptr_t) utf8_sb_map;
919       else
920         {
921           int i, j, ch;
922
923           dfa->sb_char = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
924           if (BE (dfa->sb_char == NULL, 0))
925             return REG_ESPACE;
926
927           /* Set the bits corresponding to single byte chars.  */
928           for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
929             for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
930               {
931                 wint_t wch = __btowc (ch);
932                 if (wch != WEOF)
933                   dfa->sb_char[i] |= (bitset_word_t) 1 << j;
934 # ifndef _LIBC
935                 if (isascii (ch) && wch != ch)
936                   dfa->map_notascii = 1;
937 # endif
938               }
939         }
940     }
941 #endif
942
943   if (BE (dfa->nodes == NULL || dfa->state_table == NULL, 0))
944     return REG_ESPACE;
945   return REG_NOERROR;
946 }
947
948 /* Initialize WORD_CHAR table, which indicate which character is
949    "word".  In this case "word" means that it is the word construction
950    character used by some operators like "\<", "\>", etc.  */
951
952 static void
953 internal_function
954 init_word_char (re_dfa_t *dfa)
955 {
956   int i = 0;
957   int j;
958   int ch = 0;
959   dfa->word_ops_used = 1;
960   if (BE (dfa->map_notascii == 0, 1))
961     {
962       bitset_word_t bits0 = 0x00000000;
963       bitset_word_t bits1 = 0x03ff0000;
964       bitset_word_t bits2 = 0x87fffffe;
965       bitset_word_t bits3 = 0x07fffffe;
966       if (BITSET_WORD_BITS == 64)
967         {
968           dfa->word_char[0] = bits1 << 31 << 1 | bits0;
969           dfa->word_char[1] = bits3 << 31 << 1 | bits2;
970           i = 2;
971         }
972       else if (BITSET_WORD_BITS == 32)
973         {
974           dfa->word_char[0] = bits0;
975           dfa->word_char[1] = bits1;
976           dfa->word_char[2] = bits2;
977           dfa->word_char[3] = bits3;
978           i = 4;
979         }
980       else
981         goto general_case;
982       ch = 128;
983
984       if (BE (dfa->is_utf8, 1))
985         {
986           memset (&dfa->word_char[i], '\0', (SBC_MAX - ch) / 8);
987           return;
988         }
989     }
990
991  general_case:
992   for (; i < BITSET_WORDS; ++i)
993     for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
994       if (isalnum (ch) || ch == '_')
995         dfa->word_char[i] |= (bitset_word_t) 1 << j;
996 }
997
998 /* Free the work area which are only used while compiling.  */
999
1000 static void
1001 free_workarea_compile (regex_t *preg)
1002 {
1003   re_dfa_t *dfa = preg->buffer;
1004   bin_tree_storage_t *storage, *next;
1005   for (storage = dfa->str_tree_storage; storage; storage = next)
1006     {
1007       next = storage->next;
1008       re_free (storage);
1009     }
1010   dfa->str_tree_storage = NULL;
1011   dfa->str_tree_storage_idx = BIN_TREE_STORAGE_SIZE;
1012   dfa->str_tree = NULL;
1013   re_free (dfa->org_indices);
1014   dfa->org_indices = NULL;
1015 }
1016
1017 /* Create initial states for all contexts.  */
1018
1019 static reg_errcode_t
1020 create_initial_state (re_dfa_t *dfa)
1021 {
1022   Idx first, i;
1023   reg_errcode_t err;
1024   re_node_set init_nodes;
1025
1026   /* Initial states have the epsilon closure of the node which is
1027      the first node of the regular expression.  */
1028   first = dfa->str_tree->first->node_idx;
1029   dfa->init_node = first;
1030   err = re_node_set_init_copy (&init_nodes, dfa->eclosures + first);
1031   if (BE (err != REG_NOERROR, 0))
1032     return err;
1033
1034   /* The back-references which are in initial states can epsilon transit,
1035      since in this case all of the subexpressions can be null.
1036      Then we add epsilon closures of the nodes which are the next nodes of
1037      the back-references.  */
1038   if (dfa->nbackref > 0)
1039     for (i = 0; i < init_nodes.nelem; ++i)
1040       {
1041         Idx node_idx = init_nodes.elems[i];
1042         re_token_type_t type = dfa->nodes[node_idx].type;
1043
1044         Idx clexp_idx;
1045         if (type != OP_BACK_REF)
1046           continue;
1047         for (clexp_idx = 0; clexp_idx < init_nodes.nelem; ++clexp_idx)
1048           {
1049             re_token_t *clexp_node;
1050             clexp_node = dfa->nodes + init_nodes.elems[clexp_idx];
1051             if (clexp_node->type == OP_CLOSE_SUBEXP
1052                 && clexp_node->opr.idx == dfa->nodes[node_idx].opr.idx)
1053               break;
1054           }
1055         if (clexp_idx == init_nodes.nelem)
1056           continue;
1057
1058         if (type == OP_BACK_REF)
1059           {
1060             Idx dest_idx = dfa->edests[node_idx].elems[0];
1061             if (!re_node_set_contains (&init_nodes, dest_idx))
1062               {
1063                 reg_errcode_t merge_err
1064                   = re_node_set_merge (&init_nodes, dfa->eclosures + dest_idx);
1065                 if (merge_err != REG_NOERROR)
1066                   return merge_err;
1067                 i = 0;
1068               }
1069           }
1070       }
1071
1072   /* It must be the first time to invoke acquire_state.  */
1073   dfa->init_state = re_acquire_state_context (&err, dfa, &init_nodes, 0);
1074   /* We don't check ERR here, since the initial state must not be NULL.  */
1075   if (BE (dfa->init_state == NULL, 0))
1076     return err;
1077   if (dfa->init_state->has_constraint)
1078     {
1079       dfa->init_state_word = re_acquire_state_context (&err, dfa, &init_nodes,
1080                                                        CONTEXT_WORD);
1081       dfa->init_state_nl = re_acquire_state_context (&err, dfa, &init_nodes,
1082                                                      CONTEXT_NEWLINE);
1083       dfa->init_state_begbuf = re_acquire_state_context (&err, dfa,
1084                                                          &init_nodes,
1085                                                          CONTEXT_NEWLINE
1086                                                          | CONTEXT_BEGBUF);
1087       if (BE (dfa->init_state_word == NULL || dfa->init_state_nl == NULL
1088               || dfa->init_state_begbuf == NULL, 0))
1089         return err;
1090     }
1091   else
1092     dfa->init_state_word = dfa->init_state_nl
1093       = dfa->init_state_begbuf = dfa->init_state;
1094
1095   re_node_set_free (&init_nodes);
1096   return REG_NOERROR;
1097 }
1098 \f
1099 #ifdef RE_ENABLE_I18N
1100 /* If it is possible to do searching in single byte encoding instead of UTF-8
1101    to speed things up, set dfa->mb_cur_max to 1, clear is_utf8 and change
1102    DFA nodes where needed.  */
1103
1104 static void
1105 optimize_utf8 (re_dfa_t *dfa)
1106 {
1107   Idx node;
1108   int i;
1109   bool mb_chars = false;
1110   bool has_period = false;
1111
1112   for (node = 0; node < dfa->nodes_len; ++node)
1113     switch (dfa->nodes[node].type)
1114       {
1115       case CHARACTER:
1116         if (dfa->nodes[node].opr.c >= ASCII_CHARS)
1117           mb_chars = true;
1118         break;
1119       case ANCHOR:
1120         switch (dfa->nodes[node].opr.ctx_type)
1121           {
1122           case LINE_FIRST:
1123           case LINE_LAST:
1124           case BUF_FIRST:
1125           case BUF_LAST:
1126             break;
1127           default:
1128             /* Word anchors etc. cannot be handled.  It's okay to test
1129                opr.ctx_type since constraints (for all DFA nodes) are
1130                created by ORing one or more opr.ctx_type values.  */
1131             return;
1132           }
1133         break;
1134       case OP_PERIOD:
1135         has_period = true;
1136         break;
1137       case OP_BACK_REF:
1138       case OP_ALT:
1139       case END_OF_RE:
1140       case OP_DUP_ASTERISK:
1141       case OP_OPEN_SUBEXP:
1142       case OP_CLOSE_SUBEXP:
1143         break;
1144       case COMPLEX_BRACKET:
1145         return;
1146       case SIMPLE_BRACKET:
1147         /* Just double check.  */
1148         {
1149           int rshift = (ASCII_CHARS % BITSET_WORD_BITS == 0
1150                         ? 0
1151                         : BITSET_WORD_BITS - ASCII_CHARS % BITSET_WORD_BITS);
1152           for (i = ASCII_CHARS / BITSET_WORD_BITS; i < BITSET_WORDS; ++i)
1153             {
1154               if (dfa->nodes[node].opr.sbcset[i] >> rshift != 0)
1155                 return;
1156               rshift = 0;
1157             }
1158         }
1159         break;
1160       default:
1161         abort ();
1162       }
1163
1164   if (mb_chars || has_period)
1165     for (node = 0; node < dfa->nodes_len; ++node)
1166       {
1167         if (dfa->nodes[node].type == CHARACTER
1168             && dfa->nodes[node].opr.c >= ASCII_CHARS)
1169           dfa->nodes[node].mb_partial = 0;
1170         else if (dfa->nodes[node].type == OP_PERIOD)
1171           dfa->nodes[node].type = OP_UTF8_PERIOD;
1172       }
1173
1174   /* The search can be in single byte locale.  */
1175   dfa->mb_cur_max = 1;
1176   dfa->is_utf8 = 0;
1177   dfa->has_mb_node = dfa->nbackref > 0 || has_period;
1178 }
1179 #endif
1180 \f
1181 /* Analyze the structure tree, and calculate "first", "next", "edest",
1182    "eclosure", and "inveclosure".  */
1183
1184 static reg_errcode_t
1185 analyze (regex_t *preg)
1186 {
1187   re_dfa_t *dfa = preg->buffer;
1188   reg_errcode_t ret;
1189
1190   /* Allocate arrays.  */
1191   dfa->nexts = re_malloc (Idx, dfa->nodes_alloc);
1192   dfa->org_indices = re_malloc (Idx, dfa->nodes_alloc);
1193   dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc);
1194   dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc);
1195   if (BE (dfa->nexts == NULL || dfa->org_indices == NULL || dfa->edests == NULL
1196           || dfa->eclosures == NULL, 0))
1197     return REG_ESPACE;
1198
1199   dfa->subexp_map = re_malloc (Idx, preg->re_nsub);
1200   if (dfa->subexp_map != NULL)
1201     {
1202       Idx i;
1203       for (i = 0; i < preg->re_nsub; i++)
1204         dfa->subexp_map[i] = i;
1205       preorder (dfa->str_tree, optimize_subexps, dfa);
1206       for (i = 0; i < preg->re_nsub; i++)
1207         if (dfa->subexp_map[i] != i)
1208           break;
1209       if (i == preg->re_nsub)
1210         {
1211           free (dfa->subexp_map);
1212           dfa->subexp_map = NULL;
1213         }
1214     }
1215
1216   ret = postorder (dfa->str_tree, lower_subexps, preg);
1217   if (BE (ret != REG_NOERROR, 0))
1218     return ret;
1219   ret = postorder (dfa->str_tree, calc_first, dfa);
1220   if (BE (ret != REG_NOERROR, 0))
1221     return ret;
1222   preorder (dfa->str_tree, calc_next, dfa);
1223   ret = preorder (dfa->str_tree, link_nfa_nodes, dfa);
1224   if (BE (ret != REG_NOERROR, 0))
1225     return ret;
1226   ret = calc_eclosure (dfa);
1227   if (BE (ret != REG_NOERROR, 0))
1228     return ret;
1229
1230   /* We only need this during the prune_impossible_nodes pass in regexec.c;
1231      skip it if p_i_n will not run, as calc_inveclosure can be quadratic.  */
1232   if ((!preg->no_sub && preg->re_nsub > 0 && dfa->has_plural_match)
1233       || dfa->nbackref)
1234     {
1235       dfa->inveclosures = re_malloc (re_node_set, dfa->nodes_len);
1236       if (BE (dfa->inveclosures == NULL, 0))
1237         return REG_ESPACE;
1238       ret = calc_inveclosure (dfa);
1239     }
1240
1241   return ret;
1242 }
1243
1244 /* Our parse trees are very unbalanced, so we cannot use a stack to
1245    implement parse tree visits.  Instead, we use parent pointers and
1246    some hairy code in these two functions.  */
1247 static reg_errcode_t
1248 postorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)),
1249            void *extra)
1250 {
1251   bin_tree_t *node, *prev;
1252
1253   for (node = root; ; )
1254     {
1255       /* Descend down the tree, preferably to the left (or to the right
1256          if that's the only child).  */
1257       while (node->left || node->right)
1258         if (node->left)
1259           node = node->left;
1260         else
1261           node = node->right;
1262
1263       do
1264         {
1265           reg_errcode_t err = fn (extra, node);
1266           if (BE (err != REG_NOERROR, 0))
1267             return err;
1268           if (node->parent == NULL)
1269             return REG_NOERROR;
1270           prev = node;
1271           node = node->parent;
1272         }
1273       /* Go up while we have a node that is reached from the right.  */
1274       while (node->right == prev || node->right == NULL);
1275       node = node->right;
1276     }
1277 }
1278
1279 static reg_errcode_t
1280 preorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)),
1281           void *extra)
1282 {
1283   bin_tree_t *node;
1284
1285   for (node = root; ; )
1286     {
1287       reg_errcode_t err = fn (extra, node);
1288       if (BE (err != REG_NOERROR, 0))
1289         return err;
1290
1291       /* Go to the left node, or up and to the right.  */
1292       if (node->left)
1293         node = node->left;
1294       else
1295         {
1296           bin_tree_t *prev = NULL;
1297           while (node->right == prev || node->right == NULL)
1298             {
1299               prev = node;
1300               node = node->parent;
1301               if (!node)
1302                 return REG_NOERROR;
1303             }
1304           node = node->right;
1305         }
1306     }
1307 }
1308
1309 /* Optimization pass: if a SUBEXP is entirely contained, strip it and tell
1310    re_search_internal to map the inner one's opr.idx to this one's.  Adjust
1311    backreferences as well.  Requires a preorder visit.  */
1312 static reg_errcode_t
1313 optimize_subexps (void *extra, bin_tree_t *node)
1314 {
1315   re_dfa_t *dfa = (re_dfa_t *) extra;
1316
1317   if (node->token.type == OP_BACK_REF && dfa->subexp_map)
1318     {
1319       int idx = node->token.opr.idx;
1320       node->token.opr.idx = dfa->subexp_map[idx];
1321       dfa->used_bkref_map |= 1 << node->token.opr.idx;
1322     }
1323
1324   else if (node->token.type == SUBEXP
1325            && node->left && node->left->token.type == SUBEXP)
1326     {
1327       Idx other_idx = node->left->token.opr.idx;
1328
1329       node->left = node->left->left;
1330       if (node->left)
1331         node->left->parent = node;
1332
1333       dfa->subexp_map[other_idx] = dfa->subexp_map[node->token.opr.idx];
1334       if (other_idx < BITSET_WORD_BITS)
1335         dfa->used_bkref_map &= ~((bitset_word_t) 1 << other_idx);
1336     }
1337
1338   return REG_NOERROR;
1339 }
1340
1341 /* Lowering pass: Turn each SUBEXP node into the appropriate concatenation
1342    of OP_OPEN_SUBEXP, the body of the SUBEXP (if any) and OP_CLOSE_SUBEXP.  */
1343 static reg_errcode_t
1344 lower_subexps (void *extra, bin_tree_t *node)
1345 {
1346   regex_t *preg = (regex_t *) extra;
1347   reg_errcode_t err = REG_NOERROR;
1348
1349   if (node->left && node->left->token.type == SUBEXP)
1350     {
1351       node->left = lower_subexp (&err, preg, node->left);
1352       if (node->left)
1353         node->left->parent = node;
1354     }
1355   if (node->right && node->right->token.type == SUBEXP)
1356     {
1357       node->right = lower_subexp (&err, preg, node->right);
1358       if (node->right)
1359         node->right->parent = node;
1360     }
1361
1362   return err;
1363 }
1364
1365 static bin_tree_t *
1366 lower_subexp (reg_errcode_t *err, regex_t *preg, bin_tree_t *node)
1367 {
1368   re_dfa_t *dfa = preg->buffer;
1369   bin_tree_t *body = node->left;
1370   bin_tree_t *op, *cls, *tree1, *tree;
1371
1372   if (preg->no_sub
1373       /* We do not optimize empty subexpressions, because otherwise we may
1374          have bad CONCAT nodes with NULL children.  This is obviously not
1375          very common, so we do not lose much.  An example that triggers
1376          this case is the sed "script" /\(\)/x.  */
1377       && node->left != NULL
1378       && (node->token.opr.idx >= BITSET_WORD_BITS
1379           || !(dfa->used_bkref_map
1380                & ((bitset_word_t) 1 << node->token.opr.idx))))
1381     return node->left;
1382
1383   /* Convert the SUBEXP node to the concatenation of an
1384      OP_OPEN_SUBEXP, the contents, and an OP_CLOSE_SUBEXP.  */
1385   op = create_tree (dfa, NULL, NULL, OP_OPEN_SUBEXP);
1386   cls = create_tree (dfa, NULL, NULL, OP_CLOSE_SUBEXP);
1387   tree1 = body ? create_tree (dfa, body, cls, CONCAT) : cls;
1388   tree = create_tree (dfa, op, tree1, CONCAT);
1389   if (BE (tree == NULL || tree1 == NULL || op == NULL || cls == NULL, 0))
1390     {
1391       *err = REG_ESPACE;
1392       return NULL;
1393     }
1394
1395   op->token.opr.idx = cls->token.opr.idx = node->token.opr.idx;
1396   op->token.opt_subexp = cls->token.opt_subexp = node->token.opt_subexp;
1397   return tree;
1398 }
1399
1400 /* Pass 1 in building the NFA: compute FIRST and create unlinked automaton
1401    nodes.  Requires a postorder visit.  */
1402 static reg_errcode_t
1403 calc_first (void *extra, bin_tree_t *node)
1404 {
1405   re_dfa_t *dfa = (re_dfa_t *) extra;
1406   if (node->token.type == CONCAT)
1407     {
1408       node->first = node->left->first;
1409       node->node_idx = node->left->node_idx;
1410     }
1411   else
1412     {
1413       node->first = node;
1414       node->node_idx = re_dfa_add_node (dfa, node->token);
1415       if (BE (node->node_idx == REG_MISSING, 0))
1416         return REG_ESPACE;
1417       if (node->token.type == ANCHOR)
1418         dfa->nodes[node->node_idx].constraint = node->token.opr.ctx_type;
1419     }
1420   return REG_NOERROR;
1421 }
1422
1423 /* Pass 2: compute NEXT on the tree.  Preorder visit.  */
1424 static reg_errcode_t
1425 calc_next (void *extra _UNUSED_PARAMETER_, bin_tree_t *node)
1426 {
1427   switch (node->token.type)
1428     {
1429     case OP_DUP_ASTERISK:
1430       node->left->next = node;
1431       break;
1432     case CONCAT:
1433       node->left->next = node->right->first;
1434       node->right->next = node->next;
1435       break;
1436     default:
1437       if (node->left)
1438         node->left->next = node->next;
1439       if (node->right)
1440         node->right->next = node->next;
1441       break;
1442     }
1443   return REG_NOERROR;
1444 }
1445
1446 /* Pass 3: link all DFA nodes to their NEXT node (any order will do).  */
1447 static reg_errcode_t
1448 link_nfa_nodes (void *extra, bin_tree_t *node)
1449 {
1450   re_dfa_t *dfa = (re_dfa_t *) extra;
1451   Idx idx = node->node_idx;
1452   reg_errcode_t err = REG_NOERROR;
1453
1454   switch (node->token.type)
1455     {
1456     case CONCAT:
1457       break;
1458
1459     case END_OF_RE:
1460       assert (node->next == NULL);
1461       break;
1462
1463     case OP_DUP_ASTERISK:
1464     case OP_ALT:
1465       {
1466         Idx left, right;
1467         dfa->has_plural_match = 1;
1468         if (node->left != NULL)
1469           left = node->left->first->node_idx;
1470         else
1471           left = node->next->node_idx;
1472         if (node->right != NULL)
1473           right = node->right->first->node_idx;
1474         else
1475           right = node->next->node_idx;
1476         assert (REG_VALID_INDEX (left));
1477         assert (REG_VALID_INDEX (right));
1478         err = re_node_set_init_2 (dfa->edests + idx, left, right);
1479       }
1480       break;
1481
1482     case ANCHOR:
1483     case OP_OPEN_SUBEXP:
1484     case OP_CLOSE_SUBEXP:
1485       err = re_node_set_init_1 (dfa->edests + idx, node->next->node_idx);
1486       break;
1487
1488     case OP_BACK_REF:
1489       dfa->nexts[idx] = node->next->node_idx;
1490       if (node->token.type == OP_BACK_REF)
1491         err = re_node_set_init_1 (dfa->edests + idx, dfa->nexts[idx]);
1492       break;
1493
1494     default:
1495       assert (!IS_EPSILON_NODE (node->token.type));
1496       dfa->nexts[idx] = node->next->node_idx;
1497       break;
1498     }
1499
1500   return err;
1501 }
1502
1503 /* Duplicate the epsilon closure of the node ROOT_NODE.
1504    Note that duplicated nodes have constraint INIT_CONSTRAINT in addition
1505    to their own constraint.  */
1506
1507 static reg_errcode_t
1508 internal_function
1509 duplicate_node_closure (re_dfa_t *dfa, Idx top_org_node, Idx top_clone_node,
1510                         Idx root_node, unsigned int init_constraint)
1511 {
1512   Idx org_node, clone_node;
1513   bool ok;
1514   unsigned int constraint = init_constraint;
1515   for (org_node = top_org_node, clone_node = top_clone_node;;)
1516     {
1517       Idx org_dest, clone_dest;
1518       if (dfa->nodes[org_node].type == OP_BACK_REF)
1519         {
1520           /* If the back reference epsilon-transit, its destination must
1521              also have the constraint.  Then duplicate the epsilon closure
1522              of the destination of the back reference, and store it in
1523              edests of the back reference.  */
1524           org_dest = dfa->nexts[org_node];
1525           re_node_set_empty (dfa->edests + clone_node);
1526           clone_dest = duplicate_node (dfa, org_dest, constraint);
1527           if (BE (clone_dest == REG_MISSING, 0))
1528             return REG_ESPACE;
1529           dfa->nexts[clone_node] = dfa->nexts[org_node];
1530           ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1531           if (BE (! ok, 0))
1532             return REG_ESPACE;
1533         }
1534       else if (dfa->edests[org_node].nelem == 0)
1535         {
1536           /* In case of the node can't epsilon-transit, don't duplicate the
1537              destination and store the original destination as the
1538              destination of the node.  */
1539           dfa->nexts[clone_node] = dfa->nexts[org_node];
1540           break;
1541         }
1542       else if (dfa->edests[org_node].nelem == 1)
1543         {
1544           /* In case of the node can epsilon-transit, and it has only one
1545              destination.  */
1546           org_dest = dfa->edests[org_node].elems[0];
1547           re_node_set_empty (dfa->edests + clone_node);
1548           /* If the node is root_node itself, it means the epsilon closure
1549              has a loop.  Then tie it to the destination of the root_node.  */
1550           if (org_node == root_node && clone_node != org_node)
1551             {
1552               ok = re_node_set_insert (dfa->edests + clone_node, org_dest);
1553               if (BE (! ok, 0))
1554                 return REG_ESPACE;
1555               break;
1556             }
1557           /* In case the node has another constraint, append it.  */
1558           constraint |= dfa->nodes[org_node].constraint;
1559           clone_dest = duplicate_node (dfa, org_dest, constraint);
1560           if (BE (clone_dest == REG_MISSING, 0))
1561             return REG_ESPACE;
1562           ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1563           if (BE (! ok, 0))
1564             return REG_ESPACE;
1565         }
1566       else /* dfa->edests[org_node].nelem == 2 */
1567         {
1568           /* In case of the node can epsilon-transit, and it has two
1569              destinations. In the bin_tree_t and DFA, that's '|' and '*'.   */
1570           org_dest = dfa->edests[org_node].elems[0];
1571           re_node_set_empty (dfa->edests + clone_node);
1572           /* Search for a duplicated node which satisfies the constraint.  */
1573           clone_dest = search_duplicated_node (dfa, org_dest, constraint);
1574           if (clone_dest == REG_MISSING)
1575             {
1576               /* There is no such duplicated node, create a new one.  */
1577               reg_errcode_t err;
1578               clone_dest = duplicate_node (dfa, org_dest, constraint);
1579               if (BE (clone_dest == REG_MISSING, 0))
1580                 return REG_ESPACE;
1581               ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1582               if (BE (! ok, 0))
1583                 return REG_ESPACE;
1584               err = duplicate_node_closure (dfa, org_dest, clone_dest,
1585                                             root_node, constraint);
1586               if (BE (err != REG_NOERROR, 0))
1587                 return err;
1588             }
1589           else
1590             {
1591               /* There is a duplicated node which satisfies the constraint,
1592                  use it to avoid infinite loop.  */
1593               ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1594               if (BE (! ok, 0))
1595                 return REG_ESPACE;
1596             }
1597
1598           org_dest = dfa->edests[org_node].elems[1];
1599           clone_dest = duplicate_node (dfa, org_dest, constraint);
1600           if (BE (clone_dest == REG_MISSING, 0))
1601             return REG_ESPACE;
1602           ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
1603           if (BE (! ok, 0))
1604             return REG_ESPACE;
1605         }
1606       org_node = org_dest;
1607       clone_node = clone_dest;
1608     }
1609   return REG_NOERROR;
1610 }
1611
1612 /* Search for a node which is duplicated from the node ORG_NODE, and
1613    satisfies the constraint CONSTRAINT.  */
1614
1615 static Idx
1616 search_duplicated_node (const re_dfa_t *dfa, Idx org_node,
1617                         unsigned int constraint)
1618 {
1619   Idx idx;
1620   for (idx = dfa->nodes_len - 1; dfa->nodes[idx].duplicated && idx > 0; --idx)
1621     {
1622       if (org_node == dfa->org_indices[idx]
1623           && constraint == dfa->nodes[idx].constraint)
1624         return idx; /* Found.  */
1625     }
1626   return REG_MISSING; /* Not found.  */
1627 }
1628
1629 /* Duplicate the node whose index is ORG_IDX and set the constraint CONSTRAINT.
1630    Return the index of the new node, or REG_MISSING if insufficient storage is
1631    available.  */
1632
1633 static Idx
1634 duplicate_node (re_dfa_t *dfa, Idx org_idx, unsigned int constraint)
1635 {
1636   Idx dup_idx = re_dfa_add_node (dfa, dfa->nodes[org_idx]);
1637   if (BE (dup_idx != REG_MISSING, 1))
1638     {
1639       dfa->nodes[dup_idx].constraint = constraint;
1640       dfa->nodes[dup_idx].constraint |= dfa->nodes[org_idx].constraint;
1641       dfa->nodes[dup_idx].duplicated = 1;
1642
1643       /* Store the index of the original node.  */
1644       dfa->org_indices[dup_idx] = org_idx;
1645     }
1646   return dup_idx;
1647 }
1648
1649 static reg_errcode_t
1650 calc_inveclosure (re_dfa_t *dfa)
1651 {
1652   Idx src, idx;
1653   bool ok;
1654   for (idx = 0; idx < dfa->nodes_len; ++idx)
1655     re_node_set_init_empty (dfa->inveclosures + idx);
1656
1657   for (src = 0; src < dfa->nodes_len; ++src)
1658     {
1659       Idx *elems = dfa->eclosures[src].elems;
1660       for (idx = 0; idx < dfa->eclosures[src].nelem; ++idx)
1661         {
1662           ok = re_node_set_insert_last (dfa->inveclosures + elems[idx], src);
1663           if (BE (! ok, 0))
1664             return REG_ESPACE;
1665         }
1666     }
1667
1668   return REG_NOERROR;
1669 }
1670
1671 /* Calculate "eclosure" for all the node in DFA.  */
1672
1673 static reg_errcode_t
1674 calc_eclosure (re_dfa_t *dfa)
1675 {
1676   Idx node_idx;
1677   bool incomplete;
1678 #ifdef DEBUG
1679   assert (dfa->nodes_len > 0);
1680 #endif
1681   incomplete = false;
1682   /* For each nodes, calculate epsilon closure.  */
1683   for (node_idx = 0; ; ++node_idx)
1684     {
1685       reg_errcode_t err;
1686       re_node_set eclosure_elem;
1687       if (node_idx == dfa->nodes_len)
1688         {
1689           if (!incomplete)
1690             break;
1691           incomplete = false;
1692           node_idx = 0;
1693         }
1694
1695 #ifdef DEBUG
1696       assert (dfa->eclosures[node_idx].nelem != REG_MISSING);
1697 #endif
1698
1699       /* If we have already calculated, skip it.  */
1700       if (dfa->eclosures[node_idx].nelem != 0)
1701         continue;
1702       /* Calculate epsilon closure of 'node_idx'.  */
1703       err = calc_eclosure_iter (&eclosure_elem, dfa, node_idx, true);
1704       if (BE (err != REG_NOERROR, 0))
1705         return err;
1706
1707       if (dfa->eclosures[node_idx].nelem == 0)
1708         {
1709           incomplete = true;
1710           re_node_set_free (&eclosure_elem);
1711         }
1712     }
1713   return REG_NOERROR;
1714 }
1715
1716 /* Calculate epsilon closure of NODE.  */
1717
1718 static reg_errcode_t
1719 calc_eclosure_iter (re_node_set *new_set, re_dfa_t *dfa, Idx node, bool root)
1720 {
1721   reg_errcode_t err;
1722   Idx i;
1723   re_node_set eclosure;
1724   bool ok;
1725   bool incomplete = false;
1726   err = re_node_set_alloc (&eclosure, dfa->edests[node].nelem + 1);
1727   if (BE (err != REG_NOERROR, 0))
1728     return err;
1729
1730   /* This indicates that we are calculating this node now.
1731      We reference this value to avoid infinite loop.  */
1732   dfa->eclosures[node].nelem = REG_MISSING;
1733
1734   /* If the current node has constraints, duplicate all nodes
1735      since they must inherit the constraints.  */
1736   if (dfa->nodes[node].constraint
1737       && dfa->edests[node].nelem
1738       && !dfa->nodes[dfa->edests[node].elems[0]].duplicated)
1739     {
1740       err = duplicate_node_closure (dfa, node, node, node,
1741                                     dfa->nodes[node].constraint);
1742       if (BE (err != REG_NOERROR, 0))
1743         return err;
1744     }
1745
1746   /* Expand each epsilon destination nodes.  */
1747   if (IS_EPSILON_NODE(dfa->nodes[node].type))
1748     for (i = 0; i < dfa->edests[node].nelem; ++i)
1749       {
1750         re_node_set eclosure_elem;
1751         Idx edest = dfa->edests[node].elems[i];
1752         /* If calculating the epsilon closure of 'edest' is in progress,
1753            return intermediate result.  */
1754         if (dfa->eclosures[edest].nelem == REG_MISSING)
1755           {
1756             incomplete = true;
1757             continue;
1758           }
1759         /* If we haven't calculated the epsilon closure of 'edest' yet,
1760            calculate now. Otherwise use calculated epsilon closure.  */
1761         if (dfa->eclosures[edest].nelem == 0)
1762           {
1763             err = calc_eclosure_iter (&eclosure_elem, dfa, edest, false);
1764             if (BE (err != REG_NOERROR, 0))
1765               return err;
1766           }
1767         else
1768           eclosure_elem = dfa->eclosures[edest];
1769         /* Merge the epsilon closure of 'edest'.  */
1770         err = re_node_set_merge (&eclosure, &eclosure_elem);
1771         if (BE (err != REG_NOERROR, 0))
1772           return err;
1773         /* If the epsilon closure of 'edest' is incomplete,
1774            the epsilon closure of this node is also incomplete.  */
1775         if (dfa->eclosures[edest].nelem == 0)
1776           {
1777             incomplete = true;
1778             re_node_set_free (&eclosure_elem);
1779           }
1780       }
1781
1782   /* An epsilon closure includes itself.  */
1783   ok = re_node_set_insert (&eclosure, node);
1784   if (BE (! ok, 0))
1785     return REG_ESPACE;
1786   if (incomplete && !root)
1787     dfa->eclosures[node].nelem = 0;
1788   else
1789     dfa->eclosures[node] = eclosure;
1790   *new_set = eclosure;
1791   return REG_NOERROR;
1792 }
1793 \f
1794 /* Functions for token which are used in the parser.  */
1795
1796 /* Fetch a token from INPUT.
1797    We must not use this function inside bracket expressions.  */
1798
1799 static void
1800 internal_function
1801 fetch_token (re_token_t *result, re_string_t *input, reg_syntax_t syntax)
1802 {
1803   re_string_skip_bytes (input, peek_token (result, input, syntax));
1804 }
1805
1806 /* Peek a token from INPUT, and return the length of the token.
1807    We must not use this function inside bracket expressions.  */
1808
1809 static int
1810 internal_function
1811 peek_token (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
1812 {
1813   unsigned char c;
1814
1815   if (re_string_eoi (input))
1816     {
1817       token->type = END_OF_RE;
1818       return 0;
1819     }
1820
1821   c = re_string_peek_byte (input, 0);
1822   token->opr.c = c;
1823
1824   token->word_char = 0;
1825 #ifdef RE_ENABLE_I18N
1826   token->mb_partial = 0;
1827   if (input->mb_cur_max > 1 &&
1828       !re_string_first_byte (input, re_string_cur_idx (input)))
1829     {
1830       token->type = CHARACTER;
1831       token->mb_partial = 1;
1832       return 1;
1833     }
1834 #endif
1835   if (c == '\\')
1836     {
1837       unsigned char c2;
1838       if (re_string_cur_idx (input) + 1 >= re_string_length (input))
1839         {
1840           token->type = BACK_SLASH;
1841           return 1;
1842         }
1843
1844       c2 = re_string_peek_byte_case (input, 1);
1845       token->opr.c = c2;
1846       token->type = CHARACTER;
1847 #ifdef RE_ENABLE_I18N
1848       if (input->mb_cur_max > 1)
1849         {
1850           wint_t wc = re_string_wchar_at (input,
1851                                           re_string_cur_idx (input) + 1);
1852           token->word_char = IS_WIDE_WORD_CHAR (wc) != 0;
1853         }
1854       else
1855 #endif
1856         token->word_char = IS_WORD_CHAR (c2) != 0;
1857
1858       switch (c2)
1859         {
1860         case '|':
1861           if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_NO_BK_VBAR))
1862             token->type = OP_ALT;
1863           break;
1864         case '1': case '2': case '3': case '4': case '5':
1865         case '6': case '7': case '8': case '9':
1866           if (!(syntax & RE_NO_BK_REFS))
1867             {
1868               token->type = OP_BACK_REF;
1869               token->opr.idx = c2 - '1';
1870             }
1871           break;
1872         case '<':
1873           if (!(syntax & RE_NO_GNU_OPS))
1874             {
1875               token->type = ANCHOR;
1876               token->opr.ctx_type = WORD_FIRST;
1877             }
1878           break;
1879         case '>':
1880           if (!(syntax & RE_NO_GNU_OPS))
1881             {
1882               token->type = ANCHOR;
1883               token->opr.ctx_type = WORD_LAST;
1884             }
1885           break;
1886         case 'b':
1887           if (!(syntax & RE_NO_GNU_OPS))
1888             {
1889               token->type = ANCHOR;
1890               token->opr.ctx_type = WORD_DELIM;
1891             }
1892           break;
1893         case 'B':
1894           if (!(syntax & RE_NO_GNU_OPS))
1895             {
1896               token->type = ANCHOR;
1897               token->opr.ctx_type = NOT_WORD_DELIM;
1898             }
1899           break;
1900         case 'w':
1901           if (!(syntax & RE_NO_GNU_OPS))
1902             token->type = OP_WORD;
1903           break;
1904         case 'W':
1905           if (!(syntax & RE_NO_GNU_OPS))
1906             token->type = OP_NOTWORD;
1907           break;
1908         case 's':
1909           if (!(syntax & RE_NO_GNU_OPS))
1910             token->type = OP_SPACE;
1911           break;
1912         case 'S':
1913           if (!(syntax & RE_NO_GNU_OPS))
1914             token->type = OP_NOTSPACE;
1915           break;
1916         case '`':
1917           if (!(syntax & RE_NO_GNU_OPS))
1918             {
1919               token->type = ANCHOR;
1920               token->opr.ctx_type = BUF_FIRST;
1921             }
1922           break;
1923         case '\'':
1924           if (!(syntax & RE_NO_GNU_OPS))
1925             {
1926               token->type = ANCHOR;
1927               token->opr.ctx_type = BUF_LAST;
1928             }
1929           break;
1930         case '(':
1931           if (!(syntax & RE_NO_BK_PARENS))
1932             token->type = OP_OPEN_SUBEXP;
1933           break;
1934         case ')':
1935           if (!(syntax & RE_NO_BK_PARENS))
1936             token->type = OP_CLOSE_SUBEXP;
1937           break;
1938         case '+':
1939           if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_BK_PLUS_QM))
1940             token->type = OP_DUP_PLUS;
1941           break;
1942         case '?':
1943           if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_BK_PLUS_QM))
1944             token->type = OP_DUP_QUESTION;
1945           break;
1946         case '{':
1947           if ((syntax & RE_INTERVALS) && (!(syntax & RE_NO_BK_BRACES)))
1948             token->type = OP_OPEN_DUP_NUM;
1949           break;
1950         case '}':
1951           if ((syntax & RE_INTERVALS) && (!(syntax & RE_NO_BK_BRACES)))
1952             token->type = OP_CLOSE_DUP_NUM;
1953           break;
1954         default:
1955           break;
1956         }
1957       return 2;
1958     }
1959
1960   token->type = CHARACTER;
1961 #ifdef RE_ENABLE_I18N
1962   if (input->mb_cur_max > 1)
1963     {
1964       wint_t wc = re_string_wchar_at (input, re_string_cur_idx (input));
1965       token->word_char = IS_WIDE_WORD_CHAR (wc) != 0;
1966     }
1967   else
1968 #endif
1969     token->word_char = IS_WORD_CHAR (token->opr.c);
1970
1971   switch (c)
1972     {
1973     case '\n':
1974       if (syntax & RE_NEWLINE_ALT)
1975         token->type = OP_ALT;
1976       break;
1977     case '|':
1978       if (!(syntax & RE_LIMITED_OPS) && (syntax & RE_NO_BK_VBAR))
1979         token->type = OP_ALT;
1980       break;
1981     case '*':
1982       token->type = OP_DUP_ASTERISK;
1983       break;
1984     case '+':
1985       if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_BK_PLUS_QM))
1986         token->type = OP_DUP_PLUS;
1987       break;
1988     case '?':
1989       if (!(syntax & RE_LIMITED_OPS) && !(syntax & RE_BK_PLUS_QM))
1990         token->type = OP_DUP_QUESTION;
1991       break;
1992     case '{':
1993       if ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
1994         token->type = OP_OPEN_DUP_NUM;
1995       break;
1996     case '}':
1997       if ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
1998         token->type = OP_CLOSE_DUP_NUM;
1999       break;
2000     case '(':
2001       if (syntax & RE_NO_BK_PARENS)
2002         token->type = OP_OPEN_SUBEXP;
2003       break;
2004     case ')':
2005       if (syntax & RE_NO_BK_PARENS)
2006         token->type = OP_CLOSE_SUBEXP;
2007       break;
2008     case '[':
2009       token->type = OP_OPEN_BRACKET;
2010       break;
2011     case '.':
2012       token->type = OP_PERIOD;
2013       break;
2014     case '^':
2015       if (!(syntax & (RE_CONTEXT_INDEP_ANCHORS | RE_CARET_ANCHORS_HERE)) &&
2016           re_string_cur_idx (input) != 0)
2017         {
2018           char prev = re_string_peek_byte (input, -1);
2019           if (!(syntax & RE_NEWLINE_ALT) || prev != '\n')
2020             break;
2021         }
2022       token->type = ANCHOR;
2023       token->opr.ctx_type = LINE_FIRST;
2024       break;
2025     case '$':
2026       if (!(syntax & RE_CONTEXT_INDEP_ANCHORS) &&
2027           re_string_cur_idx (input) + 1 != re_string_length (input))
2028         {
2029           re_token_t next;
2030           re_string_skip_bytes (input, 1);
2031           peek_token (&next, input, syntax);
2032           re_string_skip_bytes (input, -1);
2033           if (next.type != OP_ALT && next.type != OP_CLOSE_SUBEXP)
2034             break;
2035         }
2036       token->type = ANCHOR;
2037       token->opr.ctx_type = LINE_LAST;
2038       break;
2039     default:
2040       break;
2041     }
2042   return 1;
2043 }
2044
2045 /* Peek a token from INPUT, and return the length of the token.
2046    We must not use this function out of bracket expressions.  */
2047
2048 static int
2049 internal_function
2050 peek_token_bracket (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
2051 {
2052   unsigned char c;
2053   if (re_string_eoi (input))
2054     {
2055       token->type = END_OF_RE;
2056       return 0;
2057     }
2058   c = re_string_peek_byte (input, 0);
2059   token->opr.c = c;
2060
2061 #ifdef RE_ENABLE_I18N
2062   if (input->mb_cur_max > 1 &&
2063       !re_string_first_byte (input, re_string_cur_idx (input)))
2064     {
2065       token->type = CHARACTER;
2066       return 1;
2067     }
2068 #endif /* RE_ENABLE_I18N */
2069
2070   if (c == '\\' && (syntax & RE_BACKSLASH_ESCAPE_IN_LISTS)
2071       && re_string_cur_idx (input) + 1 < re_string_length (input))
2072     {
2073       /* In this case, '\' escape a character.  */
2074       unsigned char c2;
2075       re_string_skip_bytes (input, 1);
2076       c2 = re_string_peek_byte (input, 0);
2077       token->opr.c = c2;
2078       token->type = CHARACTER;
2079       return 1;
2080     }
2081   if (c == '[') /* '[' is a special char in a bracket exps.  */
2082     {
2083       unsigned char c2;
2084       int token_len;
2085       if (re_string_cur_idx (input) + 1 < re_string_length (input))
2086         c2 = re_string_peek_byte (input, 1);
2087       else
2088         c2 = 0;
2089       token->opr.c = c2;
2090       token_len = 2;
2091       switch (c2)
2092         {
2093         case '.':
2094           token->type = OP_OPEN_COLL_ELEM;
2095           break;
2096         case '=':
2097           token->type = OP_OPEN_EQUIV_CLASS;
2098           break;
2099         case ':':
2100           if (syntax & RE_CHAR_CLASSES)
2101             {
2102               token->type = OP_OPEN_CHAR_CLASS;
2103               break;
2104             }
2105           /* else fall through.  */
2106         default:
2107           token->type = CHARACTER;
2108           token->opr.c = c;
2109           token_len = 1;
2110           break;
2111         }
2112       return token_len;
2113     }
2114   switch (c)
2115     {
2116     case '-':
2117       token->type = OP_CHARSET_RANGE;
2118       break;
2119     case ']':
2120       token->type = OP_CLOSE_BRACKET;
2121       break;
2122     case '^':
2123       token->type = OP_NON_MATCH_LIST;
2124       break;
2125     default:
2126       token->type = CHARACTER;
2127     }
2128   return 1;
2129 }
2130 \f
2131 /* Functions for parser.  */
2132
2133 /* Entry point of the parser.
2134    Parse the regular expression REGEXP and return the structure tree.
2135    If an error occurs, ERR is set by error code, and return NULL.
2136    This function build the following tree, from regular expression <reg_exp>:
2137            CAT
2138            / \
2139           /   \
2140    <reg_exp>  EOR
2141
2142    CAT means concatenation.
2143    EOR means end of regular expression.  */
2144
2145 static bin_tree_t *
2146 parse (re_string_t *regexp, regex_t *preg, reg_syntax_t syntax,
2147        reg_errcode_t *err)
2148 {
2149   re_dfa_t *dfa = preg->buffer;
2150   bin_tree_t *tree, *eor, *root;
2151   re_token_t current_token;
2152   dfa->syntax = syntax;
2153   fetch_token (&current_token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2154   tree = parse_reg_exp (regexp, preg, &current_token, syntax, 0, err);
2155   if (BE (*err != REG_NOERROR && tree == NULL, 0))
2156     return NULL;
2157   eor = create_tree (dfa, NULL, NULL, END_OF_RE);
2158   if (tree != NULL)
2159     root = create_tree (dfa, tree, eor, CONCAT);
2160   else
2161     root = eor;
2162   if (BE (eor == NULL || root == NULL, 0))
2163     {
2164       *err = REG_ESPACE;
2165       return NULL;
2166     }
2167   return root;
2168 }
2169
2170 /* This function build the following tree, from regular expression
2171    <branch1>|<branch2>:
2172            ALT
2173            / \
2174           /   \
2175    <branch1> <branch2>
2176
2177    ALT means alternative, which represents the operator '|'.  */
2178
2179 static bin_tree_t *
2180 parse_reg_exp (re_string_t *regexp, regex_t *preg, re_token_t *token,
2181                reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2182 {
2183   re_dfa_t *dfa = preg->buffer;
2184   bin_tree_t *tree, *branch = NULL;
2185   bitset_word_t initial_bkref_map = dfa->completed_bkref_map;
2186   tree = parse_branch (regexp, preg, token, syntax, nest, err);
2187   if (BE (*err != REG_NOERROR && tree == NULL, 0))
2188     return NULL;
2189
2190   while (token->type == OP_ALT)
2191     {
2192       fetch_token (token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2193       if (token->type != OP_ALT && token->type != END_OF_RE
2194           && (nest == 0 || token->type != OP_CLOSE_SUBEXP))
2195         {
2196           bitset_word_t accumulated_bkref_map = dfa->completed_bkref_map;
2197           dfa->completed_bkref_map = initial_bkref_map;
2198           branch = parse_branch (regexp, preg, token, syntax, nest, err);
2199           if (BE (*err != REG_NOERROR && branch == NULL, 0))
2200             {
2201               if (tree != NULL)
2202                 postorder (tree, free_tree, NULL);
2203               return NULL;
2204             }
2205           dfa->completed_bkref_map |= accumulated_bkref_map;
2206         }
2207       else
2208         branch = NULL;
2209       tree = create_tree (dfa, tree, branch, OP_ALT);
2210       if (BE (tree == NULL, 0))
2211         {
2212           *err = REG_ESPACE;
2213           return NULL;
2214         }
2215     }
2216   return tree;
2217 }
2218
2219 /* This function build the following tree, from regular expression
2220    <exp1><exp2>:
2221         CAT
2222         / \
2223        /   \
2224    <exp1> <exp2>
2225
2226    CAT means concatenation.  */
2227
2228 static bin_tree_t *
2229 parse_branch (re_string_t *regexp, regex_t *preg, re_token_t *token,
2230               reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2231 {
2232   bin_tree_t *tree, *expr;
2233   re_dfa_t *dfa = preg->buffer;
2234   tree = parse_expression (regexp, preg, token, syntax, nest, err);
2235   if (BE (*err != REG_NOERROR && tree == NULL, 0))
2236     return NULL;
2237
2238   while (token->type != OP_ALT && token->type != END_OF_RE
2239          && (nest == 0 || token->type != OP_CLOSE_SUBEXP))
2240     {
2241       expr = parse_expression (regexp, preg, token, syntax, nest, err);
2242       if (BE (*err != REG_NOERROR && expr == NULL, 0))
2243         {
2244           if (tree != NULL)
2245             postorder (tree, free_tree, NULL);
2246           return NULL;
2247         }
2248       if (tree != NULL && expr != NULL)
2249         {
2250           bin_tree_t *newtree = create_tree (dfa, tree, expr, CONCAT);
2251           if (newtree == NULL)
2252             {
2253               postorder (expr, free_tree, NULL);
2254               postorder (tree, free_tree, NULL);
2255               *err = REG_ESPACE;
2256               return NULL;
2257             }
2258           tree = newtree;
2259         }
2260       else if (tree == NULL)
2261         tree = expr;
2262       /* Otherwise expr == NULL, we don't need to create new tree.  */
2263     }
2264   return tree;
2265 }
2266
2267 /* This function build the following tree, from regular expression a*:
2268          *
2269          |
2270          a
2271 */
2272
2273 static bin_tree_t *
2274 parse_expression (re_string_t *regexp, regex_t *preg, re_token_t *token,
2275                   reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2276 {
2277   re_dfa_t *dfa = preg->buffer;
2278   bin_tree_t *tree;
2279   switch (token->type)
2280     {
2281     case CHARACTER:
2282       tree = create_token_tree (dfa, NULL, NULL, token);
2283       if (BE (tree == NULL, 0))
2284         {
2285           *err = REG_ESPACE;
2286           return NULL;
2287         }
2288 #ifdef RE_ENABLE_I18N
2289       if (dfa->mb_cur_max > 1)
2290         {
2291           while (!re_string_eoi (regexp)
2292                  && !re_string_first_byte (regexp, re_string_cur_idx (regexp)))
2293             {
2294               bin_tree_t *mbc_remain;
2295               fetch_token (token, regexp, syntax);
2296               mbc_remain = create_token_tree (dfa, NULL, NULL, token);
2297               tree = create_tree (dfa, tree, mbc_remain, CONCAT);
2298               if (BE (mbc_remain == NULL || tree == NULL, 0))
2299                 {
2300                   *err = REG_ESPACE;
2301                   return NULL;
2302                 }
2303             }
2304         }
2305 #endif
2306       break;
2307     case OP_OPEN_SUBEXP:
2308       tree = parse_sub_exp (regexp, preg, token, syntax, nest + 1, err);
2309       if (BE (*err != REG_NOERROR && tree == NULL, 0))
2310         return NULL;
2311       break;
2312     case OP_OPEN_BRACKET:
2313       tree = parse_bracket_exp (regexp, dfa, token, syntax, err);
2314       if (BE (*err != REG_NOERROR && tree == NULL, 0))
2315         return NULL;
2316       break;
2317     case OP_BACK_REF:
2318       if (!BE (dfa->completed_bkref_map & (1 << token->opr.idx), 1))
2319         {
2320           *err = REG_ESUBREG;
2321           return NULL;
2322         }
2323       dfa->used_bkref_map |= 1 << token->opr.idx;
2324       tree = create_token_tree (dfa, NULL, NULL, token);
2325       if (BE (tree == NULL, 0))
2326         {
2327           *err = REG_ESPACE;
2328           return NULL;
2329         }
2330       ++dfa->nbackref;
2331       dfa->has_mb_node = 1;
2332       break;
2333     case OP_OPEN_DUP_NUM:
2334       if (syntax & RE_CONTEXT_INVALID_DUP)
2335         {
2336           *err = REG_BADRPT;
2337           return NULL;
2338         }
2339       /* FALLTHROUGH */
2340     case OP_DUP_ASTERISK:
2341     case OP_DUP_PLUS:
2342     case OP_DUP_QUESTION:
2343       if (syntax & RE_CONTEXT_INVALID_OPS)
2344         {
2345           *err = REG_BADRPT;
2346           return NULL;
2347         }
2348       else if (syntax & RE_CONTEXT_INDEP_OPS)
2349         {
2350           fetch_token (token, regexp, syntax);
2351           return parse_expression (regexp, preg, token, syntax, nest, err);
2352         }
2353       /* else fall through  */
2354     case OP_CLOSE_SUBEXP:
2355       if ((token->type == OP_CLOSE_SUBEXP) &&
2356           !(syntax & RE_UNMATCHED_RIGHT_PAREN_ORD))
2357         {
2358           *err = REG_ERPAREN;
2359           return NULL;
2360         }
2361       /* else fall through  */
2362     case OP_CLOSE_DUP_NUM:
2363       /* We treat it as a normal character.  */
2364
2365       /* Then we can these characters as normal characters.  */
2366       token->type = CHARACTER;
2367       /* mb_partial and word_char bits should be initialized already
2368          by peek_token.  */
2369       tree = create_token_tree (dfa, NULL, NULL, token);
2370       if (BE (tree == NULL, 0))
2371         {
2372           *err = REG_ESPACE;
2373           return NULL;
2374         }
2375       break;
2376     case ANCHOR:
2377       if ((token->opr.ctx_type
2378            & (WORD_DELIM | NOT_WORD_DELIM | WORD_FIRST | WORD_LAST))
2379           && dfa->word_ops_used == 0)
2380         init_word_char (dfa);
2381       if (token->opr.ctx_type == WORD_DELIM
2382           || token->opr.ctx_type == NOT_WORD_DELIM)
2383         {
2384           bin_tree_t *tree_first, *tree_last;
2385           if (token->opr.ctx_type == WORD_DELIM)
2386             {
2387               token->opr.ctx_type = WORD_FIRST;
2388               tree_first = create_token_tree (dfa, NULL, NULL, token);
2389               token->opr.ctx_type = WORD_LAST;
2390             }
2391           else
2392             {
2393               token->opr.ctx_type = INSIDE_WORD;
2394               tree_first = create_token_tree (dfa, NULL, NULL, token);
2395               token->opr.ctx_type = INSIDE_NOTWORD;
2396             }
2397           tree_last = create_token_tree (dfa, NULL, NULL, token);
2398           tree = create_tree (dfa, tree_first, tree_last, OP_ALT);
2399           if (BE (tree_first == NULL || tree_last == NULL || tree == NULL, 0))
2400             {
2401               *err = REG_ESPACE;
2402               return NULL;
2403             }
2404         }
2405       else
2406         {
2407           tree = create_token_tree (dfa, NULL, NULL, token);
2408           if (BE (tree == NULL, 0))
2409             {
2410               *err = REG_ESPACE;
2411               return NULL;
2412             }
2413         }
2414       /* We must return here, since ANCHORs can't be followed
2415          by repetition operators.
2416          eg. RE"^*" is invalid or "<ANCHOR(^)><CHAR(*)>",
2417              it must not be "<ANCHOR(^)><REPEAT(*)>".  */
2418       fetch_token (token, regexp, syntax);
2419       return tree;
2420     case OP_PERIOD:
2421       tree = create_token_tree (dfa, NULL, NULL, token);
2422       if (BE (tree == NULL, 0))
2423         {
2424           *err = REG_ESPACE;
2425           return NULL;
2426         }
2427       if (dfa->mb_cur_max > 1)
2428         dfa->has_mb_node = 1;
2429       break;
2430     case OP_WORD:
2431     case OP_NOTWORD:
2432       tree = build_charclass_op (dfa, regexp->trans,
2433                                  "alnum",
2434                                  "_",
2435                                  token->type == OP_NOTWORD, err);
2436       if (BE (*err != REG_NOERROR && tree == NULL, 0))
2437         return NULL;
2438       break;
2439     case OP_SPACE:
2440     case OP_NOTSPACE:
2441       tree = build_charclass_op (dfa, regexp->trans,
2442                                  "space",
2443                                  "",
2444                                  token->type == OP_NOTSPACE, err);
2445       if (BE (*err != REG_NOERROR && tree == NULL, 0))
2446         return NULL;
2447       break;
2448     case OP_ALT:
2449     case END_OF_RE:
2450       return NULL;
2451     case BACK_SLASH:
2452       *err = REG_EESCAPE;
2453       return NULL;
2454     default:
2455       /* Must not happen?  */
2456 #ifdef DEBUG
2457       assert (0);
2458 #endif
2459       return NULL;
2460     }
2461   fetch_token (token, regexp, syntax);
2462
2463   while (token->type == OP_DUP_ASTERISK || token->type == OP_DUP_PLUS
2464          || token->type == OP_DUP_QUESTION || token->type == OP_OPEN_DUP_NUM)
2465     {
2466       tree = parse_dup_op (tree, regexp, dfa, token, syntax, err);
2467       if (BE (*err != REG_NOERROR && tree == NULL, 0))
2468         return NULL;
2469       /* In BRE consecutive duplications are not allowed.  */
2470       if ((syntax & RE_CONTEXT_INVALID_DUP)
2471           && (token->type == OP_DUP_ASTERISK
2472               || token->type == OP_OPEN_DUP_NUM))
2473         {
2474           *err = REG_BADRPT;
2475           return NULL;
2476         }
2477     }
2478
2479   return tree;
2480 }
2481
2482 /* This function build the following tree, from regular expression
2483    (<reg_exp>):
2484          SUBEXP
2485             |
2486         <reg_exp>
2487 */
2488
2489 static bin_tree_t *
2490 parse_sub_exp (re_string_t *regexp, regex_t *preg, re_token_t *token,
2491                reg_syntax_t syntax, Idx nest, reg_errcode_t *err)
2492 {
2493   re_dfa_t *dfa = preg->buffer;
2494   bin_tree_t *tree;
2495   size_t cur_nsub;
2496   cur_nsub = preg->re_nsub++;
2497
2498   fetch_token (token, regexp, syntax | RE_CARET_ANCHORS_HERE);
2499
2500   /* The subexpression may be a null string.  */
2501   if (token->type == OP_CLOSE_SUBEXP)
2502     tree = NULL;
2503   else
2504     {
2505       tree = parse_reg_exp (regexp, preg, token, syntax, nest, err);
2506       if (BE (*err == REG_NOERROR && token->type != OP_CLOSE_SUBEXP, 0))
2507         {
2508           if (tree != NULL)
2509             postorder (tree, free_tree, NULL);
2510           *err = REG_EPAREN;
2511         }
2512       if (BE (*err != REG_NOERROR, 0))
2513         return NULL;
2514     }
2515
2516   if (cur_nsub <= '9' - '1')
2517     dfa->completed_bkref_map |= 1 << cur_nsub;
2518
2519   tree = create_tree (dfa, tree, NULL, SUBEXP);
2520   if (BE (tree == NULL, 0))
2521     {
2522       *err = REG_ESPACE;
2523       return NULL;
2524     }
2525   tree->token.opr.idx = cur_nsub;
2526   return tree;
2527 }
2528
2529 /* This function parse repetition operators like "*", "+", "{1,3}" etc.  */
2530
2531 static bin_tree_t *
2532 parse_dup_op (bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa,
2533               re_token_t *token, reg_syntax_t syntax, reg_errcode_t *err)
2534 {
2535   bin_tree_t *tree = NULL, *old_tree = NULL;
2536   Idx i, start, end, start_idx = re_string_cur_idx (regexp);
2537   re_token_t start_token = *token;
2538
2539   if (token->type == OP_OPEN_DUP_NUM)
2540     {
2541       end = 0;
2542       start = fetch_number (regexp, token, syntax);
2543       if (start == REG_MISSING)
2544         {
2545           if (token->type == CHARACTER && token->opr.c == ',')
2546             start = 0; /* We treat "{,m}" as "{0,m}".  */
2547           else
2548             {
2549               *err = REG_BADBR; /* <re>{} is invalid.  */
2550               return NULL;
2551             }
2552         }
2553       if (BE (start != REG_ERROR, 1))
2554         {
2555           /* We treat "{n}" as "{n,n}".  */
2556           end = ((token->type == OP_CLOSE_DUP_NUM) ? start
2557                  : ((token->type == CHARACTER && token->opr.c == ',')
2558                     ? fetch_number (regexp, token, syntax) : REG_ERROR));
2559         }
2560       if (BE (start == REG_ERROR || end == REG_ERROR, 0))
2561         {
2562           /* Invalid sequence.  */
2563           if (BE (!(syntax & RE_INVALID_INTERVAL_ORD), 0))
2564             {
2565               if (token->type == END_OF_RE)
2566                 *err = REG_EBRACE;
2567               else
2568                 *err = REG_BADBR;
2569
2570               return NULL;
2571             }
2572
2573           /* If the syntax bit is set, rollback.  */
2574           re_string_set_index (regexp, start_idx);
2575           *token = start_token;
2576           token->type = CHARACTER;
2577           /* mb_partial and word_char bits should be already initialized by
2578              peek_token.  */
2579           return elem;
2580         }
2581
2582       if (BE ((end != REG_MISSING && start > end)
2583               || token->type != OP_CLOSE_DUP_NUM, 0))
2584         {
2585           /* First number greater than second.  */
2586           *err = REG_BADBR;
2587           return NULL;
2588         }
2589
2590       if (BE (RE_DUP_MAX < (end == REG_MISSING ? start : end), 0))
2591         {
2592           *err = REG_ESIZE;
2593           return NULL;
2594         }
2595     }
2596   else
2597     {
2598       start = (token->type == OP_DUP_PLUS) ? 1 : 0;
2599       end = (token->type == OP_DUP_QUESTION) ? 1 : REG_MISSING;
2600     }
2601
2602   fetch_token (token, regexp, syntax);
2603
2604   if (BE (elem == NULL, 0))
2605     return NULL;
2606   if (BE (start == 0 && end == 0, 0))
2607     {
2608       postorder (elem, free_tree, NULL);
2609       return NULL;
2610     }
2611
2612   /* Extract "<re>{n,m}" to "<re><re>...<re><re>{0,<m-n>}".  */
2613   if (BE (start > 0, 0))
2614     {
2615       tree = elem;
2616       for (i = 2; i <= start; ++i)
2617         {
2618           elem = duplicate_tree (elem, dfa);
2619           tree = create_tree (dfa, tree, elem, CONCAT);
2620           if (BE (elem == NULL || tree == NULL, 0))
2621             goto parse_dup_op_espace;
2622         }
2623
2624       if (start == end)
2625         return tree;
2626
2627       /* Duplicate ELEM before it is marked optional.  */
2628       elem = duplicate_tree (elem, dfa);
2629       old_tree = tree;
2630     }
2631   else
2632     old_tree = NULL;
2633
2634   if (elem->token.type == SUBEXP)
2635     {
2636       uintptr_t subidx = elem->token.opr.idx;
2637       postorder (elem, mark_opt_subexp, (void *) subidx);
2638     }
2639
2640   tree = create_tree (dfa, elem, NULL,
2641                       (end == REG_MISSING ? OP_DUP_ASTERISK : OP_ALT));
2642   if (BE (tree == NULL, 0))
2643     goto parse_dup_op_espace;
2644
2645 /* From gnulib's "intprops.h":
2646    True if the arithmetic type T is signed.  */
2647 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
2648
2649   /* This loop is actually executed only when end != REG_MISSING,
2650      to rewrite <re>{0,n} as (<re>(<re>...<re>?)?)?...  We have
2651      already created the start+1-th copy.  */
2652   if (TYPE_SIGNED (Idx) || end != REG_MISSING)
2653     for (i = start + 2; i <= end; ++i)
2654       {
2655         elem = duplicate_tree (elem, dfa);
2656         tree = create_tree (dfa, tree, elem, CONCAT);
2657         if (BE (elem == NULL || tree == NULL, 0))
2658           goto parse_dup_op_espace;
2659
2660         tree = create_tree (dfa, tree, NULL, OP_ALT);
2661         if (BE (tree == NULL, 0))
2662           goto parse_dup_op_espace;
2663       }
2664
2665   if (old_tree)
2666     tree = create_tree (dfa, old_tree, tree, CONCAT);
2667
2668   return tree;
2669
2670  parse_dup_op_espace:
2671   *err = REG_ESPACE;
2672   return NULL;
2673 }
2674
2675 /* Size of the names for collating symbol/equivalence_class/character_class.
2676    I'm not sure, but maybe enough.  */
2677 #define BRACKET_NAME_BUF_SIZE 32
2678
2679 #ifndef _LIBC
2680   /* Local function for parse_bracket_exp only used in case of NOT _LIBC.
2681      Build the range expression which starts from START_ELEM, and ends
2682      at END_ELEM.  The result are written to MBCSET and SBCSET.
2683      RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2684      mbcset->range_ends, is a pointer argument since we may
2685      update it.  */
2686
2687 static reg_errcode_t
2688 internal_function
2689 # ifdef RE_ENABLE_I18N
2690 build_range_exp (const reg_syntax_t syntax,
2691                  bitset_t sbcset,
2692                  re_charset_t *mbcset,
2693                  Idx *range_alloc,
2694                  const bracket_elem_t *start_elem,
2695                  const bracket_elem_t *end_elem)
2696 # else /* not RE_ENABLE_I18N */
2697 build_range_exp (const reg_syntax_t syntax,
2698                  bitset_t sbcset,
2699                  const bracket_elem_t *start_elem,
2700                  const bracket_elem_t *end_elem)
2701 # endif /* not RE_ENABLE_I18N */
2702 {
2703   unsigned int start_ch, end_ch;
2704   /* Equivalence Classes and Character Classes can't be a range start/end.  */
2705   if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2706           || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2707           0))
2708     return REG_ERANGE;
2709
2710   /* We can handle no multi character collating elements without libc
2711      support.  */
2712   if (BE ((start_elem->type == COLL_SYM
2713            && strlen ((char *) start_elem->opr.name) > 1)
2714           || (end_elem->type == COLL_SYM
2715               && strlen ((char *) end_elem->opr.name) > 1), 0))
2716     return REG_ECOLLATE;
2717
2718 # ifdef RE_ENABLE_I18N
2719   {
2720     wchar_t wc;
2721     wint_t start_wc;
2722     wint_t end_wc;
2723
2724     start_ch = ((start_elem->type == SB_CHAR) ? start_elem->opr.ch
2725                 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2726                    : 0));
2727     end_ch = ((end_elem->type == SB_CHAR) ? end_elem->opr.ch
2728               : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2729                  : 0));
2730     start_wc = ((start_elem->type == SB_CHAR || start_elem->type == COLL_SYM)
2731                 ? __btowc (start_ch) : start_elem->opr.wch);
2732     end_wc = ((end_elem->type == SB_CHAR || end_elem->type == COLL_SYM)
2733               ? __btowc (end_ch) : end_elem->opr.wch);
2734     if (start_wc == WEOF || end_wc == WEOF)
2735       return REG_ECOLLATE;
2736     else if (BE ((syntax & RE_NO_EMPTY_RANGES) && start_wc > end_wc, 0))
2737       return REG_ERANGE;
2738
2739     /* Got valid collation sequence values, add them as a new entry.
2740        However, for !_LIBC we have no collation elements: if the
2741        character set is single byte, the single byte character set
2742        that we build below suffices.  parse_bracket_exp passes
2743        no MBCSET if dfa->mb_cur_max == 1.  */
2744     if (mbcset)
2745       {
2746         /* Check the space of the arrays.  */
2747         if (BE (*range_alloc == mbcset->nranges, 0))
2748           {
2749             /* There is not enough space, need realloc.  */
2750             wchar_t *new_array_start, *new_array_end;
2751             Idx new_nranges;
2752
2753             /* +1 in case of mbcset->nranges is 0.  */
2754             new_nranges = 2 * mbcset->nranges + 1;
2755             /* Use realloc since mbcset->range_starts and mbcset->range_ends
2756                are NULL if *range_alloc == 0.  */
2757             new_array_start = re_realloc (mbcset->range_starts, wchar_t,
2758                                           new_nranges);
2759             new_array_end = re_realloc (mbcset->range_ends, wchar_t,
2760                                         new_nranges);
2761
2762             if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2763               return REG_ESPACE;
2764
2765             mbcset->range_starts = new_array_start;
2766             mbcset->range_ends = new_array_end;
2767             *range_alloc = new_nranges;
2768           }
2769
2770         mbcset->range_starts[mbcset->nranges] = start_wc;
2771         mbcset->range_ends[mbcset->nranges++] = end_wc;
2772       }
2773
2774     /* Build the table for single byte characters.  */
2775     for (wc = 0; wc < SBC_MAX; ++wc)
2776       {
2777         if (start_wc <= wc && wc <= end_wc)
2778           bitset_set (sbcset, wc);
2779       }
2780   }
2781 # else /* not RE_ENABLE_I18N */
2782   {
2783     unsigned int ch;
2784     start_ch = ((start_elem->type == SB_CHAR ) ? start_elem->opr.ch
2785                 : ((start_elem->type == COLL_SYM) ? start_elem->opr.name[0]
2786                    : 0));
2787     end_ch = ((end_elem->type == SB_CHAR ) ? end_elem->opr.ch
2788               : ((end_elem->type == COLL_SYM) ? end_elem->opr.name[0]
2789                  : 0));
2790     if (start_ch > end_ch)
2791       return REG_ERANGE;
2792     /* Build the table for single byte characters.  */
2793     for (ch = 0; ch < SBC_MAX; ++ch)
2794       if (start_ch <= ch  && ch <= end_ch)
2795         bitset_set (sbcset, ch);
2796   }
2797 # endif /* not RE_ENABLE_I18N */
2798   return REG_NOERROR;
2799 }
2800 #endif /* not _LIBC */
2801
2802 #ifndef _LIBC
2803 /* Helper function for parse_bracket_exp only used in case of NOT _LIBC..
2804    Build the collating element which is represented by NAME.
2805    The result are written to MBCSET and SBCSET.
2806    COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
2807    pointer argument since we may update it.  */
2808
2809 static reg_errcode_t
2810 internal_function
2811 # ifdef RE_ENABLE_I18N
2812 build_collating_symbol (bitset_t sbcset,
2813                         re_charset_t *mbcset _UNUSED_PARAMETER_,
2814                         Idx *coll_sym_alloc _UNUSED_PARAMETER_,
2815                         const unsigned char *name)
2816 # else /* not RE_ENABLE_I18N */
2817 build_collating_symbol (bitset_t sbcset, const unsigned char *name)
2818 # endif /* not RE_ENABLE_I18N */
2819 {
2820   size_t name_len = strlen ((const char *) name);
2821   if (BE (name_len != 1, 0))
2822     return REG_ECOLLATE;
2823   else
2824     {
2825       bitset_set (sbcset, name[0]);
2826       return REG_NOERROR;
2827     }
2828 }
2829 #endif /* not _LIBC */
2830
2831 /* This function parse bracket expression like "[abc]", "[a-c]",
2832    "[[.a-a.]]" etc.  */
2833
2834 static bin_tree_t *
2835 parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa, re_token_t *token,
2836                    reg_syntax_t syntax, reg_errcode_t *err)
2837 {
2838 #ifdef _LIBC
2839   const unsigned char *collseqmb;
2840   const char *collseqwc;
2841   uint32_t nrules;
2842   int32_t table_size;
2843   const int32_t *symb_table;
2844   const unsigned char *extra;
2845
2846   /* Local function for parse_bracket_exp used in _LIBC environment.
2847      Seek the collating symbol entry corresponding to NAME.
2848      Return the index of the symbol in the SYMB_TABLE,
2849      or -1 if not found.  */
2850
2851   auto inline int32_t
2852   __attribute__ ((always_inline))
2853   seek_collating_symbol_entry (const unsigned char *name, size_t name_len)
2854     {
2855       int32_t elem;
2856
2857       for (elem = 0; elem < table_size; elem++)
2858         if (symb_table[2 * elem] != 0)
2859           {
2860             int32_t idx = symb_table[2 * elem + 1];
2861             /* Skip the name of collating element name.  */
2862             idx += 1 + extra[idx];
2863             if (/* Compare the length of the name.  */
2864                 name_len == extra[idx]
2865                 /* Compare the name.  */
2866                 && memcmp (name, &extra[idx + 1], name_len) == 0)
2867               /* Yep, this is the entry.  */
2868               return elem;
2869           }
2870       return -1;
2871     }
2872
2873   /* Local function for parse_bracket_exp used in _LIBC environment.
2874      Look up the collation sequence value of BR_ELEM.
2875      Return the value if succeeded, UINT_MAX otherwise.  */
2876
2877   auto inline unsigned int
2878   __attribute__ ((always_inline))
2879   lookup_collation_sequence_value (bracket_elem_t *br_elem)
2880     {
2881       if (br_elem->type == SB_CHAR)
2882         {
2883           /*
2884           if (MB_CUR_MAX == 1)
2885           */
2886           if (nrules == 0)
2887             return collseqmb[br_elem->opr.ch];
2888           else
2889             {
2890               wint_t wc = __btowc (br_elem->opr.ch);
2891               return __collseq_table_lookup (collseqwc, wc);
2892             }
2893         }
2894       else if (br_elem->type == MB_CHAR)
2895         {
2896           if (nrules != 0)
2897             return __collseq_table_lookup (collseqwc, br_elem->opr.wch);
2898         }
2899       else if (br_elem->type == COLL_SYM)
2900         {
2901           size_t sym_name_len = strlen ((char *) br_elem->opr.name);
2902           if (nrules != 0)
2903             {
2904               int32_t elem, idx;
2905               elem = seek_collating_symbol_entry (br_elem->opr.name,
2906                                                   sym_name_len);
2907               if (elem != -1)
2908                 {
2909                   /* We found the entry.  */
2910                   idx = symb_table[2 * elem + 1];
2911                   /* Skip the name of collating element name.  */
2912                   idx += 1 + extra[idx];
2913                   /* Skip the byte sequence of the collating element.  */
2914                   idx += 1 + extra[idx];
2915                   /* Adjust for the alignment.  */
2916                   idx = (idx + 3) & ~3;
2917                   /* Skip the multibyte collation sequence value.  */
2918                   idx += sizeof (unsigned int);
2919                   /* Skip the wide char sequence of the collating element.  */
2920                   idx += sizeof (unsigned int) *
2921                     (1 + *(unsigned int *) (extra + idx));
2922                   /* Return the collation sequence value.  */
2923                   return *(unsigned int *) (extra + idx);
2924                 }
2925               else if (sym_name_len == 1)
2926                 {
2927                   /* No valid character.  Match it as a single byte
2928                      character.  */
2929                   return collseqmb[br_elem->opr.name[0]];
2930                 }
2931             }
2932           else if (sym_name_len == 1)
2933             return collseqmb[br_elem->opr.name[0]];
2934         }
2935       return UINT_MAX;
2936     }
2937
2938   /* Local function for parse_bracket_exp used in _LIBC environment.
2939      Build the range expression which starts from START_ELEM, and ends
2940      at END_ELEM.  The result are written to MBCSET and SBCSET.
2941      RANGE_ALLOC is the allocated size of mbcset->range_starts, and
2942      mbcset->range_ends, is a pointer argument since we may
2943      update it.  */
2944
2945   auto inline reg_errcode_t
2946   __attribute__ ((always_inline))
2947   build_range_exp (bitset_t sbcset, re_charset_t *mbcset, int *range_alloc,
2948                    bracket_elem_t *start_elem, bracket_elem_t *end_elem)
2949     {
2950       unsigned int ch;
2951       uint32_t start_collseq;
2952       uint32_t end_collseq;
2953
2954       /* Equivalence Classes and Character Classes can't be a range
2955          start/end.  */
2956       if (BE (start_elem->type == EQUIV_CLASS || start_elem->type == CHAR_CLASS
2957               || end_elem->type == EQUIV_CLASS || end_elem->type == CHAR_CLASS,
2958               0))
2959         return REG_ERANGE;
2960
2961       /* FIXME: Implement rational ranges here, too.  */
2962       start_collseq = lookup_collation_sequence_value (start_elem);
2963       end_collseq = lookup_collation_sequence_value (end_elem);
2964       /* Check start/end collation sequence values.  */
2965       if (BE (start_collseq == UINT_MAX || end_collseq == UINT_MAX, 0))
2966         return REG_ECOLLATE;
2967       if (BE ((syntax & RE_NO_EMPTY_RANGES) && start_collseq > end_collseq, 0))
2968         return REG_ERANGE;
2969
2970       /* Got valid collation sequence values, add them as a new entry.
2971          However, if we have no collation elements, and the character set
2972          is single byte, the single byte character set that we
2973          build below suffices. */
2974       if (nrules > 0 || dfa->mb_cur_max > 1)
2975         {
2976           /* Check the space of the arrays.  */
2977           if (BE (*range_alloc == mbcset->nranges, 0))
2978             {
2979               /* There is not enough space, need realloc.  */
2980               uint32_t *new_array_start;
2981               uint32_t *new_array_end;
2982               Idx new_nranges;
2983
2984               /* +1 in case of mbcset->nranges is 0.  */
2985               new_nranges = 2 * mbcset->nranges + 1;
2986               new_array_start = re_realloc (mbcset->range_starts, uint32_t,
2987                                             new_nranges);
2988               new_array_end = re_realloc (mbcset->range_ends, uint32_t,
2989                                           new_nranges);
2990
2991               if (BE (new_array_start == NULL || new_array_end == NULL, 0))
2992                 return REG_ESPACE;
2993
2994               mbcset->range_starts = new_array_start;
2995               mbcset->range_ends = new_array_end;
2996               *range_alloc = new_nranges;
2997             }
2998
2999           mbcset->range_starts[mbcset->nranges] = start_collseq;
3000           mbcset->range_ends[mbcset->nranges++] = end_collseq;
3001         }
3002
3003       /* Build the table for single byte characters.  */
3004       for (ch = 0; ch < SBC_MAX; ch++)
3005         {
3006           uint32_t ch_collseq;
3007           /*
3008           if (MB_CUR_MAX == 1)
3009           */
3010           if (nrules == 0)
3011             ch_collseq = collseqmb[ch];
3012           else
3013             ch_collseq = __collseq_table_lookup (collseqwc, __btowc (ch));
3014           if (start_collseq <= ch_collseq && ch_collseq <= end_collseq)
3015             bitset_set (sbcset, ch);
3016         }
3017       return REG_NOERROR;
3018     }
3019
3020   /* Local function for parse_bracket_exp used in _LIBC environment.
3021      Build the collating element which is represented by NAME.
3022      The result are written to MBCSET and SBCSET.
3023      COLL_SYM_ALLOC is the allocated size of mbcset->coll_sym, is a
3024      pointer argument since we may update it.  */
3025
3026   auto inline reg_errcode_t
3027   __attribute__ ((always_inline))
3028   build_collating_symbol (bitset_t sbcset, re_charset_t *mbcset,
3029                           Idx *coll_sym_alloc, const unsigned char *name)
3030     {
3031       int32_t elem, idx;
3032       size_t name_len = strlen ((const char *) name);
3033       if (nrules != 0)
3034         {
3035           elem = seek_collating_symbol_entry (name, name_len);
3036           if (elem != -1)
3037             {
3038               /* We found the entry.  */
3039               idx = symb_table[2 * elem + 1];
3040               /* Skip the name of collating element name.  */
3041               idx += 1 + extra[idx];
3042             }
3043           else if (name_len == 1)
3044             {
3045               /* No valid character, treat it as a normal
3046                  character.  */
3047               bitset_set (sbcset, name[0]);
3048               return REG_NOERROR;
3049             }
3050           else
3051             return REG_ECOLLATE;
3052
3053           /* Got valid collation sequence, add it as a new entry.  */
3054           /* Check the space of the arrays.  */
3055           if (BE (*coll_sym_alloc == mbcset->ncoll_syms, 0))
3056             {
3057               /* Not enough, realloc it.  */
3058               /* +1 in case of mbcset->ncoll_syms is 0.  */
3059               Idx new_coll_sym_alloc = 2 * mbcset->ncoll_syms + 1;
3060               /* Use realloc since mbcset->coll_syms is NULL
3061                  if *alloc == 0.  */
3062               int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t,
3063                                                    new_coll_sym_alloc);
3064               if (BE (new_coll_syms == NULL, 0))
3065                 return REG_ESPACE;
3066               mbcset->coll_syms = new_coll_syms;
3067               *coll_sym_alloc = new_coll_sym_alloc;
3068             }
3069           mbcset->coll_syms[mbcset->ncoll_syms++] = idx;
3070           return REG_NOERROR;
3071         }
3072       else
3073         {
3074           if (BE (name_len != 1, 0))
3075             return REG_ECOLLATE;
3076           else
3077             {
3078               bitset_set (sbcset, name[0]);
3079               return REG_NOERROR;
3080             }
3081         }
3082     }
3083 #endif
3084
3085   re_token_t br_token;
3086   re_bitset_ptr_t sbcset;
3087 #ifdef RE_ENABLE_I18N
3088   re_charset_t *mbcset;
3089   Idx coll_sym_alloc = 0, range_alloc = 0, mbchar_alloc = 0;
3090   Idx equiv_class_alloc = 0, char_class_alloc = 0;
3091 #endif /* not RE_ENABLE_I18N */
3092   bool non_match = false;
3093   bin_tree_t *work_tree;
3094   int token_len;
3095   bool first_round = true;
3096 #ifdef _LIBC
3097   collseqmb = (const unsigned char *)
3098     _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQMB);
3099   nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3100   if (nrules)
3101     {
3102       /*
3103       if (MB_CUR_MAX > 1)
3104       */
3105       collseqwc = _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQWC);
3106       table_size = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_SYMB_HASH_SIZEMB);
3107       symb_table = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3108                                                   _NL_COLLATE_SYMB_TABLEMB);
3109       extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3110                                                    _NL_COLLATE_SYMB_EXTRAMB);
3111     }
3112 #endif
3113   sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3114 #ifdef RE_ENABLE_I18N
3115   mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3116 #endif /* RE_ENABLE_I18N */
3117 #ifdef RE_ENABLE_I18N
3118   if (BE (sbcset == NULL || mbcset == NULL, 0))
3119 #else
3120   if (BE (sbcset == NULL, 0))
3121 #endif /* RE_ENABLE_I18N */
3122     {
3123       re_free (sbcset);
3124 #ifdef RE_ENABLE_I18N
3125       re_free (mbcset);
3126 #endif
3127       *err = REG_ESPACE;
3128       return NULL;
3129     }
3130
3131   token_len = peek_token_bracket (token, regexp, syntax);
3132   if (BE (token->type == END_OF_RE, 0))
3133     {
3134       *err = REG_BADPAT;
3135       goto parse_bracket_exp_free_return;
3136     }
3137   if (token->type == OP_NON_MATCH_LIST)
3138     {
3139 #ifdef RE_ENABLE_I18N
3140       mbcset->non_match = 1;
3141 #endif /* not RE_ENABLE_I18N */
3142       non_match = true;
3143       if (syntax & RE_HAT_LISTS_NOT_NEWLINE)
3144         bitset_set (sbcset, '\n');
3145       re_string_skip_bytes (regexp, token_len); /* Skip a token.  */
3146       token_len = peek_token_bracket (token, regexp, syntax);
3147       if (BE (token->type == END_OF_RE, 0))
3148         {
3149           *err = REG_BADPAT;
3150           goto parse_bracket_exp_free_return;
3151         }
3152     }
3153
3154   /* We treat the first ']' as a normal character.  */
3155   if (token->type == OP_CLOSE_BRACKET)
3156     token->type = CHARACTER;
3157
3158   while (1)
3159     {
3160       bracket_elem_t start_elem, end_elem;
3161       unsigned char start_name_buf[BRACKET_NAME_BUF_SIZE];
3162       unsigned char end_name_buf[BRACKET_NAME_BUF_SIZE];
3163       reg_errcode_t ret;
3164       int token_len2 = 0;
3165       bool is_range_exp = false;
3166       re_token_t token2;
3167
3168       start_elem.opr.name = start_name_buf;
3169       ret = parse_bracket_element (&start_elem, regexp, token, token_len, dfa,
3170                                    syntax, first_round);
3171       if (BE (ret != REG_NOERROR, 0))
3172         {
3173           *err = ret;
3174           goto parse_bracket_exp_free_return;
3175         }
3176       first_round = false;
3177
3178       /* Get information about the next token.  We need it in any case.  */
3179       token_len = peek_token_bracket (token, regexp, syntax);
3180
3181       /* Do not check for ranges if we know they are not allowed.  */
3182       if (start_elem.type != CHAR_CLASS && start_elem.type != EQUIV_CLASS)
3183         {
3184           if (BE (token->type == END_OF_RE, 0))
3185             {
3186               *err = REG_EBRACK;
3187               goto parse_bracket_exp_free_return;
3188             }
3189           if (token->type == OP_CHARSET_RANGE)
3190             {
3191               re_string_skip_bytes (regexp, token_len); /* Skip '-'.  */
3192               token_len2 = peek_token_bracket (&token2, regexp, syntax);
3193               if (BE (token2.type == END_OF_RE, 0))
3194                 {
3195                   *err = REG_EBRACK;
3196                   goto parse_bracket_exp_free_return;
3197                 }
3198               if (token2.type == OP_CLOSE_BRACKET)
3199                 {
3200                   /* We treat the last '-' as a normal character.  */
3201                   re_string_skip_bytes (regexp, -token_len);
3202                   token->type = CHARACTER;
3203                 }
3204               else
3205                 is_range_exp = true;
3206             }
3207         }
3208
3209       if (is_range_exp == true)
3210         {
3211           end_elem.opr.name = end_name_buf;
3212           ret = parse_bracket_element (&end_elem, regexp, &token2, token_len2,
3213                                        dfa, syntax, true);
3214           if (BE (ret != REG_NOERROR, 0))
3215             {
3216               *err = ret;
3217               goto parse_bracket_exp_free_return;
3218             }
3219
3220           token_len = peek_token_bracket (token, regexp, syntax);
3221
3222 #ifdef _LIBC
3223           *err = build_range_exp (sbcset, mbcset, &range_alloc,
3224                                   &start_elem, &end_elem);
3225 #else
3226 # ifdef RE_ENABLE_I18N
3227           *err = build_range_exp (syntax, sbcset,
3228                                   dfa->mb_cur_max > 1 ? mbcset : NULL,
3229                                   &range_alloc, &start_elem, &end_elem);
3230 # else
3231           *err = build_range_exp (syntax, sbcset, &start_elem, &end_elem);
3232 # endif
3233 #endif /* RE_ENABLE_I18N */
3234           if (BE (*err != REG_NOERROR, 0))
3235             goto parse_bracket_exp_free_return;
3236         }
3237       else
3238         {
3239           switch (start_elem.type)
3240             {
3241             case SB_CHAR:
3242               bitset_set (sbcset, start_elem.opr.ch);
3243               break;
3244 #ifdef RE_ENABLE_I18N
3245             case MB_CHAR:
3246               /* Check whether the array has enough space.  */
3247               if (BE (mbchar_alloc == mbcset->nmbchars, 0))
3248                 {
3249                   wchar_t *new_mbchars;
3250                   /* Not enough, realloc it.  */
3251                   /* +1 in case of mbcset->nmbchars is 0.  */
3252                   mbchar_alloc = 2 * mbcset->nmbchars + 1;
3253                   /* Use realloc since array is NULL if *alloc == 0.  */
3254                   new_mbchars = re_realloc (mbcset->mbchars, wchar_t,
3255                                             mbchar_alloc);
3256                   if (BE (new_mbchars == NULL, 0))
3257                     goto parse_bracket_exp_espace;
3258                   mbcset->mbchars = new_mbchars;
3259                 }
3260               mbcset->mbchars[mbcset->nmbchars++] = start_elem.opr.wch;
3261               break;
3262 #endif /* RE_ENABLE_I18N */
3263             case EQUIV_CLASS:
3264               *err = build_equiv_class (sbcset,
3265 #ifdef RE_ENABLE_I18N
3266                                         mbcset, &equiv_class_alloc,
3267 #endif /* RE_ENABLE_I18N */
3268                                         start_elem.opr.name);
3269               if (BE (*err != REG_NOERROR, 0))
3270                 goto parse_bracket_exp_free_return;
3271               break;
3272             case COLL_SYM:
3273               *err = build_collating_symbol (sbcset,
3274 #ifdef RE_ENABLE_I18N
3275                                              mbcset, &coll_sym_alloc,
3276 #endif /* RE_ENABLE_I18N */
3277                                              start_elem.opr.name);
3278               if (BE (*err != REG_NOERROR, 0))
3279                 goto parse_bracket_exp_free_return;
3280               break;
3281             case CHAR_CLASS:
3282               *err = build_charclass (regexp->trans, sbcset,
3283 #ifdef RE_ENABLE_I18N
3284                                       mbcset, &char_class_alloc,
3285 #endif /* RE_ENABLE_I18N */
3286                                       (const char *) start_elem.opr.name,
3287                                       syntax);
3288               if (BE (*err != REG_NOERROR, 0))
3289                goto parse_bracket_exp_free_return;
3290               break;
3291             default:
3292               assert (0);
3293               break;
3294             }
3295         }
3296       if (BE (token->type == END_OF_RE, 0))
3297         {
3298           *err = REG_EBRACK;
3299           goto parse_bracket_exp_free_return;
3300         }
3301       if (token->type == OP_CLOSE_BRACKET)
3302         break;
3303     }
3304
3305   re_string_skip_bytes (regexp, token_len); /* Skip a token.  */
3306
3307   /* If it is non-matching list.  */
3308   if (non_match)
3309     bitset_not (sbcset);
3310
3311 #ifdef RE_ENABLE_I18N
3312   /* Ensure only single byte characters are set.  */
3313   if (dfa->mb_cur_max > 1)
3314     bitset_mask (sbcset, dfa->sb_char);
3315
3316   if (mbcset->nmbchars || mbcset->ncoll_syms || mbcset->nequiv_classes
3317       || mbcset->nranges || (dfa->mb_cur_max > 1 && (mbcset->nchar_classes
3318                                                      || mbcset->non_match)))
3319     {
3320       bin_tree_t *mbc_tree;
3321       int sbc_idx;
3322       /* Build a tree for complex bracket.  */
3323       dfa->has_mb_node = 1;
3324       br_token.type = COMPLEX_BRACKET;
3325       br_token.opr.mbcset = mbcset;
3326       mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3327       if (BE (mbc_tree == NULL, 0))
3328         goto parse_bracket_exp_espace;
3329       for (sbc_idx = 0; sbc_idx < BITSET_WORDS; ++sbc_idx)
3330         if (sbcset[sbc_idx])
3331           break;
3332       /* If there are no bits set in sbcset, there is no point
3333          of having both SIMPLE_BRACKET and COMPLEX_BRACKET.  */
3334       if (sbc_idx < BITSET_WORDS)
3335         {
3336           /* Build a tree for simple bracket.  */
3337           br_token.type = SIMPLE_BRACKET;
3338           br_token.opr.sbcset = sbcset;
3339           work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3340           if (BE (work_tree == NULL, 0))
3341             goto parse_bracket_exp_espace;
3342
3343           /* Then join them by ALT node.  */
3344           work_tree = create_tree (dfa, work_tree, mbc_tree, OP_ALT);
3345           if (BE (work_tree == NULL, 0))
3346             goto parse_bracket_exp_espace;
3347         }
3348       else
3349         {
3350           re_free (sbcset);
3351           work_tree = mbc_tree;
3352         }
3353     }
3354   else
3355 #endif /* not RE_ENABLE_I18N */
3356     {
3357 #ifdef RE_ENABLE_I18N
3358       free_charset (mbcset);
3359 #endif
3360       /* Build a tree for simple bracket.  */
3361       br_token.type = SIMPLE_BRACKET;
3362       br_token.opr.sbcset = sbcset;
3363       work_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3364       if (BE (work_tree == NULL, 0))
3365         goto parse_bracket_exp_espace;
3366     }
3367   return work_tree;
3368
3369  parse_bracket_exp_espace:
3370   *err = REG_ESPACE;
3371  parse_bracket_exp_free_return:
3372   re_free (sbcset);
3373 #ifdef RE_ENABLE_I18N
3374   free_charset (mbcset);
3375 #endif /* RE_ENABLE_I18N */
3376   return NULL;
3377 }
3378
3379 /* Parse an element in the bracket expression.  */
3380
3381 static reg_errcode_t
3382 parse_bracket_element (bracket_elem_t *elem, re_string_t *regexp,
3383                        re_token_t *token, int token_len,
3384                        re_dfa_t *dfa _UNUSED_PARAMETER_,
3385                        reg_syntax_t syntax, bool accept_hyphen)
3386 {
3387 #ifdef RE_ENABLE_I18N
3388   int cur_char_size;
3389   cur_char_size = re_string_char_size_at (regexp, re_string_cur_idx (regexp));
3390   if (cur_char_size > 1)
3391     {
3392       elem->type = MB_CHAR;
3393       elem->opr.wch = re_string_wchar_at (regexp, re_string_cur_idx (regexp));
3394       re_string_skip_bytes (regexp, cur_char_size);
3395       return REG_NOERROR;
3396     }
3397 #endif /* RE_ENABLE_I18N */
3398   re_string_skip_bytes (regexp, token_len); /* Skip a token.  */
3399   if (token->type == OP_OPEN_COLL_ELEM || token->type == OP_OPEN_CHAR_CLASS
3400       || token->type == OP_OPEN_EQUIV_CLASS)
3401     return parse_bracket_symbol (elem, regexp, token);
3402   if (BE (token->type == OP_CHARSET_RANGE, 0) && !accept_hyphen)
3403     {
3404       /* A '-' must only appear as anything but a range indicator before
3405          the closing bracket.  Everything else is an error.  */
3406       re_token_t token2;
3407       (void) peek_token_bracket (&token2, regexp, syntax);
3408       if (token2.type != OP_CLOSE_BRACKET)
3409         /* The actual error value is not standardized since this whole
3410            case is undefined.  But ERANGE makes good sense.  */
3411         return REG_ERANGE;
3412     }
3413   elem->type = SB_CHAR;
3414   elem->opr.ch = token->opr.c;
3415   return REG_NOERROR;
3416 }
3417
3418 /* Parse a bracket symbol in the bracket expression.  Bracket symbols are
3419    such as [:<character_class>:], [.<collating_element>.], and
3420    [=<equivalent_class>=].  */
3421
3422 static reg_errcode_t
3423 parse_bracket_symbol (bracket_elem_t *elem, re_string_t *regexp,
3424                       re_token_t *token)
3425 {
3426   unsigned char ch, delim = token->opr.c;
3427   int i = 0;
3428   if (re_string_eoi(regexp))
3429     return REG_EBRACK;
3430   for (;; ++i)
3431     {
3432       if (i >= BRACKET_NAME_BUF_SIZE)
3433         return REG_EBRACK;
3434       if (token->type == OP_OPEN_CHAR_CLASS)
3435         ch = re_string_fetch_byte_case (regexp);
3436       else
3437         ch = re_string_fetch_byte (regexp);
3438       if (re_string_eoi(regexp))
3439         return REG_EBRACK;
3440       if (ch == delim && re_string_peek_byte (regexp, 0) == ']')
3441         break;
3442       elem->opr.name[i] = ch;
3443     }
3444   re_string_skip_bytes (regexp, 1);
3445   elem->opr.name[i] = '\0';
3446   switch (token->type)
3447     {
3448     case OP_OPEN_COLL_ELEM:
3449       elem->type = COLL_SYM;
3450       break;
3451     case OP_OPEN_EQUIV_CLASS:
3452       elem->type = EQUIV_CLASS;
3453       break;
3454     case OP_OPEN_CHAR_CLASS:
3455       elem->type = CHAR_CLASS;
3456       break;
3457     default:
3458       break;
3459     }
3460   return REG_NOERROR;
3461 }
3462
3463   /* Helper function for parse_bracket_exp.
3464      Build the equivalence class which is represented by NAME.
3465      The result are written to MBCSET and SBCSET.
3466      EQUIV_CLASS_ALLOC is the allocated size of mbcset->equiv_classes,
3467      is a pointer argument since we may update it.  */
3468
3469 static reg_errcode_t
3470 #ifdef RE_ENABLE_I18N
3471 build_equiv_class (bitset_t sbcset, re_charset_t *mbcset _UNUSED_PARAMETER_,
3472                    Idx *equiv_class_alloc _UNUSED_PARAMETER_,
3473                    const unsigned char *name)
3474 #else /* not RE_ENABLE_I18N */
3475 build_equiv_class (bitset_t sbcset, const unsigned char *name)
3476 #endif /* not RE_ENABLE_I18N */
3477 {
3478 #ifdef _LIBC
3479   uint32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3480   if (nrules != 0)
3481     {
3482       const int32_t *table, *indirect;
3483       const unsigned char *weights, *extra, *cp;
3484       unsigned char char_buf[2];
3485       int32_t idx1, idx2;
3486       unsigned int ch;
3487       size_t len;
3488       /* This #include defines a local function!  */
3489 # include <locale/weight.h>
3490       /* Calculate the index for equivalence class.  */
3491       cp = name;
3492       table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3493       weights = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3494                                                _NL_COLLATE_WEIGHTMB);
3495       extra = (const unsigned char *) _NL_CURRENT (LC_COLLATE,
3496                                                    _NL_COLLATE_EXTRAMB);
3497       indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
3498                                                 _NL_COLLATE_INDIRECTMB);
3499       idx1 = findidx (&cp, -1);
3500       if (BE (idx1 == 0 || *cp != '\0', 0))
3501         /* This isn't a valid character.  */
3502         return REG_ECOLLATE;
3503
3504       /* Build single byte matching table for this equivalence class.  */
3505       len = weights[idx1 & 0xffffff];
3506       for (ch = 0; ch < SBC_MAX; ++ch)
3507         {
3508           char_buf[0] = ch;
3509           cp = char_buf;
3510           idx2 = findidx (&cp, 1);
3511 /*
3512           idx2 = table[ch];
3513 */
3514           if (idx2 == 0)
3515             /* This isn't a valid character.  */
3516             continue;
3517           /* Compare only if the length matches and the collation rule
3518              index is the same.  */
3519           if (len == weights[idx2 & 0xffffff] && (idx1 >> 24) == (idx2 >> 24))
3520             {
3521               int cnt = 0;
3522
3523               while (cnt <= len &&
3524                      weights[(idx1 & 0xffffff) + 1 + cnt]
3525                      == weights[(idx2 & 0xffffff) + 1 + cnt])
3526                 ++cnt;
3527
3528               if (cnt > len)
3529                 bitset_set (sbcset, ch);
3530             }
3531         }
3532       /* Check whether the array has enough space.  */
3533       if (BE (*equiv_class_alloc == mbcset->nequiv_classes, 0))
3534         {
3535           /* Not enough, realloc it.  */
3536           /* +1 in case of mbcset->nequiv_classes is 0.  */
3537           Idx new_equiv_class_alloc = 2 * mbcset->nequiv_classes + 1;
3538           /* Use realloc since the array is NULL if *alloc == 0.  */
3539           int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes,
3540                                                    int32_t,
3541                                                    new_equiv_class_alloc);
3542           if (BE (new_equiv_classes == NULL, 0))
3543             return REG_ESPACE;
3544           mbcset->equiv_classes = new_equiv_classes;
3545           *equiv_class_alloc = new_equiv_class_alloc;
3546         }
3547       mbcset->equiv_classes[mbcset->nequiv_classes++] = idx1;
3548     }
3549   else
3550 #endif /* _LIBC */
3551     {
3552       if (BE (strlen ((const char *) name) != 1, 0))
3553         return REG_ECOLLATE;
3554       bitset_set (sbcset, *name);
3555     }
3556   return REG_NOERROR;
3557 }
3558
3559   /* Helper function for parse_bracket_exp.
3560      Build the character class which is represented by NAME.
3561      The result are written to MBCSET and SBCSET.
3562      CHAR_CLASS_ALLOC is the allocated size of mbcset->char_classes,
3563      is a pointer argument since we may update it.  */
3564
3565 static reg_errcode_t
3566 #ifdef RE_ENABLE_I18N
3567 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3568                  re_charset_t *mbcset, Idx *char_class_alloc,
3569                  const char *class_name, reg_syntax_t syntax)
3570 #else /* not RE_ENABLE_I18N */
3571 build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset,
3572                  const char *class_name, reg_syntax_t syntax)
3573 #endif /* not RE_ENABLE_I18N */
3574 {
3575   int i;
3576   const char *name = class_name;
3577
3578   /* In case of REG_ICASE "upper" and "lower" match the both of
3579      upper and lower cases.  */
3580   if ((syntax & RE_ICASE)
3581       && (strcmp (name, "upper") == 0 || strcmp (name, "lower") == 0))
3582     name = "alpha";
3583
3584 #ifdef RE_ENABLE_I18N
3585   /* Check the space of the arrays.  */
3586   if (BE (*char_class_alloc == mbcset->nchar_classes, 0))
3587     {
3588       /* Not enough, realloc it.  */
3589       /* +1 in case of mbcset->nchar_classes is 0.  */
3590       Idx new_char_class_alloc = 2 * mbcset->nchar_classes + 1;
3591       /* Use realloc since array is NULL if *alloc == 0.  */
3592       wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t,
3593                                                new_char_class_alloc);
3594       if (BE (new_char_classes == NULL, 0))
3595         return REG_ESPACE;
3596       mbcset->char_classes = new_char_classes;
3597       *char_class_alloc = new_char_class_alloc;
3598     }
3599   mbcset->char_classes[mbcset->nchar_classes++] = __wctype (name);
3600 #endif /* RE_ENABLE_I18N */
3601
3602 #define BUILD_CHARCLASS_LOOP(ctype_func)        \
3603   do {                                          \
3604     if (BE (trans != NULL, 0))                  \
3605       {                                         \
3606         for (i = 0; i < SBC_MAX; ++i)           \
3607           if (ctype_func (i))                   \
3608             bitset_set (sbcset, trans[i]);      \
3609       }                                         \
3610     else                                        \
3611       {                                         \
3612         for (i = 0; i < SBC_MAX; ++i)           \
3613           if (ctype_func (i))                   \
3614             bitset_set (sbcset, i);             \
3615       }                                         \
3616   } while (0)
3617
3618   if (strcmp (name, "alnum") == 0)
3619     BUILD_CHARCLASS_LOOP (isalnum);
3620   else if (strcmp (name, "cntrl") == 0)
3621     BUILD_CHARCLASS_LOOP (iscntrl);
3622   else if (strcmp (name, "lower") == 0)
3623     BUILD_CHARCLASS_LOOP (islower);
3624   else if (strcmp (name, "space") == 0)
3625     BUILD_CHARCLASS_LOOP (isspace);
3626   else if (strcmp (name, "alpha") == 0)
3627     BUILD_CHARCLASS_LOOP (isalpha);
3628   else if (strcmp (name, "digit") == 0)
3629     BUILD_CHARCLASS_LOOP (isdigit);
3630   else if (strcmp (name, "print") == 0)
3631     BUILD_CHARCLASS_LOOP (isprint);
3632   else if (strcmp (name, "upper") == 0)
3633     BUILD_CHARCLASS_LOOP (isupper);
3634   else if (strcmp (name, "blank") == 0)
3635     BUILD_CHARCLASS_LOOP (isblank);
3636   else if (strcmp (name, "graph") == 0)
3637     BUILD_CHARCLASS_LOOP (isgraph);
3638   else if (strcmp (name, "punct") == 0)
3639     BUILD_CHARCLASS_LOOP (ispunct);
3640   else if (strcmp (name, "xdigit") == 0)
3641     BUILD_CHARCLASS_LOOP (isxdigit);
3642   else
3643     return REG_ECTYPE;
3644
3645   return REG_NOERROR;
3646 }
3647
3648 static bin_tree_t *
3649 build_charclass_op (re_dfa_t *dfa, RE_TRANSLATE_TYPE trans,
3650                     const char *class_name,
3651                     const char *extra, bool non_match,
3652                     reg_errcode_t *err)
3653 {
3654   re_bitset_ptr_t sbcset;
3655 #ifdef RE_ENABLE_I18N
3656   re_charset_t *mbcset;
3657   Idx alloc = 0;
3658 #endif /* not RE_ENABLE_I18N */
3659   reg_errcode_t ret;
3660   re_token_t br_token;
3661   bin_tree_t *tree;
3662
3663   sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);
3664 #ifdef RE_ENABLE_I18N
3665   mbcset = (re_charset_t *) calloc (sizeof (re_charset_t), 1);
3666 #endif /* RE_ENABLE_I18N */
3667
3668 #ifdef RE_ENABLE_I18N
3669   if (BE (sbcset == NULL || mbcset == NULL, 0))
3670 #else /* not RE_ENABLE_I18N */
3671   if (BE (sbcset == NULL, 0))
3672 #endif /* not RE_ENABLE_I18N */
3673     {
3674       *err = REG_ESPACE;
3675       return NULL;
3676     }
3677
3678   if (non_match)
3679     {
3680 #ifdef RE_ENABLE_I18N
3681       mbcset->non_match = 1;
3682 #endif /* not RE_ENABLE_I18N */
3683     }
3684
3685   /* We don't care the syntax in this case.  */
3686   ret = build_charclass (trans, sbcset,
3687 #ifdef RE_ENABLE_I18N
3688                          mbcset, &alloc,
3689 #endif /* RE_ENABLE_I18N */
3690                          class_name, 0);
3691
3692   if (BE (ret != REG_NOERROR, 0))
3693     {
3694       re_free (sbcset);
3695 #ifdef RE_ENABLE_I18N
3696       free_charset (mbcset);
3697 #endif /* RE_ENABLE_I18N */
3698       *err = ret;
3699       return NULL;
3700     }
3701   /* \w match '_' also.  */
3702   for (; *extra; extra++)
3703     bitset_set (sbcset, *extra);
3704
3705   /* If it is non-matching list.  */
3706   if (non_match)
3707     bitset_not (sbcset);
3708
3709 #ifdef RE_ENABLE_I18N
3710   /* Ensure only single byte characters are set.  */
3711   if (dfa->mb_cur_max > 1)
3712     bitset_mask (sbcset, dfa->sb_char);
3713 #endif
3714
3715   /* Build a tree for simple bracket.  */
3716   br_token.type = SIMPLE_BRACKET;
3717   br_token.opr.sbcset = sbcset;
3718   tree = create_token_tree (dfa, NULL, NULL, &br_token);
3719   if (BE (tree == NULL, 0))
3720     goto build_word_op_espace;
3721
3722 #ifdef RE_ENABLE_I18N
3723   if (dfa->mb_cur_max > 1)
3724     {
3725       bin_tree_t *mbc_tree;
3726       /* Build a tree for complex bracket.  */
3727       br_token.type = COMPLEX_BRACKET;
3728       br_token.opr.mbcset = mbcset;
3729       dfa->has_mb_node = 1;
3730       mbc_tree = create_token_tree (dfa, NULL, NULL, &br_token);
3731       if (BE (mbc_tree == NULL, 0))
3732         goto build_word_op_espace;
3733       /* Then join them by ALT node.  */
3734       tree = create_tree (dfa, tree, mbc_tree, OP_ALT);
3735       if (BE (mbc_tree != NULL, 1))
3736         return tree;
3737     }
3738   else
3739     {
3740       free_charset (mbcset);
3741       return tree;
3742     }
3743 #else /* not RE_ENABLE_I18N */
3744   return tree;
3745 #endif /* not RE_ENABLE_I18N */
3746
3747  build_word_op_espace:
3748   re_free (sbcset);
3749 #ifdef RE_ENABLE_I18N
3750   free_charset (mbcset);
3751 #endif /* RE_ENABLE_I18N */
3752   *err = REG_ESPACE;
3753   return NULL;
3754 }
3755
3756 /* This is intended for the expressions like "a{1,3}".
3757    Fetch a number from 'input', and return the number.
3758    Return REG_MISSING if the number field is empty like "{,1}".
3759    Return RE_DUP_MAX + 1 if the number field is too large.
3760    Return REG_ERROR if an error occurred.  */
3761
3762 static Idx
3763 fetch_number (re_string_t *input, re_token_t *token, reg_syntax_t syntax)
3764 {
3765   Idx num = REG_MISSING;
3766   unsigned char c;
3767   while (1)
3768     {
3769       fetch_token (token, input, syntax);
3770       c = token->opr.c;
3771       if (BE (token->type == END_OF_RE, 0))
3772         return REG_ERROR;
3773       if (token->type == OP_CLOSE_DUP_NUM || c == ',')
3774         break;
3775       num = ((token->type != CHARACTER || c < '0' || '9' < c
3776               || num == REG_ERROR)
3777              ? REG_ERROR
3778              : num == REG_MISSING
3779              ? c - '0'
3780              : MIN (RE_DUP_MAX + 1, num * 10 + c - '0'));
3781     }
3782   return num;
3783 }
3784 \f
3785 #ifdef RE_ENABLE_I18N
3786 static void
3787 free_charset (re_charset_t *cset)
3788 {
3789   re_free (cset->mbchars);
3790 # ifdef _LIBC
3791   re_free (cset->coll_syms);
3792   re_free (cset->equiv_classes);
3793   re_free (cset->range_starts);
3794   re_free (cset->range_ends);
3795 # endif
3796   re_free (cset->char_classes);
3797   re_free (cset);
3798 }
3799 #endif /* RE_ENABLE_I18N */
3800 \f
3801 /* Functions for binary tree operation.  */
3802
3803 /* Create a tree node.  */
3804
3805 static bin_tree_t *
3806 create_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3807              re_token_type_t type)
3808 {
3809   re_token_t t;
3810   t.type = type;
3811   return create_token_tree (dfa, left, right, &t);
3812 }
3813
3814 static bin_tree_t *
3815 create_token_tree (re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right,
3816                    const re_token_t *token)
3817 {
3818   bin_tree_t *tree;
3819   if (BE (dfa->str_tree_storage_idx == BIN_TREE_STORAGE_SIZE, 0))
3820     {
3821       bin_tree_storage_t *storage = re_malloc (bin_tree_storage_t, 1);
3822
3823       if (storage == NULL)
3824         return NULL;
3825       storage->next = dfa->str_tree_storage;
3826       dfa->str_tree_storage = storage;
3827       dfa->str_tree_storage_idx = 0;
3828     }
3829   tree = &dfa->str_tree_storage->data[dfa->str_tree_storage_idx++];
3830
3831   tree->parent = NULL;
3832   tree->left = left;
3833   tree->right = right;
3834   tree->token = *token;
3835   tree->token.duplicated = 0;
3836   tree->token.opt_subexp = 0;
3837   tree->first = NULL;
3838   tree->next = NULL;
3839   tree->node_idx = REG_MISSING;
3840
3841   if (left != NULL)
3842     left->parent = tree;
3843   if (right != NULL)
3844     right->parent = tree;
3845   return tree;
3846 }
3847
3848 /* Mark the tree SRC as an optional subexpression.
3849    To be called from preorder or postorder.  */
3850
3851 static reg_errcode_t
3852 mark_opt_subexp (void *extra, bin_tree_t *node)
3853 {
3854   Idx idx = (uintptr_t) extra;
3855   if (node->token.type == SUBEXP && node->token.opr.idx == idx)
3856     node->token.opt_subexp = 1;
3857
3858   return REG_NOERROR;
3859 }
3860
3861 /* Free the allocated memory inside NODE. */
3862
3863 static void
3864 free_token (re_token_t *node)
3865 {
3866 #ifdef RE_ENABLE_I18N
3867   if (node->type == COMPLEX_BRACKET && node->duplicated == 0)
3868     free_charset (node->opr.mbcset);
3869   else
3870 #endif /* RE_ENABLE_I18N */
3871     if (node->type == SIMPLE_BRACKET && node->duplicated == 0)
3872       re_free (node->opr.sbcset);
3873 }
3874
3875 /* Worker function for tree walking.  Free the allocated memory inside NODE
3876    and its children. */
3877
3878 static reg_errcode_t
3879 free_tree (void *extra _UNUSED_PARAMETER_, bin_tree_t *node)
3880 {
3881   free_token (&node->token);
3882   return REG_NOERROR;
3883 }
3884
3885
3886 /* Duplicate the node SRC, and return new node.  This is a preorder
3887    visit similar to the one implemented by the generic visitor, but
3888    we need more infrastructure to maintain two parallel trees --- so,
3889    it's easier to duplicate.  */
3890
3891 static bin_tree_t *
3892 duplicate_tree (const bin_tree_t *root, re_dfa_t *dfa)
3893 {
3894   const bin_tree_t *node;
3895   bin_tree_t *dup_root;
3896   bin_tree_t **p_new = &dup_root, *dup_node = root->parent;
3897
3898   for (node = root; ; )
3899     {
3900       /* Create a new tree and link it back to the current parent.  */
3901       *p_new = create_token_tree (dfa, NULL, NULL, &node->token);
3902       if (*p_new == NULL)
3903         return NULL;
3904       (*p_new)->parent = dup_node;
3905       (*p_new)->token.duplicated = 1;
3906       dup_node = *p_new;
3907
3908       /* Go to the left node, or up and to the right.  */
3909       if (node->left)
3910         {
3911           node = node->left;
3912           p_new = &dup_node->left;
3913         }
3914       else
3915         {
3916           const bin_tree_t *prev = NULL;
3917           while (node->right == prev || node->right == NULL)
3918             {
3919               prev = node;
3920               node = node->parent;
3921               dup_node = dup_node->parent;
3922               if (!node)
3923                 return dup_root;
3924             }
3925           node = node->right;
3926           p_new = &dup_node->right;
3927         }
3928     }
3929 }