mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 14:55:47 +00:00
wgengine/magicsock: collapse three DERP maps down into one
This commit is contained in:
parent
7e1bed82bd
commit
8f9849c140
@ -83,13 +83,18 @@ type Conn struct {
|
|||||||
derpMu sync.Mutex
|
derpMu sync.Mutex
|
||||||
wantDerp bool
|
wantDerp bool
|
||||||
privateKey key.Private
|
privateKey key.Private
|
||||||
myDerp int // nearest DERP server; 0 means none/unknown
|
myDerp int // nearest DERP server; 0 means none/unknown
|
||||||
derpConn map[int]*derphttp.Client // magic derp port (see derpmap.go) to its client
|
activeDerp map[int]activeDerp
|
||||||
derpCancel map[int]context.CancelFunc // to close derp goroutines
|
|
||||||
derpWriteCh map[int]chan<- derpWriteRequest
|
|
||||||
derpTLSConfig *tls.Config // normally nil; used by tests
|
derpTLSConfig *tls.Config // normally nil; used by tests
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// activeDerp contains fields for an active DERP connection.
|
||||||
|
type activeDerp struct {
|
||||||
|
c *derphttp.Client
|
||||||
|
cancel context.CancelFunc
|
||||||
|
writeCh chan<- derpWriteRequest
|
||||||
|
}
|
||||||
|
|
||||||
// udpAddr is the key in the addrsByUDP map.
|
// udpAddr is the key in the addrsByUDP map.
|
||||||
// It maps an ip:port onto an *AddrSet.
|
// It maps an ip:port onto an *AddrSet.
|
||||||
type udpAddr struct {
|
type udpAddr struct {
|
||||||
@ -618,17 +623,16 @@ func (c *Conn) derpWriteChanOfAddr(addr *net.UDPAddr) chan<- derpWriteRequest {
|
|||||||
c.logf("DERP lookup of %v with no private key; ignoring", addr.IP)
|
c.logf("DERP lookup of %v with no private key; ignoring", addr.IP)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
ch, ok := c.derpWriteCh[addr.Port]
|
ad, ok := c.activeDerp[addr.Port]
|
||||||
if !ok {
|
if !ok {
|
||||||
if c.derpWriteCh == nil {
|
if c.activeDerp == nil {
|
||||||
c.derpWriteCh = make(map[int]chan<- derpWriteRequest)
|
c.activeDerp = make(map[int]activeDerp)
|
||||||
c.derpConn = make(map[int]*derphttp.Client)
|
|
||||||
c.derpCancel = make(map[int]context.CancelFunc)
|
|
||||||
}
|
}
|
||||||
host := derpHost(addr.Port)
|
host := derpHost(addr.Port)
|
||||||
if host == "" {
|
if host == "" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
// TODO(bradfitz): don't hold derpMu here. It's slow. Release first and use singleflight to dial+re-lock to add.
|
||||||
dc, err := derphttp.NewClient(c.privateKey, "https://"+host+"/derp", log.Printf)
|
dc, err := derphttp.NewClient(c.privateKey, "https://"+host+"/derp", log.Printf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.logf("derphttp.NewClient: port %d, host %q invalid? err: %v", addr.Port, host, err)
|
c.logf("derphttp.NewClient: port %d, host %q invalid? err: %v", addr.Port, host, err)
|
||||||
@ -638,15 +642,16 @@ func (c *Conn) derpWriteChanOfAddr(addr *net.UDPAddr) chan<- derpWriteRequest {
|
|||||||
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
// TODO: close derp channels (if addr.Port != myDerp) on inactivity timer
|
// TODO: close derp channels (if addr.Port != myDerp) on inactivity timer
|
||||||
bidiCh := make(chan derpWriteRequest, bufferedDerpWritesBeforeDrop)
|
ch := make(chan derpWriteRequest, bufferedDerpWritesBeforeDrop)
|
||||||
ch = bidiCh
|
|
||||||
c.derpConn[addr.Port] = dc
|
ad.c = dc
|
||||||
c.derpWriteCh[addr.Port] = ch
|
ad.writeCh = ch
|
||||||
c.derpCancel[addr.Port] = cancel
|
ad.cancel = cancel
|
||||||
|
|
||||||
go c.runDerpReader(ctx, addr, dc)
|
go c.runDerpReader(ctx, addr, dc)
|
||||||
go c.runDerpWriter(ctx, addr, dc, bidiCh)
|
go c.runDerpWriter(ctx, addr, dc, ch)
|
||||||
}
|
}
|
||||||
return ch
|
return ad.writeCh
|
||||||
}
|
}
|
||||||
|
|
||||||
// derpReadResult is the type sent by runDerpClient to ReceiveIPv4
|
// derpReadResult is the type sent by runDerpClient to ReceiveIPv4
|
||||||
@ -903,15 +908,18 @@ func (c *Conn) SetDERPEnabled(wantDerp bool) {
|
|||||||
|
|
||||||
// c.derpMu must be held.
|
// c.derpMu must be held.
|
||||||
func (c *Conn) closeAllDerpLocked() {
|
func (c *Conn) closeAllDerpLocked() {
|
||||||
for _, c := range c.derpConn {
|
for i := range c.activeDerp {
|
||||||
go c.Close()
|
c.closeDerpLocked(i)
|
||||||
}
|
}
|
||||||
for _, cancel := range c.derpCancel {
|
}
|
||||||
cancel()
|
|
||||||
|
// c.derpMu must be held.
|
||||||
|
func (c *Conn) closeDerpLocked(node int) {
|
||||||
|
if ad, ok := c.activeDerp[node]; ok {
|
||||||
|
go ad.c.Close()
|
||||||
|
ad.cancel()
|
||||||
|
delete(c.activeDerp, node)
|
||||||
}
|
}
|
||||||
c.derpConn = nil
|
|
||||||
c.derpCancel = nil
|
|
||||||
c.derpWriteCh = nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetMark(value uint32) error { return nil }
|
func (c *Conn) SetMark(value uint32) error { return nil }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user