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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "lib.h"
#include "str-sanitize.h"
#include "sieve-common.h"
#include "sieve-script.h"
#include "sieve-storage.h"
#include "sieve-ast.h"
#include "sieve-code.h"
#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-validator.h"
#include "sieve-binary.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"
#include "sieve-dump.h"
#include "ext-include-common.h"
#include "ext-include-binary.h"
/*
* Include command
*
* Syntax:
* include [LOCATION] [":once"] [":optional"] <value: string>
*
* [LOCATION]:
* ":personal" / ":global"
*/
static bool cmd_include_registered
(struct sieve_validator *valdtr, const struct sieve_extension *ext,
struct sieve_command_registration *cmd_reg);
static bool cmd_include_pre_validate
(struct sieve_validator *valdtr ATTR_UNUSED, struct sieve_command *cmd);
static bool cmd_include_validate
(struct sieve_validator *valdtr, struct sieve_command *cmd);
static bool cmd_include_generate
(const struct sieve_codegen_env *cgenv, struct sieve_command *ctx);
const struct sieve_command_def cmd_include = {
.identifier = "include",
.type = SCT_COMMAND,
.positional_args = 1,
.subtests = 0,
.block_allowed = FALSE,
.block_required = FALSE,
.registered = cmd_include_registered,
.pre_validate = cmd_include_pre_validate,
.validate = cmd_include_validate,
.generate = cmd_include_generate
};
/*
* Include operation
*/
static bool opc_include_dump
(const struct sieve_dumptime_env *denv, sieve_size_t *address);
static int opc_include_execute
(const struct sieve_runtime_env *renv, sieve_size_t *address);
const struct sieve_operation_def include_operation = {
.mnemonic = "include",
.ext_def = &include_extension,
.code = EXT_INCLUDE_OPERATION_INCLUDE,
.dump = opc_include_dump,
.execute = opc_include_execute
};
/*
* Context structures
*/
struct cmd_include_context_data {
enum ext_include_script_location location;
struct sieve_script *script;
enum ext_include_flags flags;
bool location_assigned:1;
};
/*
* Tagged arguments
*/
static bool cmd_include_validate_location_tag
(struct sieve_validator *valdtr, struct sieve_ast_argument **arg,
struct sieve_command *cmd);
static const struct sieve_argument_def include_personal_tag = {
.identifier = "personal",
.validate = cmd_include_validate_location_tag
};
static const struct sieve_argument_def include_global_tag = {
.identifier = "global",
.validate = cmd_include_validate_location_tag
};
static bool cmd_include_validate_boolean_tag
(struct sieve_validator *valdtr, struct sieve_ast_argument **arg,
struct sieve_command *cmd);
static const struct sieve_argument_def include_once_tag = {
.identifier = "once",
.validate = cmd_include_validate_boolean_tag
};
static const struct sieve_argument_def include_optional_tag = {
.identifier = "optional",
.validate = cmd_include_validate_boolean_tag
};
/*
* Tag validation
*/
static bool cmd_include_validate_location_tag
(struct sieve_validator *valdtr, struct sieve_ast_argument **arg,
struct sieve_command *cmd)
{
struct cmd_include_context_data *ctx_data =
(struct cmd_include_context_data *) cmd->data;
if ( ctx_data->location_assigned) {
sieve_argument_validate_error(valdtr, *arg,
"include: cannot use location tags ':personal' and ':global' "
"multiple times");
return FALSE;
}
if ( sieve_argument_is(*arg, include_personal_tag) )
ctx_data->location = EXT_INCLUDE_LOCATION_PERSONAL;
else if ( sieve_argument_is(*arg, include_global_tag) )
ctx_data->location = EXT_INCLUDE_LOCATION_GLOBAL;
else
return FALSE;
ctx_data->location_assigned = TRUE;
/* Delete this tag (for now) */
*arg = sieve_ast_arguments_detach(*arg, 1);
return TRUE;
}
static bool cmd_include_validate_boolean_tag
(struct sieve_validator *valdtr ATTR_UNUSED, struct sieve_ast_argument **arg,
struct sieve_command *cmd)
{
struct cmd_include_context_data *ctx_data =
(struct cmd_include_context_data *) cmd->data;
if ( sieve_argument_is(*arg, include_once_tag) )
ctx_data->flags |= EXT_INCLUDE_FLAG_ONCE;
else
ctx_data->flags |= EXT_INCLUDE_FLAG_OPTIONAL;
/* Delete this tag (for now) */
*arg = sieve_ast_arguments_detach(*arg, 1);
return TRUE;
}
/*
* Command registration
*/
static bool cmd_include_registered
(struct sieve_validator *valdtr, const struct sieve_extension *ext,
struct sieve_command_registration *cmd_reg)
{
sieve_validator_register_tag(valdtr, cmd_reg, ext, &include_personal_tag, 0);
sieve_validator_register_tag(valdtr, cmd_reg, ext, &include_global_tag, 0);
sieve_validator_register_tag(valdtr, cmd_reg, ext, &include_once_tag, 0);
sieve_validator_register_tag(valdtr, cmd_reg, ext, &include_optional_tag, 0);
return TRUE;
}
/*
* Command validation
*/
static bool cmd_include_pre_validate
(struct sieve_validator *valdtr ATTR_UNUSED, struct sieve_command *cmd)
{
struct cmd_include_context_data *ctx_data;
/* Assign context */
ctx_data = p_new(sieve_command_pool(cmd), struct cmd_include_context_data, 1);
ctx_data->location = EXT_INCLUDE_LOCATION_PERSONAL;
cmd->data = ctx_data;
return TRUE;
}
static bool cmd_include_validate
(struct sieve_validator *valdtr, struct sieve_command *cmd)
{
const struct sieve_extension *this_ext = cmd->ext;
struct sieve_ast_argument *arg = cmd->first_positional;
struct cmd_include_context_data *ctx_data =
(struct cmd_include_context_data *) cmd->data;
struct sieve_storage *storage;
struct sieve_script *script;
const char *script_name;
enum sieve_error error = SIEVE_ERROR_NONE;
int ret;
/* Check argument */
if ( !sieve_validate_positional_argument
(valdtr, cmd, arg, "value", 1, SAAT_STRING) ) {
return FALSE;
}
if ( !sieve_validator_argument_activate(valdtr, cmd, arg, FALSE) )
return FALSE;
/*
* Variables are not allowed.
*/
if ( !sieve_argument_is_string_literal(arg) ) {
sieve_argument_validate_error(valdtr, arg,
"the include command requires a constant string for its value argument");
return FALSE;
}
/* Find the script */
script_name = sieve_ast_argument_strc(arg);
if ( !sieve_script_name_is_valid(script_name) ) {
sieve_argument_validate_error(valdtr, arg,
"include: invalid script name '%s'",
str_sanitize(script_name, 80));
return FALSE;
}
storage = ext_include_get_script_storage
(this_ext, ctx_data->location, script_name, &error);
if ( storage == NULL ) {
// FIXME: handle ':optional' in this case
if (error == SIEVE_ERROR_NOT_FOUND) {
sieve_argument_validate_error(valdtr, arg,
"include: %s location for included script `%s' is unavailable "
"(contact system administrator for more information)",
ext_include_script_location_name(ctx_data->location),
str_sanitize(script_name, 80));
} else {
sieve_argument_validate_error(valdtr, arg,
"include: failed to access %s location for included script `%s' "
"(contact system administrator for more information)",
ext_include_script_location_name(ctx_data->location),
str_sanitize(script_name, 80));
}
return FALSE;
}
/* Create script object */
script = sieve_storage_get_script
(storage, script_name, &error);
if ( script == NULL )
return FALSE;
ret = sieve_script_open(script, &error);
if ( ret < 0 ) {
if ( error != SIEVE_ERROR_NOT_FOUND ) {
sieve_argument_validate_error(valdtr, arg,
"failed to access included %s script '%s': %s",
ext_include_script_location_name(ctx_data->location),
str_sanitize(script_name, 80),
sieve_script_get_last_error_lcase(script));
sieve_script_unref(&script);
return FALSE;
/* Not found */
} else {
enum sieve_compile_flags cpflags =
sieve_validator_compile_flags(valdtr);
if ( (ctx_data->flags & EXT_INCLUDE_FLAG_OPTIONAL) != 0 ) {
/* :optional */
} else if ( (cpflags & SIEVE_COMPILE_FLAG_UPLOADED) != 0 ) {
/* Script is being uploaded */
sieve_argument_validate_warning(valdtr, arg,
"included %s script '%s' does not exist (ignored during upload)",
ext_include_script_location_name(ctx_data->location),
str_sanitize(script_name, 80));
ctx_data->flags |= EXT_INCLUDE_FLAG_MISSING_AT_UPLOAD;
} else {
/* Should have existed */
sieve_argument_validate_error(valdtr, arg,
"included %s script '%s' does not exist",
ext_include_script_location_name(ctx_data->location),
str_sanitize(script_name, 80));
sieve_script_unref(&script);
return FALSE;
}
}
}
ext_include_ast_link_included_script(cmd->ext, cmd->ast_node->ast, script);
ctx_data->script = script;
(void)sieve_ast_arguments_detach(arg, 1);
return TRUE;
}
/*
* Code Generation
*/
static bool cmd_include_generate
(const struct sieve_codegen_env *cgenv, struct sieve_command *cmd)
{
struct cmd_include_context_data *ctx_data =
(struct cmd_include_context_data *) cmd->data;
const struct ext_include_script_info *included;
int ret;
/* Compile (if necessary) and include the script into the binary.
* This yields the id of the binary block containing the compiled byte code.
*/
if ( (ret=ext_include_generate_include
(cgenv, cmd, ctx_data->location, ctx_data->flags, ctx_data->script,
&included)) < 0 )
return FALSE;
if ( ret > 0 ) {
(void)sieve_operation_emit(cgenv->sblock, cmd->ext, &include_operation);
(void)sieve_binary_emit_unsigned(cgenv->sblock, included->id);
(void)sieve_binary_emit_byte(cgenv->sblock, ctx_data->flags);
}
return TRUE;
}
/*
* Code dump
*/
static bool opc_include_dump
(const struct sieve_dumptime_env *denv, sieve_size_t *address)
{
const struct ext_include_script_info *included;
struct ext_include_binary_context *binctx;
unsigned int include_id, flags;
sieve_code_dumpf(denv, "INCLUDE:");
sieve_code_mark(denv);
if ( !sieve_binary_read_unsigned(denv->sblock, address, &include_id) )
return FALSE;
if ( !sieve_binary_read_byte(denv->sblock, address, &flags) )
return FALSE;
binctx = ext_include_binary_get_context(denv->oprtn->ext, denv->sbin);
included = ext_include_binary_script_get_included(binctx, include_id);
if ( included == NULL )
return FALSE;
sieve_code_descend(denv);
sieve_code_dumpf(denv, "script: `%s' from %s %s%s[ID: %d, BLOCK: %d]",
sieve_script_name(included->script), sieve_script_location(included->script),
((flags & EXT_INCLUDE_FLAG_ONCE) != 0 ? "(once) " : ""),
((flags & EXT_INCLUDE_FLAG_OPTIONAL) != 0 ? "(optional) " : ""),
include_id, sieve_binary_block_get_id(included->block));
return TRUE;
}
/*
* Execution
*/
static int opc_include_execute
(const struct sieve_runtime_env *renv, sieve_size_t *address)
{
unsigned int include_id, flags;
if ( !sieve_binary_read_unsigned(renv->sblock, address, &include_id) ) {
sieve_runtime_trace_error(renv, "invalid include-id operand");
return SIEVE_EXEC_BIN_CORRUPT;
}
if ( !sieve_binary_read_unsigned(renv->sblock, address, &flags) ) {
sieve_runtime_trace_error(renv, "invalid flags operand");
return SIEVE_EXEC_BIN_CORRUPT;
}
return ext_include_execute_include
(renv, include_id, (enum ext_include_flags)flags);
}
|