aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-03-13 15:42:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-03-13 15:42:39 -0300
commit983bc433e6a60cbc4fe3a16f1d4713bacb8e3509 (patch)
tree48e7e1349f29de673d5f78a9e0d55b369780c911 /lvm.c
parent25da574fcbb68bf507431a6091ab73ac434c9428 (diff)
downloadlua-983bc433e6a60cbc4fe3a16f1d4713bacb8e3509.tar.gz
lua-983bc433e6a60cbc4fe3a16f1d4713bacb8e3509.tar.bz2
lua-983bc433e6a60cbc4fe3a16f1d4713bacb8e3509.zip
Bug: Use after free in 'luaV_finishset'
If a metatable is a weak table, its __newindex field could be collected by an emergency collection while being used in 'luaV_finishset'. (This bug has similarities with bug 5.3.2-1, fixed in commit a272fa66.)
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lvm.c b/lvm.c
index fcd24e11..7023a04d 100644
--- a/lvm.c
+++ b/lvm.c
@@ -339,7 +339,10 @@ void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
339 lua_assert(isempty(slot)); /* slot must be empty */ 339 lua_assert(isempty(slot)); /* slot must be empty */
340 tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */ 340 tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */
341 if (tm == NULL) { /* no metamethod? */ 341 if (tm == NULL) { /* no metamethod? */
342 sethvalue2s(L, L->top.p, h); /* anchor 't' */
343 L->top.p++; /* assume EXTRA_STACK */
342 luaH_finishset(L, h, key, slot, val); /* set new value */ 344 luaH_finishset(L, h, key, slot, val); /* set new value */
345 L->top.p--;
343 invalidateTMcache(h); 346 invalidateTMcache(h);
344 luaC_barrierback(L, obj2gco(h), val); 347 luaC_barrierback(L, obj2gco(h), val);
345 return; 348 return;