]> Cypherpunks.ru repositories - gostls13.git/commit
runtime: non-strict InlTreeIndex lookup in Frames.Next
authorMichael Pratt <mpratt@google.com>
Thu, 11 Mar 2021 17:28:45 +0000 (12:28 -0500)
committerMichael Pratt <mpratt@google.com>
Tue, 30 Mar 2021 15:43:47 +0000 (15:43 +0000)
commite4a4161f1f3157550846e1b6bd4fe83aae15778e
treeef84f149de826c330a4fd513f3c92457f25d5432
parenta81b5e4d0a843e6ef28c8b933904a03fd8666f3e
runtime: non-strict InlTreeIndex lookup in Frames.Next

When using cgo, some of the frames can be provided by cgoTraceback, a
cgo-provided function to generate C tracebacks. Unlike Go tracebacks,
cgoTraceback has no particular guarantees that it produces valid
tracebacks.

If one of the (invalid) frames happens to put the PC in the alignment
region at the end of a function (filled with int 3's on amd64), then
Frames.Next will find a valid funcInfo for the PC, but pcdatavalue will
panic because PCDATA doesn't cover this PC.

Tolerate this case by doing a non-strict PCDATA lookup. We'll still show
a bogus frame, but at least avoid throwing.

Fixes #44971

Change-Id: I9eed728470d6f264179a7615bd19845c941db78c
Reviewed-on: https://go-review.googlesource.com/c/go/+/301369
Trust: Michael Pratt <mpratt@google.com>
Run-TryBot: Michael Pratt <mpratt@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
src/runtime/symtab.go
src/runtime/symtab_test.go