Skip to content
Snippets Groups Projects
Commit f32edce2 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Made regex match complaint about comparators other than i;octet or i;ascii-casemap

parent f4a19c3d
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,10 @@
#include "sieve-code.h"
#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-comparators.h"
#include "sieve-match-types.h"
#include "sieve-validator.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"
......@@ -53,13 +56,17 @@ static bool ext_regex_load(int ext_id)
extern const struct sieve_match_type_extension regex_match_extension;
bool mtch_regex_validate_context
(struct sieve_validator *validator, struct sieve_ast_argument *arg,
struct sieve_match_type_context *ctx);
const struct sieve_match_type regex_match_type = {
"regex",
SIEVE_MATCH_TYPE_CUSTOM,
&regex_match_extension,
0,
NULL,
NULL,
mtch_regex_validate_context,
NULL
};
......@@ -69,6 +76,34 @@ const struct sieve_match_type_extension regex_match_extension = {
NULL
};
/* Validation */
bool mtch_regex_validate_context
(struct sieve_validator *validator, struct sieve_ast_argument *arg,
struct sieve_match_type_context *ctx)
{
struct sieve_ast_argument *carg =
sieve_command_first_argument(ctx->command_ctx);
while ( carg != NULL ) {
if ( carg != arg && carg->argument == &comparator_tag ) {
if (!sieve_comparator_tag_is(carg, &i_ascii_casemap_comparator) &&
!sieve_comparator_tag_is(carg, &i_octet_comparator) )
{
sieve_command_validate_error(validator, ctx->command_ctx,
"regex match type only supports i;octet and i;ascii-casemap comparators" );
return FALSE;
}
return TRUE;
}
carg = sieve_ast_argument_next(carg);
}
return TRUE;
}
/* Load extension into validator */
static bool ext_regex_validator_load(struct sieve_validator *validator)
......
require "regex";
require "comparator-i;ascii-numeric";
if address :regex :comparator "i;ascii-numeric" "from" "sirius(\\+.*)?@drunksnipers\\.com" {
keep;
stop;
}
discard;
......@@ -83,14 +83,17 @@ struct sieve_command_context *sieve_command_context_create
const char *sieve_command_type_name(const struct sieve_command *command);
#define sieve_command_validate_error(validator, context, ...) \
sieve_validator_error(validator, context->ast_node, __VA_ARGS__)
sieve_validator_error(validator, (context)->ast_node, __VA_ARGS__)
#define sieve_command_pool(context) \
sieve_ast_node_pool(context->ast_node)
sieve_ast_node_pool((context)->ast_node)
#define sieve_command_first_argument(context) \
sieve_ast_argument_first((context)->ast_node)
#define sieve_command_is_toplevel(context) \
( sieve_ast_node_type(sieve_ast_node_parent(context->ast_node)) == SAT_ROOT )
( sieve_ast_node_type(sieve_ast_node_parent((context)->ast_node)) == SAT_ROOT )
#define sieve_command_is_first(context) \
( sieve_ast_node_prev(context->ast_node) == NULL )
( sieve_ast_node_prev((context)->ast_node) == NULL )
struct sieve_command_context *sieve_command_prev_context
(struct sieve_command_context *context);
......
......@@ -285,6 +285,13 @@ void sieve_comparators_link_tag
sieve_validator_register_tag(validator, cmd_reg, &comparator_tag, id_code);
}
inline bool sieve_comparator_tag_is
(struct sieve_ast_argument *tag, const struct sieve_comparator *cmp)
{
return (tag->argument == &comparator_tag &&
((const struct sieve_comparator *) tag->context) == cmp);
}
/* Code generation */
static void opr_comparator_emit
......
......@@ -47,13 +47,17 @@ struct sieve_comparator_extension {
(unsigned int code);
};
extern const struct sieve_argument comparator_tag;
void sieve_comparators_link_tag
(struct sieve_validator *validator,
struct sieve_command_registration *cmd_reg,
unsigned int id_code);
inline bool sieve_comparator_tag_is
(struct sieve_ast_argument *tag, const struct sieve_comparator *cmp);
const struct sieve_comparator i_octet_comparator;
const struct sieve_comparator i_ascii_casemap_comparator;
extern const struct sieve_comparator i_octet_comparator;
extern const struct sieve_comparator i_ascii_casemap_comparator;
void sieve_comparator_register
(struct sieve_validator *validator,
......
......@@ -465,7 +465,8 @@ static bool sieve_validate_command_arguments
static bool sieve_validate_arguments_context
(struct sieve_validator *validator, struct sieve_command_context *cmd)
{
struct sieve_ast_argument *arg = sieve_ast_argument_first(cmd->ast_node);
struct sieve_ast_argument *arg =
sieve_command_first_argument(cmd);
while ( arg != NULL ) {
const struct sieve_argument *argument = arg->argument;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.