2019-10-11 14:00:11 +00: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 (
|
2020-04-08 10:35:39 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop"
|
2020-11-09 14:26:23 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/binary"
|
2020-07-27 08:06:06 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/callback"
|
2020-09-21 14:00:33 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/contract"
|
2020-03-18 09:41:09 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/crypto"
|
2020-04-08 11:08:43 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/enumerator"
|
2020-08-13 07:41:33 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/interopnames"
|
2020-04-08 11:08:43 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/iterator"
|
2020-06-11 14:17:15 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/json"
|
2020-04-13 12:56:41 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/interop/runtime"
|
2020-03-19 15:52:37 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/native"
|
2020-06-10 14:21:26 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm"
|
2019-10-11 14:00:11 +00:00
|
|
|
)
|
|
|
|
|
2020-04-07 09:54:43 +00:00
|
|
|
// SpawnVM returns a VM with script getter and interop functions set
|
|
|
|
// up for current blockchain.
|
2020-04-08 10:35:39 +00:00
|
|
|
func SpawnVM(ic *interop.Context) *vm.VM {
|
2020-07-28 13:38:00 +00:00
|
|
|
vm := ic.SpawnVM()
|
|
|
|
ic.Functions = [][]interop.Function{systemInterops, neoInterops}
|
2020-04-07 09:54:43 +00:00
|
|
|
return vm
|
|
|
|
}
|
|
|
|
|
2019-12-18 16:49:56 +00:00
|
|
|
// All lists are sorted, keep 'em this way, please.
|
2020-04-08 10:35:39 +00:00
|
|
|
var systemInterops = []interop.Function{
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemBinaryAtoi, Func: binary.Atoi, Price: 1 << 12, ParamCount: 2},
|
|
|
|
{Name: interopnames.SystemBinaryBase58Decode, Func: binary.DecodeBase58, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBinaryBase58Encode, Func: binary.EncodeBase58, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBinaryBase64Decode, Func: binary.DecodeBase64, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBinaryBase64Encode, Func: binary.EncodeBase64, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBinaryDeserialize, Func: binary.Deserialize, Price: 1 << 14, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBinaryItoa, Func: binary.Itoa, Price: 1 << 12, ParamCount: 2},
|
|
|
|
{Name: interopnames.SystemBinarySerialize, Func: binary.Serialize, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemBlockchainGetBlock, Func: bcGetBlock, Price: 1 << 16,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, ParamCount: 1},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemBlockchainGetHeight, Func: bcGetHeight, Price: 1 << 4,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemBlockchainGetTransaction, Func: bcGetTransaction, Price: 1 << 15,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, ParamCount: 1},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemBlockchainGetTransactionFromBlock, Func: bcGetTransactionFromBlock, Price: 1 << 15,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, ParamCount: 2},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemBlockchainGetTransactionHeight, Func: bcGetTransactionHeight, Price: 1 << 15,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, ParamCount: 1},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemCallbackCreate, Func: callback.Create, Price: 1 << 4, ParamCount: 3, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemCallbackCreateFromMethod, Func: callback.CreateFromMethod, Price: 1 << 15, ParamCount: 2, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemCallbackCreateFromSyscall, Func: callback.CreateFromSyscall, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemCallbackInvoke, Func: callback.Invoke, Price: 1 << 15, ParamCount: 2, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemContractCall, Func: contract.Call, Price: 1 << 15,
|
2020-07-28 14:15:23 +00:00
|
|
|
RequiredFlags: smartcontract.AllowCall, ParamCount: 3, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemContractCallEx, Func: contract.CallEx, Price: 1 << 15,
|
2020-07-28 14:15:23 +00:00
|
|
|
RequiredFlags: smartcontract.AllowCall, ParamCount: 4, DisallowCallback: true},
|
2020-12-13 16:10:59 +00:00
|
|
|
{Name: interopnames.SystemContractCallNative, Func: native.Call, Price: 0, ParamCount: 1, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemContractCreateStandardAccount, Func: contractCreateStandardAccount, Price: 1 << 8, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemContractIsStandard, Func: contractIsStandard, Price: 1 << 10, RequiredFlags: smartcontract.ReadStates, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemContractGetCallFlags, Func: contractGetCallFlags, Price: 1 << 10, DisallowCallback: true},
|
2020-12-15 13:21:00 +00:00
|
|
|
{Name: interopnames.SystemContractNativeOnPersist, Func: native.OnPersist, Price: 0, RequiredFlags: smartcontract.WriteStates, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemContractNativePostPersist, Func: native.PostPersist, Price: 0, RequiredFlags: smartcontract.WriteStates, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemEnumeratorConcat, Func: enumerator.Concat, Price: 1 << 4, ParamCount: 2, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemEnumeratorCreate, Func: enumerator.Create, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemEnumeratorNext, Func: enumerator.Next, Price: 1 << 15, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemEnumeratorValue, Func: enumerator.Value, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemIteratorConcat, Func: iterator.Concat, Price: 1 << 4, ParamCount: 2, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemIteratorCreate, Func: iterator.Create, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemIteratorKey, Func: iterator.Key, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemIteratorKeys, Func: iterator.Keys, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemIteratorValues, Func: iterator.Values, Price: 1 << 4, ParamCount: 1, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemJSONDeserialize, Func: json.Deserialize, Price: 1 << 14, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemJSONSerialize, Func: json.Serialize, Price: 1 << 12, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemRuntimeCheckWitness, Func: runtime.CheckWitness, Price: 1 << 10,
|
2020-08-24 10:18:02 +00:00
|
|
|
RequiredFlags: smartcontract.NoneFlag, ParamCount: 1},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemRuntimeGasLeft, Func: runtime.GasLeft, Price: 1 << 4},
|
|
|
|
{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},
|
|
|
|
{Name: interopnames.SystemRuntimeGetNotifications, Func: runtime.GetNotifications, Price: 1 << 8, ParamCount: 1},
|
|
|
|
{Name: interopnames.SystemRuntimeGetScriptContainer, Func: engineGetScriptContainer, Price: 1 << 3},
|
|
|
|
{Name: interopnames.SystemRuntimeGetTime, Func: runtime.GetTime, Price: 1 << 3, RequiredFlags: smartcontract.ReadStates},
|
|
|
|
{Name: interopnames.SystemRuntimeGetTrigger, Func: runtime.GetTrigger, Price: 1 << 3},
|
|
|
|
{Name: interopnames.SystemRuntimeLog, Func: runtime.Log, Price: 1 << 15, RequiredFlags: smartcontract.AllowNotify,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 1, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemRuntimeNotify, Func: runtime.Notify, Price: 1 << 15, RequiredFlags: smartcontract.AllowNotify,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 2, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemRuntimePlatform, Func: runtime.Platform, Price: 1 << 3},
|
|
|
|
{Name: interopnames.SystemStorageDelete, Func: storageDelete, Price: 0,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.WriteStates, ParamCount: 2, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemStorageFind, Func: storageFind, Price: 1 << 15, RequiredFlags: smartcontract.ReadStates,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 2, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemStorageGet, Func: storageGet, Price: 1 << 15, RequiredFlags: smartcontract.ReadStates,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 2, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemStorageGetContext, Func: storageGetContext, Price: 1 << 4,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemStorageGetReadOnlyContext, Func: storageGetReadOnlyContext, Price: 1 << 4,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, DisallowCallback: true},
|
|
|
|
{Name: interopnames.SystemStoragePut, Func: storagePut, Price: 0, RequiredFlags: smartcontract.WriteStates,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 3, DisallowCallback: true}, // These don't have static price in C# code.
|
2020-12-11 07:34:01 +00:00
|
|
|
{Name: interopnames.SystemStoragePutEx, Func: storagePutEx, Price: 0, RequiredFlags: smartcontract.WriteStates,
|
2020-07-28 14:15:23 +00:00
|
|
|
ParamCount: 4, DisallowCallback: true},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.SystemStorageAsReadOnly, Func: storageContextAsReadOnly, Price: 1 << 4,
|
2020-12-11 07:34:01 +00:00
|
|
|
RequiredFlags: smartcontract.ReadStates, ParamCount: 1, DisallowCallback: true},
|
2019-12-18 16:49:56 +00:00
|
|
|
}
|
2019-10-11 14:00:11 +00:00
|
|
|
|
2020-04-08 10:35:39 +00:00
|
|
|
var neoInterops = []interop.Function{
|
2020-08-14 10:50:52 +00:00
|
|
|
{Name: interopnames.NeoCryptoVerifyWithECDsaSecp256r1, Func: crypto.ECDSASecp256r1Verify,
|
2020-07-28 10:17:38 +00:00
|
|
|
Price: crypto.ECDSAVerifyPrice, ParamCount: 3},
|
2020-08-14 10:50:52 +00:00
|
|
|
{Name: interopnames.NeoCryptoVerifyWithECDsaSecp256k1, Func: crypto.ECDSASecp256k1Verify,
|
2020-07-28 10:17:38 +00:00
|
|
|
Price: crypto.ECDSAVerifyPrice, ParamCount: 3},
|
2020-08-14 10:50:52 +00:00
|
|
|
{Name: interopnames.NeoCryptoCheckMultisigWithECDsaSecp256r1, Func: crypto.ECDSASecp256r1CheckMultisig, Price: 0, ParamCount: 3},
|
|
|
|
{Name: interopnames.NeoCryptoCheckMultisigWithECDsaSecp256k1, Func: crypto.ECDSASecp256k1CheckMultisig, Price: 0, ParamCount: 3},
|
2020-12-11 12:22:49 +00:00
|
|
|
{Name: interopnames.NeoCryptoSHA256, Func: crypto.Sha256, Price: 1 << 15, ParamCount: 1},
|
|
|
|
{Name: interopnames.NeoCryptoRIPEMD160, Func: crypto.RipeMD160, Price: 1 << 15, ParamCount: 1},
|
2019-12-18 16:49:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// initIDinInteropsSlice initializes IDs from names in one given
|
2020-04-08 10:35:39 +00:00
|
|
|
// Function slice and then sorts it.
|
|
|
|
func initIDinInteropsSlice(iops []interop.Function) {
|
2019-12-18 16:49:56 +00:00
|
|
|
for i := range iops {
|
2020-08-13 07:41:33 +00:00
|
|
|
iops[i].ID = interopnames.ToID([]byte(iops[i].Name))
|
2019-10-11 14:00:11 +00:00
|
|
|
}
|
2020-07-28 13:38:00 +00:00
|
|
|
interop.Sort(iops)
|
2019-12-18 16:49:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// init initializes IDs in the global interop slices.
|
|
|
|
func init() {
|
|
|
|
initIDinInteropsSlice(systemInterops)
|
|
|
|
initIDinInteropsSlice(neoInterops)
|
2019-10-11 14:00:11 +00:00
|
|
|
}
|