-
Notifications
You must be signed in to change notification settings - Fork 178
/
node_info.go
226 lines (201 loc) · 5.93 KB
/
node_info.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
// Package bootstrap defines canonical models and encoding for bootstrapping.
package bootstrap
import (
"fmt"
"github.com/onflow/flow-go/crypto"
"github.com/onflow/flow-go/model/encodable"
"github.com/onflow/flow-go/model/flow"
)
// NodeInfoType enumerates the two different options for
type NodeInfoType int
const (
NodeInfoTypeInvalid NodeInfoType = iota
NodeInfoTypePublic
NodeInfoTypePrivate
)
// ErrMissingPrivateInfo is returned when a method is called on NodeInfo
// that is only valid on instances containing private info.
var ErrMissingPrivateInfo = fmt.Errorf("can not access private information for a public node type")
// NodeConfig contains configuration information used as input to the
// bootstrap process.
type NodeConfig struct {
Role flow.Role
Address string
Stake uint64
}
// Defines the canonical structure for encoding private node info.
type NodeInfoPriv struct {
Role flow.Role
Address string
NodeID flow.Identifier
NetworkPrivKey encodable.NetworkPrivKey
StakingPrivKey encodable.StakingPrivKey
}
// Defines the canonical structure for encoding public node info.
type NodeInfoPub struct {
Role flow.Role
Address string
NodeID flow.Identifier
Stake uint64
NetworkPubKey encodable.NetworkPubKey
StakingPubKey encodable.StakingPubKey
}
// NodePrivateKeys is a wrapper for the private keys for a node, comprising all
// sensitive information for a node.
type NodePrivateKeys struct {
StakingKey crypto.PrivateKey
NetworkKey crypto.PrivateKey
}
// NodeInfo contains information for a node. This is used during the bootstrapping
// process to represent each node. When writing node information to disk, use
// `Public` or `Private` to obtain the appropriate canonical structure.
//
// A NodeInfo instance can contain EITHER public keys OR private keys, not both.
// This can be ensured by using only using the provided constructors and NOT
// manually constructing an instance.
type NodeInfo struct {
NodeID flow.Identifier
Role flow.Role
Address string
Stake uint64
// key information is private
networkPubKey crypto.PublicKey
networkPrivKey crypto.PrivateKey
stakingPubKey crypto.PublicKey
stakingPrivKey crypto.PrivateKey
}
func NewPublicNodeInfo(
nodeID flow.Identifier,
role flow.Role,
addr string,
stake uint64,
networkKey crypto.PublicKey,
stakingKey crypto.PublicKey,
) NodeInfo {
return NodeInfo{
NodeID: nodeID,
Role: role,
Address: addr,
Stake: stake,
networkPubKey: networkKey,
stakingPubKey: stakingKey,
}
}
func NewPrivateNodeInfo(
nodeID flow.Identifier,
role flow.Role,
addr string,
stake uint64,
networkKey crypto.PrivateKey,
stakingKey crypto.PrivateKey,
) NodeInfo {
return NodeInfo{
NodeID: nodeID,
Role: role,
Address: addr,
Stake: stake,
networkPrivKey: networkKey,
stakingPrivKey: stakingKey,
}
}
// Type returns the type of the node info instance.
func (node NodeInfo) Type() NodeInfoType {
if node.networkPrivKey != nil && node.stakingPrivKey != nil {
return NodeInfoTypePrivate
}
if node.networkPubKey != nil && node.stakingPubKey != nil {
return NodeInfoTypePublic
}
return NodeInfoTypeInvalid
}
func (node NodeInfo) NetworkPubKey() crypto.PublicKey {
if node.networkPubKey != nil {
return node.networkPubKey
}
return node.networkPrivKey.PublicKey()
}
func (node NodeInfo) StakingPubKey() crypto.PublicKey {
if node.stakingPubKey != nil {
return node.stakingPubKey
}
return node.stakingPrivKey.PublicKey()
}
func (node NodeInfo) PrivateKeys() (*NodePrivateKeys, error) {
if node.Type() != NodeInfoTypePrivate {
return nil, ErrMissingPrivateInfo
}
return &NodePrivateKeys{
StakingKey: node.stakingPrivKey,
NetworkKey: node.networkPrivKey,
}, nil
}
// Private returns the canonical private encodable structure.
func (node NodeInfo) Private() (NodeInfoPriv, error) {
if node.Type() != NodeInfoTypePrivate {
return NodeInfoPriv{}, ErrMissingPrivateInfo
}
return NodeInfoPriv{
Role: node.Role,
Address: node.Address,
NodeID: node.NodeID,
NetworkPrivKey: encodable.NetworkPrivKey{PrivateKey: node.networkPrivKey},
StakingPrivKey: encodable.StakingPrivKey{PrivateKey: node.stakingPrivKey},
}, nil
}
// Public returns the canonical public encodable structure
func (node NodeInfo) Public() NodeInfoPub {
return NodeInfoPub{
Role: node.Role,
Address: node.Address,
NodeID: node.NodeID,
Stake: node.Stake,
NetworkPubKey: encodable.NetworkPubKey{PublicKey: node.NetworkPubKey()},
StakingPubKey: encodable.StakingPubKey{PublicKey: node.StakingPubKey()},
}
}
// PartnerPublic returns the public data for a partner node.
func (node NodeInfo) PartnerPublic() PartnerNodeInfoPub {
return PartnerNodeInfoPub{
Role: node.Role,
Address: node.Address,
NodeID: node.NodeID,
NetworkPubKey: encodable.NetworkPubKey{PublicKey: node.NetworkPubKey()},
StakingPubKey: encodable.StakingPubKey{PublicKey: node.StakingPubKey()},
}
}
// Identity returns the node info as a public Flow identity.
func (node NodeInfo) Identity() *flow.Identity {
identity := &flow.Identity{
NodeID: node.NodeID,
Address: node.Address,
Role: node.Role,
Stake: node.Stake,
StakingPubKey: node.StakingPubKey(),
NetworkPubKey: node.NetworkPubKey(),
}
return identity
}
func FilterByRole(nodes []NodeInfo, role flow.Role) []NodeInfo {
var filtered []NodeInfo
for _, node := range nodes {
if node.Role != role {
continue
}
filtered = append(filtered, node)
}
return filtered
}
func ToIdentityList(nodes []NodeInfo) flow.IdentityList {
il := make(flow.IdentityList, 0, len(nodes))
for _, node := range nodes {
il = append(il, node.Identity())
}
return il
}
func ToPublicNodeInfoList(nodes []NodeInfo) []NodeInfoPub {
pub := make([]NodeInfoPub, 0, len(nodes))
for _, node := range nodes {
pub = append(pub, node.Public())
}
return pub
}