Added experiment for keso paper.
git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2048 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
33
src/experiments/kesorefs/CMakeLists.txt
Normal file
33
src/experiments/kesorefs/CMakeLists.txt
Normal file
@ -0,0 +1,33 @@
|
||||
set(EXPERIMENT_NAME kesorefs)
|
||||
set(EXPERIMENT_TYPE KESOrefs)
|
||||
configure_file(../instantiate-experiment.ah.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/instantiate-${EXPERIMENT_NAME}.ah @ONLY
|
||||
)
|
||||
|
||||
## Setup desired protobuf descriptions HERE ##
|
||||
set(MY_PROTOS
|
||||
# vezs-example.proto
|
||||
)
|
||||
|
||||
set(MY_CAMPAIGN_SRCS
|
||||
experiment.hpp
|
||||
experiment.cc
|
||||
#campaign.hpp
|
||||
#campaign.cc
|
||||
)
|
||||
|
||||
#### PROTOBUFS ####
|
||||
find_package(Protobuf REQUIRED)
|
||||
include_directories(${PROTOBUF_INCLUDE_DIRS})
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
#PROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${MY_PROTOS})
|
||||
|
||||
## Build library
|
||||
add_library(fail-${EXPERIMENT_NAME} ${PROTO_SRCS} ${PROTO_HDRS} ${MY_CAMPAIGN_SRCS})
|
||||
target_link_libraries(fail-${EXPERIMENT_NAME} ${PROTOBUF_LIBRARY})
|
||||
|
||||
## This is the example's campaign server distributing experiment parameters
|
||||
#add_executable(${EXPERIMENT_NAME}-server main.cc)
|
||||
#target_link_libraries(${EXPERIMENT_NAME}-server fail-${EXPERIMENT_NAME} fail ${PROTOBUF_LIBRARY} ${Boost_THREAD_LIBRARY})
|
||||
#install(TARGETS ${EXPERIMENT_NAME}-server RUNTIME DESTINATION bin)
|
||||
158
src/experiments/kesorefs/experiment.cc
Normal file
158
src/experiments/kesorefs/experiment.cc
Normal file
@ -0,0 +1,158 @@
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
// getpid
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "experiment.hpp"
|
||||
#include "experimentInfo.hpp"
|
||||
#include "sal/SALConfig.hpp"
|
||||
#include "sal/SALInst.hpp"
|
||||
#include "sal/Memory.hpp"
|
||||
#include "sal/Listener.hpp"
|
||||
|
||||
#include "sal/bochs/BochsListener.hpp"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
using namespace fail;
|
||||
|
||||
#define SAFESTATE (0)
|
||||
|
||||
// Check if configuration dependencies are satisfied:
|
||||
#if !defined(CONFIG_EVENT_BREAKPOINTS) || !defined(CONFIG_SR_RESTORE) || \
|
||||
!defined(CONFIG_SR_SAVE)
|
||||
#error This experiment needs: breakpoints, traps, save, and restore. Enable these in the configuration.
|
||||
#endif
|
||||
|
||||
void KESOrefs::printEIP() {
|
||||
m_log << "EIP = 0x" << hex << simulator.getCPU(0).getInstructionPointer() <<" "<< m_elf.getNameByAddress(simulator.getCPU(0).getInstructionPointer()) << endl;
|
||||
}
|
||||
|
||||
static vector<BPSingleListener*> mg_exitbps;
|
||||
|
||||
void KESOrefs::setupExitBPs(const string& funcname){
|
||||
BPSingleListener* bp = new BPSingleListener();
|
||||
bp->setWatchInstructionPointer(m_elf.getAddressByName(funcname));
|
||||
|
||||
mg_exitbps.push_back(bp);
|
||||
}
|
||||
|
||||
void KESOrefs::enableBPs(){
|
||||
vector<BPSingleListener*>::const_iterator it;
|
||||
// add all BPs
|
||||
for(it = mg_exitbps.begin(); it != mg_exitbps.end(); ++it){
|
||||
simulator.addListener(*it);
|
||||
}
|
||||
}
|
||||
|
||||
void KESOrefs::clearExitBPs(){
|
||||
for( size_t i = 0; i < mg_exitbps.size(); i++){
|
||||
delete mg_exitbps[i];
|
||||
}
|
||||
mg_exitbps.clear();
|
||||
}
|
||||
|
||||
const unsigned KESO_NUM_STATIC_REFS = 36; // from KESO globals.h
|
||||
|
||||
address_t rev_byte(address_t dword){
|
||||
return ((dword>>24)&0x000000FF) | ((dword>>8)&0x0000FF00) | ((dword<<8)&0x00FF0000) | ((dword<<24)&0xFF000000);
|
||||
}
|
||||
|
||||
void KESOrefs::showStaticRefs(){
|
||||
address_t sref_start = m_elf.getAddressByName("__CIAO_APPDATA_cdx_det__heap"); // guest_address_t -> uint32_t
|
||||
MemoryManager& mm = simulator.getMemoryManager();
|
||||
address_t value = 0;
|
||||
m_log << "__CIAO_APPDATA_cdx_det__heap : 0x" << hex << setw(8) << setfill('0') << sref_start << endl;
|
||||
|
||||
for(unsigned i = 0; i < KESO_NUM_STATIC_REFS; ++i){
|
||||
mm.getBytes(sref_start+(i*4), 4, (void*)&value);
|
||||
value = rev_byte(value);
|
||||
cout << "0x" << hex << setw(8) << setfill('0') << value << " | ";
|
||||
if ((i+1) % 8 == 0) cout << "" << endl;
|
||||
}
|
||||
cout << "" << endl;
|
||||
}
|
||||
|
||||
void KESOrefs::injectStaticRefs(unsigned referenceoffset, unsigned bitpos){
|
||||
address_t sref_start = m_elf.getAddressByName("__CIAO_APPDATA_cdx_det__heap"); // guest_address_t -> uint32_t
|
||||
|
||||
MemoryManager& mm = simulator.getMemoryManager();
|
||||
address_t value = 0, injectedval =0;
|
||||
|
||||
sref_start += (referenceoffset*4);
|
||||
|
||||
if(referenceoffset > KESO_NUM_STATIC_REFS){
|
||||
m_log << "WARNING: reference offset to large!" << endl;
|
||||
}
|
||||
mm.getBytes(sref_start, 4, (void*)&value);
|
||||
injectedval = value ^ bitpos;
|
||||
mm.setBytes(sref_start, 4, (void*)&injectedval);
|
||||
|
||||
m_log << "INJECTION at: __CIAO_APPDATA_cdx_det__heap + " << referenceoffset << " : 0x" << hex << setw(8) << setfill('0') << sref_start;
|
||||
cout << " value: 0x" << setw(8) << setfill('0') << value << " -> 0x" << setw(8) << setfill('0') << injectedval << endl;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
bool KESOrefs::run()
|
||||
{
|
||||
//******* Boot, and store state *******//
|
||||
m_log << "STARTING EXPERIMENT" << endl;
|
||||
printEIP();
|
||||
|
||||
#if SAFESTATE // define SS (SafeState) when building: make -DSS
|
||||
#warning "Building safe state variant"
|
||||
m_log << "Booting, and saving state at ";
|
||||
BPSingleListener bp;
|
||||
// STEP 1: run until interesting function starts, and save state
|
||||
bp.setWatchInstructionPointer(m_elf.getAddressByName("main"));
|
||||
if(simulator.addListenerAndResume(&bp) == &bp){
|
||||
m_log << "main function entry reached, saving state" << endl;
|
||||
}
|
||||
printEIP();
|
||||
|
||||
simulator.save("keso.state");
|
||||
simulator.terminate();
|
||||
#else
|
||||
|
||||
//******* Fault injection *******//
|
||||
#warning "Building restore state variant"
|
||||
simulator.restore("keso.state");
|
||||
|
||||
|
||||
// Goto injection point
|
||||
BPSingleListener injBP;
|
||||
injBP.setWatchInstructionPointer(m_elf.getAddressByName("c23_PersistentDetectorScopeEntry_m5_run"));
|
||||
simulator.addListenerAndResume(&injBP);
|
||||
printEIP(); m_log << "Lets inject some stuff..." << endl;
|
||||
showStaticRefs();
|
||||
/// INJECT BITFLIP:
|
||||
injectStaticRefs(9, 9);
|
||||
showStaticRefs();
|
||||
|
||||
// Setup exit points
|
||||
setupExitBPs("keso_throw_error");
|
||||
setupExitBPs("keso_throw_parity");
|
||||
setupExitBPs("keso_throw_nullpointer");
|
||||
setupExitBPs("keso_throw_index_out_of_bounds");
|
||||
setupExitBPs("c17_Main_m4_dumpResults_console");
|
||||
setupExitBPs("os::krn::OSControl::shutdownOS");
|
||||
|
||||
enableBPs();
|
||||
|
||||
// resume and wait for results
|
||||
/* fail::BaseListener* l =*/ simulator.resume();
|
||||
printEIP();
|
||||
showStaticRefs();
|
||||
// cleanup
|
||||
clearExitBPs();
|
||||
// Explicitly terminate, or the simulator will continue to run.
|
||||
#endif
|
||||
simulator.terminate();
|
||||
}
|
||||
27
src/experiments/kesorefs/experiment.hpp
Normal file
27
src/experiments/kesorefs/experiment.hpp
Normal file
@ -0,0 +1,27 @@
|
||||
#ifndef __KESO_REFS_EXPERIMENT_HPP__
|
||||
#define __KESO_REFS_EXPERIMENT_HPP__
|
||||
|
||||
#include "efw/ExperimentFlow.hpp"
|
||||
#include "efw/JobClient.hpp"
|
||||
#include "util/Logger.hpp"
|
||||
#include "util/ElfReader.hpp"
|
||||
#include <string>
|
||||
|
||||
class KESOrefs : public fail::ExperimentFlow {
|
||||
fail::JobClient m_jc;
|
||||
fail::ElfReader m_elf;
|
||||
fail::Logger m_log;
|
||||
fail::MemoryManager& m_mm;
|
||||
|
||||
void printEIP();
|
||||
void setupExitBPs(const std::string&);
|
||||
void enableBPs();
|
||||
void clearExitBPs();
|
||||
void showStaticRefs();
|
||||
void injectStaticRefs(unsigned referenceoffset, unsigned bitpos);
|
||||
public:
|
||||
KESOrefs() : m_log("KESOrefs", false), m_mm(fail::simulator.getMemoryManager()) {};
|
||||
bool run();
|
||||
};
|
||||
|
||||
#endif // __KESO_REFS_EXPERIMENT_HPP__
|
||||
24
src/experiments/kesorefs/experimentInfo.hpp
Normal file
24
src/experiments/kesorefs/experimentInfo.hpp
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef __EXPERIMENT_INFO_HPP__
|
||||
#define __EXPERIMENT_INFO_HPP__
|
||||
|
||||
// FIXME autogenerate this
|
||||
|
||||
|
||||
// the task function's entry address:
|
||||
// nm -C ecc.elf|fgrep main
|
||||
#define OOSTUBS_FUNC_ENTRY 0x001009d0
|
||||
// empty function that is called explicitly when the experiment finished
|
||||
// nm -C ecc.elf|fgrep "finished()"
|
||||
#define OOSTUBS_FUNC_FINISH 0x001009d6
|
||||
// function executing HLT with no chance for further progress (after panic())
|
||||
// nm -C ecc.elf|fgrep cpu_halt
|
||||
#define OOSTUBS_FUNC_CPU_HALT 0x001009f7
|
||||
|
||||
// nm -C ecc.elf | fgrep "_TEXT_"
|
||||
#define OOSTUBS_TEXT_START 0x00100000
|
||||
#define OOSTUBS_TEXT_END 0x00100a1b
|
||||
|
||||
#define OOSTUBS_NUMINSTR 5
|
||||
|
||||
|
||||
#endif // __EXPERIMENT_INFO_HPP__
|
||||
15
src/experiments/kesorefs/main.cc
Normal file
15
src/experiments/kesorefs/main.cc
Normal file
@ -0,0 +1,15 @@
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
||||
#include "cpn/CampaignManager.hpp"
|
||||
#include "campaign.hpp"
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
ChecksumOOStuBSCampaign c;
|
||||
if (fail::campaignmanager.runCampaign(&c)) {
|
||||
return 0;
|
||||
} else {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user