-
Notifications
You must be signed in to change notification settings - Fork 211
/
nipost.go
516 lines (451 loc) · 19 KB
/
nipost.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
package activation
import (
"bytes"
"context"
"encoding/hex"
"errors"
"fmt"
"math/rand"
"time"
"github.com/spacemeshos/merkle-tree"
"github.com/spacemeshos/poet/shared"
"github.com/spacemeshos/post/proving"
"github.com/spacemeshos/post/verifying"
"golang.org/x/sync/errgroup"
"github.com/spacemeshos/go-spacemesh/activation/metrics"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/events"
"github.com/spacemeshos/go-spacemesh/log"
"github.com/spacemeshos/go-spacemesh/metrics/public"
"github.com/spacemeshos/go-spacemesh/signing"
)
const (
// Jitter values to avoid all nodes querying the poet at the same time.
// Note: the jitter values are represented as a percentage of cycle gap.
// mainnet cycle-gap: 12h
// systest cycle-gap: 30s
// Minimum jitter value before querying for the proof.
// Gives the poet service time to generate proof after a round ends (~8s on mainnet).
// mainnet -> 8.64s
// systest -> 0.36s
minPoetGetProofJitter = 0.02
// The maximum jitter value before querying for the proof.
// mainnet -> 17.28s
// systest -> 0.72s
maxPoetGetProofJitter = 0.04
)
//go:generate mockgen -package=activation -destination=./nipost_mocks.go -source=./nipost.go PoetProvingServiceClient
// PoetProvingServiceClient provides a gateway to a trust-less public proving service, which may serve many PoET
// proving clients, and thus enormously reduce the cost-per-proof for PoET since each additional proof adds only
// a small number of hash evaluations to the total cost.
type PoetProvingServiceClient interface {
PowParams(ctx context.Context) (*PoetPowParams, error)
// Submit registers a challenge in the proving service current open round.
Submit(ctx context.Context, prefix, challenge []byte, signature types.EdSignature, nodeID types.NodeID, pow PoetPoW) (*types.PoetRound, error)
// PoetServiceID returns the public key of the PoET proving service.
PoetServiceID(context.Context) (types.PoetServiceID, error)
// Proof returns the proof for the given round ID.
Proof(ctx context.Context, roundID string) (*types.PoetProofMessage, []types.Member, error)
}
func (nb *NIPostBuilder) loadState(challenge types.Hash32) {
state, err := loadBuilderState(nb.dataDir)
if err != nil {
nb.log.With().Warning("cannot load nipost state", log.Err(err))
return
}
if state.Challenge == challenge {
nb.state = state
} else {
nb.log.Info("discarding stale nipost state")
nb.state = &types.NIPostBuilderState{Challenge: challenge, NIPost: &types.NIPost{}}
}
}
func (nb *NIPostBuilder) persistState() {
if err := saveBuilderState(nb.dataDir, nb.state); err != nil {
nb.log.With().Warning("cannot store nipost state", log.Err(err))
}
}
// NIPostBuilder holds the required state and dependencies to create Non-Interactive Proofs of Space-Time (NIPost).
type NIPostBuilder struct {
nodeID types.NodeID
dataDir string
postSetupProvider postSetupProvider
poetProvers []PoetProvingServiceClient
poetDB poetDbAPI
state *types.NIPostBuilderState
log log.Log
signer *signing.EdSigner
layerClock layerClock
poetCfg PoetConfig
validator nipostValidator
}
type NIPostBuilderOption func(*NIPostBuilder)
func WithNipostValidator(v nipostValidator) NIPostBuilderOption {
return func(nb *NIPostBuilder) {
nb.validator = v
}
}
// withPoetClients allows to pass in clients directly (for testing purposes).
func withPoetClients(clients []PoetProvingServiceClient) NIPostBuilderOption {
return func(nb *NIPostBuilder) {
nb.poetProvers = clients
}
}
type poetDbAPI interface {
GetProof(types.PoetProofRef) (*types.PoetProof, *types.Hash32, error)
ValidateAndStore(ctx context.Context, proofMessage *types.PoetProofMessage) error
}
// NewNIPostBuilder returns a NIPostBuilder.
func NewNIPostBuilder(
nodeID types.NodeID,
postSetupProvider postSetupProvider,
poetDB poetDbAPI,
poetServers []string,
dataDir string,
lg log.Log,
signer *signing.EdSigner,
poetCfg PoetConfig,
layerClock layerClock,
opts ...NIPostBuilderOption,
) (*NIPostBuilder, error) {
poetClients := make([]PoetProvingServiceClient, 0, len(poetServers))
for _, address := range poetServers {
client, err := NewHTTPPoetClient(address, poetCfg)
if err != nil {
return nil, fmt.Errorf("cannot create poet client: %w", err)
}
poetClients = append(poetClients, client)
}
b := &NIPostBuilder{
nodeID: nodeID,
postSetupProvider: postSetupProvider,
poetProvers: poetClients,
poetDB: poetDB,
state: &types.NIPostBuilderState{NIPost: &types.NIPost{}},
dataDir: dataDir,
log: lg,
signer: signer,
poetCfg: poetCfg,
layerClock: layerClock,
}
for _, opt := range opts {
opt(b)
}
return b, nil
}
func (nb *NIPostBuilder) DataDir() string {
return nb.dataDir
}
// UpdatePoETProvers updates poetProver reference. It should not be executed concurrently with BuildNIPoST.
func (nb *NIPostBuilder) UpdatePoETProvers(poetProvers []PoetProvingServiceClient) {
// TODO(mafa): this seems incorrect - this makes it impossible for the node to fetch a submitted challenge
// thereby skipping an epoch they could have published an ATX for
// reset the state for safety to avoid accidental erroneous wait in Phase 1.
nb.state = &types.NIPostBuilderState{
NIPost: &types.NIPost{},
}
nb.poetProvers = poetProvers
nb.log.With().Info("updated poet proof service clients", log.Int("count", len(nb.poetProvers)))
}
// BuildNIPost uses the given challenge to build a NIPost.
// The process can take considerable time, because it includes waiting for the poet service to
// publish a proof - a process that takes about an epoch.
func (nb *NIPostBuilder) BuildNIPost(ctx context.Context, challenge *types.NIPostChallenge) (*types.NIPost, time.Duration, error) {
logger := nb.log.WithContext(ctx)
// Note: to avoid missing next PoET round, we need to publish the ATX before the next PoET round starts.
// We can still publish an ATX late (i.e. within publish epoch) and receive rewards, but we will miss one
// epoch because we didn't submit the challenge to PoET in time for next round.
// PoST
// ┌─────────────────────┐ ┌┐┌─────────────────────┐
// │ POET ROUND │ │││ NEXT POET ROUND │
// ┌────▲──┴──────────────────┬──▲──┴┴┴─────────────────▲┬──┴─────────────► time
// │ │ EPOCH │ │ PUBLISH EPOCH ││ TARGET EPOCH
// └────┼─────────────────────┴──┼──────────────────────┼┴────────────────
// │ │ │
// WE ARE HERE PROOF BECOMES ATX PUBLICATION
// AVAILABLE DEADLINE
publishEpoch := challenge.PublishEpoch
poetRoundStart := nb.layerClock.LayerToTime((publishEpoch - 1).FirstLayer()).Add(nb.poetCfg.PhaseShift)
poetRoundEnd := nb.layerClock.LayerToTime(publishEpoch.FirstLayer()).Add(nb.poetCfg.PhaseShift).Add(-nb.poetCfg.CycleGap)
// we want to publish before the publish epoch ends or we won't receive rewards
publishEpochEnd := nb.layerClock.LayerToTime((publishEpoch + 1).FirstLayer())
logger.With().Info("building nipost",
log.Time("poet round start", poetRoundStart),
log.Time("poet round end", poetRoundEnd),
log.Stringer("publish epoch", publishEpoch),
log.Time("publish epoch end", publishEpochEnd),
log.Stringer("target epoch", challenge.TargetEpoch()),
)
challengeHash := challenge.Hash()
nb.loadState(challengeHash)
if s := nb.postSetupProvider.Status(); s.State != PostSetupStateComplete {
return nil, 0, errors.New("post setup not complete")
}
// Phase 0: Submit challenge to PoET services.
if len(nb.state.PoetRequests) == 0 {
now := time.Now()
// Deadline: start of PoET round for publish epoch. PoET won't accept registrations after that.
if poetRoundStart.Before(now) {
return nil, 0, fmt.Errorf("%w: poet round has already started at %s (now: %s)", ErrATXChallengeExpired, poetRoundStart, now)
}
signature := nb.signer.Sign(signing.POET, challengeHash.Bytes())
prefix := bytes.Join([][]byte{nb.signer.Prefix(), {byte(signing.POET)}}, nil)
submitCtx, cancel := context.WithDeadline(ctx, poetRoundStart)
defer cancel()
poetRequests := nb.submitPoetChallenges(submitCtx, prefix, challengeHash.Bytes(), signature, nb.signer.NodeID())
if len(poetRequests) == 0 {
return nil, 0, &PoetSvcUnstableError{msg: "failed to submit challenge to any PoET", source: submitCtx.Err()}
}
nb.state.Challenge = challengeHash
nb.state.PoetRequests = poetRequests
nb.persistState()
}
// Phase 1: query PoET services for proofs
if nb.state.PoetProofRef == types.EmptyPoetProofRef {
now := time.Now()
// Deadline: the end of the publish epoch (with a safety margin of `GracePeriod`). If we do not publish within
// the publish epoch we won't receive any rewards in the target epoch.
if publishEpochEnd.Before(now) {
return nil, 0, fmt.Errorf("%w: deadline to query poet proof for pub epoch %d exceeded (deadline: %s, now: %s)", ErrATXChallengeExpired, challenge.PublishEpoch, publishEpochEnd, now)
}
getProofsCtx, cancel := context.WithDeadline(ctx, publishEpochEnd)
defer cancel()
events.EmitPoetWaitProof(challenge.PublishEpoch, challenge.TargetEpoch(), time.Until(poetRoundEnd))
poetProofRef, membership, err := nb.getBestProof(getProofsCtx, nb.state.Challenge)
if err != nil {
return nil, 0, &PoetSvcUnstableError{msg: "getBestProof failed", source: err}
}
if poetProofRef == types.EmptyPoetProofRef {
return nil, 0, &PoetSvcUnstableError{source: ErrPoetProofNotReceived}
}
nb.state.PoetProofRef = poetProofRef
nb.state.NIPost.Membership = *membership
nb.persistState()
}
// Phase 2: Post execution.
var postGenDuration time.Duration = 0
if nb.state.NIPost.Post == nil {
now := time.Now()
// Deadline: the end of the publish epoch (with a safety margin of `GracePeriod`). If we do not publish within
// the publish epoch we won't receive any rewards in the target epoch.
if publishEpochEnd.Before(now) {
return nil, 0, fmt.Errorf("%w: deadline to publish ATX for pub epoch %d exceeded (deadline: %s, now: %s)", ErrATXChallengeExpired, challenge.PublishEpoch, publishEpochEnd, now)
}
postCtx, cancel := context.WithDeadline(ctx, publishEpochEnd)
defer cancel()
nb.log.With().Info("starting post execution", log.Binary("challenge", nb.state.PoetProofRef[:]))
startTime := time.Now()
events.EmitPostStart(nb.state.PoetProofRef[:])
proof, proofMetadata, err := nb.postSetupProvider.GenerateProof(postCtx, nb.state.PoetProofRef[:], proving.WithPowCreator(nb.nodeID.Bytes()))
if err != nil {
events.EmitPostFailure()
return nil, 0, fmt.Errorf("failed to generate Post: %w", err)
}
commitmentAtxId, err := nb.postSetupProvider.CommitmentAtx()
if err != nil {
return nil, 0, fmt.Errorf("failed to get commitment ATX: %w", err)
}
if err := nb.validator.Post(
postCtx,
challenge.PublishEpoch,
nb.nodeID,
commitmentAtxId,
proof,
proofMetadata,
nb.postSetupProvider.LastOpts().NumUnits,
verifying.WithLabelScryptParams(nb.postSetupProvider.LastOpts().Scrypt),
); err != nil {
events.EmitInvalidPostProof()
return nil, 0, fmt.Errorf("failed to verify Post: %w", err)
}
events.EmitPostComplete(nb.state.PoetProofRef[:])
postGenDuration = time.Since(startTime)
nb.log.With().Info("finished post execution", log.Duration("duration", postGenDuration))
public.PostSeconds.Set(postGenDuration.Seconds())
nb.state.NIPost.Post = proof
nb.state.NIPost.PostMetadata = proofMetadata
nb.persistState()
}
nb.log.Info("finished nipost construction")
return nb.state.NIPost, postGenDuration, nil
}
// Submit the challenge to a single PoET.
func (nb *NIPostBuilder) submitPoetChallenge(ctx context.Context, poet PoetProvingServiceClient, prefix, challenge []byte, signature types.EdSignature, nodeID types.NodeID) (*types.PoetRequest, error) {
poetServiceID, err := poet.PoetServiceID(ctx)
if err != nil {
return nil, &PoetSvcUnstableError{msg: "failed to get PoET service ID", source: err}
}
logger := nb.log.WithContext(ctx).WithFields(log.String("poet_id", hex.EncodeToString(poetServiceID.ServiceID)))
logger.Debug("querying for poet pow parameters")
powParams, err := poet.PowParams(ctx)
if err != nil {
return nil, &PoetSvcUnstableError{msg: "failed to get PoW params", source: err}
}
logger.Debug("doing pow with params: %v", powParams)
startTime := time.Now()
nonce, err := shared.FindSubmitPowNonce(ctx, powParams.Challenge, challenge, nodeID.Bytes(), powParams.Difficulty)
metrics.PoetPowDuration.Set(float64(time.Since(startTime).Nanoseconds()))
if err != nil {
return nil, fmt.Errorf("running poet PoW: %w", err)
}
logger.Debug("submitting challenge to poet proving service")
round, err := poet.Submit(ctx, prefix, challenge, signature, nodeID, PoetPoW{
Nonce: nonce,
Params: *powParams,
})
if err != nil {
return nil, &PoetSvcUnstableError{msg: "failed to submit challenge to poet service", source: err}
}
logger.With().Info("challenge submitted to poet proving service", log.String("round", round.ID))
return &types.PoetRequest{
PoetRound: round,
PoetServiceID: poetServiceID,
}, nil
}
// Submit the challenge to all registered PoETs.
func (nb *NIPostBuilder) submitPoetChallenges(ctx context.Context, prefix, challenge []byte, signature types.EdSignature, nodeID types.NodeID) []types.PoetRequest {
g, ctx := errgroup.WithContext(ctx)
poetRequestsChannel := make(chan types.PoetRequest, len(nb.poetProvers))
for _, poetProver := range nb.poetProvers {
poet := poetProver
g.Go(func() error {
if poetRequest, err := nb.submitPoetChallenge(ctx, poet, prefix, challenge, signature, nodeID); err == nil {
poetRequestsChannel <- *poetRequest
} else {
nb.log.With().Warning("failed to submit challenge to PoET", log.Err(err))
}
return nil
})
}
g.Wait()
close(poetRequestsChannel)
poetRequests := make([]types.PoetRequest, 0, len(nb.poetProvers))
for request := range poetRequestsChannel {
poetRequests = append(poetRequests, request)
}
return poetRequests
}
func (nb *NIPostBuilder) getPoetClient(ctx context.Context, id types.PoetServiceID) PoetProvingServiceClient {
for _, client := range nb.poetProvers {
if clientId, err := client.PoetServiceID(ctx); err == nil && bytes.Equal(id.ServiceID, clientId.ServiceID) {
return client
}
}
return nil
}
// membersContainChallenge verifies that the challenge is included in proof's members.
func membersContainChallenge(members []types.Member, challenge types.Hash32) (uint64, error) {
for id, member := range members {
if bytes.Equal(member[:], challenge.Bytes()) {
return uint64(id), nil
}
}
return 0, fmt.Errorf("challenge is not a member of the proof")
}
func (nb *NIPostBuilder) getBestProof(ctx context.Context, challenge types.Hash32) (types.PoetProofRef, *types.MerkleProof, error) {
type poetProof struct {
poet *types.PoetProofMessage
membership *types.MerkleProof
}
proofs := make(chan *poetProof, len(nb.state.PoetRequests))
var eg errgroup.Group
for _, r := range nb.state.PoetRequests {
logger := nb.log.WithContext(ctx).WithFields(log.String("poet_id", hex.EncodeToString(r.PoetServiceID.ServiceID)), log.String("round", r.PoetRound.ID))
client := nb.getPoetClient(ctx, r.PoetServiceID)
if client == nil {
logger.Warning("poet client not found")
continue
}
round := r.PoetRound.ID
waitTime := calcGetProofWaitTime(time.Until(r.PoetRound.End.IntoTime()), nb.poetCfg.CycleGap)
eg.Go(func() error {
logger.With().Info("waiting till poet round end", log.Duration("wait time", waitTime))
select {
case <-ctx.Done():
return fmt.Errorf("waiting to query proof: %w", ctx.Err())
case <-time.After(waitTime):
}
proof, members, err := client.Proof(ctx, round)
switch {
case errors.Is(err, context.Canceled):
return fmt.Errorf("querying proof: %w", ctx.Err())
case err != nil:
logger.With().Warning("failed to get proof from poet", log.Err(err))
return nil
}
if err := nb.poetDB.ValidateAndStore(ctx, proof); err != nil && !errors.Is(err, ErrObjectExists) {
logger.With().Warning("failed to validate and store proof", log.Err(err), log.Object("proof", proof))
return nil
}
membership, err := constructMerkleProof(challenge, members)
if err != nil {
logger.With().Warning("failed to construct merkle proof", log.Err(err))
return nil
}
proofs <- &poetProof{
poet: proof,
membership: membership,
}
return nil
})
}
if err := eg.Wait(); err != nil {
return types.PoetProofRef{}, nil, fmt.Errorf("querying for proofs: %w", err)
}
close(proofs)
var bestProof *poetProof
for proof := range proofs {
nb.log.With().Info("got poet proof", log.Uint64("leaf count", proof.poet.LeafCount))
if bestProof == nil || bestProof.poet.LeafCount < proof.poet.LeafCount {
bestProof = proof
}
}
if bestProof != nil {
ref, err := bestProof.poet.Ref()
if err != nil {
return types.PoetProofRef{}, nil, err
}
nb.log.With().Info("selected the best proof", log.Uint64("leafCount", bestProof.poet.LeafCount), log.Binary("ref", ref[:]))
return ref, bestProof.membership, nil
}
return types.PoetProofRef{}, nil, ErrPoetProofNotReceived
}
func constructMerkleProof(challenge types.Hash32, members []types.Member) (*types.MerkleProof, error) {
// We are interested only in proofs that we are members of
id, err := membersContainChallenge(members, challenge)
if err != nil {
return nil, err
}
tree, err := merkle.NewTreeBuilder().
WithLeavesToProve(map[uint64]bool{id: true}).
WithHashFunc(shared.HashMembershipTreeNode).
Build()
if err != nil {
return nil, fmt.Errorf("creating Merkle Tree: %w", err)
}
for _, member := range members {
if err := tree.AddLeaf(member[:]); err != nil {
return nil, fmt.Errorf("adding leaf to Merkle Tree: %w", err)
}
}
nodes := tree.Proof()
nodesH32 := make([]types.Hash32, 0, len(nodes))
for _, n := range nodes {
nodesH32 = append(nodesH32, types.BytesToHash(n))
}
return &types.MerkleProof{
LeafIndex: id,
Nodes: nodesH32,
}, nil
}
func randomDurationInRange(min, max time.Duration) time.Duration {
return min + time.Duration(rand.Int63n(int64(max-min+1)))
}
// Calculate the time to wait before querying for the proof
// We add a jitter to avoid all nodes querying for the proof at the same time.
func calcGetProofWaitTime(tillRoundEnd, cycleGap time.Duration) (waitTime time.Duration) {
minJitter := time.Duration(float64(cycleGap) * minPoetGetProofJitter / 100.0)
maxJitter := time.Duration(float64(cycleGap) * maxPoetGetProofJitter / 100.0)
jitter := randomDurationInRange(minJitter, maxJitter)
return tillRoundEnd + jitter
}