From 101187d95fec8257754878259549b6debc248fa9 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sat, 14 Dec 2024 20:44:10 +0200 Subject: [PATCH 1/8] Create table.clone-locked-metatables.md --- docs/table.clone-locked-metatables.md | 69 +++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 docs/table.clone-locked-metatables.md diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md new file mode 100644 index 0000000..aeb3e67 --- /dev/null +++ b/docs/table.clone-locked-metatables.md @@ -0,0 +1,69 @@ +# Feature name + +## Summary + +Allow `table.clone` to copy tables with locked metatables. + +## Motivation + +As proposed by the [`table.clone` RFC](function-table-clone.md), the function `table.clone` cannot create shallow copies of a table if it has a locked metatable. +Due to this ugly limitation, it is extremely un-ergonomic to create shallow copies of arbitary tables. +The current behavior of using `table.clone` on a table with a locked metatable is a hard-fail approach where `table.clone` spits out an error instead of having a soft-fail approach wherein a clone is generated without a metatable. +This hard-fail approach severely hinders the usefulness of `table.clone` due to in practice users having to re-implement the function in many scenarios. + +## Design + +When `table.clone` attempts to clone a table with a locked metatable the table is shallow copied with the exception of not assigning the metatable to the shallow copy. + +ie. The behavior (as described by Lua pseudocode) would go from: + +```lua +function table.clone(t) +assert(type(t) == "table") +local nt = {} + +for k, v in pairs(t) do +nt[k] =v +end + +if type(getmetatable(t)) == "table" then +setmetatable(nt, getmetatable(t)) +end + +return nt +end +``` + +to: + +```lua +function table.clone(t) +assert(type(t) == "table") +local nt = {} + +for k, v in pairs(t) do +nt[k] =v +end + +local mtLocked = getmetatable(t) ~= nil and not pcall(setmetatable, t, getmetatable(t)) + +if not mtLocked and type(getmetatable(t)) == "table" then +setmetatable(nt, getmetatable(t)) +end + +return nt +end +``` + +## Drawbacks + +There are no drawbacks to this. +The original RFC puts forth a rationale for restricting cloning tables with locked metatables due to security reasons. +This is a valid concern. The issue at hand being an avenue to assign metatables to unintended tables. +However, this is not a concern as the changes proposed in this RFC do not allow such behavior. + +## Alternatives + +An alternate mode of action would be to also clone the locked metatable to the new copy. +This would, however, come with a few downsides, including potential security and usability issues, as pointed out in the original RFC. +This approach is less flexible than the one proposed in this RFC as users couldn't define custom metatables for shallow copies and has no practical benefits that do not violate security guarantees. From c09c926a345a60ffce312463d6c0cf0e4eb939db Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:02:09 +0200 Subject: [PATCH 2/8] Misc improvements --- docs/table.clone-locked-metatables.md | 49 +++++++++++++++------------ 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index aeb3e67..9091e4c 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -7,7 +7,7 @@ Allow `table.clone` to copy tables with locked metatables. ## Motivation As proposed by the [`table.clone` RFC](function-table-clone.md), the function `table.clone` cannot create shallow copies of a table if it has a locked metatable. -Due to this ugly limitation, it is extremely un-ergonomic to create shallow copies of arbitary tables. +Due to this ugly limitation, it is extremely un-ergonomic to create shallow copies of arbitrary tables. The current behavior of using `table.clone` on a table with a locked metatable is a hard-fail approach where `table.clone` spits out an error instead of having a soft-fail approach wherein a clone is generated without a metatable. This hard-fail approach severely hinders the usefulness of `table.clone` due to in practice users having to re-implement the function in many scenarios. @@ -19,18 +19,18 @@ ie. The behavior (as described by Lua pseudocode) would go from: ```lua function table.clone(t) -assert(type(t) == "table") -local nt = {} + assert(type(t) == "table") + local nt = {} -for k, v in pairs(t) do -nt[k] =v -end + for k, v in pairs(t) do + nt[k] =v + end -if type(getmetatable(t)) == "table" then -setmetatable(nt, getmetatable(t)) -end + if type(getmetatable(t)) == "table" then + setmetatable(nt, getmetatable(t)) + end -return nt + return nt end ``` @@ -38,32 +38,37 @@ to: ```lua function table.clone(t) -assert(type(t) == "table") -local nt = {} + assert(type(t) == "table") + local nt = {} -for k, v in pairs(t) do -nt[k] =v -end + for k, v in pairs(t) do + nt[k] =v + end -local mtLocked = getmetatable(t) ~= nil and not pcall(setmetatable, t, getmetatable(t)) + local mtLocked = getmetatable(t) ~= nil and not pcall(setmetatable, t, getmetatable(t)) -if not mtLocked and type(getmetatable(t)) == "table" then -setmetatable(nt, getmetatable(t)) -end + if not mtLocked and type(getmetatable(t)) == "table" then + setmetatable(nt, getmetatable(t)) + end -return nt + return nt end ``` ## Drawbacks There are no drawbacks to this. + The original RFC puts forth a rationale for restricting cloning tables with locked metatables due to security reasons. This is a valid concern. The issue at hand being an avenue to assign metatables to unintended tables. -However, this is not a concern as the changes proposed in this RFC do not allow such behavior. +However, this is not an issue as the changes proposed in this RFC do not allow for such behavior. + +Another potential drawback that could be levied at this proposal is a reduced debuggability of not hard-failing when the expected behavior would be to create a shallow copy with the metatable of the original table. +However, this point is most certainly moot in practice, as most users very likely are not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. + ## Alternatives An alternate mode of action would be to also clone the locked metatable to the new copy. This would, however, come with a few downsides, including potential security and usability issues, as pointed out in the original RFC. -This approach is less flexible than the one proposed in this RFC as users couldn't define custom metatables for shallow copies and has no practical benefits that do not violate security guarantees. +This approach is also less flexible than the one proposed in this RFC as users couldn't create shallow copies without metatables at all and has no practical benefits that do not violate security guarantees. From 2723717f6e50f885155d09d6060d9c93404cf310 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:02:22 +0200 Subject: [PATCH 3/8] Remove useless comment --- docs/table.clone-locked-metatables.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index 9091e4c..8aeecca 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -65,7 +65,6 @@ However, this is not an issue as the changes proposed in this RFC do not allow f Another potential drawback that could be levied at this proposal is a reduced debuggability of not hard-failing when the expected behavior would be to create a shallow copy with the metatable of the original table. However, this point is most certainly moot in practice, as most users very likely are not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. - ## Alternatives From a05c4c47dac6f40fe244586763aada8b0ff89cc3 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:04:40 +0200 Subject: [PATCH 4/8] Fix grammar mistake --- docs/table.clone-locked-metatables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index 8aeecca..ae29cda 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -64,7 +64,7 @@ This is a valid concern. The issue at hand being an avenue to assign metatables However, this is not an issue as the changes proposed in this RFC do not allow for such behavior. Another potential drawback that could be levied at this proposal is a reduced debuggability of not hard-failing when the expected behavior would be to create a shallow copy with the metatable of the original table. -However, this point is most certainly moot in practice, as most users very likely are not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. +However, this point is most certainly moot in practice, as most users are very likely not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. ## Alternatives From b400c9f4c9fda06067fea3e6a0c868c78d1086dc Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:37:44 +0200 Subject: [PATCH 5/8] Remove "There are no drawbacks" --- docs/table.clone-locked-metatables.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index ae29cda..814614f 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -57,8 +57,6 @@ end ## Drawbacks -There are no drawbacks to this. - The original RFC puts forth a rationale for restricting cloning tables with locked metatables due to security reasons. This is a valid concern. The issue at hand being an avenue to assign metatables to unintended tables. However, this is not an issue as the changes proposed in this RFC do not allow for such behavior. From a5b158dfd6eaaf2ea3a16bd96046c043fd6193f2 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:38:35 +0200 Subject: [PATCH 6/8] Remove value based language --- docs/table.clone-locked-metatables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index 814614f..6395432 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -7,7 +7,7 @@ Allow `table.clone` to copy tables with locked metatables. ## Motivation As proposed by the [`table.clone` RFC](function-table-clone.md), the function `table.clone` cannot create shallow copies of a table if it has a locked metatable. -Due to this ugly limitation, it is extremely un-ergonomic to create shallow copies of arbitrary tables. +Due to this limitation, it is very un-ergonomic to create shallow copies of arbitrary tables. The current behavior of using `table.clone` on a table with a locked metatable is a hard-fail approach where `table.clone` spits out an error instead of having a soft-fail approach wherein a clone is generated without a metatable. This hard-fail approach severely hinders the usefulness of `table.clone` due to in practice users having to re-implement the function in many scenarios. From 251dbfd1872717c2571e3bfa3c3a6dbd53e152de Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Mon, 6 Jan 2025 09:53:29 +0000 Subject: [PATCH 7/8] Add example usages --- docs/table.clone-locked-metatables.md | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index 6395432..31a2a93 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -10,6 +10,38 @@ As proposed by the [`table.clone` RFC](function-table-clone.md), the function `t Due to this limitation, it is very un-ergonomic to create shallow copies of arbitrary tables. The current behavior of using `table.clone` on a table with a locked metatable is a hard-fail approach where `table.clone` spits out an error instead of having a soft-fail approach wherein a clone is generated without a metatable. This hard-fail approach severely hinders the usefulness of `table.clone` due to in practice users having to re-implement the function in many scenarios. +Example use cases wherein the proposed behavior would allow for elegant behavior and where the current behavior would be extremely unergonomic are: + +An example is a JSON serialization function that wants to strip metatables completely before attempting to serialize said table to JSON. +Other examples where users may want to strip metatables may be security layers that don't want unwanted behavior caused by metatables. +```lua +local function JSONEncode(tbl) + return JSONSerialize(setmetatable(table.clone(newTbl), nil)) +end + +-- This wouldn't be possible nowhere near as elegantly with the current behavior and users would effectively have to re-implement table.clone in Lua. +-- The point of table.clone after all was to require users to now create shallow copy functions in Lua themselves. +``` + +Another example is where you do want to mirror the behavior of the original table after cloning as much as possible. +With the new behavior, the following code would be possible. +```lua +local new = {} + +for k, v in old do + new[k] = (type(v) == "table" and getmetatable(v) ~= nil) and setmetatable(table.clone(v), { + __index = function(_, k) + return old[k] + end, + __newindex = function(_, k, v) + old[k] = v + end, + }) or v +end + +return new +``` +With the old behavior said code wouldn't be possible, and you once again would have to re-implement the shallow copy function manually. Even using `pcall` for `table.clone` wouldn't work here as the raw keys wouldn't be copied over. ## Design From ce907ca65c5ef1b7d387bd4c0566eaab0b381b4a Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Mon, 6 Jan 2025 09:54:53 +0000 Subject: [PATCH 8/8] Make concession on moot point --- docs/table.clone-locked-metatables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/table.clone-locked-metatables.md b/docs/table.clone-locked-metatables.md index 31a2a93..71fe195 100644 --- a/docs/table.clone-locked-metatables.md +++ b/docs/table.clone-locked-metatables.md @@ -94,7 +94,7 @@ This is a valid concern. The issue at hand being an avenue to assign metatables However, this is not an issue as the changes proposed in this RFC do not allow for such behavior. Another potential drawback that could be levied at this proposal is a reduced debuggability of not hard-failing when the expected behavior would be to create a shallow copy with the metatable of the original table. -However, this point is most certainly moot in practice, as most users are very likely not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. +However, in practice the benefits of this RFC outweigh the drawbacks regarding debuggability, as most users are very likely not even aware, or desire the fact that `table.clone` can assign the metatables of the original table to the clone. ## Alternatives