1 2 3 4 5 6 7 8 9 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 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
|
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package server
import (
"fmt"
"golang.org/x/debug"
"golang.org/x/debug/dwarf"
)
// value peeks the program's memory at the given address, parsing it as a value of type t.
func (s *Server) value(t dwarf.Type, addr uint64) (debug.Value, error) {
// readBasic reads the memory for a basic type of size n bytes.
readBasic := func(n int64) ([]byte, error) {
switch n {
case 1, 2, 4, 8, 16:
default:
return nil, fmt.Errorf("invalid size: %d", n)
}
buf := make([]byte, n)
if err := s.peek(uintptr(addr), buf); err != nil {
return nil, err
}
return buf, nil
}
switch t := t.(type) {
case *dwarf.CharType, *dwarf.IntType:
bs := t.Common().ByteSize
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading integer: %s", err)
}
x := s.arch.IntN(buf)
switch bs {
case 1:
return int8(x), nil
case 2:
return int16(x), nil
case 4:
return int32(x), nil
case 8:
return int64(x), nil
default:
return nil, fmt.Errorf("invalid integer size: %d", bs)
}
case *dwarf.UcharType, *dwarf.UintType, *dwarf.AddrType:
bs := t.Common().ByteSize
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading unsigned integer: %s", err)
}
x := s.arch.UintN(buf)
switch bs {
case 1:
return uint8(x), nil
case 2:
return uint16(x), nil
case 4:
return uint32(x), nil
case 8:
return uint64(x), nil
default:
return nil, fmt.Errorf("invalid unsigned integer size: %d", bs)
}
case *dwarf.BoolType:
bs := t.Common().ByteSize
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading boolean: %s", err)
}
for _, b := range buf {
if b != 0 {
return true, nil
}
}
return false, nil
case *dwarf.FloatType:
bs := t.Common().ByteSize
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading float: %s", err)
}
switch bs {
case 4:
return s.arch.Float32(buf), nil
case 8:
return s.arch.Float64(buf), nil
default:
return nil, fmt.Errorf("invalid float size: %d", bs)
}
case *dwarf.ComplexType:
bs := t.Common().ByteSize
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading complex: %s", err)
}
switch bs {
case 8:
return s.arch.Complex64(buf), nil
case 16:
return s.arch.Complex128(buf), nil
default:
return nil, fmt.Errorf("invalid complex size: %d", bs)
}
case *dwarf.PtrType:
bs := t.Common().ByteSize
if bs != int64(s.arch.PointerSize) {
return nil, fmt.Errorf("invalid pointer size: %d", bs)
}
buf, err := readBasic(bs)
if err != nil {
return nil, fmt.Errorf("reading pointer: %s", err)
}
return debug.Pointer{
TypeID: uint64(t.Type.Common().Offset),
Address: uint64(s.arch.Uintptr(buf)),
}, nil
case *dwarf.SliceType:
if s, err := s.peekSlice(t, addr); err != nil {
return nil, err
} else {
return s, nil
}
case *dwarf.ArrayType:
length := t.Count
stride := t.StrideBitSize
if stride%8 != 0 {
return nil, fmt.Errorf("array is not byte-aligned")
}
return debug.Array{
ElementTypeID: uint64(t.Type.Common().Offset),
Address: uint64(addr),
Length: uint64(length),
StrideBits: uint64(stride),
}, nil
case *dwarf.StructType:
fields := make([]debug.StructField, len(t.Field))
for i, field := range t.Field {
fields[i] = debug.StructField{
Name: field.Name,
Var: debug.Var{
TypeID: uint64(field.Type.Common().Offset),
Address: uint64(addr) + uint64(field.ByteOffset),
},
}
}
return debug.Struct{fields}, nil
case *dwarf.TypedefType:
return s.value(t.Type, addr)
case *dwarf.MapType:
length, err := s.peekMapLength(t, addr)
if err != nil {
return nil, err
}
return debug.Map{
TypeID: uint64(t.Common().Offset),
Address: addr,
Length: length,
}, nil
case *dwarf.StringType:
ptr, err := s.peekPtrStructField(&t.StructType, addr, "str")
if err != nil {
return nil, fmt.Errorf("reading string location: %s", err)
}
length, err := s.peekUintOrIntStructField(&t.StructType, addr, "len")
if err != nil {
return nil, fmt.Errorf("reading string length: %s", err)
}
const maxStringSize = 256
n := length
if n > maxStringSize {
n = maxStringSize
}
tmp := make([]byte, n)
if err := s.peekBytes(ptr, tmp); err != nil {
return nil, fmt.Errorf("reading string contents: %s", err)
}
return debug.String{Length: length, String: string(tmp)}, nil
case *dwarf.ChanType:
pt, ok := t.TypedefType.Type.(*dwarf.PtrType)
if !ok {
return nil, fmt.Errorf("reading channel: type is not a pointer")
}
st, ok := pt.Type.(*dwarf.StructType)
if !ok {
return nil, fmt.Errorf("reading channel: type is not a pointer to struct")
}
a, err := s.peekPtr(addr)
if err != nil {
return nil, fmt.Errorf("reading channel pointer: %s", err)
}
if a == 0 {
// This channel is nil.
return debug.Channel{
ElementTypeID: uint64(t.ElemType.Common().Offset),
Address: 0,
Buffer: 0,
Length: 0,
Capacity: 0,
Stride: uint64(t.ElemType.Common().ByteSize),
BufferStart: 0,
}, nil
}
buf, err := s.peekPtrStructField(st, a, "buf")
if err != nil {
return nil, fmt.Errorf("reading channel buffer location: %s", err)
}
qcount, err := s.peekUintOrIntStructField(st, a, "qcount")
if err != nil {
return nil, fmt.Errorf("reading channel length: %s", err)
}
capacity, err := s.peekUintOrIntStructField(st, a, "dataqsiz")
if err != nil {
return nil, fmt.Errorf("reading channel capacity: %s", err)
}
recvx, err := s.peekUintOrIntStructField(st, a, "recvx")
if err != nil {
return nil, fmt.Errorf("reading channel buffer index: %s", err)
}
return debug.Channel{
ElementTypeID: uint64(t.ElemType.Common().Offset),
Address: a,
Buffer: buf,
Length: qcount,
Capacity: capacity,
Stride: uint64(t.ElemType.Common().ByteSize),
BufferStart: recvx,
}, nil
case *dwarf.FuncType:
a, err := s.peekPtr(addr)
if err != nil {
return nil, fmt.Errorf("reading func: %s", err)
}
return debug.Func{Address: a}, nil
case *dwarf.InterfaceType:
return debug.Interface{}, nil
// TODO: more types
}
return nil, fmt.Errorf("Unsupported type %T", t)
}
|