summaryrefslogtreecommitdiff
path: root/gdbsupport
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2021-11-03 11:29:18 +0100
committerTom de Vries <tdevries@suse.de>2021-11-03 11:29:18 +0100
commit5fff6115feae7aaa23c0ae8d144e1c8418ee2ee1 (patch)
tree6d29ab09b64509100fd594ed8b0ed519cf743cd8 /gdbsupport
parent6ef4fa071e2c25b71e81a91646b43378cf957388 (diff)
downloadbinutils-gdb-5fff6115feae7aaa23c0ae8d144e1c8418ee2ee1.tar.gz
Fix LD_PRELOAD=/usr/lib64/libasan.so.6 gdb
Currently for a binary compiled normally (without -fsanitize=address) but with LD_PRELOAD of ASAN one gets: $ ASAN_OPTIONS=detect_leaks=0:alloc_dealloc_mismatch=1:abort_on_error=1:fast_unwind_on_malloc=0 LD_PRELOAD=/usr/lib64/libasan.so.6 gdb ================================================================= ==1909567==ERROR: AddressSanitizer: alloc-dealloc-mismatch (malloc vs operator delete []) on 0x602000001570 #0 0x7f1c98e5efa7 in operator delete[](void*) (/usr/lib64/libasan.so.6+0xb0fa7) ... 0x602000001570 is located 0 bytes inside of 2-byte region [0x602000001570,0x602000001572) allocated by thread T0 here: #0 0x7f1c98e5cd1f in __interceptor_malloc (/usr/lib64/libasan.so.6+0xaed1f) #1 0x557ee4a42e81 in operator new(unsigned long) (/usr/libexec/gdb+0x74ce81) SUMMARY: AddressSanitizer: alloc-dealloc-mismatch (/usr/lib64/libasan.so.6+0xb0fa7) in operator delete[](void*) ==1909567==HINT: if you don't care about these errors you may set ASAN_OPTIONS=alloc_dealloc_mismatch=0 ==1909567==ABORTING Despite the code called properly operator new[] and operator delete[]. But GDB's new-op.cc provides its own operator new[] which gets translated into malloc() (which gets recogized as operatore new(size_t)) but as it does not translate also operators delete[] Address Sanitizer gets confused. The question is how many variants of the delete operator need to be provided. There could be 14 operators new but there are only 4, GDB uses 3 of them. There could be 16 operators delete but there are only 6, GDB uses 2 of them. It depends on libraries and compiler which of the operators will get used. Currently being used: U operator new[](unsigned long) U operator new(unsigned long) U operator new(unsigned long, std::nothrow_t const&) U operator delete[](void*) U operator delete(void*, unsigned long) Tested on x86_64-linux.
Diffstat (limited to 'gdbsupport')
-rw-r--r--gdbsupport/new-op.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/gdbsupport/new-op.cc b/gdbsupport/new-op.cc
index 5ab19621a43..2f4c71457b1 100644
--- a/gdbsupport/new-op.cc
+++ b/gdbsupport/new-op.cc
@@ -92,4 +92,46 @@ operator new[] (std::size_t sz, const std::nothrow_t&) noexcept
{
return ::operator new (sz, std::nothrow);
}
+
+/* Define also operators delete as one can LD_PRELOAD=libasan.so.*
+ without recompiling the program with -fsanitize=address and then one would
+ get false positive alloc-dealloc-mismatch (malloc vs operator delete [])
+ errors from AddressSanitizers. */
+
+void
+operator delete (void *p)
+{
+ free (p);
+}
+
+void
+operator delete (void *p, const std::nothrow_t&) noexcept
+{
+ return ::operator delete (p);
+}
+
+void
+operator delete (void *p, std::size_t) noexcept
+{
+ return ::operator delete (p, std::nothrow);
+}
+
+void
+operator delete[] (void *p)
+{
+ return ::operator delete (p);
+}
+
+void
+operator delete[] (void *p, const std::nothrow_t&) noexcept
+{
+ return ::operator delete (p, std::nothrow);
+}
+
+void
+operator delete[] (void *p, std::size_t) noexcept
+{
+ return ::operator delete[] (p, std::nothrow);
+}
+
#endif