-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: spurious cgo dynamic check failure on darwin/amd64 #17160
Comments
The usual false positive with the tests is passing a pointer to a field in a struct such that cgo does not recognize that you are passing just a pointer to a field, and the runtime examines the whole struct, not just the field, for Go pointers. |
No struct fields here, just *C.char objects created either with C.CString or returned from C.realpath (which was created with malloc). |
I would need to see a test case. I am not aware of any false positives such as you describe. |
All I have is plugin/plugin_dlopen.go after the CL series ending in https://golang.org/cl/29393 minus the changes in https://golang.org/c/29392. My attempts to isolate it failed. |
CL https://golang.org/cl/29392 mentions this issue. |
I believe I've found the problem, it's in my darwin plugin CL series not the cgo check. Working on a fix. |
Patch set 3 of CL 29394 addresses this. When I opened this bug I had written off dlopen being the cause because the stack trace pointed to the first C.free in the function. Of course that C.free was in a defer, so it happened after the dlopen. For some reason it took me a while to see that. |
On darwin/amd64, several uses of
C.free(unsafe.Pointer(cstr))
in plugin/plugin_dlopen.go get caught incorrectly on the dynamic cgo check:Calling a C helper function, C.freestr(cstr), does not get caught.
I spent a while trying to isolate a test case, but no luck. Once I've mailed the darwin plugin CLs, replacing C.freestr with C.free shows the error consistently when running misc/cgo/testplugin.
/cc @ianlancetaylor
The text was updated successfully, but these errors were encountered: