Skip to content
Snippets Groups Projects
Commit bcff0f7e authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: sieve - Check binary for resource limits before opening in sieve_script_open().

parent 62f4b4fc
No related branches found
No related tags found
No related merge requests found
...@@ -382,6 +382,12 @@ sieve_open_script_real(struct sieve_script *script, ...@@ -382,6 +382,12 @@ sieve_open_script_real(struct sieve_script *script,
struct sieve_instance *svinst = sieve_script_svinst(script); struct sieve_instance *svinst = sieve_script_svinst(script);
struct sieve_resource_usage rusage; struct sieve_resource_usage rusage;
struct sieve_binary *sbin; struct sieve_binary *sbin;
enum sieve_error error;
const char *errorstr = NULL;
int ret;
if (error_r == NULL)
error_r = &error;
sieve_resource_usage_init(&rusage); sieve_resource_usage_init(&rusage);
...@@ -391,7 +397,8 @@ sieve_open_script_real(struct sieve_script *script, ...@@ -391,7 +397,8 @@ sieve_open_script_real(struct sieve_script *script,
sieve_binary_get_resource_usage(sbin, &rusage); sieve_binary_get_resource_usage(sbin, &rusage);
/* Ok, it exists; now let's see if it is up to date */ /* Ok, it exists; now let's see if it is up to date */
if (!sieve_binary_up_to_date(sbin, flags)) { if (!sieve_resource_usage_is_excessive(svinst, &rusage) &&
!sieve_binary_up_to_date(sbin, flags)) {
/* Not up to date */ /* Not up to date */
e_debug(svinst->event, e_debug(svinst->event,
"Script binary %s is not up-to-date", "Script binary %s is not up-to-date",
...@@ -420,6 +427,31 @@ sieve_open_script_real(struct sieve_script *script, ...@@ -420,6 +427,31 @@ sieve_open_script_real(struct sieve_script *script,
sieve_binary_set_resource_usage(sbin, &rusage); sieve_binary_set_resource_usage(sbin, &rusage);
} }
/* Check whether binary can be executed. */
ret = sieve_binary_check_executable(sbin, error_r, &errorstr);
if (ret <= 0) {
const char *path = sieve_binary_path(sbin);
if (path != NULL) {
e_debug(svinst->event,
"Script binary %s cannot be executed",
path);
} else {
e_debug(svinst->event,
"Script binary from %s cannot be executed",
sieve_binary_source(sbin));
}
if (ret < 0) {
sieve_internal_error(ehandler,
sieve_script_name(script),
"failed to open script");
} else {
sieve_error(ehandler, sieve_script_name(script),
"%s", errorstr);
}
sieve_binary_close(&sbin);
}
return sbin; return sbin;
} }
......
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.