-
Notifications
You must be signed in to change notification settings - Fork 488
/
Copy pathbig.go
159 lines (144 loc) · 5.27 KB
/
big.go
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
// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package common
import (
"math/big"
"time"
"github.com/dominant-strategies/go-quai/log"
"modernc.org/mathutil"
)
const (
MantBits = 64
)
// Common big integers often used
var (
Big0 = big.NewInt(0)
Big1 = big.NewInt(1)
Big2 = big.NewInt(2)
Big3 = big.NewInt(3)
Big4 = big.NewInt(4)
Big7 = big.NewInt(7)
Big8 = big.NewInt(8)
Big10 = big.NewInt(10)
Big16 = big.NewInt(16)
Big32 = big.NewInt(32)
Big64 = big.NewInt(64)
Big96 = big.NewInt(96)
Big99 = big.NewInt(99)
Big100 = big.NewInt(100)
Big101 = big.NewInt(101)
Big256 = big.NewInt(256)
Big257 = big.NewInt(257)
Big480 = big.NewInt(480)
Big1024 = big.NewInt(1024)
Big3072 = big.NewInt(3072)
Big199680 = big.NewInt(199680)
Big2e64 = new(big.Int).Exp(big.NewInt(2), big.NewInt(64), big.NewInt(0))
Big2e256 = new(big.Int).Exp(big.NewInt(2), big.NewInt(256), big.NewInt(0))
Big10e18 = new(big.Int).Exp(big.NewInt(10), big.NewInt(18), big.NewInt(0))
)
func BigBitsToBits(original *big.Int) *big.Int {
return big.NewInt(0).Div(original, Big2e64)
}
func BigBitsToBitsFloat(original *big.Int) *big.Float {
return new(big.Float).Quo(new(big.Float).SetInt(original), new(big.Float).SetInt(Big2e64))
}
func BitsToBigBits(original *big.Int) *big.Int {
c, m := mathutil.BinaryLog(original, 64)
bigBits := new(big.Int).Mul(big.NewInt(int64(c)), new(big.Int).Exp(big.NewInt(2), big.NewInt(64), nil))
bigBits = new(big.Int).Add(bigBits, m)
return bigBits
}
func BigBitsArrayToBitsArray(original []*big.Int) []*big.Int {
bitsArray := make([]*big.Int, len(original))
for i, bits := range original {
bitsArray[i] = big.NewInt(0).Div(bits, Big2e64)
}
return bitsArray
}
func EntropyBigBitsToDifficultyBits(bigBits *big.Int) *big.Int {
twopowerBits := new(big.Int).Exp(big.NewInt(2), new(big.Int).Div(bigBits, Big2e64), nil)
return new(big.Int).Div(Big2e256, twopowerBits)
}
// IntrinsicLogEntropy returns the logarithm of the intrinsic entropy reduction of a PoW hash
func LogBig(diff *big.Int) *big.Int {
diffCopy := new(big.Int).Set(diff)
c, m := mathutil.BinaryLog(diffCopy, MantBits)
bigBits := new(big.Int).Mul(big.NewInt(int64(c)), new(big.Int).Exp(big.NewInt(2), big.NewInt(MantBits), nil))
bigBits = new(big.Int).Add(bigBits, m)
return bigBits
}
// Continously verify that the common values have not been overwritten.
func SanityCheck(quitCh chan struct{}) {
big0 := big.NewInt(0)
big1 := big.NewInt(1)
big2 := big.NewInt(2)
big3 := big.NewInt(3)
big4 := big.NewInt(4)
big7 := big.NewInt(7)
big8 := big.NewInt(8)
big10 := big.NewInt(10)
big16 := big.NewInt(16)
big32 := big.NewInt(32)
big64 := big.NewInt(64)
big96 := big.NewInt(96)
big99 := big.NewInt(99)
big100 := big.NewInt(100)
big101 := big.NewInt(101)
big256 := big.NewInt(256)
big257 := big.NewInt(257)
big480 := big.NewInt(480)
big1024 := big.NewInt(1024)
big3072 := big.NewInt(3072)
big199680 := big.NewInt(199680)
big2e64 := new(big.Int).Exp(big.NewInt(2), big.NewInt(64), big.NewInt(0))
big2e256 := new(big.Int).Exp(big.NewInt(2), big.NewInt(256), big.NewInt(0))
big10e18 := new(big.Int).Exp(big.NewInt(10), big.NewInt(18), big.NewInt(0))
go func(quitCh chan struct{}) {
for {
time.Sleep(1 * time.Minute)
// Verify that none of the values have mutated.
if Big0 == nil || big0.Cmp(Big0) != 0 ||
Big1 == nil || big1.Cmp(Big1) != 0 ||
Big2 == nil || big2.Cmp(Big2) != 0 ||
Big3 == nil || big3.Cmp(Big3) != 0 ||
Big4 == nil || big4.Cmp(Big4) != 0 ||
Big7 == nil || big7.Cmp(Big7) != 0 ||
Big8 == nil || big8.Cmp(Big8) != 0 ||
Big10 == nil || big10.Cmp(Big10) != 0 ||
Big16 == nil || big16.Cmp(Big16) != 0 ||
Big32 == nil || big32.Cmp(Big32) != 0 ||
Big64 == nil || big64.Cmp(Big64) != 0 ||
Big96 == nil || big96.Cmp(Big96) != 0 ||
Big99 == nil || big99.Cmp(Big99) != 0 ||
Big100 == nil || big100.Cmp(Big100) != 0 ||
Big101 == nil || big101.Cmp(Big101) != 0 ||
Big256 == nil || big256.Cmp(Big256) != 0 ||
Big257 == nil || big257.Cmp(Big257) != 0 ||
Big480 == nil || big480.Cmp(Big480) != 0 ||
Big1024 == nil || big1024.Cmp(Big1024) != 0 ||
Big3072 == nil || big3072.Cmp(Big3072) != 0 ||
Big199680 == nil || big199680.Cmp(Big199680) != 0 ||
Big2e64 == nil || big2e64.Cmp(Big2e64) != 0 ||
Big2e256 == nil || big2e256.Cmp(Big2e256) != 0 ||
Big10e18 == nil || big10e18.Cmp(Big10e18) != 0 {
// Send a message to quitCh to abort.
log.Global.Error("A common value has mutated, exiting now")
quitCh <- struct{}{}
}
}
}(quitCh)
}