-
Notifications
You must be signed in to change notification settings - Fork 14
/
types.go
372 lines (317 loc) · 9.68 KB
/
types.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
package types
import (
"bytes"
"encoding/json"
"fmt"
"github.com/gogo/protobuf/jsonpb"
"github.com/rs/zerolog"
"github.com/dashpay/tenderdash/crypto"
cryptoenc "github.com/dashpay/tenderdash/crypto/encoding"
"github.com/dashpay/tenderdash/crypto/merkle"
"github.com/dashpay/tenderdash/internal/jsontypes"
tmbytes "github.com/dashpay/tenderdash/libs/bytes"
"github.com/dashpay/tenderdash/proto/tendermint/types"
)
const (
CodeTypeOK uint32 = 0
)
// IsOK returns true if Code is OK.
func (r ResponseCheckTx) IsOK() bool {
return r.Code == CodeTypeOK
}
// IsErr returns true if Code is something other than OK.
func (r ResponseCheckTx) IsErr() bool {
return r.Code != CodeTypeOK
}
// IsOK returns true if Code is OK.
func (r ExecTxResult) IsOK() bool {
return r.Code == CodeTypeOK
}
// IsErr returns true if Code is something other than OK.
func (r ExecTxResult) IsErr() bool {
return r.Code != CodeTypeOK
}
// IsOK returns true if Code is OK.
func (r ResponseQuery) IsOK() bool {
return r.Code == CodeTypeOK
}
// IsErr returns true if Code is something other than OK.
func (r ResponseQuery) IsErr() bool {
return r.Code != CodeTypeOK
}
func (r ResponseProcessProposal) IsAccepted() bool {
return r.Status == ResponseProcessProposal_ACCEPT
}
func (r ResponseProcessProposal) IsStatusUnknown() bool {
return r.Status == ResponseProcessProposal_UNKNOWN
}
// IsStatusUnknown returns true if Code is Unknown
func (r ResponseVerifyVoteExtension) IsStatusUnknown() bool {
return r.Status == ResponseVerifyVoteExtension_UNKNOWN
}
// IsOK returns true if Code is OK
func (r ResponseVerifyVoteExtension) IsOK() bool {
return r.Status == ResponseVerifyVoteExtension_ACCEPT
}
// IsErr returns true if Code is something other than OK.
func (r ResponseVerifyVoteExtension) IsErr() bool {
return r.Status != ResponseVerifyVoteExtension_ACCEPT
}
//---------------------------------------------------------------------------
// override JSON marshaling so we emit defaults (ie. disable omitempty)
var (
jsonpbMarshaller = jsonpb.Marshaler{
EnumsAsInts: true,
EmitDefaults: true,
}
jsonpbUnmarshaller = jsonpb.Unmarshaler{}
)
func (r *ResponseCheckTx) MarshalJSON() ([]byte, error) {
s, err := jsonpbMarshaller.MarshalToString(r)
return []byte(s), err
}
func (r *ResponseCheckTx) UnmarshalJSON(b []byte) error {
reader := bytes.NewBuffer(b)
return jsonpbUnmarshaller.Unmarshal(reader, r)
}
func (r *ResponseQuery) MarshalJSON() ([]byte, error) {
s, err := jsonpbMarshaller.MarshalToString(r)
return []byte(s), err
}
func (r *ResponseQuery) UnmarshalJSON(b []byte) error {
reader := bytes.NewBuffer(b)
return jsonpbUnmarshaller.Unmarshal(reader, r)
}
func (r *EventAttribute) MarshalJSON() ([]byte, error) {
s, err := jsonpbMarshaller.MarshalToString(r)
return []byte(s), err
}
func (r *EventAttribute) UnmarshalJSON(b []byte) error {
reader := bytes.NewBuffer(b)
return jsonpbUnmarshaller.Unmarshal(reader, r)
}
// Some compile time assertions to ensure we don't
// have accidental runtime surprises later on.
// jsonEncodingRoundTripper ensures that asserted
// interfaces implement both MarshalJSON and UnmarshalJSON
type jsonRoundTripper interface {
json.Marshaler
json.Unmarshaler
}
var _ jsonRoundTripper = (*ResponseQuery)(nil)
var _ jsonRoundTripper = (*ResponseCheckTx)(nil)
var _ jsonRoundTripper = (*EventAttribute)(nil)
type validatorSetUpdateJSON struct {
ValidatorUpdates []ValidatorUpdate `json:"validator_updates"`
ThresholdPubKey json.RawMessage `json:"threshold_public_key"`
QuorumHash []byte `json:"quorum_hash,omitempty"`
}
func (m *ValidatorSetUpdate) MarshalJSON() ([]byte, error) {
if m == nil {
return nil, nil
}
ret := validatorSetUpdateJSON{
ValidatorUpdates: m.ValidatorUpdates,
QuorumHash: m.QuorumHash,
}
if m.ThresholdPublicKey.Sum != nil {
key, err := cryptoenc.PubKeyFromProto(m.ThresholdPublicKey)
if err != nil {
return nil, err
}
ret.ThresholdPubKey, err = jsontypes.Marshal(key)
if err != nil {
return nil, err
}
}
return json.Marshal(ret)
}
func (m *ValidatorSetUpdate) UnmarshalJSON(data []byte) error {
var vsu validatorSetUpdateJSON
err := json.Unmarshal(data, &vsu)
if err != nil {
return err
}
if vsu.ThresholdPubKey != nil {
var key crypto.PubKey
err = jsontypes.Unmarshal(vsu.ThresholdPubKey, &key)
if err != nil {
return err
}
m.ThresholdPublicKey, err = cryptoenc.PubKeyToProto(key)
if err != nil {
return err
}
}
m.ValidatorUpdates = vsu.ValidatorUpdates
m.QuorumHash = vsu.QuorumHash
return nil
}
type validatorUpdateJSON struct {
PubKey json.RawMessage `json:"pub_key"`
Power int64 `json:"power"`
ProTxHash []byte `json:"pro_tx_hash"`
NodeAddress string `json:"node_address"`
}
func (m *ValidatorUpdate) MarshalJSON() ([]byte, error) {
res := validatorUpdateJSON{
Power: m.Power,
ProTxHash: m.ProTxHash,
NodeAddress: m.NodeAddress,
}
if m.PubKey != nil {
pubKey, err := cryptoenc.PubKeyFromProto(*m.PubKey)
if err != nil {
return nil, err
}
res.PubKey, err = jsontypes.Marshal(pubKey)
if err != nil {
return nil, err
}
}
return json.Marshal(res)
}
func (m *ValidatorUpdate) UnmarshalJSON(b []byte) error {
var res validatorUpdateJSON
err := json.Unmarshal(b, &res)
if err != nil {
return err
}
m.Power = res.Power
m.NodeAddress = res.NodeAddress
m.ProTxHash = res.ProTxHash
if res.PubKey != nil {
var pubKey crypto.PubKey
err = jsontypes.Unmarshal(res.PubKey, &pubKey)
if err != nil {
return err
}
protoPubKey, err := cryptoenc.PubKeyToProto(pubKey)
if err != nil {
return err
}
m.PubKey = &protoPubKey
}
return nil
}
// -----------------------------------------------
// construct Result data
// deterministicExecTxResult constructs a copy of response that omits
// non-deterministic fields. The input response is not modified.
func deterministicExecTxResult(response *ExecTxResult) *ExecTxResult {
return &ExecTxResult{
Code: response.Code,
Data: response.Data,
GasWanted: response.GasWanted,
GasUsed: response.GasUsed,
}
}
// MarshalTxResults encodes the the TxResults as a list of byte
// slices. It strips off the non-deterministic pieces of the TxResults
// so that the resulting data can be used for hash comparisons and used
// in Merkle proofs.
func MarshalTxResults(r []*ExecTxResult) ([][]byte, error) {
s := make([][]byte, len(r))
for i, e := range r {
d := deterministicExecTxResult(e)
b, err := d.Marshal()
if err != nil {
return nil, err
}
s[i] = b
}
return s, nil
}
// TxResultsHash determines hash of transaction execution results.
// TODO: light client seems to also include events into LastResultsHash, need to investigate
func TxResultsHash(txResults []*ExecTxResult) (tmbytes.HexBytes, error) {
rs, err := MarshalTxResults(txResults)
if err != nil {
return nil, fmt.Errorf("marshaling TxResults: %w", err)
}
return merkle.HashFromByteSlices(rs), nil
}
func (m *ResponsePrepareProposal) Validate() error {
if !isValidApphash(m.AppHash) {
return fmt.Errorf("apphash (%X) of size %d is invalid", m.AppHash, len(m.AppHash))
}
return nil
}
type Misbehaviors []Misbehavior
func (m Misbehaviors) MarshalZerologArray(e *zerolog.Array) {
for v := range m {
e.Interface(v)
}
}
type Txs [][]byte
func (b Txs) MarshalZerologArray(a *zerolog.Array) {
for _, bs := range b {
a.Hex(crypto.Checksum(bs)[:8])
}
}
func (txr *TxRecord) MarshalZerologObject(e *zerolog.Event) {
e.Str("action", txr.Action.String())
e.Hex("tx", crypto.Checksum(txr.Tx)[:8])
}
func (r *RequestPrepareProposal) MarshalZerologObject(e *zerolog.Event) {
e.Int64("max_tx_bytes", r.MaxTxBytes)
e.Array("txs", Txs(r.Txs))
e.Interface("last_commit", r.LocalLastCommit)
e.Array("misbehavior", Misbehaviors(r.Misbehavior))
e.Time("proposed_time", r.Time)
e.Int64("height", r.Height)
e.Int32("round", r.Round)
e.Hex("next_validators_hash", r.NextValidatorsHash)
e.Uint32("core_chain_locked_height", r.CoreChainLockedHeight)
e.Hex("proposer_pro_tx_hash", r.ProposerProTxHash)
e.Uint64("proposed_app_version", r.ProposedAppVersion)
e.Str("version", r.Version.String())
e.Hex("quorum_hash", r.QuorumHash)
}
func (r *RequestProcessProposal) MarshalZerologObject(e *zerolog.Event) {
e.Array("txs", Txs(r.Txs))
e.Interface("last_commit", r.ProposedLastCommit.String())
e.Array("misbehavior", Misbehaviors(r.Misbehavior))
e.Time("proposed_time", r.Time)
e.Hex("block_hash", r.Hash)
e.Int64("height", r.Height)
e.Int32("round", r.Round)
e.Hex("next_validators_hash", r.NextValidatorsHash)
e.Uint32("core_chain_locked_height", r.CoreChainLockedHeight)
e.Interface("core_chain_lock_update", r.CoreChainLockUpdate)
e.Hex("proposer_pro_tx_hash", r.ProposerProTxHash)
e.Uint64("proposed_app_version", r.ProposedAppVersion)
e.Str("version", r.Version.String())
e.Hex("quorum_hash", r.QuorumHash)
}
func isValidApphash(apphash tmbytes.HexBytes) bool {
return len(apphash) == crypto.DefaultAppHashSize
}
func (r ResponseProcessProposal) Validate() error {
if !isValidApphash(r.AppHash) {
return fmt.Errorf("apphash (%X) has wrong size %d, expected: %d", r.AppHash, len(r.AppHash), crypto.DefaultAppHashSize)
}
return nil
}
func (m *ValidatorSetUpdate) ProTxHashes() []crypto.ProTxHash {
ret := make([]crypto.ProTxHash, len(m.ValidatorUpdates))
for i, v := range m.ValidatorUpdates {
ret[i] = v.ProTxHash
}
return ret
}
func (m *RequestFinalizeBlock) ToCanonicalVote() (types.CanonicalVote, error) {
cv := types.CanonicalVote{
Type: types.PrecommitType,
Height: m.Height,
Round: int64(m.Round),
StateID: m.BlockID.StateID,
ChainID: m.Block.Header.ChainID,
}
var err error
cv.BlockID, err = m.BlockID.ToCanonicalBlockID().Checksum()
if err != nil {
return types.CanonicalVote{}, err
}
return cv, nil
}