lua: add flex array field to TString type
commitc84a37ae93b5f2b32d30bee1cb942627c4c6caab
authorRob Norris <robn@despairlabs.com>
Mon, 30 Sep 2024 17:30:03 +0000 (1 03:30 +1000)
committerGitHub <noreply@github.com>
Mon, 30 Sep 2024 17:30:03 +0000 (30 10:30 -0700)
tree1de0d5e29e1d7cbb0439f20724ccfebb2e3d10c7
parent559150529909badcac80e72317067ea92aa4ef27
lua: add flex array field to TString type

Linux 6.10+ with CONFIG_FORTIFY_SOURCE notices memcpy() accessing past
the end of TString, because it has no indication that there there may be
an additional allocation there.

There's no appropriate upstream change for this (ancient) version of
Lua, so this is the narrowest change I could come up with to add a flex
array field to the end of TString to satisfy the check. It's loosely
based on changes from lua/lua@ca41b43f and lua/lua@9514abc2.

Sponsored-by: https://despairlabs.com/sponsor/
Reviewed-by: Alexander Motin <mav@FreeBSD.org>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Rob Norris <robn@despairlabs.com>
Closes #16541
Closes #16583
module/lua/lobject.h
module/lua/lstate.h
module/lua/lstring.c
module/lua/lstring.h