2020-04-30 20:30:47 -07:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-17 10:25:32 -07:00
|
|
|
//go:build (windows || freebsd || openbsd || darwin) && !ios
|
|
|
|
// +build windows freebsd openbsd darwin
|
2021-02-19 10:03:00 -08:00
|
|
|
// +build !ios
|
2020-04-30 20:30:47 -07:00
|
|
|
|
|
|
|
package portlist
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-11-18 08:38:31 -08:00
|
|
|
"os/exec"
|
2020-04-30 20:30:47 -07:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2020-06-08 09:04:31 -07:00
|
|
|
var osHideWindow func(*exec.Cmd) // non-nil on Windows; see portlist_windows.go
|
|
|
|
|
|
|
|
// hideWindow returns c. On Windows it first sets SysProcAttr.HideWindow.
|
|
|
|
func hideWindow(c *exec.Cmd) *exec.Cmd {
|
|
|
|
if osHideWindow != nil {
|
|
|
|
osHideWindow(c)
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2020-04-30 20:30:47 -07:00
|
|
|
func listPortsNetstat(arg string) (List, error) {
|
|
|
|
exe, err := exec.LookPath("netstat")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("netstat: lookup: %v", err)
|
|
|
|
}
|
2020-06-08 09:04:31 -07:00
|
|
|
output, err := hideWindow(exec.Command(exe, arg)).Output()
|
2020-04-30 20:30:47 -07:00
|
|
|
if err != nil {
|
|
|
|
xe, ok := err.(*exec.ExitError)
|
|
|
|
stderr := ""
|
|
|
|
if ok {
|
|
|
|
stderr = strings.TrimSpace(string(xe.Stderr))
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("netstat: %v (%q)", err, stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return parsePortsNetstat(string(output)), nil
|
|
|
|
}
|