-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
websocket: add reuseport support #2261
Open
chaitanyaprem
wants to merge
19
commits into
libp2p:master
Choose a base branch
from
chaitanyaprem:feat/websocket-reuseport
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e7b4454
feat: added REUSEPORT support for websocket listeners #1435
chaitanyaprem 445f860
Added support for using reuseport in connection Dialing #1435
chaitanyaprem 4279f92
chore: cleaned-up the websocket reuse test
chaitanyaprem 80b3b34
chore: addressed review comments for #2261
chaitanyaprem 804ba36
chore: address linter error in websocket test script
chaitanyaprem f73c1ba
Merge branch 'master' into feat/websocket-reuseport
chaitanyaprem cc83e5a
chore: addressed review comments wrt test.
chaitanyaprem 9c539a6
Merge branch 'libp2p:master' into feat/websocket-reuseport
chaitanyaprem 153829a
chore: addressed review comments and cleanedup test script
chaitanyaprem 07aae9b
Update websocket_test.go
chaitanyaprem ad59795
feat: use reuseport wihle dialing client connections if set
chaitanyaprem b170b43
Merge branch 'master' into feat/websocket-reuseport
chaitanyaprem 863f51d
Merge branch 'master' into feat/websocket-reuseport
chaitanyaprem 4cccef8
Merge branch 'libp2p:master' into feat/websocket-reuseport
chaitanyaprem 4179d80
Merge branch 'libp2p:master' into feat/websocket-reuseport
chaitanyaprem 8840f19
chore:comment lb check in reuseport test to avoid flaky results
chaitanyaprem f660226
chore: fix gofmt error
chaitanyaprem 3fea95c
Merge branch 'master' into feat/websocket-reuseport
chaitanyaprem c01a725
chore: increase number of clients to avoid flakiness of reuseport test
chaitanyaprem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,13 @@ import ( | |
"github.com/libp2p/go-libp2p/core/network" | ||
"github.com/libp2p/go-libp2p/core/peer" | ||
"github.com/libp2p/go-libp2p/core/transport" | ||
"github.com/libp2p/go-reuseport" | ||
|
||
ws "github.com/gorilla/websocket" | ||
reuseTransport "github.com/libp2p/go-libp2p/p2p/net/reuseport" | ||
ma "github.com/multiformats/go-multiaddr" | ||
mafmt "github.com/multiformats/go-multiaddr-fmt" | ||
manet "github.com/multiformats/go-multiaddr/net" | ||
|
||
ws "github.com/gorilla/websocket" | ||
) | ||
|
||
// WsFmt is multiaddr formatter for WsProtocol | ||
|
@@ -60,6 +61,13 @@ var upgrader = ws.Upgrader{ | |
|
||
type Option func(*WebsocketTransport) error | ||
|
||
func EnableReuseport() Option { | ||
return func(tr *WebsocketTransport) error { | ||
tr.reuseport = true | ||
return nil | ||
} | ||
} | ||
|
||
// WithTLSClientConfig sets a TLS client configuration on the WebSocket Dialer. Only | ||
// relevant for non-browser usages. | ||
// | ||
|
@@ -85,8 +93,10 @@ type WebsocketTransport struct { | |
upgrader transport.Upgrader | ||
rcmgr network.ResourceManager | ||
|
||
tlsClientConf *tls.Config | ||
tlsConf *tls.Config | ||
tlsClientConf *tls.Config | ||
tlsConf *tls.Config | ||
reuseport bool //reuseport is disabled by default, can be enabled by passing it as an option. | ||
reuseTransport reuseTransport.Transport | ||
} | ||
|
||
var _ transport.Transport = (*WebsocketTransport)(nil) | ||
|
@@ -95,6 +105,7 @@ func New(u transport.Upgrader, rcmgr network.ResourceManager, opts ...Option) (* | |
if rcmgr == nil { | ||
rcmgr = &network.NullResourceManager{} | ||
} | ||
|
||
t := &WebsocketTransport{ | ||
upgrader: u, | ||
rcmgr: rcmgr, | ||
|
@@ -187,7 +198,13 @@ func (t *WebsocketTransport) maDial(ctx context.Context, raddr ma.Multiaddr) (ma | |
return nil, err | ||
} | ||
isWss := wsurl.Scheme == "wss" | ||
|
||
dialer := ws.Dialer{HandshakeTimeout: 30 * time.Second} | ||
if t.UseReuseport() { | ||
dialer.NetDial = func(network, address string) (net.Conn, error) { | ||
return t.reuseTransport.DialContext(ctx, raddr) | ||
} | ||
} | ||
if isWss { | ||
sni := "" | ||
sni, err = raddr.ValueForProtocol(ma.P_SNI) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will also need to have the reuse logic: https://github.com/libp2p/go-libp2p/blob/master/p2p/transport/websocket/websocket.go#L205 |
||
|
@@ -229,7 +246,7 @@ func (t *WebsocketTransport) maDial(ctx context.Context, raddr ma.Multiaddr) (ma | |
} | ||
|
||
func (t *WebsocketTransport) maListen(a ma.Multiaddr) (manet.Listener, error) { | ||
l, err := newListener(a, t.tlsConf) | ||
l, err := newListener(a, t.tlsConf, t.UseReuseport()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
@@ -244,3 +261,8 @@ func (t *WebsocketTransport) Listen(a ma.Multiaddr) (transport.Listener, error) | |
} | ||
return &transportListener{Listener: t.upgrader.UpgradeListener(t, malist)}, nil | ||
} | ||
|
||
// UseReuseport returns true if reuseport is enabled and available. | ||
func (t *WebsocketTransport) UseReuseport() bool { | ||
return t.reuseport && reuseport.Available() | ||
} |
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
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.
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.
We want to use the transport's
reuseTransport
field. Otherwise this will never reuse the port we're listening on when dialing. I guess you can pass them in tonewListener
.Also add a test that we are reusing port when dialing.