1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace BitWasp\Bitcoin\Script\Interpreter; |
4
|
|
|
|
5
|
|
|
use BitWasp\Bitcoin\Bitcoin; |
6
|
|
|
use BitWasp\Bitcoin\Math\Math; |
7
|
|
|
use BitWasp\Bitcoin\Serializable; |
8
|
|
|
use BitWasp\Buffertools\Buffer; |
9
|
|
|
use BitWasp\Buffertools\BufferInterface; |
10
|
|
|
|
11
|
|
|
class Number extends Serializable |
12
|
|
|
{ |
13
|
|
|
const MAX_NUM_SIZE = 4; |
14
|
|
|
const MAX = 2**31-1; |
15
|
|
|
const MIN = -2**31+1; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* @var Math |
19
|
|
|
*/ |
20
|
|
|
private $math; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @var int |
24
|
|
|
*/ |
25
|
|
|
private $number; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Number constructor. |
29
|
|
|
* @param int $number |
30
|
|
|
* @param Math $math |
31
|
|
|
*/ |
32
|
1703 |
|
public function __construct($number, Math $math) |
33
|
|
|
{ |
34
|
1703 |
|
$this->number = $number; |
35
|
1703 |
|
$this->math = $math; |
36
|
1703 |
|
} |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @param int $number |
40
|
|
|
* @param Math|null $math |
41
|
|
|
* @return self |
42
|
|
|
*/ |
43
|
1570 |
|
public static function int($number, Math $math = null) |
44
|
|
|
{ |
45
|
1570 |
|
return new self( |
46
|
798 |
|
$number, |
47
|
1570 |
|
$math ?: Bitcoin::getMath() |
48
|
798 |
|
); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* @param \GMP $number |
53
|
|
|
* @param Math|null $math |
54
|
|
|
* @return self |
55
|
|
|
*/ |
56
|
|
|
public static function gmp(\GMP $number, Math $math = null) |
57
|
|
|
{ |
58
|
|
|
return new self( |
59
|
|
|
gmp_strval($number, 10), |
60
|
|
|
$math ?: Bitcoin::getMath() |
61
|
|
|
); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* @param BufferInterface $vch |
66
|
|
|
* @param bool $fRequireMinimal |
67
|
|
|
* @param int $maxNumSize |
68
|
|
|
* @param Math|null $math |
69
|
|
|
* @return self |
70
|
|
|
*/ |
71
|
1273 |
|
public static function buffer(BufferInterface $vch, $fRequireMinimal, $maxNumSize = self::MAX_NUM_SIZE, Math $math = null) |
72
|
|
|
{ |
73
|
1273 |
|
$size = $vch->getSize(); |
74
|
1273 |
|
if ($size > $maxNumSize) { |
75
|
22 |
|
throw new \RuntimeException('Script number overflow'); |
76
|
|
|
} |
77
|
|
|
|
78
|
1255 |
|
if ($fRequireMinimal && $size > 0) { |
79
|
110 |
|
$binary = $vch->getBinary(); |
80
|
|
|
//$chars = array_values(unpack("C*", $binary)); |
81
|
110 |
|
if ((ord($binary[$size - 1]) & 0x7f) == 0) { |
82
|
110 |
|
if ($size <= 1 || (ord($binary[$size - 2]) & 0x80) == 0) { |
83
|
110 |
|
throw new \RuntimeException('Non-minimally encoded script number'); |
84
|
|
|
} |
85
|
|
|
} |
86
|
1 |
|
} |
87
|
|
|
|
88
|
1181 |
|
$math = $math ?: Bitcoin::getMath(); |
89
|
1181 |
|
$number = new self(0, $math); |
90
|
1181 |
|
$number->number = $number->parseBuffer($vch); |
|
|
|
|
91
|
1181 |
|
return $number; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* @param BufferInterface $buffer |
96
|
|
|
* @return int |
97
|
|
|
*/ |
98
|
1181 |
|
private function parseBuffer(BufferInterface $buffer) |
99
|
|
|
{ |
100
|
1181 |
|
$size = $buffer->getSize(); |
101
|
1181 |
|
if ($size === 0) { |
102
|
677 |
|
return '0'; |
103
|
|
|
} |
104
|
|
|
|
105
|
789 |
|
$chars = array_values(unpack("C*", $buffer->getBinary())); |
106
|
|
|
|
107
|
789 |
|
$result = gmp_init(0); |
108
|
789 |
|
for ($i = 0; $i < $size; $i++) { |
109
|
789 |
|
$mul = $i * 8; |
110
|
789 |
|
$byte = $this->math->leftShift(gmp_init($chars[$i], 10), $mul); |
111
|
789 |
|
$result = $this->math->bitwiseOr($result, $byte); |
112
|
405 |
|
} |
113
|
|
|
|
114
|
789 |
|
if ($chars[count($chars)-1] & 0x80) { |
115
|
111 |
|
$mask = gmp_com($this->math->leftShift(gmp_init(0x80), (8 * ($size - 1)))); |
116
|
111 |
|
$result = $this->math->sub(gmp_init(0), $this->math->bitwiseAnd($result, $mask)); |
117
|
58 |
|
} |
118
|
|
|
|
119
|
789 |
|
return gmp_strval($result, 10); |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* @return BufferInterface |
124
|
|
|
*/ |
125
|
1604 |
|
private function serialize() |
126
|
|
|
{ |
127
|
1604 |
|
if ($this->number == 0) { |
128
|
528 |
|
return new Buffer('', 0); |
129
|
|
|
} |
130
|
|
|
|
131
|
1498 |
|
$zero = gmp_init(0); |
132
|
|
|
// Using array of integers instead of bytes |
133
|
1498 |
|
$result = []; |
134
|
1498 |
|
$negative = $this->math->cmp(gmp_init($this->number), $zero) < 0; |
135
|
1498 |
|
$abs = $negative ? $this->math->sub($zero, gmp_init($this->number, 10)) : gmp_init($this->number, 10); |
136
|
1498 |
|
$mask = gmp_init(0xff); |
137
|
1498 |
|
while ($this->math->cmp($abs, $zero) > 0) { |
|
|
|
|
138
|
1498 |
|
$result[] = (int) gmp_strval($this->math->bitwiseAnd($abs, $mask), 10); |
|
|
|
|
139
|
1498 |
|
$abs = $this->math->rightShift($abs, 8); |
|
|
|
|
140
|
761 |
|
} |
141
|
|
|
|
142
|
1498 |
|
if ($result[count($result) - 1] & 0x80) { |
143
|
18 |
|
$result[] = $negative ? 0x80 : 0; |
144
|
1492 |
|
} else if ($negative) { |
145
|
30 |
|
$result[count($result) - 1] |= 0x80; |
146
|
17 |
|
} |
147
|
|
|
|
148
|
1498 |
|
$s = ''; |
149
|
1498 |
|
foreach ($result as $i) { |
150
|
1498 |
|
$s .= chr($i); |
151
|
761 |
|
} |
152
|
|
|
|
153
|
1498 |
|
return new Buffer($s, null, $this->math); |
154
|
|
|
|
155
|
|
|
} |
156
|
|
|
|
157
|
|
|
/** |
158
|
|
|
* @return BufferInterface |
159
|
|
|
*/ |
160
|
1604 |
|
public function getBuffer() |
161
|
|
|
{ |
162
|
1604 |
|
return $this->serialize(); |
163
|
|
|
} |
164
|
|
|
|
165
|
|
|
/** |
166
|
|
|
* @return int |
167
|
|
|
*/ |
168
|
256 |
|
public function getInt() |
169
|
|
|
{ |
170
|
256 |
|
if ($this->math->cmp(gmp_init($this->number, 10), gmp_init(self::MAX)) > 0) { |
171
|
|
|
return self::MAX; |
172
|
256 |
|
} else if ($this->math->cmp(gmp_init($this->number, 10), gmp_init(self::MIN)) < 0) { |
173
|
|
|
return self::MIN; |
174
|
|
|
} |
175
|
|
|
|
176
|
256 |
|
return $this->number; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
/** |
180
|
|
|
* @return \GMP |
181
|
|
|
*/ |
182
|
462 |
|
public function getGmp() |
183
|
|
|
{ |
184
|
462 |
|
return gmp_init($this->number, 10); |
185
|
|
|
} |
186
|
|
|
} |
187
|
|
|
|
This check looks for assignments to scalar types that may be of the wrong type.
To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.