From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Bronnikov <sergeyb@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 5/6] FFI: Fix dangling reference to CType. Improve checks. Date: Thu, 30 Nov 2023 10:25:28 +0300 [thread overview] Message-ID: <ZWg46LXTrgW9p3_i@root> (raw) In-Reply-To: <9faa1bde-fd48-4dd2-8760-25c308b743a8@tarantool.org> Hi, Sergey! Thanks for the review! Please, consider my answers below. On 29.11.23, Sergey Bronnikov wrote: > Hello, Sergey > > thanks for the patch! See comments below > > On 10/23/23 12:22, Sergey Kaplun wrote: > > From: Mike Pall <mike> > > > > Reported by elmknot. > > > > (cherry-picked from commit cc96ab9d513582703f8663a8775a935b56db32b7) > > > > During the recording of an arithmetic operation with a cdata function > > object and some cdata value in `recff_cdata_arith()`, reallocation of > > `cts->tab` in `lj_ctype_intern()` may occur. In that case, the reference > > to the first `CType` object (`s[0]`) becomes invalid. This patch saves > > the `CTypeID` of this object and gets its `CType` again after possible > > reallocation. > > > > Also, this commit fills `cts->tab` memory with zeros before being freed > > when `-DLUAJIT_CTYPE_CHECK_ANCHOR` is defined. It helps to observe > > assertion failures in case this memory is used after free. > > failed to reproduce a bug with reverted fix and LuaJIT built with a flag: > > $ CMAKE_C_FLAGS=-DLUAJIT_CTYPE_CHECK_ANCHOR > CFLAGS=-DLUAJIT_CTYPE_CHECK_ANCHOR cmake -S . -B build > -DCMAKE_BUILD_TYPE=Debug -DLUA_USE_ASSERT=ON -DLUAJIT_USE_ASAN=ON I suppose you forgot the -DLUAJIT_USE_SYSMALLOC=ON -DLUAJIT_ENABLE_GC64=ON flags. The same is valid for the previous patch. > $ ./build/src/luajit > test/tarantool-tests/lj-920-fix-dangling-reference-to-ctype.test.lua > TAP version 13 > 1..1 > ok - no heap-use-after-free in recff_cdata_arith > > > > > Sergey Kaplun: > > * added the description and the test for the problem > > > > Part of tarantool/tarantool#9145 > > --- > > src/lj_crecord.c | 4 + > > src/lj_ctype.c | 12 +++ > > ...0-fix-dangling-reference-to-ctype.test.lua | 77 +++++++++++++++++++ > > 3 files changed, 93 insertions(+) > > create mode 100644 test/tarantool-tests/lj-920-fix-dangling-reference-to-ctype.test.lua > > <snipped> > > +++ b/test/tarantool-tests/lj-920-fix-dangling-reference-to-ctype.test.lua > > @@ -0,0 +1,77 @@ > > +local tap = require('tap') > > +local ffi = require('ffi') > > +local test = tap.test('lj-920-fix-dangling-reference-to-ctype'):skipcond({ > > + ['Test requires JIT enabled'] = not jit.status(), > > + -- luacheck: no global > > + ['Impossible to predict the value of cts->top'] = _TARANTOOL, > > Let's declare _TARANTOOL as global in .luacheckrc instead of suppressing > warning inline every time. > > About 7 tests suppress it. I suppose it is a good thing to change, but in a separate patchset. Ignoring for now, you may create a ticket for refactoring if you want (to prevent falling off the edge of the earth). > > > +}) <snipped> > > +test:done(true) -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2023-11-30 7:30 UTC|newest] Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-10-23 9:22 [Tarantool-patches] [PATCH luajit 0/6] FFI fixes Sergey Kaplun via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 1/6] Abstract out on-demand loading of FFI library Sergey Kaplun via Tarantool-patches 2023-10-24 14:38 ` Maxim Kokryashkin via Tarantool-patches 2023-11-29 14:35 ` Sergey Bronnikov via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 2/6] FFI: Fix missing cts->L initialization in argv2ctype() Sergey Kaplun via Tarantool-patches 2023-10-24 14:49 ` Maxim Kokryashkin via Tarantool-patches 2023-10-25 10:19 ` Sergey Kaplun via Tarantool-patches 2023-11-29 14:39 ` Sergey Bronnikov via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 3/6] FFI: Ensure returned string is alive in ffi.typeinfo() Sergey Kaplun via Tarantool-patches 2023-10-24 21:33 ` Maxim Kokryashkin via Tarantool-patches 2023-11-29 14:48 ` Sergey Bronnikov via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 4/6] FFI: Fix dangling reference to CType Sergey Kaplun via Tarantool-patches 2023-10-25 7:48 ` Maxim Kokryashkin via Tarantool-patches 2023-10-25 10:43 ` Sergey Kaplun via Tarantool-patches 2023-10-25 11:42 ` Maxim Kokryashkin via Tarantool-patches 2023-10-25 8:06 ` Maxim Kokryashkin via Tarantool-patches 2023-11-29 15:00 ` Sergey Bronnikov via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 5/6] FFI: Fix dangling reference to CType. Improve checks Sergey Kaplun via Tarantool-patches 2023-10-25 8:05 ` Maxim Kokryashkin via Tarantool-patches 2023-10-25 10:46 ` Sergey Kaplun via Tarantool-patches 2023-10-25 11:42 ` Maxim Kokryashkin via Tarantool-patches 2023-11-29 15:41 ` Sergey Bronnikov via Tarantool-patches 2023-11-30 7:25 ` Sergey Kaplun via Tarantool-patches [this message] 2023-12-19 10:55 ` Sergey Bronnikov via Tarantool-patches 2023-10-23 9:22 ` [Tarantool-patches] [PATCH luajit 6/6] FFI: Fix dangling reference to CType in carith_checkarg() Sergey Kaplun via Tarantool-patches 2023-10-25 8:07 ` Maxim Kokryashkin via Tarantool-patches 2023-10-25 10:48 ` Sergey Kaplun via Tarantool-patches 2023-10-25 11:42 ` Maxim Kokryashkin via Tarantool-patches 2023-12-19 10:59 ` Sergey Bronnikov via Tarantool-patches 2023-12-19 11:01 ` [Tarantool-patches] [PATCH luajit 0/6] FFI fixes Sergey Bronnikov via Tarantool-patches 2024-01-10 8:53 ` Igor Munkin via Tarantool-patches
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=ZWg46LXTrgW9p3_i@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 5/6] FFI: Fix dangling reference to CType. Improve checks.' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox