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