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