stack.go 14.7 KB
Newer Older
D
Derek Parker 已提交
1
package proc
2

3
import (
4
	"debug/dwarf"
5
	"errors"
6
	"fmt"
7
	"strings"
D
Derek Parker 已提交
8

D
Derek Parker 已提交
9
	"github.com/derekparker/delve/pkg/dwarf/frame"
10
	"github.com/derekparker/delve/pkg/dwarf/op"
11
)
12

J
Josh Soref 已提交
13
// This code is partly adapted from runtime.gentraceback in
A
Alessandro Arzilli 已提交
14 15
// $GOROOT/src/runtime/traceback.go

D
Derek Parker 已提交
16
// Stackframe represents a frame in a system stack.
17
type Stackframe struct {
18
	// Address the function above this one on the call stack will return to.
19 20 21
	Current Location
	// Address of the call instruction for the function above on the call stack.
	Call Location
22 23
	// Frame registers.
	Regs op.DwarfRegisters
24
	// High address of the stack.
A
aarzilli 已提交
25
	stackHi uint64
26
	// Return address for this stack frame (as read from the stack frame itself).
27
	Ret uint64
A
Alessandro Arzilli 已提交
28 29
	// Address to the memory location containing the return address
	addrret uint64
J
Josh Soref 已提交
30
	// Err is set if an error occurred during stacktrace
31
	Err error
A
aarzilli 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
	// SystemStack is true if this frame belongs to a system stack.
	SystemStack bool
}

// FrameOffset returns the address of the stack frame, absolute for system
// stack frames or as an offset from stackhi for goroutine stacks (a
// negative value).
func (frame *Stackframe) FrameOffset() int64 {
	if frame.SystemStack {
		return frame.Regs.CFA
	}
	return frame.Regs.CFA - int64(frame.stackHi)
}

// FramePointerOffset returns the value of the frame pointer, absolute for
// system stack frames or as an offset from stackhi for goroutine stacks (a
// negative value).
func (frame *Stackframe) FramePointerOffset() int64 {
	if frame.SystemStack {
		return int64(frame.Regs.BP())
	}
	return int64(frame.Regs.BP()) - int64(frame.stackHi)
54 55
}

56
// ThreadStacktrace returns the stack trace for thread.
D
Derek Parker 已提交
57
// Note the locations in the array are return addresses not call addresses.
58
func ThreadStacktrace(thread Thread, depth int) ([]Stackframe, error) {
A
aarzilli 已提交
59 60 61 62 63 64 65 66
	g, _ := GetG(thread)
	if g == nil {
		regs, err := thread.Registers(true)
		if err != nil {
			return nil, err
		}
		it := newStackIterator(thread.BinInfo(), thread, thread.BinInfo().Arch.RegistersToDwarfRegisters(regs), 0, nil, -1, nil)
		return it.stacktrace(depth)
67
	}
A
aarzilli 已提交
68
	return g.Stacktrace(depth)
A
aarzilli 已提交
69 70
}

A
aarzilli 已提交
71
func (g *G) stackIterator() (*stackIterator, error) {
A
Alessandro Arzilli 已提交
72 73 74 75
	stkbar, err := g.stkbar()
	if err != nil {
		return nil, err
	}
A
aarzilli 已提交
76

77
	if g.Thread != nil {
78
		regs, err := g.Thread.Registers(true)
79 80 81
		if err != nil {
			return nil, err
		}
A
aarzilli 已提交
82
		return newStackIterator(g.variable.bi, g.Thread, g.variable.bi.Arch.RegistersToDwarfRegisters(regs), g.stackhi, stkbar, g.stkbarPos, g), nil
A
aarzilli 已提交
83
	}
A
aarzilli 已提交
84
	return newStackIterator(g.variable.bi, g.variable.mem, g.variable.bi.Arch.GoroutineToDwarfRegisters(g), g.stackhi, stkbar, g.stkbarPos, g), nil
A
aarzilli 已提交
85 86 87 88 89 90 91 92
}

// Stacktrace returns the stack trace for a goroutine.
// Note the locations in the array are return addresses not call addresses.
func (g *G) Stacktrace(depth int) ([]Stackframe, error) {
	it, err := g.stackIterator()
	if err != nil {
		return nil, err
A
aarzilli 已提交
93
	}
A
aarzilli 已提交
94
	return it.stacktrace(depth)
A
aarzilli 已提交
95 96
}

D
Derek Parker 已提交
97
// NullAddrError is an error for a null address.
98 99 100 101 102 103
type NullAddrError struct{}

func (n NullAddrError) Error() string {
	return "NULL address"
}

A
aarzilli 已提交
104
// stackIterator holds information
D
Derek Parker 已提交
105 106
// required to iterate and walk the program
// stack.
A
aarzilli 已提交
107
type stackIterator struct {
108 109 110 111 112 113 114
	pc    uint64
	top   bool
	atend bool
	frame Stackframe
	bi    *BinaryInfo
	mem   MemoryReadWriter
	err   error
115

116
	stackhi        uint64
A
aarzilli 已提交
117
	systemstack    bool
A
Alessandro Arzilli 已提交
118 119
	stackBarrierPC uint64
	stkbar         []savedLR
120

121 122
	// regs is the register set for the current frame
	regs op.DwarfRegisters
A
aarzilli 已提交
123 124 125

	g           *G     // the goroutine being stacktraced, nil if we are stacktracing a goroutine-less thread
	g0_sched_sp uint64 // value of g0.sched.sp (see comments around its use)
A
Alessandro Arzilli 已提交
126 127 128 129 130 131 132
}

type savedLR struct {
	ptr uint64
	val uint64
}

A
aarzilli 已提交
133 134
func newStackIterator(bi *BinaryInfo, mem MemoryReadWriter, regs op.DwarfRegisters, stackhi uint64, stkbar []savedLR, stkbarPos int, g *G) *stackIterator {
	stackBarrierFunc := bi.LookupFunc["runtime.stackBarrier"] // stack barriers were removed in Go 1.9
135 136 137
	var stackBarrierPC uint64
	if stackBarrierFunc != nil && stkbar != nil {
		stackBarrierPC = stackBarrierFunc.Entry
138
		fn := bi.PCToFunc(regs.PC())
A
aarzilli 已提交
139
		if fn != nil && fn.Name == "runtime.stackBarrier" {
A
Alessandro Arzilli 已提交
140 141
			// We caught the goroutine as it's executing the stack barrier, we must
			// determine whether or not g.stackPos has already been incremented or not.
142
			if len(stkbar) > 0 && stkbar[stkbarPos].ptr < regs.SP() {
A
Alessandro Arzilli 已提交
143
				// runtime.stackBarrier has not incremented stkbarPos.
144
			} else if stkbarPos > 0 && stkbar[stkbarPos-1].ptr < regs.SP() {
A
Alessandro Arzilli 已提交
145 146 147
				// runtime.stackBarrier has incremented stkbarPos.
				stkbarPos--
			} else {
148
				return &stackIterator{err: fmt.Errorf("failed to unwind through stackBarrier at SP %x", regs.SP())}
A
Alessandro Arzilli 已提交
149 150 151 152
			}
		}
		stkbar = stkbar[stkbarPos:]
	}
A
aarzilli 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165
	var g0_sched_sp uint64
	systemstack := true
	if g != nil {
		systemstack = g.SystemStack
		g0var, _ := g.variable.fieldVariable("m").structMember("g0")
		if g0var != nil {
			g0, _ := g0var.parseG()
			if g0 != nil {
				g0_sched_sp = g0.SP
			}
		}
	}
	return &stackIterator{pc: regs.PC(), regs: regs, top: true, bi: bi, mem: mem, err: nil, atend: false, stackhi: stackhi, stackBarrierPC: stackBarrierPC, stkbar: stkbar, systemstack: systemstack, g: g, g0_sched_sp: g0_sched_sp}
166 167
}

D
Derek Parker 已提交
168
// Next points the iterator to the next stack frame.
A
aarzilli 已提交
169
func (it *stackIterator) Next() bool {
170 171 172
	if it.err != nil || it.atend {
		return false
	}
173
	callFrameRegs, ret, retaddr := it.advanceRegs()
174
	it.frame = it.newStackframe(ret, retaddr)
175

A
Alessandro Arzilli 已提交
176 177 178 179 180 181
	if it.stkbar != nil && it.frame.Ret == it.stackBarrierPC && it.frame.addrret == it.stkbar[0].ptr {
		// Skip stack barrier frames
		it.frame.Ret = it.stkbar[0].val
		it.stkbar = it.stkbar[1:]
	}

A
aarzilli 已提交
182
	if it.switchStack() {
183 184 185
		return true
	}

186 187 188 189 190
	if it.frame.Ret <= 0 {
		it.atend = true
		return true
	}

191 192
	it.top = false
	it.pc = it.frame.Ret
193
	it.regs = callFrameRegs
194 195 196
	return true
}

A
aarzilli 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
// asmcgocallSPOffsetSaveSlot is the offset from systemstack.SP where
// (goroutine.SP - StackHi) is saved in runtime.asmcgocall after the stack
// switch happens.
const asmcgocallSPOffsetSaveSlot = 0x28

// switchStack will use the current frame to determine if it's time to
// switch between the system stack and the goroutine stack or vice versa.
// Sets it.atend when the top of the stack is reached.
func (it *stackIterator) switchStack() bool {
	if it.frame.Current.Fn == nil {
		return false
	}
	switch it.frame.Current.Fn.Name {
	case "runtime.asmcgocall":
		if it.top || !it.systemstack {
			return false
		}

215 216 217 218
		// This function is called by a goroutine to execute a C function and
		// switches from the goroutine stack to the system stack.
		// Since we are unwinding the stack from callee to caller we have  switch
		// from the system stack to the goroutine stack.
A
aarzilli 已提交
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 264 265 266 267 268 269 270 271 272 273 274

		off, _ := readIntRaw(it.mem, uintptr(it.regs.SP()+asmcgocallSPOffsetSaveSlot), int64(it.bi.Arch.PtrSize())) // reads "offset of SP from StackHi" from where runtime.asmcgocall saved it
		oldsp := it.regs.SP()
		it.regs.Reg(it.regs.SPRegNum).Uint64Val = uint64(int64(it.stackhi) - off)

		// runtime.asmcgocall can also be called from inside the system stack,
		// in that case no stack switch actually happens
		if it.regs.SP() == oldsp {
			return false
		}
		it.systemstack = false

		// advances to the next frame in the call stack
		it.frame.addrret = uint64(int64(it.regs.SP()) + int64(it.bi.Arch.PtrSize()))
		it.frame.Ret, _ = readUintRaw(it.mem, uintptr(it.frame.addrret), int64(it.bi.Arch.PtrSize()))
		it.pc = it.frame.Ret

		it.top = false
		return true

	case "runtime.cgocallback_gofunc":
		// For a detailed description of how this works read the long comment at
		// the start of $GOROOT/src/runtime/cgocall.go and the source code of
		// runtime.cgocallback_gofunc in $GOROOT/src/runtime/asm_amd64.s
		//
		// When a C functions calls back into go it will eventually call into
		// runtime.cgocallback_gofunc which is the function that does the stack
		// switch from the system stack back into the goroutine stack
		// Since we are going backwards on the stack here we see the transition
		// as goroutine stack -> system stack.

		if it.top || it.systemstack {
			return false
		}

		if it.g0_sched_sp <= 0 {
			return false
		}
		// entering the system stack
		it.regs.Reg(it.regs.SPRegNum).Uint64Val = it.g0_sched_sp
		// reads the previous value of g0.sched.sp that runtime.cgocallback_gofunc saved on the stack
		it.g0_sched_sp, _ = readUintRaw(it.mem, uintptr(it.regs.SP()), int64(it.bi.Arch.PtrSize()))
		it.top = false
		callFrameRegs, ret, retaddr := it.advanceRegs()
		frameOnSystemStack := it.newStackframe(ret, retaddr)
		it.pc = frameOnSystemStack.Ret
		it.regs = callFrameRegs
		it.systemstack = true
		return true

	case "runtime.goexit", "runtime.rt0_go", "runtime.mcall":
		// Look for "top of stack" functions.
		it.atend = true
		return true

	default:
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
		if it.systemstack && it.top && it.g != nil && strings.HasPrefix(it.frame.Current.Fn.Name, "runtime.") {
			// The runtime switches to the system stack in multiple places.
			// This usually happens through a call to runtime.systemstack but there
			// are functions that switch to the system stack manually (for example
			// runtime.morestack).
			// Since we are only interested in printing the system stack for cgo
			// calls we switch directly to the goroutine stack if we detect that the
			// function at the top of the stack is a runtime function.
			it.systemstack = false
			it.top = false
			it.pc = it.g.PC
			it.regs.Reg(it.regs.SPRegNum).Uint64Val = it.g.SP
			it.regs.Reg(it.regs.BPRegNum).Uint64Val = it.g.BP
			return true
		}

A
aarzilli 已提交
291 292 293 294
		return false
	}
}

D
Derek Parker 已提交
295
// Frame returns the frame the iterator is pointing at.
A
aarzilli 已提交
296
func (it *stackIterator) Frame() Stackframe {
297 298 299
	return it.frame
}

D
Derek Parker 已提交
300
// Err returns the error encountered during stack iteration.
A
aarzilli 已提交
301
func (it *stackIterator) Err() error {
302 303 304
	return it.err
}

305 306 307 308 309 310 311 312 313
// frameBase calculates the frame base pseudo-register for DWARF for fn and
// the current frame.
func (it *stackIterator) frameBase(fn *Function) int64 {
	rdr := it.bi.dwarf.Reader()
	rdr.Seek(fn.offset)
	e, err := rdr.Next()
	if err != nil {
		return 0
	}
314
	fb, _, _, _ := it.bi.Location(e, dwarf.AttrFrameBase, it.pc, it.regs)
315 316 317
	return fb
}

318
func (it *stackIterator) newStackframe(ret, retaddr uint64) Stackframe {
319
	if retaddr == 0 {
320 321
		it.err = NullAddrError{}
		return Stackframe{}
322
	}
323 324 325 326
	f, l, fn := it.bi.PCToLine(it.pc)
	if fn == nil {
		f = "?"
		l = -1
327 328
	} else {
		it.regs.FrameBase = it.frameBase(fn)
329
	}
A
aarzilli 已提交
330
	r := Stackframe{Current: Location{PC: it.pc, File: f, Line: l, Fn: fn}, Regs: it.regs, Ret: ret, addrret: retaddr, stackHi: it.stackhi, SystemStack: it.systemstack}
331
	if !it.top {
A
aarzilli 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
		fnname := ""
		if r.Current.Fn != nil {
			fnname = r.Current.Fn.Name
		}
		switch fnname {
		case "runtime.mstart", "runtime.systemstack_switch":
			// these frames are inserted by runtime.systemstack and there is no CALL
			// instruction to look for at pc - 1
			r.Call = r.Current
		default:
			r.Call.File, r.Call.Line, r.Call.Fn = it.bi.PCToLine(it.pc - 1)
			if r.Call.Fn == nil {
				r.Call.File = "?"
				r.Call.Line = -1
			}
			r.Call.PC = r.Current.PC
348
		}
349 350 351
	} else {
		r.Call = r.Current
	}
352
	return r
353 354
}

A
aarzilli 已提交
355
func (it *stackIterator) stacktrace(depth int) ([]Stackframe, error) {
356 357 358
	if depth < 0 {
		return nil, errors.New("negative maximum stack depth")
	}
359
	frames := make([]Stackframe, 0, depth+1)
360 361 362
	for it.Next() {
		frames = append(frames, it.Frame())
		if len(frames) >= depth+1 {
A
aarzilli 已提交
363 364
			break
		}
365 366
	}
	if err := it.Err(); err != nil {
367 368 369 370
		if len(frames) == 0 {
			return nil, err
		}
		frames = append(frames, Stackframe{Err: err})
371
	}
372
	return frames, nil
373
}
374 375 376 377

// advanceRegs calculates it.callFrameRegs using it.regs and the frame
// descriptor entry for the current stack frame.
// it.regs.CallFrameCFA is updated.
378
func (it *stackIterator) advanceRegs() (callFrameRegs op.DwarfRegisters, ret uint64, retaddr uint64) {
379 380 381
	fde, err := it.bi.frameEntries.FDEForPC(it.pc)
	var framectx *frame.FrameContext
	if _, nofde := err.(*frame.NoFDEForPCError); nofde {
A
aarzilli 已提交
382
		framectx = it.bi.Arch.FixFrameUnwindContext(nil, it.pc, it.bi)
383
	} else {
A
aarzilli 已提交
384
		framectx = it.bi.Arch.FixFrameUnwindContext(fde.EstablishFrame(it.pc), it.pc, it.bi)
385 386 387 388 389
	}

	cfareg, err := it.executeFrameRegRule(0, framectx.CFA, 0)
	if cfareg == nil {
		it.err = fmt.Errorf("CFA becomes undefined at PC %#x", it.pc)
390
		return op.DwarfRegisters{}, 0, 0
391 392 393
	}
	it.regs.CFA = int64(cfareg.Uint64Val)

A
aarzilli 已提交
394
	callFrameRegs = op.DwarfRegisters{ByteOrder: it.regs.ByteOrder, PCRegNum: it.regs.PCRegNum, SPRegNum: it.regs.SPRegNum, BPRegNum: it.regs.BPRegNum}
395 396 397 398 399 400 401 402

	// According to the standard the compiler should be responsible for emitting
	// rules for the RSP register so that it can then be used to calculate CFA,
	// however neither Go nor GCC do this.
	// In the following line we copy GDB's behaviour by assuming this is
	// implicit.
	// See also the comment in dwarf2_frame_default_init in
	// $GDB_SOURCE/dwarf2-frame.c
403
	callFrameRegs.AddReg(uint64(amd64DwarfSPRegNum), cfareg)
404 405 406

	for i, regRule := range framectx.Regs {
		reg, err := it.executeFrameRegRule(i, regRule, it.regs.CFA)
407
		callFrameRegs.AddReg(i, reg)
408 409 410 411 412 413 414 415 416 417 418 419 420
		if i == framectx.RetAddrReg {
			if reg == nil {
				if err == nil {
					err = fmt.Errorf("Undefined return address at %#x", it.pc)
				}
				it.err = err
			} else {
				ret = reg.Uint64Val
			}
			retaddr = uint64(it.regs.CFA + regRule.Offset)
		}
	}

421
	return callFrameRegs, ret, retaddr
422 423 424 425 426 427 428 429 430
}

func (it *stackIterator) executeFrameRegRule(regnum uint64, rule frame.DWRule, cfa int64) (*op.DwarfRegister, error) {
	switch rule.Rule {
	default:
		fallthrough
	case frame.RuleUndefined:
		return nil, nil
	case frame.RuleSameVal:
A
aarzilli 已提交
431 432
		reg := *it.regs.Reg(regnum)
		return &reg, nil
433 434 435 436 437 438 439
	case frame.RuleOffset:
		return it.readRegisterAt(regnum, uint64(cfa+rule.Offset))
	case frame.RuleValOffset:
		return op.DwarfRegisterFromUint64(uint64(cfa + rule.Offset)), nil
	case frame.RuleRegister:
		return it.regs.Reg(rule.Reg), nil
	case frame.RuleExpression:
440
		v, _, err := op.ExecuteStackProgram(it.regs, rule.Expression)
441 442 443 444 445
		if err != nil {
			return nil, err
		}
		return it.readRegisterAt(regnum, uint64(v))
	case frame.RuleValExpression:
446
		v, _, err := op.ExecuteStackProgram(it.regs, rule.Expression)
447 448 449 450 451 452 453 454 455 456 457
		if err != nil {
			return nil, err
		}
		return op.DwarfRegisterFromUint64(uint64(v)), nil
	case frame.RuleArchitectural:
		return nil, errors.New("architectural frame rules are unsupported")
	case frame.RuleCFA:
		if it.regs.Reg(rule.Reg) == nil {
			return nil, nil
		}
		return op.DwarfRegisterFromUint64(uint64(int64(it.regs.Uint64Val(rule.Reg)) + rule.Offset)), nil
A
aarzilli 已提交
458 459 460
	case frame.RuleFramePointer:
		curReg := it.regs.Reg(rule.Reg)
		if curReg == nil {
461 462
			return nil, nil
		}
A
aarzilli 已提交
463 464 465 466 467 468
		if curReg.Uint64Val <= uint64(cfa) {
			return it.readRegisterAt(regnum, curReg.Uint64Val)
		} else {
			newReg := *curReg
			return &newReg, nil
		}
469 470 471 472 473 474 475 476 477 478 479
	}
}

func (it *stackIterator) readRegisterAt(regnum uint64, addr uint64) (*op.DwarfRegister, error) {
	buf := make([]byte, it.bi.Arch.RegSize(regnum))
	_, err := it.mem.ReadMemory(buf, uintptr(addr))
	if err != nil {
		return nil, err
	}
	return op.DwarfRegisterFromBytes(buf), nil
}