-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.py
177 lines (160 loc) · 7.02 KB
/
Script.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
import logging
from io import BytesIO
from unittest import TestCase
from AddressCoder import encode_varint, read_varint
from Operation import OP_CODE_NAMES, OP_CODE_FUNCTIONS, op_hash160, op_equal, op_verify
def p2pkh_script(h160):
'''Takes a hash160 and returns the p2pkh ScriptPubKey'''
return Script([0x76, 0xa9, h160, 0x88, 0xac])
def p2sh_script(h160):
'''Takes a hash160 and returns the p2sh ScriptPubKey'''
return Script([0xa9, h160, 0x87])
class Script(object):
def __init__(self, cmds=None):
if cmds is None:
self.cmds = []
else:
self.cmds = cmds
def __repr__(self):
result = []
for cmd in self.cmds:
if type(cmd) == int:
if OP_CODE_NAMES.get(cmd):
name = OP_CODE_NAMES.get(cmd)
else:
name = 'OP_[{}]'.format(cmd)
result.append(name)
else:
result.append(cmd.hex())
return ' '.join(result)
def __add__(self, other):
return Script(self.cmds + other.cmds)
@classmethod
def parse(cls, s):
length = read_varint(s)
cmds = []
count = 0
while count < length:
current = s.read(1)
count += 1
current_byte = current[0]
if 1 <= current_byte <= 75:
cmds.append(s.read(current_byte))
count += current_byte
elif current_byte == 76:
# op_pushdata1
data_length = int.from_bytes(s.read(1), 'little')
cmds.append(s.read(data_length))
count += data_length + 1
elif current_byte == 77:
# op_pushdata2
data_length = int.from_bytes(s.read(2), 'little')
cmds.append(s.read(data_length))
count += data_length + 2
else:
# we have an opcode. set the current byte to op_code
# add the op_code to the list of cmds
cmds.append(current_byte)
if count != length:
raise SyntaxError('parsing script failed')
return cls(cmds)
def serialize(self):
result = self.raw_serialize()
total = len(result)
return encode_varint(total) + result
def raw_serialize(self):
result = b''
for cmd in self.cmds:
if type(cmd) == int:
result += cmd.to_bytes(1, 'little')
else:
length = len(cmd)
if length < 75:
result += length.to_bytes(1, 'little')
elif 75 < length < 0x100:
result += 0x76
result += length.to_bytes(1, 'little')
elif 0x100 <= length <= 520:
result += 0x77
result += length.to_bytes(2, 'little')
else:
raise ValueError('too long an cmd')
result += cmd
return result
def evaluate(self, z):
cmds = self.cmds[:]
stack = []
altstack = []
while len(cmds) > 0:
cmd = cmds.pop(0)
if type(cmd) == int:
operation = OP_CODE_FUNCTIONS[cmd]
if cmd in (99, 100): # OP_IF and OP_NOTIF
if not operation(stack, cmds):
logging.info('bad op: {}'.format(OP_CODE_NAMES[cmd]))
return False
elif cmd in (107, 108): # OP_TOTALSTACK and OP_FROMALTSTACK
if not operation(stack, altstack):
logging.info('bad op: {}'.format(OP_CODE_NAMES[cmd]))
return False
elif cmd in (172, 173, 174, 175): # signature verify
if not operation(stack, z):
logging.info('bad op: {}'.format(OP_CODE_NAMES[cmd]))
return False
else:
if not operation(stack):
logging.info('bad op: {}'.format(OP_CODE_NAMES[cmd]))
return False
else:
stack.append(cmd)
if len(cmds) == 3 and cmds[0] == 0xa9 \
and type(cmds[1]) == bytes and len(cmds[1]) == 20 \
and cmds[2] == 0x87: # p2sh
# we execute the next three opcodes
cmds.pop()
h160 = cmds.pop()
cmds.pop()
if not op_hash160(stack):
return False
stack.append(h160)
if not op_equal(stack):
return False
# final result should be a 1
if not op_verify(stack):
logging.info('bad p2sh h160')
return False
# hashes match! now add the RedeemScript
redeem_script = encode_varint(len(cmd)) + cmd
stream = BytesIO(redeem_script)
cmds.extend(Script.parse(stream).cmds)
if len(stack) == 0:
return False
if stack.pop() == b'':
return False
return True
def is_p2pkh_script_pubkey(self):
'''Returns whether this follows the
OP_DUP OP_HASH160 <20 byte hash> OP_EQUALVERIFY OP_CHECKSIG pattern.'''
return len(self.cmds) == 5 and self.cmds[0] == 0x76 \
and self.cmds[1] == 0xa9 \
and type(self.cmds[2]) == bytes and len(self.cmds[2]) == 20 \
and self.cmds[3] == 0x88 and self.cmds[4] == 0xac
def is_p2sh_script_pubkey(self):
'''Returns whether this follows the
OP_HASH160 <20 byte hash> OP_EQUAL pattern.'''
return len(self.cmds) == 3 and self.cmds[0] == 0xa9 \
and type(self.cmds[1]) == bytes and len(self.cmds[1]) == 20 \
and self.cmds[2] == 0x87
class ScriptTest(TestCase):
def test_parse(self):
script_pubkey = BytesIO(bytes.fromhex('6a47304402207899531a52d59a6de200179928ca900254a36b8dff8bb75f5f5d71b1cdc26125022008b422690b8461cb52c3cc30330b23d574351872b7c361e9aae3649071c1a7160121035d5c93d9ac96881f19ba1f686f15f009ded7c62efe85a872e6a19b43c15a2937'))
script = Script.parse(script_pubkey)
want = bytes.fromhex('304402207899531a52d59a6de200179928ca900254a36b8dff8bb75f5f5d71b1cdc26125022008b422690b8461cb52c3cc30330b23d574351872b7c361e9aae3649071c1a71601')
self.assertEqual(script.cmds[0].hex(), want.hex())
want = bytes.fromhex('035d5c93d9ac96881f19ba1f686f15f009ded7c62efe85a872e6a19b43c15a2937')
self.assertEqual(script.cmds[1], want)
def test_serialize(self):
want = '6a47304402207899531a52d59a6de200179928ca900254a36b8dff8bb75f5f5d71b1cdc26125022008b422690b8461cb52c3cc30330b23d574351872b7c361e9aae3649071c1a7160121035d5c93d9ac96881f19ba1f686f15f009ded7c62efe85a872e6a19b43c15a2937'
script_pubkey = BytesIO(bytes.fromhex(want))
script = Script.parse(script_pubkey)
self.assertEqual(script.serialize().hex(), want)