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