2015-06-12 19:49:23 +00:00
|
|
|
package proc
|
2014-10-25 15:48:14 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-11-24 23:27:56 +00:00
|
|
|
"debug/dwarf"
|
2015-04-09 14:53:02 +00:00
|
|
|
"debug/gosym"
|
2014-10-25 15:48:14 +00:00
|
|
|
"encoding/binary"
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/derekparker/delve/dwarf/op"
|
2014-12-31 21:13:28 +00:00
|
|
|
"github.com/derekparker/delve/dwarf/reader"
|
2014-10-25 15:48:14 +00:00
|
|
|
)
|
|
|
|
|
2015-02-02 07:13:42 +00:00
|
|
|
const (
|
2015-04-22 13:18:25 +00:00
|
|
|
maxVariableRecurse = 1 // How far to recurse when evaluating nested types.
|
|
|
|
maxArrayValues = 64 // Max value for reading large arrays.
|
2015-09-20 06:27:25 +00:00
|
|
|
maxErrCount = 3 // Max number of read errors to accept while evaluating slices, arrays and structs
|
2015-04-19 22:11:33 +00:00
|
|
|
|
|
|
|
ChanRecv = "chan receive"
|
|
|
|
ChanSend = "chan send"
|
2015-02-02 07:13:42 +00:00
|
|
|
)
|
|
|
|
|
2015-04-22 13:18:25 +00:00
|
|
|
// Represents an evaluated variable.
|
2014-10-25 15:48:14 +00:00
|
|
|
type Variable struct {
|
|
|
|
Name string
|
|
|
|
Value string
|
|
|
|
Type string
|
|
|
|
}
|
|
|
|
|
2015-04-22 13:18:25 +00:00
|
|
|
// Represents a runtime M (OS thread) structure.
|
2014-11-27 02:35:53 +00:00
|
|
|
type M struct {
|
2015-04-22 13:18:25 +00:00
|
|
|
procid int // Thread ID or port.
|
|
|
|
spinning uint8 // Busy looping.
|
|
|
|
blocked uint8 // Waiting on futex / semaphore.
|
|
|
|
curg uintptr // Current G running on this thread.
|
2014-11-27 02:35:53 +00:00
|
|
|
}
|
|
|
|
|
2015-09-17 17:42:05 +00:00
|
|
|
const (
|
|
|
|
// G status, from: src/runtime/runtime2.go
|
|
|
|
Gidle uint64 = iota // 0
|
|
|
|
Grunnable // 1 runnable and on a run queue
|
|
|
|
Grunning // 2
|
|
|
|
Gsyscall // 3
|
|
|
|
Gwaiting // 4
|
|
|
|
Gmoribund_unused // 5 currently unused, but hardcoded in gdb scripts
|
|
|
|
Gdead // 6
|
|
|
|
Genqueue // 7 Only the Gscanenqueue is used.
|
|
|
|
Gcopystack // 8 in this state when newstack is moving the stack
|
|
|
|
)
|
|
|
|
|
2015-04-22 13:18:25 +00:00
|
|
|
// Represents a runtime G (goroutine) structure (at least the
|
|
|
|
// fields that Delve is interested in).
|
2015-03-28 01:12:07 +00:00
|
|
|
type G struct {
|
2015-04-22 13:18:25 +00:00
|
|
|
Id int // Goroutine ID
|
|
|
|
PC uint64 // PC of goroutine when it was parked.
|
|
|
|
SP uint64 // SP of goroutine when it was parked.
|
|
|
|
GoPC uint64 // PC of 'go' statement that created this goroutine.
|
|
|
|
WaitReason string // Reason for goroutine being parked.
|
2015-09-17 17:42:05 +00:00
|
|
|
Status uint64
|
2015-04-22 13:18:25 +00:00
|
|
|
|
|
|
|
// Information on goroutine location.
|
|
|
|
File string
|
|
|
|
Line int
|
|
|
|
Func *gosym.Func
|
2015-05-09 17:44:38 +00:00
|
|
|
|
|
|
|
// PC of entry to top-most deferred function.
|
|
|
|
DeferPC uint64
|
2015-06-17 17:11:57 +00:00
|
|
|
|
|
|
|
// Thread that this goroutine is currently allocated to
|
|
|
|
thread *Thread
|
2015-04-19 22:11:33 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
// Scope for variable evaluation
|
|
|
|
type EvalScope struct {
|
|
|
|
Thread *Thread
|
|
|
|
PC uint64
|
|
|
|
CFA int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *EvalScope) DwarfReader() *reader.Reader {
|
|
|
|
return scope.Thread.dbp.DwarfReader()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *EvalScope) Type(offset dwarf.Offset) (dwarf.Type, error) {
|
|
|
|
return scope.Thread.dbp.dwarf.Type(offset)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *EvalScope) PtrSize() int {
|
|
|
|
return scope.Thread.dbp.arch.PtrSize()
|
|
|
|
}
|
|
|
|
|
2015-04-22 13:18:25 +00:00
|
|
|
// Returns whether the goroutine is blocked on
|
|
|
|
// a channel read operation.
|
2015-04-19 22:11:33 +00:00
|
|
|
func (g *G) ChanRecvBlocked() bool {
|
|
|
|
return g.WaitReason == ChanRecv
|
|
|
|
}
|
|
|
|
|
|
|
|
// chanRecvReturnAddr returns the address of the return from a channel read.
|
2015-06-20 22:54:52 +00:00
|
|
|
func (g *G) chanRecvReturnAddr(dbp *Process) (uint64, error) {
|
2015-04-19 22:11:33 +00:00
|
|
|
locs, err := dbp.stacktrace(g.PC, g.SP, 4)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
topLoc := locs[len(locs)-1]
|
2015-09-17 08:42:34 +00:00
|
|
|
return topLoc.Current.PC, nil
|
2015-03-28 01:12:07 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 18:55:42 +00:00
|
|
|
// NoGError returned when a G could not be found
|
|
|
|
// for a specific thread.
|
2015-04-19 22:11:33 +00:00
|
|
|
type NoGError struct {
|
|
|
|
tid int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ng NoGError) Error() string {
|
|
|
|
return fmt.Sprintf("no G executing on thread %d", ng.tid)
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func parseG(thread *Thread, gaddr uint64, deref bool) (*G, error) {
|
2015-06-11 20:17:56 +00:00
|
|
|
initialInstructions := make([]byte, thread.dbp.arch.PtrSize()+1)
|
|
|
|
initialInstructions[0] = op.DW_OP_addr
|
|
|
|
binary.LittleEndian.PutUint64(initialInstructions[1:], gaddr)
|
|
|
|
if deref {
|
|
|
|
gaddrbytes, err := thread.readMemory(uintptr(gaddr), thread.dbp.arch.PtrSize())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error derefing *G %s", err)
|
|
|
|
}
|
|
|
|
initialInstructions = append([]byte{op.DW_OP_addr}, gaddrbytes...)
|
|
|
|
gaddr = binary.LittleEndian.Uint64(gaddrbytes)
|
|
|
|
if gaddr == 0 {
|
|
|
|
return nil, NoGError{tid: thread.Id}
|
|
|
|
}
|
2015-04-19 22:11:33 +00:00
|
|
|
}
|
2014-11-08 14:02:31 +00:00
|
|
|
|
2015-05-27 17:16:45 +00:00
|
|
|
rdr := thread.dbp.DwarfReader()
|
2015-05-09 15:27:06 +00:00
|
|
|
rdr.Seek(0)
|
2015-05-09 17:44:38 +00:00
|
|
|
entry, err := rdr.SeekToTypeNamed("runtime.g")
|
2015-04-19 22:11:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
|
2015-05-09 17:44:38 +00:00
|
|
|
// Parse defer
|
|
|
|
deferAddr, err := rdr.AddrForMember("_defer", initialInstructions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var deferPC uint64
|
|
|
|
// Dereference *defer pointer
|
2015-05-27 17:16:45 +00:00
|
|
|
deferAddrBytes, err := thread.readMemory(uintptr(deferAddr), thread.dbp.arch.PtrSize())
|
2015-05-09 17:44:38 +00:00
|
|
|
if err != nil {
|
2015-06-11 20:17:56 +00:00
|
|
|
return nil, fmt.Errorf("error derefing defer %s", err)
|
2015-05-09 17:44:38 +00:00
|
|
|
}
|
|
|
|
if binary.LittleEndian.Uint64(deferAddrBytes) != 0 {
|
|
|
|
initialDeferInstructions := append([]byte{op.DW_OP_addr}, deferAddrBytes...)
|
|
|
|
_, err = rdr.SeekToTypeNamed("runtime._defer")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
deferPCAddr, err := rdr.AddrForMember("fn", initialDeferInstructions)
|
|
|
|
deferPC, err = thread.readUintRaw(uintptr(deferPCAddr), 8)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
deferPC, err = thread.readUintRaw(uintptr(deferPC), 8)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2015-06-11 20:17:56 +00:00
|
|
|
|
|
|
|
// Let's parse all of the members we care about in order so that
|
|
|
|
// we don't have to spend any extra time seeking.
|
|
|
|
|
|
|
|
err = rdr.SeekToEntry(entry)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-09 15:27:06 +00:00
|
|
|
// Parse sched
|
|
|
|
schedAddr, err := rdr.AddrForMember("sched", initialInstructions)
|
2015-04-19 22:11:33 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return nil, err
|
2015-04-19 22:11:33 +00:00
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
// From sched, let's parse PC and SP.
|
|
|
|
sp, err := thread.readUintRaw(uintptr(schedAddr), 8)
|
2014-11-08 14:02:31 +00:00
|
|
|
if err != nil {
|
2015-03-28 01:12:07 +00:00
|
|
|
return nil, err
|
2014-11-26 02:37:43 +00:00
|
|
|
}
|
2015-05-27 17:16:45 +00:00
|
|
|
pc, err := thread.readUintRaw(uintptr(schedAddr+uint64(thread.dbp.arch.PtrSize())), 8)
|
2015-04-19 22:11:33 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return nil, err
|
2015-04-19 22:11:33 +00:00
|
|
|
}
|
2015-09-17 17:42:05 +00:00
|
|
|
// Parse atomicstatus
|
|
|
|
atomicStatusAddr, err := rdr.AddrForMember("atomicstatus", initialInstructions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
atomicStatus, err := thread.readUintRaw(uintptr(atomicStatusAddr), 4)
|
2015-05-09 15:27:06 +00:00
|
|
|
// Parse goid
|
|
|
|
goidAddr, err := rdr.AddrForMember("goid", initialInstructions)
|
2015-04-19 22:11:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
goid, err := thread.readIntRaw(uintptr(goidAddr), 8)
|
2015-04-19 22:11:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
// Parse waitreason
|
|
|
|
waitReasonAddr, err := rdr.AddrForMember("waitreason", initialInstructions)
|
2014-11-26 02:37:43 +00:00
|
|
|
if err != nil {
|
2015-03-28 01:12:07 +00:00
|
|
|
return nil, err
|
2014-11-08 14:02:31 +00:00
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
waitreason, err := thread.readString(uintptr(waitReasonAddr))
|
2014-11-08 14:02:31 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return nil, err
|
2014-11-08 14:02:31 +00:00
|
|
|
}
|
2015-05-09 15:27:06 +00:00
|
|
|
// Parse gopc
|
|
|
|
gopcAddr, err := rdr.AddrForMember("gopc", initialInstructions)
|
2014-11-26 02:37:43 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
gopc, err := thread.readUintRaw(uintptr(gopcAddr), 8)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-11-26 02:37:43 +00:00
|
|
|
}
|
2015-04-19 22:11:33 +00:00
|
|
|
|
2015-09-17 03:59:30 +00:00
|
|
|
f, l, fn := thread.dbp.goSymTable.PCToLine(pc)
|
2015-04-09 14:53:02 +00:00
|
|
|
g := &G{
|
2015-05-09 15:27:06 +00:00
|
|
|
Id: int(goid),
|
|
|
|
GoPC: gopc,
|
|
|
|
PC: pc,
|
|
|
|
SP: sp,
|
2015-04-19 22:11:33 +00:00
|
|
|
File: f,
|
|
|
|
Line: l,
|
|
|
|
Func: fn,
|
|
|
|
WaitReason: waitreason,
|
2015-05-09 17:44:38 +00:00
|
|
|
DeferPC: deferPC,
|
2015-09-17 17:42:05 +00:00
|
|
|
Status: atomicStatus,
|
2015-04-09 14:53:02 +00:00
|
|
|
}
|
|
|
|
return g, nil
|
2014-11-08 14:02:31 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 19:04:14 +00:00
|
|
|
// Returns the value of the named variable.
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) EvalVariable(name string) (*Variable, error) {
|
|
|
|
reader := scope.DwarfReader()
|
2014-12-03 05:30:39 +00:00
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
_, err := reader.SeekToFunction(scope.PC)
|
2014-12-31 13:34:41 +00:00
|
|
|
if err != nil {
|
2014-12-02 22:42:15 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-11-11 03:26:13 +00:00
|
|
|
|
2014-12-31 21:13:28 +00:00
|
|
|
varName := name
|
|
|
|
memberName := ""
|
2014-12-03 05:30:39 +00:00
|
|
|
if strings.Contains(name, ".") {
|
|
|
|
idx := strings.Index(name, ".")
|
2014-12-31 21:13:28 +00:00
|
|
|
varName = name[:idx]
|
|
|
|
memberName = name[idx+1:]
|
2014-12-03 05:30:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-31 13:34:41 +00:00
|
|
|
for entry, err := reader.NextScopeVariable(); entry != nil; entry, err = reader.NextScopeVariable() {
|
2014-11-11 03:26:13 +00:00
|
|
|
if err != nil {
|
2014-12-31 13:34:41 +00:00
|
|
|
return nil, err
|
2014-11-11 03:26:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
n, ok := entry.Val(dwarf.AttrName).(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-12-31 21:13:28 +00:00
|
|
|
if n == varName {
|
|
|
|
if len(memberName) == 0 {
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.extractVariableFromEntry(entry)
|
2014-12-31 21:13:28 +00:00
|
|
|
}
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.evaluateStructMember(entry, reader, memberName)
|
2014-11-11 03:26:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-08 21:10:37 +00:00
|
|
|
// Attempt to evaluate name as a package variable.
|
|
|
|
if memberName != "" {
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.dbp.EvalPackageVariable(name)
|
2015-08-08 21:10:37 +00:00
|
|
|
} else {
|
2015-08-28 20:06:29 +00:00
|
|
|
_, _, fn := scope.Thread.dbp.PCToLine(scope.PC)
|
|
|
|
if fn != nil {
|
|
|
|
v, err := scope.Thread.dbp.EvalPackageVariable(fn.PackageName() + "." + name)
|
2015-08-08 21:10:37 +00:00
|
|
|
if err == nil {
|
|
|
|
v.Name = name
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-31 13:34:41 +00:00
|
|
|
return nil, fmt.Errorf("could not find symbol value for %s", name)
|
2014-11-11 03:26:13 +00:00
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-02-04 04:20:25 +00:00
|
|
|
// LocalVariables returns all local variables from the current function scope.
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) LocalVariables() ([]*Variable, error) {
|
|
|
|
return scope.variablesByTag(dwarf.TagVariable)
|
2015-02-04 04:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FunctionArguments returns the name, value, and type of all current function arguments.
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) FunctionArguments() ([]*Variable, error) {
|
|
|
|
return scope.variablesByTag(dwarf.TagFormalParameter)
|
2015-02-04 04:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PackageVariables returns the name, value, and type of all package variables in the application.
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) PackageVariables() ([]*Variable, error) {
|
|
|
|
reader := scope.DwarfReader()
|
2015-02-04 04:20:25 +00:00
|
|
|
|
|
|
|
vars := make([]*Variable, 0)
|
|
|
|
|
|
|
|
for entry, err := reader.NextPackageVariable(); entry != nil; entry, err = reader.NextPackageVariable() {
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore errors trying to extract values
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractVariableFromEntry(entry)
|
2015-02-04 04:20:25 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
vars = append(vars, val)
|
|
|
|
}
|
|
|
|
|
|
|
|
return vars, nil
|
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (dbp *Process) EvalPackageVariable(name string) (*Variable, error) {
|
|
|
|
reader := dbp.DwarfReader()
|
|
|
|
scope := &EvalScope{Thread: dbp.CurrentThread, PC: 0, CFA: 0}
|
2015-07-23 17:08:28 +00:00
|
|
|
|
|
|
|
for entry, err := reader.NextPackageVariable(); entry != nil; entry, err = reader.NextPackageVariable() {
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
n, ok := entry.Val(dwarf.AttrName).(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if n == name {
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.extractVariableFromEntry(entry)
|
2015-07-23 17:08:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("could not find symbol value for %s", name)
|
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) evaluateStructMember(parentEntry *dwarf.Entry, rdr *reader.Reader, memberName string) (*Variable, error) {
|
|
|
|
parentAddr, err := scope.extractVariableDataAddress(parentEntry, rdr)
|
2014-12-03 05:30:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-31 21:13:28 +00:00
|
|
|
|
2015-01-02 16:09:32 +00:00
|
|
|
// Get parent variable name
|
2014-12-31 21:13:28 +00:00
|
|
|
parentName, ok := parentEntry.Val(dwarf.AttrName).(string)
|
2014-12-03 05:30:39 +00:00
|
|
|
if !ok {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("unable to retrive variable name")
|
2014-12-03 05:30:39 +00:00
|
|
|
}
|
2014-12-31 21:13:28 +00:00
|
|
|
|
|
|
|
// Seek reader to the type information so members can be iterated
|
2015-05-09 16:25:26 +00:00
|
|
|
_, err = rdr.SeekToType(parentEntry, true, true)
|
2014-12-03 05:30:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-12-31 21:13:28 +00:00
|
|
|
|
|
|
|
// Iterate to find member by name
|
2015-05-09 16:25:26 +00:00
|
|
|
for memberEntry, err := rdr.NextMemberVariable(); memberEntry != nil; memberEntry, err = rdr.NextMemberVariable() {
|
2014-12-31 21:13:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
name, ok := memberEntry.Val(dwarf.AttrName).(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if name == memberName {
|
2015-01-02 16:09:32 +00:00
|
|
|
// Nil ptr, wait until here to throw a nil pointer error to prioritize no such member error
|
2015-01-01 09:00:44 +00:00
|
|
|
if parentAddr == 0 {
|
|
|
|
return nil, fmt.Errorf("%s is nil", parentName)
|
|
|
|
}
|
|
|
|
|
2015-05-09 16:25:26 +00:00
|
|
|
memberInstr, err := rdr.InstructionsForEntry(memberEntry)
|
2014-12-31 21:13:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
offset, ok := memberEntry.Val(dwarf.AttrType).(dwarf.Offset)
|
|
|
|
if !ok {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("type assertion failed")
|
2014-12-31 21:13:28 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
t, err := scope.Type(offset)
|
2014-12-31 21:13:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
baseAddr := make([]byte, 8)
|
|
|
|
binary.LittleEndian.PutUint64(baseAddr, uint64(parentAddr))
|
|
|
|
|
|
|
|
parentInstructions := append([]byte{op.DW_OP_addr}, baseAddr...)
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractValue(append(parentInstructions, memberInstr...), 0, t, true)
|
2014-12-31 21:13:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Variable{Name: strings.Join([]string{parentName, memberName}, "."), Type: t.String(), Value: val}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
return nil, fmt.Errorf("%s has no member %s", parentName, memberName)
|
2014-12-03 05:30:39 +00:00
|
|
|
}
|
|
|
|
|
2014-12-30 17:57:31 +00:00
|
|
|
// Extracts the name, type, and value of a variable from a dwarf entry
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) extractVariableFromEntry(entry *dwarf.Entry) (*Variable, error) {
|
2014-12-30 17:57:31 +00:00
|
|
|
if entry == nil {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("invalid entry")
|
2014-12-30 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if entry.Tag != dwarf.TagFormalParameter && entry.Tag != dwarf.TagVariable {
|
|
|
|
return nil, fmt.Errorf("invalid entry tag, only supports FormalParameter and Variable, got %s", entry.Tag.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
n, ok := entry.Val(dwarf.AttrName).(string)
|
|
|
|
if !ok {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("type assertion failed")
|
2014-12-30 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
offset, ok := entry.Val(dwarf.AttrType).(dwarf.Offset)
|
|
|
|
if !ok {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("type assertion failed")
|
2014-12-30 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
t, err := scope.Type(offset)
|
2014-12-30 17:57:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
instructions, ok := entry.Val(dwarf.AttrLocation).([]byte)
|
|
|
|
if !ok {
|
2015-05-04 22:31:13 +00:00
|
|
|
return nil, fmt.Errorf("type assertion failed")
|
2014-12-30 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractValue(instructions, 0, t, true)
|
2014-12-30 17:57:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Variable{Name: n, Type: t.String(), Value: val}, nil
|
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
// Extracts the address of a variable, dereferencing any pointers
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) extractVariableDataAddress(entry *dwarf.Entry, rdr *reader.Reader) (int64, error) {
|
2015-05-09 16:25:26 +00:00
|
|
|
instructions, err := rdr.InstructionsForEntry(entry)
|
2015-01-01 09:00:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
address, err := op.ExecuteStackProgram(scope.CFA, instructions)
|
2015-01-01 09:00:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2015-01-02 16:09:32 +00:00
|
|
|
// Dereference pointers to get down the concrete type
|
2015-05-09 16:25:26 +00:00
|
|
|
for typeEntry, err := rdr.SeekToType(entry, true, false); typeEntry != nil; typeEntry, err = rdr.SeekToType(typeEntry, true, false) {
|
2014-12-31 07:37:27 +00:00
|
|
|
if err != nil {
|
2015-01-01 09:00:44 +00:00
|
|
|
return 0, err
|
2014-12-31 07:37:27 +00:00
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
if typeEntry.Tag != dwarf.TagPointerType {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
ptraddress := uintptr(address)
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
ptr, err := scope.Thread.readMemory(ptraddress, scope.PtrSize())
|
2014-12-31 07:37:27 +00:00
|
|
|
if err != nil {
|
2015-01-01 09:00:44 +00:00
|
|
|
return 0, err
|
2014-12-31 07:37:27 +00:00
|
|
|
}
|
2015-01-01 09:00:44 +00:00
|
|
|
address = int64(binary.LittleEndian.Uint64(ptr))
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
return address, nil
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
// Extracts the value from the instructions given in the DW_AT_location entry.
|
|
|
|
// We execute the stack program described in the DW_OP_* instruction stream, and
|
|
|
|
// then grab the value from the other processes memory.
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) extractValue(instructions []byte, addr int64, typ interface{}, printStructName bool) (string, error) {
|
|
|
|
return scope.extractValueInternal(instructions, addr, typ, printStructName, 0)
|
2015-02-02 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) extractValueInternal(instructions []byte, addr int64, typ interface{}, printStructName bool, recurseLevel int) (string, error) {
|
2015-01-01 09:00:44 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
if addr == 0 {
|
2015-08-28 20:06:29 +00:00
|
|
|
addr, err = op.ExecuteStackProgram(scope.CFA, instructions)
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a user defined type, find the
|
|
|
|
// underlying concrete type and use that.
|
2015-01-21 05:47:59 +00:00
|
|
|
for {
|
|
|
|
if tt, ok := typ.(*dwarf.TypedefType); ok {
|
|
|
|
typ = tt.Type
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
ptraddress := uintptr(addr)
|
2014-10-25 15:48:14 +00:00
|
|
|
switch t := typ.(type) {
|
|
|
|
case *dwarf.PtrType:
|
2015-08-28 20:06:29 +00:00
|
|
|
ptr, err := scope.Thread.readMemory(ptraddress, scope.PtrSize())
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2015-01-01 09:00:44 +00:00
|
|
|
|
|
|
|
intaddr := int64(binary.LittleEndian.Uint64(ptr))
|
|
|
|
if intaddr == 0 {
|
|
|
|
return fmt.Sprintf("%s nil", t.String()), nil
|
|
|
|
}
|
|
|
|
|
2015-02-02 07:13:42 +00:00
|
|
|
// Don't increase the recursion level when dereferencing pointers
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractValueInternal(nil, intaddr, t.Type, printStructName, recurseLevel)
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2015-01-01 09:00:44 +00:00
|
|
|
return fmt.Sprintf("*%s", val), nil
|
2014-10-25 15:48:14 +00:00
|
|
|
case *dwarf.StructType:
|
2015-01-20 06:37:52 +00:00
|
|
|
switch {
|
|
|
|
case t.StructName == "string":
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readString(ptraddress)
|
2015-01-20 06:37:52 +00:00
|
|
|
case strings.HasPrefix(t.StructName, "[]"):
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.readSlice(ptraddress, t, recurseLevel)
|
2014-10-25 15:48:14 +00:00
|
|
|
default:
|
2014-10-25 16:13:02 +00:00
|
|
|
// Recursively call extractValue to grab
|
2014-10-25 15:48:14 +00:00
|
|
|
// the value of all the members of the struct.
|
2015-02-02 07:13:42 +00:00
|
|
|
if recurseLevel <= maxVariableRecurse {
|
2015-09-20 06:27:25 +00:00
|
|
|
errcount := 0
|
2015-02-02 07:13:42 +00:00
|
|
|
fields := make([]string, 0, len(t.Field))
|
2015-09-20 06:27:25 +00:00
|
|
|
for i, field := range t.Field {
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractValueInternal(nil, field.ByteOffset+addr, field.Type, printStructName, recurseLevel+1)
|
2015-02-02 07:13:42 +00:00
|
|
|
if err != nil {
|
2015-09-20 06:27:25 +00:00
|
|
|
errcount++
|
|
|
|
val = fmt.Sprintf("<unreadable: %s>", err.Error())
|
2015-02-02 07:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fields = append(fields, fmt.Sprintf("%s: %s", field.Name, val))
|
2015-09-20 06:27:25 +00:00
|
|
|
|
|
|
|
if errcount > maxErrCount {
|
|
|
|
fields = append(fields, fmt.Sprintf("...+%d more", len(t.Field)-i))
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
2015-02-02 07:13:42 +00:00
|
|
|
if printStructName {
|
|
|
|
return fmt.Sprintf("%s {%s}", t.StructName, strings.Join(fields, ", ")), nil
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("{%s}", strings.Join(fields, ", ")), nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
2015-02-02 07:13:42 +00:00
|
|
|
// no fields
|
2015-01-20 05:32:08 +00:00
|
|
|
if printStructName {
|
2015-02-02 07:13:42 +00:00
|
|
|
return fmt.Sprintf("%s {...}", t.StructName), nil
|
2015-01-20 05:32:08 +00:00
|
|
|
}
|
2015-02-02 07:13:42 +00:00
|
|
|
return "{...}", nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
case *dwarf.ArrayType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.readArray(ptraddress, t, recurseLevel)
|
2015-07-30 15:07:08 +00:00
|
|
|
case *dwarf.ComplexType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readComplex(ptraddress, t.ByteSize)
|
2014-10-25 15:48:14 +00:00
|
|
|
case *dwarf.IntType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readInt(ptraddress, t.ByteSize)
|
2015-01-20 03:18:17 +00:00
|
|
|
case *dwarf.UintType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readUint(ptraddress, t.ByteSize)
|
2014-10-25 15:48:14 +00:00
|
|
|
case *dwarf.FloatType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readFloat(ptraddress, t.ByteSize)
|
2015-01-20 03:18:17 +00:00
|
|
|
case *dwarf.BoolType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readBool(ptraddress)
|
2015-01-20 04:15:40 +00:00
|
|
|
case *dwarf.FuncType:
|
2015-08-28 20:06:29 +00:00
|
|
|
return scope.Thread.readFunctionPtr(ptraddress)
|
2015-01-21 05:47:59 +00:00
|
|
|
case *dwarf.VoidType:
|
|
|
|
return "(void)", nil
|
|
|
|
case *dwarf.UnspecifiedType:
|
|
|
|
return "(unknown)", nil
|
2015-01-20 04:15:40 +00:00
|
|
|
default:
|
|
|
|
fmt.Printf("Unknown type: %T\n", t)
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "", fmt.Errorf("could not find value for type %s", typ)
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readString(addr uintptr) (string, error) {
|
2015-01-19 23:25:08 +00:00
|
|
|
// string data structure is always two ptrs in size. Addr, followed by len
|
|
|
|
// http://research.swtch.com/godata
|
|
|
|
|
|
|
|
// read len
|
2015-05-27 17:16:45 +00:00
|
|
|
val, err := thread.readMemory(addr+uintptr(thread.dbp.arch.PtrSize()), thread.dbp.arch.PtrSize())
|
2015-01-19 23:25:08 +00:00
|
|
|
if err != nil {
|
2015-06-11 20:17:56 +00:00
|
|
|
return "", fmt.Errorf("could not read string len %s", err)
|
2015-01-19 23:25:08 +00:00
|
|
|
}
|
2015-04-29 17:07:27 +00:00
|
|
|
strlen := int(binary.LittleEndian.Uint64(val))
|
2015-09-20 06:27:25 +00:00
|
|
|
if strlen < 0 {
|
|
|
|
return "", fmt.Errorf("invalid length: %d", strlen)
|
|
|
|
}
|
|
|
|
|
|
|
|
count := strlen
|
|
|
|
if count > maxArrayValues {
|
|
|
|
count = maxArrayValues
|
|
|
|
}
|
2015-01-19 23:25:08 +00:00
|
|
|
|
|
|
|
// read addr
|
2015-05-27 17:16:45 +00:00
|
|
|
val, err = thread.readMemory(addr, thread.dbp.arch.PtrSize())
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
2015-06-11 20:17:56 +00:00
|
|
|
return "", fmt.Errorf("could not read string pointer %s", err)
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
addr = uintptr(binary.LittleEndian.Uint64(val))
|
2015-05-07 14:34:34 +00:00
|
|
|
if addr == 0 {
|
|
|
|
return "", nil
|
|
|
|
}
|
2015-01-16 21:30:22 +00:00
|
|
|
|
2015-09-20 06:27:25 +00:00
|
|
|
val, err = thread.readMemory(addr, count)
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
2015-06-11 20:17:56 +00:00
|
|
|
return "", fmt.Errorf("could not read string at %#v due to %s", addr, err)
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 06:27:25 +00:00
|
|
|
retstr := *(*string)(unsafe.Pointer(&val))
|
|
|
|
|
|
|
|
if count != strlen {
|
|
|
|
retstr = retstr + fmt.Sprintf("...+%d more", strlen-count)
|
|
|
|
}
|
|
|
|
|
|
|
|
return retstr, nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) readSlice(addr uintptr, t *dwarf.StructType, recurseLevel int) (string, error) {
|
2015-01-20 06:37:52 +00:00
|
|
|
var sliceLen, sliceCap int64
|
|
|
|
var arrayAddr uintptr
|
|
|
|
var arrayType dwarf.Type
|
|
|
|
for _, f := range t.Field {
|
|
|
|
switch f.Name {
|
|
|
|
case "array":
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.Thread.readMemory(addr+uintptr(f.ByteOffset), scope.PtrSize())
|
2015-01-20 06:37:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
arrayAddr = uintptr(binary.LittleEndian.Uint64(val))
|
|
|
|
// Dereference array type to get value type
|
|
|
|
ptrType, ok := f.Type.(*dwarf.PtrType)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("Invalid type %s in slice array", f.Type)
|
|
|
|
}
|
|
|
|
arrayType = ptrType.Type
|
|
|
|
case "len":
|
2015-08-28 20:06:29 +00:00
|
|
|
lstr, err := scope.extractValue(nil, int64(addr+uintptr(f.ByteOffset)), f.Type, true)
|
2015-01-20 06:37:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
sliceLen, err = strconv.ParseInt(lstr, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
case "cap":
|
2015-08-28 20:06:29 +00:00
|
|
|
cstr, err := scope.extractValue(nil, int64(addr+uintptr(f.ByteOffset)), f.Type, true)
|
2015-01-20 06:37:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
sliceCap, err = strconv.ParseInt(cstr, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stride := arrayType.Size()
|
|
|
|
if _, ok := arrayType.(*dwarf.PtrType); ok {
|
2015-08-28 20:06:29 +00:00
|
|
|
stride = int64(scope.PtrSize())
|
2015-01-20 06:37:52 +00:00
|
|
|
}
|
2015-08-28 20:06:29 +00:00
|
|
|
vals, err := scope.readArrayValues(arrayAddr, sliceLen, stride, arrayType, recurseLevel)
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2015-01-20 06:37:52 +00:00
|
|
|
return fmt.Sprintf("[]%s len: %d, cap: %d, [%s]", arrayType, sliceLen, sliceCap, strings.Join(vals, ",")), nil
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) readArray(addr uintptr, t *dwarf.ArrayType, recurseLevel int) (string, error) {
|
2015-01-21 05:47:59 +00:00
|
|
|
if t.Count > 0 {
|
2015-08-28 20:06:29 +00:00
|
|
|
vals, err := scope.readArrayValues(addr, t.Count, t.ByteSize/t.Count, t.Type, recurseLevel)
|
2015-01-21 05:47:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s [%s]", t, strings.Join(vals, ",")), nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
2015-01-21 05:47:59 +00:00
|
|
|
// because you can declare a zero-size array
|
|
|
|
return fmt.Sprintf("%s []", t), nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) readArrayValues(addr uintptr, count int64, stride int64, t dwarf.Type, recurseLevel int) ([]string, error) {
|
2015-01-20 05:32:08 +00:00
|
|
|
vals := make([]string, 0)
|
2015-09-20 06:27:25 +00:00
|
|
|
errcount := 0
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-01-20 06:37:52 +00:00
|
|
|
for i := int64(0); i < count; i++ {
|
2015-02-02 07:13:42 +00:00
|
|
|
// Cap number of elements
|
|
|
|
if i >= maxArrayValues {
|
|
|
|
vals = append(vals, fmt.Sprintf("...+%d more", count-maxArrayValues))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractValueInternal(nil, int64(addr+uintptr(i*stride)), t, false, recurseLevel+1)
|
2015-01-20 05:32:08 +00:00
|
|
|
if err != nil {
|
2015-09-20 06:27:25 +00:00
|
|
|
errcount++
|
|
|
|
val = fmt.Sprintf("<unreadable: %s>", err.Error())
|
2015-01-20 05:32:08 +00:00
|
|
|
}
|
|
|
|
vals = append(vals, val)
|
2015-09-20 06:27:25 +00:00
|
|
|
if errcount > maxErrCount {
|
|
|
|
vals = append(vals, fmt.Sprintf("...+%d more", count-i))
|
|
|
|
break
|
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
2015-01-20 06:37:52 +00:00
|
|
|
return vals, nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-07-30 15:07:08 +00:00
|
|
|
func (thread *Thread) readComplex(addr uintptr, size int64) (string, error) {
|
|
|
|
var fs int64
|
|
|
|
switch size {
|
|
|
|
case 8:
|
|
|
|
fs = 4
|
|
|
|
case 16:
|
|
|
|
fs = 8
|
|
|
|
default:
|
|
|
|
return "", fmt.Errorf("invalid size (%d) for complex type", size)
|
|
|
|
}
|
|
|
|
r, err := thread.readFloat(addr, fs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
i, err := thread.readFloat(addr+uintptr(fs), fs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("(%s, %si)", r, i), nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readInt(addr uintptr, size int64) (string, error) {
|
2015-05-09 15:27:06 +00:00
|
|
|
n, err := thread.readIntRaw(addr, size)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return strconv.FormatInt(n, 10), nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readIntRaw(addr uintptr, size int64) (int64, error) {
|
2015-01-20 03:18:17 +00:00
|
|
|
var n int64
|
2014-10-25 16:05:03 +00:00
|
|
|
|
2015-04-29 17:07:27 +00:00
|
|
|
val, err := thread.readMemory(addr, int(size))
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return 0, err
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2014-10-25 16:05:03 +00:00
|
|
|
switch size {
|
|
|
|
case 1:
|
2015-01-20 03:18:17 +00:00
|
|
|
n = int64(val[0])
|
2014-10-25 16:05:03 +00:00
|
|
|
case 2:
|
2015-01-20 03:18:17 +00:00
|
|
|
n = int64(binary.LittleEndian.Uint16(val))
|
2014-10-25 16:05:03 +00:00
|
|
|
case 4:
|
2015-01-20 03:18:17 +00:00
|
|
|
n = int64(binary.LittleEndian.Uint32(val))
|
2014-10-25 16:05:03 +00:00
|
|
|
case 8:
|
2015-01-20 03:18:17 +00:00
|
|
|
n = int64(binary.LittleEndian.Uint64(val))
|
2014-10-25 16:05:03 +00:00
|
|
|
}
|
2014-10-25 15:48:14 +00:00
|
|
|
|
2015-05-09 15:27:06 +00:00
|
|
|
return n, nil
|
2015-01-20 03:18:17 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readUint(addr uintptr, size int64) (string, error) {
|
2015-05-09 15:27:06 +00:00
|
|
|
n, err := thread.readUintRaw(addr, size)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return strconv.FormatUint(n, 10), nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readUintRaw(addr uintptr, size int64) (uint64, error) {
|
2015-01-20 03:18:17 +00:00
|
|
|
var n uint64
|
|
|
|
|
2015-04-29 17:07:27 +00:00
|
|
|
val, err := thread.readMemory(addr, int(size))
|
2015-01-20 03:18:17 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:27:06 +00:00
|
|
|
return 0, err
|
2015-01-20 03:18:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch size {
|
|
|
|
case 1:
|
|
|
|
n = uint64(val[0])
|
|
|
|
case 2:
|
|
|
|
n = uint64(binary.LittleEndian.Uint16(val))
|
|
|
|
case 4:
|
|
|
|
n = uint64(binary.LittleEndian.Uint32(val))
|
|
|
|
case 8:
|
|
|
|
n = uint64(binary.LittleEndian.Uint64(val))
|
|
|
|
}
|
|
|
|
|
2015-05-09 15:27:06 +00:00
|
|
|
return n, nil
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readFloat(addr uintptr, size int64) (string, error) {
|
2015-04-29 17:07:27 +00:00
|
|
|
val, err := thread.readMemory(addr, int(size))
|
2014-10-25 15:48:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
buf := bytes.NewBuffer(val)
|
|
|
|
|
2014-10-26 17:44:26 +00:00
|
|
|
switch size {
|
|
|
|
case 4:
|
|
|
|
n := float32(0)
|
|
|
|
binary.Read(buf, binary.LittleEndian, &n)
|
|
|
|
return strconv.FormatFloat(float64(n), 'f', -1, int(size)*8), nil
|
|
|
|
case 8:
|
|
|
|
n := float64(0)
|
|
|
|
binary.Read(buf, binary.LittleEndian, &n)
|
|
|
|
return strconv.FormatFloat(n, 'f', -1, int(size)*8), nil
|
|
|
|
}
|
|
|
|
|
2015-05-04 22:31:13 +00:00
|
|
|
return "", fmt.Errorf("could not read float")
|
2014-10-25 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readBool(addr uintptr) (string, error) {
|
2015-04-29 17:07:27 +00:00
|
|
|
val, err := thread.readMemory(addr, 1)
|
2015-01-20 03:18:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if val[0] == 0 {
|
|
|
|
return "false", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return "true", nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:51:23 +00:00
|
|
|
func (thread *Thread) readFunctionPtr(addr uintptr) (string, error) {
|
2015-05-27 17:16:45 +00:00
|
|
|
val, err := thread.readMemory(addr, thread.dbp.arch.PtrSize())
|
2015-01-20 04:15:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// dereference pointer to find function pc
|
|
|
|
addr = uintptr(binary.LittleEndian.Uint64(val))
|
2015-01-21 05:47:59 +00:00
|
|
|
if addr == 0 {
|
|
|
|
return "nil", nil
|
|
|
|
}
|
2015-01-20 04:15:40 +00:00
|
|
|
|
2015-05-27 17:16:45 +00:00
|
|
|
val, err = thread.readMemory(addr, thread.dbp.arch.PtrSize())
|
2015-01-20 04:15:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
funcAddr := binary.LittleEndian.Uint64(val)
|
2015-05-27 17:16:45 +00:00
|
|
|
fn := thread.dbp.goSymTable.PCToFunc(uint64(funcAddr))
|
2015-05-03 19:11:17 +00:00
|
|
|
if fn == nil {
|
|
|
|
return "", fmt.Errorf("could not find function for %#v", funcAddr)
|
2015-01-20 04:15:40 +00:00
|
|
|
}
|
|
|
|
|
2015-05-03 19:11:17 +00:00
|
|
|
return fn.Name, nil
|
2015-01-20 04:15:40 +00:00
|
|
|
}
|
|
|
|
|
2014-12-30 17:57:31 +00:00
|
|
|
// Fetches all variables of a specific type in the current function scope
|
2015-08-28 20:06:29 +00:00
|
|
|
func (scope *EvalScope) variablesByTag(tag dwarf.Tag) ([]*Variable, error) {
|
|
|
|
reader := scope.DwarfReader()
|
2014-12-30 17:57:31 +00:00
|
|
|
|
2015-08-28 20:06:29 +00:00
|
|
|
_, err := reader.SeekToFunction(scope.PC)
|
2014-12-31 13:34:41 +00:00
|
|
|
if err != nil {
|
2014-12-30 17:57:31 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
vars := make([]*Variable, 0)
|
|
|
|
|
2014-12-31 13:34:41 +00:00
|
|
|
for entry, err := reader.NextScopeVariable(); entry != nil; entry, err = reader.NextScopeVariable() {
|
2014-12-30 17:57:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry.Tag == tag {
|
2015-08-28 20:06:29 +00:00
|
|
|
val, err := scope.extractVariableFromEntry(entry)
|
2014-12-30 17:57:31 +00:00
|
|
|
if err != nil {
|
2015-01-20 03:18:17 +00:00
|
|
|
// skip variables that we can't parse yet
|
|
|
|
continue
|
2014-12-30 17:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vars = append(vars, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vars, nil
|
|
|
|
}
|