mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
9bc7b9e897
This PR implements the following posture checks: * Agent minimum version allowed * OS minimum version allowed * Geo-location based on connection IP For the geo-based location, we rely on GeoLite2 databases which are free IP geolocation databases. MaxMind was tested and we provide a script that easily allows to download of all necessary files, see infrastructure_files/download-geolite2.sh. The OpenAPI spec should extensively cover the life cycle of current version posture checks.
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
//go:build android
|
|
// +build android
|
|
|
|
package system
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"os/exec"
|
|
"runtime"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/netbirdio/netbird/version"
|
|
)
|
|
|
|
// GetInfo retrieves and parses the system information
|
|
func GetInfo(ctx context.Context) *Info {
|
|
kernel := "android"
|
|
osInfo := uname()
|
|
if len(osInfo) == 2 {
|
|
kernel = osInfo[1]
|
|
}
|
|
|
|
var kernelVersion string
|
|
if len(osInfo) > 2 {
|
|
kernelVersion = osInfo[2]
|
|
}
|
|
|
|
gio := &Info{Kernel: kernel, Platform: "unknown", OS: "android", OSVersion: osVersion(), GoOS: runtime.GOOS, CPUs: runtime.NumCPU(), KernelVersion: kernelVersion}
|
|
gio.Hostname = extractDeviceName(ctx, "android")
|
|
gio.WiretrusteeVersion = version.NetbirdVersion()
|
|
gio.UIVersion = extractUserAgent(ctx)
|
|
|
|
return gio
|
|
}
|
|
|
|
func uname() []string {
|
|
res := run("/system/bin/uname", "-a")
|
|
return strings.Split(res, " ")
|
|
}
|
|
|
|
func osVersion() string {
|
|
return run("/system/bin/getprop", "ro.build.version.release")
|
|
}
|
|
|
|
func run(name string, arg ...string) string {
|
|
cmd := exec.Command(name, arg...)
|
|
cmd.Stdin = strings.NewReader("some")
|
|
var out bytes.Buffer
|
|
var stderr bytes.Buffer
|
|
cmd.Stdout = &out
|
|
cmd.Stderr = &stderr
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
log.Errorf("getInfo: %s", err)
|
|
}
|
|
return out.String()
|
|
}
|