Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new().
@ 2026-06-09 10:55 Sergey Bronnikov via Tarantool-patches
  2026-06-09 12:03 ` Sergey Kaplun via Tarantool-patches
  0 siblings, 1 reply; 5+ messages in thread
From: Sergey Bronnikov via Tarantool-patches @ 2026-06-09 10:55 UTC (permalink / raw)
  To: tarantool-patches, Sergey Kaplun, e.temirgaleev

From: Mike Pall <mike>

Reported by Sergey Bronnikov.

(cherry picked from commit 8f421c81ec6aaae0bcd80e01f4353de200afbbc5)

The Undefined Behaviour Sanitizer [1] produce a warning because
the function `lua_createtable()` takes signed integer arguments,
but the `lj_tab_new_ah()` was not properly validating or converting
these signed values before using them in unsigned arithmetic.

The fix changes the signature of `lj_tab_new_ah()` to accept
uint32_t directly, and adjusts `lua_createtable()` to cast the
incoming signed int values to uint32_t before passing them.

[1]: https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html

Sergey Bronnikov:
* added the description and the test for the problem

Part of tarantool/tarantool#12480
---
Branch: https://github.com/tarantool/luajit/tree/ligurio/lj-1458-ub-lj_tab_new

Related issues:
- https://github.com/tarantool/tarantool/issues/12480
- https://github.com/LuaJIT/LuaJIT/issues/1458


 src/lj_api.c                                  |  2 +-
 src/lj_tab.c                                  |  4 +--
 src/lj_tab.h                                  |  2 +-
 .../lj-1458-ub-table.new.test.lua             | 30 +++++++++++++++++++
 4 files changed, 34 insertions(+), 4 deletions(-)
 create mode 100644 test/tarantool-tests/lj-1458-ub-table.new.test.lua

diff --git a/src/lj_api.c b/src/lj_api.c
index 16a1da0e..fc7a589f 100644
--- a/src/lj_api.c
+++ b/src/lj_api.c
@@ -746,7 +746,7 @@ LUA_API void lua_pushlightuserdata(lua_State *L, void *p)
 LUA_API void lua_createtable(lua_State *L, int narray, int nrec)
 {
   lj_gc_check(L);
-  settabV(L, L->top, lj_tab_new_ah(L, narray, nrec));
+  settabV(L, L->top, lj_tab_new_ah(L, (uint32_t)narray, (uint32_t)nrec));
   incr_top(L);
 }
 
diff --git a/src/lj_tab.c b/src/lj_tab.c
index 1d6a4b7f..9e253d03 100644
--- a/src/lj_tab.c
+++ b/src/lj_tab.c
@@ -165,9 +165,9 @@ GCtab *lj_tab_new(lua_State *L, uint32_t asize, uint32_t hbits)
 }
 
 /* The API of this function conforms to lua_createtable(). */
-GCtab *lj_tab_new_ah(lua_State *L, int32_t a, int32_t h)
+GCtab *lj_tab_new_ah(lua_State *L, uint32_t a, uint32_t h)
 {
-  return lj_tab_new(L, (uint32_t)(a > 0 ? a+1 : 0), hsize2hbits(h));
+  return lj_tab_new(L, a ? a+1 : 0, hsize2hbits(h));
 }
 
 #if LJ_HASJIT
diff --git a/src/lj_tab.h b/src/lj_tab.h
index 71e34945..77b08678 100644
--- a/src/lj_tab.h
+++ b/src/lj_tab.h
@@ -34,7 +34,7 @@ static LJ_AINLINE uint32_t hashrot(uint32_t lo, uint32_t hi)
 #define hsize2hbits(s)	((s) ? ((s)==1 ? 1 : 1+lj_fls((uint32_t)((s)-1))) : 0)
 
 LJ_FUNCA GCtab *lj_tab_new(lua_State *L, uint32_t asize, uint32_t hbits);
-LJ_FUNC GCtab *lj_tab_new_ah(lua_State *L, int32_t a, int32_t h);
+LJ_FUNC GCtab *lj_tab_new_ah(lua_State *L, uint32_t a, uint32_t h);
 #if LJ_HASJIT
 LJ_FUNC GCtab * LJ_FASTCALL lj_tab_new1(lua_State *L, uint32_t ahsize);
 #endif
diff --git a/test/tarantool-tests/lj-1458-ub-table.new.test.lua b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
new file mode 100644
index 00000000..d0cf6ff5
--- /dev/null
+++ b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
@@ -0,0 +1,30 @@
+local tap = require('tap')
+
+-- The test file to demonstrate UBSan warning for `table.new()`
+-- with a minimal and maximum array and hash parts values.
+-- See also: https://github.com/LuaJIT/LuaJIT/issues/1458.
+local test = tap.test('lj-1458-ub-table-new')
+
+test:plan(8)
+
+local table_new = require('table.new')
+
+local INT_MAX =  2 ^ 31 - 1
+local INT_MIN = -2 ^ 31
+
+local table_sizes = {
+  { 0, INT_MIN },
+  { 0, INT_MAX },
+  { INT_MIN, 0 },
+  { INT_MAX, 0 },
+}
+
+for _, case in ipairs(table_sizes) do
+  local apart, hpart = unpack(case)
+  local ok, err = pcall(table_new, apart, hpart)
+  local message = ('table.new(%d, %d)'):format(apart, hpart)
+  test:is(ok, false, message .. ' is failed')
+  test:ok(err:match('table overflow'), message .. ' correct error message')
+end
+
+test:done(true)
-- 
2.43.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new().
  2026-06-09 10:55 [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new() Sergey Bronnikov via Tarantool-patches
@ 2026-06-09 12:03 ` Sergey Kaplun via Tarantool-patches
  2026-06-10 11:03   ` Sergey Bronnikov via Tarantool-patches
  0 siblings, 1 reply; 5+ messages in thread
From: Sergey Kaplun via Tarantool-patches @ 2026-06-09 12:03 UTC (permalink / raw)
  To: Sergey Bronnikov; +Cc: tarantool-patches

Hi, Sergey!
Thanks for the patch!
LGTM, after fixing a few nits below.

On 09.06.26, Sergey Bronnikov wrote:
> From: Mike Pall <mike>
> 
> Reported by Sergey Bronnikov.
> 
> (cherry picked from commit 8f421c81ec6aaae0bcd80e01f4353de200afbbc5)
> 
> The Undefined Behaviour Sanitizer [1] produce a warning because

Typo: s/produce/produces/

> the function `lua_createtable()` takes signed integer arguments,
> but the `lj_tab_new_ah()` was not properly validating or converting
> these signed values before using them in unsigned arithmetic.
> 
> The fix changes the signature of `lj_tab_new_ah()` to accept
> uint32_t directly, and adjusts `lua_createtable()` to cast the
> incoming signed int values to uint32_t before passing them.
> 
> [1]: https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
> 
> Sergey Bronnikov:
> * added the description and the test for the problem
> 
> Part of tarantool/tarantool#12480
> ---
> Branch: https://github.com/tarantool/luajit/tree/ligurio/lj-1458-ub-lj_tab_new
> 
> Related issues:
> - https://github.com/tarantool/tarantool/issues/12480
> - https://github.com/LuaJIT/LuaJIT/issues/1458
> 
> 
>  src/lj_api.c                                  |  2 +-
>  src/lj_tab.c                                  |  4 +--
>  src/lj_tab.h                                  |  2 +-
>  .../lj-1458-ub-table.new.test.lua             | 30 +++++++++++++++++++
>  4 files changed, 34 insertions(+), 4 deletions(-)
>  create mode 100644 test/tarantool-tests/lj-1458-ub-table.new.test.lua
> 

<snipped>

> diff --git a/test/tarantool-tests/lj-1458-ub-table.new.test.lua b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
> new file mode 100644
> index 00000000..d0cf6ff5
> --- /dev/null
> +++ b/test/tarantool-tests/lj-1458-ub-table.new.test.lua

Typo: s/table.new/table-new/

> @@ -0,0 +1,30 @@
> +local tap = require('tap')
> +
> +-- The test file to demonstrate UBSan warning for `table.new()`
> +-- with a minimal and maximum array and hash parts values.
> +-- See also: https://github.com/LuaJIT/LuaJIT/issues/1458.
> +local test = tap.test('lj-1458-ub-table-new')
> +
> +test:plan(8)

Lets use table_sizes * 2 here.

> +
> +local table_new = require('table.new')
> +
> +local INT_MAX =  2 ^ 31 - 1
> +local INT_MIN = -2 ^ 31
> +
> +local table_sizes = {
> +  { 0, INT_MIN },
> +  { 0, INT_MAX },
> +  { INT_MIN, 0 },
> +  { INT_MAX, 0 },
> +}
> +
> +for _, case in ipairs(table_sizes) do
> +  local apart, hpart = unpack(case)
> +  local ok, err = pcall(table_new, apart, hpart)
> +  local message = ('table.new(%d, %d)'):format(apart, hpart)
> +  test:is(ok, false, message .. ' is failed')

Typo? s/failed/OK/

> +  test:ok(err:match('table overflow'), message .. ' correct error message')
> +end
> +
> +test:done(true)
> -- 
> 2.43.0
> 

-- 
Best regards,
Sergey Kaplun

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new().
  2026-06-09 12:03 ` Sergey Kaplun via Tarantool-patches
@ 2026-06-10 11:03   ` Sergey Bronnikov via Tarantool-patches
  2026-06-10 13:42     ` Sergey Kaplun via Tarantool-patches
  2026-06-15 15:20     ` Evgeniy Temirgaleev via Tarantool-patches
  0 siblings, 2 replies; 5+ messages in thread
From: Sergey Bronnikov via Tarantool-patches @ 2026-06-10 11:03 UTC (permalink / raw)
  To: Sergey Kaplun, Sergey Bronnikov; +Cc: tarantool-patches

[-- Attachment #1: Type: text/plain, Size: 3530 bytes --]

Hi, Sergey,

thanks for the review. Fixes applied and force-pushed.

Sergey

On 6/9/26 15:03, Sergey Kaplun via Tarantool-patches wrote:
> Hi, Sergey!
> Thanks for the patch!
> LGTM, after fixing a few nits below.
>
> On 09.06.26, Sergey Bronnikov wrote:
>> From: Mike Pall <mike>
>>
>> Reported by Sergey Bronnikov.
>>
>> (cherry picked from commit 8f421c81ec6aaae0bcd80e01f4353de200afbbc5)
>>
>> The Undefined Behaviour Sanitizer [1] produce a warning because
> Typo: s/produce/produces/

Fixed.


>
>> the function `lua_createtable()` takes signed integer arguments,
>> but the `lj_tab_new_ah()` was not properly validating or converting
>> these signed values before using them in unsigned arithmetic.
>>
>> The fix changes the signature of `lj_tab_new_ah()` to accept
>> uint32_t directly, and adjusts `lua_createtable()` to cast the
>> incoming signed int values to uint32_t before passing them.
>>
>> [1]:https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
>>
>> Sergey Bronnikov:
>> * added the description and the test for the problem
>>
>> Part of tarantool/tarantool#12480
>> ---
>> Branch:https://github.com/tarantool/luajit/tree/ligurio/lj-1458-ub-lj_tab_new
>>
>> Related issues:
>> -https://github.com/tarantool/tarantool/issues/12480
>> -https://github.com/LuaJIT/LuaJIT/issues/1458
>>
>>
>>   src/lj_api.c                                  |  2 +-
>>   src/lj_tab.c                                  |  4 +--
>>   src/lj_tab.h                                  |  2 +-
>>   .../lj-1458-ub-table.new.test.lua             | 30 +++++++++++++++++++
>>   4 files changed, 34 insertions(+), 4 deletions(-)
>>   create mode 100644 test/tarantool-tests/lj-1458-ub-table.new.test.lua
>>
> <snipped>
>
>> diff --git a/test/tarantool-tests/lj-1458-ub-table.new.test.lua b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
>> new file mode 100644
>> index 00000000..d0cf6ff5
>> --- /dev/null
>> +++ b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
> Typo: s/table.new/table-new/
Fixed.
>
>> @@ -0,0 +1,30 @@
>> +local tap = require('tap')
>> +
>> +-- The test file to demonstrate UBSan warning for `table.new()`
>> +-- with a minimal and maximum array and hash parts values.
>> +-- See also:https://github.com/LuaJIT/LuaJIT/issues/1458.
>> +local test = tap.test('lj-1458-ub-table-new')
>> +
>> +test:plan(8)
> Lets use table_sizes * 2 here.
>
Updated.



>> +
>> +local table_new = require('table.new')
>> +
>> +local INT_MAX =  2 ^ 31 - 1
>> +local INT_MIN = -2 ^ 31
>> +
>> +local table_sizes = {
>> +  { 0, INT_MIN },
>> +  { 0, INT_MAX },
>> +  { INT_MIN, 0 },
>> +  { INT_MAX, 0 },
>> +}
>> +
>> +for _, case in ipairs(table_sizes) do
>> +  local apart, hpart = unpack(case)
>> +  local ok, err = pcall(table_new, apart, hpart)
>> +  local message = ('table.new(%d, %d)'):format(apart, hpart)
>> +test:is(ok, false, message .. ' is failed')
> Typo? s/failed/OK/


Right, fixed:

--- a/test/tarantool-tests/lj-1458-ub-table-new.test.lua
+++ b/test/tarantool-tests/lj-1458-ub-table-new.test.lua
@@ -23,7 +23,7 @@ for _, case in ipairs(table_sizes) do
    local apart, hpart = unpack(case)
    local ok, err = pcall(table_new, apart, hpart)
    local message = ('table.new(%d, %d)'):format(apart, hpart)
- test:is(ok, false, message .. ' is failed')
+ test:is(ok, false, message .. ' is ok')
test:ok(err:match('table overflow'), message .. ' correct error message')
  end

>
>> +test:ok(err:match('table overflow'), message .. ' correct error message')
>> +end
>> +
>> +test:done(true)
>> -- 
>> 2.43.0
>>

[-- Attachment #2: Type: text/html, Size: 6151 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new().
  2026-06-10 11:03   ` Sergey Bronnikov via Tarantool-patches
@ 2026-06-10 13:42     ` Sergey Kaplun via Tarantool-patches
  2026-06-15 15:20     ` Evgeniy Temirgaleev via Tarantool-patches
  1 sibling, 0 replies; 5+ messages in thread
From: Sergey Kaplun via Tarantool-patches @ 2026-06-10 13:42 UTC (permalink / raw)
  To: Sergey Bronnikov; +Cc: Sergey Bronnikov, tarantool-patches

Sergey,
Thanks for the fixes!
LGTM!

-- 
Best regards,
Sergey Kaplun

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Tarantool-patches]  [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new().
  2026-06-10 11:03   ` Sergey Bronnikov via Tarantool-patches
  2026-06-10 13:42     ` Sergey Kaplun via Tarantool-patches
@ 2026-06-15 15:20     ` Evgeniy Temirgaleev via Tarantool-patches
  1 sibling, 0 replies; 5+ messages in thread
From: Evgeniy Temirgaleev via Tarantool-patches @ 2026-06-15 15:20 UTC (permalink / raw)
  To: Sergey Bronnikov; +Cc: tarantool-patches, Sergey Bronnikov

[-- Attachment #1: Type: text/plain, Size: 4388 bytes --]

Hi, Sergey! Thanks for the patch!

LGTM after fixing a typo:

-test:plan(table_sizes * 2)
+test:plan(#table_sizes * 2)

--
Best regards,
Evgeniy Temirgaleev

> 
> From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org
> >
> To: Sergey Kaplun <skaplun@tarantool.org>, Sergey Bronnikov <estetus@gmail.com
> >
> Cc: tarantool-patches@dev.tarantool.org
> Date: Wednesday, June 10, 2026 4:21 PM +03:00
> 
> 
> Hi, Sergey,
> 
> 
> 
> thanks for the review. Fixes applied and force-pushed.
> 
> 
> 
> Sergey
> 
> On 6/9/26 15:03, Sergey Kaplun via Tarantool-patches wrote:
> 
>> Hi, Sergey!
>> Thanks for the patch!
>> LGTM, after fixing a few nits below.
>> 
>> On
>> 09.06.26, Sergey Bronnikov wrote:
>> 
>>> From: Mike Pall <mike>
>>> 
>>> Reported by Sergey Bronnikov.
>>> 
>>> (cherry picked from
>>> commit 8f421c81ec6aaae0bcd80e01f4353de200afbbc5)
>>> 
>>> The Undefined Behaviour
>>> Sanitizer [1] produce a warning because
>>> 
>> 
>> Typo: s/produce/produces/
> 
> 
> 
> Fixed.
> 
> 
> 
> 
> 
> 
>>  
>>> the function `lua_createtable()` takes signed integer arguments,
>>> but the
>>> `lj_tab_new_ah()` was not properly validating or converting
>>> these signed
>>> values before using them in unsigned arithmetic.
>>> 
>>> The fix changes the
>>> signature of `lj_tab_new_ah()` to accept
>>> uint32_t directly, and adjusts
>>> `lua_createtable()` to cast the
>>> incoming signed int values to uint32_t
>>> before passing them.
>>> 
>>> [1]: https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
>>> 
>>> Sergey
>>> Bronnikov:
>>> * added the description and the test for the problem
>>> 
>>> Part of
>>> tarantool/tarantool#12480
>>> ---
>>> Branch: https://github.com/tarantool/luajit/tree/ligurio/lj-1458-ub-lj_tab_new
>>> 
>>> 
>>> Related issues:
>>> - https://github.com/tarantool/tarantool/issues/12480
>>> - https://github.com/LuaJIT/LuaJIT/issues/1458
>>> 
>>> 
>>>  src/lj_api.c            
>>> |  2 +-
>>>  src/lj_tab.c                                  |  4 +--
>>> 
>>> src/lj_tab.h                                  |  2 +-
>>> 
>>> .../lj-1458-ub-table.new.test.lua             | 30 +++++++++++++++++++
>>>  4
>>> files changed, 34 insertions(+), 4 deletions(-)
>>>  create mode 100644
>>> test/tarantool-tests/lj-1458-ub-table.new.test.lua
>>> 
>>> 
>> 
>> <snipped>
>> 
>> 
>>> diff --git a/test/tarantool-tests/lj-1458-ub-table.new.test.lua
>>> b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
>>> new file mode 100644
>>> index 00000000..d0cf6ff5
>>> --- /dev/null
>>> +++
>>> b/test/tarantool-tests/lj-1458-ub-table.new.test.lua
>>> 
>> 
>> Typo: s/table.new/table-new/
> 
> Fixed.
>>  
>>> @@ -0,0 +1,30 @@
>>> +local tap = require('tap')
>>> +
>>> +-- The test file to
>>> demonstrate UBSan warning for `table.new()`
>>> +-- with a minimal and maximum
>>> array and hash parts values.
>>> +-- See also: https://github.com/LuaJIT/LuaJIT/issues/1458.
>>> +local test =
>>> tap.test('lj-1458-ub-table-new')
>>> +
>>> +test:plan(8)
>>> 
>> 
>> Lets use table_sizes * 2 here.
>> 
>> 
> 
> 
> 
> Updated.
> 
> 
> 

> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>> 
>>> +
>>> +local table_new = require('table.new')
>>> +
>>> +local INT_MAX =  2 ^ 31 - 1
>>> +local INT_MIN = -2 ^ 31
>>> +
>>> +local table_sizes = {
>>> +  { 0, INT_MIN },
>>> +  {
>>> 0, INT_MAX },
>>> +  { INT_MIN, 0 },
>>> +  { INT_MAX, 0 },
>>> +}
>>> +
>>> +for _, case in
>>> ipairs(table_sizes) do
>>> +  local apart, hpart = unpack(case)
>>> +  local ok,
>>> err = pcall(table_new, apart, hpart)
>>> +  local message = ('table.new(%d,
>>> %d)'):format(apart, hpart)
>>> +  test:is(ok, false, message .. ' is failed')
>>> 
>> 
>> Typo? s/failed/OK/
> 
> 
> 
> 
> 
> 
> 
> Right, fixed:
> 
> 
> 
> --- a/test/tarantool-tests/lj-1458-ub-table-new.test.lua
> +++ b/test/tarantool-tests/lj-1458-ub-table-new.test.lua
> @@ -23,7 +23,7 @@ for _, case in ipairs(table_sizes) do
> local apart, hpart = unpack(case)
> local ok, err = pcall(table_new, apart, hpart)
> local message = ('table.new(%d, %d)'):format(apart, hpart)
> - test:is(ok, false, message .. ' is failed')
> + test:is(ok, false, message .. ' is ok')
> test:ok(err:match('table overflow'), message .. ' correct error message')
> end
> 
> 
> 
>>  
>>> +  test:ok(err:match('table overflow'), message .. ' correct error
>>> message')
>>> +end
>>> +
>>> +test:done(true)
>>> -- 
>>> 2.43.0
>>> 
>>> 
>> 
>>  
> 
> 
>

[-- Attachment #2: Type: text/html, Size: 7088 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-06-15 15:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-09 10:55 [Tarantool-patches] [PATCH luajit] Prevent sanitizer warnings for lj_tab_new*() and table.new() Sergey Bronnikov via Tarantool-patches
2026-06-09 12:03 ` Sergey Kaplun via Tarantool-patches
2026-06-10 11:03   ` Sergey Bronnikov via Tarantool-patches
2026-06-10 13:42     ` Sergey Kaplun via Tarantool-patches
2026-06-15 15:20     ` Evgeniy Temirgaleev via Tarantool-patches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox