Skip to content
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

fix: immediately rebind after WSAECONNRESET #59

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

deansheather
Copy link
Member

@deansheather deansheather commented Sep 16, 2024

Tailscale is setting the socket option that prevents this from occurring, but somehow it happened anyways. Since it's a permanent error we now tell wireguard to give up and we call conn.Rebind.

relates to coder/coder#14549

@spikecurtis
Copy link

This alone doesn't close coder/coder#14549

// doesn't keep trying to read packets from us.
connErr = permanentNetError{error: err}
c.logf("magicsock: receive: rebind required due to socket reset: %v", err)
c.Rebind()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The docs for Rebind() say that we need to call ReSTUN() after rebinding.

connErr = permanentNetError{error: err}
c.logf("magicsock: receive: rebind required due to socket reset: %v", err)
c.Rebind()
return 0, connErr

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking into this more, I don't think a permanent error is the right thing when combined with rebinding. The magicsock rebinds under the covers as far as the Wireguard device is concerned. If we return a permanent error, Wireguard will stop reading from this function, and has to be stopped and restarted. I guess just return the original error so it gets logged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants