1 //go:build linux 2 // +build linux 3 4 package memexec 5 6 import ( 7 "fmt" 8 "os" 9 10 "golang.org/x/sys/unix" 11 ) 12 13 func open(b []byte) (*os.File, error) { 14 fd, err := unix.MemfdCreate("", unix.MFD_CLOEXEC) 15 if err != nil { 16 return nil, err 17 } 18 f := os.NewFile(uintptr(fd), fmt.Sprintf("/proc/%d/fd/%d", os.Getpid(), fd)) 19 if _, err := f.Write(b); err != nil { 20 _ = f.Close() 21 return nil, err 22 } 23 return f, nil 24 } 25 26 func clean(f *os.File) error { 27 return f.Close() 28 } 29