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