2020-12-08 15:28:00 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
2020-12-13 15:26:35 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2020-12-08 15:28:00 +00:00
|
|
|
"fmt"
|
2020-12-13 15:26:35 +00:00
|
|
|
"math"
|
|
|
|
"math/big"
|
2020-12-15 10:53:35 +00:00
|
|
|
"sync"
|
2021-02-08 20:14:35 +00:00
|
|
|
"unicode/utf8"
|
2020-12-08 15:28:00 +00:00
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/dao"
|
2020-12-08 15:28:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop"
|
2020-12-13 15:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/contract"
|
2020-12-13 18:25:04 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native/nativenames"
|
2020-12-08 15:28:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
2020-12-15 10:53:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/storage"
|
2020-12-13 15:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
|
|
|
"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-12-13 15:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/nef"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2021-02-09 18:42:39 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util/bitfield"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
2020-12-13 15:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-12-08 15:28:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Management is contract-managing native contract.
|
|
|
|
type Management struct {
|
|
|
|
interop.ContractMD
|
2021-01-21 12:05:15 +00:00
|
|
|
NEO *NEO
|
2020-12-15 10:53:35 +00:00
|
|
|
|
|
|
|
mtx sync.RWMutex
|
|
|
|
contracts map[util.Uint160]*state.Contract
|
2021-11-16 10:28:59 +00:00
|
|
|
// nep11 is a map of NEP11-compliant contracts which is updated with every PostPersist.
|
|
|
|
nep11 map[util.Uint160]struct{}
|
2021-11-18 13:37:42 +00:00
|
|
|
// nep17 is a map of NEP-17-compliant contracts which is updated with every PostPersist.
|
2021-07-23 12:52:30 +00:00
|
|
|
nep17 map[util.Uint160]struct{}
|
2020-12-08 15:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2021-10-07 09:03:37 +00:00
|
|
|
ManagementContractID = -1
|
2021-01-15 21:17:31 +00:00
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
prefixContract = 8
|
2020-12-16 13:11:12 +00:00
|
|
|
|
2020-12-16 13:41:55 +00:00
|
|
|
defaultMinimumDeploymentFee = 10_00000000
|
|
|
|
contractDeployNotificationName = "Deploy"
|
|
|
|
contractUpdateNotificationName = "Update"
|
|
|
|
contractDestroyNotificationName = "Destroy"
|
2020-12-08 15:28:00 +00:00
|
|
|
)
|
|
|
|
|
2020-12-16 13:11:12 +00:00
|
|
|
var (
|
|
|
|
errGasLimitExceeded = errors.New("gas limit exceeded")
|
|
|
|
|
|
|
|
keyNextAvailableID = []byte{15}
|
|
|
|
keyMinimumDeploymentFee = []byte{20}
|
|
|
|
)
|
2020-12-13 15:26:35 +00:00
|
|
|
|
2021-10-07 09:03:37 +00:00
|
|
|
// MakeContractKey creates a key from account script hash.
|
|
|
|
func MakeContractKey(h util.Uint160) []byte {
|
2020-12-13 15:26:35 +00:00
|
|
|
return makeUint160Key(prefixContract, h)
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:28:00 +00:00
|
|
|
// newManagement creates new Management native contract.
|
|
|
|
func newManagement() *Management {
|
2020-12-15 10:53:35 +00:00
|
|
|
var m = &Management{
|
2021-10-07 09:03:37 +00:00
|
|
|
ContractMD: *interop.NewContractMD(nativenames.Management, ManagementContractID),
|
2020-12-15 10:53:35 +00:00
|
|
|
contracts: make(map[util.Uint160]*state.Contract),
|
2021-11-16 10:28:59 +00:00
|
|
|
nep11: make(map[util.Uint160]struct{}),
|
2021-07-23 12:52:30 +00:00
|
|
|
nep17: make(map[util.Uint160]struct{}),
|
2020-12-15 10:53:35 +00:00
|
|
|
}
|
2021-02-15 13:40:44 +00:00
|
|
|
defer m.UpdateHash()
|
2020-12-08 15:28:00 +00:00
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
desc := newDescriptor("getContract", smartcontract.ArrayType,
|
2021-01-12 15:06:27 +00:00
|
|
|
manifest.NewParameter("hash", smartcontract.Hash160Type))
|
2021-03-05 10:30:16 +00:00
|
|
|
md := newMethodAndPrice(m.getContract, 1<<15, callflag.ReadStates)
|
2020-12-13 15:26:35 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
|
|
|
desc = newDescriptor("deploy", smartcontract.ArrayType,
|
2021-02-12 13:46:17 +00:00
|
|
|
manifest.NewParameter("nefFile", smartcontract.ByteArrayType),
|
2020-12-13 15:26:35 +00:00
|
|
|
manifest.NewParameter("manifest", smartcontract.ByteArrayType))
|
2022-03-21 11:28:28 +00:00
|
|
|
md = newMethodAndPrice(m.deploy, 0, callflag.All)
|
2020-12-13 15:26:35 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2021-01-28 13:31:50 +00:00
|
|
|
desc = newDescriptor("deploy", smartcontract.ArrayType,
|
2021-02-12 13:46:17 +00:00
|
|
|
manifest.NewParameter("nefFile", smartcontract.ByteArrayType),
|
2021-01-28 13:31:50 +00:00
|
|
|
manifest.NewParameter("manifest", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("data", smartcontract.AnyType))
|
2022-03-21 11:28:28 +00:00
|
|
|
md = newMethodAndPrice(m.deployWithData, 0, callflag.All)
|
2021-01-28 13:31:50 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
desc = newDescriptor("update", smartcontract.VoidType,
|
2021-02-12 13:46:17 +00:00
|
|
|
manifest.NewParameter("nefFile", smartcontract.ByteArrayType),
|
2020-12-13 15:26:35 +00:00
|
|
|
manifest.NewParameter("manifest", smartcontract.ByteArrayType))
|
2022-03-21 11:28:28 +00:00
|
|
|
md = newMethodAndPrice(m.update, 0, callflag.All)
|
2020-12-13 15:26:35 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2021-01-28 13:31:50 +00:00
|
|
|
desc = newDescriptor("update", smartcontract.VoidType,
|
2021-02-12 13:46:17 +00:00
|
|
|
manifest.NewParameter("nefFile", smartcontract.ByteArrayType),
|
2021-01-28 13:31:50 +00:00
|
|
|
manifest.NewParameter("manifest", smartcontract.ByteArrayType),
|
|
|
|
manifest.NewParameter("data", smartcontract.AnyType))
|
2022-03-21 11:28:28 +00:00
|
|
|
md = newMethodAndPrice(m.updateWithData, 0, callflag.All)
|
2021-01-28 13:31:50 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
desc = newDescriptor("destroy", smartcontract.VoidType)
|
2021-03-05 10:30:16 +00:00
|
|
|
md = newMethodAndPrice(m.destroy, 1<<15, callflag.States|callflag.AllowNotify)
|
2020-12-13 15:26:35 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2020-12-16 13:11:12 +00:00
|
|
|
desc = newDescriptor("getMinimumDeploymentFee", smartcontract.IntegerType)
|
2021-03-05 10:30:16 +00:00
|
|
|
md = newMethodAndPrice(m.getMinimumDeploymentFee, 1<<15, callflag.ReadStates)
|
2020-12-16 13:11:12 +00:00
|
|
|
m.AddMethod(md, desc)
|
|
|
|
|
2021-01-28 15:01:30 +00:00
|
|
|
desc = newDescriptor("setMinimumDeploymentFee", smartcontract.VoidType,
|
2020-12-16 13:11:12 +00:00
|
|
|
manifest.NewParameter("value", smartcontract.IntegerType))
|
2021-03-05 10:30:16 +00:00
|
|
|
md = newMethodAndPrice(m.setMinimumDeploymentFee, 1<<15, callflag.States)
|
2020-12-16 13:11:12 +00:00
|
|
|
m.AddMethod(md, desc)
|
2020-12-16 13:41:55 +00:00
|
|
|
|
|
|
|
hashParam := manifest.NewParameter("Hash", smartcontract.Hash160Type)
|
|
|
|
m.AddEvent(contractDeployNotificationName, hashParam)
|
|
|
|
m.AddEvent(contractUpdateNotificationName, hashParam)
|
|
|
|
m.AddEvent(contractDestroyNotificationName, hashParam)
|
2020-12-08 15:28:00 +00:00
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
// getContract is an implementation of public getContract method, it's run under
|
|
|
|
// VM protections, so it's OK for it to panic instead of returning errors.
|
|
|
|
func (m *Management) getContract(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
hashBytes, err := args[0].TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
hash, err := util.Uint160DecodeBytesBE(hashBytes)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
ctr, err := m.GetContract(ic.DAO, hash)
|
|
|
|
if err != nil {
|
2021-03-19 17:05:05 +00:00
|
|
|
if err == storage.ErrKeyNotFound {
|
|
|
|
return stackitem.Null{}
|
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return contractToStack(ctr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetContract returns contract with given hash from given DAO.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) GetContract(d *dao.Simple, hash util.Uint160) (*state.Contract, error) {
|
2020-12-15 10:53:35 +00:00
|
|
|
m.mtx.RLock()
|
|
|
|
cs, ok := m.contracts[hash]
|
|
|
|
m.mtx.RUnlock()
|
|
|
|
if !ok {
|
|
|
|
return nil, storage.ErrKeyNotFound
|
|
|
|
} else if cs != nil {
|
|
|
|
return cs, nil
|
|
|
|
}
|
|
|
|
return m.getContractFromDAO(d, hash)
|
|
|
|
}
|
|
|
|
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) getContractFromDAO(d *dao.Simple, hash util.Uint160) (*state.Contract, error) {
|
2020-12-13 15:26:35 +00:00
|
|
|
contract := new(state.Contract)
|
2021-10-07 09:03:37 +00:00
|
|
|
key := MakeContractKey(hash)
|
2021-07-17 15:37:33 +00:00
|
|
|
err := getConvertibleFromDAO(m.ID, d, key, contract)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return contract, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getLimitedSlice(arg stackitem.Item, max int) ([]byte, error) {
|
|
|
|
_, isNull := arg.(stackitem.Null)
|
|
|
|
if isNull {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
b, err := arg.TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
l := len(b)
|
|
|
|
if l == 0 {
|
|
|
|
return nil, errors.New("empty")
|
|
|
|
} else if l > max {
|
|
|
|
return nil, fmt.Errorf("len is %d (max %d)", l, max)
|
|
|
|
}
|
|
|
|
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// getNefAndManifestFromItems converts input arguments into NEF and manifest
|
|
|
|
// adding appropriate deployment GAS price and sanitizing inputs.
|
2020-12-16 13:11:12 +00:00
|
|
|
func (m *Management) getNefAndManifestFromItems(ic *interop.Context, args []stackitem.Item, isDeploy bool) (*nef.File, *manifest.Manifest, error) {
|
2020-12-13 15:26:35 +00:00
|
|
|
nefBytes, err := getLimitedSlice(args[0], math.MaxInt32) // Upper limits are checked during NEF deserialization.
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("invalid NEF file: %w", err)
|
|
|
|
}
|
|
|
|
manifestBytes, err := getLimitedSlice(args[1], manifest.MaxManifestSize)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("invalid manifest: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-04-08 09:27:25 +00:00
|
|
|
gas := ic.BaseStorageFee() * int64(len(nefBytes)+len(manifestBytes))
|
2020-12-16 13:11:12 +00:00
|
|
|
if isDeploy {
|
2022-03-11 08:34:37 +00:00
|
|
|
fee := m.minimumDeploymentFee(ic.DAO)
|
2020-12-16 13:11:12 +00:00
|
|
|
if fee > gas {
|
|
|
|
gas = fee
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !ic.VM.AddGas(gas) {
|
2020-12-13 15:26:35 +00:00
|
|
|
return nil, nil, errGasLimitExceeded
|
|
|
|
}
|
|
|
|
var resManifest *manifest.Manifest
|
|
|
|
var resNef *nef.File
|
|
|
|
if nefBytes != nil {
|
|
|
|
nf, err := nef.FileFromBytes(nefBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("invalid NEF file: %w", err)
|
|
|
|
}
|
|
|
|
resNef = &nf
|
|
|
|
}
|
|
|
|
if manifestBytes != nil {
|
2021-02-08 20:14:35 +00:00
|
|
|
if !utf8.Valid(manifestBytes) {
|
|
|
|
return nil, nil, errors.New("manifest is not UTF-8 compliant")
|
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
resManifest = new(manifest.Manifest)
|
|
|
|
err := json.Unmarshal(manifestBytes, resManifest)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("invalid manifest: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return resNef, resManifest, nil
|
|
|
|
}
|
|
|
|
|
2021-01-28 13:31:50 +00:00
|
|
|
// deploy is an implementation of public 2-argument deploy method.
|
2020-12-13 15:26:35 +00:00
|
|
|
func (m *Management) deploy(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-01-28 13:31:50 +00:00
|
|
|
return m.deployWithData(ic, append(args, stackitem.Null{}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// deployWithData is an implementation of public 3-argument deploy method.
|
|
|
|
// It's run under VM protections, so it's OK for it to panic instead of returning errors.
|
|
|
|
func (m *Management) deployWithData(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2020-12-16 13:11:12 +00:00
|
|
|
neff, manif, err := m.getNefAndManifestFromItems(ic, args, true)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if neff == nil {
|
|
|
|
panic(errors.New("no valid NEF provided"))
|
|
|
|
}
|
|
|
|
if manif == nil {
|
|
|
|
panic(errors.New("no valid manifest provided"))
|
|
|
|
}
|
|
|
|
if ic.Tx == nil {
|
|
|
|
panic(errors.New("no transaction provided"))
|
|
|
|
}
|
|
|
|
newcontract, err := m.Deploy(ic.DAO, ic.Tx.Sender(), neff, manif)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-28 13:31:50 +00:00
|
|
|
m.callDeploy(ic, newcontract, args[2], false)
|
2020-12-16 13:41:55 +00:00
|
|
|
m.emitNotification(ic, contractDeployNotificationName, newcontract.Hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
return contractToStack(newcontract)
|
2020-12-15 10:53:35 +00:00
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
|
2020-12-15 10:53:35 +00:00
|
|
|
func (m *Management) markUpdated(h util.Uint160) {
|
|
|
|
m.mtx.Lock()
|
|
|
|
// Just set it to nil, to refresh cache in `PostPersist`.
|
|
|
|
m.contracts[h] = nil
|
|
|
|
m.mtx.Unlock()
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deploy creates contract's hash/ID and saves new contract into the given DAO.
|
2020-12-16 13:41:55 +00:00
|
|
|
// It doesn't run _deploy method and doesn't emit notification.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) Deploy(d *dao.Simple, sender util.Uint160, neff *nef.File, manif *manifest.Manifest) (*state.Contract, error) {
|
2021-01-22 09:22:48 +00:00
|
|
|
h := state.CreateContractHash(sender, neff.Checksum, manif.Name)
|
2021-10-07 09:03:37 +00:00
|
|
|
key := MakeContractKey(h)
|
2021-02-09 09:26:25 +00:00
|
|
|
si := d.GetStorageItem(m.ID, key)
|
2020-12-13 15:26:35 +00:00
|
|
|
if si != nil {
|
|
|
|
return nil, errors.New("contract already exists")
|
|
|
|
}
|
|
|
|
id, err := m.getNextContractID(d)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-02-08 09:04:57 +00:00
|
|
|
err = manif.IsValid(h)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid manifest: %w", err)
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
2021-02-09 18:42:39 +00:00
|
|
|
err = checkScriptAndMethods(neff.Script, manif.ABI.Methods)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
newcontract := &state.Contract{
|
2021-02-09 09:02:38 +00:00
|
|
|
ContractBase: state.ContractBase{
|
|
|
|
ID: id,
|
|
|
|
Hash: h,
|
|
|
|
NEF: *neff,
|
|
|
|
Manifest: *manif,
|
|
|
|
},
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
|
|
|
err = m.PutContractState(d, newcontract)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-15 10:53:35 +00:00
|
|
|
m.markUpdated(newcontract.Hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
return newcontract, nil
|
|
|
|
}
|
|
|
|
|
2021-01-28 13:31:50 +00:00
|
|
|
func (m *Management) update(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
|
|
|
return m.updateWithData(ic, append(args, stackitem.Null{}))
|
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
// update is an implementation of public update method, it's run under
|
|
|
|
// VM protections, so it's OK for it to panic instead of returning errors.
|
2021-01-28 13:31:50 +00:00
|
|
|
func (m *Management) updateWithData(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2020-12-16 13:11:12 +00:00
|
|
|
neff, manif, err := m.getNefAndManifestFromItems(ic, args, false)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if neff == nil && manif == nil {
|
|
|
|
panic(errors.New("both NEF and manifest are nil"))
|
|
|
|
}
|
|
|
|
contract, err := m.Update(ic.DAO, ic.VM.GetCallingScriptHash(), neff, manif)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-28 13:31:50 +00:00
|
|
|
m.callDeploy(ic, contract, args[2], true)
|
2020-12-16 13:41:55 +00:00
|
|
|
m.emitNotification(ic, contractUpdateNotificationName, contract.Hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
return stackitem.Null{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates contract's script and/or manifest in the given DAO.
|
2020-12-16 13:41:55 +00:00
|
|
|
// It doesn't run _deploy method and doesn't emit notification.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) Update(d *dao.Simple, hash util.Uint160, neff *nef.File, manif *manifest.Manifest) (*state.Contract, error) {
|
2021-07-07 20:17:18 +00:00
|
|
|
var contract state.Contract
|
|
|
|
|
|
|
|
oldcontract, err := m.GetContract(d, hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New("contract doesn't exist")
|
|
|
|
}
|
2021-07-07 20:17:18 +00:00
|
|
|
|
|
|
|
contract = *oldcontract // Make a copy, don't ruin (potentially) cached contract.
|
2020-12-13 15:26:35 +00:00
|
|
|
// if NEF was provided, update the contract script
|
|
|
|
if neff != nil {
|
2020-12-15 10:53:35 +00:00
|
|
|
m.markUpdated(hash)
|
2021-01-13 12:34:10 +00:00
|
|
|
contract.NEF = *neff
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
|
|
|
// if manifest was provided, update the contract manifest
|
|
|
|
if manif != nil {
|
2021-01-28 13:43:41 +00:00
|
|
|
if manif.Name != contract.Manifest.Name {
|
|
|
|
return nil, errors.New("contract name can't be changed")
|
|
|
|
}
|
2021-02-08 09:04:57 +00:00
|
|
|
err = manif.IsValid(contract.Hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid manifest: %w", err)
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
2020-12-15 10:53:35 +00:00
|
|
|
m.markUpdated(hash)
|
|
|
|
contract.Manifest = *manif
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
2021-02-09 18:42:39 +00:00
|
|
|
err = checkScriptAndMethods(contract.NEF.Script, contract.Manifest.ABI.Methods)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
contract.UpdateCounter++
|
2021-07-07 20:17:18 +00:00
|
|
|
err = m.PutContractState(d, &contract)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-07-07 20:17:18 +00:00
|
|
|
return &contract, nil
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// destroy is an implementation of destroy update method, it's run under
|
|
|
|
// VM protections, so it's OK for it to panic instead of returning errors.
|
|
|
|
func (m *Management) destroy(ic *interop.Context, sis []stackitem.Item) stackitem.Item {
|
|
|
|
hash := ic.VM.GetCallingScriptHash()
|
|
|
|
err := m.Destroy(ic.DAO, hash)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-12-16 13:41:55 +00:00
|
|
|
m.emitNotification(ic, contractDestroyNotificationName, hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
return stackitem.Null{}
|
|
|
|
}
|
|
|
|
|
2020-12-16 13:41:55 +00:00
|
|
|
// Destroy drops given contract from DAO along with its storage. It doesn't emit notification.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) Destroy(d *dao.Simple, hash util.Uint160) error {
|
2020-12-13 15:26:35 +00:00
|
|
|
contract, err := m.GetContract(d, hash)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-07 09:03:37 +00:00
|
|
|
key := MakeContractKey(hash)
|
2022-02-16 14:48:15 +00:00
|
|
|
d.DeleteStorageItem(m.ID, key)
|
|
|
|
d.DeleteContractID(contract.ID)
|
2022-03-31 15:14:11 +00:00
|
|
|
|
|
|
|
d.Seek(contract.ID, storage.SeekRange{}, func(k, _ []byte) bool {
|
|
|
|
d.DeleteStorageItem(contract.ID, k)
|
|
|
|
return true
|
|
|
|
})
|
2020-12-15 10:53:35 +00:00
|
|
|
m.markUpdated(hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-16 13:11:12 +00:00
|
|
|
func (m *Management) getMinimumDeploymentFee(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2022-03-11 08:34:37 +00:00
|
|
|
return stackitem.NewBigInteger(big.NewInt(m.minimumDeploymentFee(ic.DAO)))
|
2020-12-16 13:11:12 +00:00
|
|
|
}
|
|
|
|
|
2022-03-11 08:34:37 +00:00
|
|
|
// minimumDeploymentFee returns the minimum required fee for contract deploy.
|
|
|
|
func (m *Management) minimumDeploymentFee(dao *dao.Simple) int64 {
|
2021-02-09 09:26:25 +00:00
|
|
|
return getIntWithKey(m.ID, dao, keyMinimumDeploymentFee)
|
2020-12-16 13:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Management) setMinimumDeploymentFee(ic *interop.Context, args []stackitem.Item) stackitem.Item {
|
2021-05-12 16:27:02 +00:00
|
|
|
value := toBigInt(args[0])
|
|
|
|
if value.Sign() < 0 {
|
|
|
|
panic("MinimumDeploymentFee cannot be negative")
|
2020-12-16 13:11:12 +00:00
|
|
|
}
|
2021-01-21 12:05:15 +00:00
|
|
|
if !m.NEO.checkCommittee(ic) {
|
2021-01-28 15:01:30 +00:00
|
|
|
panic("invalid committee signature")
|
2020-12-16 13:11:12 +00:00
|
|
|
}
|
2022-02-16 14:48:15 +00:00
|
|
|
ic.DAO.PutStorageItem(m.ID, keyMinimumDeploymentFee, bigint.ToBytes(value))
|
2021-01-28 15:01:30 +00:00
|
|
|
return stackitem.Null{}
|
2020-12-16 13:11:12 +00:00
|
|
|
}
|
|
|
|
|
2021-01-28 13:31:50 +00:00
|
|
|
func (m *Management) callDeploy(ic *interop.Context, cs *state.Contract, data stackitem.Item, isUpdate bool) {
|
|
|
|
md := cs.Manifest.ABI.GetMethod(manifest.MethodDeploy, 2)
|
2020-12-13 15:26:35 +00:00
|
|
|
if md != nil {
|
2020-12-29 10:44:07 +00:00
|
|
|
err := contract.CallFromNative(ic, m.Hash, cs, manifest.MethodDeploy,
|
2021-01-28 13:31:50 +00:00
|
|
|
[]stackitem.Item{data, stackitem.NewBool(isUpdate)}, false)
|
2020-12-13 15:26:35 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func contractToStack(cs *state.Contract) stackitem.Item {
|
|
|
|
si, err := cs.ToStackItem()
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("contract to stack item: %w", err))
|
|
|
|
}
|
|
|
|
return si
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:28:00 +00:00
|
|
|
// Metadata implements Contract interface.
|
|
|
|
func (m *Management) Metadata() *interop.ContractMD {
|
|
|
|
return &m.ContractMD
|
|
|
|
}
|
|
|
|
|
2021-11-16 10:28:59 +00:00
|
|
|
// updateContractCache saves contract in the common and NEP-related caches. It's
|
|
|
|
// an internal method that must be called with m.mtx lock taken.
|
|
|
|
func (m *Management) updateContractCache(cs *state.Contract) {
|
|
|
|
m.contracts[cs.Hash] = cs
|
|
|
|
if cs.Manifest.IsStandardSupported(manifest.NEP11StandardName) {
|
|
|
|
m.nep11[cs.Hash] = struct{}{}
|
|
|
|
}
|
|
|
|
if cs.Manifest.IsStandardSupported(manifest.NEP17StandardName) {
|
|
|
|
m.nep17[cs.Hash] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:28:00 +00:00
|
|
|
// OnPersist implements Contract interface.
|
|
|
|
func (m *Management) OnPersist(ic *interop.Context) error {
|
|
|
|
for _, native := range ic.Natives {
|
|
|
|
md := native.Metadata()
|
2021-03-11 11:39:51 +00:00
|
|
|
history := md.UpdateHistory
|
|
|
|
if len(history) == 0 || history[0] != ic.Block.Index {
|
|
|
|
continue
|
|
|
|
}
|
2020-12-08 15:28:00 +00:00
|
|
|
|
|
|
|
cs := &state.Contract{
|
2021-02-09 09:29:41 +00:00
|
|
|
ContractBase: md.ContractBase,
|
2020-12-08 15:28:00 +00:00
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
err := m.PutContractState(ic.DAO, cs)
|
|
|
|
if err != nil {
|
2020-12-08 15:28:00 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := native.Initialize(ic); err != nil {
|
|
|
|
return fmt.Errorf("initializing %s native contract: %w", md.Name, err)
|
|
|
|
}
|
2020-12-15 10:53:35 +00:00
|
|
|
m.mtx.Lock()
|
2021-11-16 10:28:59 +00:00
|
|
|
m.updateContractCache(cs)
|
2020-12-15 10:53:35 +00:00
|
|
|
m.mtx.Unlock()
|
2020-12-08 15:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-15 10:53:35 +00:00
|
|
|
// InitializeCache initializes contract cache with the proper values from storage.
|
|
|
|
// Cache initialisation should be done apart from Initialize because Initialize is
|
|
|
|
// called only when deploying native contracts.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) InitializeCache(d *dao.Simple) error {
|
2020-12-15 10:53:35 +00:00
|
|
|
m.mtx.Lock()
|
|
|
|
defer m.mtx.Unlock()
|
|
|
|
|
|
|
|
var initErr error
|
2022-01-17 17:41:51 +00:00
|
|
|
d.Seek(m.ID, storage.SeekRange{Prefix: []byte{prefixContract}}, func(_, v []byte) bool {
|
2021-07-17 15:37:33 +00:00
|
|
|
var cs = new(state.Contract)
|
|
|
|
initErr = stackitem.DeserializeConvertible(v, cs)
|
|
|
|
if initErr != nil {
|
2022-01-17 17:41:51 +00:00
|
|
|
return false
|
2020-12-15 10:53:35 +00:00
|
|
|
}
|
2021-11-16 10:28:59 +00:00
|
|
|
m.updateContractCache(cs)
|
2022-01-17 17:41:51 +00:00
|
|
|
return true
|
2020-12-15 10:53:35 +00:00
|
|
|
})
|
|
|
|
return initErr
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:28:00 +00:00
|
|
|
// PostPersist implements Contract interface.
|
2020-12-15 10:53:35 +00:00
|
|
|
func (m *Management) PostPersist(ic *interop.Context) error {
|
|
|
|
m.mtx.Lock()
|
|
|
|
for h, cs := range m.contracts {
|
|
|
|
if cs != nil {
|
|
|
|
continue
|
|
|
|
}
|
2021-11-16 10:28:59 +00:00
|
|
|
delete(m.nep11, h)
|
|
|
|
delete(m.nep17, h)
|
2020-12-15 10:53:35 +00:00
|
|
|
newCs, err := m.getContractFromDAO(ic.DAO, h)
|
|
|
|
if err != nil {
|
|
|
|
// Contract was destroyed.
|
|
|
|
delete(m.contracts, h)
|
|
|
|
continue
|
|
|
|
}
|
2021-11-16 10:28:59 +00:00
|
|
|
m.updateContractCache(newCs)
|
2020-12-15 10:53:35 +00:00
|
|
|
}
|
|
|
|
m.mtx.Unlock()
|
2020-12-08 15:28:00 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-16 10:28:59 +00:00
|
|
|
// GetNEP11Contracts returns hashes of all deployed contracts that support NEP-11 standard. The list
|
|
|
|
// is updated every PostPersist, so until PostPersist is called, the result for the previous block
|
|
|
|
// is returned.
|
|
|
|
func (m *Management) GetNEP11Contracts() []util.Uint160 {
|
|
|
|
m.mtx.RLock()
|
|
|
|
result := make([]util.Uint160, 0, len(m.nep11))
|
|
|
|
for h := range m.nep11 {
|
|
|
|
result = append(result, h)
|
|
|
|
}
|
|
|
|
m.mtx.RUnlock()
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2021-11-18 13:37:42 +00:00
|
|
|
// GetNEP17Contracts returns hashes of all deployed contracts that support NEP-17 standard. The list
|
2021-07-23 12:52:30 +00:00
|
|
|
// is updated every PostPersist, so until PostPersist is called, the result for the previous block
|
|
|
|
// is returned.
|
|
|
|
func (m *Management) GetNEP17Contracts() []util.Uint160 {
|
|
|
|
m.mtx.RLock()
|
|
|
|
result := make([]util.Uint160, 0, len(m.nep17))
|
|
|
|
for h := range m.nep17 {
|
|
|
|
result = append(result, h)
|
|
|
|
}
|
|
|
|
m.mtx.RUnlock()
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:28:00 +00:00
|
|
|
// Initialize implements Contract interface.
|
2020-12-16 13:11:12 +00:00
|
|
|
func (m *Management) Initialize(ic *interop.Context) error {
|
2022-02-16 14:48:15 +00:00
|
|
|
setIntWithKey(m.ID, ic.DAO, keyMinimumDeploymentFee, defaultMinimumDeploymentFee)
|
|
|
|
setIntWithKey(m.ID, ic.DAO, keyNextAvailableID, 1)
|
|
|
|
return nil
|
2020-12-08 15:28:00 +00:00
|
|
|
}
|
2020-12-13 15:26:35 +00:00
|
|
|
|
|
|
|
// PutContractState saves given contract state into given DAO.
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) PutContractState(d *dao.Simple, cs *state.Contract) error {
|
2021-10-07 09:03:37 +00:00
|
|
|
key := MakeContractKey(cs.Hash)
|
2021-07-17 15:37:33 +00:00
|
|
|
if err := putConvertibleToDAO(m.ID, d, key, cs); err != nil {
|
2020-12-13 15:26:35 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-12-15 10:53:35 +00:00
|
|
|
m.markUpdated(cs.Hash)
|
2020-12-13 15:26:35 +00:00
|
|
|
if cs.UpdateCounter != 0 { // Update.
|
|
|
|
return nil
|
|
|
|
}
|
2022-02-16 14:48:15 +00:00
|
|
|
d.PutContractID(cs.ID, cs.Hash)
|
|
|
|
return nil
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 15:04:47 +00:00
|
|
|
func (m *Management) getNextContractID(d *dao.Simple) (int32, error) {
|
2021-02-09 09:26:25 +00:00
|
|
|
si := d.GetStorageItem(m.ID, keyNextAvailableID)
|
2021-02-02 15:46:43 +00:00
|
|
|
if si == nil {
|
|
|
|
return 0, errors.New("nextAvailableID is not initialized")
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
2021-03-05 14:06:54 +00:00
|
|
|
id := bigint.FromBytes(si)
|
2020-12-13 15:26:35 +00:00
|
|
|
ret := int32(id.Int64())
|
2021-02-02 15:46:43 +00:00
|
|
|
id.Add(id, intOne)
|
2021-03-05 14:06:54 +00:00
|
|
|
si = bigint.ToPreallocatedBytes(id, si)
|
2022-02-16 14:48:15 +00:00
|
|
|
d.PutStorageItem(m.ID, keyNextAvailableID, si)
|
|
|
|
return ret, nil
|
2020-12-13 15:26:35 +00:00
|
|
|
}
|
2020-12-16 13:41:55 +00:00
|
|
|
|
|
|
|
func (m *Management) emitNotification(ic *interop.Context, name string, hash util.Uint160) {
|
|
|
|
ne := state.NotificationEvent{
|
|
|
|
ScriptHash: m.Hash,
|
|
|
|
Name: name,
|
|
|
|
Item: stackitem.NewArray([]stackitem.Item{addrToStackItem(&hash)}),
|
|
|
|
}
|
|
|
|
ic.Notifications = append(ic.Notifications, ne)
|
|
|
|
}
|
2021-02-09 18:42:39 +00:00
|
|
|
|
|
|
|
func checkScriptAndMethods(script []byte, methods []manifest.Method) error {
|
|
|
|
l := len(script)
|
|
|
|
offsets := bitfield.New(l)
|
|
|
|
for i := range methods {
|
|
|
|
if methods[i].Offset >= l {
|
|
|
|
return errors.New("out of bounds method offset")
|
|
|
|
}
|
|
|
|
offsets.Set(methods[i].Offset)
|
|
|
|
}
|
|
|
|
return vm.IsScriptCorrect(script, offsets)
|
|
|
|
}
|