mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-03-31 06:24:09 -04:00
* update ping privileged/unprivileged logic, add entrypoint Signed-off-by: invario <67800603+invario@users.noreply.github.com> * Removed entrypoint script, code in GO instead to raise NET_RAW cap Signed-off-by: invario <67800603+invario@users.noreply.github.com> * Rewritten to only split pingdevice func into separate GO files Signed-off-by: invario <67800603+invario@users.noreply.github.com> * remove runtime check * readme: cap_net_raw=+p * clear up * readme: clearify linux only * set `privileged = false` on darwin --------- Signed-off-by: invario <67800603+invario@users.noreply.github.com> Co-authored-by: Maxi Quoß <maxi@quoss.org>
66 lines
1.4 KiB
Go
66 lines
1.4 KiB
Go
//go:build !linux
|
|
|
|
package networking
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"runtime"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/pocketbase/pocketbase/core"
|
|
probing "github.com/prometheus-community/pro-bing"
|
|
)
|
|
|
|
func PingDevice(device *core.Record) (bool, error) {
|
|
ping_cmd := device.GetString("ping_cmd")
|
|
if ping_cmd == "" {
|
|
pinger, err := probing.NewPinger(device.GetString("ip"))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
pinger.Count = 1
|
|
pinger.Timeout = 500 * time.Millisecond
|
|
|
|
privileged := true // default to privileged ping, required by Windows
|
|
if runtime.GOOS == "darwin" {
|
|
// macOS pings will fail when using privileged ping as non root, but works with non-privileged.
|
|
privileged = false
|
|
}
|
|
privilegedEnv := os.Getenv("UPSNAP_PING_PRIVILEGED")
|
|
if privilegedEnv != "" {
|
|
privileged, err = strconv.ParseBool(privilegedEnv)
|
|
if err != nil {
|
|
privileged = false
|
|
}
|
|
}
|
|
pinger.SetPrivileged(privileged)
|
|
|
|
err = pinger.Run()
|
|
if err != nil {
|
|
if isNoRouteOrDownError(err) {
|
|
return false, nil
|
|
}
|
|
return false, err
|
|
}
|
|
stats := pinger.Statistics()
|
|
return stats.PacketLoss == 0, nil
|
|
} else {
|
|
var shell string
|
|
var shell_arg string
|
|
if runtime.GOOS == "windows" {
|
|
shell = "cmd"
|
|
shell_arg = "/C"
|
|
} else {
|
|
shell = "/bin/sh"
|
|
shell_arg = "-c"
|
|
}
|
|
|
|
cmd := exec.Command(shell, shell_arg, ping_cmd)
|
|
err := cmd.Run()
|
|
|
|
return err == nil, err
|
|
}
|
|
}
|