-
Notifications
You must be signed in to change notification settings - Fork 0
/
vote.go
276 lines (225 loc) · 8.8 KB
/
vote.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
/*
* The Clear BSD License
*
* Copyright (c) 2019 Insolar Technologies
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of Insolar Technologies nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package packets
import (
"bytes"
"encoding/binary"
"io"
"github.com/pkg/errors"
)
const NodeListHashLength = 32
type VoteType uint8
const (
TypeNodeJoinSupplementaryVote = VoteType(iota + 1)
TypeStateFraudNodeSupplementaryVote
TypeNodeListSupplementaryVote
TypeMissingNodeSupplementaryVote
TypeMissingNode
)
type ReferendumVote interface {
Serializer
Type() VoteType
}
type NodeJoinSupplementaryVote struct {
}
type StateFraudNodeSupplementaryVote struct {
Node1PulseProof NodePulseProof
Node2PulseProof NodePulseProof
PulseData PulseData // optional
}
type NodeListSupplementaryVote struct {
NodeListCount uint16
NodeListHash [32]byte
}
type MissingNodeSupplementaryVote struct {
NodePulseProof NodePulseProof
}
type MissingNode struct {
NodeIndex uint16
}
func (mn *MissingNode) Type() VoteType {
return TypeMissingNode
}
func (mn *MissingNode) Serialize() ([]byte, error) {
var result bytes.Buffer
err := binary.Write(&result, defaultByteOrder, mn.NodeIndex)
if err != nil {
return nil, errors.Wrap(err, "[ MissingNode.Serialize ] failed to write ti a buffer")
}
return result.Bytes(), nil
}
func (mn *MissingNode) Deserialize(data io.Reader) error {
err := binary.Read(data, defaultByteOrder, &mn.NodeIndex)
if err != nil {
return errors.Wrap(err, "[ MissingNode.Deserialize ] failed to read a node index")
}
return nil
}
func (v *NodeListSupplementaryVote) Type() VoteType {
return TypeNodeListSupplementaryVote
}
// Deserialize implements interface method
func (v *NodeListSupplementaryVote) Deserialize(data io.Reader) error {
err := binary.Read(data, defaultByteOrder, &v.NodeListCount)
if err != nil {
return errors.Wrap(err, "[ NodeListSupplementaryVote.Deserialize ] Can't read NodeListCount")
}
err = binary.Read(data, defaultByteOrder, &v.NodeListHash)
if err != nil {
return errors.Wrap(err, "[ NodeListSupplementaryVote.Deserialize ] Can't read NodeListHash")
}
return nil
}
// Serialize implements interface method
func (v *NodeListSupplementaryVote) Serialize() ([]byte, error) {
result := allocateBuffer(34)
err := binary.Write(result, defaultByteOrder, v.NodeListCount)
if err != nil {
return nil, errors.Wrap(err, "[ NodeListSupplementaryVote.Serialize ] Can't write NodeListCount")
}
err = binary.Write(result, defaultByteOrder, v.NodeListHash)
if err != nil {
return nil, errors.Wrap(err, "[ NodeListSupplementaryVote.Serialize ] Can't write NodeListHash")
}
return result.Bytes(), nil
}
func (v *NodeJoinSupplementaryVote) Type() VoteType {
return TypeNodeJoinSupplementaryVote
}
// Deserialize implements interface method
func (v *NodeJoinSupplementaryVote) Deserialize(data io.Reader) error {
return nil
}
// Serialize implements interface method
func (v *NodeJoinSupplementaryVote) Serialize() ([]byte, error) {
return nil, nil
}
func (v *StateFraudNodeSupplementaryVote) Type() VoteType {
return TypeStateFraudNodeSupplementaryVote
}
// Deserialize implements interface method
func (v *StateFraudNodeSupplementaryVote) Deserialize(data io.Reader) error {
err := v.Node1PulseProof.Deserialize(data)
if err != nil {
return errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Deserialize ] Can't read Node1PulseProof")
}
err = v.Node2PulseProof.Deserialize(data)
if err != nil {
return errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Deserialize ] Can't read Node2PulseProof")
}
err = v.PulseData.Deserialize(data)
if err != nil {
return errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Deserialize ] Can't read PulseData")
}
return nil
}
// Serialize implements interface method
func (v *StateFraudNodeSupplementaryVote) Serialize() ([]byte, error) {
result := allocateBuffer(packetMaxSize)
node1PulseProofRaw, err := v.Node1PulseProof.Serialize()
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't serialize Node1PulseProof")
}
_, err = result.Write(node1PulseProofRaw)
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't append Node1PulseProof")
}
node2PulseProofRaw, err := v.Node2PulseProof.Serialize()
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't serialize Node2PulseProof")
}
_, err = result.Write(node2PulseProofRaw)
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't append Node2PulseProof")
}
// serializing of PulseData
pulseDataRaw, err := v.PulseData.Serialize()
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't serialize PulseData")
}
_, err = result.Write(pulseDataRaw)
if err != nil {
return nil, errors.Wrap(err, "[ StateFraudNodeSupplementaryVote.Serialize ] Can't append PulseData")
}
return result.Bytes(), nil
}
func (v *MissingNodeSupplementaryVote) Type() VoteType {
return TypeMissingNodeSupplementaryVote
}
// Deserialize implements interface method
func (v *MissingNodeSupplementaryVote) Deserialize(data io.Reader) error {
err := v.NodePulseProof.Deserialize(data)
if err != nil {
return errors.Wrap(err, "[ MissingNodeSupplementaryVote.Deserialize ] Can't read NodePulseProof")
}
return nil
}
// Serialize implements interface method
func (v *MissingNodeSupplementaryVote) Serialize() ([]byte, error) {
result := allocateBuffer(1024)
nodePulseProofRaw, err := v.NodePulseProof.Serialize()
if err != nil {
return nil, errors.Wrap(err, "[ MissingNodeSupplementaryVote.Serialize ] Can't serialize NodePulseProof")
}
_, err = result.Write(nodePulseProofRaw)
if err != nil {
return nil, errors.Wrap(err, "[ MissingNodeSupplementaryVote.Serialize ] Can't append NodePulseProof")
}
return result.Bytes(), nil
}
func parseReferendumVotes(data []byte) ([]ReferendumVote, error) {
votesSize := len(data)
votesReader := bytes.NewReader(data)
result := make([]ReferendumVote, 0)
// get claim header
for votesSize > 0 {
startSize := votesReader.Len()
var voteHeader uint16
err := binary.Read(votesReader, defaultByteOrder, &voteHeader)
if err != nil {
return nil, errors.Wrap(err, "[ PacketHeader.parseReferendumVotes ] Can't read voteHeader")
}
voteType := VoteType(extractTypeFromHeader(voteHeader))
// TODO: Do we need voteLength?
// voteLength := extractVoteLengthFromHeader(voteHeader)
var refVote ReferendumVote
switch voteType {
case TypeNodeJoinSupplementaryVote:
refVote = &NodeJoinSupplementaryVote{}
case TypeStateFraudNodeSupplementaryVote:
refVote = &StateFraudNodeSupplementaryVote{}
case TypeNodeListSupplementaryVote:
refVote = &NodeListSupplementaryVote{}
case TypeMissingNodeSupplementaryVote:
refVote = &MissingNodeSupplementaryVote{}
case TypeMissingNode:
refVote = &MissingNode{}
default:
return nil, errors.Wrap(err, "[ PacketHeader.parseReferendumVotes ] Unsupported vote type.")
}
err = refVote.Deserialize(votesReader)
if err != nil {
return nil, errors.Wrap(err, "[ PacketHeader.parseReferendumVotes ] Can't deserialize vote")
}
result = append(result, refVote)
votesSize -= startSize - votesReader.Len()
}
if votesSize != 0 {
return nil, errors.New("[ PacketHeader.parseReferendumVotes ] Problem with vote struct")
}
return result, nil
}