-
Notifications
You must be signed in to change notification settings - Fork 11
How to Create a Custom Fault Injector
-
Under < LLFI_SRC_ROOT >/runtime_lib, create a class that is the child of
class HardwareFaultInjector
orclass SoftwareFaultInjector
. You have to implement theinjectFault(long llfi_index, unsigned size, unsigned fi_bit,char *buf)
in your class. -
Register the class with
RegisterFaultInjector()
. In the registration, you also provide the name to find the fault injector. -
Build the < LLFI_SRC_ROOT >/runtime_lib by adding the created file(s) to CMakeLists.txt in that directory, and go to the < LLFI_DST_ROOT > and run
make
-
run the fault injection executable with the custom fault injector. You need to use the option
fi_type=<name given in step 2>
in llfi.config.runtime.txt to invoke the custom fault injector. -
There are some sample fault injectors in < LLFI_SRC_ROOT >/runtime_lib/CommonFaultInjectors.cpp. Play it first to get an idea.