diff --git a/klee/include/klee/Executor.h b/klee/include/klee/Executor.h index 5556d22af..5caaa870d 100644 --- a/klee/include/klee/Executor.h +++ b/klee/include/klee/Executor.h @@ -112,6 +112,7 @@ class Executor : public Interpreter { std::vector timers; PTree *processTree; bool concolicMode; + bool concolicTaint; /// Used to track states that have been added during the current /// instructions step. diff --git a/klee/lib/Core/Executor.cpp b/klee/lib/Core/Executor.cpp index e2703b158..20638e1ad 100644 --- a/klee/lib/Core/Executor.cpp +++ b/klee/lib/Core/Executor.cpp @@ -354,6 +354,7 @@ Executor::Executor(const InterpreterOptions &opts, specialFunctionHandler(0), processTree(0), concolicMode(false), + concolicTaint(false), replayOut(0), replayPath(0), usingSeeds(0), @@ -812,12 +813,14 @@ Executor::concolicFork(ExecutionState ¤t, ref condition, bool isInte if (current.forkDisabled) { if (ce->isTrue()) { - //Condition is true in the current state - addConstraint(current, condition); + if(!concolicTaint) + //Condition is true in the current state + addConstraint(current, condition); return StatePair(¤t, 0); } else { - //Condition is false in the current state - addConstraint(current, Expr::createIsZero(condition)); + if(!concolicTaint) + //Condition is false in the current state + addConstraint(current, Expr::createIsZero(condition)); return StatePair(0, ¤t); } } diff --git a/qemu/s2e/S2EExecutor.cpp b/qemu/s2e/S2EExecutor.cpp index ad7ed4a03..b9bbc64c7 100644 --- a/qemu/s2e/S2EExecutor.cpp +++ b/qemu/s2e/S2EExecutor.cpp @@ -239,6 +239,11 @@ cl::opt ConcolicMode("use-concolic-execution", cl::desc("Concolic execution mode"), cl::init(true)); +// Disable fork and use make_concolic to use Concolic Taint +cl::opt +ConcolicTaint("use-concolic-taint", + cl::desc("Single Concolic Taint"), cl::init(false)); + cl::opt DebugConstraints("debug-constraints", cl::desc("Check that added constraints are satisfiable"), cl::init(false)); @@ -856,6 +861,7 @@ S2EExecutor::S2EExecutor(S2E* s2e, TCGLLVMContext *tcgLLVMContext, g_s2e_concretize_io_writes = ConcretizeIoWrites; concolicMode = ConcolicMode; + concolicTaint = ConcolicTaint; if (UseFastHelpers) { if (!ForkOnSymbolicAddress) {