Skip to content
Snippets Groups Projects
Commit 22446bdd authored by Stephan Bosch's avatar Stephan Bosch Committed by Timo Sirainen
Browse files

lib-sieve: sieve-storage - Properly set error code and message for sieve_storage_setup_bin_path()

parent 245fc47d
No related branches found
No related tags found
No related merge requests found
...@@ -573,7 +573,7 @@ int sieve_script_binary_save_default(struct sieve_script *script ATTR_UNUSED, ...@@ -573,7 +573,7 @@ int sieve_script_binary_save_default(struct sieve_script *script ATTR_UNUSED,
str_begins_with(path, storage->bin_path) && str_begins_with(path, storage->bin_path) &&
sieve_storage_setup_bin_path( sieve_storage_setup_bin_path(
script->storage, mkdir_get_executable_mode(save_mode)) < 0) { script->storage, mkdir_get_executable_mode(save_mode)) < 0) {
*error_code_r = SIEVE_ERROR_TEMP_FAILURE; *error_code_r = script->storage->error_code;
return -1; return -1;
} }
......
...@@ -624,19 +624,22 @@ int sieve_storage_setup_bin_path(struct sieve_storage *storage, mode_t mode) ...@@ -624,19 +624,22 @@ int sieve_storage_setup_bin_path(struct sieve_storage *storage, mode_t mode)
const char *bin_path = storage->bin_path; const char *bin_path = storage->bin_path;
struct stat st; struct stat st;
if (bin_path == NULL) if (bin_path == NULL) {
sieve_storage_set_critical(
storage, "script_bin_path not configured for storage");
return -1; return -1;
}
if (stat(bin_path, &st) == 0) if (stat(bin_path, &st) == 0)
return 0; return 0;
if (errno == EACCES) { if (errno == EACCES) {
e_error(storage->event, sieve_storage_set_critical(storage,
"Failed to setup directory for binaries: " "Failed to setup directory for binaries: "
"%s", eacces_error_get("stat", bin_path)); "%s", eacces_error_get("stat", bin_path));
return -1; return -1;
} else if (errno != ENOENT) { } else if (errno != ENOENT) {
e_error(storage->event, sieve_storage_set_critical(storage,
"Failed to setup directory for binaries: " "Failed to setup directory for binaries: "
"stat(%s) failed: %m", "stat(%s) failed: %m",
bin_path); bin_path);
...@@ -653,16 +656,16 @@ int sieve_storage_setup_bin_path(struct sieve_storage *storage, mode_t mode) ...@@ -653,16 +656,16 @@ int sieve_storage_setup_bin_path(struct sieve_storage *storage, mode_t mode)
case EEXIST: case EEXIST:
return 0; return 0;
case ENOENT: case ENOENT:
e_error(storage->event, sieve_storage_set_critical(storage,
"Directory for binaries was deleted while it was being created"); "Directory for binaries was deleted while it was being created");
break; break;
case EACCES: case EACCES:
e_error(storage->event, sieve_storage_set_critical(storage,
"%s", eacces_error_get_creating("mkdir_parents_chgrp", "%s", eacces_error_get_creating("mkdir_parents_chgrp",
bin_path)); bin_path));
break; break;
default: default:
e_error(storage->event, sieve_storage_set_critical(storage,
"mkdir_parents_chgrp(%s) failed: %m", bin_path); "mkdir_parents_chgrp(%s) failed: %m", bin_path);
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.