Skip to content

Commit

Permalink
Add option to store and rerun execution states during run
Browse files Browse the repository at this point in the history
  • Loading branch information
dim8art committed May 26, 2024
1 parent 4f237af commit eeecaaf
Show file tree
Hide file tree
Showing 20 changed files with 749 additions and 433 deletions.
1 change: 1 addition & 0 deletions include/klee/ADT/KTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ int kTest_toFile(const KTest *, const char *path);
unsigned kTest_numBytes(KTest *);

void kTest_free(KTest *);
void test_kTest_free(KTest *);

#ifdef __cplusplus
}
Expand Down
3 changes: 2 additions & 1 deletion include/klee/Core/BranchTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
BTYPE(Realloc, 8U) \
BTYPE(Free, 9U) \
BTYPE(GetVal, 10U) \
BMARK(END, 10U)
BTYPE(InitialBranch, 11U) \
BMARK(END, 11U)
/// \endcond

/** @enum BranchType
Expand Down
15 changes: 9 additions & 6 deletions include/klee/Core/Interpreter.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "TerminationTypes.h"
#include "klee/Module/Annotation.h"

#include "klee/ADT/KTest.h"
#include "klee/Module/SarifReport.h"

#include <cstdint>
Expand Down Expand Up @@ -58,8 +59,11 @@ class InterpreterHandler {

virtual void processTestCase(const ExecutionState &state, const char *message,
const char *suffix, bool isError = false) = 0;

virtual ToolJson info() const = 0;

// used for writing .ktest files
virtual int argc() = 0;
virtual char **argv() = 0;
};

/// [File][Line][Column] -> Opcode
Expand Down Expand Up @@ -209,10 +213,6 @@ class Interpreter {
// a user specified path. use null to reset.
virtual void setReplayPath(const std::vector<bool> *path) = 0;

// supply a set of symbolic bindings that will be used as "seeds"
// for the search. use null to reset.
virtual void useSeeds(const std::vector<struct KTest *> *seeds) = 0;

virtual void runFunctionAsMain(llvm::Function *f, int argc, char **argv,
char **envp) = 0;

Expand All @@ -237,7 +237,10 @@ class Interpreter {
virtual void getConstraintLog(const ExecutionState &state, std::string &res,
LogType logFormat = STP) = 0;

virtual bool getSymbolicSolution(const ExecutionState &state, KTest &res) = 0;
virtual void getSteppedInstructions(const ExecutionState &state,
unsigned &res) = 0;

virtual bool getSymbolicSolution(const ExecutionState &state, KTest *res) = 0;

virtual void addSARIFReport(const ExecutionState &state) = 0;

Expand Down
14 changes: 14 additions & 0 deletions lib/Basic/KTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@

#include "klee/ADT/KTest.h"

#include <cassert>
#include <fstream>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>

#define KTEST_VERSION 4
#define KTEST_MAGIC_SIZE 5
Expand Down Expand Up @@ -295,3 +298,14 @@ void kTest_free(KTest *bo) {
free(bo->objects);
free(bo);
}

void test_kTest_free(KTest *bo) {
unsigned i;
for (i = 0; i < bo->numObjects; i++) {
free(bo->objects[i].name);
free(bo->objects[i].bytes);
free(bo->objects[i].pointers);
}
free(bo->objects);
free(bo);
}
2 changes: 1 addition & 1 deletion lib/Core/ExecutionState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ ExecutionState::ExecutionState(const ExecutionState &state)
gepExprBases(state.gepExprBases), multiplexKF(state.multiplexKF),
prevTargets_(state.prevTargets_), targets_(state.targets_),
prevHistory_(state.prevHistory_), history_(state.history_),
isTargeted_(state.isTargeted_) {
isTargeted_(state.isTargeted_), isSeeded(state.isSeeded) {
queryMetaData.id = state.id;
}

Expand Down
4 changes: 4 additions & 0 deletions lib/Core/ExecutionState.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ struct ExecutionStack {
inline const call_stack_ty &uniqueFrames() const { return uniqueFrames_; }

void forceReturnLocation(const ref<CodeLocation> &location) {
if (callStack_.empty()) {
llvm::errs() << callStack_.size() << "\n";
}
assert(!callStack_.empty() && "Call stack should contain at least one "
"stack frame to force return location");
std::optional<ref<CodeLocation>> &callStackReturnLocation =
Expand Down Expand Up @@ -300,6 +303,7 @@ class ExecutionState {
public:
using stack_ty = ExecutionStack;

bool isSeeded = false;
// Execution - Control Flow specific

/// @brief Pointer to initial instruction
Expand Down
Loading

0 comments on commit eeecaaf

Please sign in to comment.