aboutsummaryrefslogtreecommitdiffstats
path: root/prog/clone.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2024-03-06 14:47:02 +0100
committerAleksandr Nogikh <nogikh@google.com>2024-03-13 10:31:21 +0000
commit20d042025bd8e1f91bb1fec20ae1509a08bfa4ef (patch)
treee8a3dcb48db65376fdf865480ca5d043f4c7bdcc /prog/clone.go
parent76713834e4ab721bc6265c89203ee171152cc017 (diff)
sys/linux: clone args before mutation
Not cloning the argument results in replaceArg() replacing a union argument with itself, which may lead to inconsistent resource references. Add an assertion to detect such cases in the future.
Diffstat (limited to 'prog/clone.go')
-rw-r--r--prog/clone.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/prog/clone.go b/prog/clone.go
index 029cf94c4..4523be0eb 100644
--- a/prog/clone.go
+++ b/prog/clone.go
@@ -39,6 +39,10 @@ func cloneCall(c *Call, newargs map[*ResultArg]*ResultArg) *Call {
return c1
}
+func CloneArg(arg Arg) Arg {
+ return clone(arg, nil)
+}
+
func clone(arg Arg, newargs map[*ResultArg]*ResultArg) Arg {
var arg1 Arg
switch a := arg.(type) {