-
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: AddCleanup is not robust to arg values pointing to struct embedded data #72001
Comments
Related Issues
Related Code Changes Related Documentation (Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in this discussion.) |
FTR, the workaround will still result in the cleanup never running. Cleanups apply to contiguous blocks of memory, what we call an "object," not to Go values by the spec. The only fix is to have a pointer indirection:
We don't panic in the workaround case you provided because we cannot easily catch all the cases where a reference from a cleanup back to the object is a problem. I do have a patch for a |
Thank you for clarifying. Would you folks be OK with potentially a few small amendments to the documentation for From:
To: // If ptr is reachable from cleanup or arg, ptr will never be collected and the cleanup will never run.
// As a protection against simple cases of this, AddCleanup panics if arg is equal to ptr. ptr still counts
// as being reachable if arg points to something in ptr's memory space, as would be the case with
// struct fields. A workaround in the struct field case could be to use pointer indirection instead:
//
// type Client struct {
// r *resource
// }
//
// type resource struct { ... }
//
// func (r *resource) Close() { ... }
//
// func New() *Client {
// c := &Client{r: &resource{...}}
// runtime.AddCleanup(c, (*resource).Close, c.r)
// return c
// } This is an API that I would rarely use, but I would really benefit from a plain language explanation about how to use it correctly and how not to. |
Yes, please feel free to send a documentation change! (Or an example too, if you're up for it. :)) |
Change https://go.dev/cl/659975 mentions this issue: |
Go version
go version go1.25-20250216-RC00 cl/727547642 +d524e1eccd X:fieldtrack,boringcrypto linux/amd64
Output of
go env
in your module/workspace:What did you do?
I noticed that
runtime.AddCleanup
does not robustly handle a case like this:What did you see happen?
The runtime panics:
What did you expect to see?
I would expect that this snippet of code to be more robust to the case of struct embedding (if that is at all possible), or the documentation for
runtime.AddFunc
also mention that naive struct embedding of the data that needs to be cleaned up into an outer struct won't work due to how alignment of memory works.We found a workaround by amending the definition of the outer type as follows:
The text was updated successfully, but these errors were encountered: