This repository was archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
Also check sockets bind to tcp6 and fail on all closed sockets #824
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Juanjo Alvarez <[email protected]>
18c5e2f
to
6082b9c
Compare
erizocosmico
suggested changes
Sep 19, 2019
agarciamontoro
approved these changes
Sep 19, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was a tricky one... Good that you found the cause! 🎉
erizocosmico
approved these changes
Sep 19, 2019
@juanjux remember to sign de DCO |
Signed-off-by: Juanjo Alvarez <[email protected]>
Signed-off-by: Juanjo Alvarez <[email protected]>
Signed-off-by: Juanjo Alvarez <[email protected]>
0109e1c
to
604c376
Compare
@erizocosmico yep, that's what happen when you commit code from VMs or other people machines without all your git/gpg config scaffolding :/ |
ajnavarro
approved these changes
Sep 30, 2019
On linux system,if TCP v6 is disabled on the system, open /proc/net/tcp6 will produce the error func tcpSocks(accept AcceptFn) ([]sockTabEntry, error) {
paths := [2]string{pathTCP4Tab, pathTCP6Tab}
var allTabs []sockTabEntry
for _, p := range paths {
f, err := os.Open(p)
defer func() {
_ = f.Close()
}()
if err != nil {
return nil, err
}
t, err := parseSocktab(f, accept)
if err != nil {
return nil, err
}
allTabs = append(allTabs, t...)
}
extractProcInfo(allTabs)
return allTabs, nil
} |
@TheWinds this project is no longer maintained, you can report this on it's new home: https://github.com/dolthub/go-mysql-server |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Also parse
/proc/net/tcp6
because go will bind to it (too) onListen()
if TCP v6 is enabled on the system, and then the socket will only show on/proc/net/tcp6
. This fixes Failing test for connection handler in Linux #821.Fail on all kinds of closed sockets, even if they were closed correctly, before the query completion, thus ensuring that the query is cancelled.
Two explicit channel closings to ensure the goroutines exit ASAP.