2019-10-11 17:00:11 +03:00
|
|
|
package core
|
|
|
|
|
|
|
|
/*
|
|
|
|
Interops are designed to run under VM's execute() panic protection, so it's OK
|
|
|
|
for them to do things like
|
|
|
|
smth := v.Estack().Pop().Bytes()
|
|
|
|
even though technically Pop() can return a nil pointer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import (
|
2021-02-05 11:25:22 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/fee"
|
2020-04-08 13:35:39 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop"
|
2020-09-21 17:00:33 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/contract"
|
2020-03-18 12:41:09 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/crypto"
|
2020-08-13 10:41:33 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/interopnames"
|
2020-04-08 14:08:43 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/iterator"
|
2020-04-13 15:56:41 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/runtime"
|
2020-03-19 18:52:37 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native"
|
2020-12-29 13:45:49 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag"
|
2020-03-03 17:21:42 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
2019-10-11 17:00:11 +03:00
|
|
|
)
|
|
|
|
|
2020-04-07 12:54:43 +03:00
|
|
|
// SpawnVM returns a VM with script getter and interop functions set
|
|
|
|
// up for current blockchain.
|
2020-04-08 13:35:39 +03:00
|
|
|
func SpawnVM(ic *interop.Context) *vm.VM {
|
2020-07-28 16:38:00 +03:00
|
|
|
vm := ic.SpawnVM()
|
2021-05-11 17:40:03 +03:00
|
|
|
ic.Functions = systemInterops
|
2020-04-07 12:54:43 +03:00
|
|
|
return vm
|
|
|
|
}
|
|
|
|
|
2019-12-18 19:49:56 +03:00
|
|
|
// All lists are sorted, keep 'em this way, please.
|
2020-04-08 13:35:39 +03:00
|
|
|
var systemInterops = []interop.Function{
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemContractCall, Func: contract.Call, Price: 1 << 15,
|
2021-02-25 18:12:36 +03:00
|
|
|
RequiredFlags: callflag.ReadStates | callflag.AllowCall, ParamCount: 4},
|
2020-12-30 12:26:50 +03:00
|
|
|
{Name: interopnames.SystemContractCallNative, Func: native.Call, Price: 0, ParamCount: 1},
|
2022-05-06 15:27:07 +03:00
|
|
|
{Name: interopnames.SystemContractCreateMultisigAccount, Func: contractCreateMultisigAccount, Price: 0, ParamCount: 2},
|
|
|
|
{Name: interopnames.SystemContractCreateStandardAccount, Func: contractCreateStandardAccount, Price: 0, ParamCount: 1},
|
2020-12-30 12:26:50 +03:00
|
|
|
{Name: interopnames.SystemContractGetCallFlags, Func: contractGetCallFlags, Price: 1 << 10},
|
2021-03-16 22:49:14 +03:00
|
|
|
{Name: interopnames.SystemContractNativeOnPersist, Func: native.OnPersist, Price: 0, RequiredFlags: callflag.States},
|
|
|
|
{Name: interopnames.SystemContractNativePostPersist, Func: native.PostPersist, Price: 0, RequiredFlags: callflag.States},
|
2021-05-11 17:40:03 +03:00
|
|
|
{Name: interopnames.SystemCryptoCheckMultisig, Func: crypto.ECDSASecp256r1CheckMultisig, Price: 0, ParamCount: 2},
|
|
|
|
{Name: interopnames.SystemCryptoCheckSig, Func: crypto.ECDSASecp256r1CheckSig, Price: fee.ECDSAVerifyPrice, ParamCount: 2},
|
2021-01-12 12:30:21 +03:00
|
|
|
{Name: interopnames.SystemIteratorNext, Func: iterator.Next, Price: 1 << 15, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemIteratorValue, Func: iterator.Value, Price: 1 << 4, ParamCount: 1},
|
2021-04-29 11:33:21 +03:00
|
|
|
{Name: interopnames.SystemRuntimeBurnGas, Func: runtime.BurnGas, Price: 1 << 4, ParamCount: 1},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeCheckWitness, Func: runtime.CheckWitness, Price: 1 << 10,
|
2020-12-29 13:45:49 +03:00
|
|
|
RequiredFlags: callflag.NoneFlag, ParamCount: 1},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGasLeft, Func: runtime.GasLeft, Price: 1 << 4},
|
2022-04-21 17:53:11 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetAddressVersion, Func: runtime.GetAddressVersion, Price: 1 << 3},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetCallingScriptHash, Func: runtime.GetCallingScriptHash, Price: 1 << 4},
|
|
|
|
{Name: interopnames.SystemRuntimeGetEntryScriptHash, Func: runtime.GetEntryScriptHash, Price: 1 << 4},
|
|
|
|
{Name: interopnames.SystemRuntimeGetExecutingScriptHash, Func: runtime.GetExecutingScriptHash, Price: 1 << 4},
|
|
|
|
{Name: interopnames.SystemRuntimeGetInvocationCounter, Func: runtime.GetInvocationCounter, Price: 1 << 4},
|
2021-07-06 14:20:25 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetNetwork, Func: runtime.GetNetwork, Price: 1 << 3},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetNotifications, Func: runtime.GetNotifications, Price: 1 << 8, ParamCount: 1},
|
2021-07-14 15:05:28 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetRandom, Func: runtime.GetRandom, Price: 1 << 4},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetScriptContainer, Func: engineGetScriptContainer, Price: 1 << 3},
|
2020-12-29 13:45:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetTime, Func: runtime.GetTime, Price: 1 << 3, RequiredFlags: callflag.ReadStates},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeGetTrigger, Func: runtime.GetTrigger, Price: 1 << 3},
|
2020-12-29 13:45:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeLog, Func: runtime.Log, Price: 1 << 15, RequiredFlags: callflag.AllowNotify,
|
2020-12-30 12:26:50 +03:00
|
|
|
ParamCount: 1},
|
2020-12-29 13:45:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimeNotify, Func: runtime.Notify, Price: 1 << 15, RequiredFlags: callflag.AllowNotify,
|
2020-12-30 12:26:50 +03:00
|
|
|
ParamCount: 2},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemRuntimePlatform, Func: runtime.Platform, Price: 1 << 3},
|
2021-03-19 18:57:00 +03:00
|
|
|
{Name: interopnames.SystemStorageDelete, Func: storageDelete, Price: 1 << 15,
|
2020-12-30 12:26:50 +03:00
|
|
|
RequiredFlags: callflag.WriteStates, ParamCount: 2},
|
2020-12-29 13:45:49 +03:00
|
|
|
{Name: interopnames.SystemStorageFind, Func: storageFind, Price: 1 << 15, RequiredFlags: callflag.ReadStates,
|
2021-03-04 18:12:42 +03:00
|
|
|
ParamCount: 3},
|
2020-12-29 13:45:49 +03:00
|
|
|
{Name: interopnames.SystemStorageGet, Func: storageGet, Price: 1 << 15, RequiredFlags: callflag.ReadStates,
|
2020-12-30 12:26:50 +03:00
|
|
|
ParamCount: 2},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemStorageGetContext, Func: storageGetContext, Price: 1 << 4,
|
2020-12-30 12:26:50 +03:00
|
|
|
RequiredFlags: callflag.ReadStates},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemStorageGetReadOnlyContext, Func: storageGetReadOnlyContext, Price: 1 << 4,
|
2020-12-30 12:26:50 +03:00
|
|
|
RequiredFlags: callflag.ReadStates},
|
2021-03-19 18:41:33 +03:00
|
|
|
{Name: interopnames.SystemStoragePut, Func: storagePut, Price: 1 << 15, RequiredFlags: callflag.WriteStates,
|
|
|
|
ParamCount: 3},
|
2020-12-11 15:22:49 +03:00
|
|
|
{Name: interopnames.SystemStorageAsReadOnly, Func: storageContextAsReadOnly, Price: 1 << 4,
|
2020-12-30 12:26:50 +03:00
|
|
|
RequiredFlags: callflag.ReadStates, ParamCount: 1},
|
2019-12-18 19:49:56 +03:00
|
|
|
}
|
2019-10-11 17:00:11 +03:00
|
|
|
|
2019-12-18 19:49:56 +03:00
|
|
|
// init initializes IDs in the global interop slices.
|
|
|
|
func init() {
|
2021-05-11 17:40:03 +03:00
|
|
|
for i := range systemInterops {
|
|
|
|
systemInterops[i].ID = interopnames.ToID([]byte(systemInterops[i].Name))
|
|
|
|
}
|
|
|
|
interop.Sort(systemInterops)
|
2019-10-11 17:00:11 +03:00
|
|
|
}
|