yanic/respond/daemon/nodeinfo.go

77 lines
1.6 KiB
Go
Raw Normal View History

2019-04-10 13:18:05 +02:00
package respondd
import (
"fmt"
2019-04-10 20:09:55 +02:00
"net"
2019-04-10 13:18:05 +02:00
"os"
"runtime"
"github.com/FreifunkBremen/yanic/data"
)
2019-04-10 21:57:31 +02:00
func (d *Daemon) updateNodeinfo(iface string, resp *data.ResponseData) {
2019-04-10 13:18:05 +02:00
config, nodeID := d.getAnswer(iface)
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.NodeID = nodeID
2019-04-10 13:18:05 +02:00
if config.Hostname == "" {
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.Hostname, _ = os.Hostname()
2019-04-10 13:18:05 +02:00
} else {
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.Hostname = config.Hostname
2019-04-10 13:18:05 +02:00
}
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.VPN = config.VPN
resp.Nodeinfo.Location = config.Location
2019-04-10 13:18:05 +02:00
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.System.SiteCode = config.SiteCode
resp.Nodeinfo.System.DomainCode = config.DomainCode
2019-04-10 13:18:05 +02:00
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.Hardware.Nproc = runtime.NumCPU()
2019-04-10 13:18:05 +02:00
2019-04-10 21:57:31 +02:00
if resp.Nodeinfo.Network.Mac == "" {
resp.Nodeinfo.Network.Mac = fmt.Sprintf("%s:%s:%s:%s:%s:%s", nodeID[0:2], nodeID[2:4], nodeID[4:6], nodeID[6:8], nodeID[8:10], nodeID[10:12])
2019-04-10 13:18:05 +02:00
}
2019-04-10 21:57:31 +02:00
if iface != "" {
resp.Nodeinfo.Network.Addresses = getAddresses(iface)
}
resp.Nodeinfo.Network.Mesh = make(map[string]*data.NetworkInterface)
for _, bface := range d.Batman {
b := NewBatman(bface)
mesh := data.NetworkInterface{}
for _, bbface := range b.Interfaces {
addr := b.Address(bbface)
if addr != "" {
mesh.Interfaces.Tunnel = append(mesh.Interfaces.Tunnel, addr)
}
2019-04-10 13:18:05 +02:00
}
2019-04-10 21:57:31 +02:00
resp.Nodeinfo.Network.Mesh[bface] = &mesh
2019-04-10 13:18:05 +02:00
}
}
func getAddresses(iface string) (addrs []string) {
in, err := net.InterfaceByName(iface)
if err != nil {
return
}
2019-04-10 20:09:55 +02:00
inAddrs, err := in.Addrs()
2019-04-10 13:18:05 +02:00
if err != nil {
return
}
for _, a := range inAddrs {
var ip net.IP
switch v := a.(type) {
2019-04-10 20:09:55 +02:00
case *net.IPNet:
ip = v.IP
case *net.IPAddr:
ip = v.IP
default:
continue
2019-04-10 13:18:05 +02:00
}
if ip4 := ip.To4(); ip4 == nil {
addrs = append(addrs, ip.String())
}
}
return
}