2018-03-30 16:15:06 +00:00
|
|
|
package vm
|
|
|
|
|
2018-04-10 09:45:31 +00:00
|
|
|
import (
|
2019-11-05 08:36:13 +00:00
|
|
|
"errors"
|
2018-04-10 09:45:31 +00:00
|
|
|
"fmt"
|
2019-12-18 16:49:56 +00:00
|
|
|
"sort"
|
2020-04-15 14:13:50 +00:00
|
|
|
|
2020-06-10 12:51:28 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
2020-04-15 14:13:50 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/emit"
|
2020-06-03 12:55:06 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2018-04-10 09:45:31 +00:00
|
|
|
)
|
2018-03-30 16:15:06 +00:00
|
|
|
|
|
|
|
// InteropFunc allows to hook into the VM.
|
|
|
|
type InteropFunc func(vm *VM) error
|
|
|
|
|
2019-12-18 16:49:56 +00:00
|
|
|
// InteropFuncPrice represents an interop function with a price.
|
|
|
|
type InteropFuncPrice struct {
|
2020-07-22 16:40:32 +00:00
|
|
|
Func InteropFunc
|
|
|
|
Price int64
|
|
|
|
RequiredFlags smartcontract.CallFlag
|
2019-12-18 16:49:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// interopIDFuncPrice adds an ID to the InteropFuncPrice.
|
|
|
|
type interopIDFuncPrice struct {
|
|
|
|
ID uint32
|
|
|
|
InteropFuncPrice
|
|
|
|
}
|
|
|
|
|
|
|
|
// InteropGetterFunc is a function that returns an interop function-price
|
|
|
|
// structure by the given interop ID.
|
|
|
|
type InteropGetterFunc func(uint32) *InteropFuncPrice
|
|
|
|
|
|
|
|
var defaultVMInterops = []interopIDFuncPrice{
|
2020-06-16 07:56:06 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Binary.Deserialize")),
|
|
|
|
InteropFuncPrice{Func: RuntimeDeserialize, Price: 500000}},
|
|
|
|
{emit.InteropNameToID([]byte("System.Binary.Serialize")),
|
|
|
|
InteropFuncPrice{Func: RuntimeSerialize, Price: 100000}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Runtime.Log")),
|
2020-06-19 09:33:33 +00:00
|
|
|
InteropFuncPrice{Func: runtimeLog, Price: 1000000, RequiredFlags: smartcontract.AllowNotify}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Runtime.Notify")),
|
2020-06-19 09:33:33 +00:00
|
|
|
InteropFuncPrice{Func: runtimeNotify, Price: 1000000, RequiredFlags: smartcontract.AllowNotify}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Enumerator.Create")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: EnumeratorCreate, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Enumerator.Next")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: EnumeratorNext, Price: 1000000}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Enumerator.Concat")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: EnumeratorConcat, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Enumerator.Value")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: EnumeratorValue, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Iterator.Create")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: IteratorCreate, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Iterator.Concat")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: IteratorConcat, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Iterator.Key")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: IteratorKey, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Iterator.Keys")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: IteratorKeys, Price: 400}},
|
2020-06-10 08:49:39 +00:00
|
|
|
{emit.InteropNameToID([]byte("System.Iterator.Values")),
|
2020-06-16 08:00:19 +00:00
|
|
|
InteropFuncPrice{Func: IteratorValues, Price: 400}},
|
2019-12-18 16:49:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getDefaultVMInterop(id uint32) *InteropFuncPrice {
|
|
|
|
n := sort.Search(len(defaultVMInterops), func(i int) bool {
|
|
|
|
return defaultVMInterops[i].ID >= id
|
|
|
|
})
|
|
|
|
if n < len(defaultVMInterops) && defaultVMInterops[n].ID == id {
|
|
|
|
return &defaultVMInterops[n].InteropFuncPrice
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// runtimeLog handles the syscall "System.Runtime.Log" for printing and logging stuff.
|
2018-04-10 09:45:31 +00:00
|
|
|
func runtimeLog(vm *VM) error {
|
|
|
|
item := vm.Estack().Pop()
|
2019-10-03 13:12:24 +00:00
|
|
|
fmt.Printf("NEO-GO-VM (log) > %s\n", item.Value())
|
2018-04-10 09:45:31 +00:00
|
|
|
return nil
|
2018-03-30 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// runtimeNotify handles the syscall "System.Runtime.Notify" for printing and logging stuff.
|
2018-04-10 09:45:31 +00:00
|
|
|
func runtimeNotify(vm *VM) error {
|
2020-06-29 08:25:32 +00:00
|
|
|
name := vm.Estack().Pop().Bytes()
|
2018-04-10 09:45:31 +00:00
|
|
|
item := vm.Estack().Pop()
|
2020-06-29 08:25:32 +00:00
|
|
|
fmt.Printf("NEO-GO-VM (notify) > [%s] %s\n", string(name), item.Value())
|
2018-04-10 09:45:31 +00:00
|
|
|
return nil
|
2018-03-30 16:15:06 +00:00
|
|
|
}
|
2019-11-05 08:36:13 +00:00
|
|
|
|
2020-06-16 07:56:06 +00:00
|
|
|
// RuntimeSerialize handles System.Binary.Serialize syscall.
|
2019-11-05 14:10:52 +00:00
|
|
|
func RuntimeSerialize(vm *VM) error {
|
2019-11-05 08:36:13 +00:00
|
|
|
item := vm.Estack().Pop()
|
2020-06-03 12:55:06 +00:00
|
|
|
data, err := stackitem.SerializeItem(item.value)
|
2019-11-05 08:36:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-06-11 13:31:31 +00:00
|
|
|
} else if len(data) > stackitem.MaxSize {
|
2019-11-05 08:36:13 +00:00
|
|
|
return errors.New("too big item")
|
|
|
|
}
|
|
|
|
|
|
|
|
vm.Estack().PushVal(data)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 07:56:06 +00:00
|
|
|
// RuntimeDeserialize handles System.Binary.Deserialize syscall.
|
2019-11-05 14:10:52 +00:00
|
|
|
func RuntimeDeserialize(vm *VM) error {
|
2019-11-05 08:36:13 +00:00
|
|
|
data := vm.Estack().Pop().Bytes()
|
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
item, err := stackitem.DeserializeItem(data)
|
2019-11-05 08:36:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
vm.Estack().Push(&Element{value: item})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-18 16:49:56 +00:00
|
|
|
|
|
|
|
// init sorts the global defaultVMInterops value.
|
|
|
|
func init() {
|
|
|
|
sort.Slice(defaultVMInterops, func(i, j int) bool {
|
|
|
|
return defaultVMInterops[i].ID < defaultVMInterops[j].ID
|
|
|
|
})
|
|
|
|
}
|
2019-11-13 11:34:03 +00:00
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// EnumeratorCreate handles syscall System.Enumerator.Create.
|
2019-11-13 11:34:03 +00:00
|
|
|
func EnumeratorCreate(v *VM) error {
|
2020-07-20 13:30:19 +00:00
|
|
|
var interop interface{}
|
|
|
|
switch t := v.Estack().Pop().value.(type) {
|
|
|
|
case *stackitem.Array, *stackitem.Struct:
|
|
|
|
interop = &arrayWrapper{
|
|
|
|
index: -1,
|
|
|
|
value: t.Value().([]stackitem.Item),
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
data, err := t.TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can not create enumerator from type %s: %v", t.Type(), err)
|
|
|
|
}
|
|
|
|
interop = &byteArrayWrapper{
|
2019-11-13 11:34:03 +00:00
|
|
|
index: -1,
|
|
|
|
value: data,
|
2020-07-20 13:30:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
v.Estack().Push(&Element{
|
|
|
|
value: stackitem.NewInterop(interop),
|
2019-11-13 11:34:03 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// EnumeratorNext handles syscall System.Enumerator.Next.
|
2019-11-13 11:34:03 +00:00
|
|
|
func EnumeratorNext(v *VM) error {
|
|
|
|
iop := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
arr := iop.Value().(enumerator)
|
2019-11-13 11:34:03 +00:00
|
|
|
v.Estack().PushVal(arr.Next())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// EnumeratorValue handles syscall System.Enumerator.Value.
|
2019-11-13 11:34:03 +00:00
|
|
|
func EnumeratorValue(v *VM) error {
|
|
|
|
iop := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
arr := iop.Value().(enumerator)
|
2019-11-13 11:34:03 +00:00
|
|
|
v.Estack().Push(&Element{value: arr.Value()})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// EnumeratorConcat handles syscall System.Enumerator.Concat.
|
2019-11-13 11:34:03 +00:00
|
|
|
func EnumeratorConcat(v *VM) error {
|
|
|
|
iop1 := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
arr1 := iop1.Value().(enumerator)
|
2019-11-13 11:34:03 +00:00
|
|
|
iop2 := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
arr2 := iop2.Value().(enumerator)
|
2019-11-13 11:34:03 +00:00
|
|
|
|
|
|
|
v.Estack().Push(&Element{
|
2020-06-03 12:55:06 +00:00
|
|
|
value: stackitem.NewInterop(&concatEnum{
|
2019-11-13 11:34:03 +00:00
|
|
|
current: arr1,
|
|
|
|
second: arr2,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-11-13 12:29:27 +00:00
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// IteratorCreate handles syscall System.Iterator.Create.
|
2019-11-13 12:29:27 +00:00
|
|
|
func IteratorCreate(v *VM) error {
|
|
|
|
data := v.Estack().Pop()
|
2020-06-03 12:55:06 +00:00
|
|
|
var item stackitem.Item
|
2019-11-13 12:29:27 +00:00
|
|
|
switch t := data.value.(type) {
|
2020-06-03 12:55:06 +00:00
|
|
|
case *stackitem.Array, *stackitem.Struct:
|
|
|
|
item = stackitem.NewInterop(&arrayWrapper{
|
2019-11-13 12:29:27 +00:00
|
|
|
index: -1,
|
2020-06-03 12:55:06 +00:00
|
|
|
value: t.Value().([]stackitem.Item),
|
2019-12-26 11:34:15 +00:00
|
|
|
})
|
2020-06-03 12:55:06 +00:00
|
|
|
case *stackitem.Map:
|
2020-03-31 10:30:38 +00:00
|
|
|
item = NewMapIterator(t)
|
2019-11-13 12:29:27 +00:00
|
|
|
default:
|
2020-07-21 10:14:16 +00:00
|
|
|
data, err := t.TryBytes()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("non-iterable type %s", t.Type())
|
|
|
|
}
|
|
|
|
item = stackitem.NewInterop(&byteArrayWrapper{
|
|
|
|
index: -1,
|
|
|
|
value: data,
|
|
|
|
})
|
2019-11-13 12:29:27 +00:00
|
|
|
}
|
|
|
|
|
2019-12-26 11:34:15 +00:00
|
|
|
v.Estack().Push(&Element{value: item})
|
2019-11-13 12:29:27 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-26 11:34:15 +00:00
|
|
|
// NewMapIterator returns new interop item containing iterator over m.
|
2020-06-03 12:55:06 +00:00
|
|
|
func NewMapIterator(m *stackitem.Map) *stackitem.Interop {
|
|
|
|
return stackitem.NewInterop(&mapWrapper{
|
2019-12-26 11:34:15 +00:00
|
|
|
index: -1,
|
2020-06-03 12:55:06 +00:00
|
|
|
m: m.Value().([]stackitem.MapElement),
|
2019-12-26 11:34:15 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// IteratorConcat handles syscall System.Iterator.Concat.
|
2019-11-13 12:29:27 +00:00
|
|
|
func IteratorConcat(v *VM) error {
|
|
|
|
iop1 := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
iter1 := iop1.Value().(iterator)
|
2019-11-13 12:29:27 +00:00
|
|
|
iop2 := v.Estack().Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
iter2 := iop2.Value().(iterator)
|
2019-11-13 12:29:27 +00:00
|
|
|
|
2020-06-03 12:55:06 +00:00
|
|
|
v.Estack().Push(&Element{value: stackitem.NewInterop(
|
2019-11-13 12:29:27 +00:00
|
|
|
&concatIter{
|
|
|
|
current: iter1,
|
|
|
|
second: iter2,
|
|
|
|
},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// IteratorKey handles syscall System.Iterator.Key.
|
2019-11-13 12:29:27 +00:00
|
|
|
func IteratorKey(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
iter := iop.Value().(iterator)
|
2019-11-13 12:29:27 +00:00
|
|
|
v.Estack().Push(&Element{value: iter.Key()})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// IteratorKeys handles syscall System.Iterator.Keys.
|
2019-11-13 12:29:27 +00:00
|
|
|
func IteratorKeys(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
iter := iop.Value().(iterator)
|
|
|
|
v.Estack().Push(&Element{value: stackitem.NewInterop(
|
2019-11-13 12:29:27 +00:00
|
|
|
&keysWrapper{iter},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-10 08:49:39 +00:00
|
|
|
// IteratorValues handles syscall System.Iterator.Values.
|
2019-11-13 12:29:27 +00:00
|
|
|
func IteratorValues(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
2020-06-03 12:55:06 +00:00
|
|
|
iter := iop.Value().(iterator)
|
|
|
|
v.Estack().Push(&Element{value: stackitem.NewInterop(
|
2019-11-13 12:29:27 +00:00
|
|
|
&valuesWrapper{iter},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|