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
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "lib.h"
#include "str-sanitize.h"
#include "mail-storage.h"
#include "mail-namespace.h"
#include "sieve-common.h"
#include "sieve-actions.h"
#include "sieve-extensions.h"
#include "sieve-commands.h"
#include "sieve-stringlist.h"
#include "sieve-code.h"
#include "sieve-validator.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"
#include "sieve-dump.h"
#include "ext-mailbox-common.h"
/*
* Mailboxexists command
*
* Syntax:
* mailboxexists <mailbox-names: string-list>
*/
static bool
tst_mailboxexists_validate(struct sieve_validator *valdtr,
struct sieve_command *tst);
static bool
tst_mailboxexists_generate(const struct sieve_codegen_env *cgenv,
struct sieve_command *ctx);
const struct sieve_command_def mailboxexists_test = {
.identifier = "mailboxexists",
.type = SCT_TEST,
.positional_args = 1,
.subtests = 0,
.block_allowed = FALSE,
.block_required = FALSE,
.validate = tst_mailboxexists_validate,
.generate = tst_mailboxexists_generate,
};
/*
* Mailboxexists operation
*/
static bool
tst_mailboxexists_operation_dump(const struct sieve_dumptime_env *denv,
sieve_size_t *address);
static int
tst_mailboxexists_operation_execute(const struct sieve_runtime_env *renv,
sieve_size_t *address);
const struct sieve_operation_def mailboxexists_operation = {
.mnemonic = "MAILBOXEXISTS",
.ext_def = &mailbox_extension,
.dump = tst_mailboxexists_operation_dump,
.execute = tst_mailboxexists_operation_execute,
};
/*
* Test validation
*/
struct _validate_context {
struct sieve_validator *valdtr;
struct sieve_command *tst;
};
static int
tst_mailboxexists_mailbox_validate(void *context,
struct sieve_ast_argument *arg)
{
struct _validate_context *valctx =
(struct _validate_context *)context;
if (sieve_argument_is_string_literal(arg)) {
const char *mailbox = sieve_ast_argument_strc(arg), *error;
if (!sieve_mailbox_check_name(mailbox, &error)) {
sieve_argument_validate_warning(
valctx->valdtr, arg, "%s test: "
"invalid mailbox name `%s' specified: %s",
sieve_command_identifier(valctx->tst),
str_sanitize(mailbox, 256), error);
}
}
return 1;
}
static bool
tst_mailboxexists_validate(struct sieve_validator *valdtr,
struct sieve_command *tst)
{
struct sieve_ast_argument *arg = tst->first_positional;
struct sieve_ast_argument *aarg;
struct _validate_context valctx;
if (!sieve_validate_positional_argument(
valdtr, tst, arg, "mailbox-names", 1, SAAT_STRING_LIST))
return FALSE;
if (!sieve_validator_argument_activate(valdtr, tst, arg, FALSE))
return FALSE;
aarg = arg;
i_zero(&valctx);
valctx.valdtr = valdtr;
valctx.tst = tst;
return (sieve_ast_stringlist_map(
&aarg, (void*)&valctx,
tst_mailboxexists_mailbox_validate) >= 0);
}
/*
* Test generation
*/
static bool
tst_mailboxexists_generate(const struct sieve_codegen_env *cgenv,
struct sieve_command *tst)
{
sieve_operation_emit(cgenv->sblock, tst->ext, &mailboxexists_operation);
/* Generate arguments */
return sieve_generate_arguments(cgenv, tst, NULL);
}
/*
* Code dump
*/
static bool
tst_mailboxexists_operation_dump(const struct sieve_dumptime_env *denv,
sieve_size_t *address)
{
sieve_code_dumpf(denv, "MAILBOXEXISTS");
sieve_code_descend(denv);
return sieve_opr_stringlist_dump(denv, address, "mailbox-names");
}
/*
* Code execution
*/
static int
tst_mailboxexists_test_mailbox(const struct sieve_runtime_env *renv,
const char *mailbox, bool trace,
bool *all_exist_r)
{
const struct sieve_execute_env *eenv = renv->exec_env;
struct mailbox *box;
const char *error;
/* Check validity of mailbox name */
if (!sieve_mailbox_check_name(mailbox, &error)) {
sieve_runtime_warning(
renv, NULL, "mailboxexists test: "
"invalid mailbox name `%s' specified: %s",
str_sanitize(mailbox, 256), error);
*all_exist_r = FALSE;
return SIEVE_EXEC_OK;
}
/* Open the box */
box = mailbox_alloc_for_user(eenv->scriptenv->user,
mailbox,
MAILBOX_FLAG_POST_SESSION);
if (mailbox_open(box) < 0) {
if (trace) {
sieve_runtime_trace(
renv, 0,
"mailbox `%s' cannot be opened",
str_sanitize(mailbox, 80));
}
mailbox_free(&box);
*all_exist_r = FALSE;
return SIEVE_EXEC_OK;
}
/* Also fail when it is readonly */
if (mailbox_is_readonly(box)) {
if (trace) {
sieve_runtime_trace(
renv, 0,
"mailbox `%s' is read-only",
str_sanitize(mailbox, 80));
}
mailbox_free(&box);
*all_exist_r = FALSE;
return SIEVE_EXEC_OK;
}
/* FIXME: check acl for 'p' or 'i' ACL permissions as
required by RFC */
if (trace) {
sieve_runtime_trace(
renv, 0, "mailbox `%s' exists",
str_sanitize(mailbox, 80));
}
/* Close mailbox */
mailbox_free(&box);
return SIEVE_EXEC_OK;
}
static int
tst_mailboxexists_operation_execute(const struct sieve_runtime_env *renv,
sieve_size_t *address)
{
const struct sieve_execute_env *eenv = renv->exec_env;
struct sieve_stringlist *mailbox_names;
string_t *mailbox_item;
bool trace = FALSE;
bool all_exist = TRUE;
int ret;
/*
* Read operands
*/
/* Read notify uris */
ret = sieve_opr_stringlist_read(renv, address, "mailbox-names",
&mailbox_names);
if (ret <= 0)
return ret;
/*
* Perform operation
*/
if (sieve_runtime_trace_active(renv, SIEVE_TRLVL_TESTS)) {
sieve_runtime_trace(renv, 0, "mailboxexists test");
sieve_runtime_trace_descend(renv);
trace = sieve_runtime_trace_active(renv, SIEVE_TRLVL_MATCHING);
}
if (eenv->scriptenv->user == NULL) {
sieve_runtime_trace(renv, 0, "no mail user; yield true");
sieve_interpreter_set_test_result(renv->interp, TRUE);
return SIEVE_EXEC_OK;
}
mailbox_item = NULL;
while (all_exist &&
(ret = sieve_stringlist_next_item(mailbox_names,
&mailbox_item)) > 0) {
const char *mailbox = str_c(mailbox_item);
ret = tst_mailboxexists_test_mailbox(renv, mailbox,
trace, &all_exist);
if (ret <= 0)
return ret;
}
if (ret < 0) {
sieve_runtime_trace_error(
renv, "invalid mailbox name item");
return SIEVE_EXEC_BIN_CORRUPT;
}
if (trace) {
if (all_exist) {
sieve_runtime_trace(renv, 0,
"all mailboxes are available");
} else {
sieve_runtime_trace(renv, 0,
"some mailboxes are unavailable");
}
}
sieve_interpreter_set_test_result(renv->interp, all_exist);
return SIEVE_EXEC_OK;
}
|