mail-index-sync-update.c revision 3cdea46b2af97ab30861ee235678822278217514
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen/* Copyright (C) 2004 Timo Sirainen */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainenstatic void mail_index_sync_replace_map(struct mail_index_view *view,
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen mail_index_unmap(view->index, view->index->map);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenmail_index_sync_init_expunge_handlers(struct mail_index_sync_map_ctx *ctx)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen const mail_index_expunge_handler_t *const *handlers;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen handlers = buffer_get_data(ctx->view->index->expunge_handlers,
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* set expunge handlers */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_set_used_size(ctx->expunge_handlers, 0);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen extensions = ctx->view->map->extensions->data;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen id_map = buffer_get_data(ctx->view->map->ext_id_map, &id_map_size);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen if (handlers[ext_id] == NULL || id_map[ext_id] == (uint32_t)-1)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen eh.record_offset = extensions[id_map[ext_id]].record_offset;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_append(ctx->expunge_handlers, &eh, sizeof(eh));
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenmail_index_sync_deinit_expunge_handlers(struct mail_index_sync_map_ctx *ctx)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen eh = buffer_get_data(ctx->expunge_handlers, &size);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen for (i = 0; i < size; i++) {
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenstatic void mail_index_sync_init_handlers(struct mail_index_sync_map_ctx *ctx)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* set space for extra contexts */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen size = sizeof(void *) * (ctx->view->index->extensions->used /
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen sizeof(struct mail_index_ext));
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_set_used_size(ctx->extra_context_buf, 0);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_append_zero(ctx->extra_context_buf, size);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_get_modifyable_data(ctx->extra_context_buf, NULL);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenstatic void mail_index_sync_deinit_handlers(struct mail_index_sync_map_ctx *ctx)
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen const struct mail_index_sync_handler *sync_handlers;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen sync_handlers = buffer_get_data(ctx->view->index->sync_handlers, &size);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen i_assert(size <= ctx->extra_context_buf->used / sizeof(void *));
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen for (i = 0; i < size; i++) {
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainenmail_index_header_update_counts(struct mail_index_header *hdr,
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen if (((old_flags ^ new_flags) & MAIL_RECENT) != 0) {
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen /* different recent-flag */
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen hdr->first_recent_uid_lowwater = hdr->next_uid;
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen if (((old_flags ^ new_flags) & MAIL_SEEN) != 0) {
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen /* different seen-flag */
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen else if (++hdr->seen_messages_count == hdr->messages_count)
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen hdr->first_unseen_uid_lowwater = hdr->next_uid;
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen if (((old_flags ^ new_flags) & MAIL_DELETED) != 0) {
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen /* different deleted-flag */
d482b35af87f5fd872bad007da0475813a401a49Timo Sirainen hdr->first_deleted_uid_lowwater = hdr->next_uid;
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainenmail_index_header_update_lowwaters(struct mail_index_header *hdr,
53238473bf77147660aa6db9daa68a8a685e9381Timo Sirainenstatic int sync_expunge(const struct mail_transaction_expunge *e, void *context)
7394389230750c45b105cdefb5850c81cae8cdc0Timo Sirainen struct mail_index_sync_map_ctx *ctx = context;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen struct mail_index_expunge_handler *expunge_handlers, *eh;
03dbd273251103f745c08966f1809c02870390ffTimo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
03dbd273251103f745c08966f1809c02870390ffTimo Sirainen "Invalid UID range in expunge (%u .. %u)",
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* expunges have to be atomic. so we'll have to copy
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen the mapping, do the changes there and then finally
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen replace the whole index file. to avoid extra disk
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen I/O we copy the index into memory rather than to
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen temporary file */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen map = mail_index_map_to_memory(map, map->hdr.record_size);
567e57b09a49bbb2a146b13f8617698eb56237feTimo Sirainen if (mail_index_lookup_uid_range(view, e->uid1, e->uid2,
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen if (ctx->type != MAIL_INDEX_SYNC_HANDLER_VIEW) {
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen buffer_get_modifyable_data(ctx->expunge_handlers,
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen expunge_handlers_count /= sizeof(*expunge_handlers);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* syncing view - don't call expunge handlers */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen mail_index_header_update_counts(&map->hdr, rec->flags, 0);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen for (i = 0; i < expunge_handlers_count; i++) {
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen /* @UNSAFE */
7e94cf9d70ce9fdeccb7a85ff400b899e6386f36Timo Sirainen memmove(MAIL_INDEX_MAP_IDX(map, seq1-1), MAIL_INDEX_MAP_IDX(map, seq2),
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen (map->records_count - seq2) * map->hdr.record_size);
8e7da21696c9f8a6d5e601243fb6172ec85d47b2Timo Sirainen buffer_set_used_size(map->buffer, map->records_count *
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen map->records = buffer_get_modifyable_data(map->buffer, NULL);
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainenstatic int sync_append(const struct mail_index_record *rec, void *context)
7394389230750c45b105cdefb5850c81cae8cdc0Timo Sirainen struct mail_index_sync_map_ctx *ctx = context;
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen mail_transaction_log_view_set_corrupted(view->log_view,
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen "Append with UID %u, but next_uid = %u",
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen i_assert(map->records_count * map->hdr.record_size ==
7e94cf9d70ce9fdeccb7a85ff400b899e6386f36Timo Sirainen dest = buffer_append_space_unsafe(map->buffer,
ace3c14e47a5a865df8aeea2fabc993b609dd163Timo Sirainen map->records = buffer_get_modifyable_data(map->buffer, NULL);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen i_assert((map->records_count+1) * map->hdr.record_size <=
7e94cf9d70ce9fdeccb7a85ff400b899e6386f36Timo Sirainen dest = MAIL_INDEX_MAP_IDX(map, map->records_count);
dd8de60250511cc729b67249e61dfc6b4debff11Timo Sirainen if ((rec->flags & MAIL_INDEX_MAIL_FLAG_DIRTY) != 0)
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen map->hdr.flags |= MAIL_INDEX_HDR_FLAG_HAVE_DIRTY;
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen mail_index_header_update_counts(&map->hdr, 0, rec->flags);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen mail_index_header_update_lowwaters(&map->hdr, rec);
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainenstatic int sync_flag_update(const struct mail_transaction_flag_update *u,
7394389230750c45b105cdefb5850c81cae8cdc0Timo Sirainen struct mail_index_sync_map_ctx *ctx = context;
03dbd273251103f745c08966f1809c02870390ffTimo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
03dbd273251103f745c08966f1809c02870390ffTimo Sirainen "Invalid UID range in flag update (%u .. %u)",
567e57b09a49bbb2a146b13f8617698eb56237feTimo Sirainen if (mail_index_lookup_uid_range(view, u->uid1, u->uid2,
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen if ((u->add_flags & MAIL_INDEX_MAIL_FLAG_DIRTY) != 0)
d8b77aef97e89f1ccc5cbdaef77be9052279e35fTimo Sirainen for (i = 0; i < INDEX_KEYWORDS_BYTE_COUNT; i++) {
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen if (u->add_keywords[i] != 0 ||
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen rec->flags = (rec->flags & flag_mask) | u->add_flags;
d8b77aef97e89f1ccc5cbdaef77be9052279e35fTimo Sirainen for (i = 0; i < INDEX_KEYWORDS_BYTE_COUNT; i++) {
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen mail_index_header_update_counts(hdr, old_flags, rec->flags);
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainenstatic int sync_header_update(const struct mail_transaction_header_update *u,
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen struct mail_index_sync_map_ctx *ctx = context;
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen u->offset + u->size > map->hdr.base_header_size) {
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen "Header update outside range: %u + %u > %u",
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen u->offset, u->size, map->hdr.base_header_size);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen buffer_write(map->hdr_copy_buf, u->offset, u + 1, u->size);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen /* @UNSAFE */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen if ((uint32_t)(u->offset + u->size) <= sizeof(map->hdr)) {
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenget_ext_header(struct mail_index_map *map, const struct mail_index_ext *ext)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* do some kludgy jumping to get to it. */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen MAIL_INDEX_HEADER_SIZE_ALIGN(sizeof(*ext_hdr) +
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen hdr_base = buffer_get_modifyable_data(map->hdr_copy_buf, NULL);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainenstatic int mail_index_ext_align_cmp(const void *p1, const void *p2)
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen const struct mail_index_ext *const *e1 = p1, *const *e2 = p2;
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen return (int)(*e2)->record_align - (int)(*e1)->record_align;
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainensync_ext_reorder(struct mail_index_map *map, uint32_t ext_id, uint16_t old_size)
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen const void *src;
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen ext = buffer_get_modifyable_data(map->extensions, &size);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* @UNSAFE */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen sorted = t_new(struct mail_index_ext *, size);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen for (i = 0; i < size; i++) {
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen qsort(sorted, size, sizeof(struct mail_index_ext *),
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* we simply try to use the extensions with largest alignment
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen requirement first. FIXME: if the extension sizes don't match
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen alignmentation, this may not give the minimal layout. */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen for (i = 0; i < size; i++) {
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* all done */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* we have to leave space here */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen i_assert(min_align > 1 && min_align < (uint16_t)-1);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* keep 32bit alignment */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen offset += sizeof(uint32_t) - (offset % sizeof(uint32_t));
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* create a new mapping without records. a bit kludgy. */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen new_map = mail_index_map_to_memory(map, offset);
413fbe597e7ae0fa9dd6c8c66de6637658eea5e5Timo Sirainen /* we are shrinking the record */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* now copy the records to new mapping */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen for (rec_idx = 0; rec_idx < old_records_count; rec_idx++) {
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen sizeof(struct mail_index_record));
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen for (i = 0; i < size; i++) {
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen src = CONST_PTR_OFFSET(src, map->hdr.record_size);
eb4e310cbf876dea5c1a5e5e0da1ba52b0c42208Timo Sirainen old_records_count * new_map->hdr.record_size) {
413fbe597e7ae0fa9dd6c8c66de6637658eea5e5Timo Sirainen /* we didn't fully write the last record */
eb4e310cbf876dea5c1a5e5e0da1ba52b0c42208Timo Sirainen old_records_count * new_map->hdr.record_size -
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen new_map->records = buffer_get_modifyable_data(new_map->buffer, NULL);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* update record offsets in headers */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen for (i = 0; i < size; i++) {
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen ext_hdr->record_offset = ext[i].record_offset;
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainensync_ext_resize(const struct mail_transaction_ext_intro *u, uint32_t ext_id,
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen ext = buffer_get_modifyable_data(map->extensions, NULL);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen old_size = MAIL_INDEX_HEADER_SIZE_ALIGN(ext->hdr_size);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen new_size = MAIL_INDEX_HEADER_SIZE_ALIGN(u->hdr_size);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* header shrinked */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen buffer_delete(map->hdr_copy_buf, ext->hdr_offset + new_size,
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* header grown */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen map->hdr.header_size = map->hdr_copy_buf->used;
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen map = sync_ext_reorder(map, ext_id, old_record_size);
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainenstatic int sync_ext_intro(const struct mail_transaction_ext_intro *u,
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen struct mail_index_sync_map_ctx *ctx = context;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen u->ext_id >= map->extensions->used / sizeof(*ext))) {
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen "Extension introduction for unknown id %u", u->ext_id);
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen if (u->ext_id == (uint32_t)-1 && u->name_size == 0) {
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen "Extension introduction without id or name");
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen ext_id = mail_index_map_lookup_ext(map, name);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* exists already */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* check if we need to resize anything */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* extension was reset and this transaction hadn't
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen yet seen it. ignore this update. */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen if (MAIL_INDEX_HEADER_SIZE_ALIGN(hdr_buf->used) != hdr_buf->used) {
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* we need to add padding between base header and extensions */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* register record offset initially using zero,
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen sync_ext_reorder() will fix it. */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen hdr_offset = map->hdr_copy_buf->used + sizeof(ext_hdr) + strlen(name);
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen hdr_offset = MAIL_INDEX_HEADER_SIZE_ALIGN(hdr_offset);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen ext_id = mail_index_map_register_ext(ctx->view->index, map, name,
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* <ext_hdr> <name> [padding] [header data] */
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainen buffer_append(hdr_buf, &ext_hdr, sizeof(ext_hdr));
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen /* header must begin and end in correct alignment */
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen MAIL_INDEX_HEADER_SIZE_ALIGN(hdr_buf->used) - hdr_buf->used +
bbf796c17f02538058d7559bfe96d677e5b55015Timo Sirainen hdr_offset + MAIL_INDEX_HEADER_SIZE_ALIGN(ext->hdr_size));
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenstatic int sync_ext_reset(const struct mail_transaction_ext_reset *u,
7394389230750c45b105cdefb5850c81cae8cdc0Timo Sirainen struct mail_index_sync_map_ctx *ctx = context;
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen mail_transaction_log_view_set_corrupted(view->log_view,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen "Extension reset without intro prefix");
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen ext = buffer_get_modifyable_data(map->extensions, NULL);
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainen memset(buffer_get_space_unsafe(map->hdr_copy_buf, ext->hdr_offset,
df4018ae2f0a95be602f724ca70df7e0e3bd6a7dTimo Sirainen for (i = 0; i < view->map->records_count; i++) {
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainen memset(PTR_OFFSET(rec, ext->record_offset), 0,
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainenstatic int sync_ext_hdr_update(const struct mail_transaction_ext_hdr_update *u,
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen struct mail_index_sync_map_ctx *ctx = context;
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen mail_transaction_log_view_set_corrupted(ctx->view->log_view,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen "Extension header update without intro prefix");
7797aa2479e99aeb71057b7a2584b2cb72e4d3f8Timo Sirainen buffer_write(map->hdr_copy_buf, ext->hdr_offset + u->offset,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainensync_ext_rec_update(const struct mail_transaction_ext_rec_update *u,
7394389230750c45b105cdefb5850c81cae8cdc0Timo Sirainen struct mail_index_sync_map_ctx *ctx = context;
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen const struct mail_index_sync_handler *sync_handlers;
567e57b09a49bbb2a146b13f8617698eb56237feTimo Sirainen if (mail_index_lookup_uid_range(view, u->uid, u->uid, &seq, &seq) < 0)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen old_data = PTR_OFFSET(rec, ext->record_offset);
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* @UNSAFE */
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen sync_handlers = view->index->sync_handlers->data;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen /* call sync handlers only when we're syncing index (not view) */
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen ret = sync_handlers->callback(ctx, seq, old_data, u + 1,
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainenstatic int mail_index_grow(struct mail_index *index, struct mail_index_map *map,
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen unsigned int count)
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen (map->records_count + count) * map->hdr.record_size;
690af4a90eaf8611c2573d34126bb7a852c50a44Timo Sirainen /* when we grow fast, do it exponentially */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen (map->records_count + count) * map->hdr.record_size;
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen if (file_set_size(index->fd, (off_t)size) < 0)
0cb2e8eb55e70f8ebe1e8349bdf49e4cbe5d8834Timo Sirainen return mail_index_set_syscall_error(index, "file_set_size()");
ea546eaab672d441e180b7619d4750be813c08d8Timo Sirainen /* we only wish to grow the file, but mail_index_map() updates the
ea546eaab672d441e180b7619d4750be813c08d8Timo Sirainen headers as well and may break our modified hdr_copy. so, take
ea546eaab672d441e180b7619d4750be813c08d8Timo Sirainen a backup of it and put it back afterwards */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen i_assert(map->hdr_copy_buf->used == map->hdr.header_size);
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen memcpy(hdr_copy, map->hdr_copy_buf->data, hdr_copy_size);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen memcpy(hdr_copy, &map->hdr, sizeof(map->hdr));
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen buffer_append(map->hdr_copy_buf, hdr_copy, hdr_copy_size);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen memcpy(&map->hdr, hdr_copy, sizeof(map->hdr));
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainenmail_index_update_day_headers(struct mail_index_header *hdr, uint32_t uid)
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen sizeof(hdr->day_first_uid) / sizeof(hdr->day_first_uid[0]);
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen /* get beginning of today */
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen /* get number of days since last message */
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen /* @UNSAFE: move days forward and fill the missing days with old
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen day_first_uid[0]. */
8aacc9e7c84f8376822823ec98c2f551d4919b2eTimo Sirainen hdr->day_first_uid[i] = hdr->day_first_uid[0];
d143077bd518de129b8d446fb58e003903e50867Timo Sirainenint mail_index_sync_record(struct mail_index_sync_map_ctx *ctx,
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen switch (hdr->type & MAIL_TRANSACTION_TYPE_MASK) {
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen case MAIL_TRANSACTION_EXPUNGE|MAIL_TRANSACTION_EXPUNGE_PROT: {
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_expunge *rec, *end;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_flag_update *rec, *end;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_header_update *rec;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen unsigned int i;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen if ((i % 4) != 0)
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_ext_intro *rec = data;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen unsigned int i;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen /* should be just extra padding */
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen if ((i % 4) != 0)
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen const struct mail_transaction_ext_reset *rec = data;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_ext_hdr_update *rec = data;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen unsigned int i;
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen if ((i % 4) != 0)
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen const struct mail_transaction_ext_rec_update *rec, *end;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen "Extension record update update "
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen "without intro prefix");
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen record_size = sizeof(*rec) + ext[ctx->cur_ext_id].record_size;
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainenvoid mail_index_sync_map_init(struct mail_index_sync_map_ctx *sync_map_ctx,
6a19e109ee8c5a6f688da83a86a7f6abeb71abddTimo Sirainen memset(sync_map_ctx, 0, sizeof(*sync_map_ctx));
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainenvoid mail_index_sync_map_deinit(struct mail_index_sync_map_ctx *sync_map_ctx)
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen mail_index_sync_deinit_expunge_handlers(sync_map_ctx);
5626ae5e3316eced244adb6485c0927f1c7fdc41Timo Sirainen mail_index_sync_deinit_handlers(sync_map_ctx);
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainenint mail_index_sync_update_index(struct mail_index_sync_ctx *sync_ctx,
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen struct mail_index_view *view = sync_ctx->view;
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainen int ret, had_dirty, skipped, check_ext_offsets;
fec0e90484c5f2c9da9cdc62c0897408023d4c6eTimo Sirainen /* we'll have to update view->lock_id to avoid mail_index_view_lock()
fec0e90484c5f2c9da9cdc62c0897408023d4c6eTimo Sirainen trying to update the file later. */
ea546eaab672d441e180b7619d4750be813c08d8Timo Sirainen if (mail_index_lock_exclusive(index, &view->lock_id) < 0)
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen /* NOTE: locking may change index->map so make sure the assignment is
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen after locking */
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen if (map->hdr_base != map->hdr_copy_buf->data) {
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen buffer_append(map->hdr_copy_buf, map->hdr_base,
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen i_assert(map->hdr.base_header_size >= sizeof(map->hdr));
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen had_dirty = (map->hdr.flags & MAIL_INDEX_HDR_FLAG_HAVE_DIRTY) != 0;
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen map->hdr.flags &= ~MAIL_INDEX_HDR_FLAG_HAVE_DIRTY;
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen while ((ret = mail_transaction_log_view_next(view->log_view, &thdr,
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainen if ((thdr->type & MAIL_TRANSACTION_EXTERNAL) == 0) {
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainen /* we're syncing only external changes. */
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainen mail_transaction_log_view_get_prev_pos(view->log_view,
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen if (prev_offset < map->hdr.log_file_ext_offset) {
2a734f36105e33ab452d057df6bc7a2b7d9f96f0Timo Sirainen /* we have already synced this change */
5a07b37a9df398b5189c14872a600384208ab74bTimo Sirainen if ((thdr->type & MAIL_TRANSACTION_APPEND) != 0) {
d143077bd518de129b8d446fb58e003903e50867Timo Sirainen if (mail_index_sync_record(&sync_map_ctx, thdr, data) < 0) {
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen i_assert(map->records_count == map->hdr.messages_count);
e06c0b65c16ccce69bbee009ead14d7d3d17a256Timo Sirainen mail_transaction_log_get_head(index->log, &seq, &offset);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen mail_index_update_day_headers(&map->hdr, first_append_uid);
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen if ((map->hdr.flags & MAIL_INDEX_HDR_FLAG_HAVE_DIRTY) == 0 &&
b35f7104715edee0cfac6d46ab0b342033867eb7Timo Sirainen /* do we have dirty flags anymore? */
8e7da21696c9f8a6d5e601243fb6172ec85d47b2Timo Sirainen if ((rec->flags & MAIL_INDEX_MAIL_FLAG_DIRTY) != 0) {
b2105c78f0fd58281317e6d777ded860f33153a3Timo Sirainen map->mmap_used_size = index->hdr->header_size +
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen memcpy(map->mmap_base, &map->hdr, sizeof(map->hdr));
1b3bb8d39686ed24730cbc31cc9a33dc62c8c6c3Timo Sirainen memcpy(PTR_OFFSET(map->mmap_base, sizeof(map->hdr)),
b2105c78f0fd58281317e6d777ded860f33153a3Timo Sirainen if (msync(map->mmap_base, map->mmap_used_size, MS_SYNC) < 0) {