public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* Suspected bug in DW_OP_addr handling
@ 2022-05-07  3:54 Yichao Yu
  2022-05-08 17:25 ` Simon Marchi
  0 siblings, 1 reply; 3+ messages in thread
From: Yichao Yu @ 2022-05-07  3:54 UTC (permalink / raw)
  To: gdb

I noticed that gdb unwind failed with read of invalid memory address
when I used `DW_OP_addr` in my unwind info. Upon checking, it seems
that the handling of this operation in the dwarf interpreter is very
suspicious.

The interpreter for the op code has a comment[1] sayijng,

> Some versions of GCC emit DW_OP_addr before
> DW_OP_GNU_push_tls_address. In this case the value is an
> index, not an address.

However, the code appears to check for exactly the opposite condition
`op_ptr >= op_end || *op_ptr != DW_OP_GNU_push_tls_address` to decide
whether the result should be used as index. This was added 12 years
ago in commit ac56253ddece [2].

Am I missing something or is this a long-standing bug?

Yichao


[1] https://github.com/bminor/binutils-gdb/blob/2392dc0f8e243a4f5f9d0db6cee64a1698886e56/gdb/dwarf2/expr.c#L1574-L1585
[2] https://github.com/bminor/binutils-gdb/commit/ac56253ddece35aff4402b848f88ba40856102b1#diff-9c28445d6bd87cff9dcb11dc4b58ff0e605a078b08ceb37da22d8d2c7b866f6aR406

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-09 14:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-07  3:54 Suspected bug in DW_OP_addr handling Yichao Yu
2022-05-08 17:25 ` Simon Marchi
2022-05-09 14:03   ` Yichao Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).