| 36 |
*/ |
*/ |
| 37 |
|
|
| 38 |
|
|
| 39 |
|
#ifdef HAVE_CONFIG_H |
| 40 |
|
#include <config.h> |
| 41 |
|
#endif |
| 42 |
|
|
| 43 |
#include <ctype.h> |
#include <ctype.h> |
| 44 |
#include <stdio.h> |
#include <stdio.h> |
| 45 |
#include <string.h> |
#include <string.h> |
| 156 |
static int callout_extra; |
static int callout_extra; |
| 157 |
static int callout_fail_count; |
static int callout_fail_count; |
| 158 |
static int callout_fail_id; |
static int callout_fail_id; |
| 159 |
|
static int debug_lengths; |
| 160 |
static int first_callout; |
static int first_callout; |
| 161 |
static int locale_set = 0; |
static int locale_set = 0; |
| 162 |
static int show_malloc; |
static int show_malloc; |
| 668 |
*************************************************/ |
*************************************************/ |
| 669 |
|
|
| 670 |
/* This is used both at compile and run-time to check for <xxx> escapes, where |
/* This is used both at compile and run-time to check for <xxx> escapes, where |
| 671 |
xxx is LF, CR, CRLF, or ANY. Print a message and return 0 if there is no match. |
xxx is LF, CR, CRLF, ANYCRLF, or ANY. Print a message and return 0 if there is |
| 672 |
|
no match. |
| 673 |
|
|
| 674 |
Arguments: |
Arguments: |
| 675 |
p points after the leading '<' |
p points after the leading '<' |
| 684 |
if (strncmp((char *)p, "cr>", 3) == 0) return PCRE_NEWLINE_CR; |
if (strncmp((char *)p, "cr>", 3) == 0) return PCRE_NEWLINE_CR; |
| 685 |
if (strncmp((char *)p, "lf>", 3) == 0) return PCRE_NEWLINE_LF; |
if (strncmp((char *)p, "lf>", 3) == 0) return PCRE_NEWLINE_LF; |
| 686 |
if (strncmp((char *)p, "crlf>", 5) == 0) return PCRE_NEWLINE_CRLF; |
if (strncmp((char *)p, "crlf>", 5) == 0) return PCRE_NEWLINE_CRLF; |
| 687 |
|
if (strncmp((char *)p, "anycrlf>", 8) == 0) return PCRE_NEWLINE_ANYCRLF; |
| 688 |
if (strncmp((char *)p, "any>", 4) == 0) return PCRE_NEWLINE_ANY; |
if (strncmp((char *)p, "any>", 4) == 0) return PCRE_NEWLINE_ANY; |
| 689 |
fprintf(f, "Unknown newline type at: <%s\n", p); |
fprintf(f, "Unknown newline type at: <%s\n", p); |
| 690 |
return 0; |
return 0; |
| 857 |
(void)pcre_config(PCRE_CONFIG_NEWLINE, &rc); |
(void)pcre_config(PCRE_CONFIG_NEWLINE, &rc); |
| 858 |
printf(" Newline sequence is %s\n", (rc == '\r')? "CR" : |
printf(" Newline sequence is %s\n", (rc == '\r')? "CR" : |
| 859 |
(rc == '\n')? "LF" : (rc == ('\r'<<8 | '\n'))? "CRLF" : |
(rc == '\n')? "LF" : (rc == ('\r'<<8 | '\n'))? "CRLF" : |
| 860 |
|
(rc == -2)? "ANYCRLF" : |
| 861 |
(rc == -1)? "ANY" : "???"); |
(rc == -1)? "ANY" : "???"); |
| 862 |
(void)pcre_config(PCRE_CONFIG_LINK_SIZE, &rc); |
(void)pcre_config(PCRE_CONFIG_LINK_SIZE, &rc); |
| 863 |
printf(" Internal link size = %d\n", rc); |
printf(" Internal link size = %d\n", rc); |
| 895 |
if (offsets == NULL) |
if (offsets == NULL) |
| 896 |
{ |
{ |
| 897 |
printf("** Failed to get %d bytes of memory for offsets vector\n", |
printf("** Failed to get %d bytes of memory for offsets vector\n", |
| 898 |
size_offsets_max * sizeof(int)); |
(int)(size_offsets_max * sizeof(int))); |
| 899 |
yield = 1; |
yield = 1; |
| 900 |
goto EXIT; |
goto EXIT; |
| 901 |
} |
} |
| 955 |
size_t size, regex_gotten_store; |
size_t size, regex_gotten_store; |
| 956 |
int do_study = 0; |
int do_study = 0; |
| 957 |
int do_debug = debug; |
int do_debug = debug; |
|
int debug_lengths = 1; |
|
| 958 |
int do_G = 0; |
int do_G = 0; |
| 959 |
int do_g = 0; |
int do_g = 0; |
| 960 |
int do_showinfo = showinfo; |
int do_showinfo = showinfo; |
| 963 |
int erroroffset, len, delimiter, poffset; |
int erroroffset, len, delimiter, poffset; |
| 964 |
|
|
| 965 |
use_utf8 = 0; |
use_utf8 = 0; |
| 966 |
|
debug_lengths = 1; |
| 967 |
|
|
| 968 |
if (infile == stdin) printf(" re> "); |
if (infile == stdin) printf(" re> "); |
| 969 |
if (extend_inputline(infile, buffer) == NULL) break; |
if (extend_inputline(infile, buffer) == NULL) break; |
| 1357 |
#if !defined NOINFOCHECK |
#if !defined NOINFOCHECK |
| 1358 |
int old_first_char, old_options, old_count; |
int old_first_char, old_options, old_count; |
| 1359 |
#endif |
#endif |
| 1360 |
int count, backrefmax, first_char, need_char; |
int count, backrefmax, first_char, need_char, okpartial, jchanged; |
| 1361 |
int nameentrysize, namecount; |
int nameentrysize, namecount; |
| 1362 |
const uschar *nametable; |
const uschar *nametable; |
| 1363 |
|
|
| 1370 |
new_info(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &nameentrysize); |
new_info(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &nameentrysize); |
| 1371 |
new_info(re, NULL, PCRE_INFO_NAMECOUNT, &namecount); |
new_info(re, NULL, PCRE_INFO_NAMECOUNT, &namecount); |
| 1372 |
new_info(re, NULL, PCRE_INFO_NAMETABLE, (void *)&nametable); |
new_info(re, NULL, PCRE_INFO_NAMETABLE, (void *)&nametable); |
| 1373 |
|
new_info(re, NULL, PCRE_INFO_OKPARTIAL, &okpartial); |
| 1374 |
|
new_info(re, NULL, PCRE_INFO_JCHANGED, &jchanged); |
| 1375 |
|
|
| 1376 |
#if !defined NOINFOCHECK |
#if !defined NOINFOCHECK |
| 1377 |
old_count = pcre_info(re, &old_options, &old_first_char); |
old_count = pcre_info(re, &old_options, &old_first_char); |
| 1413 |
} |
} |
| 1414 |
} |
} |
| 1415 |
|
|
| 1416 |
/* The NOPARTIAL bit is a private bit in the options, so we have |
if (!okpartial) fprintf(outfile, "Partial matching not supported\n"); |
|
to fish it out via out back door */ |
|
| 1417 |
|
|
| 1418 |
all_options = ((real_pcre *)re)->options; |
all_options = ((real_pcre *)re)->options; |
| 1419 |
if (do_flip) |
if (do_flip) all_options = byteflip(all_options, sizeof(all_options)); |
|
{ |
|
|
all_options = byteflip(all_options, sizeof(all_options)); |
|
|
} |
|
|
|
|
|
if ((all_options & PCRE_NOPARTIAL) != 0) |
|
|
fprintf(outfile, "Partial matching not supported\n"); |
|
| 1420 |
|
|
| 1421 |
if (get_options == 0) fprintf(outfile, "No options\n"); |
if (get_options == 0) fprintf(outfile, "No options\n"); |
| 1422 |
else fprintf(outfile, "Options:%s%s%s%s%s%s%s%s%s%s%s%s%s\n", |
else fprintf(outfile, "Options:%s%s%s%s%s%s%s%s%s%s%s%s%s\n", |
| 1434 |
((get_options & PCRE_NO_UTF8_CHECK) != 0)? " no_utf8_check" : "", |
((get_options & PCRE_NO_UTF8_CHECK) != 0)? " no_utf8_check" : "", |
| 1435 |
((get_options & PCRE_DUPNAMES) != 0)? " dupnames" : ""); |
((get_options & PCRE_DUPNAMES) != 0)? " dupnames" : ""); |
| 1436 |
|
|
| 1437 |
|
if (jchanged) fprintf(outfile, "Duplicate name status changes\n"); |
| 1438 |
|
|
| 1439 |
switch (get_options & PCRE_NEWLINE_BITS) |
switch (get_options & PCRE_NEWLINE_BITS) |
| 1440 |
{ |
{ |
| 1441 |
case PCRE_NEWLINE_CR: |
case PCRE_NEWLINE_CR: |
| 1450 |
fprintf(outfile, "Forced newline sequence: CRLF\n"); |
fprintf(outfile, "Forced newline sequence: CRLF\n"); |
| 1451 |
break; |
break; |
| 1452 |
|
|
| 1453 |
|
case PCRE_NEWLINE_ANYCRLF: |
| 1454 |
|
fprintf(outfile, "Forced newline sequence: ANYCRLF\n"); |
| 1455 |
|
break; |
| 1456 |
|
|
| 1457 |
case PCRE_NEWLINE_ANY: |
case PCRE_NEWLINE_ANY: |
| 1458 |
fprintf(outfile, "Forced newline sequence: ANY\n"); |
fprintf(outfile, "Forced newline sequence: ANY\n"); |
| 1459 |
break; |
break; |
| 1603 |
for (;;) |
for (;;) |
| 1604 |
{ |
{ |
| 1605 |
uschar *q; |
uschar *q; |
| 1606 |
uschar *bptr = dbuffer; |
uschar *bptr; |
| 1607 |
int *use_offsets = offsets; |
int *use_offsets = offsets; |
| 1608 |
int use_size_offsets = size_offsets; |
int use_size_offsets = size_offsets; |
| 1609 |
int callout_data = 0; |
int callout_data = 0; |
| 1659 |
p = buffer; |
p = buffer; |
| 1660 |
while (isspace(*p)) p++; |
while (isspace(*p)) p++; |
| 1661 |
|
|
| 1662 |
q = dbuffer; |
bptr = q = dbuffer; |
| 1663 |
while ((c = *p++) != 0) |
while ((c = *p++) != 0) |
| 1664 |
{ |
{ |
| 1665 |
int i = 0; |
int i = 0; |
| 1854 |
if (offsets == NULL) |
if (offsets == NULL) |
| 1855 |
{ |
{ |
| 1856 |
printf("** Failed to get %d bytes of memory for offsets vector\n", |
printf("** Failed to get %d bytes of memory for offsets vector\n", |
| 1857 |
size_offsets_max * sizeof(int)); |
(int)(size_offsets_max * sizeof(int))); |
| 1858 |
yield = 1; |
yield = 1; |
| 1859 |
goto EXIT; |
goto EXIT; |
| 1860 |
} |
} |
| 2227 |
to advance the start offset, and continue. We won't be at the end of the |
to advance the start offset, and continue. We won't be at the end of the |
| 2228 |
string - that was checked before setting g_notempty. |
string - that was checked before setting g_notempty. |
| 2229 |
|
|
| 2230 |
Complication arises in the case when the newline option is "any". |
Complication arises in the case when the newline option is "any" or |
| 2231 |
If the previous match was at the end of a line terminated by CRLF, an |
"anycrlf". If the previous match was at the end of a line terminated by |
| 2232 |
advance of one character just passes the \r, whereas we should prefer the |
CRLF, an advance of one character just passes the \r, whereas we should |
| 2233 |
longer newline sequence, as does the code in pcre_exec(). Fudge the |
prefer the longer newline sequence, as does the code in pcre_exec(). |
| 2234 |
offset value to achieve this. |
Fudge the offset value to achieve this. |
| 2235 |
|
|
| 2236 |
Otherwise, in the case of UTF-8 matching, the advance must be one |
Otherwise, in the case of UTF-8 matching, the advance must be one |
| 2237 |
character, not one byte. */ |
character, not one byte. */ |
| 2250 |
obits = (d == '\r')? PCRE_NEWLINE_CR : |
obits = (d == '\r')? PCRE_NEWLINE_CR : |
| 2251 |
(d == '\n')? PCRE_NEWLINE_LF : |
(d == '\n')? PCRE_NEWLINE_LF : |
| 2252 |
(d == ('\r'<<8 | '\n'))? PCRE_NEWLINE_CRLF : |
(d == ('\r'<<8 | '\n'))? PCRE_NEWLINE_CRLF : |
| 2253 |
|
(d == -2)? PCRE_NEWLINE_ANYCRLF : |
| 2254 |
(d == -1)? PCRE_NEWLINE_ANY : 0; |
(d == -1)? PCRE_NEWLINE_ANY : 0; |
| 2255 |
} |
} |
| 2256 |
if ((obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_ANY && |
if (((obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_ANY || |
| 2257 |
|
(obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_ANYCRLF) |
| 2258 |
|
&& |
| 2259 |
start_offset < len - 1 && |
start_offset < len - 1 && |
| 2260 |
bptr[start_offset] == '\r' && |
bptr[start_offset] == '\r' && |
| 2261 |
bptr[start_offset+1] == '\n') |
bptr[start_offset+1] == '\n') |