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-01-12 19:48:27 +01: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.
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "pcre2_internal.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Copy named captured string to given buffer *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function copies a single captured substring into a given buffer,
|
|
|
|
identifying it by name. If the regex permits duplicate names, the first
|
|
|
|
substring that is set is chosen.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
match_data points to the match data
|
|
|
|
stringname the name of the required substring
|
|
|
|
buffer where to put the substring
|
2014-08-29 14:12:34 +02:00
|
|
|
sizeptr the size of the buffer, updated to the size of the substring
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-08-29 14:12:34 +02:00
|
|
|
Returns: if successful: zero
|
2014-03-07 18:28:52 +01:00
|
|
|
if not successful, a negative error code:
|
2014-12-13 18:43:26 +01:00
|
|
|
(1) an error from nametable_scan()
|
2014-12-14 18:17:06 +01:00
|
|
|
(2) an error from copy_bynumber()
|
2014-12-19 10:55:25 +01:00
|
|
|
(3) PCRE2_ERROR_UNAVAILABLE: no group is in ovector
|
2014-12-14 18:17:06 +01:00
|
|
|
(4) PCRE2_ERROR_UNSET: all named groups in ovector are unset
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-04-18 17:37:56 +02:00
|
|
|
pcre2_substring_copy_byname(pcre2_match_data *match_data, PCRE2_SPTR stringname,
|
2014-08-29 14:12:34 +02:00
|
|
|
PCRE2_UCHAR *buffer, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-14 18:17:06 +01:00
|
|
|
PCRE2_SPTR first, last, entry;
|
|
|
|
int failrc, entrysize;
|
|
|
|
if (match_data->matchedby == PCRE2_MATCHEDBY_DFA_INTERPRETER)
|
|
|
|
return PCRE2_ERROR_DFA_UFUNC;
|
|
|
|
entrysize = pcre2_substring_nametable_scan(match_data->code, stringname,
|
2014-05-13 13:20:03 +02:00
|
|
|
&first, &last);
|
2014-08-29 14:12:34 +02:00
|
|
|
if (entrysize < 0) return entrysize;
|
2014-12-14 18:17:06 +01:00
|
|
|
failrc = PCRE2_ERROR_UNAVAILABLE;
|
2014-05-13 13:20:03 +02:00
|
|
|
for (entry = first; entry <= last; entry += entrysize)
|
|
|
|
{
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t n = GET2(entry, 0);
|
2014-12-14 18:17:06 +01:00
|
|
|
if (n < match_data->oveccount)
|
|
|
|
{
|
|
|
|
if (match_data->ovector[n*2] != PCRE2_UNSET)
|
|
|
|
return pcre2_substring_copy_bynumber(match_data, n, buffer, sizeptr);
|
2014-12-19 10:55:25 +01:00
|
|
|
failrc = PCRE2_ERROR_UNSET;
|
|
|
|
}
|
2014-05-13 13:20:03 +02:00
|
|
|
}
|
2014-12-14 18:17:06 +01:00
|
|
|
return failrc;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Copy numbered captured string to given buffer *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function copies a single captured substring into a given buffer,
|
|
|
|
identifying it by number.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
match_data points to the match data
|
|
|
|
stringnumber the number of the required substring
|
|
|
|
buffer where to put the substring
|
2014-08-29 14:12:34 +02:00
|
|
|
sizeptr the size of the buffer, updated to the size of the substring
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-08-29 14:12:34 +02:00
|
|
|
Returns: if successful: 0
|
2014-03-07 18:28:52 +01:00
|
|
|
if not successful, a negative error code:
|
|
|
|
PCRE2_ERROR_NOMEMORY: buffer too small
|
2014-12-13 18:43:26 +01:00
|
|
|
PCRE2_ERROR_NOSUBSTRING: no such substring
|
|
|
|
PCRE2_ERROR_UNAVAILABLE: ovector too small
|
2014-12-19 10:55:25 +01:00
|
|
|
PCRE2_ERROR_UNSET: substring is not set
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-10-20 19:28:49 +02:00
|
|
|
pcre2_substring_copy_bynumber(pcre2_match_data *match_data,
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t stringnumber, PCRE2_UCHAR *buffer, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-13 18:43:26 +01:00
|
|
|
int rc;
|
|
|
|
PCRE2_SIZE size;
|
|
|
|
rc = pcre2_substring_length_bynumber(match_data, stringnumber, &size);
|
|
|
|
if (rc < 0) return rc;
|
|
|
|
if (size + 1 > *sizeptr) return PCRE2_ERROR_NOMEMORY;
|
2014-12-19 10:55:25 +01:00
|
|
|
memcpy(buffer, match_data->subject + match_data->ovector[stringnumber*2],
|
2014-12-13 18:43:26 +01:00
|
|
|
CU2BYTES(size));
|
|
|
|
buffer[size] = 0;
|
|
|
|
*sizeptr = size;
|
2014-08-29 14:12:34 +02:00
|
|
|
return 0;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Extract named captured string *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function copies a single captured substring, identified by name, into
|
|
|
|
new memory. If the regex permits duplicate names, the first substring that is
|
|
|
|
set is chosen.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
match_data pointer to match_data
|
|
|
|
stringname the name of the required substring
|
2014-05-13 13:20:03 +02:00
|
|
|
stringptr where to put the pointer to the new memory
|
2014-10-20 19:28:49 +02:00
|
|
|
sizeptr where to put the length of the substring
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-08-29 14:12:34 +02:00
|
|
|
Returns: if successful: zero
|
2014-03-07 18:28:52 +01:00
|
|
|
if not successful, a negative value:
|
2014-12-13 18:43:26 +01:00
|
|
|
(1) an error from nametable_scan()
|
2014-12-19 10:55:25 +01:00
|
|
|
(2) an error from get_bynumber()
|
|
|
|
(3) PCRE2_ERROR_UNAVAILABLE: no group is in ovector
|
2014-12-14 18:17:06 +01:00
|
|
|
(4) PCRE2_ERROR_UNSET: all named groups in ovector are unset
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-04-18 17:37:56 +02:00
|
|
|
pcre2_substring_get_byname(pcre2_match_data *match_data,
|
2014-08-29 14:12:34 +02:00
|
|
|
PCRE2_SPTR stringname, PCRE2_UCHAR **stringptr, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-14 18:17:06 +01:00
|
|
|
PCRE2_SPTR first, last, entry;
|
|
|
|
int failrc, entrysize;
|
|
|
|
if (match_data->matchedby == PCRE2_MATCHEDBY_DFA_INTERPRETER)
|
|
|
|
return PCRE2_ERROR_DFA_UFUNC;
|
|
|
|
entrysize = pcre2_substring_nametable_scan(match_data->code, stringname,
|
2014-05-13 13:20:03 +02:00
|
|
|
&first, &last);
|
2014-08-29 14:12:34 +02:00
|
|
|
if (entrysize < 0) return entrysize;
|
2014-12-14 18:17:06 +01:00
|
|
|
failrc = PCRE2_ERROR_UNAVAILABLE;
|
2014-05-13 13:20:03 +02:00
|
|
|
for (entry = first; entry <= last; entry += entrysize)
|
|
|
|
{
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t n = GET2(entry, 0);
|
2014-12-14 18:17:06 +01:00
|
|
|
if (n < match_data->oveccount)
|
|
|
|
{
|
|
|
|
if (match_data->ovector[n*2] != PCRE2_UNSET)
|
|
|
|
return pcre2_substring_get_bynumber(match_data, n, stringptr, sizeptr);
|
|
|
|
failrc = PCRE2_ERROR_UNSET;
|
2014-12-19 10:55:25 +01:00
|
|
|
}
|
2014-05-13 13:20:03 +02:00
|
|
|
}
|
2014-12-14 18:17:06 +01:00
|
|
|
return failrc;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
2014-04-18 17:37:56 +02:00
|
|
|
* Extract captured string to new memory *
|
2014-03-07 18:28:52 +01:00
|
|
|
*************************************************/
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
/* This function copies a single captured substring into a piece of new
|
|
|
|
memory.
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Arguments:
|
2014-04-18 17:37:56 +02:00
|
|
|
match_data points to match data
|
|
|
|
stringnumber the number of the required substring
|
2014-05-13 13:20:03 +02:00
|
|
|
stringptr where to put a pointer to the new memory
|
2014-10-20 19:28:49 +02:00
|
|
|
sizeptr where to put the size of the substring
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-12-13 18:43:26 +01:00
|
|
|
Returns: if successful: 0
|
|
|
|
if not successful, a negative error code:
|
2014-04-18 17:37:56 +02:00
|
|
|
PCRE2_ERROR_NOMEMORY: failed to get memory
|
2014-12-13 18:43:26 +01:00
|
|
|
PCRE2_ERROR_NOSUBSTRING: no such substring
|
|
|
|
PCRE2_ERROR_UNAVAILABLE: ovector too small
|
2014-12-19 10:55:25 +01:00
|
|
|
PCRE2_ERROR_UNSET: substring is not set
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-10-20 19:28:49 +02:00
|
|
|
pcre2_substring_get_bynumber(pcre2_match_data *match_data,
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t stringnumber, PCRE2_UCHAR **stringptr, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-13 18:43:26 +01:00
|
|
|
int rc;
|
|
|
|
PCRE2_SIZE size;
|
2014-05-13 13:20:03 +02:00
|
|
|
PCRE2_UCHAR *yield;
|
2014-12-13 18:43:26 +01:00
|
|
|
rc = pcre2_substring_length_bynumber(match_data, stringnumber, &size);
|
|
|
|
if (rc < 0) return rc;
|
|
|
|
yield = PRIV(memctl_malloc)(sizeof(pcre2_memctl) +
|
|
|
|
(size + 1)*PCRE2_CODE_UNIT_WIDTH, (pcre2_memctl *)match_data);
|
|
|
|
if (yield == NULL) return PCRE2_ERROR_NOMEMORY;
|
|
|
|
yield = (PCRE2_UCHAR *)(((char *)yield) + sizeof(pcre2_memctl));
|
2014-12-19 10:55:25 +01:00
|
|
|
memcpy(yield, match_data->subject + match_data->ovector[stringnumber*2],
|
2014-12-13 18:43:26 +01:00
|
|
|
CU2BYTES(size));
|
|
|
|
yield[size] = 0;
|
2014-05-13 13:20:03 +02:00
|
|
|
*stringptr = yield;
|
2014-12-13 18:43:26 +01:00
|
|
|
*sizeptr = size;
|
2014-08-29 14:12:34 +02:00
|
|
|
return 0;
|
2014-05-13 13:20:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Free memory obtained by get_substring *
|
|
|
|
*************************************************/
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
/*
|
2014-05-13 13:20:03 +02:00
|
|
|
Argument: the result of a previous pcre2_substring_get_byxxx()
|
|
|
|
Returns: nothing
|
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION
|
|
|
|
pcre2_substring_free(PCRE2_UCHAR *string)
|
|
|
|
{
|
2016-02-06 13:45:56 +01:00
|
|
|
if (string != NULL)
|
|
|
|
{
|
|
|
|
pcre2_memctl *memctl = (pcre2_memctl *)((char *)string - sizeof(pcre2_memctl));
|
|
|
|
memctl->free(memctl, memctl->memory_data);
|
|
|
|
}
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
2014-04-18 17:37:56 +02:00
|
|
|
* Get length of a named substring *
|
2014-03-07 18:28:52 +01:00
|
|
|
*************************************************/
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
/* This function returns the length of a named captured substring. If the regex
|
|
|
|
permits duplicate names, the first substring that is set is chosen.
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Arguments:
|
2014-04-18 17:37:56 +02:00
|
|
|
match_data pointer to match data
|
|
|
|
stringname the name of the required substring
|
2014-10-20 19:28:49 +02:00
|
|
|
sizeptr where to put the length
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-08-29 14:12:34 +02:00
|
|
|
Returns: 0 if successful, else a negative error number
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-04-18 17:37:56 +02:00
|
|
|
pcre2_substring_length_byname(pcre2_match_data *match_data,
|
2014-08-29 14:12:34 +02:00
|
|
|
PCRE2_SPTR stringname, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-14 18:17:06 +01:00
|
|
|
PCRE2_SPTR first, last, entry;
|
|
|
|
int failrc, entrysize;
|
|
|
|
if (match_data->matchedby == PCRE2_MATCHEDBY_DFA_INTERPRETER)
|
|
|
|
return PCRE2_ERROR_DFA_UFUNC;
|
|
|
|
entrysize = pcre2_substring_nametable_scan(match_data->code, stringname,
|
2014-05-13 13:20:03 +02:00
|
|
|
&first, &last);
|
2014-12-13 18:43:26 +01:00
|
|
|
if (entrysize < 0) return entrysize;
|
2014-12-14 18:17:06 +01:00
|
|
|
failrc = PCRE2_ERROR_UNAVAILABLE;
|
2014-05-13 13:20:03 +02:00
|
|
|
for (entry = first; entry <= last; entry += entrysize)
|
|
|
|
{
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t n = GET2(entry, 0);
|
2014-12-14 18:17:06 +01:00
|
|
|
if (n < match_data->oveccount)
|
|
|
|
{
|
|
|
|
if (match_data->ovector[n*2] != PCRE2_UNSET)
|
|
|
|
return pcre2_substring_length_bynumber(match_data, n, sizeptr);
|
|
|
|
failrc = PCRE2_ERROR_UNSET;
|
2014-12-19 10:55:25 +01:00
|
|
|
}
|
2014-05-13 13:20:03 +02:00
|
|
|
}
|
2014-12-14 18:17:06 +01:00
|
|
|
return failrc;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Get length of a numbered substring *
|
|
|
|
*************************************************/
|
|
|
|
|
2014-12-19 10:55:25 +01:00
|
|
|
/* This function returns the length of a captured substring. If the start is
|
|
|
|
beyond the end (which can happen when \K is used in an assertion), it sets the
|
2014-12-13 18:43:26 +01:00
|
|
|
length to zero.
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
match_data pointer to match data
|
|
|
|
stringnumber the number of the required substring
|
2014-12-13 18:43:26 +01:00
|
|
|
sizeptr where to put the length, if not NULL
|
2014-03-07 18:28:52 +01:00
|
|
|
|
2014-12-13 18:43:26 +01:00
|
|
|
Returns: if successful: 0
|
|
|
|
if not successful, a negative error code:
|
|
|
|
PCRE2_ERROR_NOSUBSTRING: no such substring
|
|
|
|
PCRE2_ERROR_UNAVAILABLE: ovector is too small
|
2014-12-19 10:55:25 +01:00
|
|
|
PCRE2_ERROR_UNSET: substring is not set
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-04-18 17:37:56 +02:00
|
|
|
pcre2_substring_length_bynumber(pcre2_match_data *match_data,
|
2014-12-01 17:14:53 +01:00
|
|
|
uint32_t stringnumber, PCRE2_SIZE *sizeptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-12-13 18:43:26 +01:00
|
|
|
PCRE2_SIZE left, right;
|
2014-12-22 18:33:10 +01:00
|
|
|
int count = match_data->rc;
|
|
|
|
if (count == PCRE2_ERROR_PARTIAL)
|
|
|
|
{
|
|
|
|
if (stringnumber > 0) return PCRE2_ERROR_PARTIAL;
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
else if (count < 0) return count; /* Match failed */
|
|
|
|
|
2014-12-14 18:17:06 +01:00
|
|
|
if (match_data->matchedby != PCRE2_MATCHEDBY_DFA_INTERPRETER)
|
|
|
|
{
|
2014-12-19 10:55:25 +01:00
|
|
|
if (stringnumber > match_data->code->top_bracket)
|
2014-12-14 18:17:06 +01:00
|
|
|
return PCRE2_ERROR_NOSUBSTRING;
|
2014-12-19 10:55:25 +01:00
|
|
|
if (stringnumber >= match_data->oveccount)
|
2014-12-14 18:17:06 +01:00
|
|
|
return PCRE2_ERROR_UNAVAILABLE;
|
|
|
|
if (match_data->ovector[stringnumber*2] == PCRE2_UNSET)
|
|
|
|
return PCRE2_ERROR_UNSET;
|
|
|
|
}
|
|
|
|
else /* Matched using pcre2_dfa_match() */
|
|
|
|
{
|
|
|
|
if (stringnumber >= match_data->oveccount) return PCRE2_ERROR_UNAVAILABLE;
|
|
|
|
if (count != 0 && stringnumber >= (uint32_t)count) return PCRE2_ERROR_UNSET;
|
2014-12-19 10:55:25 +01:00
|
|
|
}
|
2014-12-22 18:33:10 +01:00
|
|
|
|
2014-12-13 18:43:26 +01:00
|
|
|
left = match_data->ovector[stringnumber*2];
|
|
|
|
right = match_data->ovector[stringnumber*2+1];
|
|
|
|
if (sizeptr != NULL) *sizeptr = (left > right)? 0 : right - left;
|
2014-12-19 10:55:25 +01:00
|
|
|
return 0;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Extract all captured strings to new memory *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function gets one chunk of memory and builds a list of pointers and all
|
|
|
|
the captured substrings in it. A NULL pointer is put on the end of the list.
|
2014-10-20 19:28:49 +02:00
|
|
|
The substrings are zero-terminated, but also, if the final argument is
|
|
|
|
non-NULL, a list of lengths is also returned. This allows binary data to be
|
2014-05-13 13:20:03 +02:00
|
|
|
handled.
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
match_data points to the match data
|
|
|
|
listptr set to point to the list of pointers
|
2014-10-20 19:28:49 +02:00
|
|
|
lengthsptr set to point to the list of lengths (may be NULL)
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
Returns: if successful: 0
|
|
|
|
if not successful, a negative error code:
|
2014-05-13 13:20:03 +02:00
|
|
|
PCRE2_ERROR_NOMEMORY: failed to get memory,
|
2014-10-20 19:28:49 +02:00
|
|
|
or a match failure code
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-10-20 19:28:49 +02:00
|
|
|
pcre2_substring_list_get(pcre2_match_data *match_data, PCRE2_UCHAR ***listptr,
|
2014-08-29 14:12:34 +02:00
|
|
|
PCRE2_SIZE **lengthsptr)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2014-05-13 13:20:03 +02:00
|
|
|
int i, count, count2;
|
2014-08-29 14:12:34 +02:00
|
|
|
PCRE2_SIZE size;
|
|
|
|
PCRE2_SIZE *lensp;
|
2014-05-13 13:20:03 +02:00
|
|
|
pcre2_memctl *memp;
|
|
|
|
PCRE2_UCHAR **listp;
|
|
|
|
PCRE2_UCHAR *sp;
|
2014-08-16 11:46:58 +02:00
|
|
|
PCRE2_SIZE *ovector;
|
2014-05-13 13:20:03 +02:00
|
|
|
|
2014-12-13 18:43:26 +01:00
|
|
|
if ((count = match_data->rc) < 0) return count; /* Match failed */
|
|
|
|
if (count == 0) count = match_data->oveccount; /* Ovector too small */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
count2 = 2*count;
|
|
|
|
ovector = match_data->ovector;
|
2014-08-29 14:12:34 +02:00
|
|
|
size = sizeof(pcre2_memctl) + sizeof(PCRE2_UCHAR *); /* For final NULL */
|
|
|
|
if (lengthsptr != NULL) size += sizeof(PCRE2_SIZE) * count; /* For lengths */
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
for (i = 0; i < count2; i += 2)
|
2014-12-13 18:43:26 +01:00
|
|
|
{
|
|
|
|
size += sizeof(PCRE2_UCHAR *) + CU2BYTES(1);
|
|
|
|
if (ovector[i+1] > ovector[i]) size += CU2BYTES(ovector[i+1] - ovector[i]);
|
2014-12-19 10:55:25 +01:00
|
|
|
}
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
memp = PRIV(memctl_malloc)(size, (pcre2_memctl *)match_data);
|
2014-05-13 13:20:03 +02:00
|
|
|
if (memp == NULL) return PCRE2_ERROR_NOMEMORY;
|
|
|
|
|
|
|
|
*listptr = listp = (PCRE2_UCHAR **)((char *)memp + sizeof(pcre2_memctl));
|
2014-08-29 14:12:34 +02:00
|
|
|
lensp = (PCRE2_SIZE *)((char *)listp + sizeof(PCRE2_UCHAR *) * (count + 1));
|
2014-10-20 19:28:49 +02:00
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
if (lengthsptr == NULL)
|
|
|
|
{
|
2014-10-20 19:28:49 +02:00
|
|
|
sp = (PCRE2_UCHAR *)lensp;
|
2014-05-13 13:20:03 +02:00
|
|
|
lensp = NULL;
|
|
|
|
}
|
|
|
|
else
|
2014-10-20 19:28:49 +02:00
|
|
|
{
|
|
|
|
*lengthsptr = lensp;
|
|
|
|
sp = (PCRE2_UCHAR *)((char *)lensp + sizeof(PCRE2_SIZE) * count);
|
|
|
|
}
|
2014-05-13 13:20:03 +02:00
|
|
|
|
|
|
|
for (i = 0; i < count2; i += 2)
|
|
|
|
{
|
2014-12-13 18:43:26 +01:00
|
|
|
size = (ovector[i+1] > ovector[i])? (ovector[i+1] - ovector[i]) : 0;
|
2018-01-12 19:48:27 +01:00
|
|
|
|
|
|
|
/* Size == 0 includes the case when the capture is unset. Avoid adding
|
|
|
|
PCRE2_UNSET to match_data->subject because it overflows, even though with
|
|
|
|
zero size calling memcpy() is harmless. */
|
|
|
|
|
|
|
|
if (size != 0) memcpy(sp, match_data->subject + ovector[i], CU2BYTES(size));
|
2014-05-13 13:20:03 +02:00
|
|
|
*listp++ = sp;
|
|
|
|
if (lensp != NULL) *lensp++ = size;
|
|
|
|
sp += size;
|
|
|
|
*sp++ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*listp = NULL;
|
|
|
|
return 0;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
2014-05-13 13:20:03 +02:00
|
|
|
* Free memory obtained by substring_list_get *
|
2014-03-07 18:28:52 +01:00
|
|
|
*************************************************/
|
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
/*
|
|
|
|
Argument: the result of a previous pcre2_substring_list_get()
|
|
|
|
Returns: nothing
|
2014-03-07 18:28:52 +01:00
|
|
|
*/
|
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION
|
|
|
|
pcre2_substring_list_free(PCRE2_SPTR *list)
|
2014-03-07 18:28:52 +01:00
|
|
|
{
|
2016-02-06 13:45:56 +01:00
|
|
|
if (list != NULL)
|
|
|
|
{
|
|
|
|
pcre2_memctl *memctl = (pcre2_memctl *)((char *)list - sizeof(pcre2_memctl));
|
|
|
|
memctl->free(memctl, memctl->memory_data);
|
|
|
|
}
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Find (multiple) entries for named string *
|
|
|
|
*************************************************/
|
|
|
|
|
2014-10-20 19:28:49 +02:00
|
|
|
/* This function scans the nametable for a given name, using binary chop. It
|
|
|
|
returns either two pointers to the entries in the table, or, if no pointers are
|
2014-12-13 18:43:26 +01:00
|
|
|
given, the number of a unique group with the given name. If duplicate names are
|
|
|
|
permitted, and the name is not unique, an error is generated.
|
2014-04-18 17:37:56 +02:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
code the compiled regex
|
|
|
|
stringname the name whose entries required
|
|
|
|
firstptr where to put the pointer to the first entry
|
|
|
|
lastptr where to put the pointer to the last entry
|
|
|
|
|
2014-12-13 18:43:26 +01:00
|
|
|
Returns: PCRE2_ERROR_NOSUBSTRING if the name is not found
|
|
|
|
otherwise, if firstptr and lastptr are NULL:
|
|
|
|
a group number for a unique substring
|
|
|
|
else PCRE2_ERROR_NOUNIQUESUBSTRING
|
|
|
|
otherwise:
|
|
|
|
the length of each entry, having set firstptr and lastptr
|
2014-04-18 17:37:56 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
|
|
|
pcre2_substring_nametable_scan(const pcre2_code *code, PCRE2_SPTR stringname,
|
2014-05-13 13:20:03 +02:00
|
|
|
PCRE2_SPTR *firstptr, PCRE2_SPTR *lastptr)
|
2014-04-18 17:37:56 +02:00
|
|
|
{
|
2014-05-13 13:20:03 +02:00
|
|
|
uint16_t bot = 0;
|
|
|
|
uint16_t top = code->name_count;
|
|
|
|
uint16_t entrysize = code->name_entry_size;
|
|
|
|
PCRE2_SPTR nametable = (PCRE2_SPTR)((char *)code + sizeof(pcre2_real_code));
|
|
|
|
|
|
|
|
while (top > bot)
|
|
|
|
{
|
|
|
|
uint16_t mid = (top + bot) / 2;
|
|
|
|
PCRE2_SPTR entry = nametable + entrysize*mid;
|
|
|
|
int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE);
|
2014-10-20 19:28:49 +02:00
|
|
|
if (c == 0)
|
2014-05-13 13:20:03 +02:00
|
|
|
{
|
2014-07-15 10:46:12 +02:00
|
|
|
PCRE2_SPTR first;
|
|
|
|
PCRE2_SPTR last;
|
2014-10-20 19:28:49 +02:00
|
|
|
PCRE2_SPTR lastentry;
|
2014-05-13 13:20:03 +02:00
|
|
|
lastentry = nametable + entrysize * (code->name_count - 1);
|
|
|
|
first = last = entry;
|
|
|
|
while (first > nametable)
|
|
|
|
{
|
|
|
|
if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break;
|
|
|
|
first -= entrysize;
|
|
|
|
}
|
|
|
|
while (last < lastentry)
|
|
|
|
{
|
|
|
|
if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break;
|
|
|
|
last += entrysize;
|
|
|
|
}
|
2014-12-19 10:55:25 +01:00
|
|
|
if (firstptr == NULL) return (first == last)?
|
2014-12-13 18:43:26 +01:00
|
|
|
(int)GET2(entry, 0) : PCRE2_ERROR_NOUNIQUESUBSTRING;
|
2014-05-13 13:20:03 +02:00
|
|
|
*firstptr = first;
|
2014-10-20 19:28:49 +02:00
|
|
|
*lastptr = last;
|
2014-05-13 13:20:03 +02:00
|
|
|
return entrysize;
|
|
|
|
}
|
|
|
|
if (c > 0) bot = mid + 1; else top = mid;
|
|
|
|
}
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
return PCRE2_ERROR_NOSUBSTRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-13 13:20:03 +02:00
|
|
|
/*************************************************
|
|
|
|
* Find number for named string *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This function is a convenience wrapper for pcre2_substring_nametable_scan()
|
2014-10-20 19:28:49 +02:00
|
|
|
when it is known that names are unique. If there are duplicate names, it is not
|
2014-05-13 13:20:03 +02:00
|
|
|
defined which number is returned.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
code the compiled regex
|
|
|
|
stringname the name whose number is required
|
|
|
|
|
|
|
|
Returns: the number of the named parenthesis, or a negative number
|
2014-11-08 17:09:24 +01:00
|
|
|
PCRE2_ERROR_NOSUBSTRING if not found
|
2014-11-11 17:51:07 +01:00
|
|
|
PCRE2_ERROR_NOUNIQUESUBSTRING if not unique
|
2014-05-13 13:20:03 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
2014-10-20 19:28:49 +02:00
|
|
|
pcre2_substring_number_from_name(const pcre2_code *code,
|
2014-05-13 13:20:03 +02:00
|
|
|
PCRE2_SPTR stringname)
|
|
|
|
{
|
|
|
|
return pcre2_substring_nametable_scan(code, stringname, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2014-03-07 18:28:52 +01:00
|
|
|
/* End of pcre2_substring.c */
|