mail-log-plugin.c revision cc7f4868da79e61ef9af9dcb1ad7ddfe2e353e3d
273e421813f295d65aab512f508e8fb575d997d4gouldtj/* Copyright (C) 2007 Timo Sirainen */
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "lib.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "array.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "str.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "str-sanitize.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "mail-storage-private.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "mailbox-list-private.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include "mail-log-plugin.h"
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtj#include <stdlib.h>
273e421813f295d65aab512f508e8fb575d997d4gouldtj
5cf507fca7719ae9280d0a5199e024e920f1284dAlex Valavanis#define MAILBOX_NAME_LOG_LEN 64
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MSGID_LOG_LEN 80
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MAIL_LOG_CONTEXT(obj) \
273e421813f295d65aab512f508e8fb575d997d4gouldtj MODULE_CONTEXT(obj, mail_log_storage_module)
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MAIL_LOG_MAIL_CONTEXT(obj) \
273e421813f295d65aab512f508e8fb575d997d4gouldtj MODULE_CONTEXT(obj, mail_log_mail_module)
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MAIL_LOG_LIST_CONTEXT(obj) \
273e421813f295d65aab512f508e8fb575d997d4gouldtj MODULE_CONTEXT(obj, mail_log_mailbox_list_module)
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtjenum mail_log_field {
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_UID = 0x01,
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_BOX = 0x02,
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_MSGID = 0x04,
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_PSIZE = 0x08,
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_VSIZE = 0x10
273e421813f295d65aab512f508e8fb575d997d4gouldtj};
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MAIL_LOG_DEFAULT_FIELDS \
273e421813f295d65aab512f508e8fb575d997d4gouldtj (MAIL_LOG_FIELD_UID | MAIL_LOG_FIELD_BOX | \
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_FIELD_MSGID | MAIL_LOG_FIELD_PSIZE)
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtjenum mail_log_event {
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_EVENT_DELETE = 0x01,
e4a9f366dbcb54f76b8c42869fa6873808132357gouldtj MAIL_LOG_EVENT_UNDELETE = 0x02,
0d76a37bca6836fb2b908569e54ca9792a9ff303buliabyak MAIL_LOG_EVENT_EXPUNGE = 0x04,
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_EVENT_COPY = 0x08,
57e8d5fd57a890842b51a13207e222fcf953816cJazzyNico MAIL_LOG_EVENT_MAILBOX_DELETE = 0x10,
273e421813f295d65aab512f508e8fb575d997d4gouldtj
273e421813f295d65aab512f508e8fb575d997d4gouldtj MAIL_LOG_EVENT_MASK_ALL = 0x1f
273e421813f295d65aab512f508e8fb575d997d4gouldtj};
273e421813f295d65aab512f508e8fb575d997d4gouldtj#define MAIL_LOG_DEFAULT_EVENTS MAIL_LOG_EVENT_MASK_ALL
273e421813f295d65aab512f508e8fb575d997d4gouldtj
0d76a37bca6836fb2b908569e54ca9792a9ff303buliabyakstatic const char *field_names[] = {
273e421813f295d65aab512f508e8fb575d997d4gouldtj "uid",
273e421813f295d65aab512f508e8fb575d997d4gouldtj "box",
273e421813f295d65aab512f508e8fb575d997d4gouldtj "msgid",
273e421813f295d65aab512f508e8fb575d997d4gouldtj "size",
273e421813f295d65aab512f508e8fb575d997d4gouldtj "vsize",
273e421813f295d65aab512f508e8fb575d997d4gouldtj NULL
273e421813f295d65aab512f508e8fb575d997d4gouldtj};
273e421813f295d65aab512f508e8fb575d997d4gouldtj
static const char *event_names[] = {
"delete",
"undelete",
"expunge",
"copy",
"mailbox_delete",
NULL
};
struct mail_log_settings {
enum mail_log_field fields;
enum mail_log_event events;
unsigned int group_events:1;
};
struct mail_log_group_changes {
enum mail_log_event event;
const char *data;
ARRAY_TYPE(seq_range) uids;
uoff_t psize_total, vsize_total;
};
struct mail_log_transaction_context {
union mailbox_transaction_module_context module_ctx;
pool_t pool;
ARRAY_DEFINE(group_changes, struct mail_log_group_changes);
unsigned int changes;
};
const char *mail_log_plugin_version = PACKAGE_VERSION;
static struct mail_log_settings mail_log_set;
static void (*mail_log_next_hook_mail_storage_created)
(struct mail_storage *storage);
static void (*mail_log_next_hook_mailbox_list_created)
(struct mailbox_list *list);
static MODULE_CONTEXT_DEFINE_INIT(mail_log_storage_module,
&mail_storage_module_register);
static MODULE_CONTEXT_DEFINE_INIT(mail_log_mail_module, &mail_module_register);
static MODULE_CONTEXT_DEFINE_INIT(mail_log_mailbox_list_module,
&mailbox_list_module_register);
static enum mail_log_field mail_log_field_find(const char *name)
{
unsigned int i;
for (i = 0; field_names[i] != NULL; i++) {
if (strcmp(name, field_names[i]) == 0)
return 1 << i;
}
return 0;
}
static enum mail_log_event mail_log_event_find(const char *name)
{
unsigned int i;
for (i = 0; event_names[i] != NULL; i++) {
if (strcmp(name, event_names[i]) == 0)
return 1 << i;
}
return 0;
}
static const char *mail_log_event_get_name(enum mail_log_event event)
{
unsigned int i;
for (i = 0; event_names[i] != NULL; i++) {
if ((unsigned)event == (unsigned)(1 << i))
return event_names[i];
}
i_unreached();
return NULL;
}
static struct mail_log_group_changes *
mail_log_action_get_group(struct mail_log_transaction_context *lt,
enum mail_log_event event, const char *data)
{
struct mail_log_group_changes *group;
unsigned int i, count;
if (!array_is_created(&lt->group_changes))
p_array_init(&lt->group_changes, lt->pool, 8);
group = array_get_modifiable(&lt->group_changes, &count);
for (i = 0; i < count; i++) {
if (group[i].event == event &&
null_strcmp(data, group[i].data) == 0)
return &group[i];
}
group = array_append_space(&lt->group_changes);
group->event = event;
group->data = p_strdup(lt->pool, data);
return group;
}
static void
mail_log_action_add_group(struct mail_log_transaction_context *lt,
struct mail *mail, enum mail_log_event event,
const char *data)
{
struct mail_log_group_changes *group;
uoff_t size;
group = mail_log_action_get_group(lt, event, data);
if ((mail_log_set.fields & MAIL_LOG_FIELD_UID) != 0) {
if (!array_is_created(&group->uids))
p_array_init(&group->uids, lt->pool, 32);
seq_range_array_add(&group->uids, 0, mail->uid);
}
if ((mail_log_set.fields & MAIL_LOG_FIELD_PSIZE) != 0 &&
(event & (MAIL_LOG_EVENT_EXPUNGE | MAIL_LOG_EVENT_COPY)) != 0) {
if (mail_get_physical_size(mail, &size) == 0)
group->psize_total += size;
}
if ((mail_log_set.fields & MAIL_LOG_FIELD_VSIZE) != 0 &&
(event & (MAIL_LOG_EVENT_EXPUNGE | MAIL_LOG_EVENT_COPY)) != 0) {
if (mail_get_virtual_size(mail, &size) == 0)
group->vsize_total += size;
}
}
static void mail_log_append_mailbox_name(string_t *str, struct mailbox *box)
{
const char *mailbox_str;
/* most operations are for INBOX, and POP3 has only INBOX,
so don't add it. */
mailbox_str = mailbox_get_name(box);
if (strcmp(mailbox_str, "INBOX") != 0) {
str_printfa(str, "box=%s, ",
str_sanitize(mailbox_str, MAILBOX_NAME_LOG_LEN));
}
}
static void
mail_log_group(struct mailbox *box, const struct mail_log_group_changes *group)
{
const struct seq_range *range;
unsigned int i, count;
string_t *str;
t_push();
str = t_str_new(128);
str_printfa(str, "%s: ", mail_log_event_get_name(group->event));
if ((mail_log_set.fields & MAIL_LOG_FIELD_UID) != 0 &&
array_is_created(&group->uids)) {
str_append(str, "uids=");
range = array_get(&group->uids, &count);
for (i = 0; i < count; i++) {
if (i != 0)
str_append_c(str, ',');
str_printfa(str, "%u", range[i].seq1);
if (range[i].seq1 != range[i].seq2)
str_printfa(str, "-%u", range[i].seq2);
}
str_append(str, ", ");
}
if ((mail_log_set.fields & MAIL_LOG_FIELD_BOX) != 0)
mail_log_append_mailbox_name(str, box);
if (group->event == MAIL_LOG_EVENT_COPY)
str_printfa(str, "dest=%s, ", group->data);
if (group->psize_total != 0)
str_printfa(str, "size=%"PRIuUOFF_T", ", group->psize_total);
if (group->vsize_total != 0)
str_printfa(str, "size=%"PRIuUOFF_T", ", group->vsize_total);
str_truncate(str, str_len(str)-2);
i_info("%s", str_c(str));
t_pop();
}
static void
mail_log_group_changes(struct mailbox *box,
struct mail_log_transaction_context *lt)
{
const struct mail_log_group_changes *group;
unsigned int i, count;
group = array_get(&lt->group_changes, &count);
for (i = 0; i < count; i++)
mail_log_group(box, &group[i]);
}
static void mail_log_action(struct mail *mail, enum mail_log_event event,
const char *data)
{
struct mail_log_transaction_context *lt =
MAIL_LOG_CONTEXT(mail->transaction);
const char *msgid;
uoff_t size;
string_t *str;
pool_t pool;
if ((mail_log_set.events & event) == 0)
return;
if (lt == NULL) {
pool = pool_alloconly_create("mail log transaction", 1024);
lt = p_new(pool, struct mail_log_transaction_context, 1);
lt->pool = pool;
MODULE_CONTEXT_SET(mail->transaction,
mail_log_storage_module, lt);
}
lt->changes++;
if (mail_log_set.group_events) {
mail_log_action_add_group(lt, mail, event, data);
return;
}
t_push();
str = t_str_new(128);
str_printfa(str, "%s: ", mail_log_event_get_name(event));
if ((mail_log_set.fields & MAIL_LOG_FIELD_UID) != 0)
str_printfa(str, "uid=%u, ", mail->uid);
if ((mail_log_set.fields & MAIL_LOG_FIELD_BOX) != 0)
mail_log_append_mailbox_name(str, mail->box);
if (event == MAIL_LOG_EVENT_COPY)
str_printfa(str, "dest=%s, ", data);
if ((mail_log_set.fields & MAIL_LOG_FIELD_MSGID) != 0) {
if (mail_get_first_header(mail, "Message-ID", &msgid) <= 0)
msgid = "(null)";
str_printfa(str, "msgid=%s, ",
str_sanitize(msgid, MSGID_LOG_LEN));
}
if ((mail_log_set.fields & MAIL_LOG_FIELD_PSIZE) != 0 &&
(event & (MAIL_LOG_EVENT_EXPUNGE | MAIL_LOG_EVENT_COPY)) != 0) {
if (mail_get_physical_size(mail, &size) == 0)
str_printfa(str, "size=%"PRIuUOFF_T", ", size);
}
if ((mail_log_set.fields & MAIL_LOG_FIELD_VSIZE) != 0 &&
(event & (MAIL_LOG_EVENT_EXPUNGE | MAIL_LOG_EVENT_COPY)) != 0) {
if (mail_get_virtual_size(mail, &size) == 0)
str_printfa(str, "vsize=%"PRIuUOFF_T", ", size);
}
str_truncate(str, str_len(str)-2);
i_info("%s", str_c(str));
t_pop();
}
static void mail_log_mail_expunge(struct mail *_mail)
{
struct mail_private *mail = (struct mail_private *)_mail;
union mail_module_context *lmail = MAIL_LOG_MAIL_CONTEXT(mail);
mail_log_action(_mail, MAIL_LOG_EVENT_EXPUNGE, NULL);
lmail->super.expunge(_mail);
}
static void
mail_log_mail_update_flags(struct mail *_mail, enum modify_type modify_type,
enum mail_flags flags)
{
struct mail_private *mail = (struct mail_private *)_mail;
union mail_module_context *lmail = MAIL_LOG_MAIL_CONTEXT(mail);
enum mail_flags old_flags, new_flags;
old_flags = mail_get_flags(_mail);
lmail->super.update_flags(_mail, modify_type, flags);
new_flags = old_flags;
switch (modify_type) {
case MODIFY_ADD:
new_flags |= flags;
break;
case MODIFY_REMOVE:
new_flags &= ~flags;
break;
case MODIFY_REPLACE:
new_flags = flags;
break;
}
if (((old_flags ^ new_flags) & MAIL_DELETED) == 0)
return;
mail_log_action(_mail, (new_flags & MAIL_DELETED) != 0 ?
MAIL_LOG_EVENT_DELETE : MAIL_LOG_EVENT_UNDELETE, NULL);
}
static struct mail *
mail_log_mail_alloc(struct mailbox_transaction_context *t,
enum mail_fetch_field wanted_fields,
struct mailbox_header_lookup_ctx *wanted_headers)
{
union mailbox_module_context *lbox = MAIL_LOG_CONTEXT(t->box);
union mail_module_context *lmail;
struct mail *_mail;
struct mail_private *mail;
_mail = lbox->super.mail_alloc(t, wanted_fields, wanted_headers);
mail = (struct mail_private *)_mail;
lmail = p_new(mail->pool, union mail_module_context, 1);
lmail->super = mail->v;
mail->v.update_flags = mail_log_mail_update_flags;
mail->v.expunge = mail_log_mail_expunge;
MODULE_CONTEXT_SET_SELF(mail, mail_log_mail_module, lmail);
return _mail;
}
static int
mail_log_copy(struct mailbox_transaction_context *t, struct mail *mail,
enum mail_flags flags, struct mail_keywords *keywords,
struct mail *dest_mail)
{
union mailbox_module_context *lbox = MAIL_LOG_CONTEXT(t->box);
const char *name;
if (lbox->super.copy(t, mail, flags, keywords, dest_mail) < 0)
return -1;
t_push();
name = str_sanitize(mailbox_get_name(t->box), MAILBOX_NAME_LOG_LEN);
mail_log_action(mail, MAIL_LOG_EVENT_COPY, name);
t_pop();
return 0;
}
static int
mail_log_transaction_commit(struct mailbox_transaction_context *t,
enum mailbox_sync_flags flags,
uint32_t *uid_validity_r,
uint32_t *first_saved_uid_r,
uint32_t *last_saved_uid_r)
{
struct mail_log_transaction_context *lt = MAIL_LOG_CONTEXT(t);
union mailbox_module_context *lbox = MAIL_LOG_CONTEXT(t->box);
if (lt != NULL) {
if (lt->changes > 0 && mail_log_set.group_events)
mail_log_group_changes(t->box, lt);
pool_unref(lt->pool);
}
return lbox->super.transaction_commit(t, flags, uid_validity_r,
first_saved_uid_r,
last_saved_uid_r);
}
static void
mail_log_transaction_rollback(struct mailbox_transaction_context *t)
{
struct mail_log_transaction_context *lt = MAIL_LOG_CONTEXT(t);
union mailbox_module_context *lbox = MAIL_LOG_CONTEXT(t->box);
if (lt != NULL) {
if (lt->changes > 0 && !mail_log_set.group_events) {
i_info("Transaction rolled back: "
"Ignore last %u changes", lt->changes);
}
pool_unref(lt->pool);
}
lbox->super.transaction_rollback(t);
}
static struct mailbox *
mail_log_mailbox_open(struct mail_storage *storage, const char *name,
struct istream *input, enum mailbox_open_flags flags)
{
union mail_storage_module_context *lstorage = MAIL_LOG_CONTEXT(storage);
struct mailbox *box;
union mailbox_module_context *lbox;
box = lstorage->super.mailbox_open(storage, name, input, flags);
if (box == NULL)
return NULL;
lbox = p_new(box->pool, union mailbox_module_context, 1);
lbox->super = box->v;
box->v.mail_alloc = mail_log_mail_alloc;
box->v.copy = mail_log_copy;
box->v.transaction_commit = mail_log_transaction_commit;
box->v.transaction_rollback = mail_log_transaction_rollback;
MODULE_CONTEXT_SET_SELF(box, mail_log_storage_module, lbox);
return box;
}
static int
mail_log_mailbox_list_delete(struct mailbox_list *list, const char *name)
{
union mailbox_list_module_context *llist = MAIL_LOG_LIST_CONTEXT(list);
if (llist->super.delete_mailbox(list, name) < 0)
return -1;
if ((mail_log_set.events & MAIL_LOG_EVENT_MAILBOX_DELETE) == 0)
return 0;
i_info("Mailbox deleted: %s", str_sanitize(name, MAILBOX_NAME_LOG_LEN));
return 0;
}
static void mail_log_mail_storage_created(struct mail_storage *storage)
{
union mail_storage_module_context *lstorage;
if (mail_log_next_hook_mail_storage_created != NULL)
mail_log_next_hook_mail_storage_created(storage);
lstorage = p_new(storage->pool, union mail_storage_module_context, 1);
lstorage->super = storage->v;
storage->v.mailbox_open = mail_log_mailbox_open;
MODULE_CONTEXT_SET_SELF(storage, mail_log_storage_module, lstorage);
}
static void mail_log_mailbox_list_created(struct mailbox_list *list)
{
union mailbox_list_module_context *llist;
if (mail_log_next_hook_mailbox_list_created != NULL)
mail_log_next_hook_mailbox_list_created(list);
llist = p_new(list->pool, union mailbox_list_module_context, 1);
llist->super = list->v;
list->v.delete_mailbox = mail_log_mailbox_list_delete;
MODULE_CONTEXT_SET_SELF(list, mail_log_mailbox_list_module, llist);
}
static enum mail_log_field mail_log_parse_fields(const char *str)
{
const char *const *tmp;
static enum mail_log_field field, fields = 0;
for (tmp = t_strsplit_spaces(str, ", "); *tmp != NULL; tmp++) {
field = mail_log_field_find(*tmp);
if (field == 0)
i_fatal("Unknown field in mail_log_fields: '%s'", *tmp);
fields |= field;
}
return fields;
}
static enum mail_log_event mail_log_parse_events(const char *str)
{
const char *const *tmp;
static enum mail_log_event event, events = 0;
for (tmp = t_strsplit_spaces(str, ", "); *tmp != NULL; tmp++) {
event = mail_log_event_find(*tmp);
if (event == 0)
i_fatal("Unknown event in mail_log_events: '%s'", *tmp);
events |= event;
}
return events;
}
static void mail_log_read_settings(struct mail_log_settings *set)
{
const char *str;
memset(set, 0, sizeof(*set));
t_push();
str = getenv("MAIL_LOG_FIELDS");
set->fields = str == NULL ? MAIL_LOG_DEFAULT_FIELDS :
mail_log_parse_fields(str);
str = getenv("MAIL_LOG_EVENTS");
set->events = str == NULL ? MAIL_LOG_DEFAULT_EVENTS :
mail_log_parse_events(str);
set->group_events = getenv("MAIL_LOG_GROUP_EVENTS") != NULL;
t_pop();
}
void mail_log_plugin_init(void)
{
mail_log_read_settings(&mail_log_set);
mail_log_next_hook_mail_storage_created = hook_mail_storage_created;
hook_mail_storage_created = mail_log_mail_storage_created;
mail_log_next_hook_mailbox_list_created = hook_mailbox_list_created;
hook_mailbox_list_created = mail_log_mailbox_list_created;
}
void mail_log_plugin_deinit(void)
{
hook_mail_storage_created = mail_log_next_hook_mail_storage_created;
hook_mailbox_list_created = mail_log_next_hook_mailbox_list_created;
}