OSDN Git Service

init for remove issue (#63)
[bytom/vapor.git] / protocol / validation / tx.go
1 package validation
2
3 import (
4         "fmt"
5         "math"
6
7         "github.com/vapor/consensus"
8         "github.com/vapor/consensus/segwit"
9         "github.com/vapor/errors"
10         "github.com/vapor/math/checked"
11         "github.com/vapor/protocol/bc"
12         "github.com/vapor/protocol/vm"
13 )
14
15 const ruleAA = 142500
16
17 // validate transaction error
18 var (
19         ErrTxVersion                 = errors.New("invalid transaction version")
20         ErrWrongTransactionSize      = errors.New("invalid transaction size")
21         ErrBadTimeRange              = errors.New("invalid transaction time range")
22         ErrEmptyInputIDs             = errors.New("got the empty InputIDs")
23         ErrNotStandardTx             = errors.New("not standard transaction")
24         ErrWrongCoinbaseTransaction  = errors.New("wrong coinbase transaction")
25         ErrWrongCoinbaseAsset        = errors.New("wrong coinbase assetID")
26         ErrCoinbaseArbitraryOversize = errors.New("coinbase arbitrary size is larger than limit")
27         ErrEmptyResults              = errors.New("transaction has no results")
28         ErrMismatchedAssetID         = errors.New("mismatched assetID")
29         ErrMismatchedPosition        = errors.New("mismatched value source/dest position")
30         ErrMismatchedReference       = errors.New("mismatched reference")
31         ErrMismatchedValue           = errors.New("mismatched value")
32         ErrMissingField              = errors.New("missing required field")
33         ErrNoSource                  = errors.New("no source for value")
34         ErrOverflow                  = errors.New("arithmetic overflow/underflow")
35         ErrPosition                  = errors.New("invalid source or destination position")
36         ErrUnbalanced                = errors.New("unbalanced asset amount between input and output")
37         ErrOverGasCredit             = errors.New("all gas credit has been spend")
38         ErrGasCalculate              = errors.New("gas usage calculate got a math error")
39 )
40
41 // GasState record the gas usage status
42 type GasState struct {
43         BTMValue   uint64
44         GasLeft    int64
45         GasUsed    int64
46         GasValid   bool
47         StorageGas int64
48 }
49
50 func (g *GasState) setGas(BTMValue int64, txSize int64) error {
51         if BTMValue < 0 {
52                 return errors.Wrap(ErrGasCalculate, "input BTM is negative")
53         }
54
55         g.BTMValue = uint64(BTMValue)
56
57         var ok bool
58         if g.GasLeft, ok = checked.DivInt64(BTMValue, consensus.VMGasRate); !ok {
59                 return errors.Wrap(ErrGasCalculate, "setGas calc gas amount")
60         }
61
62         if g.GasLeft > consensus.MaxGasAmount {
63                 g.GasLeft = consensus.MaxGasAmount
64         }
65
66         if g.StorageGas, ok = checked.MulInt64(txSize, consensus.StorageGasRate); !ok {
67                 return errors.Wrap(ErrGasCalculate, "setGas calc tx storage gas")
68         }
69         return nil
70 }
71
72 func (g *GasState) setGasValid() error {
73         var ok bool
74         if g.GasLeft, ok = checked.SubInt64(g.GasLeft, g.StorageGas); !ok || g.GasLeft < 0 {
75                 return errors.Wrap(ErrGasCalculate, "setGasValid calc gasLeft")
76         }
77
78         if g.GasUsed, ok = checked.AddInt64(g.GasUsed, g.StorageGas); !ok {
79                 return errors.Wrap(ErrGasCalculate, "setGasValid calc gasUsed")
80         }
81
82         g.GasValid = true
83         return nil
84 }
85
86 func (g *GasState) updateUsage(gasLeft int64) error {
87         if gasLeft < 0 {
88                 return errors.Wrap(ErrGasCalculate, "updateUsage input negative gas")
89         }
90
91         if gasUsed, ok := checked.SubInt64(g.GasLeft, gasLeft); ok {
92                 g.GasUsed += gasUsed
93                 g.GasLeft = gasLeft
94         } else {
95                 return errors.Wrap(ErrGasCalculate, "updateUsage calc gas diff")
96         }
97
98         if !g.GasValid && (g.GasUsed > consensus.DefaultGasCredit || g.StorageGas > g.GasLeft) {
99                 return ErrOverGasCredit
100         }
101         return nil
102 }
103
104 // validationState contains the context that must propagate through
105 // the transaction graph when validating entries.
106 type validationState struct {
107         block     *bc.Block
108         tx        *bc.Tx
109         gasStatus *GasState
110         entryID   bc.Hash           // The ID of the nearest enclosing entry
111         sourcePos uint64            // The source position, for validate ValueSources
112         destPos   uint64            // The destination position, for validate ValueDestinations
113         cache     map[bc.Hash]error // Memoized per-entry validation results
114 }
115
116 func checkValid(vs *validationState, e bc.Entry) (err error) {
117         var ok bool
118         entryID := bc.EntryID(e)
119         if err, ok = vs.cache[entryID]; ok {
120                 return err
121         }
122
123         defer func() {
124                 vs.cache[entryID] = err
125         }()
126
127         switch e := e.(type) {
128         case *bc.TxHeader:
129                 for i, resID := range e.ResultIds {
130                         resultEntry := vs.tx.Entries[*resID]
131                         vs2 := *vs
132                         vs2.entryID = *resID
133                         if err = checkValid(&vs2, resultEntry); err != nil {
134                                 return errors.Wrapf(err, "checking result %d", i)
135                         }
136                 }
137
138                 if e.Version == 1 && len(e.ResultIds) == 0 {
139                         return ErrEmptyResults
140                 }
141
142         case *bc.Mux:
143                 parity := make(map[bc.AssetID]int64)
144                 for i, src := range e.Sources {
145                         if src.Value.Amount > math.MaxInt64 {
146                                 return errors.WithDetailf(ErrOverflow, "amount %d exceeds maximum value 2^63", src.Value.Amount)
147                         }
148                         sum, ok := checked.AddInt64(parity[*src.Value.AssetId], int64(src.Value.Amount))
149                         if !ok {
150                                 return errors.WithDetailf(ErrOverflow, "adding %d units of asset %x from mux source %d to total %d overflows int64", src.Value.Amount, src.Value.AssetId.Bytes(), i, parity[*src.Value.AssetId])
151                         }
152                         parity[*src.Value.AssetId] = sum
153                 }
154
155                 for i, dest := range e.WitnessDestinations {
156                         sum, ok := parity[*dest.Value.AssetId]
157                         if !ok {
158                                 return errors.WithDetailf(ErrNoSource, "mux destination %d, asset %x, has no corresponding source", i, dest.Value.AssetId.Bytes())
159                         }
160                         if dest.Value.Amount > math.MaxInt64 {
161                                 return errors.WithDetailf(ErrOverflow, "amount %d exceeds maximum value 2^63", dest.Value.Amount)
162                         }
163                         diff, ok := checked.SubInt64(sum, int64(dest.Value.Amount))
164                         if !ok {
165                                 return errors.WithDetailf(ErrOverflow, "subtracting %d units of asset %x from mux destination %d from total %d underflows int64", dest.Value.Amount, dest.Value.AssetId.Bytes(), i, sum)
166                         }
167                         parity[*dest.Value.AssetId] = diff
168                 }
169
170                 for assetID, amount := range parity {
171                         if assetID == *consensus.BTMAssetID {
172                                 if err = vs.gasStatus.setGas(amount, int64(vs.tx.SerializedSize)); err != nil {
173                                         return err
174                                 }
175                         } else if amount != 0 {
176                                 return errors.WithDetailf(ErrUnbalanced, "asset %x sources - destinations = %d (should be 0)", assetID.Bytes(), amount)
177                         }
178                 }
179
180                 for _, BTMInputID := range vs.tx.GasInputIDs {
181                         e, ok := vs.tx.Entries[BTMInputID]
182                         if !ok {
183                                 return errors.Wrapf(bc.ErrMissingEntry, "entry for bytom input %x not found", BTMInputID)
184                         }
185
186                         vs2 := *vs
187                         vs2.entryID = BTMInputID
188                         if err := checkValid(&vs2, e); err != nil {
189                                 return errors.Wrap(err, "checking gas input")
190                         }
191                 }
192
193                 for i, dest := range e.WitnessDestinations {
194                         vs2 := *vs
195                         vs2.destPos = uint64(i)
196                         if err = checkValidDest(&vs2, dest); err != nil {
197                                 return errors.Wrapf(err, "checking mux destination %d", i)
198                         }
199                 }
200
201                 if err := vs.gasStatus.setGasValid(); err != nil {
202                         return err
203                 }
204
205                 for i, src := range e.Sources {
206                         vs2 := *vs
207                         vs2.sourcePos = uint64(i)
208                         if err = checkValidSrc(&vs2, src); err != nil {
209                                 return errors.Wrapf(err, "checking mux source %d", i)
210                         }
211                 }
212
213         case *bc.IntraChainOutput:
214                 vs2 := *vs
215                 vs2.sourcePos = 0
216                 if err = checkValidSrc(&vs2, e.Source); err != nil {
217                         return errors.Wrap(err, "checking output source")
218                 }
219
220         case *bc.CrossChainOutput:
221                 vs2 := *vs
222                 vs2.sourcePos = 0
223                 if err = checkValidSrc(&vs2, e.Source); err != nil {
224                         return errors.Wrap(err, "checking output source")
225                 }
226
227         case *bc.VoteOutput:
228                 vs2 := *vs
229                 vs2.sourcePos = 0
230                 if err = checkValidSrc(&vs2, e.Source); err != nil {
231                         return errors.Wrap(err, "checking output source")
232                 }
233
234         case *bc.Retirement:
235                 vs2 := *vs
236                 vs2.sourcePos = 0
237                 if err = checkValidSrc(&vs2, e.Source); err != nil {
238                         return errors.Wrap(err, "checking retirement source")
239                 }
240
241         case *bc.Spend:
242                 if e.SpentOutputId == nil {
243                         return errors.Wrap(ErrMissingField, "spend without spent output ID")
244                 }
245                 spentOutput, err := vs.tx.IntraChainOutput(*e.SpentOutputId)
246                 if err != nil {
247                         return errors.Wrap(err, "getting spend prevout")
248                 }
249
250                 gasLeft, err := vm.Verify(NewTxVMContext(vs, e, spentOutput.ControlProgram, e.WitnessArguments), vs.gasStatus.GasLeft)
251                 if err != nil {
252                         return errors.Wrap(err, "checking control program")
253                 }
254                 if err = vs.gasStatus.updateUsage(gasLeft); err != nil {
255                         return err
256                 }
257
258                 eq, err := spentOutput.Source.Value.Equal(e.WitnessDestination.Value)
259                 if err != nil {
260                         return err
261                 }
262                 if !eq {
263                         return errors.WithDetailf(
264                                 ErrMismatchedValue,
265                                 "previous output is for %d unit(s) of %x, spend wants %d unit(s) of %x",
266                                 spentOutput.Source.Value.Amount,
267                                 spentOutput.Source.Value.AssetId.Bytes(),
268                                 e.WitnessDestination.Value.Amount,
269                                 e.WitnessDestination.Value.AssetId.Bytes(),
270                         )
271                 }
272
273                 vs2 := *vs
274                 vs2.destPos = 0
275                 if err = checkValidDest(&vs2, e.WitnessDestination); err != nil {
276                         return errors.Wrap(err, "checking spend destination")
277                 }
278
279         case *bc.Coinbase:
280                 if vs.block == nil || len(vs.block.Transactions) == 0 || vs.block.Transactions[0] != vs.tx {
281                         return ErrWrongCoinbaseTransaction
282                 }
283
284                 if *e.WitnessDestination.Value.AssetId != *consensus.BTMAssetID {
285                         return ErrWrongCoinbaseAsset
286                 }
287
288                 if e.Arbitrary != nil && len(e.Arbitrary) > consensus.CoinbaseArbitrarySizeLimit {
289                         return ErrCoinbaseArbitraryOversize
290                 }
291
292                 vs2 := *vs
293                 vs2.destPos = 0
294                 if err = checkValidDest(&vs2, e.WitnessDestination); err != nil {
295                         return errors.Wrap(err, "checking coinbase destination")
296                 }
297                 vs.gasStatus.StorageGas = 0
298
299         default:
300                 return fmt.Errorf("entry has unexpected type %T", e)
301         }
302
303         return nil
304 }
305
306 func checkValidSrc(vstate *validationState, vs *bc.ValueSource) error {
307         if vs == nil {
308                 return errors.Wrap(ErrMissingField, "empty value source")
309         }
310         if vs.Ref == nil {
311                 return errors.Wrap(ErrMissingField, "missing ref on value source")
312         }
313         if vs.Value == nil || vs.Value.AssetId == nil {
314                 return errors.Wrap(ErrMissingField, "missing value on value source")
315         }
316
317         e, ok := vstate.tx.Entries[*vs.Ref]
318         if !ok {
319                 return errors.Wrapf(bc.ErrMissingEntry, "entry for value source %x not found", vs.Ref.Bytes())
320         }
321
322         vstate2 := *vstate
323         vstate2.entryID = *vs.Ref
324         if err := checkValid(&vstate2, e); err != nil {
325                 return errors.Wrap(err, "checking value source")
326         }
327
328         var dest *bc.ValueDestination
329         switch ref := e.(type) {
330         case *bc.Coinbase:
331                 if vs.Position != 0 {
332                         return errors.Wrapf(ErrPosition, "invalid position %d for coinbase source", vs.Position)
333                 }
334                 dest = ref.WitnessDestination
335
336         case *bc.Spend:
337                 if vs.Position != 0 {
338                         return errors.Wrapf(ErrPosition, "invalid position %d for spend source", vs.Position)
339                 }
340                 dest = ref.WitnessDestination
341
342         case *bc.Mux:
343                 if vs.Position >= uint64(len(ref.WitnessDestinations)) {
344                         return errors.Wrapf(ErrPosition, "invalid position %d for %d-destination mux source", vs.Position, len(ref.WitnessDestinations))
345                 }
346                 dest = ref.WitnessDestinations[vs.Position]
347
348         default:
349                 return errors.Wrapf(bc.ErrEntryType, "value source is %T, should be coinbase, issuance, spend, or mux", e)
350         }
351
352         if dest.Ref == nil || *dest.Ref != vstate.entryID {
353                 return errors.Wrapf(ErrMismatchedReference, "value source for %x has disagreeing destination %x", vstate.entryID.Bytes(), dest.Ref.Bytes())
354         }
355
356         if dest.Position != vstate.sourcePos {
357                 return errors.Wrapf(ErrMismatchedPosition, "value source position %d disagrees with %d", dest.Position, vstate.sourcePos)
358         }
359
360         eq, err := dest.Value.Equal(vs.Value)
361         if err != nil {
362                 return errors.Sub(ErrMissingField, err)
363         }
364         if !eq {
365                 return errors.Wrapf(ErrMismatchedValue, "source value %v disagrees with %v", dest.Value, vs.Value)
366         }
367
368         return nil
369 }
370
371 func checkValidDest(vs *validationState, vd *bc.ValueDestination) error {
372         if vd == nil {
373                 return errors.Wrap(ErrMissingField, "empty value destination")
374         }
375         if vd.Ref == nil {
376                 return errors.Wrap(ErrMissingField, "missing ref on value destination")
377         }
378         if vd.Value == nil || vd.Value.AssetId == nil {
379                 return errors.Wrap(ErrMissingField, "missing value on value destination")
380         }
381
382         e, ok := vs.tx.Entries[*vd.Ref]
383         if !ok {
384                 return errors.Wrapf(bc.ErrMissingEntry, "entry for value destination %x not found", vd.Ref.Bytes())
385         }
386
387         var src *bc.ValueSource
388         switch ref := e.(type) {
389         case *bc.IntraChainOutput:
390                 if vd.Position != 0 {
391                         return errors.Wrapf(ErrPosition, "invalid position %d for output destination", vd.Position)
392                 }
393                 src = ref.Source
394
395         case *bc.CrossChainOutput:
396                 if vd.Position != 0 {
397                         return errors.Wrapf(ErrPosition, "invalid position %d for output destination", vd.Position)
398                 }
399                 src = ref.Source
400
401         case *bc.VoteOutput:
402                 if vd.Position != 0 {
403                         return errors.Wrapf(ErrPosition, "invalid position %d for output destination", vd.Position)
404                 }
405                 src = ref.Source
406
407         case *bc.Retirement:
408                 if vd.Position != 0 {
409                         return errors.Wrapf(ErrPosition, "invalid position %d for retirement destination", vd.Position)
410                 }
411                 src = ref.Source
412
413         case *bc.Mux:
414                 if vd.Position >= uint64(len(ref.Sources)) {
415                         return errors.Wrapf(ErrPosition, "invalid position %d for %d-source mux destination", vd.Position, len(ref.Sources))
416                 }
417                 src = ref.Sources[vd.Position]
418
419         default:
420                 return errors.Wrapf(bc.ErrEntryType, "value destination is %T, should be intra-chain/cross-chain output, retirement, or mux", e)
421         }
422
423         if src.Ref == nil || *src.Ref != vs.entryID {
424                 return errors.Wrapf(ErrMismatchedReference, "value destination for %x has disagreeing source %x", vs.entryID.Bytes(), src.Ref.Bytes())
425         }
426
427         if src.Position != vs.destPos {
428                 return errors.Wrapf(ErrMismatchedPosition, "value destination position %d disagrees with %d", src.Position, vs.destPos)
429         }
430
431         eq, err := src.Value.Equal(vd.Value)
432         if err != nil {
433                 return errors.Sub(ErrMissingField, err)
434         }
435         if !eq {
436                 return errors.Wrapf(ErrMismatchedValue, "destination value %v disagrees with %v", src.Value, vd.Value)
437         }
438
439         return nil
440 }
441
442 func checkStandardTx(tx *bc.Tx, blockHeight uint64) error {
443         for _, id := range tx.InputIDs {
444                 if blockHeight >= ruleAA && id.IsZero() {
445                         return ErrEmptyInputIDs
446                 }
447         }
448
449         for _, id := range tx.GasInputIDs {
450                 spend, err := tx.Spend(id)
451                 if err != nil {
452                         continue
453                 }
454
455                 code := []byte{}
456                 outputEntry, err := tx.Entry(*spend.SpentOutputId)
457                 if err != nil {
458                         return err
459                 }
460                 switch output := outputEntry.(type) {
461                 case *bc.IntraChainOutput:
462                         code = output.ControlProgram.Code
463                 case *bc.VoteOutput:
464                         code = output.ControlProgram.Code
465                 default:
466                         return errors.Wrapf(bc.ErrEntryType, "entry %x has unexpected type %T", id.Bytes(), outputEntry)
467                 }
468
469                 if !segwit.IsP2WScript(code) {
470                         return ErrNotStandardTx
471                 }
472         }
473         return nil
474 }
475
476 func checkTimeRange(tx *bc.Tx, block *bc.Block) error {
477         if tx.TimeRange == 0 {
478                 return nil
479         }
480
481         if tx.TimeRange < block.Height {
482                 return ErrBadTimeRange
483         }
484
485         return nil
486 }
487
488 // ValidateTx validates a transaction.
489 func ValidateTx(tx *bc.Tx, block *bc.Block) (*GasState, error) {
490         gasStatus := &GasState{GasValid: false}
491         if block.Version == 1 && tx.Version != 1 {
492                 return gasStatus, errors.WithDetailf(ErrTxVersion, "block version %d, transaction version %d", block.Version, tx.Version)
493         }
494         if tx.SerializedSize == 0 {
495                 return gasStatus, ErrWrongTransactionSize
496         }
497         if err := checkTimeRange(tx, block); err != nil {
498                 return gasStatus, err
499         }
500         if err := checkStandardTx(tx, block.Height); err != nil {
501                 return gasStatus, err
502         }
503
504         vs := &validationState{
505                 block:     block,
506                 tx:        tx,
507                 entryID:   tx.ID,
508                 gasStatus: gasStatus,
509                 cache:     make(map[bc.Hash]error),
510         }
511         return vs.gasStatus, checkValid(vs, tx.TxHeader)
512 }