/usr/include/dovecot/sieve/sieve-commands.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | /* Copyright (c) 2002-2013 Pigeonhole authors, see the included COPYING file
*/
#ifndef __SIEVE_COMMANDS_H
#define __SIEVE_COMMANDS_H
#include "lib.h"
#include "sieve-common.h"
#include "sieve-ast.h"
/*
* Argument definition
*/
struct sieve_argument_def {
const char *identifier;
bool (*is_instance_of)
(struct sieve_validator *valdtr, struct sieve_command *cmd,
const struct sieve_extension *ext, const char *identifier, void **data);
bool (*validate)
(struct sieve_validator *valdtr, struct sieve_ast_argument **arg,
struct sieve_command *cmd);
bool (*validate_context)
(struct sieve_validator *valdtr, struct sieve_ast_argument *arg,
struct sieve_command *cmd);
bool (*validate_persistent)
(struct sieve_validator *valdtr, struct sieve_command *cmd,
const struct sieve_extension *ext);
bool (*generate)
(const struct sieve_codegen_env *cgenv, struct sieve_ast_argument *arg,
struct sieve_command *cmd);
};
/*
* Argument instance
*/
struct sieve_argument {
const struct sieve_argument_def *def;
const struct sieve_extension *ext;
int id_code;
/* Context data */
void *data;
};
#define sieve_argument_is(ast_arg, definition) \
( (ast_arg)->argument->def == &(definition) )
#define sieve_argument_ext(ast_arg) \
( (ast_arg)->argument->ext )
#define sieve_argument_identifier(ast_arg) \
( (ast_arg)->argument->def->identifier )
/* Utility macros */
#define sieve_argument_is_string_literal(arg) \
( (arg)->argument->def == &string_argument )
/* Error handling */
#define sieve_argument_validate_error(validator, arg_node, ...) \
sieve_validator_error(validator, (arg_node)->source_line, __VA_ARGS__)
#define sieve_argument_validate_warning(validator, arg_node, ...) \
sieve_validator_warning(validator, (arg_node)->source_line, __VA_ARGS__)
/* Argument API */
struct sieve_argument *sieve_argument_create
(struct sieve_ast *ast, const struct sieve_argument_def *def,
const struct sieve_extension *ext, int id_code);
/* Literal arguments */
extern const struct sieve_argument_def number_argument;
extern const struct sieve_argument_def string_argument;
extern const struct sieve_argument_def string_list_argument;
/* Catenated string argument */
bool sieve_arg_catenated_string_generate
(const struct sieve_codegen_env *cgenv, struct sieve_ast_argument *arg,
struct sieve_command *context);
struct sieve_arg_catenated_string;
struct sieve_arg_catenated_string *sieve_arg_catenated_string_create
(struct sieve_ast_argument *orig_arg);
void sieve_arg_catenated_string_add_element
(struct sieve_arg_catenated_string *strdata,
struct sieve_ast_argument *element);
/*
* Command definition
*/
enum sieve_command_type {
SCT_NONE,
SCT_COMMAND,
SCT_TEST,
SCT_HYBRID
};
struct sieve_command_def {
const char *identifier;
enum sieve_command_type type;
/* High-level command syntax */
int positional_arguments;
int subtests;
bool block_allowed;
bool block_required;
bool (*registered)
(struct sieve_validator *valdtr, const struct sieve_extension *ext,
struct sieve_command_registration *cmd_reg);
bool (*pre_validate)
(struct sieve_validator *valdtr, struct sieve_command *cmd);
bool (*validate)
(struct sieve_validator *valdtr, struct sieve_command *cmd);
bool (*validate_const)
(struct sieve_validator *valdtr, struct sieve_command *cmd,
int *const_current, int const_next);
bool (*generate)
(const struct sieve_codegen_env *cgenv, struct sieve_command *cmd);
bool (*control_generate)
(const struct sieve_codegen_env *cgenv, struct sieve_command *cmd,
struct sieve_jumplist *jumps, bool jump_true);
};
/*
* Command instance
*/
struct sieve_command {
const struct sieve_command_def *def;
const struct sieve_extension *ext;
/* The registration of this command in the validator (sieve-validator.h) */
struct sieve_command_registration *reg;
/* The ast node of this command */
struct sieve_ast_node *ast_node;
/* First positional argument, found during argument validation */
struct sieve_ast_argument *first_positional;
/* The child ast node that unconditionally exits this command's block */
struct sieve_command *block_exit_command;
/* Context data*/
void *data;
};
#define sieve_command_is(cmd, definition) \
( (cmd)->def == &(definition) )
#define sieve_command_identifier(cmd) \
( (cmd)->def->identifier )
#define sieve_command_type_name(cmd) \
( sieve_command_def_type_name((cmd)->def) )
#define sieve_commands_equal(cmd1, cmd2) \
( (cmd1) != NULL && (cmd2) != NULL && (cmd1)->def == (cmd2)->def )
/* Context API */
struct sieve_command *sieve_command_create
(struct sieve_ast_node *cmd_node, const struct sieve_extension *ext,
const struct sieve_command_def *cmd_def,
struct sieve_command_registration *cmd_reg);
const char *sieve_command_def_type_name
(const struct sieve_command_def *cmd_def);
struct sieve_command *sieve_command_prev
(struct sieve_command *cmd);
struct sieve_command *sieve_command_parent
(struct sieve_command *cmd);
struct sieve_ast_argument *sieve_command_add_dynamic_tag
(struct sieve_command *cmd, const struct sieve_extension *ext,
const struct sieve_argument_def *tag, int id_code);
struct sieve_ast_argument *sieve_command_find_argument
(struct sieve_command *cmd, const struct sieve_argument_def *argument);
void sieve_command_exit_block_unconditionally
(struct sieve_command *cmd);
bool sieve_command_block_exits_unconditionally
(struct sieve_command *cmd);
/* Error handling */
#define sieve_command_validate_error(validator, context, ...) \
sieve_validator_error(validator, (context)->ast_node->source_line, __VA_ARGS__)
#define sieve_command_validate_warning(validator, context, ...) \
sieve_validator_warning(validator, (context)->ast_node->source_line, __VA_ARGS__)
#define sieve_command_generate_error(gentr, context, ...) \
sieve_generator_error(gentr, (context)->ast_node->source_line, __VA_ARGS__)
#define sieve_command_generate_warning(gentr, context, ...) \
sieve_generator_warning(gentr, (context)->ast_node->source_line, __VA_ARGS__)
/* Utility macros */
#define sieve_command_pool(context) \
sieve_ast_node_pool((context)->ast_node)
#define sieve_command_source_line(context) \
(context)->ast_node->source_line
#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 )
#define sieve_command_is_first(context) \
( sieve_ast_node_prev((context)->ast_node) == NULL )
/*
* Core commands
*/
extern const struct sieve_command_def cmd_require;
extern const struct sieve_command_def cmd_stop;
extern const struct sieve_command_def cmd_if;
extern const struct sieve_command_def cmd_elsif;
extern const struct sieve_command_def cmd_else;
extern const struct sieve_command_def cmd_redirect;
extern const struct sieve_command_def cmd_keep;
extern const struct sieve_command_def cmd_discard;
extern const struct sieve_command_def *sieve_core_commands[];
extern const unsigned int sieve_core_commands_count;
/*
* Core tests
*/
extern const struct sieve_command_def tst_true;
extern const struct sieve_command_def tst_false;
extern const struct sieve_command_def tst_not;
extern const struct sieve_command_def tst_anyof;
extern const struct sieve_command_def tst_allof;
extern const struct sieve_command_def tst_address;
extern const struct sieve_command_def tst_header;
extern const struct sieve_command_def tst_exists;
extern const struct sieve_command_def tst_size;
extern const struct sieve_command_def *sieve_core_tests[];
extern const unsigned int sieve_core_tests_count;
/*
* Command utility functions
*/
bool sieve_command_verify_headers_argument
(struct sieve_validator *valdtr, struct sieve_ast_argument *headers);
#endif /* __SIEVE_COMMANDS_H */
|