-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconcolicruntime.h
146 lines (113 loc) · 5.22 KB
/
concolicruntime.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
* Copyright 2012 Aarhus University
*
* Licensed under the GNU General Public License, Version 3 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl-3.0.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef CONCOLICRUNTIME_H
#define CONCOLICRUNTIME_H
#include <QObject>
#include "concolic/concolicanalysis.h"
#include "concolic/executiontree/tracenodes.h"
#include "concolic/solver/solution.h"
#include "concolic/entrypoints.h"
#include "concolic/mockentrypointdetector.h"
#include "concolic/executiontree/traceprinter.h"
#include "concolic/executiontree/tracedisplay.h"
#include "concolic/executiontree/tracedisplayoverview.h"
#include "concolic/executiontree/classifier/traceclassifier.h"
#include "concolic/tracestatistics.h"
#include "concolic/handlerdependencytracker.h"
#include "concolic/search/abstractselector.h"
#include "runtime/input/dominput.h"
#include "runtime/input/events/mouseeventparameters.h"
#include "strategies/inputgenerator/targets/legacytarget.h"
#include "runtime/input/clickinput.h"
#include "runtime/browser/artemiswebview.h"
#include "runtime/input/forms/injectionvalue.h"
#include "runtime/input/forms/formfieldinjector.h"
#include "runtime/input/forms/formfieldrestrictedvalues.h"
#include "runtime/runtime.h"
namespace artemis
{
class ConcolicRuntime : public Runtime
{
Q_OBJECT
public:
ConcolicRuntime(QObject* parent, const Options& options, const QUrl& url);
void run(const QUrl& url);
void done();
protected:
void preConcreteExecution();
QUrl mUrl;
ArtemisWebViewPtr mWebView;
ConcolicAnalysisPtr mConcolicAnalysis;
ConcolicAnalysis::ExplorationResult mExplorationResult;
QSharedPointer<ExecutableConfiguration> mNextConfiguration;
EventHandlerDescriptorConstPtr mEntryPointEvent;
bool mRunningFirstLoad;
bool mRunningWithInitialValues;
// Controls for the search procedure.
// We can choose between entry points specified by XPath (with --concolic-button) or the built-in EP finding.
// If an XPath has been given, we want to skip the entry point finding run completely and use a different method for injecting clicks.
// If mManualEntryPoint is set, then we use mEntryPointXPath and skip the first iteration, otherwise we use mEntryPointEvent.
bool mManualEntryPoint;
QString mManualEntryPointXPath;
// If supplied, the concolic form area specifies whihc part of the DOM we should take form actions from.
bool mManualFormArea;
QString mManualFormAreaXPath;
TraceClassifierPtr mTraceClassifier;
bool mFoundSuccessTrace;
// Method and variables for generating a graphviz graph of the execution tree.
void outputTreeGraph();
TraceDisplay mTraceDisplay;
TraceDisplayOverview mTraceDisplayOverview;
QString mGraphOutputNameFormat;
int mGraphOutputIndex;
QString mGraphOutputPreviousName;
QString mGraphOutputOverviewPreviousName;
// Helper methods for postConcreteExecution.
void setupNextConfiguration(QSharedPointer<FormInputCollection> formInput);
void postInitialConcreteExecution(QSharedPointer<ExecutionResult> result);
void mergeTraceIntoTree();
void printSolution(SolutionPtr solution, QStringList varList);
QSharedPointer<FormInputCollection> createFormInput(QMap<QString, Symbolic::SourceIdentifierMethod> freeVariables, SolutionPtr solution);
QSharedPointer<const FormFieldDescriptor> findFormFieldForVariable(QString varName, Symbolic::SourceIdentifierMethod varSourceIdentifierMethod);
void exploreNextTarget();
QMap<QString, Symbolic::SourceIdentifierMethod> getExtraSolutionVariables(SolutionPtr solution, QStringList expected);
void chooseNextTargetAndExplore();
void reportStatistics();
void triggerFieldChangeHandler(FormFieldDescriptorConstPtr field);
QList<FormFieldDescriptorConstPtr> mFormFields;
FormRestrictions mFormFieldRestrictions;
FormRestrictions mFormFieldInitialRestrictions;
QList<FormFieldDescriptorConstPtr> permuteFormFields(QList<FormFieldDescriptorConstPtr> fields, QString permutation);
QList<int> mFormFieldPermutation;
void updateFormFieldRestrictionsForCurrentDom();
int mMarkerIndex;
HandlerDependencyTracker mHandlerTracker;
// State
int mNumIterations;
// Logging
QMap<QString, InjectionValue> mPreviousInjections;
void logInjectionValues(TraceClassificationResult classification);
private slots:
void postConcreteExecution(ExecutableConfigurationConstPtr configuration, QSharedPointer<ExecutionResult> result);
void postAllInjection();
void postSingleInjection(FormFieldDescriptorConstPtr field);
void postSubmitButtonClick();
void slExecutionTreeUpdated(TraceNodePtr tree, QString name);
signals:
void sigNewTraceMarker(QString label, QString index, bool isSelectRestriction, SelectRestriction selectRestriction);
};
} // namespace artemis
#endif // CONCOLICRUNTIME_H