forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.go
422 lines (361 loc) · 12.6 KB
/
generate.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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
// Copyright (C) 2019-2021 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand. If not, see <https://www.gnu.org/licenses/>.
package gen
import (
"fmt"
"io"
"io/ioutil"
"math"
"os"
"path/filepath"
"runtime"
"sort"
"sync"
"sync/atomic"
"github.com/algorand/go-deadlock"
"github.com/algorand/go-algorand/config"
"github.com/algorand/go-algorand/data/account"
"github.com/algorand/go-algorand/data/basics"
"github.com/algorand/go-algorand/data/bookkeeping"
"github.com/algorand/go-algorand/protocol"
"github.com/algorand/go-algorand/util"
"github.com/algorand/go-algorand/util/db"
)
// Genesis.json SchemaID
var schemaID = "v1"
var defaultSinkAddr = basics.Address{0x7, 0xda, 0xcb, 0x4b, 0x6d, 0x9e, 0xd1, 0x41, 0xb1, 0x75, 0x76, 0xbd, 0x45, 0x9a, 0xe6, 0x42, 0x1d, 0x48, 0x6d, 0xa3, 0xd4, 0xef, 0x22, 0x47, 0xc4, 0x9, 0xa3, 0x96, 0xb8, 0x2e, 0xa2, 0x21}
var defaultPoolAddr = basics.Address{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
// The number of MicroAlgos in the incentive pool at genesis.
var defaultIncentivePoolBalanceAtInception uint64 = 125e6 * 1e6
// TotalMoney represents the total amount of MicroAlgos in the system
const TotalMoney uint64 = 10 * 1e9 * 1e6
type genesisAllocation struct {
Name string
Stake uint64
Online basics.Status
}
func u64absDiff(a, b uint64) uint64 {
if a > b {
return a - b
}
if b > a {
return b - a
}
return 0
}
// testable inner function that doesn't touch filesystem
func setupGenerateGenesisFiles(genesisData *GenesisData, consensus config.ConsensusProtocols, verboseOut io.Writer) (proto protocol.ConsensusVersion, consensusParams config.ConsensusParams, allocation []genesisAllocation, err error) {
err = nil
// Backwards compatibility with older genesis files: if the consensus
// protocol version is not specified, default to V0.
proto = genesisData.ConsensusProtocol
if proto == protocol.ConsensusVersion("") {
proto = protocol.ConsensusCurrentVersion
}
// Backwards compatibility with older genesis files: if the fee sink
// or the rewards pool is not specified, set their defaults.
if (genesisData.FeeSink == basics.Address{}) {
genesisData.FeeSink = defaultSinkAddr
}
if (genesisData.RewardsPool == basics.Address{}) {
genesisData.RewardsPool = defaultPoolAddr
}
var ok bool
consensusParams, ok = consensus[proto]
if !ok {
err = fmt.Errorf("protocol %s not supported", proto)
return
}
var sum uint64
allocation = make([]genesisAllocation, len(genesisData.Wallets))
for i, wallet := range genesisData.Wallets {
acct := genesisAllocation{
Name: wallet.Name,
Stake: uint64(float64(TotalMoney/100)*wallet.Stake + .5),
Online: basics.Online,
}
if !wallet.Online {
acct.Online = basics.Offline
}
allocation[i] = acct
sum += acct.Stake
}
if sum != TotalMoney {
fsum := float64(sum)
ftot := float64(TotalMoney)
if (math.Abs((fsum-ftot)/ftot) < 0.01) && (u64absDiff(sum, TotalMoney) < 10000) {
if verboseOut != nil {
fmt.Fprintf(verboseOut, "doing roundoff fixup expected total money %d actual sum %d\n", TotalMoney, sum)
}
// wallet stake is a float and roundoff might happen but we might be close enough to do fixup
i := 0
for sum != TotalMoney {
if sum < TotalMoney {
allocation[i].Stake++
sum++
} else {
if allocation[i].Stake > consensusParams.MinBalance {
allocation[i].Stake--
sum--
}
}
i = (i + 1) % len(allocation)
}
} else {
panic(fmt.Sprintf("Amounts don't add up to TotalMoney - off by %v", int64(TotalMoney)-int64(sum)))
}
}
return
}
// GenerateGenesisFiles generates the genesis.json file and wallet files for a give genesis configuration.
func GenerateGenesisFiles(genesisData GenesisData, consensus config.ConsensusProtocols, outDir string, verboseOut io.Writer) error {
proto, consensusParams, allocation, err := setupGenerateGenesisFiles(&genesisData, consensus, verboseOut)
if err != nil {
return err
}
err = os.Mkdir(outDir, os.ModeDir|os.FileMode(0777))
if err != nil && os.IsNotExist(err) {
return fmt.Errorf("couldn't make output directory '%s': %v", outDir, err.Error())
}
return generateGenesisFiles(outDir, proto, consensusParams, genesisData.NetworkName, genesisData.VersionModifier, allocation, genesisData.FirstPartKeyRound, genesisData.LastPartKeyRound, genesisData.PartKeyDilution, genesisData.FeeSink, genesisData.RewardsPool, genesisData.Comment, verboseOut)
}
func generateGenesisFiles(outDir string, protoVersion protocol.ConsensusVersion, protoParams config.ConsensusParams, netName string, schemaVersionModifier string,
allocation []genesisAllocation, firstWalletValid uint64, lastWalletValid uint64, partKeyDilution uint64, feeSink, rewardsPool basics.Address, comment string, verboseOut io.Writer) (err error) {
genesisAddrs := make(map[string]basics.Address)
records := make(map[string]basics.AccountData)
if partKeyDilution == 0 {
partKeyDilution = protoParams.DefaultKeyDilution
}
// Sort account names alphabetically
sort.SliceStable(allocation, func(i, j int) bool {
return allocation[i].Name < allocation[j].Name
})
rootKeyCreated := int64(0)
partKeyCreated := int64(0)
pendingWallets := make(chan genesisAllocation, len(allocation))
concurrentWalletGenerators := runtime.NumCPU() * 2
errorsChannel := make(chan error, concurrentWalletGenerators)
verbose := verboseOut != nil
verbosedOutput := make(chan string)
var creatingWalletsWaitGroup sync.WaitGroup
var writeMu deadlock.Mutex
createWallet := func() {
var err error
defer creatingWalletsWaitGroup.Done()
for {
var wallet genesisAllocation
select {
case wallet = <-pendingWallets:
default:
return
}
var root account.Root
var part account.PersistedParticipation
wfilename := filepath.Join(outDir, config.RootKeyFilename(wallet.Name))
pfilename := filepath.Join(outDir, config.PartKeyFilename(wallet.Name, firstWalletValid, lastWalletValid))
root, rootDB, rootkeyErr := loadRootKey(wfilename)
if rootkeyErr != nil && !os.IsNotExist(rootkeyErr) {
errorsChannel <- rootkeyErr
return
}
part, partDB, partkeyErr := loadPartKeys(pfilename)
if partkeyErr != nil && !os.IsNotExist(partkeyErr) && partkeyErr != account.ErrUnsupportedSchema {
errorsChannel <- partkeyErr
return
}
if rootkeyErr == nil && partkeyErr == nil {
if verbose {
verbosedOutput <- fmt.Sprintln("Reusing existing wallet:", wfilename, pfilename)
}
} else {
// At this point either rootKeys is valid or rootkeyErr != nil
// Likewise, either partkey is valid or partkeyErr != nil
if rootkeyErr != nil {
os.Remove(wfilename)
rootDB, err = db.MakeErasableAccessor(wfilename)
if err != nil {
err = fmt.Errorf("couldn't open root DB accessor %s: %v", wfilename, err)
} else {
root, err = account.GenerateRoot(rootDB)
}
if err != nil {
os.Remove(wfilename)
errorsChannel <- err
return
}
if verbose {
verbosedOutput <- fmt.Sprintf("Created new rootkey: %s", wfilename)
}
atomic.AddInt64(&rootKeyCreated, 1)
}
if partkeyErr != nil && wallet.Online == basics.Online {
os.Remove(pfilename)
partDB, err = db.MakeErasableAccessor(pfilename)
if err != nil {
err = fmt.Errorf("couldn't open participation DB accessor %s: %v", pfilename, err)
os.Remove(pfilename)
errorsChannel <- err
return
}
part, err = account.FillDBWithParticipationKeys(partDB, root.Address(), basics.Round(firstWalletValid), basics.Round(lastWalletValid), partKeyDilution)
if err != nil {
err = fmt.Errorf("could not generate new participation file %s: %v", pfilename, err)
os.Remove(pfilename)
errorsChannel <- err
return
}
if verbose {
verbosedOutput <- fmt.Sprintf("Created new partkey: %s", pfilename)
}
atomic.AddInt64(&partKeyCreated, 1)
}
}
var data basics.AccountData
data.Status = wallet.Online
data.MicroAlgos.Raw = wallet.Stake
if wallet.Online == basics.Online {
data.VoteID = part.VotingSecrets().OneTimeSignatureVerifier
data.SelectionID = part.VRFSecrets().PK
data.VoteFirstValid = part.FirstValid
data.VoteLastValid = part.LastValid
data.VoteKeyDilution = part.KeyDilution
}
writeMu.Lock()
records[wallet.Name] = data
genesisAddrs[wallet.Name] = root.Address()
writeMu.Unlock()
rootDB.Close()
if wallet.Online == basics.Online {
partDB.Close()
}
}
}
for _, wallet := range allocation {
pendingWallets <- wallet
}
if verbose {
// create a listener for the verbosedOutput
go func() {
for textOut := range verbosedOutput {
fmt.Fprintf(verboseOut, "%s\n", textOut)
}
}()
}
creatingWalletsWaitGroup.Add(concurrentWalletGenerators)
for routinesCounter := 0; routinesCounter < concurrentWalletGenerators; routinesCounter++ {
go createWallet()
}
// wait until all goroutines are done.
creatingWalletsWaitGroup.Wait()
close(verbosedOutput)
// check to see if we had any errors.
select {
case err := <-errorsChannel:
return err
default:
}
genesisAddrs["FeeSink"] = feeSink
genesisAddrs["RewardsPool"] = rewardsPool
if verbose {
fmt.Fprintln(verboseOut, protoVersion, protoParams.MinBalance)
}
records["FeeSink"] = basics.AccountData{
Status: basics.NotParticipating,
MicroAlgos: basics.MicroAlgos{Raw: protoParams.MinBalance},
}
records["RewardsPool"] = basics.AccountData{
Status: basics.NotParticipating,
MicroAlgos: basics.MicroAlgos{Raw: defaultIncentivePoolBalanceAtInception},
}
sinkAcct := genesisAllocation{
Name: "FeeSink",
Stake: protoParams.MinBalance,
Online: basics.NotParticipating,
}
poolAcct := genesisAllocation{
Name: "RewardsPool",
Stake: defaultIncentivePoolBalanceAtInception,
Online: basics.NotParticipating,
}
alloc2 := make([]genesisAllocation, 0, len(allocation)+2)
alloc2 = append(alloc2, poolAcct, sinkAcct)
alloc2 = append(alloc2, allocation...)
allocation = alloc2
g := bookkeeping.Genesis{
SchemaID: schemaID + schemaVersionModifier,
Proto: protoVersion,
Network: protocol.NetworkID(netName),
Timestamp: 0,
FeeSink: feeSink.String(),
RewardsPool: rewardsPool.String(),
Comment: comment,
}
for _, wallet := range allocation {
walletData := records[wallet.Name]
g.Allocation = append(g.Allocation, bookkeeping.GenesisAllocation{
Address: genesisAddrs[wallet.Name].String(),
Comment: wallet.Name,
State: walletData,
})
}
jsonData := protocol.EncodeJSON(g)
err = ioutil.WriteFile(filepath.Join(outDir, config.GenesisJSONFile), append(jsonData, '\n'), 0666)
if (!verbose) && (rootKeyCreated > 0 || partKeyCreated > 0) {
fmt.Printf("Created %d new rootkeys and %d new partkeys.\n", rootKeyCreated, partKeyCreated)
}
return
}
// If err != nil, rootDB needs to be closed.
func loadRootKey(filename string) (root account.Root, rootDB db.Accessor, err error) {
if !util.FileExists(filename) {
err = os.ErrNotExist
return
}
rootDB, err = db.MakeAccessor(filename, true, false)
if err != nil {
err = fmt.Errorf("couldn't load existing root file %s: %v", filename, err)
return
}
root, err = account.RestoreRoot(rootDB)
if err == nil {
return
}
err = fmt.Errorf("could not restore existing root file %s: %v", filename, err)
rootDB.Close()
return
}
// If err != nil, partDB needs to be closed.
func loadPartKeys(filename string) (part account.PersistedParticipation, partDB db.Accessor, err error) {
if !util.FileExists(filename) {
err = os.ErrNotExist
return
}
partDB, err = db.MakeAccessor(filename, true, false)
if err != nil {
err = fmt.Errorf("couldn't load existing participation file %s: %v", filename, err)
return
}
part, err = account.RestoreParticipation(partDB)
if err == nil {
return
}
// Don't override 'unsupported schema' error
if err != account.ErrUnsupportedSchema {
err = fmt.Errorf("couldn't restore existing participation file %s: %v", filename, err)
}
partDB.Close()
return
}