Skip to content
Snippets Groups Projects
Commit 3e0a599e authored by Stephan Bosch's avatar Stephan Bosch Committed by timo.sirainen
Browse files

lib-sieve: sieve-interpreter - Split off sieve_interpreter_check_program_jump().

parent ad7bb544
No related branches found
No related tags found
No related merge requests found
......@@ -762,13 +762,34 @@ sieve_size_t sieve_interpreter_program_counter(struct sieve_interpreter *interp)
return interp->runenv.pc;
}
static int
sieve_interpreter_check_program_jump(struct sieve_interpreter *interp,
sieve_size_t jmp_target, bool break_loops)
{
const struct sieve_runtime_env *renv = &interp->runenv;
sieve_size_t loop_limit = (break_loops ? 0 : interp->loop_limit);
if (jmp_target == 0 ||
jmp_target > sieve_binary_block_get_size(renv->sblock) ||
(loop_limit > 0 && jmp_target >= loop_limit)) {
if (interp->loop_limit != 0) {
sieve_runtime_trace_error(
renv, "jump target crosses loop boundary");
} else {
sieve_runtime_trace_error(
renv, "jump target out of range");
}
return SIEVE_EXEC_BIN_CORRUPT;
}
return SIEVE_EXEC_OK;
}
int sieve_interpreter_program_jump(struct sieve_interpreter *interp,
bool jump, bool break_loops)
{
const struct sieve_runtime_env *renv = &interp->runenv;
sieve_size_t *address = &(interp->runenv.pc);
sieve_size_t jmp_start = *address, jmp_target;
sieve_size_t loop_limit = (break_loops ? 0 : interp->loop_limit);
sieve_offset_t jmp_offset;
int ret;
......@@ -777,20 +798,12 @@ int sieve_interpreter_program_jump(struct sieve_interpreter *interp,
sieve_runtime_trace_error(renv, "invalid jump offset");
return SIEVE_EXEC_BIN_CORRUPT;
}
jmp_target = jmp_start + jmp_offset;
if (jmp_target == 0 ||
jmp_target > sieve_binary_block_get_size(renv->sblock) ||
(loop_limit > 0 && jmp_target >= loop_limit)) {
if (interp->loop_limit != 0) {
sieve_runtime_trace_error(
renv, "jump offset crosses loop boundary");
} else {
sieve_runtime_trace_error(
renv, "jump offset out of range");
}
return SIEVE_EXEC_BIN_CORRUPT;
}
ret = sieve_interpreter_check_program_jump(interp, jmp_target,
break_loops);
if (ret <= 0)
return ret;
if (!jump) {
sieve_runtime_trace(renv, 0, "not jumping");
......
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.