} else if (errno == ENOENT) {
mail_storage_set_error(storage, MAIL_ERROR_NOTFOUND,
"Mailbox was deleted while it was being created");
- } else if (errno == EACCES && storage->ns->type == NAMESPACE_SHARED) {
- /* shared namespace, don't log permission errors */
- mail_storage_set_error(storage, MAIL_ERROR_PERM,
- MAIL_ERRSTR_NO_PERMISSION);
- return -1;
+ } else if (errno == EACCES) {
+ if (storage->ns->type == NAMESPACE_SHARED) {
+ /* shared namespace, don't log permission errors */
+ mail_storage_set_error(storage, MAIL_ERROR_PERM,
+ MAIL_ERRSTR_NO_PERMISSION);
+ return -1;
+ }
+ mail_storage_set_critical(storage, "%s",
+ mail_error_create_eacces_msg("mkdir", dir));
} else {
mail_storage_set_critical(storage,
"mkdir(%s) failed: %m", dir);
return TRUE;
}
-const char *mail_error_eacces_msg(const char *func, const char *path)
+static const char *
+mail_error_eacces_msg_full(const char *func, const char *path, bool creating)
{
const char *prev_path = path, *dir = "/", *p;
const struct passwd *pw;
while ((p = strrchr(prev_path, '/')) != NULL) {
dir = t_strdup_until(prev_path, p);
ret = stat(dir, &st);
- if (ret == 0 || errno != EACCES)
+ if (ret == 0)
+ break;
+ if (errno == EACCES) {
+ /* see if we have access to parent directory */
+ } else if (errno == ENOENT && creating) {
+ /* probably mkdir_parents() failed here, find the first
+ parent directory we couldn't create */
+ } else {
+ /* some other error, can't handle it */
+ str_printfa(errmsg, " stat(%s) failed: %m", dir);
break;
+ }
prev_path = dir;
dir = "/";
}
if (ret == 0) {
- if (access(dir, X_OK) < 0 && errno == EACCES)
- str_printfa(errmsg, " missing +x perm: %s", dir);
- else if (prev_path == path &&
- access(path, R_OK) < 0 && errno == EACCES)
- str_printfa(errmsg, " missing +r perm: %s", path);
- else
+ /* dir is the first parent directory we can stat() */
+ if (access(dir, X_OK) < 0) {
+ if (errno == EACCES)
+ str_printfa(errmsg, " missing +x perm: %s", dir);
+ else
+ str_printfa(errmsg, " access(%s, x) failed: %m", dir);
+ } else if (prev_path == path && access(path, R_OK) < 0) {
+ if (errno == EACCES)
+ str_printfa(errmsg, " missing +r perm: %s", path);
+ else
+ str_printfa(errmsg, " access(%s, r) failed: %m", path);
+ } else if (creating && access(dir, W_OK) < 0) {
+ if (errno == EACCES)
+ str_printfa(errmsg, " missing +w perm: %s", dir);
+ else
+ str_printfa(errmsg, " access(%s, w) failed: %m", dir);
+ } else
str_printfa(errmsg, " UNIX perms seem ok, ACL problem?");
}
str_append_c(errmsg, ')');
return str_c(errmsg);
}
+
+const char *mail_error_eacces_msg(const char *func, const char *path)
+{
+ return mail_error_eacces_msg_full(func, path, FALSE);
+}
+
+const char *mail_error_create_eacces_msg(const char *func, const char *path)
+{
+ return mail_error_eacces_msg_full(func, path, TRUE);
+}
bool mail_error_from_errno(enum mail_error *error_r,
const char **error_string_r);
-/* Build a helpful error message for a failed EACCESS syscall. */
+/* Build a helpful error message for a failed EACCES syscall. */
const char *mail_error_eacces_msg(const char *func, const char *path);
+/* Build a helpful error message for a failed EACCES syscall that tried to
+ write to directory (create, rename, etc). */
+const char *mail_error_create_eacces_msg(const char *func, const char *path);
#endif