mbox-fsck.c revision 7f0113f4efa1e4e020d64f714d1d765963005fd5
/* Copyright (C) 2002 Timo Sirainen */
#include "lib.h"
#include "iobuffer.h"
#include "hex-binary.h"
#include "message-parser.h"
#include "message-part-serialize.h"
#include "mbox-index.h"
#include "mbox-lock.h"
#include "mail-index-util.h"
#include <unistd.h>
#include <fcntl.h>
static void skip_line(IOBuffer *inbuf)
{
unsigned char *msg;
unsigned int i, size;
while (io_buffer_read_data(inbuf, &msg, &size, 0) >= 0) {
for (i = 0; i < size; i++) {
if (msg[i] == '\n')
break;
}
if (i < size) {
io_buffer_skip(inbuf, i+1);
break;
}
io_buffer_skip(inbuf, i);
}
}
static int verify_header_md5sum(MailIndex *index, MailIndexRecord *rec,
unsigned char current_digest[16])
{
const unsigned char *old_digest;
unsigned int size;
/* MD5 sums must match */
old_digest = index->lookup_field_raw(index, rec, FIELD_TYPE_MD5, &size);
return old_digest != NULL && size == 16 &&
memcmp(old_digest, current_digest, 16) == 0;
}
static int verify_end_of_body(IOBuffer *inbuf, uoff_t end_offset)
{
unsigned char *data;
unsigned int size;
/* don't bother parsing the whole body, just make
sure it ends properly */
io_buffer_seek(inbuf, end_offset);
if (inbuf->offset == inbuf->size) {
/* end of file. a bit unexpected though,
since \n is missing. */
return TRUE;
}
/* read forward a bit */
if (io_buffer_read_data(inbuf, &data, &size, 6) <= 0)
return FALSE;
/* either there should be the next From-line,
or [\r]\n at end of file */
if (size > 0 && data[0] == '\r') {
data++; size--;
}
if (size > 0) {
if (data[0] != '\n')
return FALSE;
data++; size--;
}
return size == 0 || (size >= 5 && strncmp(data, "From ", 5) == 0);
}
static int mail_update_header_size(MailIndex *index, MailIndexRecord *rec,
MailIndexUpdate *update,
MessageSize *hdr_size)
{
const void *part_data;
void *part_data_copy;
unsigned int size;
/* update index record */
rec->header_size = hdr_size->physical_size;
if ((rec->cached_fields & FIELD_TYPE_MESSAGEPART) == 0)
return TRUE;
/* update FIELD_TYPE_MESSAGEPART */
part_data = index->lookup_field_raw(index, rec, FIELD_TYPE_MESSAGEPART,
&size);
if (part_data == NULL) {
/* well, this wasn't expected but don't bother failing */
return TRUE;
}
/* copy & update the part data */
part_data_copy = t_malloc(size);
memcpy(part_data_copy, part_data, size);
if (!message_part_serialize_update_header(part_data_copy, size,
hdr_size))
return FALSE;
index->update_field_raw(update, FIELD_TYPE_MESSAGEPART,
part_data_copy, size);
return TRUE;
}
static int match_next_record(MailIndex *index, MailIndexRecord *rec,
unsigned int seq, IOBuffer *inbuf,
MailIndexRecord **next_rec)
{
MailIndexUpdate *update;
MessageSize hdr_size;
MboxHeaderContext ctx;
uoff_t header_offset, body_offset, offset;
unsigned char current_digest[16];
*next_rec = NULL;
/* skip the From-line */
skip_line(inbuf);
header_offset = inbuf->offset;
/* get the MD5 sum of fixed headers and the current message flags
in Status and X-Status fields */
mbox_header_init_context(&ctx);
message_parse_header(NULL, inbuf, &hdr_size, mbox_header_func, &ctx);
md5_final(&ctx.md5, current_digest);
body_offset = inbuf->offset;
do {
if (verify_header_md5sum(index, rec, current_digest) &&
verify_end_of_body(inbuf, body_offset + rec->body_size)) {
/* valid message */
update = index->update_begin(index, rec);
/* update flags, unless we've changed them */
if ((rec->index_flags & INDEX_MAIL_FLAG_DIRTY) == 0) {
if (!index->update_flags(index, rec, seq,
ctx.flags, TRUE))
return FALSE;
/* update_flags() sets dirty flag, remove it */
rec->index_flags &= ~INDEX_MAIL_FLAG_DIRTY;
}
/* update location */
if (!mbox_mail_get_start_offset(index, rec, &offset))
return FALSE;
if (offset != header_offset) {
index->update_field_raw(update,
FIELD_TYPE_LOCATION,
&header_offset,
sizeof(uoff_t));
}
/* update size */
if (rec->header_size != hdr_size.physical_size ) {
if (!mail_update_header_size(index, rec,
update, &hdr_size))
return FALSE;
}
if (!index->update_end(update))
return FALSE;
*next_rec = rec;
break;
}
/* try next message */
(void)index->expunge(index, rec, seq, TRUE);
rec = index->next(index, rec);
} while (rec != NULL);
return TRUE;
}
static int mbox_index_fsck_buf(MailIndex *index, IOBuffer *inbuf)
{
MailIndexRecord *rec;
uoff_t from_offset;
unsigned char *data;
unsigned int seq, size;
if (!index->set_lock(index, MAIL_LOCK_EXCLUSIVE))
return FALSE;
/* first make sure we start with a "From " line. */
while (io_buffer_read_data(inbuf, &data, &size, 5) >= 0) {
if (size > 5)
break;
}
if (size <= 5 || strncmp(data, "From ", 5) != 0) {
index_set_error(index, "File isn't in mbox format: %s",
index->mbox_path);
return FALSE;
}
/* we'll go through the mailbox and index in order matching the
messages by their size and Message-ID. old mails aren't remembered,
so we handle well only the cases when mail has been deleted. if
mails have been reordered (eg. sorted by someone) most of the mails
will show up as being new. if we really wanted to support that well,
we could save the message-ids into hash but I don't know if it's
worth the trouble. */
seq = 1;
rec = index->lookup(index, 1);
while (rec != NULL) {
from_offset = inbuf->offset;
if (inbuf->offset != 0) {
/* we're at the [\r]\n before the From-line,
skip it */
if (!mbox_skip_crlf(inbuf)) {
/* they just went and broke it, even while
we had it locked. */
return FALSE;
}
}
if (inbuf->offset == inbuf->size)
break;
if (!match_next_record(index, rec, seq, inbuf, &rec))
return FALSE;
if (rec == NULL) {
/* Get back to line before From */
io_buffer_seek(inbuf, from_offset);
break;
}
seq++;
rec = index->next(index, rec);
}
/* delete the rest of the records */
while (rec != NULL) {
(void)index->expunge(index, rec, seq, TRUE);
rec = index->next(index, rec);
}
if (inbuf->offset == inbuf->size)
return TRUE;
else
return mbox_index_append(index, inbuf);
}
int mbox_index_fsck(MailIndex *index)
{
IOBuffer *inbuf;
int fd, failed;
/* open the mbox file. we don't really need to open it read-write,
but fcntl() locking requires it. */
fd = open(index->mbox_path, O_RDWR);
if (fd == -1) {
index_set_error(index, "Can't open mbox file %s: %m",
index->mbox_path);
return FALSE;
}
inbuf = io_buffer_create_mmap(fd, default_pool,
MAIL_MMAP_BLOCK_SIZE, 0);
/* lock the mailbox so we can be sure no-one interrupts us.
we are trying to repair our index after all. */
if (!mbox_lock(index, index->mbox_path, fd))
failed = TRUE;
else {
failed = !mbox_index_fsck_buf(index, inbuf);
(void)mbox_unlock(index, index->mbox_path, fd);
}
(void)close(fd);
io_buffer_destroy(inbuf);
if (failed)
return FALSE;
/* check the header */
return mail_index_fsck(index);
}