(RFC4514) and LDAP filter escaping (RFC4515).</td><td></td></tr>
<tr><td><code>replace</code></td>
<td>replace(string, "from", "to") replaces all occurrences of "from"
- in the string with "to".</td><td></td></tr>
+ in the string with "to". The first parameter must not be a literal string.
+ </td><td></td></tr>
</table>
<If "md5('foo') == 'acbd18db4cc2f85cedef654fccc4a4d8'">
Header set checksum-matched true
</If>
-<If "md5('foo') == replace('md5:XXXd18db4cc2f85cedef654fccc4a4d8', 'md5:XXX', 'acb')">
- Header set checksum-matched-2 true
-</If>
+
+Requir expr replace(%{REQUEST_METHOD}, 'E', 'O') == 'GET'"
# Function example in string context
Header set foo-checksum "expr=%{md5:foo}"
/** arg for pre-parsing (only if a simple string).
* For binary ops, this is the right argument.
- * For functions with more arguments, this is the first string
- * argument. */
+ * For AP_EXPR_FUNC_STRING functions with multiple arguments, this is the first
+ * simple/literal string argument.
+ */
const char *arg;
} ap_expr_lookup_parms;
if (arg->node_op == op_ListElement) {
/* Evaluate the list elements and store them in apr_array_header. */
ap_expr_string_list_func_t *func = (ap_expr_string_list_func_t *)info->node_arg1;
- apr_array_header_t *args = ap_expr_list_make(ctx, arg->node_arg1);
+ apr_array_header_t *args = ap_expr_list_make(ctx, arg);
return (*func)(ctx, data, args);
}
else {
parms.arg = arg->node_arg1;
break;
case op_ListElement:
+ /* save the first literal/simple string argument */
do {
const ap_expr_t *val = arg->node_arg1;
- if (val->node_op == op_String) {
+ if (val && val->node_op == op_String) {
parms.arg = val->node_arg1;
+ break;
}
arg = arg->node_arg2;
} while (arg != NULL);
const apr_strmatch_pattern *pattern;
if (!parms->arg) {
- *parms->err = apr_psprintf(parms->ptemp, "replace() function needs "
- "exactly 3 arguments");
+ *parms->err = apr_psprintf(parms->ptemp, "replace() function needs an argument");
return !OK;
}
+
pattern = apr_strmatch_precompile(parms->pool, original, 0);
*parms->data = pattern;
return OK;
const apr_strmatch_pattern *pattern = data;
if (args->nelts != 3) {
*ctx->err = apr_psprintf(ctx->p, "replace() function needs "
- "exactly 3 arguments");
+ "exactly 3 arguments, got %d", args->nelts);
return "";
}
- buff = APR_ARRAY_IDX(args, 2, char *);
+ buff = APR_ARRAY_IDX(args, 0, char *);
original = APR_ARRAY_IDX(args, 1, char *);
- replacement = APR_ARRAY_IDX(args, 0, char *);
+ replacement = APR_ARRAY_IDX(args, 2, char *);
repl_len = strlen(replacement);
orig_len = strlen(original);
bytes = strlen(buff);