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