mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-29 20:19:56 +00:00
126 lines
2.7 KiB
Go
126 lines
2.7 KiB
Go
//go:build !android
|
|
|
|
package system
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"regexp"
|
|
"runtime"
|
|
"time"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/zcalusic/sysinfo"
|
|
|
|
"github.com/netbirdio/netbird/version"
|
|
)
|
|
|
|
var (
|
|
// it is override in tests
|
|
getSystemInfo = defaultSysInfoImplementation
|
|
)
|
|
|
|
func UpdateStaticInfoAsync() {
|
|
go updateStaticInfo()
|
|
}
|
|
|
|
// GetInfo retrieves and parses the system information
|
|
func GetInfo(ctx context.Context) *Info {
|
|
kernelName, kernelVersion, kernelPlatform := kernelInfo()
|
|
|
|
osName, osVersion := readOsReleaseFile()
|
|
if osName == "" {
|
|
osName = kernelName
|
|
}
|
|
|
|
systemHostname, _ := os.Hostname()
|
|
|
|
addrs, err := networkAddresses()
|
|
if err != nil {
|
|
log.Warnf("failed to discover network addresses: %s", err)
|
|
}
|
|
|
|
start := time.Now()
|
|
si := getStaticInfo()
|
|
if time.Since(start) > 1*time.Second {
|
|
log.Warnf("updateStaticInfo took %s", time.Since(start))
|
|
}
|
|
|
|
gio := &Info{
|
|
Kernel: kernelName,
|
|
Platform: kernelPlatform,
|
|
OS: osName,
|
|
OSVersion: osVersion,
|
|
Hostname: extractDeviceName(ctx, systemHostname),
|
|
GoOS: runtime.GOOS,
|
|
CPUs: runtime.NumCPU(),
|
|
NetbirdVersion: version.NetbirdVersion(),
|
|
UIVersion: extractUserAgent(ctx),
|
|
KernelVersion: kernelVersion,
|
|
NetworkAddresses: addrs,
|
|
SystemSerialNumber: si.SystemSerialNumber,
|
|
SystemProductName: si.SystemProductName,
|
|
SystemManufacturer: si.SystemManufacturer,
|
|
Environment: si.Environment,
|
|
}
|
|
|
|
return gio
|
|
}
|
|
|
|
func kernelInfo() (string, string, string) {
|
|
var uts unix.Utsname
|
|
if err := unix.Uname(&uts); err != nil {
|
|
return "", "", ""
|
|
}
|
|
return unix.ByteSliceToString(uts.Sysname[:]), unix.ByteSliceToString(uts.Release[:]), unix.ByteSliceToString(uts.Machine[:])
|
|
}
|
|
|
|
func sysInfo() (string, string, string) {
|
|
isascii := regexp.MustCompile("^[[:ascii:]]+$")
|
|
si := getSystemInfo()
|
|
serials := []string{si.ChassisSerial, si.ProductSerial}
|
|
serial := ""
|
|
|
|
for _, s := range serials {
|
|
if isascii.MatchString(s) {
|
|
serial = s
|
|
if s != "Default string" {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if serial == "" && isascii.MatchString(si.BoardSerial) {
|
|
serial = si.BoardSerial
|
|
}
|
|
|
|
var name string
|
|
for _, n := range []string{si.ProductName, si.BoardName} {
|
|
if isascii.MatchString(n) {
|
|
name = n
|
|
break
|
|
}
|
|
}
|
|
|
|
var manufacturer string
|
|
if isascii.MatchString(si.ProductVendor) {
|
|
manufacturer = si.ProductVendor
|
|
}
|
|
return serial, name, manufacturer
|
|
}
|
|
|
|
func defaultSysInfoImplementation() SysInfo {
|
|
si := sysinfo.SysInfo{}
|
|
si.GetSysInfo()
|
|
return SysInfo{
|
|
ChassisSerial: si.Chassis.Serial,
|
|
ProductSerial: si.Product.Serial,
|
|
BoardSerial: si.Board.Serial,
|
|
ProductName: si.Product.Name,
|
|
BoardName: si.Board.Name,
|
|
ProductVendor: si.Product.Vendor,
|
|
}
|
|
}
|