Vendor branch: upgrade grep from 2.20 => 2.22
[dragonfly.git] / contrib / grep / lib / regex_internal.h
1 /* Extended regular expression matching and search library.
2    Copyright (C) 2002-2015 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 #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 #include <langinfo.h>
30 #include <locale.h>
31 #include <wchar.h>
32 #include <wctype.h>
33 #include <stdbool.h>
34 #include <stdint.h>
35
36 #ifdef _LIBC
37 # include <libc-lock.h>
38 # define lock_define(name) __libc_lock_define (, name)
39 # define lock_init(lock) (__libc_lock_init (lock), 0)
40 # define lock_fini(lock) 0
41 # define lock_lock(lock) __libc_lock_lock (lock)
42 # define lock_unlock(lock) __libc_lock_unlock (lock)
43 #elif defined GNULIB_LOCK && !defined USE_UNLOCKED_IO
44 # include "glthread/lock.h"
45   /* Use gl_lock_define if empty macro arguments are known to work.
46      Otherwise, fall back on less-portable substitutes.  */
47 # if ((defined __GNUC__ && !defined __STRICT_ANSI__) \
48       || (defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__))
49 #  define lock_define(name) gl_lock_define (, name)
50 # elif USE_POSIX_THREADS
51 #  define lock_define(name) pthread_mutex_t name;
52 # elif USE_PTH_THREADS
53 #  define lock_define(name) pth_mutex_t name;
54 # elif USE_SOLARIS_THREADS
55 #  define lock_define(name) mutex_t name;
56 # elif USE_WINDOWS_THREADS
57 #  define lock_define(name) gl_lock_t name;
58 # else
59 #  define lock_define(name)
60 # endif
61 # define lock_init(lock) glthread_lock_init (&(lock))
62 # define lock_fini(lock) glthread_lock_destroy (&(lock))
63 # define lock_lock(lock) glthread_lock_lock (&(lock))
64 # define lock_unlock(lock) glthread_lock_unlock (&(lock))
65 #elif defined GNULIB_PTHREAD && !defined USE_UNLOCKED_IO
66 # include <pthread.h>
67 # define lock_define(name) pthread_mutex_t name;
68 # define lock_init(lock) pthread_mutex_init (&(lock), 0)
69 # define lock_fini(lock) pthread_mutex_destroy (&(lock))
70 # define lock_lock(lock) pthread_mutex_lock (&(lock))
71 # define lock_unlock(lock) pthread_mutex_unlock (&(lock))
72 #else
73 # define lock_define(name)
74 # define lock_init(lock) 0
75 # define lock_fini(lock) ((void) 0)
76   /* The 'dfa' avoids an "unused variable 'dfa'" warning from GCC.  */
77 # define lock_lock(lock) ((void) dfa)
78 # define lock_unlock(lock) ((void) 0)
79 #endif
80
81 /* In case that the system doesn't have isblank().  */
82 #if !defined _LIBC && ! (defined isblank || (HAVE_ISBLANK && HAVE_DECL_ISBLANK))
83 # define isblank(ch) ((ch) == ' ' || (ch) == '\t')
84 #endif
85
86 #ifdef _LIBC
87 # ifndef _RE_DEFINE_LOCALE_FUNCTIONS
88 #  define _RE_DEFINE_LOCALE_FUNCTIONS 1
89 #   include <locale/localeinfo.h>
90 #   include <locale/coll-lookup.h>
91 # endif
92 #endif
93
94 /* This is for other GNU distributions with internationalized messages.  */
95 #if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
96 # include <libintl.h>
97 # ifdef _LIBC
98 #  undef gettext
99 #  define gettext(msgid) \
100   __dcgettext (_libc_intl_domainname, msgid, LC_MESSAGES)
101 # endif
102 #else
103 # define gettext(msgid) (msgid)
104 #endif
105
106 #ifndef gettext_noop
107 /* This define is so xgettext can find the internationalizable
108    strings.  */
109 # define gettext_noop(String) String
110 #endif
111
112 #if (defined MB_CUR_MAX && HAVE_WCTYPE_H && HAVE_ISWCTYPE) || _LIBC
113 # define RE_ENABLE_I18N
114 #endif
115
116 #if __GNUC__ >= 3
117 # define BE(expr, val) __builtin_expect (expr, val)
118 #else
119 # define BE(expr, val) (expr)
120 #endif
121
122 /* Number of ASCII characters.  */
123 #define ASCII_CHARS 0x80
124
125 /* Number of single byte characters.  */
126 #define SBC_MAX (UCHAR_MAX + 1)
127
128 #define COLL_ELEM_LEN_MAX 8
129
130 /* The character which represents newline.  */
131 #define NEWLINE_CHAR '\n'
132 #define WIDE_NEWLINE_CHAR L'\n'
133
134 /* Rename to standard API for using out of glibc.  */
135 #ifndef _LIBC
136 # undef __wctype
137 # undef __iswctype
138 # define __wctype wctype
139 # define __iswalnum iswalnum
140 # define __iswctype iswctype
141 # define __towlower towlower
142 # define __towupper towupper
143 # define __btowc btowc
144 # define __mbrtowc mbrtowc
145 # define __wcrtomb wcrtomb
146 # define __regfree regfree
147 # define attribute_hidden
148 #endif /* not _LIBC */
149
150 #if __GNUC__ < 3 + (__GNUC_MINOR__ < 1)
151 # define __attribute__(arg)
152 #endif
153
154 typedef __re_idx_t Idx;
155 #ifdef _REGEX_LARGE_OFFSETS
156 # define IDX_MAX (SIZE_MAX - 2)
157 #else
158 # define IDX_MAX INT_MAX
159 #endif
160
161 /* Special return value for failure to match.  */
162 #define REG_MISSING ((Idx) -1)
163
164 /* Special return value for internal error.  */
165 #define REG_ERROR ((Idx) -2)
166
167 /* Test whether N is a valid index, and is not one of the above.  */
168 #ifdef _REGEX_LARGE_OFFSETS
169 # define REG_VALID_INDEX(n) ((Idx) (n) < REG_ERROR)
170 #else
171 # define REG_VALID_INDEX(n) (0 <= (n))
172 #endif
173
174 /* Test whether N is a valid nonzero index.  */
175 #ifdef _REGEX_LARGE_OFFSETS
176 # define REG_VALID_NONZERO_INDEX(n) ((Idx) ((n) - 1) < (Idx) (REG_ERROR - 1))
177 #else
178 # define REG_VALID_NONZERO_INDEX(n) (0 < (n))
179 #endif
180
181 /* A hash value, suitable for computing hash tables.  */
182 typedef __re_size_t re_hashval_t;
183
184 /* An integer used to represent a set of bits.  It must be unsigned,
185    and must be at least as wide as unsigned int.  */
186 typedef unsigned long int bitset_word_t;
187 /* All bits set in a bitset_word_t.  */
188 #define BITSET_WORD_MAX ULONG_MAX
189
190 /* Number of bits in a bitset_word_t.  For portability to hosts with
191    padding bits, do not use '(sizeof (bitset_word_t) * CHAR_BIT)';
192    instead, deduce it directly from BITSET_WORD_MAX.  Avoid
193    greater-than-32-bit integers and unconditional shifts by more than
194    31 bits, as they're not portable.  */
195 #if BITSET_WORD_MAX == 0xffffffffUL
196 # define BITSET_WORD_BITS 32
197 #elif BITSET_WORD_MAX >> 31 >> 4 == 1
198 # define BITSET_WORD_BITS 36
199 #elif BITSET_WORD_MAX >> 31 >> 16 == 1
200 # define BITSET_WORD_BITS 48
201 #elif BITSET_WORD_MAX >> 31 >> 28 == 1
202 # define BITSET_WORD_BITS 60
203 #elif BITSET_WORD_MAX >> 31 >> 31 >> 1 == 1
204 # define BITSET_WORD_BITS 64
205 #elif BITSET_WORD_MAX >> 31 >> 31 >> 9 == 1
206 # define BITSET_WORD_BITS 72
207 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 3 == 1
208 # define BITSET_WORD_BITS 128
209 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 7 == 1
210 # define BITSET_WORD_BITS 256
211 #elif BITSET_WORD_MAX >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 31 >> 7 > 1
212 # define BITSET_WORD_BITS 257 /* any value > SBC_MAX will do here */
213 # if BITSET_WORD_BITS <= SBC_MAX
214 #  error "Invalid SBC_MAX"
215 # endif
216 #else
217 # error "Add case for new bitset_word_t size"
218 #endif
219
220 /* Number of bitset_word_t values in a bitset_t.  */
221 #define BITSET_WORDS ((SBC_MAX + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS)
222
223 typedef bitset_word_t bitset_t[BITSET_WORDS];
224 typedef bitset_word_t *re_bitset_ptr_t;
225 typedef const bitset_word_t *re_const_bitset_ptr_t;
226
227 #define PREV_WORD_CONSTRAINT 0x0001
228 #define PREV_NOTWORD_CONSTRAINT 0x0002
229 #define NEXT_WORD_CONSTRAINT 0x0004
230 #define NEXT_NOTWORD_CONSTRAINT 0x0008
231 #define PREV_NEWLINE_CONSTRAINT 0x0010
232 #define NEXT_NEWLINE_CONSTRAINT 0x0020
233 #define PREV_BEGBUF_CONSTRAINT 0x0040
234 #define NEXT_ENDBUF_CONSTRAINT 0x0080
235 #define WORD_DELIM_CONSTRAINT 0x0100
236 #define NOT_WORD_DELIM_CONSTRAINT 0x0200
237
238 typedef enum
239 {
240   INSIDE_WORD = PREV_WORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
241   WORD_FIRST = PREV_NOTWORD_CONSTRAINT | NEXT_WORD_CONSTRAINT,
242   WORD_LAST = PREV_WORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
243   INSIDE_NOTWORD = PREV_NOTWORD_CONSTRAINT | NEXT_NOTWORD_CONSTRAINT,
244   LINE_FIRST = PREV_NEWLINE_CONSTRAINT,
245   LINE_LAST = NEXT_NEWLINE_CONSTRAINT,
246   BUF_FIRST = PREV_BEGBUF_CONSTRAINT,
247   BUF_LAST = NEXT_ENDBUF_CONSTRAINT,
248   WORD_DELIM = WORD_DELIM_CONSTRAINT,
249   NOT_WORD_DELIM = NOT_WORD_DELIM_CONSTRAINT
250 } re_context_type;
251
252 typedef struct
253 {
254   Idx alloc;
255   Idx nelem;
256   Idx *elems;
257 } re_node_set;
258
259 typedef enum
260 {
261   NON_TYPE = 0,
262
263   /* Node type, These are used by token, node, tree.  */
264   CHARACTER = 1,
265   END_OF_RE = 2,
266   SIMPLE_BRACKET = 3,
267   OP_BACK_REF = 4,
268   OP_PERIOD = 5,
269 #ifdef RE_ENABLE_I18N
270   COMPLEX_BRACKET = 6,
271   OP_UTF8_PERIOD = 7,
272 #endif /* RE_ENABLE_I18N */
273
274   /* We define EPSILON_BIT as a macro so that OP_OPEN_SUBEXP is used
275      when the debugger shows values of this enum type.  */
276 #define EPSILON_BIT 8
277   OP_OPEN_SUBEXP = EPSILON_BIT | 0,
278   OP_CLOSE_SUBEXP = EPSILON_BIT | 1,
279   OP_ALT = EPSILON_BIT | 2,
280   OP_DUP_ASTERISK = EPSILON_BIT | 3,
281   ANCHOR = EPSILON_BIT | 4,
282
283   /* Tree type, these are used only by tree. */
284   CONCAT = 16,
285   SUBEXP = 17,
286
287   /* Token type, these are used only by token.  */
288   OP_DUP_PLUS = 18,
289   OP_DUP_QUESTION,
290   OP_OPEN_BRACKET,
291   OP_CLOSE_BRACKET,
292   OP_CHARSET_RANGE,
293   OP_OPEN_DUP_NUM,
294   OP_CLOSE_DUP_NUM,
295   OP_NON_MATCH_LIST,
296   OP_OPEN_COLL_ELEM,
297   OP_CLOSE_COLL_ELEM,
298   OP_OPEN_EQUIV_CLASS,
299   OP_CLOSE_EQUIV_CLASS,
300   OP_OPEN_CHAR_CLASS,
301   OP_CLOSE_CHAR_CLASS,
302   OP_WORD,
303   OP_NOTWORD,
304   OP_SPACE,
305   OP_NOTSPACE,
306   BACK_SLASH
307
308 } re_token_type_t;
309
310 #ifdef RE_ENABLE_I18N
311 typedef struct
312 {
313   /* Multibyte characters.  */
314   wchar_t *mbchars;
315
316   /* Collating symbols.  */
317 # ifdef _LIBC
318   int32_t *coll_syms;
319 # endif
320
321   /* Equivalence classes. */
322 # ifdef _LIBC
323   int32_t *equiv_classes;
324 # endif
325
326   /* Range expressions. */
327 # ifdef _LIBC
328   uint32_t *range_starts;
329   uint32_t *range_ends;
330 # else /* not _LIBC */
331   wchar_t *range_starts;
332   wchar_t *range_ends;
333 # endif /* not _LIBC */
334
335   /* Character classes. */
336   wctype_t *char_classes;
337
338   /* If this character set is the non-matching list.  */
339   unsigned int non_match : 1;
340
341   /* # of multibyte characters.  */
342   Idx nmbchars;
343
344   /* # of collating symbols.  */
345   Idx ncoll_syms;
346
347   /* # of equivalence classes. */
348   Idx nequiv_classes;
349
350   /* # of range expressions. */
351   Idx nranges;
352
353   /* # of character classes. */
354   Idx nchar_classes;
355 } re_charset_t;
356 #endif /* RE_ENABLE_I18N */
357
358 typedef struct
359 {
360   union
361   {
362     unsigned char c;            /* for CHARACTER */
363     re_bitset_ptr_t sbcset;     /* for SIMPLE_BRACKET */
364 #ifdef RE_ENABLE_I18N
365     re_charset_t *mbcset;       /* for COMPLEX_BRACKET */
366 #endif /* RE_ENABLE_I18N */
367     Idx idx;                    /* for BACK_REF */
368     re_context_type ctx_type;   /* for ANCHOR */
369   } opr;
370 #if __GNUC__ >= 2 && !defined __STRICT_ANSI__
371   re_token_type_t type : 8;
372 #else
373   re_token_type_t type;
374 #endif
375   unsigned int constraint : 10; /* context constraint */
376   unsigned int duplicated : 1;
377   unsigned int opt_subexp : 1;
378 #ifdef RE_ENABLE_I18N
379   unsigned int accept_mb : 1;
380   /* These 2 bits can be moved into the union if needed (e.g. if running out
381      of bits; move opr.c to opr.c.c and move the flags to opr.c.flags).  */
382   unsigned int mb_partial : 1;
383 #endif
384   unsigned int word_char : 1;
385 } re_token_t;
386
387 #define IS_EPSILON_NODE(type) ((type) & EPSILON_BIT)
388
389 struct re_string_t
390 {
391   /* Indicate the raw buffer which is the original string passed as an
392      argument of regexec(), re_search(), etc..  */
393   const unsigned char *raw_mbs;
394   /* Store the multibyte string.  In case of "case insensitive mode" like
395      REG_ICASE, upper cases of the string are stored, otherwise MBS points
396      the same address that RAW_MBS points.  */
397   unsigned char *mbs;
398 #ifdef RE_ENABLE_I18N
399   /* Store the wide character string which is corresponding to MBS.  */
400   wint_t *wcs;
401   Idx *offsets;
402   mbstate_t cur_state;
403 #endif
404   /* Index in RAW_MBS.  Each character mbs[i] corresponds to
405      raw_mbs[raw_mbs_idx + i].  */
406   Idx raw_mbs_idx;
407   /* The length of the valid characters in the buffers.  */
408   Idx valid_len;
409   /* The corresponding number of bytes in raw_mbs array.  */
410   Idx valid_raw_len;
411   /* The length of the buffers MBS and WCS.  */
412   Idx bufs_len;
413   /* The index in MBS, which is updated by re_string_fetch_byte.  */
414   Idx cur_idx;
415   /* length of RAW_MBS array.  */
416   Idx raw_len;
417   /* This is RAW_LEN - RAW_MBS_IDX + VALID_LEN - VALID_RAW_LEN.  */
418   Idx len;
419   /* End of the buffer may be shorter than its length in the cases such
420      as re_match_2, re_search_2.  Then, we use STOP for end of the buffer
421      instead of LEN.  */
422   Idx raw_stop;
423   /* This is RAW_STOP - RAW_MBS_IDX adjusted through OFFSETS.  */
424   Idx stop;
425
426   /* The context of mbs[0].  We store the context independently, since
427      the context of mbs[0] may be different from raw_mbs[0], which is
428      the beginning of the input string.  */
429   unsigned int tip_context;
430   /* The translation passed as a part of an argument of re_compile_pattern.  */
431   RE_TRANSLATE_TYPE trans;
432   /* Copy of re_dfa_t's word_char.  */
433   re_const_bitset_ptr_t word_char;
434   /* true if REG_ICASE.  */
435   unsigned char icase;
436   unsigned char is_utf8;
437   unsigned char map_notascii;
438   unsigned char mbs_allocated;
439   unsigned char offsets_needed;
440   unsigned char newline_anchor;
441   unsigned char word_ops_used;
442   int mb_cur_max;
443 };
444 typedef struct re_string_t re_string_t;
445
446
447 struct re_dfa_t;
448 typedef struct re_dfa_t re_dfa_t;
449
450 #ifndef _LIBC
451 # define internal_function
452 # define IS_IN(libc) false
453 #endif
454
455 static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr,
456                                                 Idx new_buf_len)
457      internal_function;
458 #ifdef RE_ENABLE_I18N
459 static void build_wcs_buffer (re_string_t *pstr) internal_function;
460 static reg_errcode_t build_wcs_upper_buffer (re_string_t *pstr)
461   internal_function;
462 #endif /* RE_ENABLE_I18N */
463 static void build_upper_buffer (re_string_t *pstr) internal_function;
464 static void re_string_translate_buffer (re_string_t *pstr) internal_function;
465 static unsigned int re_string_context_at (const re_string_t *input, Idx idx,
466                                           int eflags)
467      internal_function __attribute__ ((pure));
468
469 #define re_string_peek_byte(pstr, offset) \
470   ((pstr)->mbs[(pstr)->cur_idx + offset])
471 #define re_string_fetch_byte(pstr) \
472   ((pstr)->mbs[(pstr)->cur_idx++])
473 #define re_string_first_byte(pstr, idx) \
474   ((idx) == (pstr)->valid_len || (pstr)->wcs[idx] != WEOF)
475 #define re_string_is_single_byte_char(pstr, idx) \
476   ((pstr)->wcs[idx] != WEOF && ((pstr)->valid_len == (idx) + 1 \
477                                 || (pstr)->wcs[(idx) + 1] != WEOF))
478 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx)
479 #define re_string_cur_idx(pstr) ((pstr)->cur_idx)
480 #define re_string_get_buffer(pstr) ((pstr)->mbs)
481 #define re_string_length(pstr) ((pstr)->len)
482 #define re_string_byte_at(pstr,idx) ((pstr)->mbs[idx])
483 #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx))
484 #define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
485
486 #if defined _LIBC || HAVE_ALLOCA
487 # include <alloca.h>
488 #endif
489
490 #ifndef _LIBC
491 # if HAVE_ALLOCA
492 /* The OS usually guarantees only one guard page at the bottom of the stack,
493    and a page size can be as small as 4096 bytes.  So we cannot safely
494    allocate anything larger than 4096 bytes.  Also care for the possibility
495    of a few compiler-allocated temporary stack slots.  */
496 #  define __libc_use_alloca(n) ((n) < 4032)
497 # else
498 /* alloca is implemented with malloc, so just use malloc.  */
499 #  define __libc_use_alloca(n) 0
500 #  undef alloca
501 #  define alloca(n) malloc (n)
502 # endif
503 #endif
504
505 #ifdef _LIBC
506 # define MALLOC_0_IS_NONNULL 1
507 #elif !defined MALLOC_0_IS_NONNULL
508 # define MALLOC_0_IS_NONNULL 0
509 #endif
510
511 #ifndef MAX
512 # define MAX(a,b) ((a) < (b) ? (b) : (a))
513 #endif
514 #ifndef MIN
515 # define MIN(a,b) ((a) < (b) ? (a) : (b))
516 #endif
517
518 #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t)))
519 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t)))
520 #define re_free(p) free (p)
521
522 struct bin_tree_t
523 {
524   struct bin_tree_t *parent;
525   struct bin_tree_t *left;
526   struct bin_tree_t *right;
527   struct bin_tree_t *first;
528   struct bin_tree_t *next;
529
530   re_token_t token;
531
532   /* 'node_idx' is the index in dfa->nodes, if 'type' == 0.
533      Otherwise 'type' indicate the type of this node.  */
534   Idx node_idx;
535 };
536 typedef struct bin_tree_t bin_tree_t;
537
538 #define BIN_TREE_STORAGE_SIZE \
539   ((1024 - sizeof (void *)) / sizeof (bin_tree_t))
540
541 struct bin_tree_storage_t
542 {
543   struct bin_tree_storage_t *next;
544   bin_tree_t data[BIN_TREE_STORAGE_SIZE];
545 };
546 typedef struct bin_tree_storage_t bin_tree_storage_t;
547
548 #define CONTEXT_WORD 1
549 #define CONTEXT_NEWLINE (CONTEXT_WORD << 1)
550 #define CONTEXT_BEGBUF (CONTEXT_NEWLINE << 1)
551 #define CONTEXT_ENDBUF (CONTEXT_BEGBUF << 1)
552
553 #define IS_WORD_CONTEXT(c) ((c) & CONTEXT_WORD)
554 #define IS_NEWLINE_CONTEXT(c) ((c) & CONTEXT_NEWLINE)
555 #define IS_BEGBUF_CONTEXT(c) ((c) & CONTEXT_BEGBUF)
556 #define IS_ENDBUF_CONTEXT(c) ((c) & CONTEXT_ENDBUF)
557 #define IS_ORDINARY_CONTEXT(c) ((c) == 0)
558
559 #define IS_WORD_CHAR(ch) (isalnum (ch) || (ch) == '_')
560 #define IS_NEWLINE(ch) ((ch) == NEWLINE_CHAR)
561 #define IS_WIDE_WORD_CHAR(ch) (__iswalnum (ch) || (ch) == L'_')
562 #define IS_WIDE_NEWLINE(ch) ((ch) == WIDE_NEWLINE_CHAR)
563
564 #define NOT_SATISFY_PREV_CONSTRAINT(constraint,context) \
565  ((((constraint) & PREV_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
566   || ((constraint & PREV_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
567   || ((constraint & PREV_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context))\
568   || ((constraint & PREV_BEGBUF_CONSTRAINT) && !IS_BEGBUF_CONTEXT (context)))
569
570 #define NOT_SATISFY_NEXT_CONSTRAINT(constraint,context) \
571  ((((constraint) & NEXT_WORD_CONSTRAINT) && !IS_WORD_CONTEXT (context)) \
572   || (((constraint) & NEXT_NOTWORD_CONSTRAINT) && IS_WORD_CONTEXT (context)) \
573   || (((constraint) & NEXT_NEWLINE_CONSTRAINT) && !IS_NEWLINE_CONTEXT (context)) \
574   || (((constraint) & NEXT_ENDBUF_CONSTRAINT) && !IS_ENDBUF_CONTEXT (context)))
575
576 struct re_dfastate_t
577 {
578   re_hashval_t hash;
579   re_node_set nodes;
580   re_node_set non_eps_nodes;
581   re_node_set inveclosure;
582   re_node_set *entrance_nodes;
583   struct re_dfastate_t **trtable, **word_trtable;
584   unsigned int context : 4;
585   unsigned int halt : 1;
586   /* If this state can accept "multi byte".
587      Note that we refer to multibyte characters, and multi character
588      collating elements as "multi byte".  */
589   unsigned int accept_mb : 1;
590   /* If this state has backreference node(s).  */
591   unsigned int has_backref : 1;
592   unsigned int has_constraint : 1;
593 };
594 typedef struct re_dfastate_t re_dfastate_t;
595
596 struct re_state_table_entry
597 {
598   Idx num;
599   Idx alloc;
600   re_dfastate_t **array;
601 };
602
603 /* Array type used in re_sub_match_last_t and re_sub_match_top_t.  */
604
605 typedef struct
606 {
607   Idx next_idx;
608   Idx alloc;
609   re_dfastate_t **array;
610 } state_array_t;
611
612 /* Store information about the node NODE whose type is OP_CLOSE_SUBEXP.  */
613
614 typedef struct
615 {
616   Idx node;
617   Idx str_idx; /* The position NODE match at.  */
618   state_array_t path;
619 } re_sub_match_last_t;
620
621 /* Store information about the node NODE whose type is OP_OPEN_SUBEXP.
622    And information about the node, whose type is OP_CLOSE_SUBEXP,
623    corresponding to NODE is stored in LASTS.  */
624
625 typedef struct
626 {
627   Idx str_idx;
628   Idx node;
629   state_array_t *path;
630   Idx alasts; /* Allocation size of LASTS.  */
631   Idx nlasts; /* The number of LASTS.  */
632   re_sub_match_last_t **lasts;
633 } re_sub_match_top_t;
634
635 struct re_backref_cache_entry
636 {
637   Idx node;
638   Idx str_idx;
639   Idx subexp_from;
640   Idx subexp_to;
641   char more;
642   char unused;
643   unsigned short int eps_reachable_subexps_map;
644 };
645
646 typedef struct
647 {
648   /* The string object corresponding to the input string.  */
649   re_string_t input;
650 #if defined _LIBC || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
651   const re_dfa_t *const dfa;
652 #else
653   const re_dfa_t *dfa;
654 #endif
655   /* EFLAGS of the argument of regexec.  */
656   int eflags;
657   /* Where the matching ends.  */
658   Idx match_last;
659   Idx last_node;
660   /* The state log used by the matcher.  */
661   re_dfastate_t **state_log;
662   Idx state_log_top;
663   /* Back reference cache.  */
664   Idx nbkref_ents;
665   Idx abkref_ents;
666   struct re_backref_cache_entry *bkref_ents;
667   int max_mb_elem_len;
668   Idx nsub_tops;
669   Idx asub_tops;
670   re_sub_match_top_t **sub_tops;
671 } re_match_context_t;
672
673 typedef struct
674 {
675   re_dfastate_t **sifted_states;
676   re_dfastate_t **limited_states;
677   Idx last_node;
678   Idx last_str_idx;
679   re_node_set limits;
680 } re_sift_context_t;
681
682 struct re_fail_stack_ent_t
683 {
684   Idx idx;
685   Idx node;
686   regmatch_t *regs;
687   re_node_set eps_via_nodes;
688 };
689
690 struct re_fail_stack_t
691 {
692   Idx num;
693   Idx alloc;
694   struct re_fail_stack_ent_t *stack;
695 };
696
697 struct re_dfa_t
698 {
699   re_token_t *nodes;
700   size_t nodes_alloc;
701   size_t nodes_len;
702   Idx *nexts;
703   Idx *org_indices;
704   re_node_set *edests;
705   re_node_set *eclosures;
706   re_node_set *inveclosures;
707   struct re_state_table_entry *state_table;
708   re_dfastate_t *init_state;
709   re_dfastate_t *init_state_word;
710   re_dfastate_t *init_state_nl;
711   re_dfastate_t *init_state_begbuf;
712   bin_tree_t *str_tree;
713   bin_tree_storage_t *str_tree_storage;
714   re_bitset_ptr_t sb_char;
715   int str_tree_storage_idx;
716
717   /* number of subexpressions 're_nsub' is in regex_t.  */
718   re_hashval_t state_hash_mask;
719   Idx init_node;
720   Idx nbackref; /* The number of backreference in this dfa.  */
721
722   /* Bitmap expressing which backreference is used.  */
723   bitset_word_t used_bkref_map;
724   bitset_word_t completed_bkref_map;
725
726   unsigned int has_plural_match : 1;
727   /* If this dfa has "multibyte node", which is a backreference or
728      a node which can accept multibyte character or multi character
729      collating element.  */
730   unsigned int has_mb_node : 1;
731   unsigned int is_utf8 : 1;
732   unsigned int map_notascii : 1;
733   unsigned int word_ops_used : 1;
734   int mb_cur_max;
735   bitset_t word_char;
736   reg_syntax_t syntax;
737   Idx *subexp_map;
738 #ifdef DEBUG
739   char* re_str;
740 #endif
741   lock_define (lock)
742 };
743
744 #define re_node_set_init_empty(set) memset (set, '\0', sizeof (re_node_set))
745 #define re_node_set_remove(set,id) \
746   (re_node_set_remove_at (set, re_node_set_contains (set, id) - 1))
747 #define re_node_set_empty(p) ((p)->nelem = 0)
748 #define re_node_set_free(set) re_free ((set)->elems)
749 \f
750
751 typedef enum
752 {
753   SB_CHAR,
754   MB_CHAR,
755   EQUIV_CLASS,
756   COLL_SYM,
757   CHAR_CLASS
758 } bracket_elem_type;
759
760 typedef struct
761 {
762   bracket_elem_type type;
763   union
764   {
765     unsigned char ch;
766     unsigned char *name;
767     wchar_t wch;
768   } opr;
769 } bracket_elem_t;
770
771
772 /* Functions for bitset_t operation.  */
773
774 static void
775 bitset_set (bitset_t set, Idx i)
776 {
777   set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS;
778 }
779
780 static void
781 bitset_clear (bitset_t set, Idx i)
782 {
783   set[i / BITSET_WORD_BITS] &= ~ ((bitset_word_t) 1 << i % BITSET_WORD_BITS);
784 }
785
786 static bool
787 bitset_contain (const bitset_t set, Idx i)
788 {
789   return (set[i / BITSET_WORD_BITS] >> i % BITSET_WORD_BITS) & 1;
790 }
791
792 static void
793 bitset_empty (bitset_t set)
794 {
795   memset (set, '\0', sizeof (bitset_t));
796 }
797
798 static void
799 bitset_set_all (bitset_t set)
800 {
801   memset (set, -1, sizeof (bitset_word_t) * (SBC_MAX / BITSET_WORD_BITS));
802   if (SBC_MAX % BITSET_WORD_BITS != 0)
803     set[BITSET_WORDS - 1] =
804       ((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1;
805 }
806
807 static void
808 bitset_copy (bitset_t dest, const bitset_t src)
809 {
810   memcpy (dest, src, sizeof (bitset_t));
811 }
812
813 static void __attribute__ ((unused))
814 bitset_not (bitset_t set)
815 {
816   int bitset_i;
817   for (bitset_i = 0; bitset_i < SBC_MAX / BITSET_WORD_BITS; ++bitset_i)
818     set[bitset_i] = ~set[bitset_i];
819   if (SBC_MAX % BITSET_WORD_BITS != 0)
820     set[BITSET_WORDS - 1] =
821       ((((bitset_word_t) 1 << SBC_MAX % BITSET_WORD_BITS) - 1)
822        & ~set[BITSET_WORDS - 1]);
823 }
824
825 static void __attribute__ ((unused))
826 bitset_merge (bitset_t dest, const bitset_t src)
827 {
828   int bitset_i;
829   for (bitset_i = 0; bitset_i < BITSET_WORDS; ++bitset_i)
830     dest[bitset_i] |= src[bitset_i];
831 }
832
833 static void __attribute__ ((unused))
834 bitset_mask (bitset_t dest, const bitset_t src)
835 {
836   int bitset_i;
837   for (bitset_i = 0; bitset_i < BITSET_WORDS; ++bitset_i)
838     dest[bitset_i] &= src[bitset_i];
839 }
840
841 #ifdef RE_ENABLE_I18N
842 /* Functions for re_string.  */
843 static int
844 internal_function __attribute__ ((pure, unused))
845 re_string_char_size_at (const re_string_t *pstr, Idx idx)
846 {
847   int byte_idx;
848   if (pstr->mb_cur_max == 1)
849     return 1;
850   for (byte_idx = 1; idx + byte_idx < pstr->valid_len; ++byte_idx)
851     if (pstr->wcs[idx + byte_idx] != WEOF)
852       break;
853   return byte_idx;
854 }
855
856 static wint_t
857 internal_function __attribute__ ((pure, unused))
858 re_string_wchar_at (const re_string_t *pstr, Idx idx)
859 {
860   if (pstr->mb_cur_max == 1)
861     return (wint_t) pstr->mbs[idx];
862   return (wint_t) pstr->wcs[idx];
863 }
864
865 # ifdef _LIBC
866 #  include <locale/weight.h>
867 # endif
868
869 static int
870 internal_function __attribute__ ((pure, unused))
871 re_string_elem_size_at (const re_string_t *pstr, Idx idx)
872 {
873 # ifdef _LIBC
874   const unsigned char *p, *extra;
875   const int32_t *table, *indirect;
876   uint_fast32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
877
878   if (nrules != 0)
879     {
880       table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
881       extra = (const unsigned char *)
882         _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
883       indirect = (const int32_t *) _NL_CURRENT (LC_COLLATE,
884                                                 _NL_COLLATE_INDIRECTMB);
885       p = pstr->mbs + idx;
886       findidx (table, indirect, extra, &p, pstr->len - idx);
887       return p - pstr->mbs - idx;
888     }
889   else
890 # endif /* _LIBC */
891     return 1;
892 }
893 #endif /* RE_ENABLE_I18N */
894
895 #ifndef __GNUC_PREREQ
896 # if defined __GNUC__ && defined __GNUC_MINOR__
897 #  define __GNUC_PREREQ(maj, min) \
898          ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
899 # else
900 #  define __GNUC_PREREQ(maj, min) 0
901 # endif
902 #endif
903
904 #if __GNUC_PREREQ (3,4)
905 # undef __attribute_warn_unused_result__
906 # define __attribute_warn_unused_result__ \
907    __attribute__ ((__warn_unused_result__))
908 #else
909 # define __attribute_warn_unused_result__ /* empty */
910 #endif
911
912 #endif /*  _REGEX_INTERNAL_H */