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
|
/* Copyright (c) 2009-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "buffer.h"
#include "settings-parser.h"
#include "service-settings.h"
#include "stats-settings.h"
/* <settings checks> */
static struct file_listener_settings old_stats_unix_listeners_array[] = {
{ "old-stats", 0600, "", "" }
};
static struct file_listener_settings *old_stats_unix_listeners[] = {
&old_stats_unix_listeners_array[0]
};
static buffer_t old_stats_unix_listeners_buf = {
{ { old_stats_unix_listeners, sizeof(old_stats_unix_listeners) } }
};
static struct file_listener_settings old_stats_fifo_listeners_array[] = {
{ "old-stats-mail", 0600, "", "" },
{ "old-stats-user", 0600, "", "" }
};
static struct file_listener_settings *old_stats_fifo_listeners[] = {
&old_stats_fifo_listeners_array[0],
&old_stats_fifo_listeners_array[1]
};
static buffer_t old_stats_fifo_listeners_buf = {
{ { old_stats_fifo_listeners, sizeof(old_stats_fifo_listeners) } }
};
/* </settings checks> */
struct service_settings old_stats_service_settings = {
.name = "old-stats",
.protocol = "",
.type = "",
.executable = "old-stats",
.user = "$default_internal_user",
.group = "",
.privileged_group = "",
.extra_groups = "",
.chroot = "empty",
.drop_priv_before_exec = FALSE,
.process_min_avail = 0,
.process_limit = 1,
.client_limit = 0,
.service_count = 0,
.idle_kill = UINT_MAX,
.vsz_limit = UOFF_T_MAX,
.unix_listeners = { { &old_stats_unix_listeners_buf,
sizeof(old_stats_unix_listeners[0]) } },
.fifo_listeners = { { &old_stats_fifo_listeners_buf,
sizeof(old_stats_fifo_listeners[0]) } },
.inet_listeners = ARRAY_INIT,
.process_limit_1 = TRUE
};
/* we're kind of kludging here to avoid "stats_" prefix in the struct fields */
#undef DEF
#define DEF(type, name) \
SETTING_DEFINE_STRUCT_##type("old_stats_"#name, name, struct old_stats_settings)
static const struct setting_define old_stats_setting_defines[] = {
DEF(SIZE, memory_limit),
DEF(TIME, command_min_time),
DEF(TIME, session_min_time),
DEF(TIME, user_min_time),
DEF(TIME, domain_min_time),
DEF(TIME, ip_min_time),
DEF(STR, carbon_server),
DEF(TIME, carbon_interval),
DEF(STR, carbon_name),
SETTING_DEFINE_LIST_END
};
const struct old_stats_settings old_stats_default_settings = {
.memory_limit = 1024*1024*16,
.command_min_time = 60,
.session_min_time = 60*15,
.user_min_time = 60*60,
.domain_min_time = 60*60*12,
.ip_min_time = 60*60*12,
.carbon_interval = 30,
.carbon_server = "",
.carbon_name = ""
};
const struct setting_parser_info old_stats_setting_parser_info = {
.module_name = "stats",
.defines = old_stats_setting_defines,
.defaults = &old_stats_default_settings,
.type_offset = SIZE_MAX,
.struct_size = sizeof(struct old_stats_settings),
.parent_offset = SIZE_MAX
};
const struct old_stats_settings *stats_settings;
|