diff options
author | Brad Fitzpatrick <bradfitz@tailscale.com> | 2021-02-18 14:53:22 -0800 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-02-22 15:26:29 +0100 |
commit | 0f4809f366daa77c6e2f5b09d3f05771fe9bf188 (patch) | |
tree | 51fcba51b8d65b559e4ac2da16bd045ec8b6d730 /tun/tun_openbsd.go | |
parent | fecb8f482ad8bc4d56fa6202fe15d2a221d0dbe5 (diff) |
tun: make NativeTun.Close well behaved, not crash on double close
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
Diffstat (limited to 'tun/tun_openbsd.go')
-rw-r--r-- | tun/tun_openbsd.go | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/tun/tun_openbsd.go b/tun/tun_openbsd.go index 8fca1e3..7ef62f4 100644 --- a/tun/tun_openbsd.go +++ b/tun/tun_openbsd.go @@ -10,6 +10,7 @@ import ( "fmt" "net" "os" + "sync" "syscall" "unsafe" @@ -32,6 +33,7 @@ type NativeTun struct { events chan Event errors chan error routeSocket int + closeOnce sync.Once } func (tun *NativeTun) routineRouteListener(tunIfindex int) { @@ -245,15 +247,17 @@ func (tun *NativeTun) Flush() error { } func (tun *NativeTun) Close() error { - var err2 error - err1 := tun.tunFile.Close() - if tun.routeSocket != -1 { - unix.Shutdown(tun.routeSocket, unix.SHUT_RDWR) - err2 = unix.Close(tun.routeSocket) - tun.routeSocket = -1 - } else if tun.events != nil { - close(tun.events) - } + var err1, err2 error + tun.closeOnce.Do(func() { + err1 = tun.tunFile.Close() + if tun.routeSocket != -1 { + unix.Shutdown(tun.routeSocket, unix.SHUT_RDWR) + err2 = unix.Close(tun.routeSocket) + tun.routeSocket = -1 + } else if tun.events != nil { + close(tun.events) + } + }) if err1 != nil { return err1 } |