mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-05 23:07:44 +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
|
||||
initErr error
|
||||
lb *ipnlocal.LocalBackend
|
||||
netstack *netstack.Impl
|
||||
linkMon *monitor.Mon
|
||||
localAPIListener net.Listener
|
||||
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.lb.Shutdown()
|
||||
s.linkMon.Close()
|
||||
@ -296,6 +301,7 @@ func (s *Server) start() (reterr error) {
|
||||
if err := ns.Start(); err != nil {
|
||||
return fmt.Errorf("failed to start netstack: %w", err)
|
||||
}
|
||||
s.netstack = ns
|
||||
s.dialer.UseNetstackForIP = func(ip netip.Addr) bool {
|
||||
_, ok := eng.PeerForIP(ip)
|
||||
return ok
|
||||
|
Loading…
x
Reference in New Issue
Block a user