Make regex safe for g++. This fixes one real bug (an "err"
[gnulib.git] / lib / regex_internal.h
1 /* Extended regular expression matching and search library.
2    Copyright (C) 2002, 2003, 2004, 2005 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    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program 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
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License along
17    with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19
20 #ifndef _REGEX_INTERNAL_H
21 #define _REGEX_INTERNAL_H 1
22
23 #include <assert.h>
24 #include <ctype.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #if defined HAVE_LANGINFO_H || defined HAVE_LANGINFO_CODESET || defined _LIBC
30 # include <langinfo.h>
31 #endif
32 #if defined HAVE_LOCALE_H || defined _LIBC
33 # include <locale.h>
34 #endif
35 #if defined HAVE_WCHAR_H || defined _LIBC
36 # include <wchar.h>
37 #endif /* HAVE_WCHAR_H || _LIBC */
38 #if defined HAVE_WCTYPE_H || defined _LIBC
39 # include <wctype.h>
40 #endif /* HAVE_WCTYPE_H || _LIBC */
41 #if defined _LIBC
42 # include <bits/libc-lock.h>
43 #else
44 # define __libc_lock_define(CLASS,NAME)
45 # define __libc_lock_init(NAME) do { } while (0)
46 # define __libc_lock_lock(NAME) do { } while (0)
47 # define __libc_lock_unlock(NAME) do { } while (0)
48 #endif
49
50 /* In case that the system doesn't have isblank().  */
51 #if !defined _LIBC && !defined HAVE_ISBLANK && !defined isblank
52 # define isblank(ch) ((ch) == ' ' || (ch) == '\t')
53 #endif
54
55 #ifdef _LIBC
56 # ifndef _RE_DEFINE_LOCALE_FUNCTIONS
57 #  define _RE_DEFINE_LOCALE_FUNCTIONS 1
58 #   include <locale/localeinfo.h>
59 #   include <locale/elem-hash.h>
60 #   include <locale/coll-lookup.h>
61 # endif
62 #endif
63
64 /* This is for other GNU distributions with internationalized messages.  */
65 #if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
66 # include <libintl.h>
67 # ifdef _LIBC
68 #  undef gettext
69 #  define gettext(msgid) \
70   INTUSE(__dcgettext) (_libc_intl_domainname, msgid, LC_MESSAGES)
71 # endif
72 #else
73 # define gettext(msgid) (msgid)
74 #endif
75
76 #ifndef gettext_noop
77 /* This define is so xgettext can find the internationalizable
78    strings.  */
79 # define gettext_noop(String) String
80 #endif
81
82 #if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_WCRTOMB && HAVE_MBRTOWC && HAVE_WCSCOLL) || _LIBC
83 # define RE_ENABLE_I18N
84 #endif
85
86 #if __GNUC__ >= 3
87 # define BE(expr, val) __builtin_expect (expr, val)
88 #else
89 # define BE(expr, val) (expr)
90 # define inline
91 #endif
92
93 /* Number of bits in a byte.  */
94 #define BYTE_BITS 8
95 /* Number of single byte character.  */
96 #define SBC_MAX 256
97
98 #define COLL_ELEM_LEN_MAX 8
99
100 /* The character which represents newline.  */
101 #define NEWLINE_CHAR '\n'
102 #define WIDE_NEWLINE_CHAR L'\n'
103
104 /* Rename to standard API for using out of glibc.  */
105 #ifndef _LIBC
106 # define __wctype wctype
107 # define __iswctype iswctype
108 # define __btowc btowc
109 # ifndef __mempcpy
110 #  define __mempcpy mempcpy
111 # endif
112 # define __wcrtomb wcrtomb
113 # define __regfree regfree
114 # define attribute_hidden
115 #endif /* not _LIBC */
116
117 #ifdef __GNUC__
118 # define __attribute(arg) __attribute__ (arg)
119 #else
120 # define __attribute(arg)
121 #endif
122
123 extern const char __re_error_msgid[] attribute_hidden;
124 extern const size_t __re_error_msgid_idx[] attribute_hidden;
125
126 /* Number of bits in an unsinged int.  */
127 #define UINT_BITS (sizeof (unsigned int) * BYTE_BITS)
128 /* Number of unsigned int in an bit_set.  */
129 #define BITSET_UINTS ((SBC_MAX + UINT_BITS - 1) / UINT_BITS)
130 typedef unsigned int bitset[BITSET_UINTS];
131 typedef unsigned int *re_bitset_ptr_t;
132 typedef const unsigned int *re_const_bitset_ptr_t;
133
134 #define bitset_set(set,i) (set[i / UINT_BITS] |= 1 << i % UINT_BITS)
135 #define bitset_clear(set,i) (set[i / UINT_BITS] &= ~(1 << i % UINT_BITS))
136 #define bitset_contain(set,i) (set[i / UINT_BITS] & (1 << i % UINT_BITS))
137 #define bitset_empty(set) memset (set, 0, sizeof (unsigned int) * BITSET_UINTS)
138 #define bitset_set_all(set) \
139   memset (set, 255, sizeof (unsigned int) * BITSET_UINTS)
140 #define bitset_copy(dest,src) \
141   memcpy (dest, src, sizeof (unsigned int) * BITSET_UINTS)
142 static inline void bitset_not (bitset set);
143 static inline void bitset_merge (bitset dest, const bitset src);
144 static inline void bitset_not_merge (bitset dest, const bitset src);
145 static inline void bitset_mask (bitset dest, const bitset src);
146
147 #define PREV_WORD_CONSTRAINT 0x0001
148 #define PREV_NOTWORD_CONSTRAINT 0x0002
149 #define NEXT_WORD_CONSTRAINT 0x0004
150 #define NEXT_NOTWORD_CONSTRAINT 0x0008
151 #define PREV_NEWLINE_CONSTRAINT 0x0010
152 #define NEXT_NEWLINE_CONSTRAINT 0x0020
153 #define PREV_BEGBUF_CONSTRAINT 0x0040
154 #define NEXT_ENDBUF_CONSTRAINT 0x0080
155 #define WORD_DELIM_CONSTRAINT 0x0100
156 #define NOT_WORD_DELIM_CONSTRAINT 0x0200
157
158 typedef enum
159 {
160   INSIDE_WORD = PREV_WORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
161   WORD_FIRST = PREV_NOTWORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
162   WORD_LAST = PREV_WORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
163   INSIDE_NOTWORD = PREV_NOTWORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
164   LINE_FIRST = PREV_NEWLINE_CONSTRAINT,
165   LINE_LAST = NEXT_NEWLINE_CONSTRAINT,
166   BUF_FIRST = PREV_BEGBUF_CONSTRAINT,
167   BUF_LAST = NEXT_ENDBUF_CONSTRAINT,
168   WORD_DELIM = WORD_DELIM_CONSTRAINT,
169   NOT_WORD_DELIM = NOT_WORD_DELIM_CONSTRAINT
170 } re_context_type;
171
172 typedef struct
173 {
174   int alloc;
175   int nelem;
176   int *elems;
177 } re_node_set;
178
179 typedef enum
180 {
181   NON_TYPE = 0,
182
183   /* Node type, These are used by token, node, tree.  */
184   CHARACTER = 1,
185   END_OF_RE = 2,
186   SIMPLE_BRACKET = 3,
187   OP_BACK_REF = 4,
188   OP_PERIOD = 5,
189 #ifdef RE_ENABLE_I18N
190   COMPLEX_BRACKET = 6,
191   OP_UTF8_PERIOD = 7,
192 #endif /* RE_ENABLE_I18N */
193
194   /* We define EPSILON_BIT as a macro so that OP_OPEN_SUBEXP is used
195      when the debugger shows values of this enum type.  */
196 #define EPSILON_BIT 8
197   OP_OPEN_SUBEXP = EPSILON_BIT | 0,
198   OP_CLOSE_SUBEXP = EPSILON_BIT | 1,
199   OP_ALT = EPSILON_BIT | 2,
200   OP_DUP_ASTERISK = EPSILON_BIT | 3,
201   ANCHOR = EPSILON_BIT | 4,
202
203   /* Tree type, these are used only by tree. */
204   CONCAT = 16,
205   SUBEXP = 17,
206
207   /* Token type, these are used only by token.  */
208   OP_DUP_PLUS = 18,
209   OP_DUP_QUESTION,
210   OP_OPEN_BRACKET,
211   OP_CLOSE_BRACKET,
212   OP_CHARSET_RANGE,
213   OP_OPEN_DUP_NUM,
214   OP_CLOSE_DUP_NUM,
215   OP_NON_MATCH_LIST,
216   OP_OPEN_COLL_ELEM,
217   OP_CLOSE_COLL_ELEM,
218   OP_OPEN_EQUIV_CLASS,
219   OP_CLOSE_EQUIV_CLASS,
220   OP_OPEN_CHAR_CLASS,
221   OP_CLOSE_CHAR_CLASS,
222   OP_WORD,
223   OP_NOTWORD,
224   OP_SPACE,
225   OP_NOTSPACE,
226   BACK_SLASH
227
228 } re_token_type_t;
229
230 #ifdef RE_ENABLE_I18N
231 typedef struct
232 {
233   /* Multibyte characters.  */
234   wchar_t *mbchars;
235
236   /* Collating symbols.  */
237 # ifdef _LIBC
238   int32_t *coll_syms;
239 # endif
240
241   /* Equivalence classes. */
242 # ifdef _LIBC
243   int32_t *equiv_classes;
244 # endif
245
246   /* Range expressions. */
247 # ifdef _LIBC
248   uint32_t *range_starts;
249   uint32_t *range_ends;
250 # else /* not _LIBC */
251   wchar_t *range_starts;
252   wchar_t *range_ends;
253 # endif /* not _LIBC */
254
255   /* Character classes. */
256   wctype_t *char_classes;
257
258   /* If this character set is the non-matching list.  */
259   unsigned int non_match : 1;
260
261   /* # of multibyte characters.  */
262   int nmbchars;
263
264   /* # of collating symbols.  */
265   int ncoll_syms;
266
267   /* # of equivalence classes. */
268   int nequiv_classes;
269
270   /* # of range expressions. */
271   int nranges;
272
273   /* # of character classes. */
274   int nchar_classes;
275 } re_charset_t;
276 #endif /* RE_ENABLE_I18N */
277
278 typedef struct
279 {
280   union
281   {
282     unsigned char c;            /* for CHARACTER */
283     re_bitset_ptr_t sbcset;     /* for SIMPLE_BRACKET */
284 #ifdef RE_ENABLE_I18N
285     re_charset_t *mbcset;       /* for COMPLEX_BRACKET */
286 #endif /* RE_ENABLE_I18N */
287     int idx;                    /* for BACK_REF */
288     re_context_type ctx_type;   /* for ANCHOR */
289   } opr;
290 #if __GNUC__ >= 2
291   re_token_type_t type : 8;
292 #else
293   re_token_type_t type;
294 #endif
295   unsigned int constraint : 10; /* context constraint */
296   unsigned int duplicated : 1;
297   unsigned int opt_subexp : 1;
298 #ifdef RE_ENABLE_I18N
299   unsigned int accept_mb : 1;
300   /* These 2 bits can be moved into the union if needed (e.g. if running out
301      of bits; move opr.c to opr.c.c and move the flags to opr.c.flags).  */
302   unsigned int mb_partial : 1;
303 #endif
304   unsigned int word_char : 1;
305 } re_token_t;
306
307 #define IS_EPSILON_NODE(type) ((type) & EPSILON_BIT)
308
309 struct re_string_t
310 {
311   /* Indicate the raw buffer which is the original string passed as an
312      argument of regexec(), re_search(), etc..  */
313   const unsigned char *raw_mbs;
314   /* Store the multibyte string.  In case of "case insensitive mode" like
315      REG_ICASE, upper cases of the string are stored, otherwise MBS points
316      the same address that RAW_MBS points.  */
317   unsigned char *mbs;
318 #ifdef RE_ENABLE_I18N
319   /* Store the wide character string which is corresponding to MBS.  */
320   wint_t *wcs;
321   int *offsets;
322   mbstate_t cur_state;
323 #endif
324   /* Index in RAW_MBS.  Each character mbs[i] corresponds to
325      raw_mbs[raw_mbs_idx + i].  */
326   int raw_mbs_idx;
327   /* The length of the valid characters in the buffers.  */
328   int valid_len;
329   /* The corresponding number of bytes in raw_mbs array.  */
330   int valid_raw_len;
331   /* The length of the buffers MBS and WCS.  */
332   int bufs_len;
333   /* The index in MBS, which is updated by re_string_fetch_byte.  */
334   int cur_idx;
335   /* length of RAW_MBS array.  */
336   int raw_len;
337   /* This is RAW_LEN - RAW_MBS_IDX + VALID_LEN - VALID_RAW_LEN.  */
338   int len;
339   /* End of the buffer may be shorter than its length in the cases such
340      as re_match_2, re_search_2.  Then, we use STOP for end of the buffer
341      instead of LEN.  */
342   int raw_stop;
343   /* This is RAW_STOP - RAW_MBS_IDX adjusted through OFFSETS.  */
344   int stop;
345
346   /* The context of mbs[0].  We store the context independently, since
347      the context of mbs[0] may be different from raw_mbs[0], which is
348      the beginning of the input string.  */
349   unsigned int tip_context;
350   /* The translation passed as a part of an argument of re_compile_pattern.  */
351   unsigned REG_TRANSLATE_TYPE trans;
352   /* Copy of re_dfa_t's word_char.  */
353   re_const_bitset_ptr_t word_char;
354   /* 1 if REG_ICASE.  */
355   unsigned char icase;
356   unsigned char is_utf8;
357   unsigned char map_notascii;
358   unsigned char mbs_allocated;
359   unsigned char offsets_needed;
360   unsigned char newline_anchor;
361   unsigned char word_ops_used;
362   int mb_cur_max;
363 };
364 typedef struct re_string_t re_string_t;
365
366
367 struct re_dfa_t;
368 typedef struct re_dfa_t re_dfa_t;
369
370 #ifndef _LIBC
371 # ifdef __i386__
372 #  define internal_function   __attribute ((regparm (3), stdcall))
373 # else
374 #  define internal_function
375 # endif
376 #endif
377
378 static reg_errcode_t re_string_allocate (re_string_t *pstr, const char *str,
379                                          int len, int init_len,
380                                          REG_TRANSLATE_TYPE trans, int icase,
381                                          const re_dfa_t *dfa)
382      internal_function;
383 static reg_errcode_t re_string_construct (re_string_t *pstr, const char *str,
384                                           int len, REG_TRANSLATE_TYPE trans,
385                                           int icase, const re_dfa_t *dfa)
386      internal_function;
387 static reg_errcode_t re_string_reconstruct (re_string_t *pstr, int idx,
388                                             int eflags) internal_function;
389 static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr,
390                                                 int new_buf_len)
391      internal_function;
392 #ifdef RE_ENABLE_I18N
393 static void build_wcs_buffer (re_string_t *pstr) internal_function;
394 static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr)
395      internal_function;
396 #endif /* RE_ENABLE_I18N */
397 static void build_upper_buffer (re_string_t *pstr) internal_function;
398 static void re_string_translate_buffer (re_string_t *pstr) internal_function;
399 static void re_string_destruct (re_string_t *pstr) internal_function;
400 #ifdef RE_ENABLE_I18N
401 static int re_string_elem_size_at (const re_string_t *pstr, int idx)
402      internal_function __attribute ((pure));
403 static inline int re_string_char_size_at (const re_string_t *pstr, int idx)
404      internal_function __attribute ((pure));
405 static inline wint_t re_string_wchar_at (const re_string_t *pstr, int idx)
406      internal_function __attribute ((pure));
407 #endif /* RE_ENABLE_I18N */
408 static unsigned int re_string_context_at (const re_string_t *input, int idx,
409                                           int eflags)
410      internal_function __attribute ((pure));
411 static unsigned char re_string_peek_byte_case (const re_string_t *pstr,
412                                                int idx)
413      internal_function __attribute ((pure));
414 static unsigned char re_string_fetch_byte_case (re_string_t *pstr)
415      internal_function __attribute ((pure));
416
417 #define re_string_peek_byte(pstr, offset) \
418   ((pstr)->mbs[(pstr)->cur_idx + offset])
419 #define re_string_fetch_byte(pstr) \
420   ((pstr)->mbs[(pstr)->cur_idx++])
421 #define re_string_first_byte(pstr, idx) \
422   ((idx) == (pstr)->valid_len || (pstr)->wcs[idx] != WEOF)
423 #define re_string_is_single_byte_char(pstr, idx) \
424   ((pstr)->wcs[idx] != WEOF && ((pstr)->valid_len == (idx) + 1 \
425                                 || (pstr)->wcs[(idx) + 1] != WEOF))
426 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx)
427 #define re_string_cur_idx(pstr) ((pstr)->cur_idx)
428 #define re_string_get_buffer(pstr) ((pstr)->mbs)
429 #define re_string_length(pstr) ((pstr)->len)
430 #define re_string_byte_at(pstr,idx) ((pstr)->mbs[idx])
431 #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx))
432 #define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
433
434 #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t)))
435 #define re_calloc(t,n) ((t *) calloc (n, sizeof (t)))
436 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t)))
437 #define re_free(p) free (p)
438
439 struct bin_tree_t
440 {
441   struct bin_tree_t *parent;
442   struct bin_tree_t *left;
443   struct bin_tree_t *right;
444   struct bin_tree_t *first;
445   struct bin_tree_t *next;
446
447   re_token_t token;
448
449   /* `node_idx' is the index in dfa->nodes, if `type' == 0.
450      Otherwise `type' indicate the type of this node.  */
451   int node_idx;
452 };
453 typedef struct bin_tree_t bin_tree_t;
454
455 #define BIN_TREE_STORAGE_SIZE \
456   ((1024 - sizeof (void *)) / sizeof (bin_tree_t))
457
458 struct bin_tree_storage_t
459 {
460   struct bin_tree_storage_t *next;
461   bin_tree_t data[BIN_TREE_STORAGE_SIZE];
462 };
463 typedef struct bin_tree_storage_t bin_tree_storage_t;
464
465 #define CONTEXT_WORD 1
466 #define CONTEXT_NEWLINE (CONTEXT_WORD << 1)
467 #define CONTEXT_BEGBUF (CONTEXT_NEWLINE << 1)
468 #define CONTEXT_ENDBUF (CONTEXT_BEGBUF << 1)
469
470 #define IS_WORD_CONTEXT(c) ((c) & CONTEXT_WORD)
471 #define IS_NEWLINE_CONTEXT(c) ((c) & CONTEXT_NEWLINE)
472 #define IS_BEGBUF_CONTEXT(c) ((c) & CONTEXT_BEGBUF)
473 #define IS_ENDBUF_CONTEXT(c) ((c) & CONTEXT_ENDBUF)
474 #define IS_ORDINARY_CONTEXT(c) ((c) == 0)
475
476 #define IS_WORD_CHAR(ch) (isalnum (ch) || (ch) == '_')
477 #define IS_NEWLINE(ch) ((ch) == NEWLINE_CHAR)
478 #define IS_WIDE_WORD_CHAR(ch) (iswalnum (ch) || (ch) == L'_')
479 #define IS_WIDE_NEWLINE(ch) ((ch) == WIDE_NEWLINE_CHAR)
480
481 #define NOT_SATISFY_PREV_CONSTRAINT(constraint,context) \
482  ((((constraint) & PREV_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
483   || ((constraint & PREV_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
484   || ((constraint & PREV_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context))\
485   || ((constraint & PREV_BEGBUF_CONSTRAINT) && !IS_BEGBUF_CONTEXT (context)))
486
487 #define NOT_SATISFY_NEXT_CONSTRAINT(constraint,context) \
488  ((((constraint) & NEXT_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
489   || (((constraint) & NEXT_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
490   || (((constraint) & NEXT_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context)) \
491   || (((constraint) & NEXT_ENDBUF_CONSTRAINT) && !IS_ENDBUF_CONTEXT (context)))
492
493 struct re_dfastate_t
494 {
495   unsigned int hash;
496   re_node_set nodes;
497   re_node_set non_eps_nodes;
498   re_node_set inveclosure;
499   re_node_set *entrance_nodes;
500   struct re_dfastate_t **trtable, **word_trtable;
501   unsigned int context : 4;
502   unsigned int halt : 1;
503   /* If this state can accept `multi byte'.
504      Note that we refer to multibyte characters, and multi character
505      collating elements as `multi byte'.  */
506   unsigned int accept_mb : 1;
507   /* If this state has backreference node(s).  */
508   unsigned int has_backref : 1;
509   unsigned int has_constraint : 1;
510 };
511 typedef struct re_dfastate_t re_dfastate_t;
512
513 struct re_state_table_entry
514 {
515   int num;
516   int alloc;
517   re_dfastate_t **array;
518 };
519
520 /* Array type used in re_sub_match_last_t and re_sub_match_top_t.  */
521
522 typedef struct
523 {
524   int next_idx;
525   int alloc;
526   re_dfastate_t **array;
527 } state_array_t;
528
529 /* Store information about the node NODE whose type is OP_CLOSE_SUBEXP.  */
530
531 typedef struct
532 {
533   int node;
534   int str_idx; /* The position NODE match at.  */
535   state_array_t path;
536 } re_sub_match_last_t;
537
538 /* Store information about the node NODE whose type is OP_OPEN_SUBEXP.
539    And information about the node, whose type is OP_CLOSE_SUBEXP,
540    corresponding to NODE is stored in LASTS.  */
541
542 typedef struct
543 {
544   int str_idx;
545   int node;
546   int next_last_offset;
547   state_array_t *path;
548   int alasts; /* Allocation size of LASTS.  */
549   int nlasts; /* The number of LASTS.  */
550   re_sub_match_last_t **lasts;
551 } re_sub_match_top_t;
552
553 struct re_backref_cache_entry
554 {
555   int node;
556   int str_idx;
557   int subexp_from;
558   int subexp_to;
559   char more;
560   char unused;
561   unsigned short int eps_reachable_subexps_map;
562 };
563
564 typedef struct
565 {
566   /* The string object corresponding to the input string.  */
567   re_string_t input;
568 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
569   re_dfa_t *const dfa;
570 #else
571   re_dfa_t *dfa;
572 #endif
573   /* EFLAGS of the argument of regexec.  */
574   int eflags;
575   /* Where the matching ends.  */
576   int match_last;
577   int last_node;
578   /* The state log used by the matcher.  */
579   re_dfastate_t **state_log;
580   int state_log_top;
581   /* Back reference cache.  */
582   int nbkref_ents;
583   int abkref_ents;
584   struct re_backref_cache_entry *bkref_ents;
585   int max_mb_elem_len;
586   int nsub_tops;
587   int asub_tops;
588   re_sub_match_top_t **sub_tops;
589 } re_match_context_t;
590
591 typedef struct
592 {
593   re_dfastate_t **sifted_states;
594   re_dfastate_t **limited_states;
595   int last_node;
596   int last_str_idx;
597   re_node_set limits;
598 } re_sift_context_t;
599
600 struct re_fail_stack_ent_t
601 {
602   int idx;
603   int node;
604   regmatch_t *regs;
605   re_node_set eps_via_nodes;
606 };
607
608 struct re_fail_stack_t
609 {
610   int num;
611   int alloc;
612   struct re_fail_stack_ent_t *stack;
613 };
614
615 struct re_dfa_t
616 {
617   re_token_t *nodes;
618   int nodes_alloc;
619   int nodes_len;
620   int *nexts;
621   int *org_indices;
622   re_node_set *edests;
623   re_node_set *eclosures;
624   re_node_set *inveclosures;
625   struct re_state_table_entry *state_table;
626   re_dfastate_t *init_state;
627   re_dfastate_t *init_state_word;
628   re_dfastate_t *init_state_nl;
629   re_dfastate_t *init_state_begbuf;
630   bin_tree_t *str_tree;
631   bin_tree_storage_t *str_tree_storage;
632   re_bitset_ptr_t sb_char;
633   int str_tree_storage_idx;
634
635   /* number of subexpressions `re_nsub' is in regex_t.  */
636   unsigned int state_hash_mask;
637   int states_alloc;
638   int init_node;
639   int nbackref; /* The number of backreference in this dfa.  */
640
641   /* Bitmap expressing which backreference is used.  */
642   unsigned int used_bkref_map;
643   unsigned int completed_bkref_map;
644
645   unsigned int has_plural_match : 1;
646   /* If this dfa has "multibyte node", which is a backreference or
647      a node which can accept multibyte character or multi character
648      collating element.  */
649   unsigned int has_mb_node : 1;
650   unsigned int is_utf8 : 1;
651   unsigned int map_notascii : 1;
652   unsigned int word_ops_used : 1;
653   int mb_cur_max;
654   bitset word_char;
655   reg_syntax_t syntax;
656   int *subexp_map;
657 #ifdef DEBUG
658   char* re_str;
659 #endif
660   __libc_lock_define (, lock)
661 };
662
663 #ifndef RE_NO_INTERNAL_PROTOTYPES
664 static reg_errcode_t re_node_set_alloc (re_node_set *set, int size) internal_function;
665 static reg_errcode_t re_node_set_init_1 (re_node_set *set, int elem) internal_function;
666 static reg_errcode_t re_node_set_init_2 (re_node_set *set, int elem1,
667                                          int elem2) internal_function;
668 #define re_node_set_init_empty(set) memset (set, '\0', sizeof (re_node_set))
669 static reg_errcode_t re_node_set_init_copy (re_node_set *dest,
670                                             const re_node_set *src) internal_function;
671 static reg_errcode_t re_node_set_add_intersect (re_node_set *dest,
672                                                 const re_node_set *src1,
673                                                 const re_node_set *src2) internal_function;
674 static reg_errcode_t re_node_set_init_union (re_node_set *dest,
675                                              const re_node_set *src1,
676                                              const re_node_set *src2) internal_function;
677 static reg_errcode_t re_node_set_merge (re_node_set *dest,
678                                         const re_node_set *src) internal_function;
679 static int re_node_set_insert (re_node_set *set, int elem) internal_function;
680 static int re_node_set_insert_last (re_node_set *set,
681                                     int elem) internal_function;
682 static int re_node_set_compare (const re_node_set *set1,
683                                 const re_node_set *set2)
684      internal_function __attribute ((pure));
685 static int re_node_set_contains (const re_node_set *set, int elem)
686      internal_function __attribute ((pure));
687 static void re_node_set_remove_at (re_node_set *set, int idx) internal_function;
688 #define re_node_set_remove(set,id) \
689   (re_node_set_remove_at (set, re_node_set_contains (set, id) - 1))
690 #define re_node_set_empty(p) ((p)->nelem = 0)
691 #define re_node_set_free(set) re_free ((set)->elems)
692 static int re_dfa_add_node (re_dfa_t *dfa, re_token_t token) internal_function;
693 static re_dfastate_t *re_acquire_state (reg_errcode_t *err, re_dfa_t *dfa,
694                                         const re_node_set *nodes) internal_function;
695 static re_dfastate_t *re_acquire_state_context (reg_errcode_t *err,
696                                                 re_dfa_t *dfa,
697                                                 const re_node_set *nodes,
698                                                 unsigned int context) internal_function;
699 static void free_state (re_dfastate_t *state) internal_function;
700 #endif
701 \f
702
703 typedef enum
704 {
705   SB_CHAR,
706   MB_CHAR,
707   EQUIV_CLASS,
708   COLL_SYM,
709   CHAR_CLASS
710 } bracket_elem_type;
711
712 typedef struct
713 {
714   bracket_elem_type type;
715   union
716   {
717     unsigned char ch;
718     unsigned char *name;
719     wchar_t wch;
720   } opr;
721 } bracket_elem_t;
722
723
724 /* Inline functions for bitset operation.  */
725 static inline void
726 bitset_not (bitset set)
727 {
728   int bitset_i;
729   for (bitset_i = 0; bitset_i < BITSET_UINTS; ++bitset_i)
730     set[bitset_i] = ~set[bitset_i];
731 }
732
733 static inline void
734 bitset_merge (bitset dest, const bitset src)
735 {
736   int bitset_i;
737   for (bitset_i = 0; bitset_i < BITSET_UINTS; ++bitset_i)
738     dest[bitset_i] |= src[bitset_i];
739 }
740
741 static inline void
742 bitset_not_merge (bitset dest, const bitset src)
743 {
744   int i;
745   for (i = 0; i < BITSET_UINTS; ++i)
746     dest[i] |= ~src[i];
747 }
748
749 static inline void
750 bitset_mask (bitset dest, const bitset src)
751 {
752   int bitset_i;
753   for (bitset_i = 0; bitset_i < BITSET_UINTS; ++bitset_i)
754     dest[bitset_i] &= src[bitset_i];
755 }
756
757 #if defined RE_ENABLE_I18N && !defined RE_NO_INTERNAL_PROTOTYPES
758 /* Inline functions for re_string.  */
759 static inline int
760 internal_function
761 re_string_char_size_at (const re_string_t *pstr, int idx)
762 {
763   int byte_idx;
764   if (pstr->mb_cur_max == 1)
765     return 1;
766   for (byte_idx = 1; idx + byte_idx < pstr->valid_len; ++byte_idx)
767     if (pstr->wcs[idx + byte_idx] != WEOF)
768       break;
769   return byte_idx;
770 }
771
772 static inline wint_t
773 internal_function
774 re_string_wchar_at (const re_string_t *pstr, int idx)
775 {
776   if (pstr->mb_cur_max == 1)
777     return (wint_t) pstr->mbs[idx];
778   return (wint_t) pstr->wcs[idx];
779 }
780
781 static int
782 internal_function
783 re_string_elem_size_at (const re_string_t *pstr, int idx)
784 {
785 #ifdef _LIBC
786   const unsigned char *p, *extra;
787   const int32_t *table, *indirect;
788   int32_t tmp;
789 # include <locale/weight.h>
790   uint_fast32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
791
792   if (nrules != 0)
793     {
794       table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
795       extra = (const unsigned char *)
796         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
797       indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
798                                                 _NL_COLLATE_INDIRECTMB);
799       p = pstr->mbs + idx;
800       tmp = findidx (&p);
801       return p - pstr->mbs - idx;
802     }
803   else
804 #endif /* _LIBC */
805     return 1;
806 }
807 #endif /* RE_ENABLE_I18N */
808
809 #endif /*  _REGEX_INTERNAL_H */