|
|
7f6d46 |
diff --git a/include/ap_regex.h b/include/ap_regex.h
|
|
|
7f6d46 |
index 349ae83..952e77a 100644
|
|
|
7f6d46 |
--- a/include/ap_regex.h
|
|
|
7f6d46 |
+++ b/include/ap_regex.h
|
|
|
7f6d46 |
@@ -79,6 +79,12 @@ extern "C" {
|
|
|
7f6d46 |
|
|
|
7f6d46 |
#define AP_REG_DOLLAR_ENDONLY 0x200 /**< '$' matches at end of subject string only */
|
|
|
7f6d46 |
|
|
|
7f6d46 |
+#define AP_REG_NO_DEFAULT 0x400 /**< Don't implicitely add AP_REG_DEFAULT options */
|
|
|
7f6d46 |
+
|
|
|
7f6d46 |
+#define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */
|
|
|
7f6d46 |
+
|
|
|
7f6d46 |
+#define AP_REG_DEFAULT (AP_REG_DOTALL|AP_REG_DOLLAR_ENDONLY)
|
|
|
7f6d46 |
+
|
|
|
7f6d46 |
/* Error values: */
|
|
|
7f6d46 |
enum {
|
|
|
7f6d46 |
AP_REG_ASSERT = 1, /** internal error ? */
|
|
|
7f6d46 |
diff --git a/modules/filters/mod_substitute.c b/modules/filters/mod_substitute.c
|
|
|
7f6d46 |
index 15cd8ee..69af111 100644
|
|
|
7f6d46 |
--- a/modules/filters/mod_substitute.c
|
|
|
7f6d46 |
+++ b/modules/filters/mod_substitute.c
|
|
|
7f6d46 |
@@ -599,8 +599,10 @@ static const char *set_pattern(cmd_parms *cmd, void *cfg, const char *line)
|
|
|
7f6d46 |
|
|
|
7f6d46 |
/* first see if we can compile the regex */
|
|
|
7f6d46 |
if (!is_pattern) {
|
|
|
7f6d46 |
- r = ap_pregcomp(cmd->pool, from, AP_REG_EXTENDED |
|
|
|
7f6d46 |
- (ignore_case ? AP_REG_ICASE : 0));
|
|
|
7f6d46 |
+ int flags = AP_REG_NO_DEFAULT
|
|
|
7f6d46 |
+ | (ap_regcomp_get_default_cflags() & AP_REG_DOLLAR_ENDONLY)
|
|
|
7f6d46 |
+ | (ignore_case ? AP_REG_ICASE : 0);
|
|
|
7f6d46 |
+ r = ap_pregcomp(cmd->pool, from, flags);
|
|
|
7f6d46 |
if (!r)
|
|
|
7f6d46 |
return "Substitute could not compile regex";
|
|
|
7f6d46 |
}
|
|
|
7f6d46 |
diff --git a/server/core.c b/server/core.c
|
|
|
7f6d46 |
index d4af287..6ae0f5f 100644
|
|
|
7f6d46 |
--- a/server/core.c
|
|
|
7f6d46 |
+++ b/server/core.c
|
|
|
7f6d46 |
@@ -4625,7 +4625,7 @@ static int core_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptem
|
|
|
7f6d46 |
apr_pool_cleanup_register(pconf, NULL, reset_config_defines,
|
|
|
7f6d46 |
apr_pool_cleanup_null);
|
|
|
7f6d46 |
|
|
|
7f6d46 |
- ap_regcomp_set_default_cflags(AP_REG_DOLLAR_ENDONLY);
|
|
|
7f6d46 |
+ ap_regcomp_set_default_cflags(AP_REG_DEFAULT);
|
|
|
7f6d46 |
|
|
|
7f6d46 |
mpm_common_pre_config(pconf);
|
|
|
7f6d46 |
|
|
|
7f6d46 |
diff --git a/server/util_pcre.c b/server/util_pcre.c
|
|
|
7f6d46 |
index d7df400..f778c75 100644
|
|
|
7f6d46 |
--- a/server/util_pcre.c
|
|
|
7f6d46 |
+++ b/server/util_pcre.c
|
|
|
7f6d46 |
@@ -110,7 +110,7 @@ AP_DECLARE(void) ap_regfree(ap_regex_t *preg)
|
|
|
7f6d46 |
* Compile a regular expression *
|
|
|
7f6d46 |
*************************************************/
|
|
|
7f6d46 |
|
|
|
7f6d46 |
-static int default_cflags = AP_REG_DOLLAR_ENDONLY;
|
|
|
7f6d46 |
+static int default_cflags = AP_REG_DEFAULT;
|
|
|
7f6d46 |
|
|
|
7f6d46 |
AP_DECLARE(int) ap_regcomp_get_default_cflags(void)
|
|
|
7f6d46 |
{
|
|
|
7f6d46 |
@@ -158,7 +158,8 @@ AP_DECLARE(int) ap_regcomp(ap_regex_t * preg, const char *pattern, int cflags)
|
|
|
7f6d46 |
int errcode = 0;
|
|
|
7f6d46 |
int options = 0;
|
|
|
7f6d46 |
|
|
|
7f6d46 |
- cflags |= default_cflags;
|
|
|
7f6d46 |
+ if ((cflags & AP_REG_NO_DEFAULT) == 0)
|
|
|
7f6d46 |
+ cflags |= default_cflags;
|
|
|
7f6d46 |
if ((cflags & AP_REG_ICASE) != 0)
|
|
|
7f6d46 |
options |= PCRE_CASELESS;
|
|
|
7f6d46 |
if ((cflags & AP_REG_NEWLINE) != 0)
|
|
|
7f6d46 |
diff --git a/server/util_regex.c b/server/util_regex.c
|
|
|
7f6d46 |
index 73eccec..5038b99 100644
|
|
|
7f6d46 |
--- a/server/util_regex.c
|
|
|
7f6d46 |
+++ b/server/util_regex.c
|
|
|
7f6d46 |
@@ -93,6 +93,7 @@ AP_DECLARE(ap_rxplus_t*) ap_rxplus_compile(apr_pool_t *pool,
|
|
|
7f6d46 |
}
|
|
|
7f6d46 |
|
|
|
7f6d46 |
/* anything after the current delimiter is flags */
|
|
|
7f6d46 |
+ ret->flags = ap_regcomp_get_default_cflags() & AP_REG_DOLLAR_ENDONLY;
|
|
|
7f6d46 |
while (*++endp) {
|
|
|
7f6d46 |
switch (*endp) {
|
|
|
7f6d46 |
case 'i': ret->flags |= AP_REG_ICASE; break;
|
|
|
7f6d46 |
@@ -105,7 +106,7 @@ AP_DECLARE(ap_rxplus_t*) ap_rxplus_compile(apr_pool_t *pool,
|
|
|
7f6d46 |
default: break; /* we should probably be stricter here */
|
|
|
7f6d46 |
}
|
|
|
7f6d46 |
}
|
|
|
7f6d46 |
- if (ap_regcomp(&ret->rx, rxstr, ret->flags) == 0) {
|
|
|
7f6d46 |
+ if (ap_regcomp(&ret->rx, rxstr, AP_REG_NO_DEFAULT | ret->flags) == 0) {
|
|
|
7f6d46 |
apr_pool_cleanup_register(pool, &ret->rx, rxplus_cleanup,
|
|
|
7f6d46 |
apr_pool_cleanup_null);
|
|
|
7f6d46 |
}
|