-
Notifications
You must be signed in to change notification settings - Fork 178
/
common.go
58 lines (50 loc) · 2.05 KB
/
common.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
package validation
import (
"fmt"
"github.com/onflow/flow-go/engine"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/state/protocol"
)
// identityForNode ensures that `nodeID` is an authorized member of the network
// at the given block and returns the corresponding node's full identity.
// Error returns:
// - sentinel engine.InvalidInputError is nodeID is NOT an authorized member of the network
// - generic error indicating a fatal internal problem
func identityForNode(state protocol.State, blockID flow.Identifier, nodeID flow.Identifier) (*flow.Identity, error) {
// get the identity of the origin node
identity, err := state.AtBlockID(blockID).Identity(nodeID)
if err != nil {
if protocol.IsIdentityNotFound(err) {
return nil, engine.NewInvalidInputErrorf("unknown node identity: %w", err)
}
// unexpected exception
return nil, fmt.Errorf("failed to retrieve node identity: %w", err)
}
return identity, nil
}
// ensureNodeHasWeightAndRole checks whether, at the given block, `nodeID`
// - has _positive_ weight
// - and has the expected role
// - and is not ejected
//
// Returns the following errors:
// - sentinel engine.InvalidInputError if any of the above-listed conditions are violated.
//
// Note: the method receives the identity as proof of its existence.
// Therefore, we consider the case where the respective identity is unknown to the
// protocol state as a symptom of a fatal implementation bug.
func ensureNodeHasWeightAndRole(identity *flow.Identity, expectedRole flow.Role) error {
// check that the role is expected
if identity.Role != expectedRole {
return engine.NewInvalidInputErrorf("expected node %x to have role %s but got %s", identity.NodeID, expectedRole, identity.Role)
}
// check if the identity has non-zero weight
if identity.Weight == 0 {
return engine.NewInvalidInputErrorf("node has zero weight (%x)", identity.NodeID)
}
// check that node was not ejected
if identity.Ejected {
return engine.NewInvalidInputErrorf("node was ejected from network (%x)", identity.NodeID)
}
return nil
}