Newer
Older
/* Copyright (c) 2002-2010 Pigeonhole authors, see the included COPYING file
#include "lib.h"
#include "str-sanitize.h"

Stephan Bosch
committed
#include "sieve-code.h"
#include "sieve-message.h"
#include "sieve-comparators.h"
#include "sieve-match-types.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"

Stephan Bosch
committed
#include "sieve-dump.h"

Stephan Bosch
committed
#include "sieve-match.h"
*
* Syntax:
* header [COMPARATOR] [MATCH-TYPE]
* <header-names: string-list> <key-list: string-list>
*/
static bool tst_header_registered

Stephan Bosch
committed
(struct sieve_validator *valdtr, const struct sieve_extension *ext,
struct sieve_command_registration *cmd_reg);
static bool tst_header_validate

Stephan Bosch
committed
(struct sieve_validator *valdtr, struct sieve_command *tst);
static bool tst_header_generate

Stephan Bosch
committed
(const struct sieve_codegen_env *cgenv, struct sieve_command *tst);

Stephan Bosch
committed
const struct sieve_command_def tst_header = {
"header",

Stephan Bosch
committed
SCT_TEST,
2, 0, FALSE, FALSE,
tst_header_registered,
NULL,
tst_header_validate,
tst_header_generate,
NULL
};
/*
* Header operation
*/

Stephan Bosch
committed
static bool tst_header_operation_dump

Stephan Bosch
committed
(const struct sieve_dumptime_env *denv, sieve_size_t *address);

Stephan Bosch
committed
static int tst_header_operation_execute

Stephan Bosch
committed
(const struct sieve_runtime_env *renv, sieve_size_t *address);

Stephan Bosch
committed

Stephan Bosch
committed
const struct sieve_operation_def tst_header_operation = {

Stephan Bosch
committed
"HEADER",
NULL,
SIEVE_OPERATION_HEADER,
tst_header_operation_dump,
tst_header_operation_execute

Stephan Bosch
committed
};
/*
* Test registration
*/
static bool tst_header_registered

Stephan Bosch
committed
(struct sieve_validator *valdtr, const struct sieve_extension *ext ATTR_UNUSED,
struct sieve_command_registration *cmd_reg)
{
/* The order of these is not significant */
sieve_comparators_link_tag(valdtr, cmd_reg, SIEVE_MATCH_OPT_COMPARATOR);
sieve_match_types_link_tags(valdtr, cmd_reg, SIEVE_MATCH_OPT_MATCH_TYPE);
/*
* Validation
*/
static bool tst_header_validate

Stephan Bosch
committed
(struct sieve_validator *valdtr, struct sieve_command *tst)
struct sieve_ast_argument *arg = tst->first_positional;

Stephan Bosch
committed
struct sieve_comparator cmp_default =
SIEVE_COMPARATOR_DEFAULT(i_ascii_casemap_comparator);
struct sieve_match_type mcht_default =
SIEVE_MATCH_TYPE_DEFAULT(is_match_type);

Stephan Bosch
committed
if ( !sieve_validate_positional_argument
(valdtr, tst, arg, "header names", 1, SAAT_STRING_LIST) ) {

Stephan Bosch
committed
return FALSE;

Stephan Bosch
committed
if ( !sieve_validator_argument_activate(valdtr, tst, arg, FALSE) )
return FALSE;
if ( !sieve_command_verify_headers_argument(valdtr, arg) )

Stephan Bosch
committed
return FALSE;
arg = sieve_ast_argument_next(arg);

Stephan Bosch
committed
if ( !sieve_validate_positional_argument
(valdtr, tst, arg, "key list", 2, SAAT_STRING_LIST) ) {

Stephan Bosch
committed
return FALSE;

Stephan Bosch
committed
if ( !sieve_validator_argument_activate(valdtr, tst, arg, FALSE) )

Stephan Bosch
committed
return FALSE;
/* Validate the key argument to a specified match type */

Stephan Bosch
committed
(valdtr, tst, arg, &mcht_default, &cmp_default);
/*
* Code generation
*/
static bool tst_header_generate

Stephan Bosch
committed
(const struct sieve_codegen_env *cgenv, struct sieve_command *tst)

Stephan Bosch
committed
sieve_operation_emit(cgenv->sblock, NULL, &tst_header_operation);
/* Generate arguments */

Stephan Bosch
committed
return sieve_generate_arguments(cgenv, tst, NULL);
/*
* Code dump
*/
static bool tst_header_operation_dump

Stephan Bosch
committed
(const struct sieve_dumptime_env *denv, sieve_size_t *address)

Stephan Bosch
committed
sieve_code_dumpf(denv, "HEADER");
sieve_code_descend(denv);
/* Optional operands */
if ( sieve_match_opr_optional_dump(denv, address, NULL) != 0 )

Stephan Bosch
committed
return FALSE;

Stephan Bosch
committed
return
sieve_opr_stringlist_dump(denv, address, "header names") &&
sieve_opr_stringlist_dump(denv, address, "key list");
/*
* Code execution
*/

Stephan Bosch
committed
static int tst_header_operation_execute

Stephan Bosch
committed
(const struct sieve_runtime_env *renv, sieve_size_t *address)

Stephan Bosch
committed
struct sieve_comparator cmp =
SIEVE_COMPARATOR_DEFAULT(i_ascii_casemap_comparator);
struct sieve_match_type mcht =
SIEVE_MATCH_TYPE_DEFAULT(is_match_type);
struct sieve_stringlist *hdr_list, *key_list, *value_list;
/*
* Read operands
*/

Stephan Bosch
committed
/* Handle match-type and comparator operands */
if ( sieve_match_opr_optional_read(renv, address, NULL, &ret, &cmp, &mcht)
< 0 )
return ret;
if ( (ret=sieve_opr_stringlist_read(renv, address, "header-list", &hdr_list))
<= 0 )
return ret;
if ( (ret=sieve_opr_stringlist_read(renv, address, "key-list", &key_list))
<= 0 )
return ret;

Stephan Bosch
committed
/*
* Perform test
*/
sieve_runtime_trace(renv, SIEVE_TRLVL_TESTS, "header test");
/* Create header stringlist */
value_list = sieve_message_header_stringlist_create(renv, hdr_list);
/* Perform match */
if ( (match=sieve_match(renv, &mcht, &cmp, value_list, key_list, &ret)) < 0 )
return ret;

Stephan Bosch
committed
/* Set test result for subsequent conditional jump */
sieve_interpreter_set_test_result(renv->interp, match > 0);
return SIEVE_EXEC_OK;