-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disorder strategy from byeDPI (#323)
- Loading branch information
1 parent
8f91506
commit 2725bce
Showing
5 changed files
with
211 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright 2024 The Outline Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package configurl | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strconv" | ||
|
||
"github.com/Jigsaw-Code/outline-sdk/transport" | ||
"github.com/Jigsaw-Code/outline-sdk/x/disorder" | ||
) | ||
|
||
func registerDisorderDialer(r TypeRegistry[transport.StreamDialer], typeID string, newSD BuildFunc[transport.StreamDialer]) { | ||
r.RegisterType(typeID, func(ctx context.Context, config *Config) (transport.StreamDialer, error) { | ||
sd, err := newSD(ctx, config.BaseConfig) | ||
if err != nil { | ||
return nil, err | ||
} | ||
disorderPacketNStr := config.URL.Opaque | ||
disorderPacketN, err := strconv.Atoi(disorderPacketNStr) | ||
if err != nil { | ||
return nil, fmt.Errorf("disoder: could not parse splice position: %v", err) | ||
} | ||
return disorder.NewStreamDialer(sd, disorderPacketN) | ||
}) | ||
} |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright 2024 The Outline Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package disorder | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
"net" | ||
|
||
"github.com/Jigsaw-Code/outline-sdk/transport" | ||
"github.com/Jigsaw-Code/outline-sdk/x/sockopt" | ||
) | ||
|
||
type disorderDialer struct { | ||
dialer transport.StreamDialer | ||
disorderPacketN int | ||
} | ||
|
||
var _ transport.StreamDialer = (*disorderDialer)(nil) | ||
|
||
// NewStreamDialer creates a [transport.StreamDialer]. | ||
// It works like this: | ||
// * Wait for disorderPacketN'th call to Write. All Write requests before and after the target packet are written normally. | ||
// * Send the disorderPacketN'th packet with TTL == 1. | ||
// * This packet is dropped somewhere in the network and never reaches the server. | ||
// * TTL is restored. | ||
// * The next part of data is sent normally. | ||
// * Server notices the lost fragment and requests re-transmission of lost packet. | ||
func NewStreamDialer(dialer transport.StreamDialer, disorderPacketN int) (transport.StreamDialer, error) { | ||
if dialer == nil { | ||
return nil, errors.New("argument dialer must not be nil") | ||
} | ||
if disorderPacketN < 0 { | ||
return nil, fmt.Errorf("disorder argument must be >= 0, got %d", disorderPacketN) | ||
} | ||
return &disorderDialer{dialer: dialer, disorderPacketN: disorderPacketN}, nil | ||
} | ||
|
||
// DialStream implements [transport.StreamDialer].DialStream. | ||
func (d *disorderDialer) DialStream(ctx context.Context, remoteAddr string) (transport.StreamConn, error) { | ||
innerConn, err := d.dialer.DialStream(ctx, remoteAddr) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
tcpInnerConn, ok := innerConn.(*net.TCPConn) | ||
if !ok { | ||
return nil, fmt.Errorf("disorder strategy: expected base dialer to return TCPConn") | ||
} | ||
tcpOptions, err := sockopt.NewTCPOptions(tcpInnerConn) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
dw := NewWriter(innerConn, tcpOptions, d.disorderPacketN) | ||
|
||
return transport.WrapConn(innerConn, innerConn, dw), nil | ||
} |
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// Copyright 2024 The Outline Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package disorder | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
|
||
"github.com/Jigsaw-Code/outline-sdk/x/sockopt" | ||
) | ||
|
||
type disorderWriter struct { | ||
conn io.Writer | ||
tcpOptions sockopt.TCPOptions | ||
writesToDisorder int | ||
} | ||
|
||
var _ io.Writer = (*disorderWriter)(nil) | ||
|
||
func NewWriter(conn io.Writer, tcpOptions sockopt.TCPOptions, runAtPacketN int) io.Writer { | ||
// TODO: Support ReadFrom. | ||
return &disorderWriter{ | ||
conn: conn, | ||
tcpOptions: tcpOptions, | ||
writesToDisorder: runAtPacketN, | ||
} | ||
} | ||
|
||
func (w *disorderWriter) Write(data []byte) (written int, err error) { | ||
if w.writesToDisorder == 0 { | ||
defaultHopLimit, err := w.tcpOptions.HopLimit() | ||
if err != nil { | ||
return 0, fmt.Errorf("failed to get the hop limit: %w", err) | ||
} | ||
|
||
// Setting number of hops to 1 will lead to data to get lost on host. | ||
err = w.tcpOptions.SetHopLimit(1) | ||
if err != nil { | ||
return 0, fmt.Errorf("failed to set the hop limit to 1: %w", err) | ||
} | ||
|
||
defer func() { | ||
// The packet with low hop limit was sent. | ||
// Make next calls send data normally. | ||
// | ||
// The packet with the low hop limit will get resent by the kernel later. | ||
// The network filters will receive data out of order. | ||
err = w.tcpOptions.SetHopLimit(defaultHopLimit) | ||
if err != nil { | ||
err = fmt.Errorf("failed to set the hop limit %d: %w", defaultHopLimit, err) | ||
} | ||
}() | ||
} | ||
|
||
// The packet will get lost at the first send, since the hop limit is too low. | ||
n, err := w.conn.Write(data) | ||
|
||
// TODO: Wait for queued data to be sent by the kernel to the socket. | ||
|
||
if w.writesToDisorder > -1 { | ||
w.writesToDisorder -= 1 | ||
} | ||
return n, err | ||
} |