2018-03-30 16:15:06 +00:00
|
|
|
package vm
|
|
|
|
|
2018-04-10 09:45:31 +00:00
|
|
|
import (
|
2019-12-18 16:49:56 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/binary"
|
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"
|
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 {
|
|
|
|
Func InteropFunc
|
|
|
|
Price int
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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{
|
|
|
|
{InteropNameToID([]byte("Neo.Runtime.Log")),
|
|
|
|
InteropFuncPrice{runtimeLog, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Runtime.Notify")),
|
|
|
|
InteropFuncPrice{runtimeNotify, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Runtime.Serialize")),
|
|
|
|
InteropFuncPrice{RuntimeSerialize, 1}},
|
|
|
|
{InteropNameToID([]byte("System.Runtime.Serialize")),
|
|
|
|
InteropFuncPrice{RuntimeSerialize, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Runtime.Deserialize")),
|
|
|
|
InteropFuncPrice{RuntimeDeserialize, 1}},
|
|
|
|
{InteropNameToID([]byte("System.Runtime.Deserialize")),
|
|
|
|
InteropFuncPrice{RuntimeDeserialize, 1}},
|
2019-11-13 11:34:03 +00:00
|
|
|
{InteropNameToID([]byte("Neo.Enumerator.Create")),
|
|
|
|
InteropFuncPrice{EnumeratorCreate, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Enumerator.Next")),
|
|
|
|
InteropFuncPrice{EnumeratorNext, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Enumerator.Concat")),
|
|
|
|
InteropFuncPrice{EnumeratorConcat, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Enumerator.Value")),
|
|
|
|
InteropFuncPrice{EnumeratorValue, 1}},
|
2019-11-13 12:29:27 +00:00
|
|
|
{InteropNameToID([]byte("Neo.Iterator.Create")),
|
|
|
|
InteropFuncPrice{IteratorCreate, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Iterator.Concat")),
|
|
|
|
InteropFuncPrice{IteratorConcat, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Iterator.Key")),
|
|
|
|
InteropFuncPrice{IteratorKey, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Iterator.Keys")),
|
|
|
|
InteropFuncPrice{IteratorKeys, 1}},
|
|
|
|
{InteropNameToID([]byte("Neo.Iterator.Values")),
|
|
|
|
InteropFuncPrice{IteratorValues, 1}},
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// InteropNameToID returns an identificator of the method based on its name.
|
|
|
|
func InteropNameToID(name []byte) uint32 {
|
|
|
|
h := sha256.Sum256(name)
|
|
|
|
return binary.LittleEndian.Uint32(h[:4])
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// runtimeLog handles the syscall "Neo.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
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// runtimeNotify handles the syscall "Neo.Runtime.Notify" for printing and logging stuff.
|
2018-04-10 09:45:31 +00:00
|
|
|
func runtimeNotify(vm *VM) error {
|
|
|
|
item := vm.Estack().Pop()
|
2019-10-03 13:12:24 +00:00
|
|
|
fmt.Printf("NEO-GO-VM (notify) > %s\n", 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
|
|
|
|
2019-11-05 14:10:52 +00:00
|
|
|
// RuntimeSerialize handles syscalls System.Runtime.Serialize and Neo.Runtime.Serialize.
|
|
|
|
func RuntimeSerialize(vm *VM) error {
|
2019-11-05 08:36:13 +00:00
|
|
|
item := vm.Estack().Pop()
|
2020-02-07 09:16:47 +00:00
|
|
|
data, err := SerializeItem(item.value)
|
2019-11-05 08:36:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if len(data) > MaxItemSize {
|
|
|
|
return errors.New("too big item")
|
|
|
|
}
|
|
|
|
|
|
|
|
vm.Estack().PushVal(data)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-05 14:10:52 +00:00
|
|
|
// RuntimeDeserialize handles syscalls System.Runtime.Deserialize and Neo.Runtime.Deserialize.
|
|
|
|
func RuntimeDeserialize(vm *VM) error {
|
2019-11-05 08:36:13 +00:00
|
|
|
data := vm.Estack().Pop().Bytes()
|
|
|
|
|
2020-02-07 09:16:47 +00:00
|
|
|
item, err := 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
|
|
|
|
|
|
|
// EnumeratorCreate handles syscall Neo.Enumerator.Create.
|
|
|
|
func EnumeratorCreate(v *VM) error {
|
|
|
|
data := v.Estack().Pop().Array()
|
|
|
|
v.Estack().Push(&Element{
|
|
|
|
value: NewInteropItem(&arrayWrapper{
|
|
|
|
index: -1,
|
|
|
|
value: data,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnumeratorNext handles syscall Neo.Enumerator.Next.
|
|
|
|
func EnumeratorNext(v *VM) error {
|
|
|
|
iop := v.Estack().Pop().Interop()
|
|
|
|
arr := iop.value.(enumerator)
|
|
|
|
v.Estack().PushVal(arr.Next())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnumeratorValue handles syscall Neo.Enumerator.Value.
|
|
|
|
func EnumeratorValue(v *VM) error {
|
|
|
|
iop := v.Estack().Pop().Interop()
|
|
|
|
arr := iop.value.(enumerator)
|
|
|
|
v.Estack().Push(&Element{value: arr.Value()})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnumeratorConcat handles syscall Neo.Enumerator.Concat.
|
|
|
|
func EnumeratorConcat(v *VM) error {
|
|
|
|
iop1 := v.Estack().Pop().Interop()
|
|
|
|
arr1 := iop1.value.(enumerator)
|
|
|
|
iop2 := v.Estack().Pop().Interop()
|
|
|
|
arr2 := iop2.value.(enumerator)
|
|
|
|
|
|
|
|
v.Estack().Push(&Element{
|
|
|
|
value: NewInteropItem(&concatEnum{
|
|
|
|
current: arr1,
|
|
|
|
second: arr2,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-11-13 12:29:27 +00:00
|
|
|
|
|
|
|
// IteratorCreate handles syscall Neo.Iterator.Create.
|
|
|
|
func IteratorCreate(v *VM) error {
|
|
|
|
data := v.Estack().Pop()
|
2019-12-26 11:34:15 +00:00
|
|
|
var item StackItem
|
2019-11-13 12:29:27 +00:00
|
|
|
switch t := data.value.(type) {
|
|
|
|
case *ArrayItem, *StructItem:
|
2019-12-26 11:34:15 +00:00
|
|
|
item = NewInteropItem(&arrayWrapper{
|
2019-11-13 12:29:27 +00:00
|
|
|
index: -1,
|
|
|
|
value: t.Value().([]StackItem),
|
2019-12-26 11:34:15 +00:00
|
|
|
})
|
2019-11-13 12:29:27 +00:00
|
|
|
case *MapItem:
|
2019-12-26 11:34:15 +00:00
|
|
|
item = NewMapIterator(t.value)
|
2019-11-13 12:29:27 +00:00
|
|
|
default:
|
|
|
|
return errors.New("non-iterable type")
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
func NewMapIterator(m map[interface{}]StackItem) *InteropItem {
|
|
|
|
keys := make([]interface{}, 0, len(m))
|
|
|
|
for k := range m {
|
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
return NewInteropItem(&mapWrapper{
|
|
|
|
index: -1,
|
|
|
|
keys: keys,
|
|
|
|
m: m,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-13 12:29:27 +00:00
|
|
|
// IteratorConcat handles syscall Neo.Iterator.Concat.
|
|
|
|
func IteratorConcat(v *VM) error {
|
|
|
|
iop1 := v.Estack().Pop().Interop()
|
|
|
|
iter1 := iop1.value.(iterator)
|
|
|
|
iop2 := v.Estack().Pop().Interop()
|
|
|
|
iter2 := iop2.value.(iterator)
|
|
|
|
|
|
|
|
v.Estack().Push(&Element{value: NewInteropItem(
|
|
|
|
&concatIter{
|
|
|
|
current: iter1,
|
|
|
|
second: iter2,
|
|
|
|
},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IteratorKey handles syscall Neo.Iterator.Key.
|
|
|
|
func IteratorKey(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
|
|
|
iter := iop.value.(iterator)
|
|
|
|
v.Estack().Push(&Element{value: iter.Key()})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IteratorKeys handles syscall Neo.Iterator.Keys.
|
|
|
|
func IteratorKeys(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
|
|
|
iter := iop.value.(iterator)
|
|
|
|
v.Estack().Push(&Element{value: NewInteropItem(
|
|
|
|
&keysWrapper{iter},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IteratorValues handles syscall Neo.Iterator.Values.
|
|
|
|
func IteratorValues(v *VM) error {
|
|
|
|
iop := v.estack.Pop().Interop()
|
|
|
|
iter := iop.value.(iterator)
|
|
|
|
v.Estack().Push(&Element{value: NewInteropItem(
|
|
|
|
&valuesWrapper{iter},
|
|
|
|
)})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|