-
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
cmd/compile: nil check not scheduled correctly #42673
Comments
This is actually more than a performance bug. The nil checks are not getting scheduled correctly.
This compiles to
The read is happening before its corresponding nil check. The nil check elim pass is doing the right thing. It is the scheduling pass which is wrong. I don't see an obvious way to defeat type safety with this bug, but it makes me nervous. We should fix it for 1.16. |
Change https://golang.org/cl/270940 mentions this issue: |
This is looking trickier than first appears (see CL). I'm going to punt to 1.17. I think the worst thing that can happen here is that we can read arbitrary parts of memory before a nil fault. In those cases it was going to fault anyway, so maybe we get a SIGBUS instead of a SIGSEGV. That's about as bad as it gets. Perhaps memory-mapped device drivers might treat reads as having side-effects, but that seems like a tiny attack surface. Possibly also there's some spectre-ish vulnerability here, but without the speculation, if a chain of nilptr-delayed reads can be constructed. I think it would involve some very strange gadgets that would have to be in a binary, though, so it appears unlikely to matter. |
Is this going to happen for 1.17? Thanks. |
No, it is not. I have a CL but it isn't quite right - it needs more tweaking. |
@randall77 This has been rolling forward through milestones. Should it move to Backlog? |
No, let's just punt this to 1.20. I have some ideas on how to fix, just need to make them happen. |
Bumping to 1.21. I actually have a CL stack that will fix this in the next release. CL 270940. |
compiles to
Note the TESTB which is a nil check. It is redundant with the previous load, which would have faulted if AX is nil.
There are 2 nil checks in this code, but only one is removed (technically, not removed but merged with a load).
Looking at the code, I think it is because the two nil checks get scheduled out of order, so the elimination code gets confused. The elimination code should be more robust to ordering.
The text was updated successfully, but these errors were encountered: