feat(miniooni): implement torsf tunnel (#921)
This diff adds to miniooni support for using the torsf tunnel. Such a tunnel consists of a snowflake pluggable transport in front of a custom instance of tor and requires tor to be installed. The usage is like: ``` ./miniooni --tunnel=torsf [...] ``` The default snowflake rendezvous method is "domain_fronting". You can select the AMP cache instead using "amp": ``` ./miniooni --snowflake-rendezvous=amp --tunnel=torsf [...] ``` Part of https://github.com/ooni/probe/issues/1955
This commit is contained in:
parent
5466f30526
commit
18a9523496
10 changed files with 438 additions and 57 deletions
122
internal/tunnel/torsf.go
Normal file
122
internal/tunnel/torsf.go
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
package tunnel
|
||||
|
||||
//
|
||||
// torsf: Tor+snowflake tunnel
|
||||
//
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/url"
|
||||
"time"
|
||||
|
||||
"github.com/ooni/probe-cli/v3/internal/bytecounter"
|
||||
"github.com/ooni/probe-cli/v3/internal/ptx"
|
||||
)
|
||||
|
||||
// torsfStart starts the torsf (tor+snowflake) tunnel
|
||||
func torsfStart(ctx context.Context, config *Config) (Tunnel, DebugInfo, error) {
|
||||
config.logger().Infof("tunnel: starting snowflake with %s rendezvous method", config.snowflakeRendezvousMethod())
|
||||
if err := ctx.Err(); err != nil {
|
||||
return nil, DebugInfo{}, err
|
||||
}
|
||||
|
||||
// 1. start a listener using snowflake
|
||||
sfdialer, err := newSnowflakeDialer(config)
|
||||
if err != nil {
|
||||
return nil, DebugInfo{}, err
|
||||
}
|
||||
ptl := config.sfNewPTXListener(ctx, sfdialer)
|
||||
if err := ptl.Start(); err != nil {
|
||||
return nil, DebugInfo{}, err
|
||||
}
|
||||
|
||||
// 2. append arguments to the configuration
|
||||
extraArguments := []string{
|
||||
"UseBridges", "1",
|
||||
"ClientTransportPlugin", ptl.AsClientTransportPluginArgument(),
|
||||
"Bridge", sfdialer.AsBridgeArgument(),
|
||||
}
|
||||
config.TorArgs = append(config.TorArgs, extraArguments...)
|
||||
|
||||
// 3. start tor as we would normally do
|
||||
torTunnel, debugInfo, err := config.sfTorStart(ctx, config)
|
||||
debugInfo.Name = "torsf"
|
||||
if err != nil {
|
||||
ptl.Stop()
|
||||
return nil, debugInfo, err
|
||||
}
|
||||
|
||||
// 4. wrap the tunnel and the listener
|
||||
tsft := &torsfTunnel{
|
||||
torTunnel: torTunnel,
|
||||
sfListener: ptl,
|
||||
}
|
||||
return tsft, debugInfo, nil
|
||||
}
|
||||
|
||||
func (c *Config) sfNewPTXListener(ctx context.Context, sfdialer *ptx.SnowflakeDialer) (out torsfPTXListener) {
|
||||
out = &ptx.Listener{
|
||||
ExperimentByteCounter: nil,
|
||||
ListenSocks: c.testSfListenSocks,
|
||||
Logger: c.logger(),
|
||||
PTDialer: sfdialer,
|
||||
SessionByteCounter: bytecounter.ContextSessionByteCounter(ctx),
|
||||
}
|
||||
if c.testSfWrapPTXListener != nil {
|
||||
out = c.testSfWrapPTXListener(out)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// torsfPTXListener is an abstract ptx.Listener.
|
||||
type torsfPTXListener interface {
|
||||
Start() error
|
||||
Stop()
|
||||
AsClientTransportPluginArgument() string
|
||||
}
|
||||
|
||||
func (c *Config) sfTorStart(ctx context.Context, config *Config) (Tunnel, DebugInfo, error) {
|
||||
if c.testSfTorStart != nil {
|
||||
return c.testSfTorStart(ctx, config)
|
||||
}
|
||||
return torStart(ctx, config)
|
||||
}
|
||||
|
||||
// newSnowflakeDialer returns the correct snowflake dialer.
|
||||
func newSnowflakeDialer(config *Config) (*ptx.SnowflakeDialer, error) {
|
||||
rm, err := ptx.NewSnowflakeRendezvousMethod(config.snowflakeRendezvousMethod())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
sfDialer := ptx.NewSnowflakeDialerWithRendezvousMethod(rm)
|
||||
return sfDialer, nil
|
||||
}
|
||||
|
||||
// torsfTunnel implements Tunnel
|
||||
type torsfTunnel struct {
|
||||
torTunnel Tunnel
|
||||
sfListener torsfListener
|
||||
}
|
||||
|
||||
// torsfListener is torsfTunnel's view of a ptx listener for snowflake
|
||||
type torsfListener interface {
|
||||
Stop()
|
||||
}
|
||||
|
||||
var _ Tunnel = &torsfTunnel{}
|
||||
|
||||
// BootstrapTime implements Tunnel
|
||||
func (tt *torsfTunnel) BootstrapTime() time.Duration {
|
||||
return tt.torTunnel.BootstrapTime()
|
||||
}
|
||||
|
||||
// SOCKS5ProxyURL implements Tunnel
|
||||
func (tt *torsfTunnel) SOCKS5ProxyURL() *url.URL {
|
||||
return tt.torTunnel.SOCKS5ProxyURL()
|
||||
}
|
||||
|
||||
// Stop implements Tunnel
|
||||
func (tt *torsfTunnel) Stop() {
|
||||
tt.torTunnel.Stop()
|
||||
tt.sfListener.Stop()
|
||||
}
|
||||
Loading…
Reference in a new issue