]> git.ipfire.org Git - thirdparty/glibc.git/blame - posix/regexec.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / posix / regexec.c
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/>. */
e054f494 19
a9388965 20static reg_errcode_t match_ctx_init (re_match_context_t *cache, int eflags,
eb04c213 21 Idx n);
b41bd5bc
FW
22static void match_ctx_clean (re_match_context_t *mctx);
23static void match_ctx_free (re_match_context_t *cache);
eb04c213
AZ
24static reg_errcode_t match_ctx_add_entry (re_match_context_t *cache, Idx node,
25 Idx str_idx, Idx from, Idx to);
26static Idx search_cur_bkref_entry (const re_match_context_t *mctx, Idx str_idx);
27static reg_errcode_t match_ctx_add_subtop (re_match_context_t *mctx, Idx node,
28 Idx str_idx);
6291ee3c 29static re_sub_match_last_t * match_ctx_add_sublast (re_sub_match_top_t *subtop,
eb04c213 30 Idx node, Idx str_idx);
0742e48e 31static void sift_ctx_init (re_sift_context_t *sctx, re_dfastate_t **sifted_sts,
eb04c213
AZ
32 re_dfastate_t **limited_sts, Idx last_node,
33 Idx last_str_idx);
a9388965 34static reg_errcode_t re_search_internal (const regex_t *preg,
eb04c213
AZ
35 const char *string, Idx length,
36 Idx start, Idx last_start, Idx stop,
15a7d175 37 size_t nmatch, regmatch_t pmatch[],
b41bd5bc 38 int eflags);
eb04c213
AZ
39static regoff_t re_search_2_stub (struct re_pattern_buffer *bufp,
40 const char *string1, Idx length1,
41 const char *string2, Idx length2,
42 Idx start, regoff_t range,
43 struct re_registers *regs,
44 Idx stop, bool ret_len);
45static regoff_t re_search_stub (struct re_pattern_buffer *bufp,
46 const char *string, Idx length, Idx start,
47 regoff_t range, Idx stop,
48 struct re_registers *regs,
49 bool ret_len);
ac3d553b 50static unsigned re_copy_regs (struct re_registers *regs, regmatch_t *pmatch,
eb04c213 51 Idx nregs, int regs_allocated);
b41bd5bc 52static reg_errcode_t prune_impossible_nodes (re_match_context_t *mctx);
eb04c213
AZ
53static Idx check_matching (re_match_context_t *mctx, bool fl_longest_match,
54 Idx *p_match_first);
55static Idx check_halt_state_context (const re_match_context_t *mctx,
56 const re_dfastate_t *state, Idx idx);
76b864c8 57static void update_regs (const re_dfa_t *dfa, regmatch_t *pmatch,
eb04c213
AZ
58 regmatch_t *prev_idx_match, Idx cur_node,
59 Idx cur_idx, Idx nmatch);
1b2c2628 60static reg_errcode_t push_fail_stack (struct re_fail_stack_t *fs,
eb04c213 61 Idx str_idx, Idx dest_node, Idx nregs,
15a7d175 62 regmatch_t *regs,
b41bd5bc 63 re_node_set *eps_via_nodes);
612546c6 64static reg_errcode_t set_regs (const regex_t *preg,
15a7d175
UD
65 const re_match_context_t *mctx,
66 size_t nmatch, regmatch_t *pmatch,
eb04c213 67 bool fl_backtrack);
b41bd5bc 68static reg_errcode_t free_fail_stack_return (struct re_fail_stack_t *fs);
485d775d 69
434d3784 70#ifdef RE_ENABLE_I18N
e3a87852 71static int sift_states_iter_mb (const re_match_context_t *mctx,
15a7d175 72 re_sift_context_t *sctx,
eb04c213 73 Idx node_idx, Idx str_idx, Idx max_str_idx);
434d3784 74#endif /* RE_ENABLE_I18N */
76b864c8 75static reg_errcode_t sift_states_backward (const re_match_context_t *mctx,
b41bd5bc 76 re_sift_context_t *sctx);
76b864c8 77static reg_errcode_t build_sifted_states (const re_match_context_t *mctx,
eb04c213 78 re_sift_context_t *sctx, Idx str_idx,
b41bd5bc 79 re_node_set *cur_dest);
76b864c8 80static reg_errcode_t update_cur_sifted_state (const re_match_context_t *mctx,
15a7d175 81 re_sift_context_t *sctx,
eb04c213 82 Idx str_idx,
b41bd5bc 83 re_node_set *dest_nodes);
76b864c8 84static reg_errcode_t add_epsilon_src_nodes (const re_dfa_t *dfa,
15a7d175 85 re_node_set *dest_nodes,
b41bd5bc 86 const re_node_set *candidates);
eb04c213
AZ
87static bool check_dst_limits (const re_match_context_t *mctx,
88 const re_node_set *limits,
89 Idx dst_node, Idx dst_idx, Idx src_node,
90 Idx src_idx);
01ed6ceb 91static int check_dst_limits_calc_pos_1 (const re_match_context_t *mctx,
eb04c213
AZ
92 int boundaries, Idx subexp_idx,
93 Idx from_node, Idx bkref_idx);
01ed6ceb 94static int check_dst_limits_calc_pos (const re_match_context_t *mctx,
eb04c213
AZ
95 Idx limit, Idx subexp_idx,
96 Idx node, Idx str_idx,
97 Idx bkref_idx);
76b864c8 98static reg_errcode_t check_subexp_limits (const re_dfa_t *dfa,
15a7d175
UD
99 re_node_set *dest_nodes,
100 const re_node_set *candidates,
101 re_node_set *limits,
102 struct re_backref_cache_entry *bkref_ents,
eb04c213 103 Idx str_idx);
76b864c8 104static reg_errcode_t sift_states_bkref (const re_match_context_t *mctx,
15a7d175 105 re_sift_context_t *sctx,
eb04c213 106 Idx str_idx, const re_node_set *candidates);
76b864c8
UD
107static reg_errcode_t merge_state_array (const re_dfa_t *dfa,
108 re_dfastate_t **dst,
eb04c213 109 re_dfastate_t **src, Idx num);
4c595adb 110static re_dfastate_t *find_recover_state (reg_errcode_t *err,
b41bd5bc 111 re_match_context_t *mctx);
e3a87852 112static re_dfastate_t *transit_state (reg_errcode_t *err,
15a7d175 113 re_match_context_t *mctx,
b41bd5bc 114 re_dfastate_t *state);
4c595adb
UD
115static re_dfastate_t *merge_state_with_log (reg_errcode_t *err,
116 re_match_context_t *mctx,
b41bd5bc 117 re_dfastate_t *next_state);
e3a87852 118static reg_errcode_t check_subexp_matching_top (re_match_context_t *mctx,
6291ee3c 119 re_node_set *cur_nodes,
eb04c213 120 Idx str_idx);
c13c99fa 121#if 0
e3a87852
UD
122static re_dfastate_t *transit_state_sb (reg_errcode_t *err,
123 re_match_context_t *mctx,
b41bd5bc 124 re_dfastate_t *pstate);
c13c99fa 125#endif
434d3784 126#ifdef RE_ENABLE_I18N
e3a87852 127static reg_errcode_t transit_state_mb (re_match_context_t *mctx,
b41bd5bc 128 re_dfastate_t *pstate);
434d3784 129#endif /* RE_ENABLE_I18N */
e3a87852 130static reg_errcode_t transit_state_bkref (re_match_context_t *mctx,
b41bd5bc 131 const re_node_set *nodes);
e3a87852 132static reg_errcode_t get_subexp (re_match_context_t *mctx,
eb04c213 133 Idx bkref_node, Idx bkref_str_idx);
e3a87852 134static reg_errcode_t get_subexp_sub (re_match_context_t *mctx,
fe9434bb 135 const re_sub_match_top_t *sub_top,
6291ee3c 136 re_sub_match_last_t *sub_last,
eb04c213
AZ
137 Idx bkref_node, Idx bkref_str);
138static Idx find_subexp_node (const re_dfa_t *dfa, const re_node_set *nodes,
139 Idx subexp_idx, int type);
e3a87852 140static reg_errcode_t check_arrival (re_match_context_t *mctx,
eb04c213
AZ
141 state_array_t *path, Idx top_node,
142 Idx top_str, Idx last_node, Idx last_str,
b41bd5bc 143 int type);
e3a87852 144static reg_errcode_t check_arrival_add_next_nodes (re_match_context_t *mctx,
eb04c213 145 Idx str_idx,
6291ee3c 146 re_node_set *cur_nodes,
b41bd5bc 147 re_node_set *next_nodes);
6efbd82c 148static reg_errcode_t check_arrival_expand_ecl (const re_dfa_t *dfa,
6291ee3c 149 re_node_set *cur_nodes,
eb04c213 150 Idx ex_subexp, int type);
6efbd82c 151static reg_errcode_t check_arrival_expand_ecl_sub (const re_dfa_t *dfa,
6291ee3c 152 re_node_set *dst_nodes,
eb04c213 153 Idx target, Idx ex_subexp,
b41bd5bc 154 int type);
e3a87852 155static reg_errcode_t expand_bkref_cache (re_match_context_t *mctx,
eb04c213
AZ
156 re_node_set *cur_nodes, Idx cur_str,
157 Idx subexp_num, int type);
158static bool build_trtable (const re_dfa_t *dfa, re_dfastate_t *state);
434d3784 159#ifdef RE_ENABLE_I18N
eb04c213
AZ
160static int check_node_accept_bytes (const re_dfa_t *dfa, Idx node_idx,
161 const re_string_t *input, Idx idx);
434d3784 162# ifdef _LIBC
c202c2c5 163static unsigned int find_collation_sequence_value (const unsigned char *mbs,
b41bd5bc 164 size_t name_len);
434d3784
UD
165# endif /* _LIBC */
166#endif /* RE_ENABLE_I18N */
eb04c213 167static Idx group_nodes_into_DFAstates (const re_dfa_t *dfa,
15a7d175
UD
168 const re_dfastate_t *state,
169 re_node_set *states_node,
b41bd5bc 170 bitset_t *states_ch);
eb04c213
AZ
171static bool check_node_accept (const re_match_context_t *mctx,
172 const re_token_t *node, Idx idx);
b41bd5bc 173static reg_errcode_t extend_buffers (re_match_context_t *mctx, int min_len);
3b0bdc72
UD
174\f
175/* Entry point for POSIX code. */
176
177/* regexec searches for a given pattern, specified by PREG, in the
178 string STRING.
179
180 If NMATCH is zero or REG_NOSUB was set in the cflags argument to
eb04c213 181 'regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
3b0bdc72
UD
182 least NMATCH elements, and we set them to the offsets of the
183 corresponding matched substrings.
184
eb04c213 185 EFLAGS specifies "execution flags" which affect matching: if
3b0bdc72
UD
186 REG_NOTBOL is set, then ^ does not match at the beginning of the
187 string; if REG_NOTEOL is set, then $ does not match at the end.
188
189 We return 0 if we find a match and REG_NOMATCH if not. */
190
191int
c0feb731 192regexec (const regex_t *__restrict preg, const char *__restrict string,
9dd346ff 193 size_t nmatch, regmatch_t pmatch[], int eflags)
3b0bdc72 194{
a9388965 195 reg_errcode_t err;
eb04c213
AZ
196 Idx start, length;
197 re_dfa_t *dfa = preg->buffer;
3f2fb223
UD
198
199 if (eflags & ~(REG_NOTBOL | REG_NOTEOL | REG_STARTEND))
200 return REG_BADPAT;
201
6fefb4e0
UD
202 if (eflags & REG_STARTEND)
203 {
204 start = pmatch[0].rm_so;
205 length = pmatch[0].rm_eo;
206 }
207 else
208 {
209 start = 0;
210 length = strlen (string);
211 }
7b918993 212
eb04c213 213 lock_lock (dfa->lock);
3b0bdc72 214 if (preg->no_sub)
eb04c213 215 err = re_search_internal (preg, string, length, start, length,
6fefb4e0 216 length, 0, NULL, eflags);
3b0bdc72 217 else
eb04c213 218 err = re_search_internal (preg, string, length, start, length,
6fefb4e0 219 length, nmatch, pmatch, eflags);
eb04c213 220 lock_unlock (dfa->lock);
a9388965 221 return err != REG_NOERROR;
3b0bdc72 222}
3f2fb223 223
3b0bdc72 224#ifdef _LIBC
b68f8620
L
225libc_hidden_def (__regexec)
226
3f2fb223
UD
227# include <shlib-compat.h>
228versioned_symbol (libc, __regexec, regexec, GLIBC_2_3_4);
229
230# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3_4)
231__typeof__ (__regexec) __compat_regexec;
232
233int
78678039 234attribute_compat_text_section
c0feb731
PE
235__compat_regexec (const regex_t *__restrict preg,
236 const char *__restrict string, size_t nmatch,
3f2fb223
UD
237 regmatch_t pmatch[], int eflags)
238{
239 return regexec (preg, string, nmatch, pmatch,
240 eflags & (REG_NOTBOL | REG_NOTEOL));
241}
242compat_symbol (libc, __compat_regexec, regexec, GLIBC_2_0);
243# endif
3b0bdc72
UD
244#endif
245
246/* Entry points for GNU code. */
247
ac3d553b
UD
248/* re_match, re_search, re_match_2, re_search_2
249
250 The former two functions operate on STRING with length LENGTH,
251 while the later two operate on concatenation of STRING1 and STRING2
252 with lengths LENGTH1 and LENGTH2, respectively.
253
254 re_match() matches the compiled pattern in BUFP against the string,
255 starting at index START.
256
257 re_search() first tries matching at index START, then it tries to match
258 starting from index START + 1, and so on. The last start position tried
259 is START + RANGE. (Thus RANGE = 0 forces re_search to operate the same
260 way as re_match().)
261
262 The parameter STOP of re_{match,search}_2 specifies that no match exceeding
263 the first STOP characters of the concatenation of the strings should be
264 concerned.
265
266 If REGS is not NULL, and BUFP->no_sub is not set, the offsets of the match
5069ff32 267 and all groups is stored in REGS. (For the "_2" variants, the offsets are
ac3d553b
UD
268 computed relative to the concatenation, not relative to the individual
269 strings.)
270
271 On success, re_match* functions return the length of the match, re_search*
272 return the position of the start of the match. Return value -1 means no
273 match was found and -2 indicates an internal error. */
3b0bdc72 274
eb04c213
AZ
275regoff_t
276re_match (struct re_pattern_buffer *bufp, const char *string, Idx length,
277 Idx start, struct re_registers *regs)
3b0bdc72 278{
eb04c213 279 return re_search_stub (bufp, string, length, start, 0, length, regs, true);
3b0bdc72
UD
280}
281#ifdef _LIBC
282weak_alias (__re_match, re_match)
283#endif
284
eb04c213
AZ
285regoff_t
286re_search (struct re_pattern_buffer *bufp, const char *string, Idx length,
287 Idx start, regoff_t range, struct re_registers *regs)
ac3d553b 288{
eb04c213
AZ
289 return re_search_stub (bufp, string, length, start, range, length, regs,
290 false);
ac3d553b
UD
291}
292#ifdef _LIBC
293weak_alias (__re_search, re_search)
294#endif
3b0bdc72 295
eb04c213
AZ
296regoff_t
297re_match_2 (struct re_pattern_buffer *bufp, const char *string1, Idx length1,
298 const char *string2, Idx length2, Idx start,
299 struct re_registers *regs, Idx stop)
3b0bdc72 300{
ac3d553b 301 return re_search_2_stub (bufp, string1, length1, string2, length2,
eb04c213 302 start, 0, regs, stop, true);
3b0bdc72
UD
303}
304#ifdef _LIBC
305weak_alias (__re_match_2, re_match_2)
306#endif
307
eb04c213
AZ
308regoff_t
309re_search_2 (struct re_pattern_buffer *bufp, const char *string1, Idx length1,
310 const char *string2, Idx length2, Idx start, regoff_t range,
311 struct re_registers *regs, Idx stop)
ac3d553b
UD
312{
313 return re_search_2_stub (bufp, string1, length1, string2, length2,
eb04c213 314 start, range, regs, stop, false);
ac3d553b
UD
315}
316#ifdef _LIBC
317weak_alias (__re_search_2, re_search_2)
318#endif
319
eb04c213 320static regoff_t
85231522 321re_search_2_stub (struct re_pattern_buffer *bufp, const char *string1,
eb04c213
AZ
322 Idx length1, const char *string2, Idx length2, Idx start,
323 regoff_t range, struct re_registers *regs,
324 Idx stop, bool ret_len)
ac3d553b
UD
325{
326 const char *str;
eb04c213
AZ
327 regoff_t rval;
328 Idx len;
d044d844 329 char *s = NULL;
ac3d553b 330
f4efbdfb
PE
331 if (__glibc_unlikely ((length1 < 0 || length2 < 0 || stop < 0
332 || INT_ADD_WRAPV (length1, length2, &len))))
ac3d553b
UD
333 return -2;
334
335 /* Concatenate the strings. */
336 if (length2 > 0)
337 if (length1 > 0)
338 {
d044d844 339 s = re_malloc (char, len);
15a7d175 340
f4efbdfb 341 if (__glibc_unlikely (s == NULL))
15a7d175 342 return -2;
c42b4152
UD
343#ifdef _LIBC
344 memcpy (__mempcpy (s, string1, length1), string2, length2);
345#else
15a7d175
UD
346 memcpy (s, string1, length1);
347 memcpy (s + length1, string2, length2);
c42b4152 348#endif
15a7d175 349 str = s;
ac3d553b
UD
350 }
351 else
352 str = string2;
353 else
354 str = string1;
355
eb04c213
AZ
356 rval = re_search_stub (bufp, str, len, start, range, stop, regs,
357 ret_len);
d044d844 358 re_free (s);
ac3d553b
UD
359 return rval;
360}
361
362/* The parameters have the same meaning as those of re_search.
363 Additional parameters:
eb04c213 364 If RET_LEN is true the length of the match is returned (re_match style);
ac3d553b
UD
365 otherwise the position of the match is returned. */
366
eb04c213
AZ
367static regoff_t
368re_search_stub (struct re_pattern_buffer *bufp, const char *string, Idx length,
369 Idx start, regoff_t range, Idx stop, struct re_registers *regs,
370 bool ret_len)
3b0bdc72 371{
a9388965 372 reg_errcode_t result;
3b0bdc72 373 regmatch_t *pmatch;
eb04c213
AZ
374 Idx nregs;
375 regoff_t rval;
ac3d553b 376 int eflags = 0;
eb04c213
AZ
377 re_dfa_t *dfa = bufp->buffer;
378 Idx last_start = start + range;
ac3d553b
UD
379
380 /* Check for out-of-range. */
f4efbdfb 381 if (__glibc_unlikely (start < 0 || start > length))
ac3d553b 382 return -1;
f4efbdfb
PE
383 if (__glibc_unlikely (length < last_start
384 || (0 <= range && last_start < start)))
eb04c213 385 last_start = length;
f4efbdfb
PE
386 else if (__glibc_unlikely (last_start < 0
387 || (range < 0 && start <= last_start)))
eb04c213 388 last_start = 0;
3b0bdc72 389
eb04c213 390 lock_lock (dfa->lock);
7b918993 391
3b0bdc72
UD
392 eflags |= (bufp->not_bol) ? REG_NOTBOL : 0;
393 eflags |= (bufp->not_eol) ? REG_NOTEOL : 0;
394
ac3d553b 395 /* Compile fastmap if we haven't yet. */
eb04c213 396 if (start < last_start && bufp->fastmap != NULL && !bufp->fastmap_accurate)
ac3d553b
UD
397 re_compile_fastmap (bufp);
398
f4efbdfb 399 if (__glibc_unlikely (bufp->no_sub))
ac3d553b 400 regs = NULL;
3b0bdc72
UD
401
402 /* We need at least 1 register. */
ac3d553b
UD
403 if (regs == NULL)
404 nregs = 1;
f4efbdfb
PE
405 else if (__glibc_unlikely (bufp->regs_allocated == REGS_FIXED
406 && regs->num_regs <= bufp->re_nsub))
ac3d553b
UD
407 {
408 nregs = regs->num_regs;
f4efbdfb 409 if (__glibc_unlikely (nregs < 1))
15a7d175
UD
410 {
411 /* Nothing can be copied to regs. */
412 regs = NULL;
413 nregs = 1;
414 }
ac3d553b
UD
415 }
416 else
417 nregs = bufp->re_nsub + 1;
3b0bdc72 418 pmatch = re_malloc (regmatch_t, nregs);
f4efbdfb 419 if (__glibc_unlikely (pmatch == NULL))
7b918993
UD
420 {
421 rval = -2;
422 goto out;
423 }
3b0bdc72 424
eb04c213 425 result = re_search_internal (bufp, string, length, start, last_start, stop,
15a7d175 426 nregs, pmatch, eflags);
3b0bdc72 427
ac3d553b
UD
428 rval = 0;
429
eb04c213 430 /* I hope we needn't fill their regs with -1's when no match was found. */
ac3d553b 431 if (result != REG_NOERROR)
eb04c213 432 rval = result == REG_NOMATCH ? -1 : -2;
ac3d553b 433 else if (regs != NULL)
3b0bdc72 434 {
ac3d553b
UD
435 /* If caller wants register contents data back, copy them. */
436 bufp->regs_allocated = re_copy_regs (regs, pmatch, nregs,
15a7d175 437 bufp->regs_allocated);
f4efbdfb 438 if (__glibc_unlikely (bufp->regs_allocated == REGS_UNALLOCATED))
15a7d175 439 rval = -2;
3b0bdc72
UD
440 }
441
f4efbdfb 442 if (__glibc_likely (rval == 0))
3b0bdc72 443 {
ac3d553b 444 if (ret_len)
15a7d175 445 {
2a0356e1 446 DEBUG_ASSERT (pmatch[0].rm_so == start);
15a7d175
UD
447 rval = pmatch[0].rm_eo - start;
448 }
ac3d553b 449 else
15a7d175 450 rval = pmatch[0].rm_so;
3b0bdc72 451 }
3b0bdc72 452 re_free (pmatch);
7b918993 453 out:
eb04c213 454 lock_unlock (dfa->lock);
3b0bdc72
UD
455 return rval;
456}
3b0bdc72 457
ac3d553b 458static unsigned
eb04c213 459re_copy_regs (struct re_registers *regs, regmatch_t *pmatch, Idx nregs,
9dd346ff 460 int regs_allocated)
3b0bdc72 461{
ac3d553b 462 int rval = REGS_REALLOCATE;
eb04c213
AZ
463 Idx i;
464 Idx need_regs = nregs + 1;
465 /* We need one extra element beyond 'num_regs' for the '-1' marker GNU code
ac3d553b
UD
466 uses. */
467
468 /* Have the register data arrays been allocated? */
469 if (regs_allocated == REGS_UNALLOCATED)
44777771 470 { /* No. So allocate them with malloc. */
a96c63ed 471 regs->start = re_malloc (regoff_t, need_regs);
f4efbdfb 472 if (__glibc_unlikely (regs->start == NULL))
15a7d175 473 return REGS_UNALLOCATED;
74bc9f14 474 regs->end = re_malloc (regoff_t, need_regs);
f4efbdfb 475 if (__glibc_unlikely (regs->end == NULL))
74bc9f14
PE
476 {
477 re_free (regs->start);
478 return REGS_UNALLOCATED;
479 }
ac3d553b
UD
480 regs->num_regs = need_regs;
481 }
482 else if (regs_allocated == REGS_REALLOCATE)
483 { /* Yes. If we need more elements than were already
15a7d175
UD
484 allocated, reallocate them. If we need fewer, just
485 leave it alone. */
f4efbdfb 486 if (__glibc_unlikely (need_regs > regs->num_regs))
15a7d175 487 {
44777771 488 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs);
74bc9f14 489 regoff_t *new_end;
f4efbdfb 490 if (__glibc_unlikely (new_start == NULL))
a96c63ed 491 return REGS_UNALLOCATED;
74bc9f14 492 new_end = re_realloc (regs->end, regoff_t, need_regs);
f4efbdfb 493 if (__glibc_unlikely (new_end == NULL))
74bc9f14
PE
494 {
495 re_free (new_start);
496 return REGS_UNALLOCATED;
497 }
44777771
UD
498 regs->start = new_start;
499 regs->end = new_end;
15a7d175
UD
500 regs->num_regs = need_regs;
501 }
ac3d553b
UD
502 }
503 else
504 {
2a0356e1 505 DEBUG_ASSERT (regs_allocated == REGS_FIXED);
ac3d553b 506 /* This function may not be called with REGS_FIXED and nregs too big. */
2a0356e1 507 DEBUG_ASSERT (nregs <= regs->num_regs);
ac3d553b
UD
508 rval = REGS_FIXED;
509 }
510
511 /* Copy the regs. */
512 for (i = 0; i < nregs; ++i)
513 {
514 regs->start[i] = pmatch[i].rm_so;
515 regs->end[i] = pmatch[i].rm_eo;
516 }
517 for ( ; i < regs->num_regs; ++i)
518 regs->start[i] = regs->end[i] = -1;
519
520 return rval;
3b0bdc72 521}
3b0bdc72
UD
522
523/* Set REGS to hold NUM_REGS registers, storing them in STARTS and
524 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use
525 this memory for recording register information. STARTS and ENDS
526 must be allocated using the malloc library routine, and must each
527 be at least NUM_REGS * sizeof (regoff_t) bytes long.
528
529 If NUM_REGS == 0, then subsequent matches should allocate their own
530 register data.
531
532 Unless this function is called, the first search or match using
533 PATTERN_BUFFER will allocate its own register data, without
534 freeing the old data. */
535
536void
9dd346ff 537re_set_registers (struct re_pattern_buffer *bufp, struct re_registers *regs,
eb04c213 538 __re_size_t num_regs, regoff_t *starts, regoff_t *ends)
3b0bdc72
UD
539{
540 if (num_regs)
541 {
542 bufp->regs_allocated = REGS_REALLOCATE;
543 regs->num_regs = num_regs;
544 regs->start = starts;
545 regs->end = ends;
546 }
547 else
548 {
549 bufp->regs_allocated = REGS_UNALLOCATED;
550 regs->num_regs = 0;
eb04c213 551 regs->start = regs->end = NULL;
3b0bdc72
UD
552 }
553}
554#ifdef _LIBC
555weak_alias (__re_set_registers, re_set_registers)
556#endif
557\f
558/* Entry points compatible with 4.2 BSD regex library. We don't define
559 them unless specifically requested. */
560
561#if defined _REGEX_RE_COMP || defined _LIBC
562int
563# ifdef _LIBC
564weak_function
565# endif
80d9be81 566re_exec (const char *s)
3b0bdc72
UD
567{
568 return 0 == regexec (&re_comp_buf, s, 0, NULL, 0);
569}
570#endif /* _REGEX_RE_COMP */
571\f
3b0bdc72
UD
572/* Internal entry point. */
573
574/* Searches for a compiled pattern PREG in the string STRING, whose
575 length is LENGTH. NMATCH, PMATCH, and EFLAGS have the same
eb04c213
AZ
576 meaning as with regexec. LAST_START is START + RANGE, where
577 START and RANGE have the same meaning as with re_search.
a9388965
UD
578 Return REG_NOERROR if we find a match, and REG_NOMATCH if not,
579 otherwise return the error code.
3b0bdc72 580 Note: We assume front end functions already check ranges.
eb04c213 581 (0 <= LAST_START && LAST_START <= LENGTH) */
3b0bdc72 582
a9388965 583static reg_errcode_t
b41bd5bc 584__attribute_warn_unused_result__
eb04c213
AZ
585re_search_internal (const regex_t *preg, const char *string, Idx length,
586 Idx start, Idx last_start, Idx stop, size_t nmatch,
85231522 587 regmatch_t pmatch[], int eflags)
3b0bdc72 588{
a9388965 589 reg_errcode_t err;
eb04c213
AZ
590 const re_dfa_t *dfa = preg->buffer;
591 Idx left_lim, right_lim;
592 int incr;
593 bool fl_longest_match;
594 int match_kind;
595 Idx match_first;
596 Idx match_last = -1;
597 Idx extra_nmatch;
598 bool sb;
599 int ch;
e3a87852 600 re_match_context_t mctx = { .dfa = dfa };
eb04c213
AZ
601 char *fastmap = ((preg->fastmap != NULL && preg->fastmap_accurate
602 && start != last_start && !preg->can_be_null)
603 ? preg->fastmap : NULL);
997470b3 604 RE_TRANSLATE_TYPE t = preg->translate;
3b0bdc72 605
963d8d78
UD
606 extra_nmatch = (nmatch > preg->re_nsub) ? nmatch - (preg->re_nsub + 1) : 0;
607 nmatch -= extra_nmatch;
608
3b0bdc72 609 /* Check if the DFA haven't been compiled. */
f4efbdfb
PE
610 if (__glibc_unlikely (preg->used == 0 || dfa->init_state == NULL
611 || dfa->init_state_word == NULL
612 || dfa->init_state_nl == NULL
613 || dfa->init_state_begbuf == NULL))
a9388965 614 return REG_NOMATCH;
3b0bdc72 615
c70f81dd 616 /* We assume front-end functions already check them. */
2a0356e1 617 DEBUG_ASSERT (0 <= last_start && last_start <= length);
c70f81dd
UD
618
619 /* If initial states with non-begbuf contexts have no elements,
620 the regex must be anchored. If preg->newline_anchor is set,
621 we'll never use init_state_nl, so do not check it. */
622 if (dfa->init_state->nodes.nelem == 0
623 && dfa->init_state_word->nodes.nelem == 0
624 && (dfa->init_state_nl->nodes.nelem == 0
625 || !preg->newline_anchor))
626 {
eb04c213
AZ
627 if (start != 0 && last_start != 0)
628 return REG_NOMATCH;
629 start = last_start = 0;
c70f81dd
UD
630 }
631
3b0bdc72 632 /* We must check the longest matching, if nmatch > 0. */
6291ee3c 633 fl_longest_match = (nmatch != 0 || dfa->nbackref);
3b0bdc72 634
56b168be 635 err = re_string_allocate (&mctx.input, string, length, dfa->nodes_len + 1,
eb04c213
AZ
636 preg->translate, (preg->syntax & RE_ICASE) != 0,
637 dfa);
f4efbdfb 638 if (__glibc_unlikely (err != REG_NOERROR))
1b2c2628 639 goto free_return;
56b168be
UD
640 mctx.input.stop = stop;
641 mctx.input.raw_stop = stop;
642 mctx.input.newline_anchor = preg->newline_anchor;
612546c6 643
56b168be 644 err = match_ctx_init (&mctx, eflags, dfa->nbackref * 2);
f4efbdfb 645 if (__glibc_unlikely (err != REG_NOERROR))
1b2c2628 646 goto free_return;
612546c6 647
3b0bdc72
UD
648 /* We will log all the DFA states through which the dfa pass,
649 if nmatch > 1, or this dfa has "multibyte node", which is a
650 back-reference or a node which can accept multibyte character or
651 multi character collating element. */
652 if (nmatch > 1 || dfa->has_mb_node)
a9388965 653 {
eadc09f2 654 /* Avoid overflow. */
f4efbdfb
PE
655 if (__glibc_unlikely ((MIN (IDX_MAX, SIZE_MAX / sizeof (re_dfastate_t *))
656 <= mctx.input.bufs_len)))
eadc09f2
PE
657 {
658 err = REG_ESPACE;
659 goto free_return;
660 }
661
56b168be 662 mctx.state_log = re_malloc (re_dfastate_t *, mctx.input.bufs_len + 1);
f4efbdfb 663 if (__glibc_unlikely (mctx.state_log == NULL))
15a7d175
UD
664 {
665 err = REG_ESPACE;
666 goto free_return;
667 }
a9388965 668 }
3b0bdc72 669
612546c6 670 match_first = start;
56b168be
UD
671 mctx.input.tip_context = (eflags & REG_NOTBOL) ? CONTEXT_BEGBUF
672 : CONTEXT_NEWLINE | CONTEXT_BEGBUF;
612546c6 673
eb04c213
AZ
674 /* Check incrementally whether the input string matches. */
675 incr = (last_start < start) ? -1 : 1;
676 left_lim = (last_start < start) ? last_start : start;
677 right_lim = (last_start < start) ? start : last_start;
3c0fb574 678 sb = dfa->mb_cur_max == 1;
bb677c95
UD
679 match_kind =
680 (fastmap
681 ? ((sb || !(preg->syntax & RE_ICASE || t) ? 4 : 0)
eb04c213 682 | (start <= last_start ? 2 : 0)
bb677c95
UD
683 | (t != NULL ? 1 : 0))
684 : 8);
685
686 for (;; match_first += incr)
3b0bdc72 687 {
bb677c95
UD
688 err = REG_NOMATCH;
689 if (match_first < left_lim || right_lim < match_first)
690 goto free_return;
691
692 /* Advance as rapidly as possible through the string, until we
693 find a plausible place to start matching. This may be done
694 with varying efficiency, so there are various possibilities:
695 only the most common of them are specialized, in order to
696 save on code size. We use a switch statement for speed. */
697 switch (match_kind)
1b2c2628 698 {
bb677c95
UD
699 case 8:
700 /* No fastmap. */
701 break;
702
703 case 7:
704 /* Fastmap with single-byte translation, match forward. */
f4efbdfb 705 while (__glibc_likely (match_first < right_lim)
bb677c95
UD
706 && !fastmap[t[(unsigned char) string[match_first]]])
707 ++match_first;
708 goto forward_match_found_start_or_reached_end;
709
710 case 6:
711 /* Fastmap without translation, match forward. */
f4efbdfb 712 while (__glibc_likely (match_first < right_lim)
bb677c95
UD
713 && !fastmap[(unsigned char) string[match_first]])
714 ++match_first;
715
716 forward_match_found_start_or_reached_end:
f4efbdfb 717 if (__glibc_unlikely (match_first == right_lim))
1b2c2628 718 {
bb677c95
UD
719 ch = match_first >= length
720 ? 0 : (unsigned char) string[match_first];
721 if (!fastmap[t ? t[ch] : ch])
722 goto free_return;
1b2c2628 723 }
bb677c95
UD
724 break;
725
726 case 4:
727 case 5:
728 /* Fastmap without multi-byte translation, match backwards. */
729 while (match_first >= left_lim)
1b2c2628 730 {
bb677c95
UD
731 ch = match_first >= length
732 ? 0 : (unsigned char) string[match_first];
733 if (fastmap[t ? t[ch] : ch])
734 break;
735 --match_first;
736 }
737 if (match_first < left_lim)
738 goto free_return;
739 break;
1b2c2628 740
bb677c95
UD
741 default:
742 /* In this case, we can't determine easily the current byte,
743 since it might be a component byte of a multibyte
744 character. Then we use the constructed buffer instead. */
745 for (;;)
746 {
747 /* If MATCH_FIRST is out of the valid range, reconstruct the
748 buffers. */
eb04c213 749 __re_size_t offset = match_first - mctx.input.raw_mbs_idx;
f4efbdfb
PE
750 if (__glibc_unlikely (offset
751 >= (__re_size_t) mctx.input.valid_raw_len))
1b2c2628 752 {
bb677c95
UD
753 err = re_string_reconstruct (&mctx.input, match_first,
754 eflags);
f4efbdfb 755 if (__glibc_unlikely (err != REG_NOERROR))
bb677c95
UD
756 goto free_return;
757
758 offset = match_first - mctx.input.raw_mbs_idx;
1b2c2628 759 }
bb677c95
UD
760 /* If MATCH_FIRST is out of the buffer, leave it as '\0'.
761 Note that MATCH_FIRST must not be smaller than 0. */
762 ch = (match_first >= length
763 ? 0 : re_string_byte_at (&mctx.input, offset));
764 if (fastmap[ch])
1b2c2628 765 break;
bb677c95
UD
766 match_first += incr;
767 if (match_first < left_lim || match_first > right_lim)
2da42bc0
UD
768 {
769 err = REG_NOMATCH;
770 goto free_return;
771 }
1b2c2628 772 }
bb677c95 773 break;
1b2c2628 774 }
612546c6 775
1b2c2628 776 /* Reconstruct the buffers so that the matcher can assume that
fe9434bb 777 the matching starts from the beginning of the buffer. */
56b168be 778 err = re_string_reconstruct (&mctx.input, match_first, eflags);
f4efbdfb 779 if (__glibc_unlikely (err != REG_NOERROR))
1b2c2628 780 goto free_return;
bb677c95 781
3b0bdc72 782#ifdef RE_ENABLE_I18N
bb677c95
UD
783 /* Don't consider this char as a possible match start if it part,
784 yet isn't the head, of a multibyte character. */
785 if (!sb && !re_string_first_byte (&mctx.input, 0))
786 continue;
3b0bdc72 787#endif
bb677c95
UD
788
789 /* It seems to be appropriate one, then use the matcher. */
790 /* We assume that the matching starts from 0. */
791 mctx.state_log_top = mctx.nbkref_ents = mctx.max_mb_elem_len = 0;
792 match_last = check_matching (&mctx, fl_longest_match,
eb04c213 793 start <= last_start ? &match_first : NULL);
bb677c95 794 if (match_last != -1)
1b2c2628 795 {
f4efbdfb 796 if (__glibc_unlikely (match_last == -2))
1b2c2628 797 {
bb677c95
UD
798 err = REG_ESPACE;
799 goto free_return;
800 }
801 else
802 {
803 mctx.match_last = match_last;
804 if ((!preg->no_sub && nmatch > 1) || dfa->nbackref)
1b2c2628 805 {
bb677c95
UD
806 re_dfastate_t *pstate = mctx.state_log[match_last];
807 mctx.last_node = check_halt_state_context (&mctx, pstate,
808 match_last);
1b2c2628 809 }
bb677c95
UD
810 if ((!preg->no_sub && nmatch > 1 && dfa->has_plural_match)
811 || dfa->nbackref)
6291ee3c 812 {
bb677c95
UD
813 err = prune_impossible_nodes (&mctx);
814 if (err == REG_NOERROR)
815 break;
f4efbdfb 816 if (__glibc_unlikely (err != REG_NOMATCH))
bb677c95
UD
817 goto free_return;
818 match_last = -1;
6291ee3c 819 }
bb677c95
UD
820 else
821 break; /* We found a match. */
1b2c2628
UD
822 }
823 }
bb677c95
UD
824
825 match_ctx_clean (&mctx);
3b0bdc72
UD
826 }
827
2a0356e1
AZ
828 DEBUG_ASSERT (match_last != -1);
829 DEBUG_ASSERT (err == REG_NOERROR);
bb677c95 830
3b0bdc72 831 /* Set pmatch[] if we need. */
bb677c95 832 if (nmatch > 0)
3b0bdc72 833 {
eb04c213 834 Idx reg_idx;
3b0bdc72
UD
835
836 /* Initialize registers. */
97fd3a30 837 for (reg_idx = 1; reg_idx < nmatch; ++reg_idx)
15a7d175 838 pmatch[reg_idx].rm_so = pmatch[reg_idx].rm_eo = -1;
3b0bdc72
UD
839
840 /* Set the points where matching start/end. */
612546c6 841 pmatch[0].rm_so = 0;
6291ee3c 842 pmatch[0].rm_eo = mctx.match_last;
eb04c213
AZ
843 /* FIXME: This function should fail if mctx.match_last exceeds
844 the maximum possible regoff_t value. We need a new error
845 code REG_OVERFLOW. */
3b0bdc72
UD
846
847 if (!preg->no_sub && nmatch > 1)
15a7d175 848 {
15a7d175
UD
849 err = set_regs (preg, &mctx, nmatch, pmatch,
850 dfa->has_plural_match && dfa->nbackref > 0);
f4efbdfb 851 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
852 goto free_return;
853 }
612546c6 854
5069ff32 855 /* At last, add the offset to each register, since we slid
97fd3a30
UD
856 the buffers so that we could assume that the matching starts
857 from 0. */
612546c6 858 for (reg_idx = 0; reg_idx < nmatch; ++reg_idx)
15a7d175
UD
859 if (pmatch[reg_idx].rm_so != -1)
860 {
c0d5034e 861#ifdef RE_ENABLE_I18N
f4efbdfb 862 if (__glibc_unlikely (mctx.input.offsets_needed != 0))
bb3f4825 863 {
01ed6ceb
UD
864 pmatch[reg_idx].rm_so =
865 (pmatch[reg_idx].rm_so == mctx.input.valid_len
866 ? mctx.input.valid_raw_len
867 : mctx.input.offsets[pmatch[reg_idx].rm_so]);
868 pmatch[reg_idx].rm_eo =
869 (pmatch[reg_idx].rm_eo == mctx.input.valid_len
870 ? mctx.input.valid_raw_len
871 : mctx.input.offsets[pmatch[reg_idx].rm_eo]);
bb3f4825 872 }
c0d5034e 873#else
2a0356e1 874 DEBUG_ASSERT (mctx.input.offsets_needed == 0);
c0d5034e 875#endif
15a7d175
UD
876 pmatch[reg_idx].rm_so += match_first;
877 pmatch[reg_idx].rm_eo += match_first;
878 }
963d8d78
UD
879 for (reg_idx = 0; reg_idx < extra_nmatch; ++reg_idx)
880 {
881 pmatch[nmatch + reg_idx].rm_so = -1;
882 pmatch[nmatch + reg_idx].rm_eo = -1;
883 }
c06a6956
UD
884
885 if (dfa->subexp_map)
2da42bc0
UD
886 for (reg_idx = 0; reg_idx + 1 < nmatch; reg_idx++)
887 if (dfa->subexp_map[reg_idx] != reg_idx)
888 {
889 pmatch[reg_idx + 1].rm_so
890 = pmatch[dfa->subexp_map[reg_idx] + 1].rm_so;
891 pmatch[reg_idx + 1].rm_eo
892 = pmatch[dfa->subexp_map[reg_idx] + 1].rm_eo;
893 }
3b0bdc72 894 }
bb677c95 895
1b2c2628 896 free_return:
612546c6 897 re_free (mctx.state_log);
3b0bdc72
UD
898 if (dfa->nbackref)
899 match_ctx_free (&mctx);
56b168be 900 re_string_destruct (&mctx.input);
1b2c2628 901 return err;
3b0bdc72
UD
902}
903
6291ee3c 904static reg_errcode_t
b41bd5bc 905__attribute_warn_unused_result__
9dd346ff 906prune_impossible_nodes (re_match_context_t *mctx)
6291ee3c 907{
76b864c8 908 const re_dfa_t *const dfa = mctx->dfa;
eb04c213 909 Idx halt_node, match_last;
6291ee3c 910 reg_errcode_t ret;
6291ee3c
UD
911 re_dfastate_t **sifted_states;
912 re_dfastate_t **lim_states = NULL;
913 re_sift_context_t sctx;
2a0356e1 914 DEBUG_ASSERT (mctx->state_log != NULL);
6291ee3c
UD
915 match_last = mctx->match_last;
916 halt_node = mctx->last_node;
4cd02867
PE
917
918 /* Avoid overflow. */
f4efbdfb
PE
919 if (__glibc_unlikely (MIN (IDX_MAX, SIZE_MAX / sizeof (re_dfastate_t *))
920 <= match_last))
4cd02867
PE
921 return REG_ESPACE;
922
6291ee3c 923 sifted_states = re_malloc (re_dfastate_t *, match_last + 1);
f4efbdfb 924 if (__glibc_unlikely (sifted_states == NULL))
6291ee3c
UD
925 {
926 ret = REG_ESPACE;
927 goto free_return;
928 }
929 if (dfa->nbackref)
930 {
931 lim_states = re_malloc (re_dfastate_t *, match_last + 1);
f4efbdfb 932 if (__glibc_unlikely (lim_states == NULL))
6291ee3c
UD
933 {
934 ret = REG_ESPACE;
935 goto free_return;
936 }
937 while (1)
938 {
939 memset (lim_states, '\0',
940 sizeof (re_dfastate_t *) * (match_last + 1));
6291ee3c 941 sift_ctx_init (&sctx, sifted_states, lim_states, halt_node,
d2c38eb3 942 match_last);
e3a87852 943 ret = sift_states_backward (mctx, &sctx);
6291ee3c 944 re_node_set_free (&sctx.limits);
f4efbdfb 945 if (__glibc_unlikely (ret != REG_NOERROR))
6291ee3c
UD
946 goto free_return;
947 if (sifted_states[0] != NULL || lim_states[0] != NULL)
948 break;
949 do
950 {
951 --match_last;
952 if (match_last < 0)
953 {
954 ret = REG_NOMATCH;
955 goto free_return;
956 }
97fd3a30
UD
957 } while (mctx->state_log[match_last] == NULL
958 || !mctx->state_log[match_last]->halt);
e3a87852 959 halt_node = check_halt_state_context (mctx,
6291ee3c 960 mctx->state_log[match_last],
e3a87852 961 match_last);
6291ee3c
UD
962 }
963 ret = merge_state_array (dfa, sifted_states, lim_states,
964 match_last + 1);
965 re_free (lim_states);
966 lim_states = NULL;
f4efbdfb 967 if (__glibc_unlikely (ret != REG_NOERROR))
6291ee3c
UD
968 goto free_return;
969 }
970 else
971 {
d2c38eb3 972 sift_ctx_init (&sctx, sifted_states, lim_states, halt_node, match_last);
e3a87852 973 ret = sift_states_backward (mctx, &sctx);
6291ee3c 974 re_node_set_free (&sctx.limits);
f4efbdfb 975 if (__glibc_unlikely (ret != REG_NOERROR))
6291ee3c 976 goto free_return;
76c7f2cd
UD
977 if (sifted_states[0] == NULL)
978 {
979 ret = REG_NOMATCH;
980 goto free_return;
981 }
6291ee3c
UD
982 }
983 re_free (mctx->state_log);
984 mctx->state_log = sifted_states;
985 sifted_states = NULL;
986 mctx->last_node = halt_node;
987 mctx->match_last = match_last;
988 ret = REG_NOERROR;
989 free_return:
990 re_free (sifted_states);
991 re_free (lim_states);
992 return ret;
993}
994
a9388965 995/* Acquire an initial state and return it.
3b0bdc72
UD
996 We must select appropriate initial state depending on the context,
997 since initial states may have constraints like "\<", "^", etc.. */
998
bb3f4825 999static inline re_dfastate_t *
eb04c213 1000__attribute__ ((always_inline))
e2f55264 1001acquire_init_state_context (reg_errcode_t *err, const re_match_context_t *mctx,
eb04c213 1002 Idx idx)
3b0bdc72 1003{
76b864c8 1004 const re_dfa_t *const dfa = mctx->dfa;
3b0bdc72
UD
1005 if (dfa->init_state->has_constraint)
1006 {
1007 unsigned int context;
56b168be 1008 context = re_string_context_at (&mctx->input, idx - 1, mctx->eflags);
3b0bdc72 1009 if (IS_WORD_CONTEXT (context))
15a7d175 1010 return dfa->init_state_word;
3b0bdc72 1011 else if (IS_ORDINARY_CONTEXT (context))
15a7d175 1012 return dfa->init_state;
3b0bdc72 1013 else if (IS_BEGBUF_CONTEXT (context) && IS_NEWLINE_CONTEXT (context))
15a7d175 1014 return dfa->init_state_begbuf;
3b0bdc72 1015 else if (IS_NEWLINE_CONTEXT (context))
15a7d175 1016 return dfa->init_state_nl;
3b0bdc72 1017 else if (IS_BEGBUF_CONTEXT (context))
15a7d175
UD
1018 {
1019 /* It is relatively rare case, then calculate on demand. */
4c595adb
UD
1020 return re_acquire_state_context (err, dfa,
1021 dfa->init_state->entrance_nodes,
1022 context);
15a7d175 1023 }
3b0bdc72 1024 else
15a7d175
UD
1025 /* Must not happen? */
1026 return dfa->init_state;
3b0bdc72
UD
1027 }
1028 else
1029 return dfa->init_state;
1030}
1031
1032/* Check whether the regular expression match input string INPUT or not,
eb04c213
AZ
1033 and return the index where the matching end. Return -1 if
1034 there is no match, and return -2 in case of an error.
612546c6 1035 FL_LONGEST_MATCH means we want the POSIX longest matching.
15bad1a5
UD
1036 If P_MATCH_FIRST is not NULL, and the match fails, it is set to the
1037 next place where we may want to try matching.
eb04c213 1038 Note that the matcher assumes that the matching starts from the current
612546c6 1039 index of the buffer. */
3b0bdc72 1040
eb04c213 1041static Idx
b41bd5bc 1042__attribute_warn_unused_result__
eb04c213
AZ
1043check_matching (re_match_context_t *mctx, bool fl_longest_match,
1044 Idx *p_match_first)
3b0bdc72 1045{
76b864c8 1046 const re_dfa_t *const dfa = mctx->dfa;
a9388965 1047 reg_errcode_t err;
eb04c213
AZ
1048 Idx match = 0;
1049 Idx match_last = -1;
1050 Idx cur_str_idx = re_string_cur_idx (&mctx->input);
3b0bdc72 1051 re_dfastate_t *cur_state;
eb04c213
AZ
1052 bool at_init_state = p_match_first != NULL;
1053 Idx next_start_idx = cur_str_idx;
3b0bdc72 1054
4c595adb 1055 err = REG_NOERROR;
e3a87852 1056 cur_state = acquire_init_state_context (&err, mctx, cur_str_idx);
4c595adb 1057 /* An initial state must not be NULL (invalid). */
f4efbdfb 1058 if (__glibc_unlikely (cur_state == NULL))
4c595adb 1059 {
2a0356e1 1060 DEBUG_ASSERT (err == REG_ESPACE);
4c595adb
UD
1061 return -2;
1062 }
0742e48e 1063
4c595adb 1064 if (mctx->state_log != NULL)
6291ee3c 1065 {
4c595adb 1066 mctx->state_log[cur_str_idx] = cur_state;
6291ee3c 1067
4c595adb
UD
1068 /* Check OP_OPEN_SUBEXP in the initial state in case that we use them
1069 later. E.g. Processing back references. */
f4efbdfb 1070 if (__glibc_unlikely (dfa->nbackref))
bb3f4825 1071 {
eb04c213 1072 at_init_state = false;
4c595adb 1073 err = check_subexp_matching_top (mctx, &cur_state->nodes, 0);
f4efbdfb 1074 if (__glibc_unlikely (err != REG_NOERROR))
bb3f4825 1075 return err;
4c595adb
UD
1076
1077 if (cur_state->has_backref)
1078 {
1079 err = transit_state_bkref (mctx, &cur_state->nodes);
f4efbdfb 1080 if (__glibc_unlikely (err != REG_NOERROR))
2da42bc0 1081 return err;
4c595adb 1082 }
bb3f4825 1083 }
0742e48e
UD
1084 }
1085
3b0bdc72 1086 /* If the RE accepts NULL string. */
f4efbdfb 1087 if (__glibc_unlikely (cur_state->halt))
3b0bdc72
UD
1088 {
1089 if (!cur_state->has_constraint
e3a87852 1090 || check_halt_state_context (mctx, cur_state, cur_str_idx))
15a7d175
UD
1091 {
1092 if (!fl_longest_match)
1093 return cur_str_idx;
1094 else
1095 {
1096 match_last = cur_str_idx;
1097 match = 1;
1098 }
1099 }
3b0bdc72
UD
1100 }
1101
56b168be 1102 while (!re_string_eoi (&mctx->input))
3b0bdc72 1103 {
15bad1a5 1104 re_dfastate_t *old_state = cur_state;
eb04c213 1105 Idx next_char_idx = re_string_cur_idx (&mctx->input) + 1;
bb677c95 1106
f4efbdfb 1107 if ((__glibc_unlikely (next_char_idx >= mctx->input.bufs_len)
8887a920 1108 && mctx->input.bufs_len < mctx->input.len)
f4efbdfb 1109 || (__glibc_unlikely (next_char_idx >= mctx->input.valid_len)
2da42bc0
UD
1110 && mctx->input.valid_len < mctx->input.len))
1111 {
a445af0b 1112 err = extend_buffers (mctx, next_char_idx + 1);
f4efbdfb 1113 if (__glibc_unlikely (err != REG_NOERROR))
bb677c95 1114 {
2a0356e1 1115 DEBUG_ASSERT (err == REG_ESPACE);
bb677c95
UD
1116 return -2;
1117 }
2da42bc0 1118 }
bb677c95 1119
e3a87852 1120 cur_state = transit_state (&err, mctx, cur_state);
4c595adb
UD
1121 if (mctx->state_log != NULL)
1122 cur_state = merge_state_with_log (&err, mctx, cur_state);
15bad1a5 1123
4c595adb 1124 if (cur_state == NULL)
15a7d175 1125 {
4c595adb
UD
1126 /* Reached the invalid state or an error. Try to recover a valid
1127 state using the state log, if available and if we have not
1128 already found a valid (even if not the longest) match. */
f4efbdfb 1129 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 1130 return -2;
4c595adb
UD
1131
1132 if (mctx->state_log == NULL
1133 || (match && !fl_longest_match)
1134 || (cur_state = find_recover_state (&err, mctx)) == NULL)
15a7d175 1135 break;
4c595adb
UD
1136 }
1137
f4efbdfb 1138 if (__glibc_unlikely (at_init_state))
4c595adb
UD
1139 {
1140 if (old_state == cur_state)
bb677c95 1141 next_start_idx = next_char_idx;
c13c99fa 1142 else
eb04c213 1143 at_init_state = false;
15a7d175 1144 }
3b0bdc72 1145
4c595adb 1146 if (cur_state->halt)
15a7d175 1147 {
4c595adb 1148 /* Reached a halt state.
15a7d175
UD
1149 Check the halt state can satisfy the current context. */
1150 if (!cur_state->has_constraint
e3a87852 1151 || check_halt_state_context (mctx, cur_state,
56b168be 1152 re_string_cur_idx (&mctx->input)))
15a7d175
UD
1153 {
1154 /* We found an appropriate halt state. */
56b168be 1155 match_last = re_string_cur_idx (&mctx->input);
15a7d175 1156 match = 1;
bb677c95
UD
1157
1158 /* We found a match, do not modify match_first below. */
1159 p_match_first = NULL;
15a7d175
UD
1160 if (!fl_longest_match)
1161 break;
1162 }
1163 }
bb677c95 1164 }
15bad1a5 1165
bb677c95 1166 if (p_match_first)
4c595adb 1167 *p_match_first += next_start_idx;
15bad1a5 1168
3b0bdc72
UD
1169 return match_last;
1170}
1171
1172/* Check NODE match the current context. */
1173
eb04c213
AZ
1174static bool
1175check_halt_node_context (const re_dfa_t *dfa, Idx node, unsigned int context)
3b0bdc72 1176{
3b0bdc72 1177 re_token_type_t type = dfa->nodes[node].type;
485d775d
UD
1178 unsigned int constraint = dfa->nodes[node].constraint;
1179 if (type != END_OF_RE)
eb04c213 1180 return false;
485d775d 1181 if (!constraint)
eb04c213 1182 return true;
485d775d 1183 if (NOT_SATISFY_NEXT_CONSTRAINT (constraint, context))
eb04c213
AZ
1184 return false;
1185 return true;
3b0bdc72
UD
1186}
1187
1188/* Check the halt state STATE match the current context.
1189 Return 0 if not match, if the node, STATE has, is a halt node and
1190 match the context, return the node. */
1191
eb04c213 1192static Idx
e2f55264 1193check_halt_state_context (const re_match_context_t *mctx,
eb04c213 1194 const re_dfastate_t *state, Idx idx)
3b0bdc72 1195{
eb04c213 1196 Idx i;
3b0bdc72 1197 unsigned int context;
2a0356e1 1198 DEBUG_ASSERT (state->halt);
56b168be 1199 context = re_string_context_at (&mctx->input, idx, mctx->eflags);
3b0bdc72 1200 for (i = 0; i < state->nodes.nelem; ++i)
e3a87852 1201 if (check_halt_node_context (mctx->dfa, state->nodes.elems[i], context))
3b0bdc72
UD
1202 return state->nodes.elems[i];
1203 return 0;
1204}
1205
a9388965
UD
1206/* Compute the next node to which "NFA" transit from NODE("NFA" is a NFA
1207 corresponding to the DFA).
eb04c213
AZ
1208 Return the destination node, and update EPS_VIA_NODES;
1209 return -1 in case of errors. */
3b0bdc72 1210
eb04c213
AZ
1211static Idx
1212proceed_next_node (const re_match_context_t *mctx, Idx nregs, regmatch_t *regs,
1213 Idx *pidx, Idx node, re_node_set *eps_via_nodes,
e2f55264 1214 struct re_fail_stack_t *fs)
3b0bdc72 1215{
76b864c8 1216 const re_dfa_t *const dfa = mctx->dfa;
eb04c213
AZ
1217 Idx i;
1218 bool ok;
3b0bdc72
UD
1219 if (IS_EPSILON_NODE (dfa->nodes[node].type))
1220 {
485d775d 1221 re_node_set *cur_nodes = &mctx->state_log[*pidx]->nodes;
5cf1ec52 1222 re_node_set *edests = &dfa->edests[node];
eb04c213
AZ
1223 Idx dest_node;
1224 ok = re_node_set_insert (eps_via_nodes, node);
f4efbdfb 1225 if (__glibc_unlikely (! ok))
44777771 1226 return -2;
eb04c213
AZ
1227 /* Pick up a valid destination, or return -1 if none
1228 is found. */
5cf1ec52 1229 for (dest_node = -1, i = 0; i < edests->nelem; ++i)
15a7d175 1230 {
eb04c213 1231 Idx candidate = edests->elems[i];
15a7d175
UD
1232 if (!re_node_set_contains (cur_nodes, candidate))
1233 continue;
eb04c213 1234 if (dest_node == -1)
5cf1ec52
UD
1235 dest_node = candidate;
1236
2da42bc0 1237 else
5cf1ec52
UD
1238 {
1239 /* In order to avoid infinite loop like "(a*)*", return the second
2da42bc0 1240 epsilon-transition if the first was already considered. */
5cf1ec52 1241 if (re_node_set_contains (eps_via_nodes, dest_node))
2da42bc0 1242 return candidate;
5cf1ec52
UD
1243
1244 /* Otherwise, push the second epsilon-transition on the fail stack. */
1245 else if (fs != NULL
1246 && push_fail_stack (fs, *pidx, candidate, nregs, regs,
2da42bc0 1247 eps_via_nodes))
5cf1ec52
UD
1248 return -2;
1249
1250 /* We know we are going to exit. */
1251 break;
1252 }
1253 }
1254 return dest_node;
3b0bdc72
UD
1255 }
1256 else
1257 {
eb04c213 1258 Idx naccepted = 0;
3b0bdc72 1259 re_token_type_t type = dfa->nodes[node].type;
3b0bdc72 1260
434d3784 1261#ifdef RE_ENABLE_I18N
02f3550c 1262 if (dfa->nodes[node].accept_mb)
56b168be 1263 naccepted = check_node_accept_bytes (dfa, node, &mctx->input, *pidx);
434d3784
UD
1264 else
1265#endif /* RE_ENABLE_I18N */
1266 if (type == OP_BACK_REF)
15a7d175 1267 {
eb04c213 1268 Idx subexp_idx = dfa->nodes[node].opr.idx + 1;
fc141ea7
AS
1269 if (subexp_idx < nregs)
1270 naccepted = regs[subexp_idx].rm_eo - regs[subexp_idx].rm_so;
15a7d175
UD
1271 if (fs != NULL)
1272 {
fc141ea7
AS
1273 if (subexp_idx >= nregs
1274 || regs[subexp_idx].rm_so == -1
1275 || regs[subexp_idx].rm_eo == -1)
15a7d175
UD
1276 return -1;
1277 else if (naccepted)
1278 {
56b168be 1279 char *buf = (char *) re_string_get_buffer (&mctx->input);
583dd860
PE
1280 if (mctx->input.valid_len - *pidx < naccepted
1281 || (memcmp (buf + regs[subexp_idx].rm_so, buf + *pidx,
1282 naccepted)
1283 != 0))
15a7d175
UD
1284 return -1;
1285 }
1286 }
1287
1288 if (naccepted == 0)
1289 {
eb04c213
AZ
1290 Idx dest_node;
1291 ok = re_node_set_insert (eps_via_nodes, node);
f4efbdfb 1292 if (__glibc_unlikely (! ok))
15a7d175
UD
1293 return -2;
1294 dest_node = dfa->edests[node].elems[0];
1295 if (re_node_set_contains (&mctx->state_log[*pidx]->nodes,
1296 dest_node))
1297 return dest_node;
1298 }
1299 }
3b0bdc72
UD
1300
1301 if (naccepted != 0
e3a87852 1302 || check_node_accept (mctx, dfa->nodes + node, *pidx))
15a7d175 1303 {
eb04c213 1304 Idx dest_node = dfa->nexts[node];
15a7d175
UD
1305 *pidx = (naccepted == 0) ? *pidx + 1 : *pidx + naccepted;
1306 if (fs && (*pidx > mctx->match_last || mctx->state_log[*pidx] == NULL
1307 || !re_node_set_contains (&mctx->state_log[*pidx]->nodes,
1308 dest_node)))
1309 return -1;
1310 re_node_set_empty (eps_via_nodes);
1311 return dest_node;
1312 }
3b0bdc72 1313 }
a3022b82
UD
1314 return -1;
1315}
1316
1317static reg_errcode_t
b41bd5bc 1318__attribute_warn_unused_result__
eb04c213
AZ
1319push_fail_stack (struct re_fail_stack_t *fs, Idx str_idx, Idx dest_node,
1320 Idx nregs, regmatch_t *regs, re_node_set *eps_via_nodes)
a3022b82
UD
1321{
1322 reg_errcode_t err;
eb04c213 1323 Idx num = fs->num++;
a3022b82
UD
1324 if (fs->num == fs->alloc)
1325 {
1b2c2628 1326 struct re_fail_stack_ent_t *new_array;
eb04c213
AZ
1327 new_array = re_realloc (fs->stack, struct re_fail_stack_ent_t,
1328 fs->alloc * 2);
1b2c2628 1329 if (new_array == NULL)
15a7d175 1330 return REG_ESPACE;
44777771 1331 fs->alloc *= 2;
1b2c2628 1332 fs->stack = new_array;
a3022b82
UD
1333 }
1334 fs->stack[num].idx = str_idx;
5cf1ec52 1335 fs->stack[num].node = dest_node;
a3022b82 1336 fs->stack[num].regs = re_malloc (regmatch_t, nregs);
5a299c96
UD
1337 if (fs->stack[num].regs == NULL)
1338 return REG_ESPACE;
a3022b82
UD
1339 memcpy (fs->stack[num].regs, regs, sizeof (regmatch_t) * nregs);
1340 err = re_node_set_init_copy (&fs->stack[num].eps_via_nodes, eps_via_nodes);
1341 return err;
1342}
1b2c2628 1343
eb04c213
AZ
1344static Idx
1345pop_fail_stack (struct re_fail_stack_t *fs, Idx *pidx, Idx nregs,
e2f55264 1346 regmatch_t *regs, re_node_set *eps_via_nodes)
a3022b82 1347{
eb04c213 1348 Idx num = --fs->num;
2a0356e1 1349 DEBUG_ASSERT (num >= 0);
44777771 1350 *pidx = fs->stack[num].idx;
a3022b82
UD
1351 memcpy (regs, fs->stack[num].regs, sizeof (regmatch_t) * nregs);
1352 re_node_set_free (eps_via_nodes);
485d775d 1353 re_free (fs->stack[num].regs);
a3022b82
UD
1354 *eps_via_nodes = fs->stack[num].eps_via_nodes;
1355 return fs->stack[num].node;
3b0bdc72
UD
1356}
1357
1358/* Set the positions where the subexpressions are starts/ends to registers
1359 PMATCH.
1360 Note: We assume that pmatch[0] is already set, and
97fd3a30 1361 pmatch[i].rm_so == pmatch[i].rm_eo == -1 for 0 < i < nmatch. */
3b0bdc72 1362
a9388965 1363static reg_errcode_t
b41bd5bc 1364__attribute_warn_unused_result__
e2f55264 1365set_regs (const regex_t *preg, const re_match_context_t *mctx, size_t nmatch,
eb04c213 1366 regmatch_t *pmatch, bool fl_backtrack)
3b0bdc72 1367{
eb04c213
AZ
1368 const re_dfa_t *dfa = preg->buffer;
1369 Idx idx, cur_node;
3b0bdc72 1370 re_node_set eps_via_nodes;
a3022b82 1371 struct re_fail_stack_t *fs;
6b6557e8
UD
1372 struct re_fail_stack_t fs_body = { 0, 2, NULL };
1373 regmatch_t *prev_idx_match;
eb04c213 1374 bool prev_idx_match_malloced = false;
6b6557e8 1375
2a0356e1
AZ
1376 DEBUG_ASSERT (nmatch > 1);
1377 DEBUG_ASSERT (mctx->state_log != NULL);
a3022b82
UD
1378 if (fl_backtrack)
1379 {
1380 fs = &fs_body;
1381 fs->stack = re_malloc (struct re_fail_stack_ent_t, fs->alloc);
6b6557e8
UD
1382 if (fs->stack == NULL)
1383 return REG_ESPACE;
a3022b82
UD
1384 }
1385 else
1386 fs = NULL;
6b6557e8 1387
3b0bdc72 1388 cur_node = dfa->init_node;
3b0bdc72 1389 re_node_set_init_empty (&eps_via_nodes);
6b6557e8 1390
2d87db5b
UD
1391 if (__libc_use_alloca (nmatch * sizeof (regmatch_t)))
1392 prev_idx_match = (regmatch_t *) alloca (nmatch * sizeof (regmatch_t));
1393 else
1394 {
1395 prev_idx_match = re_malloc (regmatch_t, nmatch);
1396 if (prev_idx_match == NULL)
1397 {
1398 free_fail_stack_return (fs);
1399 return REG_ESPACE;
1400 }
eb04c213 1401 prev_idx_match_malloced = true;
2d87db5b 1402 }
963d8d78 1403 memcpy (prev_idx_match, pmatch, sizeof (regmatch_t) * nmatch);
6b6557e8 1404
3b0bdc72
UD
1405 for (idx = pmatch[0].rm_so; idx <= pmatch[0].rm_eo ;)
1406 {
963d8d78 1407 update_regs (dfa, pmatch, prev_idx_match, cur_node, idx, nmatch);
6b6557e8 1408
a3022b82 1409 if (idx == pmatch[0].rm_eo && cur_node == mctx->last_node)
15a7d175 1410 {
eb04c213 1411 Idx reg_idx;
15a7d175
UD
1412 if (fs)
1413 {
1414 for (reg_idx = 0; reg_idx < nmatch; ++reg_idx)
1415 if (pmatch[reg_idx].rm_so > -1 && pmatch[reg_idx].rm_eo == -1)
1416 break;
1417 if (reg_idx == nmatch)
1418 {
1419 re_node_set_free (&eps_via_nodes);
2d87db5b
UD
1420 if (prev_idx_match_malloced)
1421 re_free (prev_idx_match);
15a7d175
UD
1422 return free_fail_stack_return (fs);
1423 }
1424 cur_node = pop_fail_stack (fs, &idx, nmatch, pmatch,
1425 &eps_via_nodes);
1426 }
1427 else
1428 {
1429 re_node_set_free (&eps_via_nodes);
2d87db5b
UD
1430 if (prev_idx_match_malloced)
1431 re_free (prev_idx_match);
15a7d175
UD
1432 return REG_NOERROR;
1433 }
1434 }
3b0bdc72
UD
1435
1436 /* Proceed to next node. */
e3a87852 1437 cur_node = proceed_next_node (mctx, nmatch, pmatch, &idx, cur_node,
15a7d175 1438 &eps_via_nodes, fs);
a3022b82 1439
f4efbdfb 1440 if (__glibc_unlikely (cur_node < 0))
15a7d175 1441 {
f4efbdfb 1442 if (__glibc_unlikely (cur_node == -2))
44777771
UD
1443 {
1444 re_node_set_free (&eps_via_nodes);
2d87db5b
UD
1445 if (prev_idx_match_malloced)
1446 re_free (prev_idx_match);
44777771
UD
1447 free_fail_stack_return (fs);
1448 return REG_ESPACE;
1449 }
15a7d175
UD
1450 if (fs)
1451 cur_node = pop_fail_stack (fs, &idx, nmatch, pmatch,
1452 &eps_via_nodes);
1453 else
1454 {
1455 re_node_set_free (&eps_via_nodes);
2d87db5b
UD
1456 if (prev_idx_match_malloced)
1457 re_free (prev_idx_match);
15a7d175
UD
1458 return REG_NOMATCH;
1459 }
1460 }
3b0bdc72
UD
1461 }
1462 re_node_set_free (&eps_via_nodes);
2d87db5b
UD
1463 if (prev_idx_match_malloced)
1464 re_free (prev_idx_match);
485d775d
UD
1465 return free_fail_stack_return (fs);
1466}
1467
1468static reg_errcode_t
e2f55264 1469free_fail_stack_return (struct re_fail_stack_t *fs)
485d775d
UD
1470{
1471 if (fs)
1472 {
eb04c213 1473 Idx fs_idx;
485d775d 1474 for (fs_idx = 0; fs_idx < fs->num; ++fs_idx)
15a7d175
UD
1475 {
1476 re_node_set_free (&fs->stack[fs_idx].eps_via_nodes);
1477 re_free (fs->stack[fs_idx].regs);
1478 }
485d775d
UD
1479 re_free (fs->stack);
1480 }
a9388965 1481 return REG_NOERROR;
3b0bdc72
UD
1482}
1483
81c64d40 1484static void
e2f55264 1485update_regs (const re_dfa_t *dfa, regmatch_t *pmatch,
eb04c213 1486 regmatch_t *prev_idx_match, Idx cur_node, Idx cur_idx, Idx nmatch)
81c64d40
UD
1487{
1488 int type = dfa->nodes[cur_node].type;
81c64d40
UD
1489 if (type == OP_OPEN_SUBEXP)
1490 {
eb04c213 1491 Idx reg_num = dfa->nodes[cur_node].opr.idx + 1;
6b6557e8 1492
81c64d40 1493 /* We are at the first node of this sub expression. */
6b6557e8
UD
1494 if (reg_num < nmatch)
1495 {
1496 pmatch[reg_num].rm_so = cur_idx;
1497 pmatch[reg_num].rm_eo = -1;
1498 }
81c64d40
UD
1499 }
1500 else if (type == OP_CLOSE_SUBEXP)
6b6557e8 1501 {
eb04c213 1502 Idx reg_num = dfa->nodes[cur_node].opr.idx + 1;
6b6557e8
UD
1503 if (reg_num < nmatch)
1504 {
1505 /* We are at the last node of this sub expression. */
1506 if (pmatch[reg_num].rm_so < cur_idx)
1507 {
1508 pmatch[reg_num].rm_eo = cur_idx;
1509 /* This is a non-empty match or we are not inside an optional
1510 subexpression. Accept this right away. */
1511 memcpy (prev_idx_match, pmatch, sizeof (regmatch_t) * nmatch);
1512 }
1513 else
1514 {
1515 if (dfa->nodes[cur_node].opt_subexp
1516 && prev_idx_match[reg_num].rm_so != -1)
1517 /* We transited through an empty match for an optional
1518 subexpression, like (a?)*, and this is not the subexp's
1519 first match. Copy back the old content of the registers
1520 so that matches of an inner subexpression are undone as
1521 well, like in ((a?))*. */
1522 memcpy (pmatch, prev_idx_match, sizeof (regmatch_t) * nmatch);
1523 else
1524 /* We completed a subexpression, but it may be part of
1525 an optional one, so do not update PREV_IDX_MATCH. */
1526 pmatch[reg_num].rm_eo = cur_idx;
1527 }
1528 }
1529 }
0742e48e 1530}
81c64d40 1531
0742e48e 1532/* This function checks the STATE_LOG from the SCTX->last_str_idx to 0
612546c6
UD
1533 and sift the nodes in each states according to the following rules.
1534 Updated state_log will be wrote to STATE_LOG.
3b0bdc72 1535
eb04c213 1536 Rules: We throw away the Node 'a' in the STATE_LOG[STR_IDX] if...
3b0bdc72 1537 1. When STR_IDX == MATCH_LAST(the last index in the state_log):
eb04c213
AZ
1538 If 'a' isn't the LAST_NODE and 'a' can't epsilon transit to
1539 the LAST_NODE, we throw away the node 'a'.
1540 2. When 0 <= STR_IDX < MATCH_LAST and 'a' accepts
1541 string 's' and transit to 'b':
15a7d175 1542 i. If 'b' isn't in the STATE_LOG[STR_IDX+strlen('s')], we throw
eb04c213 1543 away the node 'a'.
15a7d175 1544 ii. If 'b' is in the STATE_LOG[STR_IDX+strlen('s')] but 'b' is
eb04c213 1545 thrown away, we throw away the node 'a'.
d0b96fc4 1546 3. When 0 <= STR_IDX < MATCH_LAST and 'a' epsilon transit to 'b':
15a7d175 1547 i. If 'b' isn't in the STATE_LOG[STR_IDX], we throw away the
eb04c213 1548 node 'a'.
bb3f4825 1549 ii. If 'b' is in the STATE_LOG[STR_IDX] but 'b' is thrown away,
eb04c213 1550 we throw away the node 'a'. */
3b0bdc72
UD
1551
1552#define STATE_NODE_CONTAINS(state,node) \
1553 ((state) != NULL && re_node_set_contains (&(state)->nodes, node))
1554
a9388965 1555static reg_errcode_t
e2f55264 1556sift_states_backward (const re_match_context_t *mctx, re_sift_context_t *sctx)
3b0bdc72 1557{
a9388965 1558 reg_errcode_t err;
0742e48e 1559 int null_cnt = 0;
eb04c213 1560 Idx str_idx = sctx->last_str_idx;
0742e48e 1561 re_node_set cur_dest;
3b0bdc72 1562
2a0356e1 1563 DEBUG_ASSERT (mctx->state_log != NULL && mctx->state_log[str_idx] != NULL);
3b0bdc72
UD
1564
1565 /* Build sifted state_log[str_idx]. It has the nodes which can epsilon
1566 transit to the last_node and the last_node itself. */
0742e48e 1567 err = re_node_set_init_1 (&cur_dest, sctx->last_node);
f4efbdfb 1568 if (__glibc_unlikely (err != REG_NOERROR))
a9388965 1569 return err;
e3a87852 1570 err = update_cur_sifted_state (mctx, sctx, str_idx, &cur_dest);
f4efbdfb 1571 if (__glibc_unlikely (err != REG_NOERROR))
1b2c2628 1572 goto free_return;
3b0bdc72
UD
1573
1574 /* Then check each states in the state_log. */
612546c6 1575 while (str_idx > 0)
3b0bdc72 1576 {
3b0bdc72 1577 /* Update counters. */
0742e48e
UD
1578 null_cnt = (sctx->sifted_states[str_idx] == NULL) ? null_cnt + 1 : 0;
1579 if (null_cnt > mctx->max_mb_elem_len)
15a7d175
UD
1580 {
1581 memset (sctx->sifted_states, '\0',
1582 sizeof (re_dfastate_t *) * str_idx);
1583 re_node_set_free (&cur_dest);
1584 return REG_NOERROR;
1585 }
0742e48e 1586 re_node_set_empty (&cur_dest);
3b0bdc72 1587 --str_idx;
15a7d175 1588
e40a38b3
UD
1589 if (mctx->state_log[str_idx])
1590 {
1591 err = build_sifted_states (mctx, sctx, str_idx, &cur_dest);
f4efbdfb 1592 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3 1593 goto free_return;
15a7d175 1594 }
3b0bdc72 1595
0742e48e 1596 /* Add all the nodes which satisfy the following conditions:
15a7d175
UD
1597 - It can epsilon transit to a node in CUR_DEST.
1598 - It is in CUR_SRC.
1599 And update state_log. */
e3a87852 1600 err = update_cur_sifted_state (mctx, sctx, str_idx, &cur_dest);
f4efbdfb 1601 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 1602 goto free_return;
3b0bdc72 1603 }
1b2c2628
UD
1604 err = REG_NOERROR;
1605 free_return:
0742e48e 1606 re_node_set_free (&cur_dest);
1b2c2628 1607 return err;
3b0bdc72
UD
1608}
1609
e40a38b3 1610static reg_errcode_t
b41bd5bc 1611__attribute_warn_unused_result__
e2f55264 1612build_sifted_states (const re_match_context_t *mctx, re_sift_context_t *sctx,
eb04c213 1613 Idx str_idx, re_node_set *cur_dest)
e40a38b3 1614{
76b864c8
UD
1615 const re_dfa_t *const dfa = mctx->dfa;
1616 const re_node_set *cur_src = &mctx->state_log[str_idx]->non_eps_nodes;
eb04c213 1617 Idx i;
e40a38b3
UD
1618
1619 /* Then build the next sifted state.
eb04c213
AZ
1620 We build the next sifted state on 'cur_dest', and update
1621 'sifted_states[str_idx]' with 'cur_dest'.
e40a38b3 1622 Note:
eb04c213
AZ
1623 'cur_dest' is the sifted state from 'state_log[str_idx + 1]'.
1624 'cur_src' points the node_set of the old 'state_log[str_idx]'
5cf1ec52 1625 (with the epsilon nodes pre-filtered out). */
e40a38b3
UD
1626 for (i = 0; i < cur_src->nelem; i++)
1627 {
eb04c213 1628 Idx prev_node = cur_src->elems[i];
e40a38b3 1629 int naccepted = 0;
eb04c213 1630 bool ok;
2a0356e1 1631 DEBUG_ASSERT (!IS_EPSILON_NODE (dfa->nodes[prev_node].type));
e40a38b3 1632
e40a38b3 1633#ifdef RE_ENABLE_I18N
eb04c213 1634 /* If the node may accept "multi byte". */
02f3550c 1635 if (dfa->nodes[prev_node].accept_mb)
e40a38b3
UD
1636 naccepted = sift_states_iter_mb (mctx, sctx, prev_node,
1637 str_idx, sctx->last_str_idx);
1638#endif /* RE_ENABLE_I18N */
1639
1640 /* We don't check backreferences here.
1641 See update_cur_sifted_state(). */
1642 if (!naccepted
1643 && check_node_accept (mctx, dfa->nodes + prev_node, str_idx)
1644 && STATE_NODE_CONTAINS (sctx->sifted_states[str_idx + 1],
1645 dfa->nexts[prev_node]))
1646 naccepted = 1;
1647
1648 if (naccepted == 0)
1649 continue;
1650
1651 if (sctx->limits.nelem)
1652 {
eb04c213 1653 Idx to_idx = str_idx + naccepted;
e40a38b3
UD
1654 if (check_dst_limits (mctx, &sctx->limits,
1655 dfa->nexts[prev_node], to_idx,
1656 prev_node, str_idx))
1657 continue;
1658 }
eb04c213 1659 ok = re_node_set_insert (cur_dest, prev_node);
f4efbdfb 1660 if (__glibc_unlikely (! ok))
e40a38b3
UD
1661 return REG_ESPACE;
1662 }
1663
1664 return REG_NOERROR;
1665}
1666
3b0bdc72
UD
1667/* Helper functions. */
1668
25337753 1669static reg_errcode_t
eb04c213 1670clean_state_log_if_needed (re_match_context_t *mctx, Idx next_state_log_idx)
3b0bdc72 1671{
eb04c213 1672 Idx top = mctx->state_log_top;
612546c6 1673
8887a920
UD
1674 if ((next_state_log_idx >= mctx->input.bufs_len
1675 && mctx->input.bufs_len < mctx->input.len)
56b168be
UD
1676 || (next_state_log_idx >= mctx->input.valid_len
1677 && mctx->input.valid_len < mctx->input.len))
612546c6
UD
1678 {
1679 reg_errcode_t err;
a445af0b 1680 err = extend_buffers (mctx, next_state_log_idx + 1);
f4efbdfb 1681 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 1682 return err;
612546c6
UD
1683 }
1684
3b0bdc72
UD
1685 if (top < next_state_log_idx)
1686 {
612546c6 1687 memset (mctx->state_log + top + 1, '\0',
15a7d175 1688 sizeof (re_dfastate_t *) * (next_state_log_idx - top));
3b0bdc72
UD
1689 mctx->state_log_top = next_state_log_idx;
1690 }
612546c6 1691 return REG_NOERROR;
3b0bdc72
UD
1692}
1693
1b2c2628 1694static reg_errcode_t
e2f55264 1695merge_state_array (const re_dfa_t *dfa, re_dfastate_t **dst,
eb04c213 1696 re_dfastate_t **src, Idx num)
3b0bdc72 1697{
eb04c213 1698 Idx st_idx;
0742e48e
UD
1699 reg_errcode_t err;
1700 for (st_idx = 0; st_idx < num; ++st_idx)
1701 {
1702 if (dst[st_idx] == NULL)
15a7d175 1703 dst[st_idx] = src[st_idx];
0742e48e 1704 else if (src[st_idx] != NULL)
15a7d175
UD
1705 {
1706 re_node_set merged_set;
1707 err = re_node_set_init_union (&merged_set, &dst[st_idx]->nodes,
1708 &src[st_idx]->nodes);
f4efbdfb 1709 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
1710 return err;
1711 dst[st_idx] = re_acquire_state (&err, dfa, &merged_set);
1712 re_node_set_free (&merged_set);
f4efbdfb 1713 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
1714 return err;
1715 }
0742e48e
UD
1716 }
1717 return REG_NOERROR;
3b0bdc72
UD
1718}
1719
0742e48e 1720static reg_errcode_t
e2f55264 1721update_cur_sifted_state (const re_match_context_t *mctx,
eb04c213 1722 re_sift_context_t *sctx, Idx str_idx,
e2f55264 1723 re_node_set *dest_nodes)
3b0bdc72 1724{
76b864c8 1725 const re_dfa_t *const dfa = mctx->dfa;
c0c9615c 1726 reg_errcode_t err = REG_NOERROR;
0742e48e 1727 const re_node_set *candidates;
e40a38b3 1728 candidates = ((mctx->state_log[str_idx] == NULL) ? NULL
15a7d175 1729 : &mctx->state_log[str_idx]->nodes);
0742e48e 1730
e40a38b3
UD
1731 if (dest_nodes->nelem == 0)
1732 sctx->sifted_states[str_idx] = NULL;
1733 else
485d775d 1734 {
e40a38b3
UD
1735 if (candidates)
1736 {
1737 /* At first, add the nodes which can epsilon transit to a node in
1738 DEST_NODE. */
1739 err = add_epsilon_src_nodes (dfa, dest_nodes, candidates);
f4efbdfb 1740 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3 1741 return err;
0742e48e 1742
e40a38b3
UD
1743 /* Then, check the limitations in the current sift_context. */
1744 if (sctx->limits.nelem)
1745 {
1746 err = check_subexp_limits (dfa, dest_nodes, candidates, &sctx->limits,
1747 mctx->bkref_ents, str_idx);
f4efbdfb 1748 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3
UD
1749 return err;
1750 }
1751 }
1752
1753 sctx->sifted_states[str_idx] = re_acquire_state (&err, dfa, dest_nodes);
f4efbdfb 1754 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 1755 return err;
0742e48e
UD
1756 }
1757
e40a38b3 1758 if (candidates && mctx->state_log[str_idx]->has_backref)
0742e48e 1759 {
d2c38eb3 1760 err = sift_states_bkref (mctx, sctx, str_idx, candidates);
f4efbdfb 1761 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 1762 return err;
0742e48e
UD
1763 }
1764 return REG_NOERROR;
3b0bdc72
UD
1765}
1766
a9388965 1767static reg_errcode_t
b41bd5bc 1768__attribute_warn_unused_result__
e2f55264
UD
1769add_epsilon_src_nodes (const re_dfa_t *dfa, re_node_set *dest_nodes,
1770 const re_node_set *candidates)
3b0bdc72 1771{
5cf1ec52 1772 reg_errcode_t err = REG_NOERROR;
eb04c213 1773 Idx i;
0742e48e 1774
5cf1ec52 1775 re_dfastate_t *state = re_acquire_state (&err, dfa, dest_nodes);
f4efbdfb 1776 if (__glibc_unlikely (err != REG_NOERROR))
0742e48e 1777 return err;
5cf1ec52
UD
1778
1779 if (!state->inveclosure.alloc)
3b0bdc72 1780 {
5cf1ec52 1781 err = re_node_set_alloc (&state->inveclosure, dest_nodes->nelem);
f4efbdfb 1782 if (__glibc_unlikely (err != REG_NOERROR))
2da42bc0 1783 return REG_ESPACE;
5cf1ec52 1784 for (i = 0; i < dest_nodes->nelem; i++)
2da42bc0
UD
1785 {
1786 err = re_node_set_merge (&state->inveclosure,
1787 dfa->inveclosures + dest_nodes->elems[i]);
f4efbdfb 1788 if (__glibc_unlikely (err != REG_NOERROR))
2da42bc0
UD
1789 return REG_ESPACE;
1790 }
0742e48e 1791 }
5cf1ec52
UD
1792 return re_node_set_add_intersect (dest_nodes, candidates,
1793 &state->inveclosure);
0742e48e 1794}
3b0bdc72 1795
0742e48e 1796static reg_errcode_t
eb04c213 1797sub_epsilon_src_nodes (const re_dfa_t *dfa, Idx node, re_node_set *dest_nodes,
e2f55264 1798 const re_node_set *candidates)
0742e48e 1799{
eb04c213 1800 Idx ecl_idx;
0742e48e
UD
1801 reg_errcode_t err;
1802 re_node_set *inv_eclosure = dfa->inveclosures + node;
1803 re_node_set except_nodes;
1804 re_node_set_init_empty (&except_nodes);
1805 for (ecl_idx = 0; ecl_idx < inv_eclosure->nelem; ++ecl_idx)
1806 {
eb04c213 1807 Idx cur_node = inv_eclosure->elems[ecl_idx];
15a7d175
UD
1808 if (cur_node == node)
1809 continue;
1810 if (IS_EPSILON_NODE (dfa->nodes[cur_node].type))
1811 {
eb04c213
AZ
1812 Idx edst1 = dfa->edests[cur_node].elems[0];
1813 Idx edst2 = ((dfa->edests[cur_node].nelem > 1)
15a7d175
UD
1814 ? dfa->edests[cur_node].elems[1] : -1);
1815 if ((!re_node_set_contains (inv_eclosure, edst1)
1816 && re_node_set_contains (dest_nodes, edst1))
1817 || (edst2 > 0
1818 && !re_node_set_contains (inv_eclosure, edst2)
1819 && re_node_set_contains (dest_nodes, edst2)))
1820 {
1821 err = re_node_set_add_intersect (&except_nodes, candidates,
1822 dfa->inveclosures + cur_node);
f4efbdfb 1823 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
1824 {
1825 re_node_set_free (&except_nodes);
1826 return err;
1827 }
1828 }
1829 }
0742e48e
UD
1830 }
1831 for (ecl_idx = 0; ecl_idx < inv_eclosure->nelem; ++ecl_idx)
1832 {
eb04c213 1833 Idx cur_node = inv_eclosure->elems[ecl_idx];
15a7d175
UD
1834 if (!re_node_set_contains (&except_nodes, cur_node))
1835 {
eb04c213 1836 Idx idx = re_node_set_contains (dest_nodes, cur_node) - 1;
15a7d175
UD
1837 re_node_set_remove_at (dest_nodes, idx);
1838 }
0742e48e
UD
1839 }
1840 re_node_set_free (&except_nodes);
1841 return REG_NOERROR;
1842}
1843
eb04c213
AZ
1844static bool
1845check_dst_limits (const re_match_context_t *mctx, const re_node_set *limits,
1846 Idx dst_node, Idx dst_idx, Idx src_node, Idx src_idx)
a3022b82 1847{
76b864c8 1848 const re_dfa_t *const dfa = mctx->dfa;
eb04c213 1849 Idx lim_idx, src_pos, dst_pos;
a3022b82 1850
eb04c213
AZ
1851 Idx dst_bkref_idx = search_cur_bkref_entry (mctx, dst_idx);
1852 Idx src_bkref_idx = search_cur_bkref_entry (mctx, src_idx);
a3022b82
UD
1853 for (lim_idx = 0; lim_idx < limits->nelem; ++lim_idx)
1854 {
eb04c213 1855 Idx subexp_idx;
a3022b82
UD
1856 struct re_backref_cache_entry *ent;
1857 ent = mctx->bkref_ents + limits->elems[lim_idx];
d8f73de8 1858 subexp_idx = dfa->nodes[ent->node].opr.idx;
a3022b82 1859
e3a87852 1860 dst_pos = check_dst_limits_calc_pos (mctx, limits->elems[lim_idx],
e40a38b3
UD
1861 subexp_idx, dst_node, dst_idx,
1862 dst_bkref_idx);
e3a87852 1863 src_pos = check_dst_limits_calc_pos (mctx, limits->elems[lim_idx],
e40a38b3
UD
1864 subexp_idx, src_node, src_idx,
1865 src_bkref_idx);
a3022b82
UD
1866
1867 /* In case of:
15a7d175
UD
1868 <src> <dst> ( <subexp> )
1869 ( <subexp> ) <src> <dst>
1870 ( <subexp1> <src> <subexp2> <dst> <subexp3> ) */
a3022b82 1871 if (src_pos == dst_pos)
15a7d175 1872 continue; /* This is unrelated limitation. */
a3022b82 1873 else
eb04c213 1874 return true;
a3022b82 1875 }
eb04c213 1876 return false;
a3022b82
UD
1877}
1878
1879static int
e2f55264 1880check_dst_limits_calc_pos_1 (const re_match_context_t *mctx, int boundaries,
eb04c213 1881 Idx subexp_idx, Idx from_node, Idx bkref_idx)
a3022b82 1882{
76b864c8
UD
1883 const re_dfa_t *const dfa = mctx->dfa;
1884 const re_node_set *eclosures = dfa->eclosures + from_node;
eb04c213 1885 Idx node_idx;
d0b96fc4 1886
d0b96fc4
UD
1887 /* Else, we are on the boundary: examine the nodes on the epsilon
1888 closure. */
1cef7b3c
UD
1889 for (node_idx = 0; node_idx < eclosures->nelem; ++node_idx)
1890 {
eb04c213 1891 Idx node = eclosures->elems[node_idx];
d0b96fc4
UD
1892 switch (dfa->nodes[node].type)
1893 {
1894 case OP_BACK_REF:
d8f73de8
UD
1895 if (bkref_idx != -1)
1896 {
1897 struct re_backref_cache_entry *ent = mctx->bkref_ents + bkref_idx;
1898 do
2da42bc0 1899 {
eb04c213
AZ
1900 Idx dst;
1901 int cpos;
d0b96fc4 1902
d8f73de8
UD
1903 if (ent->node != node)
1904 continue;
d0b96fc4 1905
2c05d33f
UD
1906 if (subexp_idx < BITSET_WORD_BITS
1907 && !(ent->eps_reachable_subexps_map
1908 & ((bitset_word_t) 1 << subexp_idx)))
d8f73de8 1909 continue;
d0b96fc4 1910
d8f73de8
UD
1911 /* Recurse trying to reach the OP_OPEN_SUBEXP and
1912 OP_CLOSE_SUBEXP cases below. But, if the
1913 destination node is the same node as the source
1914 node, don't recurse because it would cause an
1915 infinite loop: a regex that exhibits this behavior
1916 is ()\1*\1* */
1917 dst = dfa->edests[node].elems[0];
1918 if (dst == from_node)
1919 {
1920 if (boundaries & 1)
2da42bc0 1921 return -1;
d8f73de8 1922 else /* if (boundaries & 2) */
2da42bc0 1923 return 0;
d8f73de8 1924 }
7db61208 1925
d8f73de8
UD
1926 cpos =
1927 check_dst_limits_calc_pos_1 (mctx, boundaries, subexp_idx,
1928 dst, bkref_idx);
1929 if (cpos == -1 /* && (boundaries & 1) */)
1930 return -1;
1931 if (cpos == 0 && (boundaries & 2))
1932 return 0;
1933
2c05d33f
UD
1934 if (subexp_idx < BITSET_WORD_BITS)
1935 ent->eps_reachable_subexps_map
1936 &= ~((bitset_word_t) 1 << subexp_idx);
2da42bc0 1937 }
d8f73de8
UD
1938 while (ent++->more);
1939 }
1940 break;
f0c7c524 1941
d0b96fc4 1942 case OP_OPEN_SUBEXP:
e40a38b3 1943 if ((boundaries & 1) && subexp_idx == dfa->nodes[node].opr.idx)
d0b96fc4
UD
1944 return -1;
1945 break;
f0c7c524 1946
d0b96fc4 1947 case OP_CLOSE_SUBEXP:
e40a38b3 1948 if ((boundaries & 2) && subexp_idx == dfa->nodes[node].opr.idx)
d0b96fc4
UD
1949 return 0;
1950 break;
1951
1952 default:
15a7d175
UD
1953 break;
1954 }
a3022b82 1955 }
d0b96fc4 1956
e40a38b3
UD
1957 return (boundaries & 2) ? 1 : 0;
1958}
1959
1960static int
eb04c213
AZ
1961check_dst_limits_calc_pos (const re_match_context_t *mctx, Idx limit,
1962 Idx subexp_idx, Idx from_node, Idx str_idx,
1963 Idx bkref_idx)
e40a38b3
UD
1964{
1965 struct re_backref_cache_entry *lim = mctx->bkref_ents + limit;
1966 int boundaries;
1967
1968 /* If we are outside the range of the subexpression, return -1 or 1. */
1969 if (str_idx < lim->subexp_from)
1970 return -1;
1971
1972 if (lim->subexp_to < str_idx)
d0b96fc4 1973 return 1;
e40a38b3
UD
1974
1975 /* If we are within the subexpression, return 0. */
1976 boundaries = (str_idx == lim->subexp_from);
1977 boundaries |= (str_idx == lim->subexp_to) << 1;
1978 if (boundaries == 0)
d0b96fc4 1979 return 0;
e40a38b3
UD
1980
1981 /* Else, examine epsilon closure. */
1982 return check_dst_limits_calc_pos_1 (mctx, boundaries, subexp_idx,
1983 from_node, bkref_idx);
a3022b82
UD
1984}
1985
0742e48e
UD
1986/* Check the limitations of sub expressions LIMITS, and remove the nodes
1987 which are against limitations from DEST_NODES. */
1988
1989static reg_errcode_t
e2f55264
UD
1990check_subexp_limits (const re_dfa_t *dfa, re_node_set *dest_nodes,
1991 const re_node_set *candidates, re_node_set *limits,
eb04c213 1992 struct re_backref_cache_entry *bkref_ents, Idx str_idx)
0742e48e
UD
1993{
1994 reg_errcode_t err;
eb04c213 1995 Idx node_idx, lim_idx;
0742e48e
UD
1996
1997 for (lim_idx = 0; lim_idx < limits->nelem; ++lim_idx)
1998 {
eb04c213 1999 Idx subexp_idx;
0742e48e
UD
2000 struct re_backref_cache_entry *ent;
2001 ent = bkref_ents + limits->elems[lim_idx];
2002
2003 if (str_idx <= ent->subexp_from || ent->str_idx < str_idx)
15a7d175 2004 continue; /* This is unrelated limitation. */
0742e48e 2005
d8f73de8 2006 subexp_idx = dfa->nodes[ent->node].opr.idx;
0742e48e 2007 if (ent->subexp_to == str_idx)
15a7d175 2008 {
eb04c213
AZ
2009 Idx ops_node = -1;
2010 Idx cls_node = -1;
15a7d175
UD
2011 for (node_idx = 0; node_idx < dest_nodes->nelem; ++node_idx)
2012 {
eb04c213 2013 Idx node = dest_nodes->elems[node_idx];
46bf9de7 2014 re_token_type_t type = dfa->nodes[node].type;
15a7d175
UD
2015 if (type == OP_OPEN_SUBEXP
2016 && subexp_idx == dfa->nodes[node].opr.idx)
2017 ops_node = node;
2018 else if (type == OP_CLOSE_SUBEXP
2019 && subexp_idx == dfa->nodes[node].opr.idx)
2020 cls_node = node;
2021 }
2022
2023 /* Check the limitation of the open subexpression. */
2024 /* Note that (ent->subexp_to = str_idx != ent->subexp_from). */
2025 if (ops_node >= 0)
2026 {
46bf9de7
UD
2027 err = sub_epsilon_src_nodes (dfa, ops_node, dest_nodes,
2028 candidates);
f4efbdfb 2029 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
2030 return err;
2031 }
46bf9de7 2032
15a7d175 2033 /* Check the limitation of the close subexpression. */
46bf9de7
UD
2034 if (cls_node >= 0)
2035 for (node_idx = 0; node_idx < dest_nodes->nelem; ++node_idx)
2036 {
eb04c213 2037 Idx node = dest_nodes->elems[node_idx];
46bf9de7
UD
2038 if (!re_node_set_contains (dfa->inveclosures + node,
2039 cls_node)
2040 && !re_node_set_contains (dfa->eclosures + node,
2041 cls_node))
2042 {
2043 /* It is against this limitation.
2044 Remove it form the current sifted state. */
2045 err = sub_epsilon_src_nodes (dfa, node, dest_nodes,
2046 candidates);
f4efbdfb 2047 if (__glibc_unlikely (err != REG_NOERROR))
46bf9de7
UD
2048 return err;
2049 --node_idx;
2050 }
2051 }
15a7d175 2052 }
0742e48e 2053 else /* (ent->subexp_to != str_idx) */
15a7d175
UD
2054 {
2055 for (node_idx = 0; node_idx < dest_nodes->nelem; ++node_idx)
2056 {
eb04c213 2057 Idx node = dest_nodes->elems[node_idx];
46bf9de7 2058 re_token_type_t type = dfa->nodes[node].type;
15a7d175
UD
2059 if (type == OP_CLOSE_SUBEXP || type == OP_OPEN_SUBEXP)
2060 {
2061 if (subexp_idx != dfa->nodes[node].opr.idx)
2062 continue;
d8f73de8
UD
2063 /* It is against this limitation.
2064 Remove it form the current sifted state. */
2065 err = sub_epsilon_src_nodes (dfa, node, dest_nodes,
2066 candidates);
f4efbdfb 2067 if (__glibc_unlikely (err != REG_NOERROR))
d8f73de8 2068 return err;
15a7d175
UD
2069 }
2070 }
2071 }
0742e48e
UD
2072 }
2073 return REG_NOERROR;
2074}
2075
0742e48e 2076static reg_errcode_t
b41bd5bc 2077__attribute_warn_unused_result__
e2f55264 2078sift_states_bkref (const re_match_context_t *mctx, re_sift_context_t *sctx,
eb04c213 2079 Idx str_idx, const re_node_set *candidates)
0742e48e 2080{
76b864c8 2081 const re_dfa_t *const dfa = mctx->dfa;
0742e48e 2082 reg_errcode_t err;
eb04c213 2083 Idx node_idx, node;
0742e48e 2084 re_sift_context_t local_sctx;
eb04c213 2085 Idx first_idx = search_cur_bkref_entry (mctx, str_idx);
e40a38b3
UD
2086
2087 if (first_idx == -1)
2088 return REG_NOERROR;
2089
0742e48e
UD
2090 local_sctx.sifted_states = NULL; /* Mark that it hasn't been initialized. */
2091
2092 for (node_idx = 0; node_idx < candidates->nelem; ++node_idx)
2093 {
eb04c213 2094 Idx enabled_idx;
0742e48e 2095 re_token_type_t type;
e40a38b3 2096 struct re_backref_cache_entry *entry;
0742e48e
UD
2097 node = candidates->elems[node_idx];
2098 type = dfa->nodes[node].type;
0742e48e
UD
2099 /* Avoid infinite loop for the REs like "()\1+". */
2100 if (node == sctx->last_node && str_idx == sctx->last_str_idx)
15a7d175 2101 continue;
e40a38b3
UD
2102 if (type != OP_BACK_REF)
2103 continue;
2104
2105 entry = mctx->bkref_ents + first_idx;
2106 enabled_idx = first_idx;
2107 do
15a7d175 2108 {
eb04c213
AZ
2109 Idx subexp_len;
2110 Idx to_idx;
2111 Idx dst_node;
2112 bool ok;
e40a38b3
UD
2113 re_dfastate_t *cur_state;
2114
2115 if (entry->node != node)
2116 continue;
2117 subexp_len = entry->subexp_to - entry->subexp_from;
2118 to_idx = str_idx + subexp_len;
2119 dst_node = (subexp_len ? dfa->nexts[node]
2120 : dfa->edests[node].elems[0]);
2121
2122 if (to_idx > sctx->last_str_idx
2123 || sctx->sifted_states[to_idx] == NULL
2124 || !STATE_NODE_CONTAINS (sctx->sifted_states[to_idx], dst_node)
2125 || check_dst_limits (mctx, &sctx->limits, node,
2126 str_idx, dst_node, to_idx))
2127 continue;
2128
2129 if (local_sctx.sifted_states == NULL)
15a7d175 2130 {
e40a38b3
UD
2131 local_sctx = *sctx;
2132 err = re_node_set_init_copy (&local_sctx.limits, &sctx->limits);
f4efbdfb 2133 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3
UD
2134 goto free_return;
2135 }
2136 local_sctx.last_node = node;
2137 local_sctx.last_str_idx = str_idx;
eb04c213 2138 ok = re_node_set_insert (&local_sctx.limits, enabled_idx);
f4efbdfb 2139 if (__glibc_unlikely (! ok))
e40a38b3
UD
2140 {
2141 err = REG_ESPACE;
2142 goto free_return;
15a7d175 2143 }
e40a38b3
UD
2144 cur_state = local_sctx.sifted_states[str_idx];
2145 err = sift_states_backward (mctx, &local_sctx);
f4efbdfb 2146 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3
UD
2147 goto free_return;
2148 if (sctx->limited_states != NULL)
2149 {
2150 err = merge_state_array (dfa, sctx->limited_states,
2151 local_sctx.sifted_states,
2152 str_idx + 1);
f4efbdfb 2153 if (__glibc_unlikely (err != REG_NOERROR))
e40a38b3
UD
2154 goto free_return;
2155 }
2156 local_sctx.sifted_states[str_idx] = cur_state;
2157 re_node_set_remove (&local_sctx.limits, enabled_idx);
2158
2159 /* mctx->bkref_ents may have changed, reload the pointer. */
2da42bc0 2160 entry = mctx->bkref_ents + enabled_idx;
15a7d175 2161 }
e40a38b3 2162 while (enabled_idx++, entry++->more);
0742e48e 2163 }
1b2c2628
UD
2164 err = REG_NOERROR;
2165 free_return:
0742e48e
UD
2166 if (local_sctx.sifted_states != NULL)
2167 {
0742e48e
UD
2168 re_node_set_free (&local_sctx.limits);
2169 }
2170
1b2c2628 2171 return err;
0742e48e
UD
2172}
2173
2174
2175#ifdef RE_ENABLE_I18N
2176static int
e2f55264 2177sift_states_iter_mb (const re_match_context_t *mctx, re_sift_context_t *sctx,
eb04c213 2178 Idx node_idx, Idx str_idx, Idx max_str_idx)
0742e48e 2179{
c42b4152 2180 const re_dfa_t *const dfa = mctx->dfa;
0742e48e 2181 int naccepted;
eb04c213 2182 /* Check the node can accept "multi byte". */
56b168be 2183 naccepted = check_node_accept_bytes (dfa, node_idx, &mctx->input, str_idx);
34a5a146
JM
2184 if (naccepted > 0 && str_idx + naccepted <= max_str_idx
2185 && !STATE_NODE_CONTAINS (sctx->sifted_states[str_idx + naccepted],
2186 dfa->nexts[node_idx]))
eb04c213 2187 /* The node can't accept the "multi byte", or the
bb3f4825 2188 destination was already thrown away, then the node
a1b02ae7 2189 couldn't accept the current input "multi byte". */
0742e48e
UD
2190 naccepted = 0;
2191 /* Otherwise, it is sure that the node could accept
eb04c213 2192 'naccepted' bytes input. */
0742e48e
UD
2193 return naccepted;
2194}
2195#endif /* RE_ENABLE_I18N */
2196
3b0bdc72
UD
2197\f
2198/* Functions for state transition. */
2199
2200/* Return the next state to which the current state STATE will transit by
2201 accepting the current input byte, and update STATE_LOG if necessary.
2202 If STATE can accept a multibyte char/collating element/back reference
2203 update the destination of STATE_LOG. */
2204
2205static re_dfastate_t *
b41bd5bc 2206__attribute_warn_unused_result__
e2f55264
UD
2207transit_state (reg_errcode_t *err, re_match_context_t *mctx,
2208 re_dfastate_t *state)
3b0bdc72 2209{
58845a70 2210 re_dfastate_t **trtable;
3b0bdc72
UD
2211 unsigned char ch;
2212
bb677c95
UD
2213#ifdef RE_ENABLE_I18N
2214 /* If the current state can accept multibyte. */
f4efbdfb 2215 if (__glibc_unlikely (state->accept_mb))
612546c6 2216 {
bb677c95 2217 *err = transit_state_mb (mctx, state);
f4efbdfb 2218 if (__glibc_unlikely (*err != REG_NOERROR))
15a7d175 2219 return NULL;
612546c6 2220 }
434d3784 2221#endif /* RE_ENABLE_I18N */
3b0bdc72 2222
4c595adb 2223 /* Then decide the next state with the single byte. */
ab4b89fe
UD
2224#if 0
2225 if (0)
2226 /* don't use transition table */
2227 return transit_state_sb (err, mctx, state);
2228#endif
2229
2230 /* Use transition table */
2231 ch = re_string_fetch_byte (&mctx->input);
2232 for (;;)
4c595adb 2233 {
4c595adb 2234 trtable = state->trtable;
f4efbdfb 2235 if (__glibc_likely (trtable != NULL))
ab4b89fe
UD
2236 return trtable[ch];
2237
2238 trtable = state->word_trtable;
f4efbdfb 2239 if (__glibc_likely (trtable != NULL))
2da42bc0 2240 {
4c595adb
UD
2241 unsigned int context;
2242 context
2243 = re_string_context_at (&mctx->input,
2244 re_string_cur_idx (&mctx->input) - 1,
2245 mctx->eflags);
2246 if (IS_WORD_CONTEXT (context))
2247 return trtable[ch + SBC_MAX];
c13c99fa 2248 else
4c595adb 2249 return trtable[ch];
15a7d175 2250 }
ab4b89fe
UD
2251
2252 if (!build_trtable (mctx->dfa, state))
2253 {
2254 *err = REG_ESPACE;
2255 return NULL;
2256 }
2257
2258 /* Retry, we now have a transition table. */
3b0bdc72 2259 }
4c595adb 2260}
3b0bdc72 2261
4c595adb 2262/* Update the state_log if we need */
eb04c213 2263static re_dfastate_t *
e2f55264
UD
2264merge_state_with_log (reg_errcode_t *err, re_match_context_t *mctx,
2265 re_dfastate_t *next_state)
58845a70 2266{
c42b4152 2267 const re_dfa_t *const dfa = mctx->dfa;
eb04c213 2268 Idx cur_idx = re_string_cur_idx (&mctx->input);
4c595adb
UD
2269
2270 if (cur_idx > mctx->state_log_top)
3b0bdc72 2271 {
4c595adb
UD
2272 mctx->state_log[cur_idx] = next_state;
2273 mctx->state_log_top = cur_idx;
2274 }
2275 else if (mctx->state_log[cur_idx] == 0)
2276 {
2277 mctx->state_log[cur_idx] = next_state;
2278 }
2279 else
2280 {
2281 re_dfastate_t *pstate;
2282 unsigned int context;
2283 re_node_set next_nodes, *log_nodes, *table_nodes = NULL;
2284 /* If (state_log[cur_idx] != 0), it implies that cur_idx is
2da42bc0
UD
2285 the destination of a multibyte char/collating element/
2286 back reference. Then the next state is the union set of
2287 these destinations and the results of the transition table. */
4c595adb
UD
2288 pstate = mctx->state_log[cur_idx];
2289 log_nodes = pstate->entrance_nodes;
2290 if (next_state != NULL)
2da42bc0
UD
2291 {
2292 table_nodes = next_state->entrance_nodes;
2293 *err = re_node_set_init_union (&next_nodes, table_nodes,
15a7d175 2294 log_nodes);
f4efbdfb 2295 if (__glibc_unlikely (*err != REG_NOERROR))
4c595adb 2296 return NULL;
2da42bc0 2297 }
4c595adb 2298 else
2da42bc0 2299 next_nodes = *log_nodes;
4c595adb
UD
2300 /* Note: We already add the nodes of the initial state,
2301 then we don't need to add them here. */
2302
2303 context = re_string_context_at (&mctx->input,
2304 re_string_cur_idx (&mctx->input) - 1,
2305 mctx->eflags);
2306 next_state = mctx->state_log[cur_idx]
2da42bc0 2307 = re_acquire_state_context (err, dfa, &next_nodes, context);
4c595adb 2308 /* We don't need to check errors here, since the return value of
2da42bc0 2309 this function is next_state and ERR is already set. */
4c595adb
UD
2310
2311 if (table_nodes != NULL)
2da42bc0 2312 re_node_set_free (&next_nodes);
6291ee3c
UD
2313 }
2314
f4efbdfb 2315 if (__glibc_unlikely (dfa->nbackref) && next_state != NULL)
6291ee3c 2316 {
bb3f4825
UD
2317 /* Check OP_OPEN_SUBEXP in the current state in case that we use them
2318 later. We must check them here, since the back references in the
2319 next state might use them. */
e3a87852 2320 *err = check_subexp_matching_top (mctx, &next_state->nodes,
6291ee3c 2321 cur_idx);
f4efbdfb 2322 if (__glibc_unlikely (*err != REG_NOERROR))
6291ee3c 2323 return NULL;
6291ee3c 2324
bb3f4825
UD
2325 /* If the next state has back references. */
2326 if (next_state->has_backref)
2327 {
e3a87852 2328 *err = transit_state_bkref (mctx, &next_state->nodes);
f4efbdfb 2329 if (__glibc_unlikely (*err != REG_NOERROR))
bb3f4825
UD
2330 return NULL;
2331 next_state = mctx->state_log[cur_idx];
2332 }
3b0bdc72 2333 }
4c595adb 2334
3b0bdc72
UD
2335 return next_state;
2336}
2337
4c595adb
UD
2338/* Skip bytes in the input that correspond to part of a
2339 multi-byte match, then look in the log for a state
2340 from which to restart matching. */
eb04c213 2341static re_dfastate_t *
e2f55264 2342find_recover_state (reg_errcode_t *err, re_match_context_t *mctx)
4c595adb 2343{
1878e9af 2344 re_dfastate_t *cur_state;
4c595adb
UD
2345 do
2346 {
eb04c213
AZ
2347 Idx max = mctx->state_log_top;
2348 Idx cur_str_idx = re_string_cur_idx (&mctx->input);
4c595adb
UD
2349
2350 do
2351 {
2da42bc0
UD
2352 if (++cur_str_idx > max)
2353 return NULL;
2354 re_string_skip_bytes (&mctx->input, 1);
4c595adb
UD
2355 }
2356 while (mctx->state_log[cur_str_idx] == NULL);
2357
2358 cur_state = merge_state_with_log (err, mctx, NULL);
2359 }
2d87db5b 2360 while (*err == REG_NOERROR && cur_state == NULL);
4c595adb
UD
2361 return cur_state;
2362}
2363
3b0bdc72
UD
2364/* Helper functions for transit_state. */
2365
6291ee3c
UD
2366/* From the node set CUR_NODES, pick up the nodes whose types are
2367 OP_OPEN_SUBEXP and which have corresponding back references in the regular
2368 expression. And register them to use them later for evaluating the
5069ff32 2369 corresponding back references. */
6291ee3c
UD
2370
2371static reg_errcode_t
e2f55264 2372check_subexp_matching_top (re_match_context_t *mctx, re_node_set *cur_nodes,
eb04c213 2373 Idx str_idx)
6291ee3c 2374{
76b864c8 2375 const re_dfa_t *const dfa = mctx->dfa;
eb04c213 2376 Idx node_idx;
6291ee3c
UD
2377 reg_errcode_t err;
2378
2379 /* TODO: This isn't efficient.
2380 Because there might be more than one nodes whose types are
2381 OP_OPEN_SUBEXP and whose index is SUBEXP_IDX, we must check all
2382 nodes.
2383 E.g. RE: (a){2} */
2384 for (node_idx = 0; node_idx < cur_nodes->nelem; ++node_idx)
2385 {
eb04c213 2386 Idx node = cur_nodes->elems[node_idx];
6291ee3c 2387 if (dfa->nodes[node].type == OP_OPEN_SUBEXP
2c05d33f
UD
2388 && dfa->nodes[node].opr.idx < BITSET_WORD_BITS
2389 && (dfa->used_bkref_map
2390 & ((bitset_word_t) 1 << dfa->nodes[node].opr.idx)))
6291ee3c
UD
2391 {
2392 err = match_ctx_add_subtop (mctx, node, str_idx);
f4efbdfb 2393 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2394 return err;
2395 }
2396 }
2397 return REG_NOERROR;
2398}
2399
c13c99fa 2400#if 0
3b0bdc72
UD
2401/* Return the next state to which the current state STATE will transit by
2402 accepting the current input byte. */
2403
2404static re_dfastate_t *
e2f55264
UD
2405transit_state_sb (reg_errcode_t *err, re_match_context_t *mctx,
2406 re_dfastate_t *state)
3b0bdc72 2407{
c42b4152 2408 const re_dfa_t *const dfa = mctx->dfa;
3b0bdc72
UD
2409 re_node_set next_nodes;
2410 re_dfastate_t *next_state;
eb04c213 2411 Idx node_cnt, cur_str_idx = re_string_cur_idx (&mctx->input);
3b0bdc72
UD
2412 unsigned int context;
2413
a9388965 2414 *err = re_node_set_alloc (&next_nodes, state->nodes.nelem + 1);
f4efbdfb 2415 if (__glibc_unlikely (*err != REG_NOERROR))
a9388965 2416 return NULL;
3b0bdc72
UD
2417 for (node_cnt = 0; node_cnt < state->nodes.nelem; ++node_cnt)
2418 {
eb04c213 2419 Idx cur_node = state->nodes.elems[node_cnt];
e3a87852 2420 if (check_node_accept (mctx, dfa->nodes + cur_node, cur_str_idx))
15a7d175
UD
2421 {
2422 *err = re_node_set_merge (&next_nodes,
2423 dfa->eclosures + dfa->nexts[cur_node]);
f4efbdfb 2424 if (__glibc_unlikely (*err != REG_NOERROR))
15a7d175
UD
2425 {
2426 re_node_set_free (&next_nodes);
2427 return NULL;
2428 }
2429 }
3b0bdc72 2430 }
56b168be 2431 context = re_string_context_at (&mctx->input, cur_str_idx, mctx->eflags);
a9388965
UD
2432 next_state = re_acquire_state_context (err, dfa, &next_nodes, context);
2433 /* We don't need to check errors here, since the return value of
2434 this function is next_state and ERR is already set. */
2435
3b0bdc72 2436 re_node_set_free (&next_nodes);
56b168be 2437 re_string_skip_bytes (&mctx->input, 1);
3b0bdc72
UD
2438 return next_state;
2439}
c13c99fa 2440#endif
3b0bdc72 2441
434d3784 2442#ifdef RE_ENABLE_I18N
a9388965 2443static reg_errcode_t
e2f55264 2444transit_state_mb (re_match_context_t *mctx, re_dfastate_t *pstate)
3b0bdc72 2445{
c42b4152 2446 const re_dfa_t *const dfa = mctx->dfa;
a9388965 2447 reg_errcode_t err;
eb04c213 2448 Idx i;
3b0bdc72
UD
2449
2450 for (i = 0; i < pstate->nodes.nelem; ++i)
2451 {
2452 re_node_set dest_nodes, *new_nodes;
eb04c213
AZ
2453 Idx cur_node_idx = pstate->nodes.elems[i];
2454 int naccepted;
2455 Idx dest_idx;
3b0bdc72
UD
2456 unsigned int context;
2457 re_dfastate_t *dest_state;
2458
963d8d78 2459 if (!dfa->nodes[cur_node_idx].accept_mb)
2da42bc0 2460 continue;
963d8d78 2461
485d775d 2462 if (dfa->nodes[cur_node_idx].constraint)
15a7d175 2463 {
56b168be
UD
2464 context = re_string_context_at (&mctx->input,
2465 re_string_cur_idx (&mctx->input),
2466 mctx->eflags);
15a7d175
UD
2467 if (NOT_SATISFY_NEXT_CONSTRAINT (dfa->nodes[cur_node_idx].constraint,
2468 context))
2469 continue;
2470 }
3b0bdc72 2471
ad7f28c2 2472 /* How many bytes the node can accept? */
963d8d78
UD
2473 naccepted = check_node_accept_bytes (dfa, cur_node_idx, &mctx->input,
2474 re_string_cur_idx (&mctx->input));
3b0bdc72 2475 if (naccepted == 0)
15a7d175 2476 continue;
3b0bdc72 2477
eb04c213 2478 /* The node can accepts 'naccepted' bytes. */
56b168be 2479 dest_idx = re_string_cur_idx (&mctx->input) + naccepted;
0742e48e 2480 mctx->max_mb_elem_len = ((mctx->max_mb_elem_len < naccepted) ? naccepted
15a7d175 2481 : mctx->max_mb_elem_len);
7c1be3ec 2482 err = clean_state_log_if_needed (mctx, dest_idx);
f4efbdfb 2483 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 2484 return err;
2a0356e1 2485 DEBUG_ASSERT (dfa->nexts[cur_node_idx] != -1);
963d8d78 2486 new_nodes = dfa->eclosures + dfa->nexts[cur_node_idx];
3b0bdc72 2487
612546c6 2488 dest_state = mctx->state_log[dest_idx];
3b0bdc72 2489 if (dest_state == NULL)
15a7d175 2490 dest_nodes = *new_nodes;
3b0bdc72 2491 else
15a7d175
UD
2492 {
2493 err = re_node_set_init_union (&dest_nodes,
2494 dest_state->entrance_nodes, new_nodes);
f4efbdfb 2495 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
2496 return err;
2497 }
01ed6ceb
UD
2498 context = re_string_context_at (&mctx->input, dest_idx - 1,
2499 mctx->eflags);
612546c6 2500 mctx->state_log[dest_idx]
15a7d175 2501 = re_acquire_state_context (&err, dfa, &dest_nodes, context);
3b0bdc72 2502 if (dest_state != NULL)
15a7d175 2503 re_node_set_free (&dest_nodes);
f4efbdfb
PE
2504 if (__glibc_unlikely (mctx->state_log[dest_idx] == NULL
2505 && err != REG_NOERROR))
15a7d175 2506 return err;
3b0bdc72 2507 }
a9388965 2508 return REG_NOERROR;
3b0bdc72 2509}
434d3784 2510#endif /* RE_ENABLE_I18N */
3b0bdc72 2511
a9388965 2512static reg_errcode_t
e2f55264 2513transit_state_bkref (re_match_context_t *mctx, const re_node_set *nodes)
3b0bdc72 2514{
6efbd82c 2515 const re_dfa_t *const dfa = mctx->dfa;
a9388965 2516 reg_errcode_t err;
eb04c213
AZ
2517 Idx i;
2518 Idx cur_str_idx = re_string_cur_idx (&mctx->input);
3b0bdc72
UD
2519
2520 for (i = 0; i < nodes->nelem; ++i)
2521 {
eb04c213
AZ
2522 Idx dest_str_idx, prev_nelem, bkc_idx;
2523 Idx node_idx = nodes->elems[i];
3b0bdc72 2524 unsigned int context;
fe9434bb 2525 const re_token_t *node = dfa->nodes + node_idx;
3b0bdc72
UD
2526 re_node_set *new_dest_nodes;
2527
eb04c213 2528 /* Check whether 'node' is a backreference or not. */
6291ee3c 2529 if (node->type != OP_BACK_REF)
15a7d175 2530 continue;
485d775d
UD
2531
2532 if (node->constraint)
15a7d175 2533 {
56b168be
UD
2534 context = re_string_context_at (&mctx->input, cur_str_idx,
2535 mctx->eflags);
15a7d175
UD
2536 if (NOT_SATISFY_NEXT_CONSTRAINT (node->constraint, context))
2537 continue;
2538 }
3b0bdc72 2539
eb04c213 2540 /* 'node' is a backreference.
15a7d175 2541 Check the substring which the substring matched. */
6291ee3c 2542 bkc_idx = mctx->nbkref_ents;
e3a87852 2543 err = get_subexp (mctx, node_idx, cur_str_idx);
f4efbdfb 2544 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175 2545 goto free_return;
3b0bdc72 2546
eb04c213 2547 /* And add the epsilon closures (which is 'new_dest_nodes') of
15a7d175 2548 the backreference to appropriate state_log. */
2a0356e1 2549 DEBUG_ASSERT (dfa->nexts[node_idx] != -1);
6291ee3c 2550 for (; bkc_idx < mctx->nbkref_ents; ++bkc_idx)
15a7d175 2551 {
eb04c213 2552 Idx subexp_len;
15a7d175
UD
2553 re_dfastate_t *dest_state;
2554 struct re_backref_cache_entry *bkref_ent;
2555 bkref_ent = mctx->bkref_ents + bkc_idx;
2556 if (bkref_ent->node != node_idx || bkref_ent->str_idx != cur_str_idx)
2557 continue;
2558 subexp_len = bkref_ent->subexp_to - bkref_ent->subexp_from;
2559 new_dest_nodes = (subexp_len == 0
2560 ? dfa->eclosures + dfa->edests[node_idx].elems[0]
2561 : dfa->eclosures + dfa->nexts[node_idx]);
2562 dest_str_idx = (cur_str_idx + bkref_ent->subexp_to
2563 - bkref_ent->subexp_from);
56b168be
UD
2564 context = re_string_context_at (&mctx->input, dest_str_idx - 1,
2565 mctx->eflags);
15a7d175
UD
2566 dest_state = mctx->state_log[dest_str_idx];
2567 prev_nelem = ((mctx->state_log[cur_str_idx] == NULL) ? 0
2568 : mctx->state_log[cur_str_idx]->nodes.nelem);
eb04c213 2569 /* Add 'new_dest_node' to state_log. */
15a7d175
UD
2570 if (dest_state == NULL)
2571 {
2572 mctx->state_log[dest_str_idx]
2573 = re_acquire_state_context (&err, dfa, new_dest_nodes,
2574 context);
f4efbdfb
PE
2575 if (__glibc_unlikely (mctx->state_log[dest_str_idx] == NULL
2576 && err != REG_NOERROR))
15a7d175
UD
2577 goto free_return;
2578 }
2579 else
2580 {
2581 re_node_set dest_nodes;
2582 err = re_node_set_init_union (&dest_nodes,
2583 dest_state->entrance_nodes,
2584 new_dest_nodes);
f4efbdfb 2585 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
2586 {
2587 re_node_set_free (&dest_nodes);
2588 goto free_return;
2589 }
2590 mctx->state_log[dest_str_idx]
2591 = re_acquire_state_context (&err, dfa, &dest_nodes, context);
2592 re_node_set_free (&dest_nodes);
f4efbdfb
PE
2593 if (__glibc_unlikely (mctx->state_log[dest_str_idx] == NULL
2594 && err != REG_NOERROR))
15a7d175
UD
2595 goto free_return;
2596 }
2597 /* We need to check recursively if the backreference can epsilon
2598 transit. */
2599 if (subexp_len == 0
2600 && mctx->state_log[cur_str_idx]->nodes.nelem > prev_nelem)
2601 {
e3a87852 2602 err = check_subexp_matching_top (mctx, new_dest_nodes,
6291ee3c 2603 cur_str_idx);
f4efbdfb 2604 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c 2605 goto free_return;
e3a87852 2606 err = transit_state_bkref (mctx, new_dest_nodes);
f4efbdfb 2607 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
2608 goto free_return;
2609 }
2610 }
3b0bdc72 2611 }
1b2c2628
UD
2612 err = REG_NOERROR;
2613 free_return:
1b2c2628 2614 return err;
3b0bdc72
UD
2615}
2616
6291ee3c
UD
2617/* Enumerate all the candidates which the backreference BKREF_NODE can match
2618 at BKREF_STR_IDX, and register them by match_ctx_add_entry().
2619 Note that we might collect inappropriate candidates here.
2620 However, the cost of checking them strictly here is too high, then we
2621 delay these checking for prune_impossible_nodes(). */
3b0bdc72 2622
6291ee3c 2623static reg_errcode_t
b41bd5bc 2624__attribute_warn_unused_result__
eb04c213 2625get_subexp (re_match_context_t *mctx, Idx bkref_node, Idx bkref_str_idx)
3b0bdc72 2626{
6efbd82c 2627 const re_dfa_t *const dfa = mctx->dfa;
eb04c213 2628 Idx subexp_num, sub_top_idx;
56b168be 2629 const char *buf = (const char *) re_string_get_buffer (&mctx->input);
6291ee3c 2630 /* Return if we have already checked BKREF_NODE at BKREF_STR_IDX. */
eb04c213 2631 Idx cache_idx = search_cur_bkref_entry (mctx, bkref_str_idx);
e40a38b3 2632 if (cache_idx != -1)
6291ee3c 2633 {
01ed6ceb
UD
2634 const struct re_backref_cache_entry *entry
2635 = mctx->bkref_ents + cache_idx;
e40a38b3 2636 do
2da42bc0 2637 if (entry->node == bkref_node)
e40a38b3
UD
2638 return REG_NOERROR; /* We already checked it. */
2639 while (entry++->more);
6291ee3c 2640 }
e40a38b3 2641
d8f73de8 2642 subexp_num = dfa->nodes[bkref_node].opr.idx;
6291ee3c
UD
2643
2644 /* For each sub expression */
2645 for (sub_top_idx = 0; sub_top_idx < mctx->nsub_tops; ++sub_top_idx)
2646 {
2647 reg_errcode_t err;
2648 re_sub_match_top_t *sub_top = mctx->sub_tops[sub_top_idx];
2649 re_sub_match_last_t *sub_last;
eb04c213 2650 Idx sub_last_idx, sl_str, bkref_str_off;
6291ee3c
UD
2651
2652 if (dfa->nodes[sub_top->node].opr.idx != subexp_num)
2653 continue; /* It isn't related. */
2654
2655 sl_str = sub_top->str_idx;
7c1be3ec 2656 bkref_str_off = bkref_str_idx;
6291ee3c
UD
2657 /* At first, check the last node of sub expressions we already
2658 evaluated. */
2659 for (sub_last_idx = 0; sub_last_idx < sub_top->nlasts; ++sub_last_idx)
2660 {
eb04c213 2661 regoff_t sl_str_diff;
6291ee3c
UD
2662 sub_last = sub_top->lasts[sub_last_idx];
2663 sl_str_diff = sub_last->str_idx - sl_str;
2664 /* The matched string by the sub expression match with the substring
2665 at the back reference? */
c1baba0f
UD
2666 if (sl_str_diff > 0)
2667 {
f4efbdfb
PE
2668 if (__glibc_unlikely (bkref_str_off + sl_str_diff
2669 > mctx->input.valid_len))
c1baba0f
UD
2670 {
2671 /* Not enough chars for a successful match. */
2672 if (bkref_str_off + sl_str_diff > mctx->input.len)
2673 break;
2674
2675 err = clean_state_log_if_needed (mctx,
2676 bkref_str_off
2677 + sl_str_diff);
f4efbdfb 2678 if (__glibc_unlikely (err != REG_NOERROR))
c1baba0f
UD
2679 return err;
2680 buf = (const char *) re_string_get_buffer (&mctx->input);
2681 }
2682 if (memcmp (buf + bkref_str_off, buf + sl_str, sl_str_diff) != 0)
01ed6ceb
UD
2683 /* We don't need to search this sub expression any more. */
2684 break;
c1baba0f 2685 }
7c1be3ec 2686 bkref_str_off += sl_str_diff;
6291ee3c 2687 sl_str += sl_str_diff;
e3a87852 2688 err = get_subexp_sub (mctx, sub_top, sub_last, bkref_node,
6291ee3c 2689 bkref_str_idx);
3ee363e2 2690
7c1be3ec
UD
2691 /* Reload buf, since the preceding call might have reallocated
2692 the buffer. */
56b168be 2693 buf = (const char *) re_string_get_buffer (&mctx->input);
3ee363e2 2694
6291ee3c
UD
2695 if (err == REG_NOMATCH)
2696 continue;
f4efbdfb 2697 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2698 return err;
2699 }
7c1be3ec 2700
6291ee3c
UD
2701 if (sub_last_idx < sub_top->nlasts)
2702 continue;
2703 if (sub_last_idx > 0)
2704 ++sl_str;
2705 /* Then, search for the other last nodes of the sub expression. */
2706 for (; sl_str <= bkref_str_idx; ++sl_str)
2707 {
eb04c213
AZ
2708 Idx cls_node;
2709 regoff_t sl_str_off;
fe9434bb 2710 const re_node_set *nodes;
6291ee3c
UD
2711 sl_str_off = sl_str - sub_top->str_idx;
2712 /* The matched string by the sub expression match with the substring
2713 at the back reference? */
c1baba0f
UD
2714 if (sl_str_off > 0)
2715 {
f4efbdfb 2716 if (__glibc_unlikely (bkref_str_off >= mctx->input.valid_len))
c1baba0f
UD
2717 {
2718 /* If we are at the end of the input, we cannot match. */
2719 if (bkref_str_off >= mctx->input.len)
2720 break;
2721
a445af0b 2722 err = extend_buffers (mctx, bkref_str_off + 1);
f4efbdfb 2723 if (__glibc_unlikely (err != REG_NOERROR))
c1baba0f
UD
2724 return err;
2725
2726 buf = (const char *) re_string_get_buffer (&mctx->input);
2727 }
2728 if (buf [bkref_str_off++] != buf[sl_str - 1])
2729 break; /* We don't need to search this sub expression
2730 any more. */
2731 }
6291ee3c
UD
2732 if (mctx->state_log[sl_str] == NULL)
2733 continue;
2734 /* Does this state have a ')' of the sub expression? */
2735 nodes = &mctx->state_log[sl_str]->nodes;
01ed6ceb
UD
2736 cls_node = find_subexp_node (dfa, nodes, subexp_num,
2737 OP_CLOSE_SUBEXP);
6291ee3c
UD
2738 if (cls_node == -1)
2739 continue; /* No. */
2740 if (sub_top->path == NULL)
2741 {
2742 sub_top->path = calloc (sizeof (state_array_t),
2743 sl_str - sub_top->str_idx + 1);
2744 if (sub_top->path == NULL)
2745 return REG_ESPACE;
2746 }
2747 /* Can the OP_OPEN_SUBEXP node arrive the OP_CLOSE_SUBEXP node
2748 in the current context? */
e3a87852 2749 err = check_arrival (mctx, sub_top->path, sub_top->node,
01ed6ceb
UD
2750 sub_top->str_idx, cls_node, sl_str,
2751 OP_CLOSE_SUBEXP);
6291ee3c
UD
2752 if (err == REG_NOMATCH)
2753 continue;
f4efbdfb 2754 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2755 return err;
2756 sub_last = match_ctx_add_sublast (sub_top, cls_node, sl_str);
f4efbdfb 2757 if (__glibc_unlikely (sub_last == NULL))
6291ee3c 2758 return REG_ESPACE;
e3a87852 2759 err = get_subexp_sub (mctx, sub_top, sub_last, bkref_node,
6291ee3c 2760 bkref_str_idx);
077caf61 2761 buf = (const char *) re_string_get_buffer (&mctx->input);
6291ee3c
UD
2762 if (err == REG_NOMATCH)
2763 continue;
ef202e53
PE
2764 if (__glibc_unlikely (err != REG_NOERROR))
2765 return err;
6291ee3c
UD
2766 }
2767 }
2768 return REG_NOERROR;
2769}
2770
2771/* Helper functions for get_subexp(). */
2772
2773/* Check SUB_LAST can arrive to the back reference BKREF_NODE at BKREF_STR.
2774 If it can arrive, register the sub expression expressed with SUB_TOP
2775 and SUB_LAST. */
2776
2777static reg_errcode_t
e2f55264 2778get_subexp_sub (re_match_context_t *mctx, const re_sub_match_top_t *sub_top,
eb04c213 2779 re_sub_match_last_t *sub_last, Idx bkref_node, Idx bkref_str)
6291ee3c
UD
2780{
2781 reg_errcode_t err;
eb04c213 2782 Idx to_idx;
6291ee3c 2783 /* Can the subexpression arrive the back reference? */
e3a87852 2784 err = check_arrival (mctx, &sub_last->path, sub_last->node,
01ed6ceb
UD
2785 sub_last->str_idx, bkref_node, bkref_str,
2786 OP_OPEN_SUBEXP);
6291ee3c
UD
2787 if (err != REG_NOERROR)
2788 return err;
2789 err = match_ctx_add_entry (mctx, bkref_node, bkref_str, sub_top->str_idx,
2790 sub_last->str_idx);
f4efbdfb 2791 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2792 return err;
2793 to_idx = bkref_str + sub_last->str_idx - sub_top->str_idx;
c1baba0f 2794 return clean_state_log_if_needed (mctx, to_idx);
6291ee3c
UD
2795}
2796
2797/* Find the first node which is '(' or ')' and whose index is SUBEXP_IDX.
2798 Search '(' if FL_OPEN, or search ')' otherwise.
2799 TODO: This function isn't efficient...
2800 Because there might be more than one nodes whose types are
2801 OP_OPEN_SUBEXP and whose index is SUBEXP_IDX, we must check all
2802 nodes.
2803 E.g. RE: (a){2} */
2804
eb04c213 2805static Idx
e2f55264 2806find_subexp_node (const re_dfa_t *dfa, const re_node_set *nodes,
eb04c213 2807 Idx subexp_idx, int type)
6291ee3c 2808{
eb04c213 2809 Idx cls_idx;
6291ee3c
UD
2810 for (cls_idx = 0; cls_idx < nodes->nelem; ++cls_idx)
2811 {
eb04c213 2812 Idx cls_node = nodes->elems[cls_idx];
fe9434bb 2813 const re_token_t *node = dfa->nodes + cls_node;
0ce7f49c 2814 if (node->type == type
6291ee3c
UD
2815 && node->opr.idx == subexp_idx)
2816 return cls_node;
2817 }
2818 return -1;
2819}
2820
2821/* Check whether the node TOP_NODE at TOP_STR can arrive to the node
2822 LAST_NODE at LAST_STR. We record the path onto PATH since it will be
2823 heavily reused.
2824 Return REG_NOERROR if it can arrive, or REG_NOMATCH otherwise. */
2825
2826static reg_errcode_t
b41bd5bc 2827__attribute_warn_unused_result__
eb04c213
AZ
2828check_arrival (re_match_context_t *mctx, state_array_t *path, Idx top_node,
2829 Idx top_str, Idx last_node, Idx last_str, int type)
6291ee3c 2830{
6efbd82c 2831 const re_dfa_t *const dfa = mctx->dfa;
c0c9615c 2832 reg_errcode_t err = REG_NOERROR;
eb04c213 2833 Idx subexp_num, backup_cur_idx, str_idx, null_cnt;
6291ee3c
UD
2834 re_dfastate_t *cur_state = NULL;
2835 re_node_set *cur_nodes, next_nodes;
2836 re_dfastate_t **backup_state_log;
2837 unsigned int context;
2838
2839 subexp_num = dfa->nodes[top_node].opr.idx;
2840 /* Extend the buffer if we need. */
f4efbdfb 2841 if (__glibc_unlikely (path->alloc < last_str + mctx->max_mb_elem_len + 1))
6291ee3c
UD
2842 {
2843 re_dfastate_t **new_array;
eb04c213
AZ
2844 Idx old_alloc = path->alloc;
2845 Idx incr_alloc = last_str + mctx->max_mb_elem_len + 1;
2846 Idx new_alloc;
f4efbdfb 2847 if (__glibc_unlikely (IDX_MAX - old_alloc < incr_alloc))
eb04c213
AZ
2848 return REG_ESPACE;
2849 new_alloc = old_alloc + incr_alloc;
f4efbdfb 2850 if (__glibc_unlikely (SIZE_MAX / sizeof (re_dfastate_t *) < new_alloc))
eb04c213
AZ
2851 return REG_ESPACE;
2852 new_array = re_realloc (path->array, re_dfastate_t *, new_alloc);
f4efbdfb 2853 if (__glibc_unlikely (new_array == NULL))
eb04c213 2854 return REG_ESPACE;
6291ee3c 2855 path->array = new_array;
eb04c213 2856 path->alloc = new_alloc;
6291ee3c
UD
2857 memset (new_array + old_alloc, '\0',
2858 sizeof (re_dfastate_t *) * (path->alloc - old_alloc));
2859 }
2860
eb04c213 2861 str_idx = path->next_idx ? path->next_idx : top_str;
6291ee3c
UD
2862
2863 /* Temporary modify MCTX. */
2864 backup_state_log = mctx->state_log;
56b168be 2865 backup_cur_idx = mctx->input.cur_idx;
6291ee3c 2866 mctx->state_log = path->array;
56b168be 2867 mctx->input.cur_idx = str_idx;
6291ee3c
UD
2868
2869 /* Setup initial node set. */
56b168be 2870 context = re_string_context_at (&mctx->input, str_idx - 1, mctx->eflags);
6291ee3c
UD
2871 if (str_idx == top_str)
2872 {
2873 err = re_node_set_init_1 (&next_nodes, top_node);
f4efbdfb 2874 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c 2875 return err;
0ce7f49c 2876 err = check_arrival_expand_ecl (dfa, &next_nodes, subexp_num, type);
f4efbdfb 2877 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2878 {
2879 re_node_set_free (&next_nodes);
2880 return err;
2881 }
2882 }
2883 else
2884 {
2885 cur_state = mctx->state_log[str_idx];
2886 if (cur_state && cur_state->has_backref)
2887 {
2888 err = re_node_set_init_copy (&next_nodes, &cur_state->nodes);
f4efbdfb 2889 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2890 return err;
2891 }
2892 else
2893 re_node_set_init_empty (&next_nodes);
2894 }
2895 if (str_idx == top_str || (cur_state && cur_state->has_backref))
2896 {
2897 if (next_nodes.nelem)
2898 {
d2c38eb3 2899 err = expand_bkref_cache (mctx, &next_nodes, str_idx,
0ce7f49c 2900 subexp_num, type);
f4efbdfb 2901 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2902 {
2903 re_node_set_free (&next_nodes);
2904 return err;
2905 }
2906 }
2907 cur_state = re_acquire_state_context (&err, dfa, &next_nodes, context);
f4efbdfb 2908 if (__glibc_unlikely (cur_state == NULL && err != REG_NOERROR))
6291ee3c
UD
2909 {
2910 re_node_set_free (&next_nodes);
2911 return err;
2912 }
2913 mctx->state_log[str_idx] = cur_state;
2914 }
2915
2916 for (null_cnt = 0; str_idx < last_str && null_cnt <= mctx->max_mb_elem_len;)
2917 {
2918 re_node_set_empty (&next_nodes);
2919 if (mctx->state_log[str_idx + 1])
2920 {
2921 err = re_node_set_merge (&next_nodes,
2922 &mctx->state_log[str_idx + 1]->nodes);
f4efbdfb 2923 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2924 {
2925 re_node_set_free (&next_nodes);
2926 return err;
2927 }
2928 }
2929 if (cur_state)
2930 {
e3a87852 2931 err = check_arrival_add_next_nodes (mctx, str_idx,
6efbd82c
UD
2932 &cur_state->non_eps_nodes,
2933 &next_nodes);
f4efbdfb 2934 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2935 {
2936 re_node_set_free (&next_nodes);
2937 return err;
2938 }
2939 }
2940 ++str_idx;
2941 if (next_nodes.nelem)
2942 {
0ce7f49c 2943 err = check_arrival_expand_ecl (dfa, &next_nodes, subexp_num, type);
f4efbdfb 2944 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2945 {
2946 re_node_set_free (&next_nodes);
2947 return err;
2948 }
d2c38eb3 2949 err = expand_bkref_cache (mctx, &next_nodes, str_idx,
0ce7f49c 2950 subexp_num, type);
f4efbdfb 2951 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
2952 {
2953 re_node_set_free (&next_nodes);
2954 return err;
2955 }
2956 }
56b168be 2957 context = re_string_context_at (&mctx->input, str_idx - 1, mctx->eflags);
6291ee3c 2958 cur_state = re_acquire_state_context (&err, dfa, &next_nodes, context);
f4efbdfb 2959 if (__glibc_unlikely (cur_state == NULL && err != REG_NOERROR))
6291ee3c
UD
2960 {
2961 re_node_set_free (&next_nodes);
2962 return err;
2963 }
2964 mctx->state_log[str_idx] = cur_state;
2965 null_cnt = cur_state == NULL ? null_cnt + 1 : 0;
2966 }
2967 re_node_set_free (&next_nodes);
2968 cur_nodes = (mctx->state_log[last_str] == NULL ? NULL
2969 : &mctx->state_log[last_str]->nodes);
2970 path->next_idx = str_idx;
2971
2972 /* Fix MCTX. */
2973 mctx->state_log = backup_state_log;
56b168be 2974 mctx->input.cur_idx = backup_cur_idx;
6291ee3c 2975
6291ee3c 2976 /* Then check the current node set has the node LAST_NODE. */
c0d5034e
UD
2977 if (cur_nodes != NULL && re_node_set_contains (cur_nodes, last_node))
2978 return REG_NOERROR;
2979
2980 return REG_NOMATCH;
6291ee3c
UD
2981}
2982
2983/* Helper functions for check_arrival. */
2984
2985/* Calculate the destination nodes of CUR_NODES at STR_IDX, and append them
2986 to NEXT_NODES.
2987 TODO: This function is similar to the functions transit_state*(),
2988 however this function has many additional works.
2989 Can't we unify them? */
2990
2991static reg_errcode_t
b41bd5bc 2992__attribute_warn_unused_result__
eb04c213 2993check_arrival_add_next_nodes (re_match_context_t *mctx, Idx str_idx,
e2f55264 2994 re_node_set *cur_nodes, re_node_set *next_nodes)
6291ee3c 2995{
c42b4152 2996 const re_dfa_t *const dfa = mctx->dfa;
eb04c213
AZ
2997 bool ok;
2998 Idx cur_idx;
ed8ae46b 2999#ifdef RE_ENABLE_I18N
c0c9615c 3000 reg_errcode_t err = REG_NOERROR;
ed8ae46b 3001#endif
6291ee3c
UD
3002 re_node_set union_set;
3003 re_node_set_init_empty (&union_set);
3004 for (cur_idx = 0; cur_idx < cur_nodes->nelem; ++cur_idx)
3005 {
3006 int naccepted = 0;
eb04c213 3007 Idx cur_node = cur_nodes->elems[cur_idx];
2a0356e1
AZ
3008 DEBUG_ASSERT (!IS_EPSILON_NODE (dfa->nodes[cur_node].type));
3009
6291ee3c 3010#ifdef RE_ENABLE_I18N
eb04c213 3011 /* If the node may accept "multi byte". */
02f3550c 3012 if (dfa->nodes[cur_node].accept_mb)
6291ee3c 3013 {
56b168be 3014 naccepted = check_node_accept_bytes (dfa, cur_node, &mctx->input,
6291ee3c
UD
3015 str_idx);
3016 if (naccepted > 1)
3017 {
3018 re_dfastate_t *dest_state;
eb04c213
AZ
3019 Idx next_node = dfa->nexts[cur_node];
3020 Idx next_idx = str_idx + naccepted;
6291ee3c
UD
3021 dest_state = mctx->state_log[next_idx];
3022 re_node_set_empty (&union_set);
3023 if (dest_state)
3024 {
3025 err = re_node_set_merge (&union_set, &dest_state->nodes);
f4efbdfb 3026 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3027 {
3028 re_node_set_free (&union_set);
3029 return err;
3030 }
6291ee3c 3031 }
eb04c213 3032 ok = re_node_set_insert (&union_set, next_node);
f4efbdfb 3033 if (__glibc_unlikely (! ok))
6291ee3c 3034 {
44777771
UD
3035 re_node_set_free (&union_set);
3036 return REG_ESPACE;
6291ee3c
UD
3037 }
3038 mctx->state_log[next_idx] = re_acquire_state (&err, dfa,
3039 &union_set);
f4efbdfb
PE
3040 if (__glibc_unlikely (mctx->state_log[next_idx] == NULL
3041 && err != REG_NOERROR))
6291ee3c
UD
3042 {
3043 re_node_set_free (&union_set);
3044 return err;
3045 }
3046 }
3047 }
3048#endif /* RE_ENABLE_I18N */
3049 if (naccepted
e3a87852 3050 || check_node_accept (mctx, dfa->nodes + cur_node, str_idx))
6291ee3c 3051 {
eb04c213 3052 ok = re_node_set_insert (next_nodes, dfa->nexts[cur_node]);
f4efbdfb 3053 if (__glibc_unlikely (! ok))
6291ee3c
UD
3054 {
3055 re_node_set_free (&union_set);
3056 return REG_ESPACE;
3057 }
3058 }
3059 }
3060 re_node_set_free (&union_set);
3061 return REG_NOERROR;
3062}
3063
3064/* For all the nodes in CUR_NODES, add the epsilon closures of them to
3065 CUR_NODES, however exclude the nodes which are:
3066 - inside the sub expression whose number is EX_SUBEXP, if FL_OPEN.
3067 - out of the sub expression whose number is EX_SUBEXP, if !FL_OPEN.
3068*/
3069
3070static reg_errcode_t
e2f55264 3071check_arrival_expand_ecl (const re_dfa_t *dfa, re_node_set *cur_nodes,
eb04c213 3072 Idx ex_subexp, int type)
6291ee3c
UD
3073{
3074 reg_errcode_t err;
eb04c213 3075 Idx idx, outside_node;
6291ee3c 3076 re_node_set new_nodes;
2a0356e1 3077 DEBUG_ASSERT (cur_nodes->nelem);
6291ee3c 3078 err = re_node_set_alloc (&new_nodes, cur_nodes->nelem);
f4efbdfb 3079 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3080 return err;
3081 /* Create a new node set NEW_NODES with the nodes which are epsilon
3082 closures of the node in CUR_NODES. */
3083
3084 for (idx = 0; idx < cur_nodes->nelem; ++idx)
3085 {
eb04c213 3086 Idx cur_node = cur_nodes->elems[idx];
6efbd82c 3087 const re_node_set *eclosure = dfa->eclosures + cur_node;
0ce7f49c 3088 outside_node = find_subexp_node (dfa, eclosure, ex_subexp, type);
6291ee3c
UD
3089 if (outside_node == -1)
3090 {
3091 /* There are no problematic nodes, just merge them. */
3092 err = re_node_set_merge (&new_nodes, eclosure);
f4efbdfb 3093 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3094 {
3095 re_node_set_free (&new_nodes);
3096 return err;
3097 }
3098 }
3099 else
3100 {
3101 /* There are problematic nodes, re-calculate incrementally. */
3102 err = check_arrival_expand_ecl_sub (dfa, &new_nodes, cur_node,
0ce7f49c 3103 ex_subexp, type);
f4efbdfb 3104 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3105 {
3106 re_node_set_free (&new_nodes);
3107 return err;
3108 }
3109 }
3110 }
3111 re_node_set_free (cur_nodes);
3112 *cur_nodes = new_nodes;
3113 return REG_NOERROR;
3114}
3115
3116/* Helper function for check_arrival_expand_ecl.
3117 Check incrementally the epsilon closure of TARGET, and if it isn't
3118 problematic append it to DST_NODES. */
3119
3120static reg_errcode_t
b41bd5bc 3121__attribute_warn_unused_result__
e2f55264 3122check_arrival_expand_ecl_sub (const re_dfa_t *dfa, re_node_set *dst_nodes,
eb04c213 3123 Idx target, Idx ex_subexp, int type)
6291ee3c 3124{
eb04c213 3125 Idx cur_node;
6291ee3c
UD
3126 for (cur_node = target; !re_node_set_contains (dst_nodes, cur_node);)
3127 {
eb04c213 3128 bool ok;
6291ee3c 3129
0ce7f49c 3130 if (dfa->nodes[cur_node].type == type
6291ee3c
UD
3131 && dfa->nodes[cur_node].opr.idx == ex_subexp)
3132 {
0ce7f49c 3133 if (type == OP_CLOSE_SUBEXP)
6291ee3c 3134 {
eb04c213 3135 ok = re_node_set_insert (dst_nodes, cur_node);
f4efbdfb 3136 if (__glibc_unlikely (! ok))
6291ee3c
UD
3137 return REG_ESPACE;
3138 }
3139 break;
3140 }
eb04c213 3141 ok = re_node_set_insert (dst_nodes, cur_node);
f4efbdfb 3142 if (__glibc_unlikely (! ok))
6291ee3c
UD
3143 return REG_ESPACE;
3144 if (dfa->edests[cur_node].nelem == 0)
3145 break;
3146 if (dfa->edests[cur_node].nelem == 2)
3147 {
eb04c213 3148 reg_errcode_t err;
6291ee3c
UD
3149 err = check_arrival_expand_ecl_sub (dfa, dst_nodes,
3150 dfa->edests[cur_node].elems[1],
0ce7f49c 3151 ex_subexp, type);
f4efbdfb 3152 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3153 return err;
3154 }
3155 cur_node = dfa->edests[cur_node].elems[0];
3156 }
3157 return REG_NOERROR;
3158}
3159
3160
3161/* For all the back references in the current state, calculate the
3162 destination of the back references by the appropriate entry
3163 in MCTX->BKREF_ENTS. */
3164
3165static reg_errcode_t
b41bd5bc 3166__attribute_warn_unused_result__
e2f55264 3167expand_bkref_cache (re_match_context_t *mctx, re_node_set *cur_nodes,
eb04c213 3168 Idx cur_str, Idx subexp_num, int type)
6291ee3c 3169{
76b864c8 3170 const re_dfa_t *const dfa = mctx->dfa;
6291ee3c 3171 reg_errcode_t err;
eb04c213 3172 Idx cache_idx_start = search_cur_bkref_entry (mctx, cur_str);
e40a38b3 3173 struct re_backref_cache_entry *ent;
6291ee3c 3174
e40a38b3
UD
3175 if (cache_idx_start == -1)
3176 return REG_NOERROR;
3177
3178 restart:
3179 ent = mctx->bkref_ents + cache_idx_start;
3180 do
6291ee3c 3181 {
eb04c213 3182 Idx to_idx, next_node;
e40a38b3 3183
6291ee3c
UD
3184 /* Is this entry ENT is appropriate? */
3185 if (!re_node_set_contains (cur_nodes, ent->node))
3186 continue; /* No. */
3187
3188 to_idx = cur_str + ent->subexp_to - ent->subexp_from;
3189 /* Calculate the destination of the back reference, and append it
3190 to MCTX->STATE_LOG. */
3191 if (to_idx == cur_str)
3192 {
3193 /* The backreference did epsilon transit, we must re-check all the
3194 node in the current state. */
3195 re_node_set new_dests;
3196 reg_errcode_t err2, err3;
3197 next_node = dfa->edests[ent->node].elems[0];
3198 if (re_node_set_contains (cur_nodes, next_node))
3199 continue;
3200 err = re_node_set_init_1 (&new_dests, next_node);
0ce7f49c 3201 err2 = check_arrival_expand_ecl (dfa, &new_dests, subexp_num, type);
6291ee3c
UD
3202 err3 = re_node_set_merge (cur_nodes, &new_dests);
3203 re_node_set_free (&new_dests);
f4efbdfb
PE
3204 if (__glibc_unlikely (err != REG_NOERROR || err2 != REG_NOERROR
3205 || err3 != REG_NOERROR))
6291ee3c
UD
3206 {
3207 err = (err != REG_NOERROR ? err
3208 : (err2 != REG_NOERROR ? err2 : err3));
3209 return err;
3210 }
3211 /* TODO: It is still inefficient... */
e40a38b3 3212 goto restart;
6291ee3c
UD
3213 }
3214 else
3215 {
3216 re_node_set union_set;
3217 next_node = dfa->nexts[ent->node];
3218 if (mctx->state_log[to_idx])
3219 {
eb04c213 3220 bool ok;
6291ee3c
UD
3221 if (re_node_set_contains (&mctx->state_log[to_idx]->nodes,
3222 next_node))
3223 continue;
3224 err = re_node_set_init_copy (&union_set,
3225 &mctx->state_log[to_idx]->nodes);
eb04c213 3226 ok = re_node_set_insert (&union_set, next_node);
f4efbdfb 3227 if (__glibc_unlikely (err != REG_NOERROR || ! ok))
6291ee3c
UD
3228 {
3229 re_node_set_free (&union_set);
3230 err = err != REG_NOERROR ? err : REG_ESPACE;
3231 return err;
3232 }
3233 }
3234 else
3235 {
3236 err = re_node_set_init_1 (&union_set, next_node);
f4efbdfb 3237 if (__glibc_unlikely (err != REG_NOERROR))
6291ee3c
UD
3238 return err;
3239 }
3240 mctx->state_log[to_idx] = re_acquire_state (&err, dfa, &union_set);
3241 re_node_set_free (&union_set);
f4efbdfb
PE
3242 if (__glibc_unlikely (mctx->state_log[to_idx] == NULL
3243 && err != REG_NOERROR))
6291ee3c
UD
3244 return err;
3245 }
3246 }
e40a38b3 3247 while (ent++->more);
6291ee3c
UD
3248 return REG_NOERROR;
3249}
3250
3251/* Build transition table for the state.
eb04c213 3252 Return true if successful. */
6291ee3c 3253
eb04c213 3254static bool
e2f55264 3255build_trtable (const re_dfa_t *dfa, re_dfastate_t *state)
6291ee3c
UD
3256{
3257 reg_errcode_t err;
eb04c213
AZ
3258 Idx i, j;
3259 int ch;
3260 bool need_word_trtable = false;
2c05d33f
UD
3261 bitset_word_t elem, mask;
3262 bool dests_node_malloced = false;
3263 bool dest_states_malloced = false;
eb04c213 3264 Idx ndests; /* Number of the destination states from 'state'. */
6291ee3c
UD
3265 re_dfastate_t **trtable;
3266 re_dfastate_t **dest_states = NULL, **dest_states_word, **dest_states_nl;
3267 re_node_set follows, *dests_node;
2c05d33f
UD
3268 bitset_t *dests_ch;
3269 bitset_t acceptable;
3270
3271 struct dests_alloc
3272 {
3273 re_node_set dests_node[SBC_MAX];
3274 bitset_t dests_ch[SBC_MAX];
3275 } *dests_alloc;
3b0bdc72
UD
3276
3277 /* We build DFA states which corresponds to the destination nodes
eb04c213
AZ
3278 from 'state'. 'dests_node[i]' represents the nodes which i-th
3279 destination state contains, and 'dests_ch[i]' represents the
3b0bdc72 3280 characters which i-th destination state accepts. */
2c05d33f
UD
3281 if (__libc_use_alloca (sizeof (struct dests_alloc)))
3282 dests_alloc = (struct dests_alloc *) alloca (sizeof (struct dests_alloc));
05dab910 3283 else
05dab910 3284 {
2c05d33f 3285 dests_alloc = re_malloc (struct dests_alloc, 1);
f4efbdfb 3286 if (__glibc_unlikely (dests_alloc == NULL))
eb04c213 3287 return false;
2c05d33f 3288 dests_node_malloced = true;
05dab910 3289 }
2c05d33f
UD
3290 dests_node = dests_alloc->dests_node;
3291 dests_ch = dests_alloc->dests_ch;
3b0bdc72 3292
eb04c213 3293 /* Initialize transition table. */
ab4b89fe 3294 state->word_trtable = state->trtable = NULL;
3b0bdc72 3295
eb04c213 3296 /* At first, group all nodes belonging to 'state' into several
3b0bdc72 3297 destinations. */
56b168be 3298 ndests = group_nodes_into_DFAstates (dfa, state, dests_node, dests_ch);
f4efbdfb 3299 if (__glibc_unlikely (ndests <= 0))
3b0bdc72 3300 {
05dab910 3301 if (dests_node_malloced)
eb04c213
AZ
3302 re_free (dests_alloc);
3303 /* Return false in case of an error, true otherwise. */
05dab910 3304 if (ndests == 0)
c13c99fa 3305 {
3ce12656 3306 state->trtable = (re_dfastate_t **)
ab4b89fe 3307 calloc (sizeof (re_dfastate_t *), SBC_MAX);
f4efbdfb 3308 if (__glibc_unlikely (state->trtable == NULL))
eb04c213
AZ
3309 return false;
3310 return true;
c13c99fa 3311 }
eb04c213 3312 return false;
3b0bdc72
UD
3313 }
3314
a9388965 3315 err = re_node_set_alloc (&follows, ndests + 1);
f4efbdfb 3316 if (__glibc_unlikely (err != REG_NOERROR))
05dab910 3317 goto out_free;
daa84549
PE
3318
3319 /* Avoid arithmetic overflow in size calculation. */
f4efbdfb
PE
3320 size_t ndests_max
3321 = ((SIZE_MAX - (sizeof (re_node_set) + sizeof (bitset_t)) * SBC_MAX)
3322 / (3 * sizeof (re_dfastate_t *)));
3323 if (__glibc_unlikely (ndests_max < ndests))
daa84549 3324 goto out_free;
05dab910 3325
2c05d33f 3326 if (__libc_use_alloca ((sizeof (re_node_set) + sizeof (bitset_t)) * SBC_MAX
05dab910
RM
3327 + ndests * 3 * sizeof (re_dfastate_t *)))
3328 dest_states = (re_dfastate_t **)
ab4b89fe 3329 alloca (ndests * 3 * sizeof (re_dfastate_t *));
05dab910 3330 else
05dab910 3331 {
eb04c213 3332 dest_states = re_malloc (re_dfastate_t *, ndests * 3);
f4efbdfb 3333 if (__glibc_unlikely (dest_states == NULL))
05dab910
RM
3334 {
3335out_free:
3336 if (dest_states_malloced)
eb04c213 3337 re_free (dest_states);
05dab910
RM
3338 re_node_set_free (&follows);
3339 for (i = 0; i < ndests; ++i)
3340 re_node_set_free (dests_node + i);
05dab910 3341 if (dests_node_malloced)
eb04c213
AZ
3342 re_free (dests_alloc);
3343 return false;
05dab910 3344 }
2c05d33f 3345 dest_states_malloced = true;
05dab910
RM
3346 }
3347 dest_states_word = dest_states + ndests;
3348 dest_states_nl = dest_states_word + ndests;
3349 bitset_empty (acceptable);
a9388965 3350
3b0bdc72
UD
3351 /* Then build the states for all destinations. */
3352 for (i = 0; i < ndests; ++i)
3353 {
eb04c213 3354 Idx next_node;
3b0bdc72
UD
3355 re_node_set_empty (&follows);
3356 /* Merge the follows of this destination states. */
3357 for (j = 0; j < dests_node[i].nelem; ++j)
15a7d175
UD
3358 {
3359 next_node = dfa->nexts[dests_node[i].elems[j]];
3360 if (next_node != -1)
3361 {
3362 err = re_node_set_merge (&follows, dfa->eclosures + next_node);
f4efbdfb 3363 if (__glibc_unlikely (err != REG_NOERROR))
05dab910 3364 goto out_free;
15a7d175
UD
3365 }
3366 }
a9388965 3367 dest_states[i] = re_acquire_state_context (&err, dfa, &follows, 0);
f4efbdfb 3368 if (__glibc_unlikely (dest_states[i] == NULL && err != REG_NOERROR))
15a7d175 3369 goto out_free;
3b0bdc72 3370 /* If the new state has context constraint,
15a7d175 3371 build appropriate states for these contexts. */
3b0bdc72 3372 if (dest_states[i]->has_constraint)
15a7d175
UD
3373 {
3374 dest_states_word[i] = re_acquire_state_context (&err, dfa, &follows,
3375 CONTEXT_WORD);
f4efbdfb
PE
3376 if (__glibc_unlikely (dest_states_word[i] == NULL
3377 && err != REG_NOERROR))
15a7d175 3378 goto out_free;
3ce12656 3379
ab4b89fe 3380 if (dest_states[i] != dest_states_word[i] && dfa->mb_cur_max > 1)
eb04c213 3381 need_word_trtable = true;
3ce12656 3382
15a7d175
UD
3383 dest_states_nl[i] = re_acquire_state_context (&err, dfa, &follows,
3384 CONTEXT_NEWLINE);
f4efbdfb 3385 if (__glibc_unlikely (dest_states_nl[i] == NULL && err != REG_NOERROR))
15a7d175 3386 goto out_free;
eb04c213 3387 }
3b0bdc72 3388 else
15a7d175
UD
3389 {
3390 dest_states_word[i] = dest_states[i];
3391 dest_states_nl[i] = dest_states[i];
3392 }
3b0bdc72
UD
3393 bitset_merge (acceptable, dests_ch[i]);
3394 }
3395
f4efbdfb 3396 if (!__glibc_unlikely (need_word_trtable))
3ce12656
UD
3397 {
3398 /* We don't care about whether the following character is a word
3399 character, or we are in a single-byte character set so we can
3400 discern by looking at the character code: allocate a
3401 256-entry transition table. */
ab4b89fe
UD
3402 trtable = state->trtable =
3403 (re_dfastate_t **) calloc (sizeof (re_dfastate_t *), SBC_MAX);
f4efbdfb 3404 if (__glibc_unlikely (trtable == NULL))
3ce12656
UD
3405 goto out_free;
3406
3407 /* For all characters ch...: */
2c05d33f
UD
3408 for (i = 0; i < BITSET_WORDS; ++i)
3409 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;
3ce12656
UD
3410 elem;
3411 mask <<= 1, elem >>= 1, ++ch)
f4efbdfb 3412 if (__glibc_unlikely (elem & 1))
3ce12656
UD
3413 {
3414 /* There must be exactly one destination which accepts
3415 character ch. See group_nodes_into_DFAstates. */
3416 for (j = 0; (dests_ch[j][i] & mask) == 0; ++j)
3417 ;
6b6557e8 3418
3ce12656 3419 /* j-th destination accepts the word character ch. */
56b168be 3420 if (dfa->word_char[i] & mask)
3ce12656
UD
3421 trtable[ch] = dest_states_word[j];
3422 else
3423 trtable[ch] = dest_states[j];
3424 }
3425 }
3426 else
3427 {
3428 /* We care about whether the following character is a word
3429 character, and we are in a multi-byte character set: discern
3430 by looking at the character code: build two 256-entry
3431 transition tables, one starting at trtable[0] and one
3432 starting at trtable[SBC_MAX]. */
ab4b89fe
UD
3433 trtable = state->word_trtable =
3434 (re_dfastate_t **) calloc (sizeof (re_dfastate_t *), 2 * SBC_MAX);
f4efbdfb 3435 if (__glibc_unlikely (trtable == NULL))
3ce12656 3436 goto out_free;
6b6557e8 3437
3ce12656 3438 /* For all characters ch...: */
2c05d33f
UD
3439 for (i = 0; i < BITSET_WORDS; ++i)
3440 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1;
3ce12656
UD
3441 elem;
3442 mask <<= 1, elem >>= 1, ++ch)
f4efbdfb 3443 if (__glibc_unlikely (elem & 1))
3ce12656
UD
3444 {
3445 /* There must be exactly one destination which accepts
3446 character ch. See group_nodes_into_DFAstates. */
3447 for (j = 0; (dests_ch[j][i] & mask) == 0; ++j)
3448 ;
6b6557e8 3449
3ce12656
UD
3450 /* j-th destination accepts the word character ch. */
3451 trtable[ch] = dest_states[j];
3452 trtable[ch + SBC_MAX] = dest_states_word[j];
3453 }
3454 }
6b6557e8 3455
3b0bdc72 3456 /* new line */
c202c2c5
UD
3457 if (bitset_contain (acceptable, NEWLINE_CHAR))
3458 {
3459 /* The current state accepts newline character. */
3ce12656
UD
3460 for (j = 0; j < ndests; ++j)
3461 if (bitset_contain (dests_ch[j], NEWLINE_CHAR))
15a7d175
UD
3462 {
3463 /* k-th destination accepts newline character. */
3ce12656 3464 trtable[NEWLINE_CHAR] = dest_states_nl[j];
ab4b89fe 3465 if (need_word_trtable)
3ce12656 3466 trtable[NEWLINE_CHAR + SBC_MAX] = dest_states_nl[j];
15a7d175
UD
3467 /* There must be only one destination which accepts
3468 newline. See group_nodes_into_DFAstates. */
3469 break;
3470 }
c202c2c5 3471 }
3b0bdc72 3472
05dab910 3473 if (dest_states_malloced)
eb04c213 3474 re_free (dest_states);
3b0bdc72
UD
3475
3476 re_node_set_free (&follows);
3477 for (i = 0; i < ndests; ++i)
3478 re_node_set_free (dests_node + i);
3479
05dab910 3480 if (dests_node_malloced)
eb04c213 3481 re_free (dests_alloc);
3b0bdc72 3482
eb04c213 3483 return true;
3b0bdc72
UD
3484}
3485
3486/* Group all nodes belonging to STATE into several destinations.
3487 Then for all destinations, set the nodes belonging to the destination
3488 to DESTS_NODE[i] and set the characters accepted by the destination
3489 to DEST_CH[i]. This function return the number of destinations. */
3490
eb04c213 3491static Idx
e2f55264
UD
3492group_nodes_into_DFAstates (const re_dfa_t *dfa, const re_dfastate_t *state,
3493 re_node_set *dests_node, bitset_t *dests_ch)
3b0bdc72 3494{
a9388965 3495 reg_errcode_t err;
eb04c213
AZ
3496 bool ok;
3497 Idx i, j, k;
3498 Idx ndests; /* Number of the destinations from 'state'. */
2c05d33f 3499 bitset_t accepts; /* Characters a node can accept. */
3b0bdc72
UD
3500 const re_node_set *cur_nodes = &state->nodes;
3501 bitset_empty (accepts);
3502 ndests = 0;
3503
eb04c213 3504 /* For all the nodes belonging to 'state', */
3b0bdc72
UD
3505 for (i = 0; i < cur_nodes->nelem; ++i)
3506 {
3b0bdc72
UD
3507 re_token_t *node = &dfa->nodes[cur_nodes->elems[i]];
3508 re_token_type_t type = node->type;
485d775d 3509 unsigned int constraint = node->constraint;
3b0bdc72
UD
3510
3511 /* Enumerate all single byte character this node can accept. */
3512 if (type == CHARACTER)
15a7d175 3513 bitset_set (accepts, node->opr.c);
3b0bdc72 3514 else if (type == SIMPLE_BRACKET)
15a7d175
UD
3515 {
3516 bitset_merge (accepts, node->opr.sbcset);
3517 }
3b0bdc72 3518 else if (type == OP_PERIOD)
15a7d175 3519 {
65e6becf
UD
3520#ifdef RE_ENABLE_I18N
3521 if (dfa->mb_cur_max > 1)
3522 bitset_merge (accepts, dfa->sb_char);
3523 else
0ce7f49c 3524#endif
65e6becf 3525 bitset_set_all (accepts);
56b168be 3526 if (!(dfa->syntax & RE_DOT_NEWLINE))
15a7d175 3527 bitset_clear (accepts, '\n');
56b168be 3528 if (dfa->syntax & RE_DOT_NOT_NULL)
15a7d175
UD
3529 bitset_clear (accepts, '\0');
3530 }
c0d5034e 3531#ifdef RE_ENABLE_I18N
ad7f28c2 3532 else if (type == OP_UTF8_PERIOD)
2da42bc0 3533 {
eb04c213
AZ
3534 if (ASCII_CHARS % BITSET_WORD_BITS == 0)
3535 memset (accepts, -1, ASCII_CHARS / CHAR_BIT);
3536 else
3537 bitset_merge (accepts, utf8_sb_map);
56b168be 3538 if (!(dfa->syntax & RE_DOT_NEWLINE))
ad7f28c2 3539 bitset_clear (accepts, '\n');
56b168be 3540 if (dfa->syntax & RE_DOT_NOT_NULL)
ad7f28c2 3541 bitset_clear (accepts, '\0');
2da42bc0 3542 }
c0d5034e 3543#endif
3b0bdc72 3544 else
15a7d175 3545 continue;
3b0bdc72 3546
eb04c213 3547 /* Check the 'accepts' and sift the characters which are not
15a7d175 3548 match it the context. */
3b0bdc72 3549 if (constraint)
15a7d175 3550 {
15a7d175
UD
3551 if (constraint & NEXT_NEWLINE_CONSTRAINT)
3552 {
2c05d33f 3553 bool accepts_newline = bitset_contain (accepts, NEWLINE_CHAR);
15a7d175
UD
3554 bitset_empty (accepts);
3555 if (accepts_newline)
3556 bitset_set (accepts, NEWLINE_CHAR);
3557 else
3558 continue;
3559 }
66b110e8
UD
3560 if (constraint & NEXT_ENDBUF_CONSTRAINT)
3561 {
3562 bitset_empty (accepts);
3563 continue;
3564 }
c13c99fa 3565
66b110e8 3566 if (constraint & NEXT_WORD_CONSTRAINT)
65e6becf 3567 {
2c05d33f 3568 bitset_word_t any_set = 0;
1cef7b3c
UD
3569 if (type == CHARACTER && !node->word_char)
3570 {
3571 bitset_empty (accepts);
3572 continue;
3573 }
65e6becf
UD
3574#ifdef RE_ENABLE_I18N
3575 if (dfa->mb_cur_max > 1)
2c05d33f 3576 for (j = 0; j < BITSET_WORDS; ++j)
457beec8 3577 any_set |= (accepts[j] &= (dfa->word_char[j] | ~dfa->sb_char[j]));
65e6becf
UD
3578 else
3579#endif
2c05d33f 3580 for (j = 0; j < BITSET_WORDS; ++j)
457beec8
UD
3581 any_set |= (accepts[j] &= dfa->word_char[j]);
3582 if (!any_set)
3583 continue;
65e6becf 3584 }
66b110e8 3585 if (constraint & NEXT_NOTWORD_CONSTRAINT)
65e6becf 3586 {
2c05d33f 3587 bitset_word_t any_set = 0;
1cef7b3c
UD
3588 if (type == CHARACTER && node->word_char)
3589 {
3590 bitset_empty (accepts);
3591 continue;
3592 }
65e6becf
UD
3593#ifdef RE_ENABLE_I18N
3594 if (dfa->mb_cur_max > 1)
2c05d33f 3595 for (j = 0; j < BITSET_WORDS; ++j)
457beec8 3596 any_set |= (accepts[j] &= ~(dfa->word_char[j] & dfa->sb_char[j]));
65e6becf
UD
3597 else
3598#endif
2c05d33f 3599 for (j = 0; j < BITSET_WORDS; ++j)
457beec8
UD
3600 any_set |= (accepts[j] &= ~dfa->word_char[j]);
3601 if (!any_set)
3602 continue;
65e6becf 3603 }
15a7d175 3604 }
3b0bdc72 3605
eb04c213 3606 /* Then divide 'accepts' into DFA states, or create a new
457beec8 3607 state. Above, we make sure that accepts is not empty. */
3b0bdc72 3608 for (j = 0; j < ndests; ++j)
15a7d175 3609 {
2c05d33f
UD
3610 bitset_t intersec; /* Intersection sets, see below. */
3611 bitset_t remains;
15a7d175 3612 /* Flags, see below. */
2c05d33f 3613 bitset_word_t has_intersec, not_subset, not_consumed;
15a7d175
UD
3614
3615 /* Optimization, skip if this state doesn't accept the character. */
3616 if (type == CHARACTER && !bitset_contain (dests_ch[j], node->opr.c))
3617 continue;
3618
eb04c213 3619 /* Enumerate the intersection set of this state and 'accepts'. */
15a7d175 3620 has_intersec = 0;
2c05d33f 3621 for (k = 0; k < BITSET_WORDS; ++k)
15a7d175
UD
3622 has_intersec |= intersec[k] = accepts[k] & dests_ch[j][k];
3623 /* And skip if the intersection set is empty. */
3624 if (!has_intersec)
3625 continue;
3626
eb04c213 3627 /* Then check if this state is a subset of 'accepts'. */
15a7d175 3628 not_subset = not_consumed = 0;
2c05d33f 3629 for (k = 0; k < BITSET_WORDS; ++k)
15a7d175
UD
3630 {
3631 not_subset |= remains[k] = ~accepts[k] & dests_ch[j][k];
3632 not_consumed |= accepts[k] = accepts[k] & ~dests_ch[j][k];
3633 }
3634
eb04c213
AZ
3635 /* If this state isn't a subset of 'accepts', create a
3636 new group state, which has the 'remains'. */
15a7d175
UD
3637 if (not_subset)
3638 {
3639 bitset_copy (dests_ch[ndests], remains);
3640 bitset_copy (dests_ch[j], intersec);
3641 err = re_node_set_init_copy (dests_node + ndests, &dests_node[j]);
f4efbdfb 3642 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
3643 goto error_return;
3644 ++ndests;
3645 }
3646
3647 /* Put the position in the current group. */
eb04c213 3648 ok = re_node_set_insert (&dests_node[j], cur_nodes->elems[i]);
f4efbdfb 3649 if (__glibc_unlikely (! ok))
15a7d175
UD
3650 goto error_return;
3651
3652 /* If all characters are consumed, go to next node. */
3653 if (!not_consumed)
3654 break;
3655 }
3b0bdc72
UD
3656 /* Some characters remain, create a new group. */
3657 if (j == ndests)
15a7d175
UD
3658 {
3659 bitset_copy (dests_ch[ndests], accepts);
3660 err = re_node_set_init_1 (dests_node + ndests, cur_nodes->elems[i]);
f4efbdfb 3661 if (__glibc_unlikely (err != REG_NOERROR))
15a7d175
UD
3662 goto error_return;
3663 ++ndests;
3664 bitset_empty (accepts);
3665 }
3b0bdc72 3666 }
2a0356e1 3667 assume (ndests <= SBC_MAX);
3b0bdc72 3668 return ndests;
1b2c2628
UD
3669 error_return:
3670 for (j = 0; j < ndests; ++j)
3671 re_node_set_free (dests_node + j);
3672 return -1;
3b0bdc72
UD
3673}
3674
434d3784 3675#ifdef RE_ENABLE_I18N
eb04c213 3676/* Check how many bytes the node 'dfa->nodes[node_idx]' accepts.
434d3784
UD
3677 Return the number of the bytes the node accepts.
3678 STR_IDX is the current index of the input string.
3679
3680 This function handles the nodes which can accept one character, or
3681 one collating element like '.', '[a-z]', opposite to the other nodes
3682 can only accept one byte. */
3b0bdc72 3683
8c0ab919
RM
3684# ifdef _LIBC
3685# include <locale/weight.h>
3686# endif
3687
3b0bdc72 3688static int
eb04c213
AZ
3689check_node_accept_bytes (const re_dfa_t *dfa, Idx node_idx,
3690 const re_string_t *input, Idx str_idx)
3b0bdc72 3691{
3b0bdc72 3692 const re_token_t *node = dfa->nodes + node_idx;
ad7f28c2 3693 int char_len, elem_len;
eb04c213 3694 Idx i;
ad7f28c2 3695
f4efbdfb 3696 if (__glibc_unlikely (node->type == OP_UTF8_PERIOD))
ad7f28c2
UD
3697 {
3698 unsigned char c = re_string_byte_at (input, str_idx), d;
f4efbdfb 3699 if (__glibc_likely (c < 0xc2))
ad7f28c2
UD
3700 return 0;
3701
3702 if (str_idx + 2 > input->len)
3703 return 0;
3704
3705 d = re_string_byte_at (input, str_idx + 1);
3706 if (c < 0xe0)
3707 return (d < 0x80 || d > 0xbf) ? 0 : 2;
3708 else if (c < 0xf0)
3709 {
3710 char_len = 3;
3711 if (c == 0xe0 && d < 0xa0)
3712 return 0;
3713 }
3714 else if (c < 0xf8)
3715 {
3716 char_len = 4;
3717 if (c == 0xf0 && d < 0x90)
3718 return 0;
3719 }
3720 else if (c < 0xfc)
3721 {
3722 char_len = 5;
3723 if (c == 0xf8 && d < 0x88)
3724 return 0;
3725 }
3726 else if (c < 0xfe)
3727 {
3728 char_len = 6;
3729 if (c == 0xfc && d < 0x84)
3730 return 0;
3731 }
3732 else
3733 return 0;
3734
3735 if (str_idx + char_len > input->len)
3736 return 0;
3737
3738 for (i = 1; i < char_len; ++i)
3739 {
3740 d = re_string_byte_at (input, str_idx + i);
3741 if (d < 0x80 || d > 0xbf)
3742 return 0;
3743 }
3744 return char_len;
3745 }
3746
3747 char_len = re_string_char_size_at (input, str_idx);
3b0bdc72
UD
3748 if (node->type == OP_PERIOD)
3749 {
ad7f28c2 3750 if (char_len <= 1)
2da42bc0 3751 return 0;
ad7f28c2
UD
3752 /* FIXME: I don't think this if is needed, as both '\n'
3753 and '\0' are char_len == 1. */
434d3784 3754 /* '.' accepts any one character except the following two cases. */
34a5a146
JM
3755 if ((!(dfa->syntax & RE_DOT_NEWLINE)
3756 && re_string_byte_at (input, str_idx) == '\n')
3757 || ((dfa->syntax & RE_DOT_NOT_NULL)
3758 && re_string_byte_at (input, str_idx) == '\0'))
15a7d175 3759 return 0;
3b0bdc72
UD
3760 return char_len;
3761 }
ad7f28c2
UD
3762
3763 elem_len = re_string_elem_size_at (input, str_idx);
6c2a04a7 3764 if ((elem_len <= 1 && char_len <= 1) || char_len == 0)
ad7f28c2
UD
3765 return 0;
3766
3767 if (node->type == COMPLEX_BRACKET)
3b0bdc72
UD
3768 {
3769 const re_charset_t *cset = node->opr.mbcset;
434d3784 3770# ifdef _LIBC
1c99f950
UD
3771 const unsigned char *pin
3772 = ((const unsigned char *) re_string_get_buffer (input) + str_idx);
eb04c213 3773 Idx j;
5f93cd52 3774 uint32_t nrules;
434d3784
UD
3775# endif /* _LIBC */
3776 int match_len = 0;
3777 wchar_t wc = ((cset->nranges || cset->nchar_classes || cset->nmbchars)
15a7d175 3778 ? re_string_wchar_at (input, str_idx) : 0);
434d3784
UD
3779
3780 /* match with multibyte character? */
3781 for (i = 0; i < cset->nmbchars; ++i)
15a7d175
UD
3782 if (wc == cset->mbchars[i])
3783 {
3784 match_len = char_len;
3785 goto check_node_accept_bytes_match;
3786 }
434d3784
UD
3787 /* match with character_class? */
3788 for (i = 0; i < cset->nchar_classes; ++i)
15a7d175
UD
3789 {
3790 wctype_t wt = cset->char_classes[i];
3791 if (__iswctype (wc, wt))
3792 {
3793 match_len = char_len;
3794 goto check_node_accept_bytes_match;
3795 }
3796 }
434d3784
UD
3797
3798# ifdef _LIBC
5f93cd52 3799 nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3b0bdc72 3800 if (nrules != 0)
15a7d175
UD
3801 {
3802 unsigned int in_collseq = 0;
3803 const int32_t *table, *indirect;
3804 const unsigned char *weights, *extra;
3805 const char *collseqwc;
3b0bdc72 3806
15a7d175
UD
3807 /* match with collating_symbol? */
3808 if (cset->ncoll_syms)
3809 extra = (const unsigned char *)
3810 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
3811 for (i = 0; i < cset->ncoll_syms; ++i)
3812 {
3813 const unsigned char *coll_sym = extra + cset->coll_syms[i];
3814 /* Compare the length of input collating element and
3815 the length of current collating element. */
3816 if (*coll_sym != elem_len)
3817 continue;
3818 /* Compare each bytes. */
3819 for (j = 0; j < *coll_sym; j++)
3820 if (pin[j] != coll_sym[1 + j])
3821 break;
3822 if (j == *coll_sym)
3823 {
3824 /* Match if every bytes is equal. */
3825 match_len = j;
3826 goto check_node_accept_bytes_match;
3827 }
3828 }
3829
3830 if (cset->nranges)
3831 {
3832 if (elem_len <= char_len)
3833 {
3834 collseqwc = _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQWC);
25337753 3835 in_collseq = __collseq_table_lookup (collseqwc, wc);
15a7d175
UD
3836 }
3837 else
3838 in_collseq = find_collation_sequence_value (pin, elem_len);
3839 }
3840 /* match with range expression? */
eb04c213 3841 /* FIXME: Implement rational ranges here, too. */
15a7d175
UD
3842 for (i = 0; i < cset->nranges; ++i)
3843 if (cset->range_starts[i] <= in_collseq
3844 && in_collseq <= cset->range_ends[i])
3845 {
3846 match_len = elem_len;
3847 goto check_node_accept_bytes_match;
3848 }
3849
3850 /* match with equivalence_class? */
3851 if (cset->nequiv_classes)
3852 {
3853 const unsigned char *cp = pin;
3854 table = (const int32_t *)
3855 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3856 weights = (const unsigned char *)
3857 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_WEIGHTMB);
3858 extra = (const unsigned char *)
3859 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_EXTRAMB);
3860 indirect = (const int32_t *)
3861 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_INDIRECTMB);
8c0ab919 3862 int32_t idx = findidx (table, indirect, extra, &cp, elem_len);
7b2f4ced
FW
3863 int32_t rule = idx >> 24;
3864 idx &= 0xffffff;
15a7d175 3865 if (idx > 0)
7b2f4ced
FW
3866 {
3867 size_t weight_len = weights[idx];
3868 for (i = 0; i < cset->nequiv_classes; ++i)
3869 {
3870 int32_t equiv_class_idx = cset->equiv_classes[i];
3871 int32_t equiv_class_rule = equiv_class_idx >> 24;
3872 equiv_class_idx &= 0xffffff;
3873 if (weights[equiv_class_idx] == weight_len
3874 && equiv_class_rule == rule
3875 && memcmp (weights + idx + 1,
3876 weights + equiv_class_idx + 1,
3877 weight_len) == 0)
3878 {
3879 match_len = elem_len;
3880 goto check_node_accept_bytes_match;
3881 }
3882 }
3883 }
15a7d175
UD
3884 }
3885 }
434d3784
UD
3886 else
3887# endif /* _LIBC */
15a7d175
UD
3888 {
3889 /* match with range expression? */
15a7d175
UD
3890 for (i = 0; i < cset->nranges; ++i)
3891 {
eb04c213 3892 if (cset->range_starts[i] <= wc && wc <= cset->range_ends[i])
15a7d175
UD
3893 {
3894 match_len = char_len;
3895 goto check_node_accept_bytes_match;
3896 }
3897 }
3898 }
434d3784
UD
3899 check_node_accept_bytes_match:
3900 if (!cset->non_match)
15a7d175 3901 return match_len;
434d3784 3902 else
15a7d175
UD
3903 {
3904 if (match_len > 0)
3905 return 0;
3906 else
3907 return (elem_len > char_len) ? elem_len : char_len;
3908 }
3b0bdc72
UD
3909 }
3910 return 0;
3911}
3912
434d3784 3913# ifdef _LIBC
3b0bdc72 3914static unsigned int
e2f55264 3915find_collation_sequence_value (const unsigned char *mbs, size_t mbs_len)
3b0bdc72
UD
3916{
3917 uint32_t nrules = _NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_NRULES);
3918 if (nrules == 0)
3919 {
3920 if (mbs_len == 1)
15a7d175
UD
3921 {
3922 /* No valid character. Match it as a single byte character. */
3923 const unsigned char *collseq = (const unsigned char *)
3924 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_COLLSEQMB);
3925 return collseq[mbs[0]];
3926 }
3b0bdc72
UD
3927 return UINT_MAX;
3928 }
3929 else
3930 {
3931 int32_t idx;
3932 const unsigned char *extra = (const unsigned char *)
15a7d175 3933 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB);
6c2a04a7
UD
3934 int32_t extrasize = (const unsigned char *)
3935 _NL_CURRENT (LC_COLLATE, _NL_COLLATE_SYMB_EXTRAMB + 1) - extra;
3b0bdc72 3936
6c2a04a7 3937 for (idx = 0; idx < extrasize;)
15a7d175 3938 {
eb04c213
AZ
3939 int mbs_cnt;
3940 bool found = false;
15a7d175
UD
3941 int32_t elem_mbs_len;
3942 /* Skip the name of collating element name. */
3943 idx = idx + extra[idx] + 1;
3944 elem_mbs_len = extra[idx++];
3945 if (mbs_len == elem_mbs_len)
3946 {
3947 for (mbs_cnt = 0; mbs_cnt < elem_mbs_len; ++mbs_cnt)
3948 if (extra[idx + mbs_cnt] != mbs[mbs_cnt])
3949 break;
3950 if (mbs_cnt == elem_mbs_len)
3951 /* Found the entry. */
eb04c213 3952 found = true;
15a7d175
UD
3953 }
3954 /* Skip the byte sequence of the collating element. */
3955 idx += elem_mbs_len;
3956 /* Adjust for the alignment. */
3957 idx = (idx + 3) & ~3;
3958 /* Skip the collation sequence value. */
3959 idx += sizeof (uint32_t);
3960 /* Skip the wide char sequence of the collating element. */
d84acf38 3961 idx = idx + sizeof (uint32_t) * (*(int32_t *) (extra + idx) + 1);
15a7d175
UD
3962 /* If we found the entry, return the sequence value. */
3963 if (found)
3964 return *(uint32_t *) (extra + idx);
3965 /* Skip the collation sequence value. */
3966 idx += sizeof (uint32_t);
3967 }
6c2a04a7 3968 return UINT_MAX;
3b0bdc72
UD
3969 }
3970}
434d3784
UD
3971# endif /* _LIBC */
3972#endif /* RE_ENABLE_I18N */
3b0bdc72
UD
3973
3974/* Check whether the node accepts the byte which is IDX-th
3975 byte of the INPUT. */
3976
eb04c213 3977static bool
e2f55264 3978check_node_accept (const re_match_context_t *mctx, const re_token_t *node,
eb04c213 3979 Idx idx)
3b0bdc72 3980{
3b0bdc72 3981 unsigned char ch;
56b168be 3982 ch = re_string_byte_at (&mctx->input, idx);
ad7f28c2
UD
3983 switch (node->type)
3984 {
3985 case CHARACTER:
5cf1ec52 3986 if (node->opr.c != ch)
eb04c213 3987 return false;
5cf1ec52
UD
3988 break;
3989
ad7f28c2 3990 case SIMPLE_BRACKET:
5cf1ec52 3991 if (!bitset_contain (node->opr.sbcset, ch))
eb04c213 3992 return false;
5cf1ec52
UD
3993 break;
3994
c0d5034e 3995#ifdef RE_ENABLE_I18N
ad7f28c2 3996 case OP_UTF8_PERIOD:
eb04c213
AZ
3997 if (ch >= ASCII_CHARS)
3998 return false;
3999 FALLTHROUGH;
c0d5034e 4000#endif
ad7f28c2 4001 case OP_PERIOD:
5cf1ec52
UD
4002 if ((ch == '\n' && !(mctx->dfa->syntax & RE_DOT_NEWLINE))
4003 || (ch == '\0' && (mctx->dfa->syntax & RE_DOT_NOT_NULL)))
eb04c213 4004 return false;
5cf1ec52
UD
4005 break;
4006
ad7f28c2 4007 default:
eb04c213 4008 return false;
ad7f28c2 4009 }
5cf1ec52
UD
4010
4011 if (node->constraint)
4012 {
4013 /* The node has constraints. Check whether the current context
4014 satisfies the constraints. */
4015 unsigned int context = re_string_context_at (&mctx->input, idx,
4016 mctx->eflags);
4017 if (NOT_SATISFY_NEXT_CONSTRAINT (node->constraint, context))
eb04c213 4018 return false;
5cf1ec52
UD
4019 }
4020
eb04c213 4021 return true;
3b0bdc72 4022}
612546c6
UD
4023
4024/* Extend the buffers, if the buffers have run out. */
4025
4026static reg_errcode_t
b41bd5bc 4027__attribute_warn_unused_result__
a445af0b 4028extend_buffers (re_match_context_t *mctx, int min_len)
612546c6
UD
4029{
4030 reg_errcode_t ret;
56b168be 4031 re_string_t *pstr = &mctx->input;
612546c6 4032
aef699dc 4033 /* Avoid overflow. */
f4efbdfb
PE
4034 if (__glibc_unlikely (MIN (IDX_MAX, SIZE_MAX / sizeof (re_dfastate_t *)) / 2
4035 <= pstr->bufs_len))
aef699dc
PE
4036 return REG_ESPACE;
4037
eb04c213 4038 /* Double the lengths of the buffers, but allocate at least MIN_LEN. */
a445af0b
AS
4039 ret = re_string_realloc_buffers (pstr,
4040 MAX (min_len,
4041 MIN (pstr->len, pstr->bufs_len * 2)));
f4efbdfb 4042 if (__glibc_unlikely (ret != REG_NOERROR))
612546c6
UD
4043 return ret;
4044
4045 if (mctx->state_log != NULL)
4046 {
4047 /* And double the length of state_log. */
951d6408
UD
4048 /* XXX We have no indication of the size of this buffer. If this
4049 allocation fail we have no indication that the state_log array
4050 does not have the right size. */
4051 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *,
4052 pstr->bufs_len + 1);
f4efbdfb 4053 if (__glibc_unlikely (new_array == NULL))
15a7d175 4054 return REG_ESPACE;
1b2c2628 4055 mctx->state_log = new_array;
612546c6
UD
4056 }
4057
4058 /* Then reconstruct the buffers. */
4059 if (pstr->icase)
4060 {
4061#ifdef RE_ENABLE_I18N
3c0fb574 4062 if (pstr->mb_cur_max > 1)
bb3f4825
UD
4063 {
4064 ret = build_wcs_upper_buffer (pstr);
f4efbdfb 4065 if (__glibc_unlikely (ret != REG_NOERROR))
bb3f4825
UD
4066 return ret;
4067 }
612546c6
UD
4068 else
4069#endif /* RE_ENABLE_I18N */
15a7d175 4070 build_upper_buffer (pstr);
612546c6
UD
4071 }
4072 else
4073 {
4074#ifdef RE_ENABLE_I18N
3c0fb574 4075 if (pstr->mb_cur_max > 1)
15a7d175 4076 build_wcs_buffer (pstr);
612546c6
UD
4077 else
4078#endif /* RE_ENABLE_I18N */
15a7d175
UD
4079 {
4080 if (pstr->trans != NULL)
4081 re_string_translate_buffer (pstr);
15a7d175 4082 }
612546c6
UD
4083 }
4084 return REG_NOERROR;
4085}
4086
3b0bdc72
UD
4087\f
4088/* Functions for matching context. */
4089
6291ee3c
UD
4090/* Initialize MCTX. */
4091
a9388965 4092static reg_errcode_t
b41bd5bc 4093__attribute_warn_unused_result__
eb04c213 4094match_ctx_init (re_match_context_t *mctx, int eflags, Idx n)
3b0bdc72
UD
4095{
4096 mctx->eflags = eflags;
612546c6 4097 mctx->match_last = -1;
3b0bdc72 4098 if (n > 0)
a9388965 4099 {
eb04c213
AZ
4100 /* Avoid overflow. */
4101 size_t max_object_size =
4102 MAX (sizeof (struct re_backref_cache_entry),
4103 sizeof (re_sub_match_top_t *));
f4efbdfb 4104 if (__glibc_unlikely (MIN (IDX_MAX, SIZE_MAX / max_object_size) < n))
eb04c213
AZ
4105 return REG_ESPACE;
4106
a9388965 4107 mctx->bkref_ents = re_malloc (struct re_backref_cache_entry, n);
6291ee3c 4108 mctx->sub_tops = re_malloc (re_sub_match_top_t *, n);
f4efbdfb 4109 if (__glibc_unlikely (mctx->bkref_ents == NULL || mctx->sub_tops == NULL))
15a7d175 4110 return REG_ESPACE;
a9388965 4111 }
56b168be
UD
4112 /* Already zero-ed by the caller.
4113 else
4114 mctx->bkref_ents = NULL;
4115 mctx->nbkref_ents = 0;
4116 mctx->nsub_tops = 0; */
3b0bdc72 4117 mctx->abkref_ents = n;
6291ee3c 4118 mctx->max_mb_elem_len = 1;
6291ee3c 4119 mctx->asub_tops = n;
a9388965 4120 return REG_NOERROR;
3b0bdc72
UD
4121}
4122
6291ee3c
UD
4123/* Clean the entries which depend on the current input in MCTX.
4124 This function must be invoked when the matcher changes the start index
4125 of the input, or changes the input string. */
4126
4127static void
e2f55264 4128match_ctx_clean (re_match_context_t *mctx)
6291ee3c 4129{
eb04c213 4130 Idx st_idx;
6291ee3c
UD
4131 for (st_idx = 0; st_idx < mctx->nsub_tops; ++st_idx)
4132 {
eb04c213 4133 Idx sl_idx;
6291ee3c
UD
4134 re_sub_match_top_t *top = mctx->sub_tops[st_idx];
4135 for (sl_idx = 0; sl_idx < top->nlasts; ++sl_idx)
4136 {
4137 re_sub_match_last_t *last = top->lasts[sl_idx];
4138 re_free (last->path.array);
4139 re_free (last);
4140 }
4141 re_free (top->lasts);
4142 if (top->path)
4143 {
4144 re_free (top->path->array);
4145 re_free (top->path);
4146 }
eb04c213 4147 re_free (top);
6291ee3c 4148 }
cb265fec
UD
4149
4150 mctx->nsub_tops = 0;
4151 mctx->nbkref_ents = 0;
4152}
4153
4154/* Free all the memory associated with MCTX. */
4155
4156static void
e2f55264 4157match_ctx_free (re_match_context_t *mctx)
cb265fec
UD
4158{
4159 /* First, free all the memory associated with MCTX->SUB_TOPS. */
4160 match_ctx_clean (mctx);
4161 re_free (mctx->sub_tops);
4162 re_free (mctx->bkref_ents);
6291ee3c
UD
4163}
4164
4165/* Add a new backreference entry to MCTX.
4166 Note that we assume that caller never call this function with duplicate
4167 entry, and call with STR_IDX which isn't smaller than any existing entry.
4168*/
3b0bdc72 4169
a9388965 4170static reg_errcode_t
b41bd5bc 4171__attribute_warn_unused_result__
eb04c213
AZ
4172match_ctx_add_entry (re_match_context_t *mctx, Idx node, Idx str_idx, Idx from,
4173 Idx to)
3b0bdc72
UD
4174{
4175 if (mctx->nbkref_ents >= mctx->abkref_ents)
4176 {
1b2c2628
UD
4177 struct re_backref_cache_entry* new_entry;
4178 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry,
15a7d175 4179 mctx->abkref_ents * 2);
f4efbdfb 4180 if (__glibc_unlikely (new_entry == NULL))
15a7d175
UD
4181 {
4182 re_free (mctx->bkref_ents);
4183 return REG_ESPACE;
4184 }
1b2c2628 4185 mctx->bkref_ents = new_entry;
3b0bdc72 4186 memset (mctx->bkref_ents + mctx->nbkref_ents, '\0',
15a7d175 4187 sizeof (struct re_backref_cache_entry) * mctx->abkref_ents);
3b0bdc72
UD
4188 mctx->abkref_ents *= 2;
4189 }
e40a38b3
UD
4190 if (mctx->nbkref_ents > 0
4191 && mctx->bkref_ents[mctx->nbkref_ents - 1].str_idx == str_idx)
4192 mctx->bkref_ents[mctx->nbkref_ents - 1].more = 1;
4193
3b0bdc72 4194 mctx->bkref_ents[mctx->nbkref_ents].node = node;
0742e48e
UD
4195 mctx->bkref_ents[mctx->nbkref_ents].str_idx = str_idx;
4196 mctx->bkref_ents[mctx->nbkref_ents].subexp_from = from;
e40a38b3 4197 mctx->bkref_ents[mctx->nbkref_ents].subexp_to = to;
7db61208
UD
4198
4199 /* This is a cache that saves negative results of check_dst_limits_calc_pos.
4200 If bit N is clear, means that this entry won't epsilon-transition to
4201 an OP_OPEN_SUBEXP or OP_CLOSE_SUBEXP for the N+1-th subexpression. If
4202 it is set, check_dst_limits_calc_pos_1 will recurse and try to find one
4203 such node.
4204
4205 A backreference does not epsilon-transition unless it is empty, so set
4206 to all zeros if FROM != TO. */
4207 mctx->bkref_ents[mctx->nbkref_ents].eps_reachable_subexps_map
eb04c213 4208 = (from == to ? -1 : 0);
7db61208 4209
e40a38b3 4210 mctx->bkref_ents[mctx->nbkref_ents++].more = 0;
0742e48e
UD
4211 if (mctx->max_mb_elem_len < to - from)
4212 mctx->max_mb_elem_len = to - from;
a9388965 4213 return REG_NOERROR;
3b0bdc72 4214}
0742e48e 4215
eb04c213 4216/* Return the first entry with the same str_idx, or -1 if none is
e40a38b3 4217 found. Note that MCTX->BKREF_ENTS is already sorted by MCTX->STR_IDX. */
6291ee3c 4218
eb04c213
AZ
4219static Idx
4220search_cur_bkref_entry (const re_match_context_t *mctx, Idx str_idx)
6291ee3c 4221{
eb04c213 4222 Idx left, right, mid, last;
e40a38b3 4223 last = right = mctx->nbkref_ents;
6291ee3c
UD
4224 for (left = 0; left < right;)
4225 {
4226 mid = (left + right) / 2;
4227 if (mctx->bkref_ents[mid].str_idx < str_idx)
4228 left = mid + 1;
4229 else
4230 right = mid;
4231 }
e40a38b3
UD
4232 if (left < last && mctx->bkref_ents[left].str_idx == str_idx)
4233 return left;
4234 else
4235 return -1;
6291ee3c
UD
4236}
4237
6291ee3c
UD
4238/* Register the node NODE, whose type is OP_OPEN_SUBEXP, and which matches
4239 at STR_IDX. */
4240
4241static reg_errcode_t
b41bd5bc 4242__attribute_warn_unused_result__
eb04c213 4243match_ctx_add_subtop (re_match_context_t *mctx, Idx node, Idx str_idx)
6291ee3c 4244{
2a0356e1
AZ
4245 DEBUG_ASSERT (mctx->sub_tops != NULL);
4246 DEBUG_ASSERT (mctx->asub_tops > 0);
f4efbdfb 4247 if (__glibc_unlikely (mctx->nsub_tops == mctx->asub_tops))
6291ee3c 4248 {
eb04c213 4249 Idx new_asub_tops = mctx->asub_tops * 2;
951d6408
UD
4250 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops,
4251 re_sub_match_top_t *,
4252 new_asub_tops);
f4efbdfb 4253 if (__glibc_unlikely (new_array == NULL))
6291ee3c
UD
4254 return REG_ESPACE;
4255 mctx->sub_tops = new_array;
951d6408 4256 mctx->asub_tops = new_asub_tops;
6291ee3c
UD
4257 }
4258 mctx->sub_tops[mctx->nsub_tops] = calloc (1, sizeof (re_sub_match_top_t));
f4efbdfb 4259 if (__glibc_unlikely (mctx->sub_tops[mctx->nsub_tops] == NULL))
6291ee3c
UD
4260 return REG_ESPACE;
4261 mctx->sub_tops[mctx->nsub_tops]->node = node;
4262 mctx->sub_tops[mctx->nsub_tops++]->str_idx = str_idx;
4263 return REG_NOERROR;
4264}
4265
4266/* Register the node NODE, whose type is OP_CLOSE_SUBEXP, and which matches
4267 at STR_IDX, whose corresponding OP_OPEN_SUBEXP is SUB_TOP. */
4268
4269static re_sub_match_last_t *
eb04c213 4270match_ctx_add_sublast (re_sub_match_top_t *subtop, Idx node, Idx str_idx)
6291ee3c
UD
4271{
4272 re_sub_match_last_t *new_entry;
f4efbdfb 4273 if (__glibc_unlikely (subtop->nlasts == subtop->alasts))
6291ee3c 4274 {
eb04c213 4275 Idx new_alasts = 2 * subtop->alasts + 1;
951d6408
UD
4276 re_sub_match_last_t **new_array = re_realloc (subtop->lasts,
4277 re_sub_match_last_t *,
4278 new_alasts);
f4efbdfb 4279 if (__glibc_unlikely (new_array == NULL))
6291ee3c
UD
4280 return NULL;
4281 subtop->lasts = new_array;
951d6408 4282 subtop->alasts = new_alasts;
6291ee3c
UD
4283 }
4284 new_entry = calloc (1, sizeof (re_sub_match_last_t));
f4efbdfb 4285 if (__glibc_likely (new_entry != NULL))
951d6408
UD
4286 {
4287 subtop->lasts[subtop->nlasts] = new_entry;
4288 new_entry->node = node;
4289 new_entry->str_idx = str_idx;
4290 ++subtop->nlasts;
4291 }
6291ee3c
UD
4292 return new_entry;
4293}
4294
0742e48e 4295static void
e2f55264 4296sift_ctx_init (re_sift_context_t *sctx, re_dfastate_t **sifted_sts,
eb04c213 4297 re_dfastate_t **limited_sts, Idx last_node, Idx last_str_idx)
0742e48e
UD
4298{
4299 sctx->sifted_states = sifted_sts;
4300 sctx->limited_states = limited_sts;
4301 sctx->last_node = last_node;
4302 sctx->last_str_idx = last_str_idx;
0742e48e
UD
4303 re_node_set_init_empty (&sctx->limits);
4304}