vm_debug.go 20.7 KB
Newer Older
obscuren's avatar
obscuren committed
1
package vm
2 3 4 5 6

import (
	"fmt"
	"math/big"

obscuren's avatar
obscuren committed
7
	"github.com/ethereum/go-ethereum/crypto"
8
	"github.com/ethereum/go-ethereum/ethutil"
obscuren's avatar
obscuren committed
9
	"github.com/ethereum/go-ethereum/state"
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
)

type DebugVm struct {
	env Environment

	logTy  byte
	logStr string

	err error

	// Debugging
	Dbg Debugger

	BreakPoints []int64
	Stepping    bool
	Fn          string

	Recoverable bool

	depth int
}

func NewDebugVm(env Environment) *DebugVm {
	lt := LogTyPretty
	if ethutil.Config.Diff {
		lt = LogTyDiff
	}

	return &DebugVm{env: env, logTy: lt, Recoverable: true}
}

func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
	self.depth++

44 45 46 47 48 49
	if self.Recoverable {
		// Recover from any require exception
		defer func() {
			if r := recover(); r != nil {
				self.Endl()

50 51
				closure.UseGas(closure.Gas)

52 53 54
				ret = closure.Return(nil)

				err = fmt.Errorf("%v", r)
obscuren's avatar
obscuren committed
55

56 57 58 59
			}
		}()
	}

obscuren's avatar
obscuren committed
60 61 62
	var (
		op OpCode

63
		destinations = analyseJumpDests(closure.Code)
obscuren's avatar
obscuren committed
64
		mem          = NewMemory()
65 66 67 68 69 70
		stack        = NewStack()
		pc           = big.NewInt(0)
		step         = 0
		prevStep     = 0
		statedb      = self.env.State()
		require      = func(m int) {
obscuren's avatar
obscuren committed
71 72 73 74
			if stack.Len() < m {
				panic(fmt.Sprintf("%04v (%v) stack err size = %d, required = %d", pc, op, stack.Len(), m))
			}
		}
obscuren's avatar
obscuren committed
75

76 77
		jump = func(from, to *big.Int) {
			p := int(to.Int64())
obscuren's avatar
obscuren committed
78

79
			self.Printf(" ~> %v", to)
obscuren's avatar
obscuren committed
80 81 82 83
			// Return to start
			if p == 0 {
				pc = big.NewInt(0)
			} else {
84 85
				nop := OpCode(closure.GetOp(p))
				if !(nop == JUMPDEST || destinations[from.Int64()] != nil) {
obscuren's avatar
obscuren committed
86
					panic(fmt.Sprintf("JUMP missed JUMPDEST (%v) %v", nop, p))
87 88
				} else if nop == JUMP || nop == JUMPI {
					panic(fmt.Sprintf("not allowed to JUMP(I) in to JUMP"))
obscuren's avatar
obscuren committed
89 90
				}

91 92
				pc = to

obscuren's avatar
obscuren committed
93 94 95 96
			}

			self.Endl()
		}
obscuren's avatar
obscuren committed
97 98
	)

99 100 101 102 103 104 105 106 107 108
	// Debug hook
	if self.Dbg != nil {
		self.Dbg.SetCode(closure.Code)
	}

	// Don't bother with the execution if there's no code.
	if len(closure.Code) == 0 {
		return closure.Return(nil), nil
	}

109
	vmlogger.Debugf("(%d) %x gas: %v (d) %x\n", self.depth, closure.Address(), closure.Gas, closure.Args)
110 111 112 113 114 115 116 117

	for {
		prevStep = step
		// The base for all big integer arithmetic
		base := new(big.Int)

		step++
		// Get the memory location of pc
118
		op = closure.GetOp(int(pc.Uint64()))
119 120 121 122 123 124

		// XXX Leave this Println intact. Don't change this to the log system.
		// Used for creating diffs between implementations
		if self.logTy == LogTyDiff {
			switch op {
			case STOP, RETURN, SUICIDE:
obscuren's avatar
obscuren committed
125
				statedb.GetStateObject(closure.Address()).EachStorage(func(key string, value *ethutil.Value) {
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
					value.Decode()
					fmt.Printf("%x %x\n", new(big.Int).SetBytes([]byte(key)).Bytes(), value.Bytes())
				})
			}

			b := pc.Bytes()
			if len(b) == 0 {
				b = []byte{0}
			}

			fmt.Printf("%x %x %x %x\n", closure.Address(), b, []byte{byte(op)}, closure.Gas.Bytes())
		}

		gas := new(big.Int)
		addStepGasUsage := func(amount *big.Int) {
			if amount.Cmp(ethutil.Big0) >= 0 {
				gas.Add(gas, amount)
			}
		}

		addStepGasUsage(GasStep)

		var newMemSize *big.Int = ethutil.Big0
149
		// Stack Check, memory resize & gas phase
150
		switch op {
151
		// Stack checks only
obscuren's avatar
obscuren committed
152
		case ISZERO, CALLDATALOAD, POP, JUMP, NOT: // 1
153 154 155 156 157 158 159 160 161 162 163
			require(1)
		case ADD, SUB, DIV, SDIV, MOD, SMOD, EXP, LT, GT, SLT, SGT, EQ, AND, OR, XOR, BYTE: // 2
			require(2)
		case ADDMOD, MULMOD: // 3
			require(3)
		case SWAP1, SWAP2, SWAP3, SWAP4, SWAP5, SWAP6, SWAP7, SWAP8, SWAP9, SWAP10, SWAP11, SWAP12, SWAP13, SWAP14, SWAP15, SWAP16:
			n := int(op - SWAP1 + 2)
			require(n)
		case DUP1, DUP2, DUP3, DUP4, DUP5, DUP6, DUP7, DUP8, DUP9, DUP10, DUP11, DUP12, DUP13, DUP14, DUP15, DUP16:
			n := int(op - DUP1 + 1)
			require(n)
obscuren's avatar
obscuren committed
164 165 166 167 168 169 170 171
		case LOG0, LOG1, LOG2, LOG3, LOG4:
			n := int(op - LOG0)
			require(n + 2)

			mSize, mStart := stack.Peekn()
			gas.Set(GasLog)
			addStepGasUsage(new(big.Int).Mul(big.NewInt(int64(n)), GasLog))
			addStepGasUsage(new(big.Int).Add(mSize, mStart))
172
		// Gas only
173 174 175
		case STOP:
			gas.Set(ethutil.Big0)
		case SUICIDE:
176 177
			require(1)

178 179
			gas.Set(ethutil.Big0)
		case SLOAD:
180 181
			require(1)

182
			gas.Set(GasSLoad)
183
		// Memory resize & Gas
184
		case SSTORE:
185 186
			require(2)

187 188 189 190
			var mult *big.Int
			y, x := stack.Peekn()
			val := closure.GetStorage(x)
			if val.BigInt().Cmp(ethutil.Big0) == 0 && len(y.Bytes()) > 0 {
obscuren's avatar
obscuren committed
191 192
				// 0 => non 0
				mult = ethutil.Big3
193
			} else if val.BigInt().Cmp(ethutil.Big0) != 0 && len(y.Bytes()) == 0 {
obscuren's avatar
obscuren committed
194
				statedb.Refund(closure.caller.Address(), GasSStoreRefund, closure.Price)
obscuren's avatar
obscuren committed
195

196 197
				mult = ethutil.Big0
			} else {
obscuren's avatar
obscuren committed
198
				// non 0 => non 0
199 200
				mult = ethutil.Big1
			}
obscuren's avatar
obscuren committed
201
			gas.Set(new(big.Int).Mul(mult, GasSStore))
202
		case BALANCE:
203
			require(1)
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
			gas.Set(GasBalance)
		case MSTORE:
			require(2)
			newMemSize = calcMemSize(stack.Peek(), u256(32))
		case MLOAD:
			require(1)

			newMemSize = calcMemSize(stack.Peek(), u256(32))
		case MSTORE8:
			require(2)
			newMemSize = calcMemSize(stack.Peek(), u256(1))
		case RETURN:
			require(2)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-2])
		case SHA3:
			require(2)

			gas.Set(GasSha)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-2])
		case CALLDATACOPY:
			require(2)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-3])
		case CODECOPY:
			require(3)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-3])
		case EXTCODECOPY:
			require(4)

			newMemSize = calcMemSize(stack.data[stack.Len()-2], stack.data[stack.Len()-4])
		case CALL, CALLCODE:
			require(7)
			gas.Set(GasCall)
			addStepGasUsage(stack.data[stack.Len()-1])

			x := calcMemSize(stack.data[stack.Len()-6], stack.data[stack.Len()-7])
			y := calcMemSize(stack.data[stack.Len()-4], stack.data[stack.Len()-5])

			newMemSize = ethutil.BigMax(x, y)
		case CREATE:
			require(3)
			gas.Set(GasCreate)

			newMemSize = calcMemSize(stack.data[stack.Len()-2], stack.data[stack.Len()-3])
		}

		if newMemSize.Cmp(ethutil.Big0) > 0 {
			newMemSize.Add(newMemSize, u256(31))
			newMemSize.Div(newMemSize, u256(32))
			newMemSize.Mul(newMemSize, u256(32))

			if newMemSize.Cmp(u256(int64(mem.Len()))) > 0 {
				memGasUsage := new(big.Int).Sub(newMemSize, u256(int64(mem.Len())))
				memGasUsage.Mul(GasMemory, memGasUsage)
				memGasUsage.Div(memGasUsage, u256(32))

				addStepGasUsage(memGasUsage)
obscuren's avatar
obscuren committed
264 265

				mem.Resize(newMemSize.Uint64())
266
			}
obscuren's avatar
obscuren committed
267

268 269
		}

270
		self.Printf("(pc) %-3d -o- %-14s", pc, op.String())
obscuren's avatar
obscuren committed
271
		self.Printf(" (m) %-4d (s) %-4d (g) %-3v (%v)", mem.Len(), stack.Len(), gas, closure.Gas)
272

273
		if !closure.UseGas(gas) {
274 275
			self.Endl()

276
			tmp := new(big.Int).Set(closure.Gas)
277 278 279

			closure.UseGas(closure.Gas)

280
			return closure.Return(nil), OOG(gas, tmp)
281 282 283
		}

		switch op {
obscuren's avatar
obscuren committed
284
		// 0x20 range
285 286 287 288 289 290
		case ADD:
			x, y := stack.Popn()
			self.Printf(" %v + %v", y, x)

			base.Add(y, x)

obscuren's avatar
obscuren committed
291
			U256(base)
292 293 294 295 296 297 298 299 300 301

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case SUB:
			x, y := stack.Popn()
			self.Printf(" %v - %v", y, x)

			base.Sub(y, x)

obscuren's avatar
obscuren committed
302
			U256(base)
303 304 305 306 307 308 309 310 311 312

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case MUL:
			x, y := stack.Popn()
			self.Printf(" %v * %v", y, x)

			base.Mul(y, x)

obscuren's avatar
obscuren committed
313
			U256(base)
314 315 316 317 318

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case DIV:
obscuren's avatar
obscuren committed
319 320
			x, y := stack.Pop(), stack.Pop()
			self.Printf(" %v / %v", x, y)
321

obscuren's avatar
obscuren committed
322 323
			if y.Cmp(ethutil.Big0) != 0 {
				base.Div(x, y)
324 325
			}

obscuren's avatar
obscuren committed
326
			U256(base)
327 328 329 330 331

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case SDIV:
obscuren's avatar
obscuren committed
332
			x, y := S256(stack.Pop()), S256(stack.Pop())
333

obscuren's avatar
obscuren committed
334 335 336 337 338 339 340 341 342 343 344
			self.Printf(" %v / %v", x, y)

			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				n := new(big.Int)
				if new(big.Int).Mul(x, y).Cmp(ethutil.Big0) < 0 {
					n.SetInt64(-1)
				} else {
					n.SetInt64(1)
				}
345

obscuren's avatar
obscuren committed
346 347 348 349
				base.Div(x.Abs(x), y.Abs(y)).Mul(base, n)

				U256(base)
			}
350 351 352 353

			self.Printf(" = %v", base)
			stack.Push(base)
		case MOD:
obscuren's avatar
obscuren committed
354
			x, y := stack.Pop(), stack.Pop()
355

obscuren's avatar
obscuren committed
356
			self.Printf(" %v %% %v", x, y)
357

obscuren's avatar
obscuren committed
358 359 360 361 362
			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				base.Mod(x, y)
			}
363

obscuren's avatar
obscuren committed
364
			U256(base)
365 366 367 368

			self.Printf(" = %v", base)
			stack.Push(base)
		case SMOD:
obscuren's avatar
obscuren committed
369 370 371
			x, y := S256(stack.Pop()), S256(stack.Pop())

			self.Printf(" %v %% %v", x, y)
372

obscuren's avatar
obscuren committed
373 374 375 376 377 378 379 380 381
			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				n := new(big.Int)
				if x.Cmp(ethutil.Big0) < 0 {
					n.SetInt64(-1)
				} else {
					n.SetInt64(1)
				}
382

obscuren's avatar
obscuren committed
383
				base.Mod(x.Abs(x), y.Abs(y)).Mul(base, n)
384

obscuren's avatar
obscuren committed
385 386
				U256(base)
			}
387 388 389 390 391 392 393 394 395 396 397

			self.Printf(" = %v", base)
			stack.Push(base)

		case EXP:
			x, y := stack.Popn()

			self.Printf(" %v ** %v", y, x)

			base.Exp(y, x, Pow256)

obscuren's avatar
obscuren committed
398
			U256(base)
399 400 401 402

			self.Printf(" = %v", base)

			stack.Push(base)
obscuren's avatar
obscuren committed
403 404
		case SIGNEXTEND:
			back := stack.Pop().Uint64()
obscuren's avatar
obscuren committed
405
			if back < 31 {
obscuren's avatar
obscuren committed
406 407 408 409 410 411 412 413 414
				bit := uint(back*8 + 7)
				num := stack.Pop()
				mask := new(big.Int).Lsh(ethutil.Big1, bit)
				mask.Sub(mask, ethutil.Big1)
				if ethutil.BitTest(num, int(bit)) {
					num.Or(num, mask.Not(mask))
				} else {
					num.And(num, mask)
				}
415 416 417 418 419

				num = U256(num)

				self.Printf(" = %v", num)

obscuren's avatar
obscuren committed
420 421
				stack.Push(num)
			}
obscuren's avatar
obscuren committed
422
		case NOT:
obscuren's avatar
obscuren committed
423
			base.Sub(Pow256, stack.Pop()).Sub(base, ethutil.Big1)
obscuren's avatar
obscuren committed
424

obscuren's avatar
obscuren committed
425 426
			// Not needed
			//base = U256(base)
obscuren's avatar
obscuren committed
427

428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
			stack.Push(base)
		case LT:
			x, y := stack.Popn()
			self.Printf(" %v < %v", y, x)
			// x < y
			if y.Cmp(x) < 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
		case GT:
			x, y := stack.Popn()
			self.Printf(" %v > %v", y, x)

			// x > y
			if y.Cmp(x) > 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}

		case SLT:
obscuren's avatar
obscuren committed
450
			y, x := S256(stack.Pop()), S256(stack.Pop())
451 452
			self.Printf(" %v < %v", y, x)
			// x < y
obscuren's avatar
obscuren committed
453
			if y.Cmp(S256(x)) < 0 {
454 455 456 457 458
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
		case SGT:
obscuren's avatar
obscuren committed
459
			y, x := S256(stack.Pop()), S256(stack.Pop())
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
			self.Printf(" %v > %v", y, x)

			// x > y
			if y.Cmp(x) > 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}

		case EQ:
			x, y := stack.Popn()
			self.Printf(" %v == %v", y, x)

			// x == y
			if x.Cmp(y) == 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
obscuren's avatar
obscuren committed
479
		case ISZERO:
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
			x := stack.Pop()
			if x.Cmp(ethutil.BigFalse) > 0 {
				stack.Push(ethutil.BigFalse)
			} else {
				stack.Push(ethutil.BigTrue)
			}

			// 0x10 range
		case AND:
			x, y := stack.Popn()
			self.Printf(" %v & %v", y, x)

			stack.Push(base.And(y, x))
		case OR:
			x, y := stack.Popn()
			self.Printf(" %v | %v", y, x)

			stack.Push(base.Or(y, x))
		case XOR:
			x, y := stack.Popn()
			self.Printf(" %v ^ %v", y, x)

			stack.Push(base.Xor(y, x))
		case BYTE:
			val, th := stack.Popn()
obscuren's avatar
obscuren committed
505 506

			if th.Cmp(big.NewInt(32)) < 0 {
507 508
				byt := big.NewInt(int64(ethutil.LeftPadBytes(val.Bytes(), 32)[th.Int64()]))

obscuren's avatar
obscuren committed
509
				base.Set(byt)
510
			} else {
obscuren's avatar
obscuren committed
511
				base.Set(ethutil.BigFalse)
512
			}
obscuren's avatar
obscuren committed
513 514 515 516

			self.Printf(" => 0x%x", base.Bytes())

			stack.Push(base)
517 518 519 520 521 522 523 524 525
		case ADDMOD:

			x := stack.Pop()
			y := stack.Pop()
			z := stack.Pop()

			base.Add(x, y)
			base.Mod(base, z)

obscuren's avatar
obscuren committed
526
			U256(base)
527 528 529 530 531 532 533 534 535 536 537 538 539

			self.Printf(" = %v", base)

			stack.Push(base)
		case MULMOD:

			x := stack.Pop()
			y := stack.Pop()
			z := stack.Pop()

			base.Mul(x, y)
			base.Mod(base, z)

obscuren's avatar
obscuren committed
540
			U256(base)
541 542 543 544 545 546 547 548

			self.Printf(" = %v", base)

			stack.Push(base)

			// 0x20 range
		case SHA3:
			size, offset := stack.Popn()
obscuren's avatar
obscuren committed
549
			data := crypto.Sha3(mem.Get(offset.Int64(), size.Int64()))
550 551 552 553 554 555 556 557 558 559 560 561

			stack.Push(ethutil.BigD(data))

			self.Printf(" => %x", data)
			// 0x30 range
		case ADDRESS:
			stack.Push(ethutil.BigD(closure.Address()))

			self.Printf(" => %x", closure.Address())
		case BALANCE:

			addr := stack.Pop().Bytes()
obscuren's avatar
obscuren committed
562
			balance := statedb.GetBalance(addr)
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578

			stack.Push(balance)

			self.Printf(" => %v (%x)", balance, addr)
		case ORIGIN:
			origin := self.env.Origin()

			stack.Push(ethutil.BigD(origin))

			self.Printf(" => %x", origin)
		case CALLER:
			caller := closure.caller.Address()
			stack.Push(ethutil.BigD(caller))

			self.Printf(" => %x", caller)
		case CALLVALUE:
obscuren's avatar
obscuren committed
579
			value := closure.exe.value
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623

			stack.Push(value)

			self.Printf(" => %v", value)
		case CALLDATALOAD:
			var (
				offset  = stack.Pop()
				data    = make([]byte, 32)
				lenData = big.NewInt(int64(len(closure.Args)))
			)

			if lenData.Cmp(offset) >= 0 {
				length := new(big.Int).Add(offset, ethutil.Big32)
				length = ethutil.BigMin(length, lenData)

				copy(data, closure.Args[offset.Int64():length.Int64()])
			}

			self.Printf(" => 0x%x", data)

			stack.Push(ethutil.BigD(data))
		case CALLDATASIZE:
			l := int64(len(closure.Args))
			stack.Push(big.NewInt(l))

			self.Printf(" => %d", l)
		case CALLDATACOPY:
			var (
				size = int64(len(closure.Args))
				mOff = stack.Pop().Int64()
				cOff = stack.Pop().Int64()
				l    = stack.Pop().Int64()
			)

			if cOff > size {
				cOff = 0
				l = 0
			} else if cOff+l > size {
				l = 0
			}

			code := closure.Args[cOff : cOff+l]

			mem.Set(mOff, l, code)
obscuren's avatar
obscuren committed
624 625

			self.Printf(" => [%v, %v, %v] %x", mOff, cOff, l, code[cOff:cOff+l])
626 627
		case CODESIZE, EXTCODESIZE:
			var code []byte
obscuren's avatar
obscuren committed
628
			if op == EXTCODESIZE {
629 630
				addr := stack.Pop().Bytes()

obscuren's avatar
obscuren committed
631
				code = statedb.GetCode(addr)
632 633 634 635 636 637 638 639 640 641 642 643 644
			} else {
				code = closure.Code
			}

			l := big.NewInt(int64(len(code)))
			stack.Push(l)

			self.Printf(" => %d", l)
		case CODECOPY, EXTCODECOPY:
			var code []byte
			if op == EXTCODECOPY {
				addr := stack.Pop().Bytes()

obscuren's avatar
obscuren committed
645
				code = statedb.GetCode(addr)
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
			} else {
				code = closure.Code
			}

			var (
				size = int64(len(code))
				mOff = stack.Pop().Int64()
				cOff = stack.Pop().Int64()
				l    = stack.Pop().Int64()
			)

			if cOff > size {
				cOff = 0
				l = 0
			} else if cOff+l > size {
				l = 0
			}

			codeCopy := code[cOff : cOff+l]

			mem.Set(mOff, l, codeCopy)
obscuren's avatar
obscuren committed
667 668

			self.Printf(" => [%v, %v, %v] %x", mOff, cOff, l, code[cOff:cOff+l])
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
		case GASPRICE:
			stack.Push(closure.Price)

			self.Printf(" => %v", closure.Price)

			// 0x40 range
		case PREVHASH:
			prevHash := self.env.PrevHash()

			stack.Push(ethutil.BigD(prevHash))

			self.Printf(" => 0x%x", prevHash)
		case COINBASE:
			coinbase := self.env.Coinbase()

			stack.Push(ethutil.BigD(coinbase))

			self.Printf(" => 0x%x", coinbase)
		case TIMESTAMP:
			time := self.env.Time()

			stack.Push(big.NewInt(time))

			self.Printf(" => 0x%x", time)
		case NUMBER:
			number := self.env.BlockNumber()

			stack.Push(number)

			self.Printf(" => 0x%x", number.Bytes())
		case DIFFICULTY:
			difficulty := self.env.Difficulty()

			stack.Push(difficulty)

			self.Printf(" => 0x%x", difficulty.Bytes())
		case GASLIMIT:
obscuren's avatar
obscuren committed
706
			stack.Push(self.env.GasLimit())
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736

			// 0x50 range
		case PUSH1, PUSH2, PUSH3, PUSH4, PUSH5, PUSH6, PUSH7, PUSH8, PUSH9, PUSH10, PUSH11, PUSH12, PUSH13, PUSH14, PUSH15, PUSH16, PUSH17, PUSH18, PUSH19, PUSH20, PUSH21, PUSH22, PUSH23, PUSH24, PUSH25, PUSH26, PUSH27, PUSH28, PUSH29, PUSH30, PUSH31, PUSH32:
			a := big.NewInt(int64(op) - int64(PUSH1) + 1)
			pc.Add(pc, ethutil.Big1)
			data := closure.Gets(pc, a)
			val := ethutil.BigD(data.Bytes())
			// Push value to stack
			stack.Push(val)
			pc.Add(pc, a.Sub(a, big.NewInt(1)))

			step += int(op) - int(PUSH1) + 1

			self.Printf(" => 0x%x", data.Bytes())
		case POP:
			stack.Pop()
		case DUP1, DUP2, DUP3, DUP4, DUP5, DUP6, DUP7, DUP8, DUP9, DUP10, DUP11, DUP12, DUP13, DUP14, DUP15, DUP16:
			n := int(op - DUP1 + 1)
			v := stack.Dupn(n)

			self.Printf(" => [%d] 0x%x", n, stack.Peek().Bytes())

			if OpCode(closure.Get(new(big.Int).Add(pc, ethutil.Big1)).Uint()) == POP && OpCode(closure.Get(new(big.Int).Add(pc, big.NewInt(2))).Uint()) == POP {
				fmt.Println(toValue(v))
			}
		case SWAP1, SWAP2, SWAP3, SWAP4, SWAP5, SWAP6, SWAP7, SWAP8, SWAP9, SWAP10, SWAP11, SWAP12, SWAP13, SWAP14, SWAP15, SWAP16:
			n := int(op - SWAP1 + 2)
			x, y := stack.Swapn(n)

			self.Printf(" => [%d] %x [0] %x", n, x.Bytes(), y.Bytes())
obscuren's avatar
obscuren committed
737 738
		case LOG0, LOG1, LOG2, LOG3, LOG4:
			n := int(op - LOG0)
obscuren's avatar
obscuren committed
739
			topics := make([][]byte, n)
obscuren's avatar
obscuren committed
740
			mStart, mSize := stack.Pop().Int64(), stack.Pop().Int64()
obscuren's avatar
obscuren committed
741 742
			data := mem.Geti(mStart, mSize)
			for i := 0; i < n; i++ {
obscuren's avatar
obscuren committed
743
				topics[i] = stack.Pop().Bytes()
obscuren's avatar
obscuren committed
744
			}
obscuren's avatar
obscuren committed
745 746 747 748 749

			log := &state.Log{closure.Address(), topics, data}
			self.env.AddLog(log)

			self.Printf(" => %v", log)
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
		case MLOAD:
			offset := stack.Pop()
			val := ethutil.BigD(mem.Get(offset.Int64(), 32))
			stack.Push(val)

			self.Printf(" => 0x%x", val.Bytes())
		case MSTORE: // Store the value at stack top-1 in to memory at location stack top
			// Pop value of the stack
			val, mStart := stack.Popn()
			mem.Set(mStart.Int64(), 32, ethutil.BigToBytes(val, 256))

			self.Printf(" => 0x%x", val)
		case MSTORE8:
			off := stack.Pop()
			val := stack.Pop()

			mem.store[off.Int64()] = byte(val.Int64() & 0xff)

			self.Printf(" => [%v] 0x%x", off, val)
		case SLOAD:
			loc := stack.Pop()
obscuren's avatar
obscuren committed
771
			val := ethutil.BigD(statedb.GetState(closure.Address(), loc.Bytes()))
772
			stack.Push(val)
773 774 775 776

			self.Printf(" {0x%x : 0x%x}", loc.Bytes(), val.Bytes())
		case SSTORE:
			val, loc := stack.Popn()
obscuren's avatar
obscuren committed
777
			statedb.SetState(closure.Address(), loc.Bytes(), val)
778

obscuren's avatar
obscuren committed
779 780 781 782
			// Debug sessions are allowed to run without message
			if closure.message != nil {
				closure.message.AddStorageChange(loc.Bytes())
			}
783 784 785

			self.Printf(" {0x%x : 0x%x}", loc.Bytes(), val.Bytes())
		case JUMP:
786

787
			jump(pc, stack.Pop())
788 789 790 791 792

			continue
		case JUMPI:
			cond, pos := stack.Popn()

obscuren's avatar
obscuren committed
793
			if cond.Cmp(ethutil.BigTrue) >= 0 {
794
				jump(pc, pos)
795 796 797

				continue
			}
obscuren's avatar
obscuren committed
798

799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
		case JUMPDEST:
		case PC:
			stack.Push(pc)
		case MSIZE:
			stack.Push(big.NewInt(int64(mem.Len())))
		case GAS:
			stack.Push(closure.Gas)
			// 0x60 range
		case CREATE:

			var (
				err          error
				value        = stack.Pop()
				size, offset = stack.Popn()
				input        = mem.Get(offset.Int64(), size.Int64())
				gas          = new(big.Int).Set(closure.Gas)

				// Snapshot the current stack so we are able to
				// revert back to it later.
				//snapshot = self.env.State().Copy()
			)

			// Generate a new address
obscuren's avatar
obscuren committed
822
			n := statedb.GetNonce(closure.Address())
obscuren's avatar
obscuren committed
823
			addr := crypto.CreateAddress(closure.Address(), n)
obscuren's avatar
obscuren committed
824
			statedb.SetNonce(closure.Address(), n+1)
825 826 827 828 829 830

			self.Printf(" (*) %x", addr).Endl()

			closure.UseGas(closure.Gas)

			msg := NewExecution(self, addr, input, gas, closure.Price, value)
obscuren's avatar
obscuren committed
831
			ret, err := msg.Create(closure)
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
			if err != nil {
				stack.Push(ethutil.BigFalse)

				// Revert the state as it was before.
				//self.env.State().Set(snapshot)

				self.Printf("CREATE err %v", err)
			} else {
				msg.object.Code = ret

				stack.Push(ethutil.BigD(addr))
			}

			self.Endl()

			// Debug hook
			if self.Dbg != nil {
				self.Dbg.SetCode(closure.Code)
			}
		case CALL, CALLCODE:
			self.Endl()

			gas := stack.Pop()
			// Pop gas and value of the stack.
			value, addr := stack.Popn()
			// Pop input size and offset
			inSize, inOffset := stack.Popn()
			// Pop return size and offset
			retSize, retOffset := stack.Popn()

			// Get the arguments from the memory
			args := mem.Get(inOffset.Int64(), inSize.Int64())

			var executeAddr []byte
			if op == CALLCODE {
				executeAddr = closure.Address()
			} else {
				executeAddr = addr.Bytes()
			}

			msg := NewExecution(self, executeAddr, args, gas, closure.Price, value)
			ret, err := msg.Exec(addr.Bytes(), closure)
			if err != nil {
				stack.Push(ethutil.BigFalse)

877
				vmlogger.Debugln(err)
878 879 880 881 882
			} else {
				stack.Push(ethutil.BigTrue)

				mem.Set(retOffset.Int64(), retSize.Int64(), ret)
			}
883
			self.Printf("resume %x", closure.Address())
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898

			// Debug hook
			if self.Dbg != nil {
				self.Dbg.SetCode(closure.Code)
			}

		case RETURN:
			size, offset := stack.Popn()
			ret := mem.Get(offset.Int64(), size.Int64())

			self.Printf(" => (%d) 0x%x", len(ret), ret).Endl()

			return closure.Return(ret), nil
		case SUICIDE:

obscuren's avatar
obscuren committed
899
			receiver := statedb.GetOrNewStateObject(stack.Pop().Bytes())
900

obscuren's avatar
obscuren committed
901 902
			receiver.AddAmount(statedb.GetBalance(closure.Address()))
			statedb.Delete(closure.Address())
903 904 905 906 907 908 909 910 911 912

			fallthrough
		case STOP: // Stop the closure
			self.Endl()

			return closure.Return(nil), nil
		default:
			vmlogger.Debugf("(pc) %-3v Invalid opcode %x\n", pc, op)

			//panic(fmt.Sprintf("Invalid opcode %x", op))
obscuren's avatar
obscuren committed
913
			closure.ReturnGas(big.NewInt(1), nil)
914 915 916 917 918 919 920 921 922 923 924 925 926

			return closure.Return(nil), fmt.Errorf("Invalid opcode %x", op)
		}

		pc.Add(pc, ethutil.Big1)

		self.Endl()

		if self.Dbg != nil {
			for _, instrNo := range self.Dbg.BreakPoints() {
				if pc.Cmp(big.NewInt(instrNo)) == 0 {
					self.Stepping = true

obscuren's avatar
obscuren committed
927
					if !self.Dbg.BreakHook(prevStep, op, mem, stack, statedb.GetStateObject(closure.Address())) {
928 929 930
						return nil, nil
					}
				} else if self.Stepping {
obscuren's avatar
obscuren committed
931
					if !self.Dbg.StepHook(prevStep, op, mem, stack, statedb.GetStateObject(closure.Address())) {
932 933 934 935 936 937 938 939 940
						return nil, nil
					}
				}
			}
		}

	}
}

941
func (self *DebugVm) Printf(format string, v ...interface{}) VirtualMachine {
942 943 944 945 946 947 948
	if self.logTy == LogTyPretty {
		self.logStr += fmt.Sprintf(format, v...)
	}

	return self
}

949
func (self *DebugVm) Endl() VirtualMachine {
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
	if self.logTy == LogTyPretty {
		vmlogger.Debugln(self.logStr)
		self.logStr = ""
	}

	return self
}

func (self *DebugVm) Env() Environment {
	return self.env
}

func (self *DebugVm) Depth() int {
	return self.depth
}