mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
Forward bridge fingerprint
gitlab 28651
This commit is contained in:
parent
281d917beb
commit
b563141c6a
7 changed files with 41 additions and 11 deletions
|
@ -43,6 +43,7 @@ type BrokerChannel struct {
|
|||
keepLocalAddresses bool
|
||||
natType string
|
||||
lock sync.Mutex
|
||||
BridgeFingerprint string
|
||||
}
|
||||
|
||||
// We make a copy of DefaultTransport because we want the default Dial
|
||||
|
@ -92,6 +93,7 @@ func newBrokerChannelFromConfig(config ClientConfig) (*BrokerChannel, error) {
|
|||
Rendezvous: rendezvous,
|
||||
keepLocalAddresses: config.KeepLocalAddresses,
|
||||
natType: nat.NATUnknown,
|
||||
BridgeFingerprint: config.BridgeFingerprint,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
@ -116,8 +118,9 @@ func (bc *BrokerChannel) Negotiate(offer *webrtc.SessionDescription) (
|
|||
// Encode the client poll request.
|
||||
bc.lock.Lock()
|
||||
req := &messages.ClientPollRequest{
|
||||
Offer: offerSDP,
|
||||
NAT: bc.natType,
|
||||
Offer: offerSDP,
|
||||
NAT: bc.natType,
|
||||
Fingerprint: bc.BridgeFingerprint,
|
||||
}
|
||||
encReq, err := req.EncodeClientPollRequest()
|
||||
bc.lock.Unlock()
|
||||
|
|
|
@ -103,6 +103,9 @@ type ClientConfig struct {
|
|||
// UTLSRemoveSNI is the flag to control whether SNI should be removed from Client Hello
|
||||
// when uTLS is used.
|
||||
UTLSRemoveSNI bool
|
||||
// BridgeFingerprint is the fingerprint of the bridge that the client will eventually
|
||||
// connect to, as specified in the Bridge line of the torrc.
|
||||
BridgeFingerprint string
|
||||
}
|
||||
|
||||
// NewSnowflakeClient creates a new Snowflake transport client that can spawn multiple
|
||||
|
|
|
@ -95,6 +95,9 @@ func socksAcceptLoop(ln *pt.SocksListener, config sf.ClientConfig, shutdown chan
|
|||
if arg, ok := conn.Req.Args.Get("utls-imitate"); ok {
|
||||
config.UTLSClientID = arg
|
||||
}
|
||||
if arg, ok := conn.Req.Args.Get("fingerprint"); ok {
|
||||
config.BridgeFingerprint = arg
|
||||
}
|
||||
transport, err := sf.NewSnowflakeClient(config)
|
||||
if err != nil {
|
||||
conn.Reject()
|
||||
|
|
|
@ -3,6 +3,6 @@ DataDirectory datadir
|
|||
|
||||
ClientTransportPlugin snowflake exec ./client -log snowflake.log
|
||||
|
||||
Bridge snowflake 192.0.2.3:1 url=https://snowflake-broker.torproject.net.global.prod.fastly.net/ front=cdn.sstatic.net ice=stun:stun.voip.blackberry.com:3478,stun:stun.altar.com.pl:3478,stun:stun.antisip.com:3478,stun:stun.bluesip.net:3478,stun:stun.dus.net:3478,stun:stun.epygi.com:3478,stun:stun.sonetel.com:3478,stun:stun.sonetel.net:3478,stun:stun.stunprotocol.org:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.voys.nl:3478
|
||||
Bridge snowflake 192.0.2.3:1 2B280B23E1107BB62ABFC40DDCC8824814F80A72 fingerprint=2B280B23E1107BB62ABFC40DDCC8824814F80A72 url=https://snowflake-broker.torproject.net.global.prod.fastly.net/ front=cdn.sstatic.net ice=stun:stun.voip.blackberry.com:3478,stun:stun.altar.com.pl:3478,stun:stun.antisip.com:3478,stun:stun.bluesip.net:3478,stun:stun.dus.net:3478,stun:stun.epygi.com:3478,stun:stun.sonetel.com:3478,stun:stun.sonetel.net:3478,stun:stun.stunprotocol.org:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.voys.nl:3478
|
||||
|
||||
SocksPort auto
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue