1 /*************************************************
2 * Perl-Compatible Regular Expressions *
3 *************************************************/
5 /* PCRE is a library of functions to support regular expressions whose syntax
6 and semantics are as close as possible to those of the Perl 5 language.
8 Written by Philip Hazel
9 Copyright (c) 1997-2012 University of Cambridge
11 -----------------------------------------------------------------------------
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
15 * Redistributions of source code must retain the above copyright notice,
16 this list of conditions and the following disclaimer.
18 * Redistributions in binary form must reproduce the above copyright
19 notice, this list of conditions and the following disclaimer in the
20 documentation and/or other materials provided with the distribution.
22 * Neither the name of the University of Cambridge nor the names of its
23 contributors may be used to endorse or promote products derived from
24 this software without specific prior written permission.
26 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 POSSIBILITY OF SUCH DAMAGE.
37 -----------------------------------------------------------------------------
41 /* This module contains an internal function that tests a compiled pattern to
42 see if it was compiled with the opposite endianness. If so, it uses an
43 auxiliary local function to flip the appropriate bytes. */
50 #include "pcre_internal.h"
53 /*************************************************
54 * Swap byte functions *
55 *************************************************/
57 /* The following functions swap the bytes of a pcre_uint16
58 and pcre_uint32 value.
63 Returns: the byte swapped value
67 swap_uint32(pcre_uint32 value
)
69 return ((value
& 0x000000ff) << 24) |
70 ((value
& 0x0000ff00) << 8) |
71 ((value
& 0x00ff0000) >> 8) |
76 swap_uint16(pcre_uint16 value
)
78 return (value
>> 8) | (value
<< 8);
82 /*************************************************
83 * Test for a byte-flipped compiled regex *
84 *************************************************/
86 /* This function swaps the bytes of a compiled pattern usually
87 loaded form the disk. It also sets the tables pointer, which
88 is likely an invalid pointer after reload.
91 argument_re points to the compiled expression
92 extra_data points to extra data or is NULL
93 tables points to the character tables or NULL
95 Returns: 0 if the swap is successful, negative on error
99 PCRE_EXP_DECL
int pcre_pattern_to_host_byte_order(pcre
*argument_re
,
100 pcre_extra
*extra_data
, const unsigned char *tables
)
102 PCRE_EXP_DECL
int pcre16_pattern_to_host_byte_order(pcre16
*argument_re
,
103 pcre16_extra
*extra_data
, const unsigned char *tables
)
106 REAL_PCRE
*re
= (REAL_PCRE
*)argument_re
;
107 pcre_study_data
*study
;
108 #ifndef COMPILE_PCRE8
114 #endif /* SUPPORT_UTF */
115 #endif /* !COMPILE_PCRE8 */
117 if (re
== NULL
) return PCRE_ERROR_NULL
;
118 if (re
->magic_number
== MAGIC_NUMBER
)
120 if ((re
->flags
& PCRE_MODE
) == 0) return PCRE_ERROR_BADMODE
;
125 if (re
->magic_number
!= REVERSED_MAGIC_NUMBER
) return PCRE_ERROR_BADMAGIC
;
126 if ((swap_uint16(re
->flags
) & PCRE_MODE
) == 0) return PCRE_ERROR_BADMODE
;
128 re
->magic_number
= MAGIC_NUMBER
;
129 re
->size
= swap_uint32(re
->size
);
130 re
->options
= swap_uint32(re
->options
);
131 re
->flags
= swap_uint16(re
->flags
);
132 re
->top_bracket
= swap_uint16(re
->top_bracket
);
133 re
->top_backref
= swap_uint16(re
->top_backref
);
134 re
->first_char
= swap_uint16(re
->first_char
);
135 re
->req_char
= swap_uint16(re
->req_char
);
136 re
->name_table_offset
= swap_uint16(re
->name_table_offset
);
137 re
->name_entry_size
= swap_uint16(re
->name_entry_size
);
138 re
->name_count
= swap_uint16(re
->name_count
);
139 re
->ref_count
= swap_uint16(re
->ref_count
);
142 if (extra_data
!= NULL
&& (extra_data
->flags
& PCRE_EXTRA_STUDY_DATA
) != 0)
144 study
= (pcre_study_data
*)extra_data
->study_data
;
145 study
->size
= swap_uint32(study
->size
);
146 study
->flags
= swap_uint32(study
->flags
);
147 study
->minlength
= swap_uint32(study
->minlength
);
150 #ifndef COMPILE_PCRE8
151 ptr
= (pcre_uchar
*)re
+ re
->name_table_offset
;
152 length
= re
->name_count
* re
->name_entry_size
;
154 utf
= (re
->options
& PCRE_UTF16
) != 0;
160 /* Swap previous characters. */
163 *ptr
= swap_uint16(*ptr
);
169 if (HAS_EXTRALEN(ptr
[-1]))
171 /* We know that there is only one extra character in UTF-16. */
172 *ptr
= swap_uint16(*ptr
);
177 #endif /* SUPPORT_UTF */
179 /* Get next opcode. */
181 *ptr
= swap_uint16(*ptr
);
236 case OP_NOTMINQUERYI
:
242 case OP_NOTPOSQUERYI
:
244 if (utf
) utf16_char
= TRUE
;
249 length
= PRIV(OP_lengths
)[*ptr
] - 1;
254 /* Skip the character bit map. */
255 ptr
+= 32/sizeof(pcre_uchar
);
260 /* Reverse the size of the XCLASS instance. */
262 *ptr
= swap_uint16(*ptr
);
265 /* LINK_SIZE can be 1 or 2 in 16 bit mode. */
267 *ptr
= swap_uint16(*ptr
);
270 length
= (GET(ptr
, -LINK_SIZE
)) - (1 + LINK_SIZE
+ 1);
271 *ptr
= swap_uint16(*ptr
);
272 if ((*ptr
& XCL_MAP
) != 0)
274 /* Skip the character bit map. */
275 ptr
+= 32/sizeof(pcre_uchar
);
276 length
-= 32/sizeof(pcre_uchar
);
282 /* Control should never reach here in 16 bit mode. */
283 #endif /* !COMPILE_PCRE8 */
288 /* End of pcre_byte_order.c */