Skip to content

Commit

Permalink
debug/dwarf: Fail on reading incorrect offset due to skipped compilat…
Browse files Browse the repository at this point in the history
…ion unit
  • Loading branch information
danipozo committed Nov 17, 2024
1 parent 44d4b69 commit e1ed146
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/debug/dwarf/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,8 @@ func (b *buf) entry(cu *Entry, atab abbrevTable, ubase Offset, vers int) *Entry
} else if a.tag == TagCompileUnit {
delay = append(delay, delayed{i, off, formAddrx})
break
} else {
b.error("Can't adjust offset: compilation unit skipped")
}

var err error
Expand Down Expand Up @@ -692,6 +694,8 @@ func (b *buf) entry(cu *Entry, atab abbrevTable, ubase Offset, vers int) *Entry
} else if a.tag == TagCompileUnit {
delay = append(delay, delayed{i, off, formStrx})
break
} else {
b.error("Can't adjust offset: compilation unit skipped")
}

val = resolveStrx(uint64(strBase), off)
Expand Down Expand Up @@ -752,6 +756,8 @@ func (b *buf) entry(cu *Entry, atab abbrevTable, ubase Offset, vers int) *Entry
} else if a.tag == TagCompileUnit {
delay = append(delay, delayed{i, off, formRnglistx})
break
} else {
b.error("Can't adjust offset: compilation unit skipped")
}

val = resolveRnglistx(uint64(rnglistsBase), off)
Expand Down Expand Up @@ -856,6 +862,15 @@ func (r *Reader) Seek(off Offset) {
r.b = makeBuf(r.d, u, "info", off, u.data[off-u.off:])
}

// SeekAndSetCU positions the [Reader] at offset off in the encoded entry stream, and additionally sets the current
// CU for the reader.
func (r *Reader) SeekAndSetCU(off Offset) {
cuIdx := r.d.offsetToUnit(off)
r.Seek(r.d.unit[cuIdx].off)
r.Next()
r.Seek(off)
}

// maybeNextUnit advances to the next unit if this one is finished.
func (r *Reader) maybeNextUnit() {
for len(r.b.data) == 0 && r.unit+1 < len(r.d.unit) {
Expand Down

0 comments on commit e1ed146

Please sign in to comment.