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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
/* Copyright (c) 2005-2018 Dovecot authors, see the included COPYING file */
#include "imap-common.h"
#include "str.h"
#include "ostream.h"
#include "imap-quote.h"
#include "mail-namespace.h"
#include "imap-commands.h"
#include "quota.h"
#include "quota-plugin.h"
#include "imap-quota-plugin.h"
#define QUOTA_USER_SEPARATOR ':'
const char *imap_quota_plugin_version = DOVECOT_ABI_VERSION;
static struct module *imap_quota_module;
static imap_client_created_func_t *next_hook_client_created;
static const char *
imap_quota_root_get_name(struct mail_user *user, struct mail_user *owner,
struct quota_root *root)
{
const char *name;
name = quota_root_get_name(root);
if (user == owner || owner == NULL)
return name;
return t_strdup_printf("%s%c%s", owner->username,
QUOTA_USER_SEPARATOR, name);
}
static int
quota_reply_write(string_t *str, struct mail_user *user,
struct mail_user *owner, struct quota_root *root)
{
const char *name, *const *list, *error;
unsigned int i;
uint64_t value, limit;
size_t prefix_len, orig_len = str_len(str);
enum quota_get_result ret = QUOTA_GET_RESULT_UNLIMITED;
str_append(str, "* QUOTA ");
name = imap_quota_root_get_name(user, owner, root);
imap_append_astring(str, name);
str_append(str, " (");
prefix_len = str_len(str);
list = quota_root_get_resources(root);
for (i = 0; *list != NULL; list++) {
ret = quota_get_resource(root, "", *list, &value, &limit, &error);
if (ret == QUOTA_GET_RESULT_INTERNAL_ERROR) {
i_error("Failed to get quota resource %s: %s",
*list, error);
break;
}
if (ret == QUOTA_GET_RESULT_LIMITED) {
if (i > 0)
str_append_c(str, ' ');
str_printfa(str, "%s %"PRIu64" %"PRIu64, *list,
value, limit);
i++;
}
}
if (str_len(str) == prefix_len) {
/* this quota root doesn't have any quota actually enabled. */
str_truncate(str, orig_len);
} else {
str_append(str, ")\r\n");
}
return ret == QUOTA_GET_RESULT_INTERNAL_ERROR ? -1 : 0;
}
static bool cmd_getquotaroot(struct client_command_context *cmd)
{
struct client *client = cmd->client;
struct quota_user *quser = QUOTA_USER_CONTEXT(client->user);
struct mail_namespace *ns;
struct mailbox *box;
struct quota_root_iter *iter;
struct quota_root *root;
const char *mailbox, *orig_mailbox, *name;
string_t *quotaroot_reply, *quota_reply;
int ret;
/* <mailbox> */
if (!client_read_string_args(cmd, 1, &mailbox))
return FALSE;
orig_mailbox = mailbox;
ns = client_find_namespace(cmd, &mailbox);
if (ns == NULL)
return TRUE;
if (quser == NULL) {
client_send_tagline(cmd, "OK No quota.");
return TRUE;
}
if (ns->owner != NULL && ns->owner != client->user) {
client_send_tagline(cmd, "NO Not showing other users' quota.");
return TRUE;
}
box = mailbox_alloc(ns->list, mailbox, MAILBOX_FLAG_READONLY);
/* build QUOTAROOT reply and QUOTA reply for all quota roots */
quotaroot_reply = t_str_new(128);
quota_reply = t_str_new(256);
str_append(quotaroot_reply, "* QUOTAROOT ");
imap_append_astring(quotaroot_reply, orig_mailbox);
ret = 0;
iter = quota_root_iter_init(box);
while ((root = quota_root_iter_next(iter)) != NULL) {
if (quota_root_is_hidden(root))
continue;
str_append_c(quotaroot_reply, ' ');
name = imap_quota_root_get_name(client->user, ns->owner, root);
imap_append_astring(quotaroot_reply, name);
if (quota_reply_write(quota_reply, client->user, ns->owner, root) < 0)
ret = -1;
}
quota_root_iter_deinit(&iter);
mailbox_free(&box);
/* send replies */
if (ret < 0)
client_send_tagline(cmd, "NO Internal quota calculation error.");
else if (str_len(quota_reply) == 0)
client_send_tagline(cmd, "OK No quota.");
else {
client_send_line(client, str_c(quotaroot_reply));
o_stream_nsend(client->output, str_data(quota_reply),
str_len(quota_reply));
client_send_tagline(cmd, "OK Getquotaroot completed.");
}
return TRUE;
}
static bool
parse_quota_root(struct mail_user *user, const char *root_name,
struct mail_user **owner_r, struct quota_root **root_r)
{
const char *p;
*owner_r = user;
*root_r = quota_root_lookup(user, root_name);
if (*root_r != NULL || !user->admin)
return *root_r != NULL;
/* we're an admin. see if there's a quota root for another user. */
p = strchr(root_name, QUOTA_USER_SEPARATOR);
if (p != NULL) {
*owner_r = mail_user_find(user, t_strdup_until(root_name, p));
*root_r = *owner_r == NULL ? NULL :
quota_root_lookup(*owner_r, p + 1);
}
return *root_r != NULL;
}
static bool cmd_getquota(struct client_command_context *cmd)
{
struct mail_user *owner;
struct quota_root *root;
const char *root_name;
string_t *quota_reply;
/* <quota root> */
if (!client_read_string_args(cmd, 1, &root_name))
return FALSE;
if (!parse_quota_root(cmd->client->user, root_name, &owner, &root)) {
client_send_tagline(cmd, "NO Quota root doesn't exist.");
return TRUE;
}
quota_reply = t_str_new(128);
if (quota_reply_write(quota_reply, cmd->client->user, owner, root) < 0)
client_send_tagline(cmd, "NO Internal quota calculation error.");
else {
o_stream_nsend(cmd->client->output, str_data(quota_reply),
str_len(quota_reply));
client_send_tagline(cmd, "OK Getquota completed.");
}
return TRUE;
}
static bool cmd_setquota(struct client_command_context *cmd)
{
struct quota_root *root;
struct mail_user *owner;
const struct imap_arg *args, *list_args;
const char *root_name, *name, *value_str, *client_error;
uint64_t value;
/* <quota root> <resource limits> */
if (!client_read_args(cmd, 2, 0, &args))
return FALSE;
if (!imap_arg_get_astring(&args[0], &root_name) ||
!imap_arg_get_list(&args[1], &list_args)) {
client_send_command_error(cmd, "Invalid arguments.");
return TRUE;
}
if (!cmd->client->user->admin) {
client_send_tagline(cmd, "NO Quota can be changed only by admin.");
return TRUE;
}
if (!parse_quota_root(cmd->client->user, root_name, &owner, &root)) {
client_send_tagline(cmd, "NO Quota root doesn't exist.");
return TRUE;
}
for (; !IMAP_ARG_IS_EOL(list_args); list_args += 2) {
if (!imap_arg_get_atom(&list_args[0], &name) ||
!imap_arg_get_atom(&list_args[1], &value_str) ||
str_to_uint64(value_str, &value) < 0) {
client_send_command_error(cmd, "Invalid arguments.");
return TRUE;
}
if (quota_set_resource(root, name, value, &client_error) < 0) {
client_send_command_error(cmd, client_error);
return TRUE;
}
}
client_send_tagline(cmd, "OK Setquota completed.");
return TRUE;
}
static void imap_quota_client_created(struct client **client)
{
if (mail_user_is_plugin_loaded((*client)->user, imap_quota_module))
client_add_capability(*client, "QUOTA");
if (next_hook_client_created != NULL)
next_hook_client_created(client);
}
void imap_quota_plugin_init(struct module *module)
{
command_register("GETQUOTAROOT", cmd_getquotaroot, 0);
command_register("GETQUOTA", cmd_getquota, 0);
command_register("SETQUOTA", cmd_setquota, 0);
imap_quota_module = module;
next_hook_client_created =
imap_client_created_hook_set(imap_quota_client_created);
}
void imap_quota_plugin_deinit(void)
{
command_unregister("GETQUOTAROOT");
command_unregister("GETQUOTA");
command_unregister("SETQUOTA");
imap_client_created_hook_set(next_hook_client_created);
}
const char *imap_quota_plugin_dependencies[] = { "quota", NULL };
const char imap_quota_plugin_binary_dependency[] = "imap";
|