-
Notifications
You must be signed in to change notification settings - Fork 23
/
sym_solver.py
358 lines (300 loc) · 11.2 KB
/
sym_solver.py
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
import z3
from copy import deepcopy
from collections import OrderedDict
from .utility.expr_wrap_util import symbolic
from .expr import BV, BVV, Bool, And, Or, BoolExpr
USE_OPT_SOLVER = False
DBG = False
class Solver(object):
def __init__(self, state):
self.state = state
self.assertions = []
self._added_mem_constraints = set()
self._solver = z3.Optimize() if USE_OPT_SOLVER else z3.Solver()
self._min_cache = OrderedDict()
self._max_cache = OrderedDict()
self._eval_cache = OrderedDict()
self._symb_check_cache = OrderedDict()
if DBG:
self.dbg_idx = 0
def __str__(self):
return "<SymSolver id: 0x%x, %d assertions>" % \
(id(self), len(self.assertions))
def __repr__(self):
return self.__str__()
def _invalidate_cache(self):
self._min_cache = OrderedDict()
self._max_cache = OrderedDict()
self._eval_cache = OrderedDict()
self._symb_check_cache = OrderedDict()
def _rejuvenate(self):
self._solver = z3.Optimize() if USE_OPT_SOLVER else z3.Solver()
for a in self.assertions:
self._solver.add(a.z3obj)
@staticmethod
def _get_all_symbols_from_z3_formula(formula):
processed_formulas = set()
res = set()
queue = [formula]
while queue:
formula = queue.pop()
if formula in processed_formulas:
continue
processed_formulas.add(formula)
decl = formula.decl()
if decl.kind() == z3.Z3_OP_UNINTERPRETED:
res.add(decl.name())
for c in formula.children():
queue.append(c)
return res
def _add_memory_constraints(self, *constraints):
# If we find a page symbol, then we will add the
# eventual concrete values as assertion to the solver
for formula in constraints:
for s in Solver._get_all_symbols_from_z3_formula(formula.z3obj):
if s.startswith("MEMOBJ_") and s.endswith("h"):
page_addr = s.split("_")[1][:-1]
page_addr = int(page_addr, 16)
if page_addr in self._added_mem_constraints:
continue
self._added_mem_constraints.add(page_addr)
assertions = self.state.mem.get_assertions_for_page(page_addr)
for a in assertions:
self.add_constraints(a, simplify_constraint=False, check_mem=False)
def get_path_constraint(self):
return self.assertions
def add_constraints(self, *constraints, simplify_constraint=True, check_mem=True):
if len(constraints) == 0:
return
self._invalidate_cache()
for c in constraints:
assert isinstance(c, Bool)
if simplify_constraint:
c = c.simplify()
cz3 = c.z3obj
if not z3.BoolVal(True).eq(cz3):
if check_mem:
self._add_memory_constraints(c)
self._solver.add(cz3)
self.assertions.append(c)
def _add_tmp_constraints(self, *constraints):
for c in constraints:
assert isinstance(c, Bool)
c = c.simplify()
cz3 = c.z3obj
if not z3.BoolVal(True).eq(cz3):
self._solver.add(cz3)
def satisfiable(self, extra_constraints: list = None):
if extra_constraints:
self._add_memory_constraints(*extra_constraints)
self._solver.push()
self._add_tmp_constraints(*extra_constraints)
if DBG:
fout = open("/dev/shm/seninja_q_%d" % self.dbg_idx, "w")
self.dbg_idx += 1
fout.write(self._solver.sexpr())
fout.close()
res = self._solver.check().r == 1
if extra_constraints:
self._solver.pop()
return res
def evaluate(self, var, extra_constraints: list = None) -> int:
if extra_constraints:
self._add_memory_constraints(*extra_constraints)
self._solver.push()
self._add_tmp_constraints(*extra_constraints)
elif var in self._eval_cache:
return self._eval_cache[var]
self._add_memory_constraints(var)
if not self.satisfiable():
if extra_constraints:
self._solver.pop()
assert False # not satisfiable!
model = self._solver.model()
res = model.evaluate(var.z3obj, model_completion=True)
res = BVV(res.as_long(), var.size)
if extra_constraints:
self._solver.pop()
else:
self._eval_cache[var] = res
return res
def evaluate_upto(self, var, n, extra_constraints: list = None) -> list:
self._solver.push()
if extra_constraints:
self._add_memory_constraints(*extra_constraints)
self._add_tmp_constraints(*extra_constraints)
self._add_memory_constraints(var)
if not self.satisfiable():
if extra_constraints:
self._solver.pop()
assert False # not satisfiable!
res = list()
while n > 0 and self.satisfiable():
model = self._solver.model()
r = model.evaluate(var.z3obj, model_completion=True)
r = BVV(r.as_long(), var.size)
res.append(r)
self._add_tmp_constraints(var != r)
n -= 1
self._solver.pop()
return res
def symbolic(self, val: BV):
if val in self._symb_check_cache:
return self._symb_check_cache[val]
res = len(self.evaluate_upto(val, 2)) != 1
self._symb_check_cache[val] = res
return res
def _max_binary_search(self, val: BV):
lb = 0
ub = 2 ** val.size - 1
while lb <= ub:
m = (lb + ub) // 2
if not self.satisfiable(extra_constraints=[val.UGE(m)]):
ub = m - 1
else:
lb = m + 1
self._max_cache[val] = ub
return ub
def _max_z3_optimize(self, val: BV):
if USE_OPT_SOLVER:
self._solver.push()
h = self._solver.maximize(val.z3obj)
assert self._solver.check().r == 1
res = self._solver.upper(h).as_long()
self._solver.pop()
else:
opt = z3.Optimize()
for c in self.assertions:
opt.add(c.z3obj)
h = opt.maximize(val.z3obj)
assert opt.check().r == 1
res = opt.upper(h).as_long()
return res
def max(self, val: BV):
if not symbolic(val):
return val.value
if val in self._max_cache:
return self._max_cache[val]
self._add_memory_constraints(val)
# res = self._max_binary_search(val)
res = self._max_z3_optimize(val)
val.interval.high = res
self._max_cache[val] = res
return res
def _min_binary_search(self, val: BV):
lb = 0
ub = 2 ** val.size - 1
while lb <= ub:
m = (lb + ub) // 2
if not self.satisfiable(extra_constraints=[val.ULE(m)]):
lb = m + 1
else:
ub = m - 1
return lb
def _min_z3_optimize(self, val: BV):
if USE_OPT_SOLVER:
self._solver.push()
h = self._solver.minimize(val.z3obj)
assert self._solver.check().r == 1
res = self._solver.lower(h).as_long()
self._solver.pop()
else:
opt = z3.Optimize()
for c in self.assertions:
opt.add(c.z3obj)
h = opt.minimize(val.z3obj)
assert opt.check().r == 1
res = opt.lower(h).as_long()
return res
def min(self, val: BV):
if not symbolic(val):
return val.value
if val in self._min_cache:
return self._min_cache[val]
self._add_memory_constraints(val)
# res = self._min_binary_search(val)
res = self._min_z3_optimize(val)
val.interval.low = res
self._min_cache[val] = res
return res
def model(self, extra_constraints: list = None):
if extra_constraints:
self._add_memory_constraints(*extra_constraints)
self._solver.push()
self._add_tmp_constraints(*extra_constraints)
assert self.satisfiable()
res = self._solver.model()
if extra_constraints:
self._solver.pop()
return res
def _copy_cache(self, new, max_num_elem=3):
i = 0
for key in reversed(self._min_cache.keys()):
if i > max_num_elem:
break
new._min_cache[key] = self._min_cache[key]
i += 1
i = 0
for key in reversed(self._max_cache.keys()):
if i > max_num_elem:
break
new._max_cache[key] = self._max_cache[key]
i += 1
i = 0
for key in reversed(self._eval_cache.keys()):
if i > max_num_elem:
break
new._eval_cache[key] = self._eval_cache[key]
i += 1
i = 0
for key in reversed(self._symb_check_cache.keys()):
if i > max_num_elem:
break
new._symb_check_cache[key] = self._symb_check_cache[key]
i += 1
def copy(self, state, fast_copy=False):
fast_copy = True # deepcopy seems broken
res = Solver(state)
if not fast_copy:
# print("copying the solver slow")
res._solver = self._solver.__deepcopy__()
# print("copying done")
else:
for a in self._solver.assertions():
res._solver.add(a)
res.assertions = self.assertions[:]
self._copy_cache(res, 3)
return res
def compute_solvers_difference(self, other): # can be quite slow
assert isinstance(other, Solver)
i = 0
for c1, c2 in zip(self.assertions, other.assertions):
if not c1.eq(c2):
break
i += 1
const1 = None
for c in self.assertions[i:]: # additional constraints self
const1 = c if const1 is None else And(const1, c)
const2 = None
for c in other.assertions[i:]: # additional constraints other
const2 = c if const2 is None else And(const2, c)
# common, consts only self, consts only other
return self.assertions[:i], const1, const2
def merge(self, other):
assert isinstance(other, Solver)
common, only_self, only_other = self.compute_solvers_difference(other)
self._invalidate_cache()
new_z3_solver = z3.Solver()
self.assertions = []
for const in common:
new_z3_solver.add(const.z3obj) # common constraints
self.assertions.append(const)
if only_self is not None and only_other is not None:
cond = Or(only_self, only_other)
cond = cond.simplify()
if not cond.z3obj.eq(z3.BoolVal(True)):
new_z3_solver.add(cond.z3obj)
self.assertions.append(cond)
else:
raise Exception("Can this happen?")
self._solver = new_z3_solver