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
|
/* Copyright (c) 2010-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "llist.h"
#include "ioloop.h"
#include "istream.h"
#include "master-service.h"
#include "director.h"
#include "mail-host.h"
#include "notify-connection.h"
#include <unistd.h>
struct notify_connection {
struct notify_connection *prev, *next;
int fd;
struct io *io;
struct istream *input;
struct director *dir;
bool fifo:1;
};
static struct notify_connection *notify_connections = NULL;
static void notify_connection_deinit(struct notify_connection **_conn);
static void notify_update_user(struct director *dir, struct mail_tag *tag,
const char *username, unsigned int username_hash)
{
struct user *user;
int diff;
user = user_directory_lookup(tag->users, username_hash);
if (user == NULL)
return;
diff = ioloop_time - user->timestamp;
if (diff >= (int)dir->set->director_user_expire) {
e_warning(dir->event,
"notify: User %s refreshed too late (%d secs)",
username, diff);
}
user_directory_refresh(tag->users, user);
director_update_user(dir, dir->self_host, user);
}
static void notify_connection_input(struct notify_connection *conn)
{
struct mail_tag *tag;
const char *line;
unsigned int hash;
while ((line = i_stream_read_next_line(conn->input)) != NULL) {
if (!director_get_username_hash(conn->dir, line, &hash))
continue;
array_foreach_elem(mail_hosts_get_tags(conn->dir->mail_hosts), tag)
notify_update_user(conn->dir, tag, line, hash);
}
if (conn->input->eof) {
if (conn->fifo)
e_error(conn->dir->event,
"notify: read() unexpectedly returned EOF");
notify_connection_deinit(&conn);
} else if (conn->input->stream_errno != 0) {
e_error(conn->dir->event, "notify: read() failed: %s",
i_stream_get_error(conn->input));
notify_connection_deinit(&conn);
}
}
void notify_connection_init(struct director *dir, int fd, bool fifo)
{
struct notify_connection *conn;
conn = i_new(struct notify_connection, 1);
conn->fd = fd;
conn->fifo = fifo;
conn->dir = dir;
conn->input = i_stream_create_fd(conn->fd, 1024);
conn->io = io_add(conn->fd, IO_READ, notify_connection_input, conn);
DLLIST_PREPEND(¬ify_connections, conn);
}
static void notify_connection_deinit(struct notify_connection **_conn)
{
struct notify_connection *conn = *_conn;
*_conn = NULL;
DLLIST_REMOVE(¬ify_connections, conn);
io_remove(&conn->io);
i_stream_unref(&conn->input);
if (close(conn->fd) < 0)
e_error(conn->dir->event, "close(notify connection) failed: %m");
if (!conn->fifo)
master_service_client_connection_destroyed(master_service);
i_free(conn);
}
void notify_connections_deinit(void)
{
while (notify_connections != NULL) {
struct notify_connection *conn = notify_connections;
notify_connection_deinit(&conn);
}
}
|