From ea9e68280d6037feef27f7e668635da0a662103a Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 6 Apr 2021 14:04:59 -0700 Subject: [PATCH] cmd/tailscale/cli: add debug command to print localapi curl command --- cmd/tailscale/cli/debug.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/cmd/tailscale/cli/debug.go b/cmd/tailscale/cli/debug.go index 0a1e527ae..e80e6325c 100644 --- a/cmd/tailscale/cli/debug.go +++ b/cmd/tailscale/cli/debug.go @@ -13,11 +13,14 @@ import ( "io" "log" "os" + "runtime" "strings" "github.com/peterbourgon/ff/v2/ffcli" "tailscale.com/client/tailscale" "tailscale.com/ipn" + "tailscale.com/paths" + "tailscale.com/safesocket" ) var debugCmd = &ffcli.Command{ @@ -28,12 +31,14 @@ var debugCmd = &ffcli.Command{ fs.BoolVar(&debugArgs.goroutines, "daemon-goroutines", false, "If true, dump the tailscaled daemon's goroutines") fs.BoolVar(&debugArgs.ipn, "ipn", false, "If true, subscribe to IPN notifications") fs.BoolVar(&debugArgs.netMap, "netmap", true, "whether to include netmap in --ipn mode") + fs.BoolVar(&debugArgs.localCreds, "local-creds", false, "print how to connect to local tailscaled") fs.StringVar(&debugArgs.file, "file", "", "get, delete:NAME, or NAME") return fs })(), } var debugArgs struct { + localCreds bool goroutines bool ipn bool netMap bool @@ -44,6 +49,20 @@ func runDebug(ctx context.Context, args []string) error { if len(args) > 0 { return errors.New("unknown arguments") } + if debugArgs.localCreds { + port, token, err := safesocket.LocalTCPPortAndToken() + if err == nil { + fmt.Printf("curl -u:%s http://localhost:%d/localapi/v0/status\n", token, port) + return nil + } + if runtime.GOOS == "windows" { + fmt.Printf("curl http://localhost:41112/localapi/v0/status\n") + } + if runtime.GOOS == "windows" { + fmt.Printf("curl --unix-socket %s http://foo/localapi/v0/status\n", paths.DefaultTailscaledSocket()) + } + return nil + } if debugArgs.goroutines { goroutines, err := tailscale.Goroutines(ctx) if err != nil {