mailbox-list-fs-iter.c revision 89a126810703c666309310d0f3189e9834d70b5b
/* Copyright (c) 2002-2007 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "home-expand.h"
#include "unlink-directory.h"
#include "imap-match.h"
#include "mailbox-tree.h"
#include "mailbox-list-subscriptions.h"
#include "mailbox-list-fs.h"
#include <ctype.h>
#include <dirent.h>
#include <sys/stat.h>
struct list_dir_context {
struct list_dir_context *prev;
DIR *dirp;
char *real_path, *virtual_path;
unsigned int pattern_pos;
struct dirent dirent;
};
struct fs_list_iterate_context {
struct mailbox_list_iterate_context ctx;
ARRAY_DEFINE(valid_patterns, char *);
struct imap_match_glob *glob;
struct mailbox_tree_context *subs_tree;
struct mailbox_tree_iterate_context *tree_iter;
enum mailbox_info_flags inbox_flags;
const struct mailbox_info *(*next)(struct fs_list_iterate_context *ctx);
pool_t info_pool;
struct mailbox_info info;
struct list_dir_context *dir;
unsigned int inbox_match:1;
unsigned int inbox_found:1;
unsigned int inbox_listed:1;
};
static const struct mailbox_info *
fs_list_subs(struct fs_list_iterate_context *ctx);
static const struct mailbox_info *
fs_list_next(struct fs_list_iterate_context *ctx);
static int pattern_get_path_pos(const char *pattern, const char *path,
unsigned int *pos_r)
{
unsigned int i, j;
if (strncasecmp(path, "INBOX/", 6) == 0) {
/* make sure INBOX prefix is matched case-insensitively */
char *tmp = t_strdup_noconst(pattern);
if (strncmp(path, "INBOX/", 6) != 0)
path = t_strconcat("INBOX/", path + 6, NULL);
for (i = 0; tmp[i] != '/' && tmp[i] != '\0'; i++)
tmp[i] = i_toupper(tmp[i]);
pattern = tmp;
}
for (i = j = 0; path[i] != '\0'; i++) {
if (pattern[j] == '*')
return -1;
if (pattern[j] == '%') {
/* skip until we're at the next hierarchy separator */
if (path[i] == '/') {
/* assume that pattern matches. we can't be
sure, but it'll be checked later. */
for (j++; pattern[j] != '\0'; j++) {
if (pattern[j] == '*')
return -1;
if (pattern[j] == '/') {
j++;
break;
}
}
}
} else {
if (path[i] != pattern[j]) {
/* pattern doesn't match path at all */
return 0;
}
j++;
}
}
*pos_r = j;
return 1;
}
static bool pattern_has_wildcard_at(const char *pattern, const char *path)
{
unsigned int pos;
int ret;
if ((ret = pattern_get_path_pos(pattern, path, &pos)) < 0)
return TRUE;
if (ret == 0)
return FALSE;
for (; pattern[pos] != '\0' && pattern[pos] != '/'; pos++) {
if (pattern[pos] == '%' || pattern[pos] == '*')
return TRUE;
}
return FALSE;
}
static int list_opendir(struct fs_list_iterate_context *ctx,
const char *path, const char *list_path, DIR **dirp)
{
char *const *patterns;
unsigned int i;
/* if no patterns have wildcards at this point of the path, we don't
have to readdir() the files. instead we can just go through the
mailboxes listed in patterns. */
t_push();
patterns = array_idx(&ctx->valid_patterns, 0);
for (i = 0; patterns[i] != NULL; i++) {
if (pattern_has_wildcard_at(patterns[i], list_path))
break;
}
t_pop();
if (patterns[i] == NULL) {
*dirp = NULL;
return 1;
}
*dirp = opendir(*path == '\0' ? "/" : path);
if (*dirp != NULL)
return 1;
if (ENOTFOUND(errno)) {
/* root) user gave invalid hiearchy, ignore
sub) probably just race condition with other client
deleting the mailbox. */
return 0;
}
if (errno == EACCES) {
/* ignore permission errors */
return 0;
}
mailbox_list_set_critical(ctx->ctx.list,
"opendir(%s) failed: %m", path);
return -1;
}
struct mailbox_list_iterate_context *
fs_list_iter_init(struct mailbox_list *_list, const char *const *patterns,
enum mailbox_list_iter_flags flags)
{
struct fs_list_iterate_context *ctx;
const char *path;
char *pattern;
DIR *dirp;
int ret;
ctx = i_new(struct fs_list_iterate_context, 1);
ctx->ctx.list = _list;
ctx->ctx.flags = flags;
ctx->info_pool = pool_alloconly_create("fs list", 1024);
ctx->next = fs_list_next;
i_array_init(&ctx->valid_patterns, 8);
for (; *patterns != NULL; patterns++) {
/* check that we're not trying to do any "../../" lists */
if (mailbox_list_is_valid_pattern(_list, *patterns)) {
if (strcasecmp(*patterns, "INBOX") == 0) {
ctx->inbox_match = TRUE;
continue;
}
pattern = i_strdup(*patterns);
array_append(&ctx->valid_patterns, &pattern, 1);
}
}
(void)array_append_space(&ctx->valid_patterns); /* NULL-terminate */
if (array_count(&ctx->valid_patterns) == 1) {
/* we've only invalid patterns (or INBOX) */
return &ctx->ctx;
}
patterns = (const void *)array_idx(&ctx->valid_patterns, 0);
ctx->glob = imap_match_init_multiple(default_pool, patterns, TRUE, '/');
if ((flags & (MAILBOX_LIST_ITER_SELECT_SUBSCRIBED |
MAILBOX_LIST_ITER_RETURN_SUBSCRIBED)) != 0) {
/* we want to return MAILBOX_SUBSCRIBED flags, possibly for all
mailboxes. Build a mailbox tree of all the subscriptions. */
ctx->subs_tree = mailbox_tree_init('/');
if (mailbox_list_subscriptions_fill(&ctx->ctx,
ctx->subs_tree,
ctx->glob, FALSE) < 0) {
ctx->ctx.failed = TRUE;
return &ctx->ctx;
}
}
if ((flags & MAILBOX_LIST_ITER_SELECT_SUBSCRIBED) != 0) {
ctx->next = fs_list_subs;
ctx->tree_iter = mailbox_tree_iterate_init(ctx->subs_tree, NULL,
MAILBOX_MATCHED);
return &ctx->ctx;
}
path = mailbox_list_get_path(_list, NULL, MAILBOX_LIST_PATH_TYPE_DIR);
if ((ret = list_opendir(ctx, path, _list->ns->prefix, &dirp)) < 0)
return &ctx->ctx;
if (ret > 0) {
ctx->dir = i_new(struct list_dir_context, 1);
ctx->dir->dirp = dirp;
ctx->dir->real_path = i_strdup(path);
ctx->dir->virtual_path = i_strdup(_list->ns->prefix);
}
return &ctx->ctx;
}
static void list_dir_context_free(struct list_dir_context *dir)
{
if (dir->dirp != NULL)
(void)closedir(dir->dirp);
i_free(dir->real_path);
i_free(dir->virtual_path);
i_free(dir);
}
int fs_list_iter_deinit(struct mailbox_list_iterate_context *_ctx)
{
struct fs_list_iterate_context *ctx =
(struct fs_list_iterate_context *)_ctx;
char **patterns;
unsigned int i, count;
int ret = ctx->ctx.failed ? -1 : 0;
patterns = array_get_modifiable(&ctx->valid_patterns, &count);
for (i = 0; i < count; i++)
i_free(patterns[i]);
array_free(&ctx->valid_patterns);
while (ctx->dir != NULL) {
struct list_dir_context *dir = ctx->dir;
ctx->dir = dir->prev;
list_dir_context_free(dir);
}
if (ctx->tree_iter != NULL)
mailbox_tree_iterate_deinit(&ctx->tree_iter);
if (ctx->subs_tree != NULL)
mailbox_tree_deinit(&ctx->subs_tree);
if (ctx->info_pool != NULL)
pool_unref(&ctx->info_pool);
if (ctx->glob != NULL)
imap_match_deinit(&ctx->glob);
i_free(ctx);
return ret;
}
const struct mailbox_info *
fs_list_iter_next(struct mailbox_list_iterate_context *_ctx)
{
struct fs_list_iterate_context *ctx =
(struct fs_list_iterate_context *)_ctx;
if (ctx->ctx.failed)
return NULL;
return ctx->next(ctx);
}
static void
path_split(const char *path, const char **dir_r, const char **fname_r)
{
const char *p;
p = strrchr(path, '/');
if (p == NULL) {
*dir_r = "";
*fname_r = path;
} else {
*dir_r = t_strdup_until(path, p);
*fname_r = p + 1;
}
}
static enum mailbox_info_flags
fs_list_get_subscription_flags(struct fs_list_iterate_context *ctx,
const char *mailbox)
{
struct mailbox_node *node;
if (ctx->subs_tree == NULL)
return 0;
node = mailbox_tree_lookup(ctx->subs_tree, mailbox);
if (node == NULL)
return 0;
return node->flags & (MAILBOX_SUBSCRIBED | MAILBOX_CHILD_SUBSCRIBED);
}
static struct mailbox_info *fs_list_inbox(struct fs_list_iterate_context *ctx)
{
const char *inbox_path, *dir, *fname;
ctx->info.flags = 0;
ctx->info.name = "INBOX";
t_push();
inbox_path = mailbox_list_get_path(ctx->ctx.list, "INBOX",
MAILBOX_LIST_PATH_TYPE_DIR);
path_split(inbox_path, &dir, &fname);
if (ctx->ctx.list->v.iter_is_mailbox(&ctx->ctx, dir, fname,
MAILBOX_LIST_FILE_TYPE_UNKNOWN,
&ctx->info.flags) < 0)
ctx->ctx.failed = TRUE;
t_pop();
ctx->info.flags |= fs_list_get_subscription_flags(ctx, "INBOX");
return &ctx->info;
}
static int
list_file(struct fs_list_iterate_context *ctx, const struct dirent *d)
{
const char *fname = d->d_name;
struct list_dir_context *dir;
const char *list_path, *real_path, *vpath, *inbox_path;
DIR *dirp;
enum imap_match_result match, match2;
int ret;
/* skip . and .. */
if (fname[0] == '.' &&
(fname[1] == '\0' ||
(fname[1] == '.' && fname[2] == '\0')))
return 0;
/* check the pattern */
list_path = t_strconcat(ctx->dir->virtual_path, fname, NULL);
match = imap_match(ctx->glob, list_path);
if (match != IMAP_MATCH_YES && (match & IMAP_MATCH_CHILDREN) == 0)
return 0;
/* get the info.flags using callback */
ctx->info.flags = 0;
ret = ctx->ctx.list->v.
iter_is_mailbox(&ctx->ctx, ctx->dir->real_path, fname,
mailbox_list_get_file_type(d),
&ctx->info.flags);
if (ret <= 0)
return ret;
ctx->info.flags |= fs_list_get_subscription_flags(ctx, list_path);
/* make sure we give only one correct INBOX */
real_path = t_strconcat(ctx->dir->real_path, "/", fname, NULL);
if ((ctx->ctx.list->ns->flags & NAMESPACE_FLAG_INBOX) != 0 &&
strcasecmp(list_path, "INBOX") == 0) {
if (ctx->inbox_listed) {
/* already listed the INBOX */
return 0;
}
inbox_path = mailbox_list_get_path(ctx->ctx.list, "INBOX",
MAILBOX_LIST_PATH_TYPE_DIR);
if (strcmp(real_path, inbox_path) == 0) {
/* delay listing in case there's a INBOX/ directory */
ctx->inbox_found = TRUE;
ctx->inbox_flags = ctx->info.flags;
return 0;
}
if (strcmp(fname, "INBOX") != 0 ||
(ctx->info.flags & MAILBOX_NOINFERIORS) != 0) {
/* duplicate INBOX, can't show this */
return 0;
}
/* INBOX/ directory. show the INBOX list now */
if (!ctx->inbox_found) {
enum mailbox_info_flags dir_flags = ctx->info.flags;
(void)fs_list_inbox(ctx);
ctx->info.flags &= ~(MAILBOX_NOINFERIORS |
MAILBOX_NOCHILDREN);
ctx->info.flags |= dir_flags;
ctx->inbox_found = TRUE;
} else {
ctx->info.flags &= ~MAILBOX_NOSELECT;
ctx->info.flags |= ctx->inbox_flags;
}
ctx->inbox_listed = TRUE;
}
if ((ctx->info.flags & MAILBOX_NOINFERIORS) == 0) {
/* subdirectory. scan inside it. */
vpath = t_strconcat(list_path, "/", NULL);
match2 = imap_match(ctx->glob, vpath);
if (match == IMAP_MATCH_YES)
ctx->info.name = p_strdup(ctx->info_pool, list_path);
else if (match2 == IMAP_MATCH_YES)
ctx->info.name = p_strdup(ctx->info_pool, vpath);
else
ctx->info.name = NULL;
ret = (match2 & (IMAP_MATCH_YES | IMAP_MATCH_CHILDREN)) == 0 ?
0 : list_opendir(ctx, real_path, vpath, &dirp);
if (ret > 0) {
dir = i_new(struct list_dir_context, 1);
dir->dirp = dirp;
dir->real_path = i_strdup(real_path);
dir->virtual_path = i_strconcat(list_path, "/", NULL);
dir->prev = ctx->dir;
ctx->dir = dir;
} else if (ret < 0)
return -1;
return match == IMAP_MATCH_YES || match2 == IMAP_MATCH_YES;
} else if (match == IMAP_MATCH_YES) {
ctx->info.name = p_strdup(ctx->info_pool, list_path);
return 1;
}
return 0;
}
static const struct mailbox_info *
fs_list_subs(struct fs_list_iterate_context *ctx)
{
struct mailbox_node *node;
enum mailbox_info_flags flags;
const char *path, *dir, *fname;
node = mailbox_tree_iterate_next(ctx->tree_iter, &ctx->info.name);
if (node == NULL)
return NULL;
/* subscription list has real knowledge of only subscription flags */
flags = node->flags & (MAILBOX_SUBSCRIBED | MAILBOX_CHILD_SUBSCRIBED);
if ((ctx->ctx.flags & MAILBOX_LIST_ITER_RETURN_NO_FLAGS) != 0 &&
(ctx->ctx.flags & MAILBOX_LIST_ITER_RETURN_CHILDREN) == 0) {
ctx->info.flags = flags;
return &ctx->info;
}
t_push();
path = mailbox_list_get_path(ctx->ctx.list, ctx->info.name,
MAILBOX_LIST_PATH_TYPE_DIR);
path_split(path, &dir, &fname);
if (ctx->ctx.list->v.iter_is_mailbox(&ctx->ctx, dir, fname,
MAILBOX_LIST_FILE_TYPE_UNKNOWN,
&ctx->info.flags) < 0)
ctx->ctx.failed = TRUE;
t_pop();
ctx->info.flags |= flags;
return &ctx->info;
}
static struct dirent *fs_list_dir_next(struct fs_list_iterate_context *ctx)
{
struct list_dir_context *dir = ctx->dir;
char *const *patterns;
const char *fname, *path, *p;
unsigned int pos;
struct stat st;
int ret;
if (dir->dirp != NULL)
return readdir(dir->dirp);
t_push();
for (;;) {
patterns = array_idx(&ctx->valid_patterns, 0);
if (patterns[dir->pattern_pos] == NULL) {
t_pop();
return NULL;
}
patterns += dir->pattern_pos;
dir->pattern_pos++;
ret = pattern_get_path_pos(*patterns, dir->virtual_path, &pos);
if (ret == 0)
continue;
i_assert(ret > 0);
/* get the filename from the pattern */
p = strchr(*patterns + pos, '/');
fname = p == NULL ? *patterns + pos :
t_strdup_until(*patterns + pos, p);
/* lstat() it to make sure it exists */
path = t_strdup_printf("%s/%s", dir->real_path, fname);
if (lstat(path, &st) < 0) {
if (!ENOTFOUND(errno) && errno != EACCES)
i_error("fs list: lstat(%s) failed: %m", path);
continue;
}
#ifdef HAVE_DIRENT_D_TYPE
if (S_ISREG(st.st_mode))
dir->dirent.d_type = DT_REG;
else if (S_ISDIR(st.st_mode))
dir->dirent.d_type = DT_DIR;
else if (S_ISLNK(st.st_mode))
dir->dirent.d_type = DT_LNK;
else
dir->dirent.d_type = DT_UNKNOWN;
#endif
if (i_strocpy(dir->dirent.d_name, fname,
sizeof(dir->dirent.d_name)) < 0) {
/* name too large.. shouldn't happen. */
continue;
}
break;
}
t_pop();
return &dir->dirent;
}
static const struct mailbox_info *
fs_list_next(struct fs_list_iterate_context *ctx)
{
struct list_dir_context *dir;
struct dirent *d;
int ret;
p_clear(ctx->info_pool);
while (ctx->dir != NULL) {
/* NOTE: list_file() may change ctx->dir */
while ((d = fs_list_dir_next(ctx)) != NULL) {
t_push();
ret = list_file(ctx, d);
t_pop();
if (ret > 0)
return &ctx->info;
if (ret < 0) {
ctx->ctx.failed = TRUE;
return NULL;
}
}
dir = ctx->dir;
ctx->dir = dir->prev;
list_dir_context_free(dir);
}
if (!ctx->inbox_found &&
(ctx->ctx.list->ns->flags & NAMESPACE_FLAG_INBOX) != 0 &&
((ctx->glob != NULL &&
imap_match(ctx->glob, "INBOX") == IMAP_MATCH_YES) ||
ctx->inbox_match)) {
/* INBOX wasn't seen while listing other mailboxes. It might
be located elsewhere. */
ctx->inbox_listed = TRUE;
ctx->inbox_found = TRUE;
return fs_list_inbox(ctx);
}
if (!ctx->inbox_listed && ctx->inbox_found) {
/* INBOX was found, but we delayed listing it. Show it now. */
ctx->inbox_listed = TRUE;
ctx->info.flags = ctx->inbox_flags;
ctx->info.name = "INBOX";
return &ctx->info;
}
/* finished */
return NULL;
}