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
|
|
|
|
New API code Copyright (c) 2014 University of Cambridge
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************
|
|
|
|
* Return info about compiled pattern *
|
|
|
|
*************************************************/
|
|
|
|
|
2014-04-30 18:55:24 +02:00
|
|
|
/*
|
2014-03-07 18:28:52 +01:00
|
|
|
Arguments:
|
|
|
|
code points to compiled code
|
|
|
|
what what information is required
|
|
|
|
where where to put the information
|
|
|
|
|
|
|
|
Returns: 0 if data returned, negative on error
|
|
|
|
*/
|
|
|
|
|
2014-05-20 20:48:43 +02:00
|
|
|
/* FIXME: this is currently incomplete. Also, check int vs uint32_t */
|
2014-03-07 18:28:52 +01:00
|
|
|
|
|
|
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
|
|
|
pcre2_pattern_info(const pcre2_code *code, uint32_t what, void *where)
|
|
|
|
{
|
2014-04-18 17:37:56 +02:00
|
|
|
const pcre2_real_code *re = (pcre2_real_code *)code;
|
2014-04-30 18:55:24 +02:00
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
if (re == NULL || where == NULL) return PCRE2_ERROR_NULL;
|
2014-04-30 18:55:24 +02:00
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
/* Check that the first field in the block is the magic number. If it is not,
|
|
|
|
return with PCRE2_ERROR_BADMAGIC. However, if the magic number is equal to
|
2014-04-30 18:55:24 +02:00
|
|
|
REVERSED_MAGIC_NUMBER we return with PCRE2_ERROR_BADENDIANNESS, which
|
|
|
|
means that the pattern is likely compiled with different endianness. */
|
|
|
|
|
|
|
|
if (re->magic_number != MAGIC_NUMBER)
|
|
|
|
return re->magic_number == REVERSED_MAGIC_NUMBER?
|
|
|
|
PCRE2_ERROR_BADENDIANNESS:PCRE2_ERROR_BADMAGIC;
|
|
|
|
|
|
|
|
/* Check that this pattern was compiled in the correct bit mode */
|
|
|
|
|
|
|
|
if ((re->flags & (PCRE2_CODE_UNIT_WIDTH/8)) == 0)
|
|
|
|
return PCRE2_ERROR_BADMODE;
|
2014-04-18 17:37:56 +02:00
|
|
|
|
|
|
|
switch(what)
|
|
|
|
{
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_ALLOPTIONS:
|
2014-06-24 17:47:33 +02:00
|
|
|
*((int *)where) = re->overall_options;
|
2014-06-24 17:30:10 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_ARGOPTIONS:
|
|
|
|
*((int *)where) = re->compile_options;
|
|
|
|
break;
|
|
|
|
|
2014-04-30 18:55:24 +02:00
|
|
|
case PCRE2_INFO_BACKREFMAX:
|
|
|
|
*((int *)where) = re->top_backref;
|
|
|
|
break;
|
|
|
|
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_BSR:
|
2014-04-30 18:55:24 +02:00
|
|
|
*((uint32_t *)where) = re->bsr_convention;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_CAPTURECOUNT:
|
|
|
|
*((int *)where) = re->top_bracket;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_FIRSTCODETYPE:
|
|
|
|
*((int *)where) = ((re->flags & PCRE2_FIRSTSET) != 0)? 1 :
|
|
|
|
((re->flags & PCRE2_STARTLINE) != 0)? 2 : 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_FIRSTCODEUNIT:
|
|
|
|
*((uint32_t *)where) = ((re->flags & PCRE2_FIRSTSET) != 0)?
|
|
|
|
re->first_codeunit : 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_FIRSTBITMAP:
|
|
|
|
*((const uint8_t **)where) = ((re->flags & PCRE2_FIRSTMAPSET) != 0)?
|
|
|
|
&(re->start_bitmap[0]) : NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_HASCRORLF:
|
|
|
|
*((int *)where) = (re->flags & PCRE2_HASCRORLF) != 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_JCHANGED:
|
|
|
|
*((int *)where) = (re->flags & PCRE2_JCHANGED) != 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_JITSIZE:
|
|
|
|
#ifdef SUPPORT_JIT
|
|
|
|
*((size_t *)where) = (re->executable_jit != NULL)?
|
|
|
|
PRIV(jit_get_size)(re->executable_jit) : 0;
|
|
|
|
#else
|
|
|
|
*((size_t *)where) = 0;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_LASTCODETYPE:
|
|
|
|
*((int *)where) = ((re->flags & PCRE2_LASTSET) != 0)? 1 : 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_LASTCODEUNIT:
|
|
|
|
*((uint32_t *)where) = ((re->flags & PCRE2_LASTSET) != 0)?
|
|
|
|
re->last_codeunit : 0;
|
|
|
|
break;
|
|
|
|
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_MATCHEMPTY:
|
2014-04-30 18:55:24 +02:00
|
|
|
*((int *)where) = (re->flags & PCRE2_MATCH_EMPTY) != 0;
|
|
|
|
break;
|
|
|
|
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_MATCHLIMIT:
|
2014-04-30 18:55:24 +02:00
|
|
|
*((uint32_t *)where) = re->limit_match;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_MAXLOOKBEHIND:
|
|
|
|
*((int *)where) = re->max_lookbehind;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCRE2_INFO_MINLENGTH:
|
|
|
|
*((int *)where) = re->minlength;
|
|
|
|
break;
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
case PCRE2_INFO_NAMEENTRYSIZE:
|
|
|
|
*((int *)where) = re->name_entry_size;
|
|
|
|
break;
|
2014-04-30 18:55:24 +02:00
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
case PCRE2_INFO_NAMECOUNT:
|
|
|
|
*((int *)where) = re->name_count;
|
|
|
|
break;
|
2014-04-30 18:55:24 +02:00
|
|
|
|
|
|
|
case PCRE2_INFO_NAMETABLE:
|
2014-05-13 13:20:03 +02:00
|
|
|
*((PCRE2_SPTR*)where) = (PCRE2_SPTR)((char *)re + sizeof(pcre2_real_code));
|
2014-04-30 18:55:24 +02:00
|
|
|
break;
|
|
|
|
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_NEWLINE:
|
2014-04-30 18:55:24 +02:00
|
|
|
*((uint32_t *)where) = re->newline_convention;
|
|
|
|
break;
|
|
|
|
|
2014-06-24 17:30:10 +02:00
|
|
|
case PCRE2_INFO_RECURSIONLIMIT:
|
2014-04-30 18:55:24 +02:00
|
|
|
*((uint32_t *)where) = re->limit_recursion;
|
|
|
|
break;
|
|
|
|
|
2014-04-18 17:37:56 +02:00
|
|
|
case PCRE2_INFO_SIZE:
|
2014-06-14 20:29:51 +02:00
|
|
|
*((size_t *)where) = re->blocksize;
|
2014-04-30 18:55:24 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: return PCRE2_ERROR_BADOPTION;
|
|
|
|
}
|
2014-04-18 17:37:56 +02:00
|
|
|
|
|
|
|
return 0;
|
2014-03-07 18:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* End of pcre2_pattern_info.c */
|