forked from dovecot/imaptest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckpoint.c
428 lines (376 loc) · 12 KB
/
checkpoint.c
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/* Copyright (c) 2007-2018 ImapTest authors, see the included COPYING file */
#include "lib.h"
#include "str.h"
#include "array.h"
#include "mail-types.h"
#include "settings.h"
#include "mailbox.h"
#include "imap-client.h"
#include "checkpoint.h"
#include <stdlib.h>
struct mailbox_checkpoint_context {
unsigned int clients_left;
bool check_sent:1;
bool thread_sent:1;
};
struct checkpoint_context {
struct message_metadata_dynamic *messages;
ARRAY(const char *) all_keywords;
ARRAY(unsigned int) cur_keywords_map;
uint32_t *uids;
unsigned int *flag_counts;
unsigned int count;
const char *thread_reply;
bool first:1;
bool errors:1;
};
static void
keyword_map_update(struct checkpoint_context *ctx, struct imap_client *client)
{
const struct mailbox_keyword *kw_my;
const char *const *kw_all, *name;
unsigned int i, j, my_count, all_count;
array_clear(&ctx->cur_keywords_map);
kw_my = array_get(&client->view->keywords, &my_count);
kw_all = array_get(&ctx->all_keywords, &all_count);
for (i = 0; i < my_count; i++) {
for (j = 0; j < all_count; j++) {
if (strcasecmp(kw_all[j], kw_my[i].name->name) == 0)
break;
}
array_append(&ctx->cur_keywords_map, &j, 1);
if (j == all_count) {
name = kw_my[i].name->name;
if (!ctx->first) {
i_error("Checkpoint: client %u: "
"Missing keyword %s",
client->client.idx, name);
}
array_append(&ctx->all_keywords, &name, 1);
kw_all = array_get(&ctx->all_keywords, &all_count);
}
}
}
static void keywords_remap(struct checkpoint_context *ctx,
const uint8_t *src, uint8_t *dest,
unsigned int dest_size)
{
const unsigned int *kw_map;
unsigned int i, count;
memset(dest, 0, dest_size);
kw_map = array_get(&ctx->cur_keywords_map, &count);
for (i = 0; i < count; i++) {
if ((src[i/8] & (1 << (i%8))) != 0)
dest[kw_map[i]/8] |= 1 << (kw_map[i]%8);
}
}
static const char *
checkpoint_keywords_to_str(struct checkpoint_context *ctx,
const uint8_t *bitmask)
{
const char *const *keywords;
string_t *str;
unsigned int i, count;
keywords = array_get(&ctx->all_keywords, &count);
if (count == 0)
return "";
str = t_str_new(128);
for (i = 0; i < count; i++) {
if ((bitmask[i/8] & (1 << (i%8))) != 0) {
if (str_len(str) > 0)
str_append_c(str, ' ');
str_append(str, keywords[i]);
}
}
return str_c(str);
}
static void
checkpoint_update(struct checkpoint_context *ctx, struct imap_client *client)
{
struct mailbox_view *view = client->view;
const struct message_metadata_dynamic *msgs;
const uint32_t *uids;
uint8_t *keywords_remapped;
enum mail_flags this_flags, other_flags;
unsigned int i, count, dest_keywords_size;
keyword_map_update(ctx, client);
uids = array_get(&view->uidmap, &count);
if (count != ctx->count) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: "
"Mailbox has only %u of %u messages",
client->client.global_id, count, ctx->count);
}
if (!view->storage->checkpoint->thread_sent) {
/* no THREAD checking */
} else if (client->view->last_thread_reply == NULL) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: Missing THREAD reply",
client->client.global_id);
} else if (ctx->thread_reply == NULL)
ctx->thread_reply = client->view->last_thread_reply;
else if (strcmp(client->view->last_thread_reply,
ctx->thread_reply) != 0) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: THREAD reply differs: %s != %s",
client->client.global_id, client->view->last_thread_reply,
ctx->thread_reply);
}
msgs = array_get(&view->messages, &count);
dest_keywords_size = (array_count(&ctx->all_keywords) + 7) / 8;
keywords_remapped = dest_keywords_size == 0 ? NULL :
t_malloc_no0(dest_keywords_size);
for (i = 0; i < count; i++) {
if (uids[i] == 0) {
/* we don't have this message's metadata */
continue;
}
if (ctx->uids[i] == 0)
ctx->uids[i] = uids[i];
if (uids[i] != ctx->uids[i]) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: "
"Message seq=%u UID %u != %u",
client->client.global_id, i + 1,
uids[i], ctx->uids[i]);
break;
}
if (msgs[i].modseq != 0) {
/* modseq set */
if (ctx->messages[i].modseq == 0)
ctx->messages[i].modseq = msgs[i].modseq;
else if (ctx->messages[i].modseq != msgs[i].modseq) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: "
"Message seq=%u UID=%u "
"modseqs differ: %s vs %s",
client->client.global_id, i + 1, uids[i],
dec2str(msgs[i].modseq),
dec2str(ctx->messages[i].modseq));
}
}
if ((msgs[i].mail_flags & MAIL_FLAGS_SET) == 0)
continue;
keywords_remap(ctx, msgs[i].keyword_bitmask,
keywords_remapped, dest_keywords_size);
ctx->flag_counts[i]++;
if ((ctx->messages[i].mail_flags & MAIL_FLAGS_SET) == 0) {
/* first one to set flags */
ctx->messages[i].mail_flags = msgs[i].mail_flags;
ctx->messages[i].keyword_bitmask =
dest_keywords_size == 0 ? NULL :
i_malloc(dest_keywords_size);
if (dest_keywords_size > 0) {
memcpy(ctx->messages[i].keyword_bitmask,
keywords_remapped, dest_keywords_size);
}
continue;
}
if ((msgs[i].mail_flags & MAIL_RECENT) != 0 &&
!view->storage->dont_track_recent) {
if ((ctx->messages[i].mail_flags & MAIL_RECENT) == 0)
ctx->messages[i].mail_flags |= MAIL_RECENT;
else {
i_error("Checkpoint: client %u: "
"Message seq=%u UID=%u "
"has \\Recent flag in multiple sessions",
client->client.global_id, i + 1, uids[i]);
view->storage->dont_track_recent = TRUE;
}
}
this_flags = msgs[i].mail_flags & ~MAIL_RECENT;
other_flags = ctx->messages[i].mail_flags & ~MAIL_RECENT;
if (this_flags != other_flags) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: Message seq=%u UID=%u "
"flags differ: (%s) vs (%s)",
client->client.global_id, i + 1, uids[i],
mail_flags_to_str(this_flags),
mail_flags_to_str(other_flags));
}
if (memcmp(keywords_remapped, ctx->messages[i].keyword_bitmask,
dest_keywords_size) != 0) {
ctx->errors = TRUE;
i_error("Checkpoint: client %u: Message seq=%u UID=%u "
"keywords differ: (%s) vs (%s)",
client->client.global_id, i + 1, uids[i],
checkpoint_keywords_to_str(ctx, keywords_remapped),
checkpoint_keywords_to_str(ctx, ctx->messages[i].keyword_bitmask));
}
}
}
static void checkpoint_check_missing_recent(struct checkpoint_context *ctx,
unsigned int min_uidnext)
{
unsigned int i, client_count = array_count(&clients);
/* find the first message that we know were created by ourself */
for (i = 0; i < ctx->count; i++) {
if (ctx->uids[i] > min_uidnext)
break;
}
/* make sure \Recent flag is found from all of them */
for (; i < ctx->count; i++) {
if (ctx->flag_counts[i] != client_count ||
(ctx->messages[i].mail_flags & MAIL_FLAGS_SET) == 0)
continue;
if ((ctx->messages[i].mail_flags & MAIL_RECENT) == 0) {
i_error("Checkpoint: Message seq=%u UID=%u "
"isn't \\Recent anywhere", i + 1, ctx->uids[i]);
}
}
}
static void checkpoint_send_state_cmd(struct mailbox_storage *storage,
enum client_state state)
{
struct client *const *c;
unsigned int i, count;
c = array_get(&clients, &count);
for (i = 0; i < count; i++) {
struct imap_client *client = imap_client(c[i]);
if (client == NULL || client->checkpointing != storage)
continue;
/* send the checkpoint command */
client->plan[0] = state;
client->plan_size = 1;
(void)imap_client_plan_send_next_cmd(client);
storage->checkpoint->clients_left++;
}
}
void checkpoint_neg(struct mailbox_storage *storage)
{
struct checkpoint_context ctx;
struct client *const *c;
unsigned int min_uidnext = UINT_MAX, max_msgs_count = 0;
unsigned int i, count, check_count = 0;
unsigned int recent_total;
bool orig_dont_track_recent = storage->dont_track_recent;
i_assert(storage->checkpoint->clients_left > 0);
if (--storage->checkpoint->clients_left > 0)
return;
c = array_get(&clients, &count);
if (!storage->checkpoint->check_sent) {
/* everyone's finally finished their commands. now send CHECK
to make sure everyone sees each others' changes */
checkpoint_send_state_cmd(storage, STATE_CHECK);
if (storage->checkpoint->clients_left == 0) {
/* there are no clients to checkpoint anymore */
i_free_and_null(storage->checkpoint);
return;
}
storage->checkpoint->check_sent = TRUE;
return;
}
if (!storage->checkpoint->thread_sent &&
states[STATE_THREAD].probability > 0) {
/* check that THREAD results are the same */
checkpoint_send_state_cmd(storage, STATE_THREAD);
storage->checkpoint->thread_sent = TRUE;
if (storage->checkpoint->clients_left > 0)
return;
}
/* get maximum number of messages in mailbox */
recent_total = 0;
for (i = 0; i < count; i++) {
struct imap_client *client = imap_client(c[i]);
if (client == NULL || client->checkpointing != storage)
continue;
i_assert(array_count(&client->commands) == 0);
if (client->view->select_uidnext != 0) {
min_uidnext = I_MIN(min_uidnext,
client->view->select_uidnext);
}
recent_total += client->view->recent_count;
max_msgs_count = I_MAX(max_msgs_count,
array_count(&client->view->uidmap));
}
/* make sure everyone has the same idea of what the mailbox
looks like */
i_zero(&ctx);
if (max_msgs_count > 0) {
ctx.count = max_msgs_count;
ctx.messages = i_new(struct message_metadata_dynamic,
ctx.count);
ctx.uids = i_new(uint32_t, ctx.count);
ctx.flag_counts = i_new(uint32_t, ctx.count);
ctx.first = TRUE;
i_array_init(&ctx.all_keywords, 32);
i_array_init(&ctx.cur_keywords_map, 32);
for (i = 0; i < count; i++) {
struct imap_client *client = imap_client(c[i]);
if (client == NULL || client->checkpointing != storage)
continue;
check_count++;
checkpoint_update(&ctx, client);
ctx.first = FALSE;
}
for (i = 0; i < ctx.count; i++)
i_free(ctx.messages[i].keyword_bitmask);
if (total_disconnects == 0 && min_uidnext != 0 &&
!storage->dont_track_recent) {
/* this only works if no clients have disconnected */
checkpoint_check_missing_recent(&ctx, min_uidnext);
}
if (!storage->seen_all_recent || storage->dont_track_recent) {
/* can't handle this */
} else if (recent_total > ctx.count) {
i_error("Checkpoint: Total RECENT count %u "
"larger than current message count %u",
recent_total, ctx.count);
storage->dont_track_recent = TRUE;
} else if (total_disconnects == 0 &&
recent_total != ctx.count) {
i_error("Checkpoint: Total RECENT count %u != %u",
recent_total, ctx.count);
storage->dont_track_recent = TRUE;
}
array_free(&ctx.all_keywords);
array_free(&ctx.cur_keywords_map);
i_free(ctx.flag_counts);
i_free(ctx.uids);
i_free(ctx.messages);
}
if (!ctx.errors)
counters[STATE_CHECKPOINT] += check_count;
if (conf.error_quit && (ctx.errors || storage->dont_track_recent))
lib_exit(2);
/* checkpointing is done - continue normal commands */
for (i = 0; i < count; i++) {
struct imap_client *client = imap_client(c[i]);
if (client == NULL)
continue;
if (client->checkpointing == storage)
client->checkpointing = NULL;
if (array_count(&client->commands) == 0 &&
client->client.state != STATE_BANNER) {
(void)client_send_more_commands(&client->client);
i_assert(array_count(&client->commands) > 0);
}
}
if (storage->dont_track_recent && !orig_dont_track_recent)
i_warning("Disabling \\Recent flag tracking");
i_free_and_null(storage->checkpoint);
}
void clients_checkpoint(struct mailbox_storage *storage)
{
struct client *const *c;
unsigned int i, count;
if (storage->checkpoint != NULL)
return;
storage->checkpoint = i_new(struct mailbox_checkpoint_context, 1);
c = array_get(&clients, &count);
for (i = 0; i < count; i++) {
struct imap_client *client = imap_client(c[i]);
if (client == NULL ||
client->client.login_state != LSTATE_SELECTED)
continue;
if (client->storage == storage) {
client->checkpointing = storage;
if (array_count(&client->commands) > 0)
storage->checkpoint->clients_left++;
}
}
if (storage->checkpoint->clients_left == 0) {
storage->checkpoint->clients_left++;
checkpoint_neg(storage);
}
}