mirror of https://github.com/tailscale/tailscale/
cmd/tailscale: add debug commands to break connections
For testing reconnects. Updates tailscale/corp#5761 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>pull/8851/head
parent
99e06d3544
commit
92fc9a01fa
@ -0,0 +1,30 @@
|
|||||||
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
|
package ipnlocal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
breakTCPConns = breakTCPConnsDarwin
|
||||||
|
}
|
||||||
|
|
||||||
|
func breakTCPConnsDarwin() error {
|
||||||
|
var matched int
|
||||||
|
for fd := 0; fd < 1000; fd++ {
|
||||||
|
_, err := unix.GetsockoptTCPConnectionInfo(fd, unix.IPPROTO_TCP, unix.TCP_CONNECTION_INFO)
|
||||||
|
if err == nil {
|
||||||
|
matched++
|
||||||
|
err = unix.Close(fd)
|
||||||
|
log.Printf("debug: closed TCP fd %v: %v", fd, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if matched == 0 {
|
||||||
|
log.Printf("debug: no TCP connections found")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
|
package ipnlocal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
breakTCPConns = breakTCPConnsLinux
|
||||||
|
}
|
||||||
|
|
||||||
|
func breakTCPConnsLinux() error {
|
||||||
|
var matched int
|
||||||
|
for fd := 0; fd < 1000; fd++ {
|
||||||
|
_, err := unix.GetsockoptTCPInfo(fd, unix.IPPROTO_TCP, unix.TCP_INFO)
|
||||||
|
if err == nil {
|
||||||
|
matched++
|
||||||
|
err = unix.Close(fd)
|
||||||
|
log.Printf("debug: closed TCP fd %v: %v", fd, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if matched == 0 {
|
||||||
|
log.Printf("debug: no TCP connections found")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Reference in New Issue