2014-03-07 18:28:52 +01:00
|
|
|
/*************************************************
|
|
|
|
* Perl-Compatible Regular Expressions *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* PCRE is a library of functions to support regular expressions whose syntax
|
|
|
|
and semantics are as close as possible to those of the Perl 5 language.
|
|
|
|
|
|
|
|
Written by Philip Hazel
|
|
|
|
Original API code Copyright (c) 1997-2012 University of Cambridge
|
2018-10-17 10:33:38 +02:00
|
|
|
New API code Copyright (c) 2016-2018 University of Cambridge
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the University of Cambridge nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2014-09-30 09:06:48 +02:00
|
|
|
#ifndef INCLUDED_FROM_PCRE2_JIT_COMPILE
|
|
|
|
#error This file must be included from pcre2_jit_compile.c.
|
2014-03-07 18:28:52 +01:00
|
|
|
#endif
|
|
|
|
|
2014-10-03 12:17:18 +02:00
|
|
|
#ifdef SUPPORT_JIT
|
|
|
|
|
2014-11-09 08:23:55 +01:00
|
|
|
static SLJIT_NOINLINE int jit_machine_stack_exec(jit_arguments *arguments, jit_function executable_func)
|
2014-10-03 12:17:18 +02:00
|
|
|
{
|
2016-02-29 10:09:40 +01:00
|
|
|
sljit_u8 local_space[MACHINE_STACK_SIZE];
|
2014-10-03 12:17:18 +02:00
|
|
|
struct sljit_stack local_stack;
|
|
|
|
|
2018-01-09 09:38:32 +01:00
|
|
|
local_stack.min_start = local_space;
|
|
|
|
local_stack.start = local_space;
|
|
|
|
local_stack.end = local_space + MACHINE_STACK_SIZE;
|
2017-03-27 15:35:08 +02:00
|
|
|
local_stack.top = local_space + MACHINE_STACK_SIZE;
|
2014-10-03 12:17:18 +02:00
|
|
|
arguments->stack = &local_stack;
|
|
|
|
return executable_func(arguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Do a JIT pattern match *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function runs a JIT pattern match.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
code points to the compiled expression
|
|
|
|
subject points to the subject string
|
|
|
|
length length of subject string (may contain binary zeros)
|
|
|
|
start_offset where to start in the subject string
|
|
|
|
options option bits
|
2014-10-20 19:28:49 +02:00
|
|
|
match_data points to a match_data block
|
|
|
|
mcontext points to a match context
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Returns: > 0 => success; value is the number of ovector pairs filled
|
|
|
|
= 0 => success, but ovector is not big enough
|
|
|
|
-1 => failed to match (PCRE_ERROR_NOMATCH)
|
|
|
|
< -1 => some kind of unexpected problem
|
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-08-16 11:46:58 +02:00
|
|
|
pcre2_jit_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
|
|
|
|
PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
|
2014-11-07 13:12:52 +01:00
|
|
|
pcre2_match_context *mcontext)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
|
|
|
#ifndef SUPPORT_JIT
|
2014-08-16 11:46:58 +02:00
|
|
|
|
2014-03-07 18:28:52 +01:00
|
|
|
(void)code;
|
|
|
|
(void)subject;
|
|
|
|
(void)length;
|
|
|
|
(void)start_offset;
|
|
|
|
(void)options;
|
|
|
|
(void)match_data;
|
2014-08-08 20:18:18 +02:00
|
|
|
(void)mcontext;
|
|
|
|
return PCRE2_ERROR_JIT_BADOPTION;
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-08-16 11:46:58 +02:00
|
|
|
#else /* SUPPORT_JIT */
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-10-03 12:17:18 +02:00
|
|
|
pcre2_real_code *re = (pcre2_real_code *)code;
|
|
|
|
executable_functions *functions = (executable_functions *)re->executable_jit;
|
2014-11-07 13:12:52 +01:00
|
|
|
pcre2_jit_stack *jit_stack;
|
2014-10-03 12:17:18 +02:00
|
|
|
uint32_t oveccount = match_data->oveccount;
|
|
|
|
uint32_t max_oveccount;
|
|
|
|
union {
|
2014-10-08 10:57:26 +02:00
|
|
|
void *executable_func;
|
2014-10-03 12:17:18 +02:00
|
|
|
jit_function call_executable_func;
|
|
|
|
} convert_executable_func;
|
|
|
|
jit_arguments arguments;
|
|
|
|
int rc;
|
|
|
|
int index = 0;
|
|
|
|
|
|
|
|
if ((options & PCRE2_PARTIAL_HARD) != 0)
|
|
|
|
index = 2;
|
|
|
|
else if ((options & PCRE2_PARTIAL_SOFT) != 0)
|
|
|
|
index = 1;
|
|
|
|
|
2017-11-29 14:30:31 +01:00
|
|
|
if (functions == NULL || functions->executable_funcs[index] == NULL)
|
2014-10-03 12:17:18 +02:00
|
|
|
return PCRE2_ERROR_JIT_BADOPTION;
|
|
|
|
|
2021-11-27 17:27:49 +01:00
|
|
|
/* Sanity checks should be handled by pcre2_match. */
|
2014-10-03 12:17:18 +02:00
|
|
|
arguments.str = subject + start_offset;
|
|
|
|
arguments.begin = subject;
|
|
|
|
arguments.end = subject + length;
|
2014-10-08 10:57:26 +02:00
|
|
|
arguments.match_data = match_data;
|
|
|
|
arguments.startchar_ptr = subject;
|
2014-10-03 12:17:18 +02:00
|
|
|
arguments.mark_ptr = NULL;
|
2015-04-20 15:04:02 +02:00
|
|
|
arguments.options = options;
|
2015-11-15 06:05:53 +01:00
|
|
|
|
2014-10-03 12:17:18 +02:00
|
|
|
if (mcontext != NULL)
|
|
|
|
{
|
|
|
|
arguments.callout = mcontext->callout;
|
|
|
|
arguments.callout_data = mcontext->callout_data;
|
2015-11-15 06:05:53 +01:00
|
|
|
arguments.offset_limit = mcontext->offset_limit;
|
2014-10-10 19:29:08 +02:00
|
|
|
arguments.limit_match = (mcontext->match_limit < re->limit_match)?
|
|
|
|
mcontext->match_limit : re->limit_match;
|
2014-11-30 11:05:41 +01:00
|
|
|
if (mcontext->jit_callback != NULL)
|
|
|
|
jit_stack = mcontext->jit_callback(mcontext->jit_callback_data);
|
|
|
|
else
|
|
|
|
jit_stack = (pcre2_jit_stack *)mcontext->jit_callback_data;
|
2014-10-10 19:29:08 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arguments.callout = NULL;
|
|
|
|
arguments.callout_data = NULL;
|
2015-11-15 06:05:53 +01:00
|
|
|
arguments.offset_limit = PCRE2_UNSET;
|
2014-10-10 19:29:08 +02:00
|
|
|
arguments.limit_match = (MATCH_LIMIT < re->limit_match)?
|
|
|
|
MATCH_LIMIT : re->limit_match;
|
2014-11-30 11:05:41 +01:00
|
|
|
jit_stack = NULL;
|
2014-10-03 12:17:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
max_oveccount = functions->top_bracket;
|
|
|
|
if (oveccount > max_oveccount)
|
|
|
|
oveccount = max_oveccount;
|
2014-10-04 19:05:21 +02:00
|
|
|
arguments.oveccount = oveccount << 1;
|
2014-10-03 12:17:18 +02:00
|
|
|
|
2014-10-05 08:20:41 +02:00
|
|
|
|
2014-10-03 12:17:18 +02:00
|
|
|
convert_executable_func.executable_func = functions->executable_funcs[index];
|
|
|
|
if (jit_stack != NULL)
|
|
|
|
{
|
|
|
|
arguments.stack = (struct sljit_stack *)(jit_stack->stack);
|
|
|
|
rc = convert_executable_func.call_executable_func(&arguments);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rc = jit_machine_stack_exec(&arguments, convert_executable_func.call_executable_func);
|
|
|
|
|
2014-10-04 19:05:21 +02:00
|
|
|
if (rc > (int)oveccount)
|
2014-10-03 12:17:18 +02:00
|
|
|
rc = 0;
|
|
|
|
match_data->code = re;
|
2018-10-19 17:31:16 +02:00
|
|
|
match_data->subject = (rc >= 0 || rc == PCRE2_ERROR_PARTIAL)? subject : NULL;
|
2014-10-03 12:17:18 +02:00
|
|
|
match_data->rc = rc;
|
2014-10-08 10:57:26 +02:00
|
|
|
match_data->startchar = arguments.startchar_ptr - subject;
|
2014-10-05 08:20:41 +02:00
|
|
|
match_data->leftchar = 0;
|
|
|
|
match_data->rightchar = 0;
|
2014-10-03 12:17:18 +02:00
|
|
|
match_data->mark = arguments.mark_ptr;
|
2014-12-14 18:17:06 +01:00
|
|
|
match_data->matchedby = PCRE2_MATCHEDBY_JIT;
|
2014-10-03 12:17:18 +02:00
|
|
|
|
|
|
|
return match_data->rc;
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
#endif /* SUPPORT_JIT */
|
2014-08-16 11:46:58 +02:00
|
|
|
}
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
/* End of pcre2_jit_match.c */
|