Skip to content

Commit

Permalink
fix for issue traefik#1634 -- for passing a closure to exported Go fu…
Browse files Browse the repository at this point in the history
…nction
  • Loading branch information
rcoreilly committed Jul 10, 2024
1 parent 381e045 commit f4a2fed
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
58 changes: 58 additions & 0 deletions interp/interp_issue_1634_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
package interp

import (
"bytes"
"io"
"os"
"reflect"
"testing"
)

func TestExportClosureArg(t *testing.T) {
outExp := []byte("0\n1\n2\n")
// catch stdout
backupStdout := os.Stdout
defer func() {
os.Stdout = backupStdout
}()
r, w, _ := os.Pipe()
os.Stdout = w

i := New(Options{})
i.Use(Exports{
"tmp/tmp": map[string]reflect.Value{
"Func": reflect.ValueOf(func(s *[]func(), f func()) { *s = append(*s, f) }),
},
})
i.ImportUsed()

_, err := i.Eval(`
func main() {
fs := []func(){}
for i := 0; i < 3; i++ {
i := i
tmp.Func(&fs, func() { println(i) })
}
for _, f := range fs {
f()
}
}
`)
if err != nil {
t.Error(err)
}

// read stdout
if err = w.Close(); err != nil {
t.Fatal(err)
}
outInterp, err := io.ReadAll(r)
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(outInterp, outExp) {
t.Errorf("\nGot: %q,\n want: %q", string(outInterp), string(outExp))
}

}
16 changes: 16 additions & 0 deletions interp/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,23 @@ func genFunctionWrapper(n *node) func(*frame) reflect.Value {
}
funcType := n.typ.TypeOf()

value := genValue(n)
isDefer := false
if n.anc != nil && n.anc.anc != nil && n.anc.anc.kind == deferStmt {
isDefer = true
}

return func(f *frame) reflect.Value {
v := value(f)
if !isDefer && v.Kind() == reflect.Func {
// per #1634, if v is already a func, then don't re-wrap! critically, the original wrapping
// clones the frame, whereas the one here (below) does _not_ clone the frame, so it doesn't
// generate the proper closure capture effects!
// this path is the same as genValueAsFunctionWrapper which is the path taken above if
// the value has an associated node, which happens when you do f := func() ..
return v
}

return reflect.MakeFunc(funcType, func(in []reflect.Value) []reflect.Value {
// Allocate and init local frame. All values to be settable and addressable.
fr := newFrame(f, len(def.types), f.runid())
Expand Down

0 comments on commit f4a2fed

Please sign in to comment.