summaryrefslogtreecommitdiff
path: root/dialer.go
blob: 0c3f8c3f94a4c4cc7cb3cab1baac5b6861b98f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package obfsvpn

import (
	"context"
	"net"
	"strconv"

	pt "git.torproject.org/pluggable-transports/goptlib.git"
	"gitlab.com/yawning/obfs4.git/common/ntor"
	"gitlab.com/yawning/obfs4.git/transports/base"
	"gitlab.com/yawning/obfs4.git/transports/obfs4"
)

// IATMode determines the amount of time sent between packets.
type IATMode int

// Valid IAT modes.
const (
	IATNone IATMode = iota
	IATEnabled
	IATParanoid
)

// Dialer contains options for connecting to an address and obfuscating traffic
// with the obfs4 protocol.
// It performs the ntor handshake on all dialed connections.
type Dialer struct {
	Dialer net.Dialer

	NodeID    *ntor.NodeID
	PublicKey *ntor.PublicKey
	IATMode   IATMode

	cf base.ClientFactory
}

// Dial creates an outbound net.Conn and performs the ntor handshake.
func (d *Dialer) Dial(ctx context.Context, network, address string) (net.Conn, error) {
	if d.cf == nil {
		cf, err := (&obfs4.Transport{}).ClientFactory("")
		if err != nil {
			return nil, err
		}
		d.cf = cf
	}
	ptArgs := make(pt.Args)
	ptArgs.Add("node-id", d.NodeID.Hex())
	ptArgs.Add("public-key", d.PublicKey.Hex())
	ptArgs.Add("iat-mode", strconv.Itoa(int(d.IATMode)))
	args, err := d.cf.ParseArgs(&ptArgs)
	if err != nil {
		return nil, err
	}
	return d.cf.Dial(network, address, func(network, address string) (net.Conn, error) {
		return d.Dialer.DialContext(ctx, network, address)
	}, args)
}