From: Maxim Kokryashkin via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Kaplun <skaplun@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit] FFI: Fix pragma push stack limit check and throw on overflow. Date: Wed, 8 Nov 2023 21:59:36 +0300 [thread overview] Message-ID: <4gevtnryseliehscuvbe3gel6y44uoe3yyez7jqnnuf6f3i6al@mkpo7il6gdvm> (raw) In-Reply-To: <20231108084044.6654-1-skaplun@tarantool.org> Hi, Sergey! Thanks for the patch! LGTM after fixing the comment left by Igor, and one additional comment from me (see it below). On Wed, Nov 08, 2023 at 11:40:44AM +0300, Sergey Kaplun wrote: > From: Mike Pall <mike> > > Reported by Sergey Kaplun. > > (cherry-picked from commit 433d7e8d8d182f44e88b5cfdc4b2d3026469dfb7) > > `cp->packstack` is the array of size `CPARSE_MAX_PACKSTACK` (7). Before > the patch, `cp->curpack` is checked to be less than > `CPARSE_MAX_PACKSTACK`, but then `cp->packstack` is accessed at > `cp->curpack + 1`, which is out of bounds, so `cp->curpack` value is > overwritten. > > This patch fixes a condition and also adds the error throw when counter > is overflow (instead of rewriting a top `cp->packstack` value). > > Sergey Kaplun: > * added the description and the test for the problem > > Resolves tarantool/tarantool#9339 > Part of tarantool/tarantool#9145 > --- > > Branch: https://github.com/tarantool/luajit/tree/skaplun/lj-1114-ffi-pragma-pack > Tarantool PR: https://github.com/tarantool/tarantool/pull/9342 > Relate issues: > * https://github.com/LuaJIT/LuaJIT/issues/1114 > * https://github.com/tarantool/tarantool/issues/9339 > * https://github.com/tarantool/tarantool/issues/9145 > > src/lj_cparse.c | 4 +- > .../lj-1114-ffi-pragma-pack.test.lua | 44 +++++++++++++++++++ > 2 files changed, 47 insertions(+), 1 deletion(-) > create mode 100644 test/tarantool-tests/lj-1114-ffi-pragma-pack.test.lua > > diff --git a/src/lj_cparse.c b/src/lj_cparse.c > index 6d9490ca..01deb3bf 100644 > --- a/src/lj_cparse.c > +++ b/src/lj_cparse.c <snipped> > diff --git a/test/tarantool-tests/lj-1114-ffi-pragma-pack.test.lua b/test/tarantool-tests/lj-1114-ffi-pragma-pack.test.lua > new file mode 100644 > index 00000000..e5642828 > --- /dev/null > +++ b/test/tarantool-tests/lj-1114-ffi-pragma-pack.test.lua > @@ -0,0 +1,44 @@ <snipped> > +test:ok(not err, 'the error is thrown when couner overflows') Typo: s/couner/counter/ > +test:like(msg, 'chunk has too many syntax levels', > + 'the error message is correct') > + > +test:done(true) > -- > 2.42.0 >
next prev parent reply other threads:[~2023-11-08 19:00 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-11-08 8:40 Sergey Kaplun via Tarantool-patches 2023-11-08 18:39 ` Igor Munkin via Tarantool-patches 2023-11-08 18:59 ` Maxim Kokryashkin via Tarantool-patches [this message] 2023-11-09 5:57 ` Sergey Kaplun via Tarantool-patches 2023-11-23 6:31 ` 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=4gevtnryseliehscuvbe3gel6y44uoe3yyez7jqnnuf6f3i6al@mkpo7il6gdvm \ --to=tarantool-patches@dev.tarantool.org \ --cc=m.kokryashkin@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit] FFI: Fix pragma push stack limit check and throw on overflow.' \ /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