forked from TrueCloudLab/neoneo-go
vm: check return value on context unload
When calling external contracts we expect exactly 1 value to be on stack. For methods returning nothing, `Null` value is pushed, otherwise it is an error.`
This commit is contained in:
parent
bbae7318a5
commit
bf01599430
6 changed files with 57 additions and 0 deletions
|
@ -519,6 +519,7 @@ func contractCallExInternal(ic *interop.Context, h []byte, name string, args []s
|
||||||
}
|
}
|
||||||
// use Jump not Call here because context was loaded in LoadScript above.
|
// use Jump not Call here because context was loaded in LoadScript above.
|
||||||
ic.VM.Jump(ic.VM.Context(), md.Offset)
|
ic.VM.Jump(ic.VM.Context(), md.Offset)
|
||||||
|
ic.VM.Context().CheckReturn = true
|
||||||
}
|
}
|
||||||
|
|
||||||
md = cs.Manifest.ABI.GetMethod(manifest.MethodInit)
|
md = cs.Manifest.ABI.GetMethod(manifest.MethodInit)
|
||||||
|
|
|
@ -335,6 +335,8 @@ func getTestContractState() (*state.Contract, *state.Contract) {
|
||||||
byte(opcode.DROP), byte(opcode.RET),
|
byte(opcode.DROP), byte(opcode.RET),
|
||||||
byte(opcode.INITSSLOT), 1, byte(opcode.PUSH3), byte(opcode.STSFLD0), byte(opcode.RET),
|
byte(opcode.INITSSLOT), 1, byte(opcode.PUSH3), byte(opcode.STSFLD0), byte(opcode.RET),
|
||||||
byte(opcode.LDSFLD0), byte(opcode.ADD), byte(opcode.RET),
|
byte(opcode.LDSFLD0), byte(opcode.ADD), byte(opcode.RET),
|
||||||
|
byte(opcode.PUSH1), byte(opcode.PUSH2), byte(opcode.RET),
|
||||||
|
byte(opcode.RET),
|
||||||
}
|
}
|
||||||
h := hash.Hash160(script)
|
h := hash.Hash160(script)
|
||||||
m := manifest.NewManifest(h)
|
m := manifest.NewManifest(h)
|
||||||
|
@ -372,6 +374,16 @@ func getTestContractState() (*state.Contract, *state.Contract) {
|
||||||
},
|
},
|
||||||
ReturnType: smartcontract.IntegerType,
|
ReturnType: smartcontract.IntegerType,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "invalidReturn",
|
||||||
|
Offset: 15,
|
||||||
|
ReturnType: smartcontract.IntegerType,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "justReturn",
|
||||||
|
Offset: 18,
|
||||||
|
ReturnType: smartcontract.IntegerType,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
cs := &state.Contract{
|
cs := &state.Contract{
|
||||||
Script: script,
|
Script: script,
|
||||||
|
@ -385,6 +397,8 @@ func getTestContractState() (*state.Contract, *state.Contract) {
|
||||||
perm.Methods.Add("add")
|
perm.Methods.Add("add")
|
||||||
perm.Methods.Add("drop")
|
perm.Methods.Add("drop")
|
||||||
perm.Methods.Add("add3")
|
perm.Methods.Add("add3")
|
||||||
|
perm.Methods.Add("invalidReturn")
|
||||||
|
perm.Methods.Add("justReturn")
|
||||||
m.Permissions = append(m.Permissions, *perm)
|
m.Permissions = append(m.Permissions, *perm)
|
||||||
|
|
||||||
return cs, &state.Contract{
|
return cs, &state.Contract{
|
||||||
|
@ -465,6 +479,28 @@ func TestContractCall(t *testing.T) {
|
||||||
stackitem.NewArray([]stackitem.Item{stackitem.Make(1)}), "add", h.BytesBE()))
|
stackitem.NewArray([]stackitem.Item{stackitem.Make(1)}), "add", h.BytesBE()))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
t.Run("ReturnValues", func(t *testing.T) {
|
||||||
|
t.Run("Many", func(t *testing.T) {
|
||||||
|
loadScript(ic, currScript, 42)
|
||||||
|
ic.VM.Estack().PushVal(stackitem.NewArray(nil))
|
||||||
|
ic.VM.Estack().PushVal("invalidReturn")
|
||||||
|
ic.VM.Estack().PushVal(h.BytesBE())
|
||||||
|
require.NoError(t, contractCall(ic))
|
||||||
|
require.Error(t, ic.VM.Run())
|
||||||
|
})
|
||||||
|
t.Run("Void", func(t *testing.T) {
|
||||||
|
loadScript(ic, currScript, 42)
|
||||||
|
ic.VM.Estack().PushVal(stackitem.NewArray(nil))
|
||||||
|
ic.VM.Estack().PushVal("justReturn")
|
||||||
|
ic.VM.Estack().PushVal(h.BytesBE())
|
||||||
|
require.NoError(t, contractCall(ic))
|
||||||
|
require.NoError(t, ic.VM.Run())
|
||||||
|
require.Equal(t, 2, ic.VM.Estack().Len())
|
||||||
|
require.Equal(t, stackitem.Null{}, ic.VM.Estack().Pop().Item())
|
||||||
|
require.Equal(t, big.NewInt(42), ic.VM.Estack().Pop().Value())
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
t.Run("IsolatedStack", func(t *testing.T) {
|
t.Run("IsolatedStack", func(t *testing.T) {
|
||||||
loadScript(ic, currScript, 42)
|
loadScript(ic, currScript, 42)
|
||||||
ic.VM.Estack().PushVal(stackitem.NewArray(nil))
|
ic.VM.Estack().PushVal(stackitem.NewArray(nil))
|
||||||
|
|
|
@ -61,6 +61,7 @@ func (cs *Contracts) GetPersistScript() []byte {
|
||||||
emit.Opcode(w.BinWriter, opcode.NEWARRAY)
|
emit.Opcode(w.BinWriter, opcode.NEWARRAY)
|
||||||
emit.String(w.BinWriter, "onPersist")
|
emit.String(w.BinWriter, "onPersist")
|
||||||
emit.AppCall(w.BinWriter, md.Hash)
|
emit.AppCall(w.BinWriter, md.Hash)
|
||||||
|
emit.Opcode(w.BinWriter, opcode.DROP)
|
||||||
}
|
}
|
||||||
cs.persistScript = w.Bytes()
|
cs.persistScript = w.Bytes()
|
||||||
return cs.persistScript
|
return cs.persistScript
|
||||||
|
|
|
@ -44,6 +44,9 @@ type Context struct {
|
||||||
|
|
||||||
// Call flags this context was created with.
|
// Call flags this context was created with.
|
||||||
callFlag smartcontract.CallFlag
|
callFlag smartcontract.CallFlag
|
||||||
|
|
||||||
|
// CheckReturn specifies if amount of return values needs to be checked.
|
||||||
|
CheckReturn bool
|
||||||
}
|
}
|
||||||
|
|
||||||
var errNoInstParam = errors.New("failed to read instruction parameter")
|
var errNoInstParam = errors.New("failed to read instruction parameter")
|
||||||
|
|
|
@ -1391,6 +1391,13 @@ func (v *VM) unloadContext(ctx *Context) {
|
||||||
if ctx.static != nil && currCtx != nil && ctx.static != currCtx.static {
|
if ctx.static != nil && currCtx != nil && ctx.static != currCtx.static {
|
||||||
ctx.static.Clear()
|
ctx.static.Clear()
|
||||||
}
|
}
|
||||||
|
if ctx.CheckReturn {
|
||||||
|
if currCtx != nil && ctx.estack.len == 0 {
|
||||||
|
currCtx.estack.PushVal(stackitem.Null{})
|
||||||
|
} else if ctx.estack.len > 1 {
|
||||||
|
panic("return value amount is > 1")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// getTryParams splits TRY(L) instruction parameter into offsets for catch and finally blocks.
|
// getTryParams splits TRY(L) instruction parameter into offsets for catch and finally blocks.
|
||||||
|
@ -1437,6 +1444,7 @@ func (v *VM) Jump(ctx *Context, offset int) {
|
||||||
// pushes new context to the invocation state
|
// pushes new context to the invocation state
|
||||||
func (v *VM) Call(ctx *Context, offset int) {
|
func (v *VM) Call(ctx *Context, offset int) {
|
||||||
newCtx := ctx.Copy()
|
newCtx := ctx.Copy()
|
||||||
|
newCtx.CheckReturn = false
|
||||||
newCtx.local = nil
|
newCtx.local = nil
|
||||||
newCtx.arguments = nil
|
newCtx.arguments = nil
|
||||||
v.istack.PushVal(newCtx)
|
v.istack.PushVal(newCtx)
|
||||||
|
|
|
@ -959,6 +959,14 @@ func TestCALLA(t *testing.T) {
|
||||||
t.Run("Good", getTestFuncForVM(prog, 5, stackitem.NewPointer(4, prog)))
|
t.Run("Good", getTestFuncForVM(prog, 5, stackitem.NewPointer(4, prog)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCALL(t *testing.T) {
|
||||||
|
prog := makeProgram(
|
||||||
|
opcode.CALL, 4, opcode.ADD, opcode.RET,
|
||||||
|
opcode.CALL, 3, opcode.RET,
|
||||||
|
opcode.PUSH1, opcode.PUSH2, opcode.RET)
|
||||||
|
runWithArgs(t, prog, 3)
|
||||||
|
}
|
||||||
|
|
||||||
func TestNOT(t *testing.T) {
|
func TestNOT(t *testing.T) {
|
||||||
prog := makeProgram(opcode.NOT)
|
prog := makeProgram(opcode.NOT)
|
||||||
t.Run("Bool", getTestFuncForVM(prog, true, false))
|
t.Run("Bool", getTestFuncForVM(prog, true, false))
|
||||||
|
|
Loading…
Reference in a new issue