ROSE 0.11.145.141
Rose/BinaryAnalysis/Concolic/BasicTypes.h
1#ifndef ROSE_BinaryAnalysis_Concolic_BasicTypes_H
2#define ROSE_BinaryAnalysis_Concolic_BasicTypes_H
3#include <featureTests.h>
4#ifdef ROSE_ENABLE_CONCOLIC_TESTING
5
6// Subdirectory/subnamespace #include's are at the *end* of this file.
7#include <Rose/BinaryAnalysis/BasicTypes.h>
8#include <Rose/StringUtility/Escape.h>
9
10#include <Rose/Exception.h>
11#include <rose_strtoull.h>
12
13#include <Sawyer/Callbacks.h>
14#include <Sawyer/Message.h>
15#include <Sawyer/SharedPointer.h>
16
17#include <boost/shared_ptr.hpp>
18#include <memory>
19
20namespace Rose {
21namespace BinaryAnalysis {
22namespace Concolic {
23
25// Flags and enums
27
28enum class Update { NO, YES };
29
31enum class ShowEvents {
32 NONE,
33 INPUT,
34 ALL
35};
36
37enum class ShowAssertions { NO, YES };
38
40enum class InputType {
41 NONE,
42 ARGC,
43 ARGV,
44 ENVP,
45 SYSCALL_RET,
46 SHMEM_READ
47};
48
50enum class IoDirection {
51 READ,
52 WRITE
53};
54
58enum class When {
59 PRE,
60 POST
61};
62
64enum class ConcolicPhase {
65 REPLAY,
66 EMULATION,
67 POST_EMULATION
68};
69
71// Exceptions, errors, etc.
73
76
77// Internal: called by Rose::Diagnostics::initialize
78void initDiagnostics();
79
81class Exception: public Rose::Exception {
82public:
83 explicit Exception(const std::string &mesg): Rose::Exception(mesg) {}
84 ~Exception() throw () {}
85};
86
90bool isRunningInContainer();
91
97std::string toString(const SymbolicExpressionPtr&, SymbolicExpression::Formatter&);
98std::string toString(const SymbolicExpressionPtr&);
99std::string toString(uint64_t value, size_t nBits);
104// Forward references
106
107class Architecture;
108using ArchitecturePtr = Sawyer::SharedPointer<Architecture>;
109
110class ConcolicExecutor;
111using ConcolicExecutorPtr = Sawyer::SharedPointer<ConcolicExecutor>;
112
113class ConcolicExecutorSettings;
114
115class ConcreteExecutor;
116using ConcreteExecutorPtr = Sawyer::SharedPointer<ConcreteExecutor>;
117
118class ConcreteResult;
119using ConcreteResultPtr = Sawyer::SharedPointer<ConcreteResult>;
120
121class Database;
122using DatabasePtr = Sawyer::SharedPointer<Database>;
123
124namespace Emulation {
125 class RiscOperators;
126 using RiscOperatorsPtr = boost::shared_ptr<class RiscOperators>;
127}
128
129class ExecutionEvent;
130using ExecutionEventPtr = Sawyer::SharedPointer<ExecutionEvent>;
131
132class ExecutionLocation;
133
134class ExecutionManager;
135using ExecutionManagerPtr = Sawyer::SharedPointer<ExecutionManager>;
136
137class InputVariables;
138using InputVariablesPtr = Sawyer::SharedPointer<InputVariables>;
139
140class SharedMemoryCallback;
141using SharedMemoryCallbackPtr = Sawyer::SharedPointer<SharedMemoryCallback>;
142
143using SharedMemoryCallbacks = Sawyer::Callbacks<SharedMemoryCallbackPtr>;
144
145class SharedMemoryContext;
146
147class Specimen;
148using SpecimenPtr = Sawyer::SharedPointer<Specimen>;
149
150class SyscallCallback;
151using SyscallCallbackPtr = std::shared_ptr<SyscallCallback>;
152
153using SyscallCallbacks = Sawyer::Callbacks<SyscallCallbackPtr>;
154
155class SyscallContext;
156
157class TestCase;
158using TestCasePtr = Sawyer::SharedPointer<TestCase>;
159
160class TestSuite;
161using TestSuitePtr = Sawyer::SharedPointer<TestSuite>;
162
164// Database
166
168template <class Tag>
169class ObjectId: public Sawyer::Optional<size_t> {
170public:
171 using Value = size_t;
172 using Super = Sawyer::Optional<Value>;
173 using Object = Tag;
174 using Pointer = Sawyer::SharedPointer<Tag>;
176 ObjectId() {}
177
178 explicit
179 ObjectId(const Value& v)
180 : Super(v) {}
181
182 ObjectId(const ObjectId& rhs)
183 : Super(rhs) {}
184
185 explicit ObjectId(const Sawyer::Optional<size_t> &id)
186 : Super(id) {}
187
193 explicit ObjectId(const std::string &s) {
194 char *rest = NULL;
195 uint64_t id = rose_strtoull(s.c_str(), &rest, 0);
196 while (*rest && isspace(*rest)) ++rest;
197 if (*rest)
198 throw Exception("invalid syntax for object ID: \"" + StringUtility::cEscape(s) + "\"");
199 try {
200 *this = boost::numeric_cast<Value>(id);
201 } catch (const boost::bad_numeric_cast&) {
202 throw Exception("parsed object ID out of range: \"" + StringUtility::cEscape(s) + "\"");
203 }
204 }
205
207 ObjectId<Tag>& operator=(const ObjectId<Tag>& lhs) {
208 this->Super::operator=(lhs);
209 return *this;
210 }
211
213 ObjectId<Tag>& operator=(const Value& v) {
214 this->Super::operator=(v);
215 return *this;
216 }
217
218 explicit operator bool() const { // because it's not explicit in the super class due to C++03 support
219 return isEqual(Sawyer::Nothing()) ? false : true;
220 }
221
223 template<class _Tag>
224 friend
225 bool operator<(const ObjectId<_Tag>& lhs, const ObjectId<_Tag>& rhs);
226
227 // Useful for database operations
228 const Super& optional() const {
229 return *this;
230 }
231};
232
234template<class Tag>
235inline
236bool operator<(const ObjectId<Tag>& lhs, const ObjectId<Tag>& rhs)
237{
238 if (!rhs) return false;
239 if (!lhs) return true;
240
241 return lhs.get() < rhs.get();
242}
243
244using TestSuiteId = ObjectId<TestSuite>;
245using SpecimenId = ObjectId<Specimen>;
246using TestCaseId = ObjectId<TestCase>;
247using ExecutionEventId = ObjectId<ExecutionEvent>;
252template<class T>
253struct ObjectTraits {
254 using Id = void;
255};
256
257template<>
258struct ObjectTraits<TestSuite> {
259 using Id = TestSuiteId;
260};
261
262template<>
263struct ObjectTraits<Specimen> {
264 using Id = SpecimenId;
265};
266
267template<>
268struct ObjectTraits<TestCase> {
269 using Id = TestCaseId;
270};
271
272template<>
273struct ObjectTraits<ExecutionEvent> {
274 using Id = ExecutionEventId;
275};
276
277} // namespace
278} // namespace
279} // namespace
280
281#endif
282
283// #include's for subdirectories
284#include <Rose/BinaryAnalysis/Concolic/Callback/BasicTypes.h>
285#include <Rose/BinaryAnalysis/Concolic/I386Linux/BasicTypes.h>
286#include <Rose/BinaryAnalysis/Concolic/M68kSystem/BasicTypes.h>
287
288#endif
Base class for all ROSE exceptions.
Collection of streams.
Definition Message.h:1606
Represents no value.
Definition Optional.h:36
Holds a value or nothing.
Definition Optional.h:56
Reference-counting intrusive smart pointer.
@ POST
Visitor is called after visiting the node's children.
@ PRE
Visitor is called before visiting the node's children.
@ YES
Allocate memory for real.
@ NO
Only query an allocation.
boost::shared_ptr< class RiscOperators > RiscOperatorsPtr
Shared-ownership pointer to concrete RISC operations.
void initDiagnostics()
Initialize diagnostics.
Object
The five kind of objects manipulated by Rose::CodeGen::API and associated Rose::CodeGen::Factory.
Definition Object.h:12
ROSE_DLL_API Sawyer::Message::Facility mlog
Diagnostic facility for the ROSE library as a whole.
Definition sageBuilder.C:58
ROSE_UTIL_API std::string toString(const Path &)
Convert a path to a string.
The ROSE library.
When
When something should be done.
size_t Id
Attribute identification.
Definition Attribute.h:140
Id id(const std::string &name)
Returns the ID for an attribute name.
const char * ConcolicPhase(int64_t)
Convert Rose::BinaryAnalysis::Concolic::ConcolicPhase enum constant to a string.
const char * Update(int64_t)
Convert Rose::BinaryAnalysis::Concolic::Update enum constant to a string.
const char * IoDirection(int64_t)
Convert Rose::BinaryAnalysis::Concolic::IoDirection enum constant to a string.
const char * ShowAssertions(int64_t)
Convert Rose::BinaryAnalysis::Concolic::ShowAssertions enum constant to a string.
const char * InputType(int64_t)
Convert Rose::BinaryAnalysis::Concolic::InputType enum constant to a string.
const char * ShowEvents(int64_t)
Convert Rose::BinaryAnalysis::Concolic::ShowEvents enum constant to a string.
const char * Architecture(int64_t)
Convert Rose::BinaryAnalysis::Disassembler::Mips::Decoder::Architecture enum constant to a string.