mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-07 08:07:42 +00:00
tsnet: fix netstack leak on Close
Identified while investigating a goroutine leak in a different repo. Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
parent
5fc8843c4c
commit
4102a687e3
@ -84,6 +84,7 @@ type Server struct {
|
|||||||
initOnce sync.Once
|
initOnce sync.Once
|
||||||
initErr error
|
initErr error
|
||||||
lb *ipnlocal.LocalBackend
|
lb *ipnlocal.LocalBackend
|
||||||
|
netstack *netstack.Impl
|
||||||
linkMon *monitor.Mon
|
linkMon *monitor.Mon
|
||||||
localAPIListener net.Listener
|
localAPIListener net.Listener
|
||||||
rootPath string // the state directory
|
rootPath string // the state directory
|
||||||
@ -151,6 +152,10 @@ func (s *Server) Close() error {
|
|||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if s.netstack != nil {
|
||||||
|
s.netstack.Close()
|
||||||
|
s.netstack = nil
|
||||||
|
}
|
||||||
s.shutdownCancel()
|
s.shutdownCancel()
|
||||||
s.lb.Shutdown()
|
s.lb.Shutdown()
|
||||||
s.linkMon.Close()
|
s.linkMon.Close()
|
||||||
@ -296,6 +301,7 @@ func (s *Server) start() (reterr error) {
|
|||||||
if err := ns.Start(); err != nil {
|
if err := ns.Start(); err != nil {
|
||||||
return fmt.Errorf("failed to start netstack: %w", err)
|
return fmt.Errorf("failed to start netstack: %w", err)
|
||||||
}
|
}
|
||||||
|
s.netstack = ns
|
||||||
s.dialer.UseNetstackForIP = func(ip netip.Addr) bool {
|
s.dialer.UseNetstackForIP = func(ip netip.Addr) bool {
|
||||||
_, ok := eng.PeerForIP(ip)
|
_, ok := eng.PeerForIP(ip)
|
||||||
return ok
|
return ok
|
||||||
|
Loading…
x
Reference in New Issue
Block a user