-
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
internal/poll: deadlock when SetReadDeadline and Read race (on net.UnixConn) #68273
Comments
Here's a version that uses |
@golang/runtime |
The problem here is the The docs also say "As an alternative, see the f.SyscallConn method." If I rewrite func getPeerCredentials(conn *net.UnixConn) (*syscall.Ucred, error) {
rc, err := conn.SyscallConn()
if err != nil {
return nil, err
}
var (
cred *syscall.Ucred
cerr error
)
err = rc.Control(func(fd uintptr) {
cred, cerr = syscall.GetsockoptUcred(int(fd), syscall.SOL_SOCKET, syscall.SO_PEERCRED)
})
if err != nil {
return nil, err
}
if cerr != nil {
return nil, cerr
}
return cred, nil
} Closing optimistically since I don't think there is a bug here. Please comment if you disagree. |
Go version
go version go1.23-dev +5a18e79687
Output of
go env
in your module/workspace:What did you do?
See also similar issue #45211.
After running this program in a loop for a while, one of them will deadlock:
Program source:
cc @neild @ianlancetaylor
What did you see happen?
The program deadlocks. I've observed this in an internal program that uses our RPC library which is bade on top of net/http (internal bug: b/179661234). I can try to create a reproducer that just uses net/http to make it more realistic. Internally, the deadlocks are far more frequent. The reproducer above needs a good while on my workstation before one deadlocks.
Below is a delve session that I've got open now. Likely the runtime experts will know what things to actually looks at.
What did you expect to see?
Either never deadlocking, or always deadlocking.
The text was updated successfully, but these errors were encountered: