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 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
|
package line
import (
"compress/zlib"
"debug/elf"
"debug/macho"
"debug/pe"
"flag"
"io"
"os"
"os/exec"
"path/filepath"
"runtime"
"slices"
"strings"
"testing"
"time"
"unsafe"
"github.com/go-delve/delve/pkg/dwarf/godwarf"
"github.com/go-delve/delve/pkg/goversion"
)
var userTestFile string
func TestMain(m *testing.M) {
flag.StringVar(&userTestFile, "user", "", "runs line parsing test on one extra file")
flag.Parse()
m.Run()
}
func grabDebugLineSection(p string, t *testing.T) []byte {
f, err := os.Open(p)
if err != nil {
t.Fatal(err)
}
defer f.Close()
ef, err := elf.NewFile(f)
if err == nil {
data, _ := godwarf.GetDebugSectionElf(ef, "line")
return data
}
pf, err := pe.NewFile(f)
if err == nil {
data, _ := godwarf.GetDebugSectionPE(pf, "line")
return data
}
mf, err := macho.NewFile(f)
if err == nil {
data, _ := godwarf.GetDebugSectionMacho(mf, "line")
return data
}
return nil
}
const (
lineBaseGo14 int8 = -1
lineBaseGo18 int8 = -4
lineRangeGo14 uint8 = 4
lineRangeGo18 uint8 = 10
versionGo14 uint16 = 2
versionGo111 uint16 = 3
versionGo125 uint16 = 5
opcodeBaseGo14 uint8 = 10
opcodeBaseGo111 uint8 = 11
)
func ptrSizeByRuntimeArch() int {
return int(unsafe.Sizeof(uintptr(0)))
}
func testDebugLinePrologueParser(p string, t *testing.T) {
data := grabDebugLineSection(p, t)
debugLines := ParseAll(data, nil, nil, 0, true, ptrSizeByRuntimeArch())
mainFileFound := false
for _, dbl := range debugLines {
prologue := dbl.Prologue
if prologue.Version != versionGo14 && prologue.Version != versionGo111 && prologue.Version != versionGo125 {
t.Fatal("Version not parsed correctly", prologue.Version)
}
if prologue.MinInstrLength != uint8(1) {
t.Fatal("Minimum Instruction Length not parsed correctly", prologue.MinInstrLength)
}
if prologue.InitialIsStmt != uint8(1) {
t.Fatal("Initial value of 'is_stmt' not parsed correctly", prologue.InitialIsStmt)
}
if prologue.LineBase != lineBaseGo14 && prologue.LineBase != lineBaseGo18 {
// go < 1.8 uses -1
// go >= 1.8 uses -4
t.Fatal("Line base not parsed correctly", prologue.LineBase)
}
if prologue.LineRange != lineRangeGo14 && prologue.LineRange != lineRangeGo18 {
// go < 1.8 uses 4
// go >= 1.8 uses 10
t.Fatal("Line Range not parsed correctly", prologue.LineRange)
}
if prologue.OpcodeBase != opcodeBaseGo14 && prologue.OpcodeBase != opcodeBaseGo111 {
t.Fatal("Opcode Base not parsed correctly", prologue.OpcodeBase)
}
lengths := []uint8{0, 1, 1, 1, 1, 0, 0, 0, 1, 0}
for i, l := range prologue.StdOpLengths {
if l != lengths[i] {
t.Fatal("Length not parsed correctly", l)
}
}
if !goversion.VersionAfterOrEqual(runtime.Version(), 1, 16) {
if len(dbl.IncludeDirs) != 1 {
t.Fatal("Include dirs not parsed correctly")
}
}
for _, ln := range dbl.Lookup {
if ln.Path == "<autogenerated>" || ln.Path == "?" || strings.HasPrefix(ln.Path, "<missing>_") || ln.Path == "_gomod_.go" {
continue
}
if _, err := os.Stat(ln.Path); err != nil {
t.Fatalf("Invalid input path %s: %s\n", ln.Path, err)
}
}
for _, n := range dbl.FileNames {
t.Logf("file %s\n", n.Path)
if strings.Contains(n.Path, "/_fixtures/testnextprog.go") {
mainFileFound = true
break
}
}
}
if !mainFileFound {
t.Fatal("File names table not parsed correctly")
}
}
func TestUserFile(t *testing.T) {
t.Parallel()
if userTestFile == "" {
return
}
t.Logf("testing %q", userTestFile)
testDebugLinePrologueParser(userTestFile, t)
}
func TestDebugLinePrologueParser(t *testing.T) {
t.Parallel()
// Test against known good values, from readelf --debug-dump=rawline _fixtures/testnextprog
p, err := filepath.Abs("../../../_fixtures/testnextprog")
if err != nil {
t.Fatal(err)
}
err = exec.Command("go", "build", "-gcflags=-N -l", "-o", p, p+".go").Run()
if err != nil {
t.Fatal("Could not compile test file", p, err)
}
defer os.Remove(p)
testDebugLinePrologueParser(p, t)
}
func BenchmarkLineParser(b *testing.B) {
p, err := filepath.Abs("../../../_fixtures/testnextprog")
if err != nil {
b.Fatal(err)
}
err = exec.Command("go", "build", "-gcflags=-N -l", "-o", p, p+".go").Run()
if err != nil {
b.Fatal("Could not compile test file", p, err)
}
defer os.Remove(p)
data := grabDebugLineSection(p, nil)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = ParseAll(data, nil, nil, 0, true, ptrSizeByRuntimeArch())
}
}
func loadBenchmarkData(tb testing.TB) DebugLines {
p, err := filepath.Abs("../../../_fixtures/debug_line_benchmark_data")
if err != nil {
tb.Fatal("Could not find test data", p, err)
}
data, err := os.ReadFile(p)
if err != nil {
tb.Fatal("Could not read test data", err)
}
return ParseAll(data, nil, nil, 0, true, ptrSizeByRuntimeArch())
}
func BenchmarkStateMachine(b *testing.B) {
lineInfos := loadBenchmarkData(b)
b.ResetTimer()
for i := 0; i < b.N; i++ {
sm := newStateMachine(lineInfos[0], lineInfos[0].Instructions, ptrSizeByRuntimeArch())
for {
if err := sm.next(); err != nil {
break
}
}
}
}
type pctolineEntry struct {
pc uint64
file string
line int
}
func (entry *pctolineEntry) match(file string, line int) bool {
if entry.file == "" {
return true
}
return entry.file == file && entry.line == line
}
func setupTestPCToLine(t testing.TB, lineInfos DebugLines) ([]pctolineEntry, []uint64) {
entries := []pctolineEntry{}
basePCs := []uint64{}
sm := newStateMachine(lineInfos[0], lineInfos[0].Instructions, ptrSizeByRuntimeArch())
for {
if err := sm.next(); err != nil {
break
}
if sm.valid {
if len(entries) == 0 || entries[len(entries)-1].pc != sm.address {
entries = append(entries, pctolineEntry{pc: sm.address, file: sm.file, line: sm.line})
} else if len(entries) > 0 {
// having two entries at the same PC address messes up the test
entries[len(entries)-1].file = ""
}
if len(basePCs) == 0 || sm.address-basePCs[len(basePCs)-1] >= 0x1000 {
basePCs = append(basePCs, sm.address)
}
}
}
for i := 1; i < len(entries); i++ {
if entries[i].pc <= entries[i-1].pc {
t.Fatalf("not monotonically increasing %d %x", i, entries[i].pc)
}
}
return entries, basePCs
}
func runTestPCToLine(t testing.TB, lineInfos DebugLines, entries []pctolineEntry, basePCs []uint64, log bool, testSize uint64) {
const samples = 1000
t0 := time.Now()
i := 0
basePCIdx := 0
for pc := entries[0].pc; pc <= entries[0].pc+testSize; pc++ {
if basePCIdx+1 < len(basePCs) && pc >= basePCs[basePCIdx+1] {
basePCIdx++
}
basePC := basePCs[basePCIdx]
file, line := lineInfos[0].PCToLine(basePC, pc)
if pc == entries[i].pc {
if i%samples == 0 && log {
t.Logf("match %x / %x (%v)\n", pc, entries[len(entries)-1].pc, time.Since(t0)/samples)
t0 = time.Now()
}
if !entries[i].match(file, line) {
t.Fatalf("Mismatch at PC %#x, expected %s:%d got %s:%d", pc, entries[i].file, entries[i].line, file, line)
}
i++
} else if !entries[i-1].match(file, line) {
t.Fatalf("Mismatch at PC %#x, expected %s:%d (from previous valid entry) got %s:%d", pc, entries[i-1].file, entries[i-1].line, file, line)
}
}
}
func TestPCToLine(t *testing.T) {
t.Parallel()
lineInfos := loadBenchmarkData(t)
entries, basePCs := setupTestPCToLine(t, lineInfos)
runTestPCToLine(t, lineInfos, entries, basePCs, true, 0x50000)
t.Logf("restart form beginning")
runTestPCToLine(t, lineInfos, entries, basePCs, true, 0x10000)
}
func BenchmarkPCToLine(b *testing.B) {
lineInfos := loadBenchmarkData(b)
entries, basePCs := setupTestPCToLine(b, lineInfos)
b.ResetTimer()
for i := 0; i < b.N; i++ {
runTestPCToLine(b, lineInfos, entries, basePCs, false, 0x10000)
}
}
func TestDebugLineC(t *testing.T) {
t.Parallel()
p, err := filepath.Abs("../../../_fixtures/debug_line_c_data")
if err != nil {
t.Fatal("Could not find test data", p, err)
}
data, err := os.ReadFile(p)
if err != nil {
t.Fatal("Could not read test data", err)
}
parsed := ParseAll(data, nil, nil, 0, true, ptrSizeByRuntimeArch())
if len(parsed) == 0 {
t.Fatal("Parser result is empty")
}
file := []string{"main.c", "/mnt/c/develop/delve/_fixtures/main.c", "/usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h",
"/usr/include/x86_64-linux-gnu/bits/types.h", "/usr/include/x86_64-linux-gnu/bits/libio.h", "/usr/include/stdio.h",
"/usr/include/x86_64-linux-gnu/bits/sys_errlist.h"}
for _, ln := range parsed {
if len(ln.FileNames) == 0 {
t.Fatal("Parser could not parse Filenames")
}
for _, fn := range ln.FileNames {
if !slices.Contains(file, filepath.ToSlash(fn.Path)) {
t.Fatalf("Found %s does not appear in the filelist\n", fn.Path)
}
}
}
}
func TestDebugLineDwarf4(t *testing.T) {
t.Parallel()
p, err := filepath.Abs("../../../_fixtures/zdebug_line_dwarf4")
if err != nil {
t.Fatal("Could not find test data", p, err)
}
fh, err := os.Open(p)
if err != nil {
t.Fatal("Could not open test data", err)
}
defer fh.Close()
fh.Seek(12, 0) // skip "ZLIB" magic signature and length
r, err := zlib.NewReader(fh)
if err != nil {
t.Fatal("Could not open test data (zlib)", err)
}
data, err := io.ReadAll(r)
if err != nil {
t.Fatal("Could not read test data", err)
}
debugLines := ParseAll(data, nil, nil, 0, true, 8)
for _, dbl := range debugLines {
if dbl.Prologue.Version == 4 {
if dbl.Prologue.LineBase != -5 {
t.Errorf("Wrong LineBase %d\n", dbl.Prologue.LineBase)
}
if dbl.Prologue.LineRange != 14 {
t.Errorf("Wrong LineRange %d\n", dbl.Prologue.LineRange)
}
}
}
}
|