2020-11-19 10:00:46 +00:00
package native
import (
"errors"
"fmt"
"math"
"math/big"
2020-11-27 10:55:48 +00:00
"sync"
2020-11-19 10:00:46 +00:00
"github.com/nspcc-dev/neo-go/pkg/core/dao"
"github.com/nspcc-dev/neo-go/pkg/core/interop"
"github.com/nspcc-dev/neo-go/pkg/core/interop/contract"
"github.com/nspcc-dev/neo-go/pkg/core/interop/runtime"
2020-12-13 18:25:04 +00:00
"github.com/nspcc-dev/neo-go/pkg/core/native/nativenames"
2020-11-19 10:00:46 +00:00
"github.com/nspcc-dev/neo-go/pkg/core/state"
"github.com/nspcc-dev/neo-go/pkg/core/storage"
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
2020-12-29 10:45:49 +00:00
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag"
2020-11-19 10:00:46 +00:00
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
"github.com/nspcc-dev/neo-go/pkg/util"
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
)
// Notary represents Notary native contract.
type Notary struct {
interop . ContractMD
GAS * GAS
2021-01-21 12:05:15 +00:00
NEO * NEO
2020-11-19 10:00:46 +00:00
Desig * Designate
2020-11-27 10:55:48 +00:00
lock sync . RWMutex
// isValid defies whether cached values were changed during the current
// consensus iteration. If false, these values will be updated after
// blockchain DAO persisting. If true, we can safely use cached values.
isValid bool
maxNotValidBeforeDelta uint32
2020-11-19 10:00:46 +00:00
}
const (
notaryContractID = reservedContractID - 1
2020-11-27 10:55:48 +00:00
// NotaryVerificationPrice is the price of `verify` Notary method.
NotaryVerificationPrice = 100_0000
2020-11-19 10:00:46 +00:00
// prefixDeposit is a prefix for storing Notary deposits.
2020-11-27 10:55:48 +00:00
prefixDeposit = 1
defaultDepositDeltaTill = 5760
defaultMaxNotValidBeforeDelta = 140 // 20 rounds for 7 validators, a little more than half an hour
2020-11-19 10:00:46 +00:00
)
2020-11-27 10:55:48 +00:00
var maxNotValidBeforeDeltaKey = [ ] byte { 10 }
2020-11-19 10:00:46 +00:00
// newNotary returns Notary native contract.
func newNotary ( ) * Notary {
2021-01-15 21:17:31 +00:00
n := & Notary { ContractMD : * interop . NewContractMD ( nativenames . Notary , notaryContractID ) }
2021-02-15 13:40:44 +00:00
defer n . UpdateHash ( )
2020-11-19 10:00:46 +00:00
2021-02-05 13:09:51 +00:00
desc := newDescriptor ( "onNEP17Payment" , smartcontract . VoidType ,
2020-11-19 10:00:46 +00:00
manifest . NewParameter ( "from" , smartcontract . Hash160Type ) ,
manifest . NewParameter ( "amount" , smartcontract . IntegerType ) ,
manifest . NewParameter ( "data" , smartcontract . AnyType ) )
2021-02-25 15:04:46 +00:00
md := newMethodAndPrice ( n . onPayment , 100_0000 , callflag . States )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
desc = newDescriptor ( "lockDepositUntil" , smartcontract . BoolType ,
manifest . NewParameter ( "address" , smartcontract . Hash160Type ) ,
manifest . NewParameter ( "till" , smartcontract . IntegerType ) )
2021-02-25 15:04:46 +00:00
md = newMethodAndPrice ( n . lockDepositUntil , 100_0000 , callflag . States )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
desc = newDescriptor ( "withdraw" , smartcontract . BoolType ,
manifest . NewParameter ( "from" , smartcontract . Hash160Type ) ,
manifest . NewParameter ( "to" , smartcontract . Hash160Type ) )
2021-02-25 15:04:46 +00:00
md = newMethodAndPrice ( n . withdraw , 100_0000 , callflag . States )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
desc = newDescriptor ( "balanceOf" , smartcontract . IntegerType ,
manifest . NewParameter ( "addr" , smartcontract . Hash160Type ) )
2020-12-29 10:45:49 +00:00
md = newMethodAndPrice ( n . balanceOf , 100_0000 , callflag . ReadStates )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
desc = newDescriptor ( "expirationOf" , smartcontract . IntegerType ,
manifest . NewParameter ( "addr" , smartcontract . Hash160Type ) )
2020-12-29 10:45:49 +00:00
md = newMethodAndPrice ( n . expirationOf , 100_0000 , callflag . ReadStates )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
desc = newDescriptor ( "verify" , smartcontract . BoolType ,
manifest . NewParameter ( "signature" , smartcontract . SignatureType ) )
2021-02-09 08:14:28 +00:00
md = newMethodAndPrice ( n . verify , NotaryVerificationPrice , callflag . ReadStates )
2020-12-08 10:27:41 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
2020-11-27 10:55:48 +00:00
desc = newDescriptor ( "getMaxNotValidBeforeDelta" , smartcontract . IntegerType )
2020-12-29 10:45:49 +00:00
md = newMethodAndPrice ( n . getMaxNotValidBeforeDelta , 100_0000 , callflag . ReadStates )
2020-11-27 10:55:48 +00:00
n . AddMethod ( md , desc )
2021-01-28 15:01:30 +00:00
desc = newDescriptor ( "setMaxNotValidBeforeDelta" , smartcontract . VoidType ,
2020-11-27 10:55:48 +00:00
manifest . NewParameter ( "value" , smartcontract . IntegerType ) )
2021-02-25 15:04:46 +00:00
md = newMethodAndPrice ( n . setMaxNotValidBeforeDelta , 300_0000 , callflag . States )
2020-11-27 10:55:48 +00:00
n . AddMethod ( md , desc )
2020-11-19 10:00:46 +00:00
return n
}
// Metadata implements Contract interface.
func ( n * Notary ) Metadata ( ) * interop . ContractMD {
return & n . ContractMD
}
// Initialize initializes Notary native contract and implements Contract interface.
func ( n * Notary ) Initialize ( ic * interop . Context ) error {
2021-02-09 09:26:25 +00:00
err := setIntWithKey ( n . ID , ic . DAO , maxNotValidBeforeDeltaKey , defaultMaxNotValidBeforeDelta )
2021-02-02 15:46:43 +00:00
if err != nil {
return err
}
2020-11-27 10:55:48 +00:00
n . isValid = true
n . maxNotValidBeforeDelta = defaultMaxNotValidBeforeDelta
2020-11-19 10:00:46 +00:00
return nil
}
// OnPersist implements Contract interface.
func ( n * Notary ) OnPersist ( ic * interop . Context ) error {
var (
nFees int64
notaries keys . PublicKeys
err error
)
for _ , tx := range ic . Block . Transactions {
if tx . HasAttribute ( transaction . NotaryAssistedT ) {
if notaries == nil {
notaries , err = n . GetNotaryNodes ( ic . DAO )
if err != nil {
return fmt . Errorf ( "failed to get notary nodes: %w" , err )
}
}
nKeys := tx . GetAttributes ( transaction . NotaryAssistedT ) [ 0 ] . Value . ( * transaction . NotaryAssisted ) . NKeys
nFees += int64 ( nKeys ) + 1
if tx . Sender ( ) == n . Hash {
payer := tx . Signers [ 1 ]
2020-11-27 10:55:48 +00:00
balance := n . GetDepositFor ( ic . DAO , payer . Account )
2020-11-19 10:00:46 +00:00
balance . Amount . Sub ( balance . Amount , big . NewInt ( tx . SystemFee + tx . NetworkFee ) )
if balance . Amount . Sign ( ) == 0 {
err := n . removeDepositFor ( ic . DAO , payer . Account )
if err != nil {
return fmt . Errorf ( "failed to remove an empty deposit for %s from storage: %w" , payer . Account . StringBE ( ) , err )
}
} else {
err := n . putDepositFor ( ic . DAO , balance , payer . Account )
if err != nil {
return fmt . Errorf ( "failed to update deposit for %s: %w" , payer . Account . StringBE ( ) , err )
}
}
}
}
}
if nFees == 0 {
return nil
}
singleReward := calculateNotaryReward ( nFees , len ( notaries ) )
for _ , notary := range notaries {
2020-11-30 10:05:42 +00:00
n . GAS . mint ( ic , notary . GetScriptHash ( ) , singleReward , false )
2020-11-19 10:00:46 +00:00
}
return nil
}
2020-12-13 20:30:21 +00:00
// PostPersist implements Contract interface.
func ( n * Notary ) PostPersist ( ic * interop . Context ) error {
n . lock . Lock ( )
defer n . lock . Unlock ( )
2020-11-27 10:55:48 +00:00
if n . isValid {
return nil
}
2021-02-09 09:26:25 +00:00
n . maxNotValidBeforeDelta = uint32 ( getIntWithKey ( n . ID , ic . DAO , maxNotValidBeforeDeltaKey ) )
2020-11-27 10:55:48 +00:00
n . isValid = true
return nil
}
2020-11-19 10:00:46 +00:00
// onPayment records deposited amount as belonging to "from" address with a lock
// till the specified chain's height.
func ( n * Notary ) onPayment ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
if h := ic . VM . GetCallingScriptHash ( ) ; h != n . GAS . Hash {
panic ( fmt . Errorf ( "only GAS can be accepted for deposit, got %s" , h . StringBE ( ) ) )
}
from := toUint160 ( args [ 0 ] )
to := from
amount := toBigInt ( args [ 1 ] )
data , ok := args [ 2 ] . ( * stackitem . Array )
if ! ok || len ( data . Value ( ) . ( [ ] stackitem . Item ) ) != 2 {
panic ( errors . New ( "`data` parameter should be an array of 2 elements" ) )
}
additionalParams := data . Value ( ) . ( [ ] stackitem . Item )
if ! additionalParams [ 0 ] . Equals ( stackitem . Null { } ) {
to = toUint160 ( additionalParams [ 0 ] )
}
2020-12-07 08:43:32 +00:00
allowedChangeTill := ic . Tx . Sender ( ) == to
2020-11-19 10:00:46 +00:00
currentHeight := ic . Chain . BlockHeight ( )
2020-11-27 10:55:48 +00:00
deposit := n . GetDepositFor ( ic . DAO , to )
2020-12-07 08:43:32 +00:00
till := toUint32 ( additionalParams [ 1 ] )
2020-11-19 10:00:46 +00:00
if till < currentHeight {
panic ( fmt . Errorf ( "`till` shouldn't be less then the chain's height %d" , currentHeight ) )
}
2020-12-07 08:43:32 +00:00
if deposit != nil && till < deposit . Till {
panic ( fmt . Errorf ( "`till` shouldn't be less then the previous value %d" , deposit . Till ) )
}
2020-11-19 10:00:46 +00:00
if deposit == nil {
if amount . Cmp ( big . NewInt ( 2 * transaction . NotaryServiceFeePerKey ) ) < 0 {
panic ( fmt . Errorf ( "first deposit can not be less then %d, got %d" , 2 * transaction . NotaryServiceFeePerKey , amount . Int64 ( ) ) )
}
deposit = & state . Deposit {
Amount : new ( big . Int ) ,
}
2020-12-07 08:43:32 +00:00
if ! allowedChangeTill {
till = currentHeight + defaultDepositDeltaTill
2020-11-19 10:00:46 +00:00
}
2020-12-07 08:43:32 +00:00
} else if ! allowedChangeTill { // only deposit's owner is allowed to set or update `till`
till = deposit . Till
2020-11-19 10:00:46 +00:00
}
deposit . Amount . Add ( deposit . Amount , amount )
deposit . Till = till
if err := n . putDepositFor ( ic . DAO , deposit , to ) ; err != nil {
panic ( fmt . Errorf ( "failed to put deposit for %s into the storage: %w" , from . StringBE ( ) , err ) )
}
return stackitem . Null { }
}
// lockDepositUntil updates the chain's height until which deposit is locked.
func ( n * Notary ) lockDepositUntil ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
addr := toUint160 ( args [ 0 ] )
ok , err := runtime . CheckHashedWitness ( ic , addr )
if err != nil {
panic ( fmt . Errorf ( "failed to check witness for %s: %w" , addr . StringBE ( ) , err ) )
}
if ! ok {
return stackitem . NewBool ( false )
}
till := toUint32 ( args [ 1 ] )
if till < ic . Chain . BlockHeight ( ) {
return stackitem . NewBool ( false )
}
2020-11-27 10:55:48 +00:00
deposit := n . GetDepositFor ( ic . DAO , addr )
2020-11-19 10:00:46 +00:00
if deposit == nil {
return stackitem . NewBool ( false )
}
if till < deposit . Till {
return stackitem . NewBool ( false )
}
deposit . Till = till
err = n . putDepositFor ( ic . DAO , deposit , addr )
if err != nil {
panic ( fmt . Errorf ( "failed to put deposit for %s into the storage: %w" , addr . StringBE ( ) , err ) )
}
return stackitem . NewBool ( true )
}
// withdraw sends all deposited GAS for "from" address to "to" address.
func ( n * Notary ) withdraw ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
from := toUint160 ( args [ 0 ] )
ok , err := runtime . CheckHashedWitness ( ic , from )
if err != nil {
panic ( fmt . Errorf ( "failed to check witness for %s: %w" , from . StringBE ( ) , err ) )
}
if ! ok {
return stackitem . NewBool ( false )
}
to := from
if ! args [ 1 ] . Equals ( stackitem . Null { } ) {
to = toUint160 ( args [ 1 ] )
}
2020-11-27 10:55:48 +00:00
deposit := n . GetDepositFor ( ic . DAO , from )
2020-11-19 10:00:46 +00:00
if deposit == nil {
return stackitem . NewBool ( false )
}
if ic . Chain . BlockHeight ( ) < deposit . Till {
return stackitem . NewBool ( false )
}
2020-12-13 15:26:35 +00:00
cs , err := ic . GetContract ( n . GAS . Hash )
2020-11-19 10:00:46 +00:00
if err != nil {
panic ( fmt . Errorf ( "failed to get GAS contract state: %w" , err ) )
}
transferArgs := [ ] stackitem . Item { stackitem . NewByteArray ( n . Hash . BytesBE ( ) ) , stackitem . NewByteArray ( to . BytesBE ( ) ) , stackitem . NewBigInteger ( deposit . Amount ) , stackitem . Null { } }
2020-12-29 10:44:07 +00:00
err = contract . CallFromNative ( ic , n . Hash , cs , "transfer" , transferArgs , true )
2020-11-19 10:00:46 +00:00
if err != nil {
panic ( fmt . Errorf ( "failed to transfer GAS from Notary account: %w" , err ) )
}
2020-12-09 12:16:49 +00:00
if ! ic . VM . Estack ( ) . Pop ( ) . Bool ( ) {
panic ( "failed to transfer GAS from Notary account: `transfer` returned false" )
}
2020-11-19 10:00:46 +00:00
if err := n . removeDepositFor ( ic . DAO , from ) ; err != nil {
panic ( fmt . Errorf ( "failed to remove withdrawn deposit for %s from the storage: %w" , from . StringBE ( ) , err ) )
}
return stackitem . NewBool ( true )
}
// balanceOf returns deposited GAS amount for specified address.
func ( n * Notary ) balanceOf ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
acc := toUint160 ( args [ 0 ] )
2020-11-27 10:55:48 +00:00
return stackitem . NewBigInteger ( n . BalanceOf ( ic . DAO , acc ) )
}
// BalanceOf is an internal representation of `balanceOf` Notary method.
func ( n * Notary ) BalanceOf ( dao dao . DAO , acc util . Uint160 ) * big . Int {
deposit := n . GetDepositFor ( dao , acc )
2020-11-19 10:00:46 +00:00
if deposit == nil {
2020-11-27 10:55:48 +00:00
return big . NewInt ( 0 )
2020-11-19 10:00:46 +00:00
}
2020-11-27 10:55:48 +00:00
return deposit . Amount
2020-11-19 10:00:46 +00:00
}
// expirationOf Returns deposit lock height for specified address.
func ( n * Notary ) expirationOf ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
acc := toUint160 ( args [ 0 ] )
2020-11-27 10:55:48 +00:00
return stackitem . Make ( n . ExpirationOf ( ic . DAO , acc ) )
}
// ExpirationOf is an internal representation of `expirationOf` Notary method.
func ( n * Notary ) ExpirationOf ( dao dao . DAO , acc util . Uint160 ) uint32 {
deposit := n . GetDepositFor ( dao , acc )
2020-11-19 10:00:46 +00:00
if deposit == nil {
2020-11-27 10:55:48 +00:00
return 0
2020-11-19 10:00:46 +00:00
}
2020-11-27 10:55:48 +00:00
return deposit . Till
2020-11-19 10:00:46 +00:00
}
// verify checks whether the transaction was signed by one of the notaries.
func ( n * Notary ) verify ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
sig , err := args [ 0 ] . TryBytes ( )
if err != nil {
panic ( fmt . Errorf ( "failed to get signature bytes: %w" , err ) )
}
tx := ic . Tx
if len ( tx . GetAttributes ( transaction . NotaryAssistedT ) ) == 0 {
return stackitem . NewBool ( false )
}
for _ , signer := range tx . Signers {
if signer . Account == n . Hash {
if signer . Scopes != transaction . None {
return stackitem . NewBool ( false )
}
2021-02-11 10:53:37 +00:00
break
2020-11-19 10:00:46 +00:00
}
}
if tx . Sender ( ) == n . Hash {
if len ( tx . Signers ) != 2 {
return stackitem . NewBool ( false )
}
payer := tx . Signers [ 1 ] . Account
2020-11-27 10:55:48 +00:00
balance := n . GetDepositFor ( ic . DAO , payer )
2020-11-19 10:00:46 +00:00
if balance == nil || balance . Amount . Cmp ( big . NewInt ( tx . NetworkFee + tx . SystemFee ) ) < 0 {
return stackitem . NewBool ( false )
}
}
notaries , err := n . GetNotaryNodes ( ic . DAO )
if err != nil {
panic ( fmt . Errorf ( "failed to get notary nodes: %w" , err ) )
}
hash := tx . GetSignedHash ( ) . BytesBE ( )
var verified bool
for _ , n := range notaries {
if n . Verify ( sig , hash ) {
verified = true
break
}
}
return stackitem . NewBool ( verified )
}
// GetNotaryNodes returns public keys of notary nodes.
func ( n * Notary ) GetNotaryNodes ( d dao . DAO ) ( keys . PublicKeys , error ) {
nodes , _ , err := n . Desig . GetDesignatedByRole ( d , RoleP2PNotary , math . MaxUint32 )
return nodes , err
}
2020-11-27 10:55:48 +00:00
// getMaxNotValidBeforeDelta is Notary contract method and returns the maximum NotValidBefore delta.
func ( n * Notary ) getMaxNotValidBeforeDelta ( ic * interop . Context , _ [ ] stackitem . Item ) stackitem . Item {
return stackitem . NewBigInteger ( big . NewInt ( int64 ( n . GetMaxNotValidBeforeDelta ( ic . DAO ) ) ) )
}
// GetMaxNotValidBeforeDelta is an internal representation of Notary getMaxNotValidBeforeDelta method.
func ( n * Notary ) GetMaxNotValidBeforeDelta ( dao dao . DAO ) uint32 {
n . lock . RLock ( )
defer n . lock . RUnlock ( )
if n . isValid {
return n . maxNotValidBeforeDelta
}
2021-02-09 09:26:25 +00:00
return uint32 ( getIntWithKey ( n . ID , dao , maxNotValidBeforeDeltaKey ) )
2020-11-27 10:55:48 +00:00
}
// setMaxNotValidBeforeDelta is Notary contract method and sets the maximum NotValidBefore delta.
func ( n * Notary ) setMaxNotValidBeforeDelta ( ic * interop . Context , args [ ] stackitem . Item ) stackitem . Item {
value := toUint32 ( args [ 0 ] )
if value > transaction . MaxValidUntilBlockIncrement / 2 || value < uint32 ( ic . Chain . GetConfig ( ) . ValidatorsCount ) {
panic ( fmt . Errorf ( "MaxNotValidBeforeDelta cannot be more than %d or less than %d" , transaction . MaxValidUntilBlockIncrement / 2 , ic . Chain . GetConfig ( ) . ValidatorsCount ) )
}
2021-01-21 12:05:15 +00:00
if ! n . NEO . checkCommittee ( ic ) {
2021-01-28 15:01:30 +00:00
panic ( "invalid committee signature" )
2020-11-27 10:55:48 +00:00
}
n . lock . Lock ( )
defer n . lock . Unlock ( )
2021-02-09 09:26:25 +00:00
err := setIntWithKey ( n . ID , ic . DAO , maxNotValidBeforeDeltaKey , int64 ( value ) )
2020-11-27 10:55:48 +00:00
if err != nil {
panic ( fmt . Errorf ( "failed to put value into the storage: %w" , err ) )
}
n . isValid = false
2021-01-28 15:01:30 +00:00
return stackitem . Null { }
2020-11-27 10:55:48 +00:00
}
// GetDepositFor returns state.Deposit for the account specified. It returns nil in case if
2020-11-19 10:00:46 +00:00
// deposit is not found in storage and panics in case of any other error.
2020-11-27 10:55:48 +00:00
func ( n * Notary ) GetDepositFor ( dao dao . DAO , acc util . Uint160 ) * state . Deposit {
2020-11-19 10:00:46 +00:00
key := append ( [ ] byte { prefixDeposit } , acc . BytesBE ( ) ... )
deposit := new ( state . Deposit )
2021-02-09 09:26:25 +00:00
err := getSerializableFromDAO ( n . ID , dao , key , deposit )
2020-11-19 10:00:46 +00:00
if err == nil {
return deposit
}
if err == storage . ErrKeyNotFound {
return nil
}
panic ( fmt . Errorf ( "failed to get deposit for %s from storage: %w" , acc . StringBE ( ) , err ) )
}
// putDepositFor puts deposit on the balance of the specified account in the storage.
func ( n * Notary ) putDepositFor ( dao dao . DAO , deposit * state . Deposit , acc util . Uint160 ) error {
key := append ( [ ] byte { prefixDeposit } , acc . BytesBE ( ) ... )
2021-02-09 09:26:25 +00:00
return putSerializableToDAO ( n . ID , dao , key , deposit )
2020-11-19 10:00:46 +00:00
}
// removeDepositFor removes deposit from the storage.
func ( n * Notary ) removeDepositFor ( dao dao . DAO , acc util . Uint160 ) error {
key := append ( [ ] byte { prefixDeposit } , acc . BytesBE ( ) ... )
2021-02-09 09:26:25 +00:00
return dao . DeleteStorageItem ( n . ID , key )
2020-11-19 10:00:46 +00:00
}
// calculateNotaryReward calculates the reward for a single notary node based on FEE's count and Notary nodes count.
func calculateNotaryReward ( nFees int64 , notariesCount int ) * big . Int {
return big . NewInt ( nFees * transaction . NotaryServiceFeePerKey / int64 ( notariesCount ) )
}