2017-02-01 18:26:00 +00:00
|
|
|
// +build linux freebsd darwin openbsd
|
|
|
|
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2018-10-19 18:33:23 +00:00
|
|
|
"context"
|
2017-02-01 18:26:00 +00:00
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
func CallLsofWithContext(ctx context.Context, invoke Invoker, pid int32, args ...string) ([]string, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
var cmd []string
|
|
|
|
if pid == 0 { // will get from all processes.
|
|
|
|
cmd = []string{"-a", "-n", "-P"}
|
|
|
|
} else {
|
|
|
|
cmd = []string{"-a", "-n", "-P", "-p", strconv.Itoa(int(pid))}
|
|
|
|
}
|
|
|
|
cmd = append(cmd, args...)
|
|
|
|
lsof, err := exec.LookPath("lsof")
|
|
|
|
if err != nil {
|
|
|
|
return []string{}, err
|
|
|
|
}
|
2018-10-19 18:33:23 +00:00
|
|
|
out, err := invoke.CommandWithContext(ctx, lsof, cmd...)
|
2017-02-01 18:26:00 +00:00
|
|
|
if err != nil {
|
2020-07-01 12:47:56 +00:00
|
|
|
// if no pid found, lsof returns code 1.
|
2017-02-01 18:26:00 +00:00
|
|
|
if err.Error() == "exit status 1" && len(out) == 0 {
|
|
|
|
return []string{}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lines := strings.Split(string(out), "\n")
|
|
|
|
|
|
|
|
var ret []string
|
|
|
|
for _, l := range lines[1:] {
|
|
|
|
if len(l) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ret = append(ret, l)
|
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
func CallPgrepWithContext(ctx context.Context, invoke Invoker, pid int32) ([]int32, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
var cmd []string
|
|
|
|
cmd = []string{"-P", strconv.Itoa(int(pid))}
|
|
|
|
pgrep, err := exec.LookPath("pgrep")
|
|
|
|
if err != nil {
|
|
|
|
return []int32{}, err
|
|
|
|
}
|
2018-10-19 18:33:23 +00:00
|
|
|
out, err := invoke.CommandWithContext(ctx, pgrep, cmd...)
|
2017-02-01 18:26:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return []int32{}, err
|
|
|
|
}
|
|
|
|
lines := strings.Split(string(out), "\n")
|
|
|
|
ret := make([]int32, 0, len(lines))
|
|
|
|
for _, l := range lines {
|
|
|
|
if len(l) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
i, err := strconv.Atoi(l)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ret = append(ret, int32(i))
|
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|