forked from anse1/sqlsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlsmith.cc
245 lines (209 loc) · 6.39 KB
/
sqlsmith.cc
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#include "config.h"
#include <iostream>
#include <chrono>
#ifndef HAVE_BOOST_REGEX
#include <regex>
#else
#include <boost/regex.hpp>
using boost::regex;
using boost::smatch;
using boost::regex_match;
#endif
#include <thread>
#include <typeinfo>
#include "random.hh"
#include "grammar.hh"
#include "relmodel.hh"
#include "schema.hh"
#include "gitrev.h"
#include "log.hh"
#include "dump.hh"
#include "impedance.hh"
#include "dut.hh"
#ifdef HAVE_LIBSQLITE3
#include "sqlite.hh"
#endif
#ifdef HAVE_MONETDB
#include "monetdb.hh"
#endif
#include "postgres.hh"
using namespace std;
using namespace std::chrono;
extern "C" {
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
}
/* make the cerr logger globally accessible so we can emit one last
report on SIGINT */
cerr_logger *global_cerr_logger;
extern "C" void cerr_log_handler(int)
{
if (global_cerr_logger)
global_cerr_logger->report();
exit(1);
}
int main(int argc, char *argv[])
{
cerr << PACKAGE_NAME " " GITREV << endl;
map<string,string> options;
regex optregex("--(help|log-to|verbose|target|sqlite|monetdb|version|dump-all-graphs|dump-all-queries|seed|dry-run|max-queries|rng-state|exclude-catalog)(?:=((?:.|\n)*))?");
for(char **opt = argv+1 ;opt < argv+argc; opt++) {
smatch match;
string s(*opt);
if (regex_match(s, match, optregex)) {
options[string(match[1])] = match[2];
} else {
cerr << "Cannot parse option: " << *opt << endl;
options["help"] = "";
}
}
if (options.count("help")) {
cerr <<
" --target=connstr postgres database to send queries to" << endl <<
#ifdef HAVE_LIBSQLITE3
" --sqlite=URI SQLite database to send queries to" << endl <<
#endif
#ifdef HAVE_MONETDB
" --monetdb=connstr MonetDB database to send queries to" <<endl <<
#endif
" --log-to=connstr log errors to postgres database" << endl <<
" --seed=int seed RNG with specified int instead of PID" << endl <<
" --dump-all-queries print queries as they are generated" << endl <<
" --dump-all-graphs dump generated ASTs" << endl <<
" --dry-run print queries instead of executing them" << endl <<
" --exclude-catalog don't generate queries using catalog relations" << endl <<
" --max-queries=long terminate after generating this many queries" << endl <<
" --rng-state=string deserialize dumped rng state" << endl <<
" --verbose emit progress output" << endl <<
" --version print version information and exit" << endl <<
" --help print available command line options and exit" << endl;
return 0;
} else if (options.count("version")) {
return 0;
}
try
{
shared_ptr<schema> schema;
if (options.count("sqlite")) {
#ifdef HAVE_LIBSQLITE3
schema = make_shared<schema_sqlite>(options["sqlite"], options.count("exclude-catalog"));
#else
cerr << "Sorry, " PACKAGE_NAME " was compiled without SQLite support." << endl;
return 1;
#endif
}
else if(options.count("monetdb")) {
#ifdef HAVE_MONETDB
schema = make_shared<schema_monetdb>(options["monetdb"]);
#else
cerr << "Sorry, " PACKAGE_NAME " was compiled without MonetDB support." << endl;
return 1;
#endif
}
else
schema = make_shared<schema_pqxx>(options["target"], options.count("exclude-catalog"));
scope scope;
long queries_generated = 0;
schema->fill_scope(scope);
if (options.count("rng-state")) {
istringstream(options["rng-state"]) >> smith::rng;
} else {
smith::rng.seed(options.count("seed") ? stoi(options["seed"]) : getpid());
}
vector<shared_ptr<logger> > loggers;
loggers.push_back(make_shared<impedance_feedback>());
if (options.count("log-to"))
loggers.push_back(make_shared<pqxx_logger>(
options.count("sqlite") ? options["sqlite"] : options["target"],
options["log-to"], *schema));
if (options.count("verbose")) {
auto l = make_shared<cerr_logger>();
global_cerr_logger = &*l;
loggers.push_back(l);
signal(SIGINT, cerr_log_handler);
}
if (options.count("dump-all-graphs"))
loggers.push_back(make_shared<ast_logger>());
if (options.count("dump-all-queries"))
loggers.push_back(make_shared<query_dumper>());
if (options.count("dry-run")) {
while (1) {
shared_ptr<prod> gen = statement_factory(&scope);
gen->out(cout);
for (auto l : loggers)
l->generated(*gen);
cout << ";" << endl;
queries_generated++;
if (options.count("max-queries")
&& (queries_generated >= stol(options["max-queries"])))
return 0;
}
}
shared_ptr<dut_base> dut;
if (options.count("sqlite")) {
#ifdef HAVE_LIBSQLITE3
dut = make_shared<dut_sqlite>(options["sqlite"]);
#else
cerr << "Sorry, " PACKAGE_NAME " was compiled without SQLite support." << endl;
return 1;
#endif
}
else if(options.count("monetdb")) {
#ifdef HAVE_MONETDB
dut = make_shared<dut_monetdb>(options["monetdb"]);
#else
cerr << "Sorry, " PACKAGE_NAME " was compiled without MonetDB support." << endl;
return 1;
#endif
}
else
dut = make_shared<dut_libpq>(options["target"]);
while (1) /* Loop to recover connection loss */
{
try {
while (1) { /* Main loop */
if (options.count("max-queries")
&& (++queries_generated > stol(options["max-queries"]))) {
if (global_cerr_logger)
global_cerr_logger->report();
return 0;
}
/* Invoke top-level production to generate AST */
shared_ptr<prod> gen = statement_factory(&scope);
for (auto l : loggers)
l->generated(*gen);
/* Generate SQL from AST */
ostringstream s;
gen->out(s);
/* Try to execute it */
try {
dut->test(s.str());
for (auto l : loggers)
l->executed(*gen);
} catch (const dut::failure &e) {
for (auto l : loggers)
try {
l->error(*gen, e);
} catch (runtime_error &e) {
cerr << endl << "log failed: " << typeid(*l).name() << ": "
<< e.what() << endl;
}
if ((dynamic_cast<const dut::broken *>(&e))) {
/* re-throw to outer loop to recover session. */
throw;
}
}
}
}
catch (const dut::broken &e) {
/* Give server some time to recover. */
this_thread::sleep_for(milliseconds(1000));
}
}
}
catch (const exception &e) {
cerr << e.what() << endl;
return 1;
}
}