From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1879) id 8388E3858028; Wed, 15 Feb 2023 18:45:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8388E3858028 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1676486729; bh=5nwqaQjGpNGg/kFI0hzINShwG8EjqMdohnPNDQPljso=; h=From:To:Subject:Date:From; b=Ie0zRjE8Czjk3/SAPuEZu2GNkGmZi/qhy9KICKG/GWfYjVCHd9F6Uu8aOndo4UzQQ SoStnZ5EQxAQzgU5IXUBMAtmnwbXZ1NhtjNHDpYSknzIVvmWqOP9zMFknZWhT+GY2g OC8uQH1CFfH51ajlAbsHzkRi+/wNKewC/PvzL/0w= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Simon Marchi To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb: fix dealloc function not being called for frame 0 X-Act-Checkin: binutils-gdb X-Git-Author: Simon Marchi X-Git-Refname: refs/heads/master X-Git-Oldrev: f370ae88a81ce5775c008e9509a53d34d6707d65 X-Git-Newrev: bc32f8e7090fda27fafb2656b48d61ed167d3f48 Message-Id: <20230215184529.8388E3858028@sourceware.org> Date: Wed, 15 Feb 2023 18:45:29 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dbc32f8e7090f= da27fafb2656b48d61ed167d3f48 commit bc32f8e7090fda27fafb2656b48d61ed167d3f48 Author: Simon Marchi Date: Thu Feb 9 13:54:26 2023 -0500 gdb: fix dealloc function not being called for frame 0 =20 Tom de Vries reported [1] a regression in gdb.btrace/record_goto.exp caused by 6d3717d4c4 ("gdb: call frame unwinders' dealloc_cache methods through destroying the frame cache"). This issue is caught by ASan. On a non-ASan build, it may or may not cause a crash or some other issue, I haven't tried. =20 I managed to narrow it down to: =20 $ ./gdb -nx -q --data-directory=3Ddata-directory testsuite/outputs/= gdb.btrace/record_goto/record_goto -ex "start" -ex "record btrace" -ex "nex= t" =20 ... and then doing repeatedly "record goto 19" and "record goto 27". Eventually, I get: =20 (gdb) record goto 27 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D1527735=3D=3DERROR: AddressSanitizer: heap-use-after-free on = address 0x6210003392a8 at pc 0x55e4c26eef86 bp 0x7ffd229f24e0 sp 0x7ffd229f= 24d8 READ of size 8 at 0x6210003392a8 thread T0 #0 0x55e4c26eef85 in bfcache_eq /home/simark/src/binutils-gdb/g= db/record-btrace.c:1639 #1 0x55e4c37cdeff in htab_find_slot_with_hash /home/simark/src/= binutils-gdb/libiberty/hashtab.c:659 #2 0x55e4c37ce24a in htab_find_slot /home/simark/src/binutils-g= db/libiberty/hashtab.c:703 #3 0x55e4c26ef0c6 in bfcache_new /home/simark/src/binutils-gdb/= gdb/record-btrace.c:1653 #4 0x55e4c26f1242 in record_btrace_frame_sniffer /home/simark/s= rc/binutils-gdb/gdb/record-btrace.c:1820 #5 0x55e4c1b926a1 in frame_unwind_try_unwinder /home/simark/src= /binutils-gdb/gdb/frame-unwind.c:136 #6 0x55e4c1b930d7 in frame_unwind_find_by_frame(frame_info_ptr,= void**) /home/simark/src/binutils-gdb/gdb/frame-unwind.c:196 #7 0x55e4c1bb867f in get_frame_type(frame_info_ptr) /home/simar= k/src/binutils-gdb/gdb/frame.c:2925 #8 0x55e4c2ae6798 in print_frame_info(frame_print_options const= &, frame_info_ptr, int, print_what, int, int) /home/simark/src/binutils-gdb= /gdb/stack.c:1049 #9 0x55e4c2ade3e1 in print_stack_frame(frame_info_ptr, int, pri= nt_what, int) /home/simark/src/binutils-gdb/gdb/stack.c:367 #10 0x55e4c26fda03 in record_btrace_set_replay /home/simark/src= /binutils-gdb/gdb/record-btrace.c:2779 #11 0x55e4c26fddc3 in record_btrace_target::goto_record(unsigne= d long) /home/simark/src/binutils-gdb/gdb/record-btrace.c:2843 #12 0x55e4c2de2bb2 in target_goto_record(unsigned long) /home/s= imark/src/binutils-gdb/gdb/target.c:4169 #13 0x55e4c275ed98 in record_goto(char const*) /home/simark/src= /binutils-gdb/gdb/record.c:372 #14 0x55e4c275edba in cmd_record_goto /home/simark/src/binutils= -gdb/gdb/record.c:383 =20 0x6210003392a8 is located 424 bytes inside of 4064-byte region [0x6= 21000339100,0x62100033a0e0) freed by thread T0 here: #0 0x7f6ca34a5b6f in __interceptor_free ../../../../src/libsani= tizer/asan/asan_malloc_linux.cpp:123 #1 0x55e4c38a4c17 in rpl_free /home/simark/src/binutils-gdb/gnu= lib/import/free.c:44 #2 0x55e4c1bbd378 in xfree /home/simark/src/binutils-gdb/= gdb/../gdbsupport/gdb-xfree.h:37 #3 0x55e4c37d1b63 in call_freefun /home/simark/src/binutils-gdb= /libiberty/obstack.c:103 #4 0x55e4c37d25a2 in _obstack_free /home/simark/src/binutils-gd= b/libiberty/obstack.c:280 #5 0x55e4c1bad701 in reinit_frame_cache() /home/simark/src/binu= tils-gdb/gdb/frame.c:2112 #6 0x55e4c27705a3 in registers_changed_ptid(process_stratum_tar= get*, ptid_t) /home/simark/src/binutils-gdb/gdb/regcache.c:564 #7 0x55e4c27708c7 in registers_changed_thread(thread_info*) /ho= me/simark/src/binutils-gdb/gdb/regcache.c:573 #8 0x55e4c26fd922 in record_btrace_set_replay /home/simark/src/= binutils-gdb/gdb/record-btrace.c:2772 #9 0x55e4c26fddc3 in record_btrace_target::goto_record(unsigned= long) /home/simark/src/binutils-gdb/gdb/record-btrace.c:2843 #10 0x55e4c2de2bb2 in target_goto_record(unsigned long) /home/s= imark/src/binutils-gdb/gdb/target.c:4169 #11 0x55e4c275ed98 in record_goto(char const*) /home/simark/src= /binutils-gdb/gdb/record.c:372 #12 0x55e4c275edba in cmd_record_goto /home/simark/src/binutils= -gdb/gdb/record.c:383 =20 previously allocated by thread T0 here: #0 0x7f6ca34a5e8f in __interceptor_malloc ../../../../src/libsa= nitizer/asan/asan_malloc_linux.cpp:145 #1 0x55e4c0b55c60 in xmalloc /home/simark/src/binutils-gdb/gdb/= alloc.c:57 #2 0x55e4c37d1a6d in call_chunkfun /home/simark/src/binutils-gd= b/libiberty/obstack.c:94 #3 0x55e4c37d1c20 in _obstack_begin_worker /home/simark/src/bin= utils-gdb/libiberty/obstack.c:141 #4 0x55e4c37d1ed7 in _obstack_begin /home/simark/src/binutils-g= db/libiberty/obstack.c:164 #5 0x55e4c1bad728 in reinit_frame_cache() /home/simark/src/binu= tils-gdb/gdb/frame.c:2113 #6 0x55e4c27705a3 in registers_changed_ptid(process_stratum_tar= get*, ptid_t) /home/simark/src/binutils-gdb/gdb/regcache.c:564 #7 0x55e4c27708c7 in registers_changed_thread(thread_info*) /ho= me/simark/src/binutils-gdb/gdb/regcache.c:573 #8 0x55e4c26fd922 in record_btrace_set_replay /home/simark/src/= binutils-gdb/gdb/record-btrace.c:2772 #9 0x55e4c26fddc3 in record_btrace_target::goto_record(unsigned= long) /home/simark/src/binutils-gdb/gdb/record-btrace.c:2843 #10 0x55e4c2de2bb2 in target_goto_record(unsigned long) /home/s= imark/src/binutils-gdb/gdb/target.c:4169 #11 0x55e4c275ed98 in record_goto(char const*) /home/simark/src= /binutils-gdb/gdb/record.c:372 #12 0x55e4c275edba in cmd_record_goto /home/simark/src/binutils= -gdb/gdb/record.c:383 =20 The problem is a stale entry in the bfcache hash table (in record-btrace.c), left across a reinit_frame_cache. This entry points to something that used to be allocated on the frame obstack, that has since been wiped by reinit_frame_cache. =20 Before the aforementioned, unwinder deallocation functions were called by iterating on the frame chain, starting with the sentinel frame, like so: =20 /* Tear down all frame caches. */ for (frame_info *fi =3D sentinel_frame; fi !=3D NULL; fi =3D fi->prev) { if (fi->prologue_cache && fi->unwind->dealloc_cache) fi->unwind->dealloc_cache (fi, fi->prologue_cache); if (fi->base_cache && fi->base->unwind->dealloc_cache) fi->base->unwind->dealloc_cache (fi, fi->base_cache); } =20 After that patch, we relied on the fact that all frames are (supposedly) in the frame_stash. A deletion function was added to the frame_stash hash table, so that dealloc functions would be called when emptying the frame stash. There is one case, however, where a frame_info is not in the frame stash. That is when we create the frame_info for the current frame (level 0, unwound from the sentinel frame), but don't compute its frame id. The computation of the frame id for that frame (and only that frame, AFAIK) is done lazily. And putting a frame_info in the frame st= ash requires knowing its id. So a frame 0 whose frame id is not computed yet is necessarily not in the frame stash. =20 When replaying with btrace, record_btrace_frame_sniffer insert entries corresponding to frames in the "bfcache" hash table. It then relies on record_btrace_frame_dealloc_cache being called for each frame to remove all those entries when the frames get invalidated. If a frame reinit happens while frame 0's id is not computed (and therefore that frame is not in frame_stash), record_btrace_frame_dealloc_cache does not get called for it, and it leaves a stale entry in bfcache. That then leads to a use-after-free when that entry is accessed later, which ASan catches. =20 The proposed solution is to explicitly call frame_info_del on frame 0, if it exists, and if its frame id is not computed. If its frame id is computed, it is expected that it will be in the frame stash, so it will be "deleted" through that. =20 [1] https://inbox.sourceware.org/gdb-patches/20230130200249.131155-1-si= mon.marchi@efficios.com/T/#mcf1340ce2906a72ec7ed535ec0c97dba11c3d977 =20 Reported-By: Tom de Vries Tested-By: Tom de Vries Change-Id: I2351882dd511f3bbc01e4152e9db13b69b3ba384 Diff: --- gdb/frame.c | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/gdb/frame.c b/gdb/frame.c index be4c58e4642..6629f444afe 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -265,10 +265,8 @@ frame_addr_hash_eq (const void *a, const void *b) /* Deletion function for the frame cache hash table. */ =20 static void -frame_info_del (void *frame_v) +frame_info_del (frame_info *frame) { - frame_info *frame =3D (frame_info *) frame_v; - if (frame->prologue_cache !=3D nullptr && frame->unwind->dealloc_cache !=3D nullptr) frame->unwind->dealloc_cache (frame, frame->prologue_cache); @@ -284,10 +282,13 @@ frame_info_del (void *frame_v) static void frame_stash_create (void) { - frame_stash =3D htab_create (100, - frame_addr_hash, - frame_addr_hash_eq, - frame_info_del); + frame_stash =3D htab_create + (100, frame_addr_hash, frame_addr_hash_eq, + [] (void *p) + { + auto frame =3D static_cast (p); + frame_info_del (frame); + }); } =20 /* Internal function to add a frame to the frame_stash hash table. @@ -2105,7 +2106,19 @@ reinit_frame_cache (void) invalidate_selected_frame (); =20 /* Invalidate cache. */ - sentinel_frame =3D NULL; + if (sentinel_frame !=3D nullptr) + { + /* If frame 0's id is not computed, it is not in the frame stash, so= its + dealloc functions will not be called when emptying the frash stash. + Call frame_info_del manually in that case. */ + frame_info *current_frame =3D sentinel_frame->prev; + if (current_frame !=3D nullptr + && current_frame->this_id.p =3D=3D frame_id_status::NOT_COMPUTED) + frame_info_del (current_frame); + + sentinel_frame =3D nullptr; + } + frame_stash_invalidate (); =20 /* Since we can't really be sure what the first object allocated was. */