From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Maxim Kokryashkin <m.kokryashkin@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 2/2] Avoid negation of signed integers in C that may hold INT*_MIN. Date: Mon, 1 Jul 2024 13:12:29 +0300 [thread overview] Message-ID: <ZoKBDcxCHJOXWAs8@root> (raw) In-Reply-To: <gtg2uuqs7c4pbyyxkh3ufk7dxdfg6oq6wcjh5p67ldpercv7g4@tq3l6yy44rlm> Hi, Maxim! Thanks for the review! Fixed your comments, see the iterative patch below. Branch is force-pushed. =================================================================== diff --git a/test/tarantool-tests/lj-928-int-min-negation.test.lua b/test/tarantool-tests/lj-928-int-min-negation.test.lua index 26f4ed8e..982bba73 100644 --- a/test/tarantool-tests/lj-928-int-min-negation.test.lua +++ b/test/tarantool-tests/lj-928-int-min-negation.test.lua @@ -12,7 +12,7 @@ local INT32_MIN = -0x80000000 local INT64_MIN = -0x8000000000000000 local TOBIT_CHAR_MAX = 254 --- XXX: Many tests (`tonumber()`-related) are failed under UBSan +-- XXX: Many tests (`tonumber()`-related) are failing under UBSan -- with DUALNUM enabled. They are included to avoid regressions in -- the future if such a build becomes the default. local ffi = require('ffi') @@ -23,7 +23,7 @@ test:plan(14) jit.opt.start('hotloop=1') -- Temporary variable for the results. -local r +local result -- <src/lj_vmmath.c>:`lj_vm_modi()` for _ = 1, 4 do @@ -31,16 +31,16 @@ for _ = 1, 4 do -- Operands should be constants on the trace. local x = -0x80000000 local y = -0x80000000 - r = x % y + result = x % y end -test:is(r, 0, 'no UB during lj_vm_modi') +test:is(result, 0, 'no UB during lj_vm_modi') -- <src/lj_strfmt.c>:`lj_strfmt_wint()` for _ = 1, 4 do - -- Operand should be the constant on the trace. - r = tostring(bit.tobit(0x80000000)) + -- Operand should be a constant on the trace. + result = tostring(bit.tobit(0x80000000)) end -test:is(r, '-2147483648', 'no UB during lj_strfmt_wint') +test:is(result, '-2147483648', 'no UB during lj_strfmt_wint') -- <src/lj_strfmt.c>:`lj_strfmt_putfxint()` test:is(('%d'):format(INT64_MIN), '-9223372036854775808', @@ -70,17 +70,17 @@ test:is(bit.tohex(0, INT32_MIN), TOHEX_EXPECTED, 'no UB during bit_tohex') -- The second argument is the number of bytes to be represented. -- The negative value stands for uppercase. for _ = 1, 4 do - -- The second argument should be the constant on the trace. - r = bit.tohex(0, -0x80000000) + -- The second argument should be a constant on the trace. + result = bit.tohex(0, -0x80000000) end -test:is(r, TOHEX_EXPECTED, 'no UB during recording bit.tohex') +test:is(result, TOHEX_EXPECTED, 'no UB during recording bit.tohex') -- <src/lj_opt_fold.c>:`simplify_intsub_k()` -r = 0 +result = 0 for _ = 1, 4 do - r = r - 0x8000000000000000LL + result = result - 0x8000000000000000LL end -test:is(r, 0LL, 'no UB during simplify_intsub_k') +test:is(result, 0LL, 'no UB during simplify_intsub_k') -- <src/lj_strscan.c>:`strscan_hex()` test:is(tonumber('-0x80000000'), INT32_MIN, 'no UB during strscan_hex') =================================================================== On 01.07.24, Maxim Kokryashkin wrote: > Hi, Sergey! > Thanks for the patch! > LGTM, except for a few nits below. > > On Tue, Jun 25, 2024 at 06:54:25PM GMT, Sergey Kaplun wrote: > > From: Mike Pall <mike> > > <snipped> > > diff --git a/test/tarantool-tests/lj-928-int-min-negation.test.lua b/test/tarantool-tests/lj-928-int-min-negation.test.lua > > new file mode 100644 > > index 00000000..26f4ed8e > > --- /dev/null > > +++ b/test/tarantool-tests/lj-928-int-min-negation.test.lua > > @@ -0,0 +1,121 @@ > > +local tap = require('tap') > > + > > +-- Test file to demonstrate LuaJIT's UBSan failures during > > +-- `INT*_MIN` negation. > > +-- See also: https://github.com/LuaJIT/LuaJIT/issues/928. > > + > > +local test = tap.test('lj-928-int-min-negation.'):skipcond({ > > + ['Test requires JIT enabled'] = not jit.status(), > > +}) > > + > > +local INT32_MIN = -0x80000000 > > +local INT64_MIN = -0x8000000000000000 > > +local TOBIT_CHAR_MAX = 254 > > + > > +-- XXX: Many tests (`tonumber()`-related) are failed under UBSan > Typo: s/are failed/are failing/ Fixed, thanks! > > +-- with DUALNUM enabled. They are included to avoid regressions in > > +-- the future if such a build becomes the default. > > +local ffi = require('ffi') > > +local LL_T = ffi.typeof(1LL) > > + > > +test:plan(14) > > + > > +jit.opt.start('hotloop=1') > > + > > +-- Temporary variable for the results. > > +local r > Let's name it `result` or `tmp_result` then. Renamed. > > > + > > +-- <src/lj_vmmath.c>:`lj_vm_modi()` > > +for _ = 1, 4 do > > + -- Use additional variables to avoid folding during parsing. > > + -- Operands should be constants on the trace. > > + local x = -0x80000000 > > + local y = -0x80000000 > > + r = x % y > > +end > > +test:is(r, 0, 'no UB during lj_vm_modi') > > + > > +-- <src/lj_strfmt.c>:`lj_strfmt_wint()` > > +for _ = 1, 4 do > > + -- Operand should be the constant on the trace. > Typo: s/the constant/a constant/ Fixed. > > + r = tostring(bit.tobit(0x80000000)) <snipped> > > -- > > 2.45.1 > > -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2024-07-01 10:12 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-06-25 15:54 [Tarantool-patches] [PATCH luajit 0/2] Fix UBSan warnings Sergey Kaplun via Tarantool-patches 2024-06-25 15:54 ` [Tarantool-patches] [PATCH luajit 1/2] Prevent sanitizer warning in snap_restoredata() Sergey Kaplun via Tarantool-patches 2024-07-01 8:44 ` Maxim Kokryashkin via Tarantool-patches 2024-07-04 7:58 ` Sergey Bronnikov via Tarantool-patches 2024-07-04 8:41 ` Sergey Kaplun via Tarantool-patches 2024-07-04 14:59 ` Sergey Bronnikov via Tarantool-patches 2024-06-25 15:54 ` [Tarantool-patches] [PATCH luajit 2/2] Avoid negation of signed integers in C that may hold INT*_MIN Sergey Kaplun via Tarantool-patches 2024-07-01 9:11 ` Maxim Kokryashkin via Tarantool-patches 2024-07-01 10:12 ` Sergey Kaplun via Tarantool-patches [this message] 2024-07-04 8:08 ` Sergey Bronnikov via Tarantool-patches 2024-07-04 8:40 ` Sergey Kaplun via Tarantool-patches 2024-07-04 14:59 ` Sergey Bronnikov via Tarantool-patches 2024-07-09 8:08 ` [Tarantool-patches] [PATCH luajit 0/2] Fix UBSan warnings Sergey Kaplun via Tarantool-patches 2024-07-09 8:15 ` Sergey Kaplun 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=ZoKBDcxCHJOXWAs8@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=m.kokryashkin@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 2/2] Avoid negation of signed integers in C that may hold INT*_MIN.' \ /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