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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
/* Copyright (c) 2008-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "str.h"
#include "ioloop.h"
#include "var-expand.h"
#include "index-storage.h"
#include "mail-storage-service.h"
#include "mailbox-list-private.h"
#include "fail-mail-storage.h"
#include "shared-storage.h"
#include <ctype.h>
extern struct mail_storage shared_storage;
static struct mail_storage *shared_storage_alloc(void)
{
struct shared_storage *storage;
pool_t pool;
pool = pool_alloconly_create("shared storage", 1024);
storage = p_new(pool, struct shared_storage, 1);
storage->storage = shared_storage;
storage->storage.pool = pool;
return &storage->storage;
}
static int
shared_storage_create(struct mail_storage *_storage, struct mail_namespace *ns,
const char **error_r)
{
struct shared_storage *storage = SHARED_STORAGE(_storage);
const char *driver, *p;
char *wildcardp, key;
bool have_username;
/* location must begin with the actual mailbox driver */
p = strchr(ns->set->location, ':');
if (p == NULL) {
*error_r = "Shared mailbox location not prefixed with driver";
return -1;
}
driver = t_strdup_until(ns->set->location, p);
storage->location = p_strdup(_storage->pool, ns->set->location);
storage->unexpanded_location =
p_strdup(_storage->pool, ns->unexpanded_set->location);
storage->storage_class_name = p_strdup(_storage->pool, driver);
if (mail_user_get_storage_class(_storage->user, driver) == NULL &&
strcmp(driver, "auto") != 0) {
*error_r = t_strconcat("Unknown shared storage driver: ",
driver, NULL);
return -1;
}
wildcardp = strchr(ns->prefix, '%');
if (wildcardp == NULL) {
*error_r = "Shared namespace prefix doesn't contain %";
return -1;
}
storage->ns_prefix_pattern = p_strdup(_storage->pool, wildcardp);
have_username = FALSE;
for (p = storage->ns_prefix_pattern; *p != '\0'; p++) {
if (*p != '%')
continue;
key = p[1];
if (key == 'u' || key == 'n')
have_username = TRUE;
else if (key != '%' && key != 'd')
break;
}
if (*p != '\0') {
*error_r = "Shared namespace prefix contains unknown variables";
return -1;
}
if (!have_username) {
*error_r = "Shared namespace prefix doesn't contain %u or %n";
return -1;
}
if (p[-1] != mail_namespace_get_sep(ns) &&
(ns->flags & (NAMESPACE_FLAG_LIST_PREFIX |
NAMESPACE_FLAG_LIST_CHILDREN)) != 0) {
*error_r = "Shared namespace prefix doesn't end with hierarchy separator";
return -1;
}
/* truncate prefix after the above checks are done, so they can log
the full prefix in error conditions */
*wildcardp = '\0';
ns->prefix_len = strlen(ns->prefix);
return 0;
}
static void
shared_storage_get_list_settings(const struct mail_namespace *ns ATTR_UNUSED,
struct mailbox_list_settings *set)
{
set->layout = "shared";
}
static void
get_nonexistent_user_location(struct shared_storage *storage,
const char *username, string_t *location)
{
/* user wasn't found. we'll still need to create the storage
to avoid exposing which users exist and which don't. */
str_append(location, storage->storage_class_name);
str_append_c(location, ':');
/* use a reachable but nonexistent path as the mail root directory */
str_append(location, storage->storage.user->set->base_dir);
str_append(location, "/user-not-found/");
str_append(location, username);
}
static bool shared_namespace_exists(struct mail_namespace *ns)
{
const char *path;
struct stat st;
if (!mailbox_list_get_root_path(ns->list, MAILBOX_LIST_PATH_TYPE_DIR,
&path)) {
/* we can't know if this exists */
return TRUE;
}
return stat(path, &st) == 0;
}
int shared_storage_get_namespace(struct mail_namespace **_ns,
const char **_name)
{
struct mail_storage *_storage = (*_ns)->storage;
struct mailbox_list *list = (*_ns)->list;
struct shared_storage *storage = SHARED_STORAGE(_storage);
struct mail_user *user = _storage->user;
struct mail_namespace *new_ns, *ns = *_ns;
struct mail_namespace_settings *ns_set, *unexpanded_ns_set;
struct mail_user *owner;
const char *domain = NULL, *username = NULL, *userdomain = NULL;
const char *name, *p, *next, **dest, *error;
string_t *prefix, *location;
char ns_sep = mail_namespace_get_sep(ns);
int ret;
p = storage->ns_prefix_pattern;
for (name = *_name; *p != '\0';) {
if (*p != '%') {
if (*p != *name)
break;
p++; name++;
continue;
}
switch (*++p) {
case 'd':
dest = &domain;
break;
case 'n':
dest = &username;
break;
case 'u':
dest = &userdomain;
break;
default:
/* we checked this already above */
i_unreached();
}
p++;
next = strchr(name, *p != '\0' ? *p : ns_sep);
if (next == NULL) {
*dest = name;
name = "";
break;
}
*dest = t_strdup_until(name, next);
name = next;
}
if (*p != '\0') {
if (*name == '\0' ||
(name[1] == '\0' && *name == ns_sep)) {
/* trying to open <prefix>/<user> mailbox */
name = "INBOX";
} else {
mailbox_list_set_critical(list,
"Invalid namespace prefix %s vs %s",
storage->ns_prefix_pattern, *_name);
return -1;
}
}
/* successfully matched the name. */
if (userdomain != NULL) {
/* user@domain given */
domain = strchr(userdomain, '@');
if (domain == NULL)
username = userdomain;
else {
username = t_strdup_until(userdomain, domain);
domain++;
}
} else if (username == NULL) {
/* trying to open namespace "shared/domain"
namespace prefix. */
mailbox_list_set_error(list, MAIL_ERROR_NOTFOUND,
T_MAIL_ERR_MAILBOX_NOT_FOUND(*_name));
return -1;
} else {
if (domain == NULL) {
/* no domain given, use ours (if we have one) */
domain = i_strchr_to_next(user->username, '@');
}
userdomain = domain == NULL ? username :
t_strconcat(username, "@", domain, NULL);
}
if (*userdomain == '\0') {
mailbox_list_set_error(list, MAIL_ERROR_PARAMS,
"Empty username doesn't exist");
return -1;
}
/* expand the namespace prefix and see if it already exists.
this should normally happen only when the mailbox is being opened */
struct var_expand_table tab[] = {
{ 'u', userdomain, "user" },
{ 'n', username, "username" },
{ 'd', domain, "domain" },
{ 'h', NULL, "home" },
{ '\0', NULL, NULL }
};
prefix = t_str_new(128);
str_append(prefix, ns->prefix);
if (var_expand(prefix, storage->ns_prefix_pattern, tab, &error) <= 0) {
mailbox_list_set_critical(list,
"Failed to expand namespace prefix '%s': %s",
storage->ns_prefix_pattern, error);
return -1;
}
*_ns = mail_namespace_find_prefix(user->namespaces, str_c(prefix));
if (*_ns != NULL) {
*_name = mailbox_list_get_storage_name(ns->list,
t_strconcat(ns->prefix, name, NULL));
return 0;
}
owner = mail_user_alloc(event_get_parent(user->event), userdomain,
user->set_info, user->unexpanded_set);
owner->_service_user = user->_service_user;
mail_storage_service_user_ref(owner->_service_user);
owner->creator = user;
owner->autocreated = TRUE;
owner->session_id = p_strdup(owner->pool, user->session_id);
if (mail_user_init(owner, &error) < 0) {
if (!owner->nonexistent) {
mailbox_list_set_critical(list,
"Couldn't create namespace '%s' for user %s: %s",
ns->prefix, userdomain, error);
mail_user_deinit(&owner);
return -1;
}
ret = 0;
} else if (!var_has_key(storage->location, 'h', "home")) {
ret = 1;
} else {
/* we'll need to look up the user's home directory */
if ((ret = mail_user_get_home(owner, &tab[3].value)) < 0) {
mailbox_list_set_critical(list, "Namespace '%s': "
"Could not lookup home for user %s",
ns->prefix, userdomain);
mail_user_deinit(&owner);
return -1;
}
}
location = t_str_new(256);
if (ret > 0 &&
var_expand(location, storage->location, tab, &error) <= 0) {
mailbox_list_set_critical(list,
"Failed to expand namespace location '%s': %s",
storage->location, error);
return -1;
}
/* create the new namespace */
new_ns = i_new(struct mail_namespace, 1);
new_ns->refcount = 1;
new_ns->type = MAIL_NAMESPACE_TYPE_SHARED;
new_ns->user = user;
new_ns->prefix = i_strdup(str_c(prefix));
new_ns->owner = owner;
new_ns->flags = (NAMESPACE_FLAG_SUBSCRIPTIONS & ns->flags) |
NAMESPACE_FLAG_LIST_PREFIX | NAMESPACE_FLAG_HIDDEN |
NAMESPACE_FLAG_AUTOCREATED | NAMESPACE_FLAG_INBOX_ANY;
new_ns->user_set = user->set;
new_ns->mail_set = _storage->set;
i_array_init(&new_ns->all_storages, 2);
if (ret <= 0) {
get_nonexistent_user_location(storage, userdomain, location);
new_ns->flags |= NAMESPACE_FLAG_UNUSABLE;
e_debug(ns->user->event,
"shared: Tried to access mails of "
"nonexistent user %s", userdomain);
}
ns_set = p_new(user->pool, struct mail_namespace_settings, 1);
ns_set->type = "shared";
ns_set->separator = p_strdup_printf(user->pool, "%c", ns_sep);
ns_set->prefix = new_ns->prefix;
ns_set->location = p_strdup(user->pool, str_c(location));
ns_set->hidden = TRUE;
ns_set->list = "yes";
new_ns->set = ns_set;
unexpanded_ns_set =
p_new(user->pool, struct mail_namespace_settings, 1);
*unexpanded_ns_set = *ns_set;
unexpanded_ns_set->location =
p_strdup(user->pool, storage->unexpanded_location);
new_ns->unexpanded_set = unexpanded_ns_set;
/* We need to create a prefix="" namespace for the owner */
if (mail_namespaces_init_location(owner, str_c(location), &error) < 0) {
/* owner gets freed by namespace deinit */
mail_namespace_destroy(new_ns);
return -1;
}
if (mail_storage_create(new_ns, NULL, _storage->flags |
MAIL_STORAGE_FLAG_NO_AUTOVERIFY, &error) < 0) {
mailbox_list_set_critical(list, "Namespace '%s': %s",
new_ns->prefix, error);
/* owner gets freed by namespace deinit */
mail_namespace_destroy(new_ns);
return -1;
}
if ((new_ns->flags & NAMESPACE_FLAG_UNUSABLE) == 0 &&
!shared_namespace_exists(new_ns)) {
/* this user doesn't have a usable storage */
new_ns->flags |= NAMESPACE_FLAG_UNUSABLE;
}
/* mark the shared namespace root as usable, since it now has
child namespaces */
ns->flags |= NAMESPACE_FLAG_USABLE;
*_name = mailbox_list_get_storage_name(new_ns->list,
t_strconcat(new_ns->prefix, name, NULL));
*_ns = new_ns;
if (_storage->class_flags == 0) {
/* flags are unset if we were using "auto" storage */
_storage->class_flags =
mail_namespace_get_default_storage(new_ns)->class_flags;
}
mail_user_add_namespace(user, &new_ns);
return 0;
}
struct mail_storage shared_storage = {
.name = MAIL_SHARED_STORAGE_NAME,
.class_flags = 0, /* unknown at this point */
.v = {
NULL,
shared_storage_alloc,
shared_storage_create,
index_storage_destroy,
NULL,
shared_storage_get_list_settings,
NULL,
fail_mailbox_alloc,
NULL,
NULL,
}
};
|