Disabled opcodes are `fail if pc passes' not fail if execute.

Detected by bitcoind negative tests.
This commit is contained in:
Owain G. Ainsworth 2014-03-14 17:20:51 +00:00
parent c1a6e47f38
commit a5e7e9ebb6
2 changed files with 42 additions and 1 deletions

View File

@ -862,6 +862,45 @@ type parsedOpcode struct {
opfunc func(op parsedOpcode, s Script) error
}
// The following opcodes are disabled and are thus always bad to see in the
// instruction stream (even if turned off by a conditional).
func (pop *parsedOpcode) disabled() bool {
switch pop.opcode.value {
case OP_CAT:
return true
case OP_SUBSTR:
return true
case OP_LEFT:
return true
case OP_RIGHT:
return true
case OP_INVERT:
return true
case OP_AND:
return true
case OP_OR:
return true
case OP_XOR:
return true
case OP_2MUL:
return true
case OP_2DIV:
return true
case OP_MUL:
return true
case OP_DIV:
return true
case OP_MOD:
return true
case OP_LSHIFT:
return true
case OP_RSHIFT:
return true
default:
return false
}
}
// The following opcodes are always illegal when passed over by the program
// counter even if in a non-executed branch. (it isn't a coincidence that they
// are conditionals).

View File

@ -603,7 +603,9 @@ func (m *Script) Step() (done bool, err error) {
if m.condStack[0] != OpCondTrue {
// some opcodes still 'activate' if on the non-executing side
// of conditional execution
if opcode.alwaysIllegal() {
if opcode.disabled() {
return true, StackErrOpDisabled
} else if opcode.alwaysIllegal() {
return true, StackErrAlwaysIllegal
} else if opcode.conditional() {
executeInstr = true