2012-12-14 48 views
5

我正在浏览Z3py,并对如何在特定情况下使用API​​有疑问。下面的代码是我最终希望使用Z3的简化版本。我的一些问题是: 1.有没有办法像下面的变量'a'一样创建任意长度的数组值? 2.您可以通过Z3py访问循环中的数组中的每个元素吗? 3.是否可以将结果分配回原始变量或是需要新变量?转换为CNF会自动添加一个唯一的ID吗? (即a + = b)学习Z3py - 是否支持数组和循环

总体而言,我迷失在如何将Z3py API应用于如下解决方案依赖于'b'的算法。感谢您的帮助或提示。

import sys 
import struct 

a = "\xff\x33\x01\x88\x02\x11\x03\x55" 
b = sys.stdin.read(1) #a byte of user input - value 'a' is good 
c = '' 
d = '' 

for x in range(len(a)): 
    c += struct.pack('B', int(a[x].encode('hex'), 16)^int(b.encode('hex'), 16)) 

print c.encode('hex') 

second = '\x23\x23' 
x = 0 
while x < len(c): 
    d += struct.pack('h', int(c[x:x+1].encode('hex'), 16)^int(second.encode('hex'), 16)) 
    x += 2 

print d.encode('hex') 

if d == '\xbd\x23\x43\x23\x40\x23\x41\x23': 
    print "Good" 
else: 
    print "Bad" 
+0

我想检查我是否理解这个问题。看来你想用Z3Py来解决这个问题:给定'a'和'd',找到'b',这样你就可以打印出好的。是吗? –

+0

是的,这就对了。 – daybreak

回答

6

我们可以通过编写一个产生Z3表达式的Python程序来实现这一点。我们在这个程序中使用Python循环和列表(我们也可以使用数组),但是这些列表包含Z3“符号”表达式而不是Python值。结果列表d是包含b的Z3表达式的列表。然后,我们要求Z3找到一个b,使得d的元素与字符串'\xbd\x23\x43\x23\x40\x23\x41\x23'中的字符“相等”。这里是代码:

from z3 import * 

def str2array(a): 
    """ 
    Convert a string into a list of Z3 bit-vector values of size 8 
    """ 
    return [ BitVecVal(int(a[x].encode('hex'), 16), 8) for x in range(len(a)) ] 

a = str2array("\xff\x33\x01\x88\x02\x11\x03\x55") 
# 'a' is a list of Z3 bitvector constants. 
print "a:", a 
# The elements of 'a' may look like Python integers but they are Z3 expressions. 
# We can use the method sexpr() to get these values in SMT 2.0 syntax. 
print [ a_i.sexpr() for a_i in a ] 

# b is a Z3 symbolic variable. 
b = BitVec('b', 8) 

# We compute a list 'c' of Z3 expressions from 'a' and 'b'. 
# We use Python list comprehensions but we can also use a for-loop. 
c = [ a_i^b for a_i in a ] 

print "c:", c 

second = '\x23\x23' 
# We convert 'second' in a Z3 bit-vector value of size 16 
second = BitVecVal(int(second.encode('hex'), 16), 16) 
print "second:", second 

# The Z3 operation Concat concatenates two or more bit-vector expressions. 
d = [] 
x = 0 
while x < len(c): 
    # c[x] is a Bit-vector of size 8, second is a Bit-vector of size 16. 
    # In Z3, we have to do the "casting" ourselves. 
    # We use ZeroExt(8, c[x]) to convert c[x] into a Bit-vector of size 16, 
    # by adding 0-bits. 
    d.append(ZeroExt(8, c[x])^second) 
    x += 2 
print "d:", d 

goal = str2array('\xbd\x23\x43\x23\x40\x23\x41\x23') 
print "goal:", goal 
# Note that, len(goal) == 2*len(d) 
# We can use Concat to concatenate adjacent elements. 

# We want each element of d[i] == Concat(goal[2*i], goal[2*i+1]) 
# We can use Z3 to find the 'b' that will satisfy these constraints 

s = Solver() 
# 's' is a Z3 solver object 
i = 0 
while i < len(d): 
    s.add(d[i] == Concat(goal[2*i+1], goal[2*i])) 
    i += 1 
print s 
# Now, 's' contains a set of equational constraints. 
print s.check() 
print s.model() 
+0

感谢您的代码并对其进行评论。它已经清除了很多我的问题。是否有理由不能看出“a”或97是解决约束条件的b值? – daybreak

+0

我更正了程序。在Z3编码示例时,我犯了两个错误。首先,在我使用的第一个编码中,操作'c [x:x + 1]'实际上返回了'c'的一个字符。其次,当用十六进制编码短整数时,首先放置最重要的位。例如,我将'9149'编码为'x23xBD'而不是'xBDx23'。进行这些更正后,Z3找到解97。 –