-
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: read scheduled on a different thread than a locked and associated with network namespace #34607
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
Comments
Below is the schedtrace both for good and a bad read - I can't find anything that would help to spot the root cause:
Bad
|
CC @aclements |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
What version of Go are you using (
go version
)?Tested on 3 versions:
Does this issue reproduce with the latest release?
Not tested with 1.13.1
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
While working on a tool that resolves socket IDs of processes running inside Docker container I've found that reading data from procfs when a locked thread is associated with process network namespace is not deterministic. Sometimes it was reading correct data but quite ofter it was reading data from host namespace.
With following code I was able to reproduce this issue on RHEL 7.2 - 7.6: https://github.com/difrost/netns-go-proof
Steps to reproduce using proof code:
$ sudo nsenter -n -t 29763 cat /proc/net/tcp |wc -l 797
$ cat /proc/net/tcp | wc -l 5
What did you expect to see?
Correct data read from procfs while associated with a network namespace.
What did you see instead?
Data from host namespace.
The text was updated successfully, but these errors were encountered: