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
|
/* Copyright (c) 2013-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "restrict-access.h"
#include "master-service.h"
#include "master-service-settings.h"
#include "aggregator-settings.h"
#include "notify-connection.h"
#include "replicator-connection.h"
struct replicator_connection *replicator;
static void client_connected(struct master_service_connection *conn)
{
master_service_client_connection_accept(conn);
notify_connection_create(conn->fd, conn->fifo);
}
static void main_preinit(void)
{
struct ip_addr *ips;
unsigned int ips_count;
const struct aggregator_settings *set;
void **sets;
int ret;
sets = master_service_settings_get_others(master_service);
set = sets[0];
if (set->replicator_port != 0) {
ret = net_gethostbyname(set->replicator_host, &ips, &ips_count);
if (ret != 0) {
i_fatal("replicator_host: gethostbyname(%s) failed: %s",
set->replicator_host, net_gethosterror(ret));
}
replicator = replicator_connection_create_inet(ips, ips_count,
set->replicator_port,
notify_connection_sync_callback);
} else {
replicator = replicator_connection_create_unix(set->replicator_host,
notify_connection_sync_callback);
}
}
int main(int argc, char *argv[])
{
const struct setting_parser_info *set_roots[] = {
&aggregator_setting_parser_info,
NULL
};
const char *error;
master_service = master_service_init("aggregator", 0, &argc, &argv, "");
if (master_getopt(master_service) > 0)
return FATAL_DEFAULT;
if (master_service_settings_read_simple(master_service, set_roots,
&error) < 0)
i_fatal("Error reading configuration: %s", error);
master_service_init_log(master_service);
main_preinit();
restrict_access_by_env(RESTRICT_ACCESS_FLAG_ALLOW_ROOT, NULL);
restrict_access_allow_coredumps(TRUE);
master_service_init_finish(master_service);
master_service_run(master_service, client_connected);
notify_connections_destroy_all();
replicator_connection_destroy(&replicator);
master_service_deinit(&master_service);
return 0;
}
|