2017-04-10 18:54:12 +02:00
|
|
|
package runtime
|
2015-12-29 14:05:47 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2016-03-12 03:23:12 +01:00
|
|
|
|
2017-03-03 16:19:35 +01:00
|
|
|
"github.com/FreifunkBremen/yanic/data"
|
2018-01-07 21:00:56 +01:00
|
|
|
"github.com/FreifunkBremen/yanic/lib/jsontime"
|
2015-12-29 14:05:47 +01:00
|
|
|
)
|
|
|
|
|
2016-03-07 01:37:38 +01:00
|
|
|
// Nodes struct: cache DB of Node's structs
|
2015-12-29 14:05:47 +01:00
|
|
|
type Nodes struct {
|
2017-09-27 13:55:02 +02:00
|
|
|
List map[string]*Node `json:"nodes"` // the current nodemap, indexed by node ID
|
|
|
|
ifaceToNodeID map[string]string // mapping from MAC address to NodeID
|
2018-01-07 21:00:56 +01:00
|
|
|
config *NodesConfig
|
2016-06-16 18:50:43 +02:00
|
|
|
sync.RWMutex
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
|
|
|
|
2016-03-20 18:30:44 +01:00
|
|
|
// NewNodes create Nodes structs
|
2018-01-07 21:00:56 +01:00
|
|
|
func NewNodes(config *NodesConfig) *Nodes {
|
2015-12-29 14:05:47 +01:00
|
|
|
nodes := &Nodes{
|
2017-09-27 13:55:02 +02:00
|
|
|
List: make(map[string]*Node),
|
|
|
|
ifaceToNodeID: make(map[string]string),
|
|
|
|
config: config,
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
|
|
|
|
2018-01-07 21:00:56 +01:00
|
|
|
if config.StatePath != "" {
|
2016-03-20 18:30:44 +01:00
|
|
|
nodes.load()
|
|
|
|
}
|
2017-01-29 20:46:06 +01:00
|
|
|
|
2015-12-29 14:05:47 +01:00
|
|
|
return nodes
|
|
|
|
}
|
|
|
|
|
2017-01-29 22:14:40 +01:00
|
|
|
// Start all services to manage Nodes
|
2016-11-20 18:45:18 +01:00
|
|
|
func (nodes *Nodes) Start() {
|
|
|
|
go nodes.worker()
|
|
|
|
}
|
|
|
|
|
2017-05-20 14:46:29 +02:00
|
|
|
func (nodes *Nodes) AddNode(node *Node) {
|
|
|
|
nodeinfo := node.Nodeinfo
|
|
|
|
if nodeinfo == nil || nodeinfo.NodeID == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
nodes.Lock()
|
|
|
|
defer nodes.Unlock()
|
|
|
|
nodes.List[nodeinfo.NodeID] = node
|
|
|
|
nodes.readIfaces(nodeinfo)
|
|
|
|
}
|
|
|
|
|
2016-03-20 16:25:33 +01:00
|
|
|
// Update a Node
|
2016-07-14 01:19:03 +02:00
|
|
|
func (nodes *Nodes) Update(nodeID string, res *data.ResponseData) *Node {
|
2016-03-20 17:10:39 +01:00
|
|
|
now := jsontime.Now()
|
2015-12-29 14:05:47 +01:00
|
|
|
|
|
|
|
nodes.Lock()
|
2016-02-25 21:24:54 +01:00
|
|
|
node, _ := nodes.List[nodeID]
|
2015-12-29 14:05:47 +01:00
|
|
|
|
|
|
|
if node == nil {
|
|
|
|
node = &Node{
|
2016-03-20 16:25:33 +01:00
|
|
|
Firstseen: now,
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
2016-02-25 21:24:54 +01:00
|
|
|
nodes.List[nodeID] = node
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
if res.NodeInfo != nil {
|
|
|
|
nodes.readIfaces(res.NodeInfo)
|
|
|
|
}
|
2015-12-29 14:05:47 +01:00
|
|
|
nodes.Unlock()
|
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
// Update wireless statistics
|
|
|
|
if statistics := res.Statistics; statistics != nil {
|
2016-07-14 01:19:03 +02:00
|
|
|
// Update channel utilization if previous statistics are present
|
2017-09-27 13:55:02 +02:00
|
|
|
if node.Statistics != nil && node.Statistics.Wireless != nil && statistics.Wireless != nil {
|
|
|
|
statistics.Wireless.SetUtilization(node.Statistics.Wireless)
|
2016-07-14 01:19:03 +02:00
|
|
|
}
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
2016-07-14 01:19:03 +02:00
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
// Update fields
|
|
|
|
node.Lastseen = now
|
|
|
|
node.Online = true
|
|
|
|
node.Neighbours = res.Neighbours
|
|
|
|
node.Nodeinfo = res.NodeInfo
|
|
|
|
node.Statistics = res.Statistics
|
|
|
|
|
2016-07-14 01:19:03 +02:00
|
|
|
return node
|
2016-05-29 21:41:58 +02:00
|
|
|
}
|
2016-06-16 18:50:43 +02:00
|
|
|
|
2017-01-29 22:14:40 +01:00
|
|
|
// Select selects a list of nodes to be returned
|
|
|
|
func (nodes *Nodes) Select(f func(*Node) bool) []*Node {
|
|
|
|
nodes.RLock()
|
|
|
|
defer nodes.RUnlock()
|
|
|
|
|
|
|
|
result := make([]*Node, 0, len(nodes.List))
|
|
|
|
for _, node := range nodes.List {
|
|
|
|
if f(node) {
|
|
|
|
result = append(result, node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
func (nodes *Nodes) GetNodeIDbyAddress(addr string) string {
|
|
|
|
return nodes.ifaceToNodeID[addr]
|
2017-05-20 14:46:29 +02:00
|
|
|
}
|
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
// NodeLinks returns a list of links to known neighbours
|
|
|
|
func (nodes *Nodes) NodeLinks(node *Node) (result []Link) {
|
|
|
|
// Store link data
|
|
|
|
neighbours := node.Neighbours
|
|
|
|
if neighbours == nil || neighbours.NodeID == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for sourceMAC, batadv := range neighbours.Batadv {
|
|
|
|
for neighbourMAC, link := range batadv.Neighbours {
|
|
|
|
if neighbourID := nodes.ifaceToNodeID[neighbourMAC]; neighbourID != "" {
|
|
|
|
result = append(result, Link{
|
2017-12-05 23:17:49 +01:00
|
|
|
SourceID: neighbours.NodeID,
|
|
|
|
SourceAddress: sourceMAC,
|
|
|
|
TargetID: neighbourID,
|
|
|
|
TargetAddress: neighbourMAC,
|
|
|
|
TQ: float32(link.Tq) / 255.0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, iface := range neighbours.Babel {
|
|
|
|
for neighbourIP, link := range iface.Neighbours {
|
|
|
|
if neighbourID := nodes.ifaceToNodeID[neighbourIP]; neighbourID != "" {
|
|
|
|
result = append(result, Link{
|
|
|
|
SourceID: neighbours.NodeID,
|
|
|
|
SourceAddress: iface.LinkLocalAddress,
|
|
|
|
TargetID: neighbourID,
|
|
|
|
TargetAddress: neighbourIP,
|
|
|
|
TQ: 1.0 - (float32(link.Cost) / 65535.0),
|
2017-09-27 13:55:02 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2016-03-20 18:30:44 +01:00
|
|
|
// Periodically saves the cached DB to json file
|
|
|
|
func (nodes *Nodes) worker() {
|
2018-01-07 21:00:56 +01:00
|
|
|
c := time.Tick(nodes.config.SaveInterval.Duration)
|
2015-12-29 14:05:47 +01:00
|
|
|
|
|
|
|
for range c {
|
2016-10-08 10:50:41 +02:00
|
|
|
nodes.expire()
|
|
|
|
nodes.save()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expires nodes and set nodes offline
|
|
|
|
func (nodes *Nodes) expire() {
|
2017-01-29 20:46:06 +01:00
|
|
|
now := jsontime.Now()
|
2016-10-08 10:50:41 +02:00
|
|
|
|
2017-01-29 21:04:10 +01:00
|
|
|
// Nodes last seen before expireAfter will be removed
|
2018-01-07 21:00:56 +01:00
|
|
|
prunePeriod := nodes.config.PruneAfter.Duration
|
2017-01-29 21:04:10 +01:00
|
|
|
if prunePeriod == 0 {
|
|
|
|
prunePeriod = time.Hour * 24 * 7 // our default
|
2016-10-08 10:50:41 +02:00
|
|
|
}
|
2017-01-29 21:04:10 +01:00
|
|
|
pruneAfter := now.Add(-prunePeriod)
|
2016-10-08 10:50:41 +02:00
|
|
|
|
2017-01-29 21:04:10 +01:00
|
|
|
// Nodes last seen within OfflineAfter are changed to 'offline'
|
2018-01-07 21:00:56 +01:00
|
|
|
offlineAfter := now.Add(-nodes.config.OfflineAfter.Duration)
|
2016-10-08 10:50:41 +02:00
|
|
|
|
|
|
|
// Locking foo
|
|
|
|
nodes.Lock()
|
|
|
|
defer nodes.Unlock()
|
|
|
|
|
|
|
|
for id, node := range nodes.List {
|
2017-01-29 21:04:10 +01:00
|
|
|
if node.Lastseen.Before(pruneAfter) {
|
2016-10-08 10:50:41 +02:00
|
|
|
// expire
|
|
|
|
delete(nodes.List, id)
|
2017-01-29 21:04:10 +01:00
|
|
|
} else if node.Lastseen.Before(offlineAfter) {
|
2016-10-08 10:50:41 +02:00
|
|
|
// set to offline
|
2017-04-10 18:54:12 +02:00
|
|
|
node.Online = false
|
2016-05-11 21:30:54 +02:00
|
|
|
}
|
2016-10-08 10:50:41 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-20 18:30:44 +01:00
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
// adds the nodes interface addresses to the internal map
|
|
|
|
func (nodes *Nodes) readIfaces(nodeinfo *data.NodeInfo) {
|
|
|
|
nodeID := nodeinfo.NodeID
|
|
|
|
network := nodeinfo.Network
|
|
|
|
|
|
|
|
if nodeID == "" {
|
|
|
|
log.Println("nodeID missing in nodeinfo")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
addresses := []string{network.Mac}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
for _, iface := range network.Mesh {
|
|
|
|
addresses = append(addresses, iface.Addresses()...)
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
for _, addr := range addresses {
|
|
|
|
if addr == "" {
|
2018-01-21 20:39:36 +01:00
|
|
|
continue
|
|
|
|
}
|
2017-12-05 23:17:49 +01:00
|
|
|
if oldNodeID, _ := nodes.ifaceToNodeID[addr]; oldNodeID != nodeID {
|
2017-09-27 13:55:02 +02:00
|
|
|
if oldNodeID != "" {
|
2017-12-05 23:17:49 +01:00
|
|
|
log.Printf("override nodeID from %s to %s on MAC address %s", oldNodeID, nodeID, addr)
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
2017-12-05 23:17:49 +01:00
|
|
|
nodes.ifaceToNodeID[addr] = nodeID
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 18:30:32 +01:00
|
|
|
func (nodes *Nodes) load() {
|
2018-01-07 21:00:56 +01:00
|
|
|
path := nodes.config.StatePath
|
2016-11-20 18:30:32 +01:00
|
|
|
|
2017-01-20 14:38:13 +01:00
|
|
|
if f, err := os.Open(path); err == nil { // transform data to legacy meshviewer
|
2017-01-20 22:27:44 +01:00
|
|
|
if err = json.NewDecoder(f).Decode(nodes); err == nil {
|
2016-11-20 18:30:32 +01:00
|
|
|
log.Println("loaded", len(nodes.List), "nodes")
|
2017-09-27 13:55:02 +02:00
|
|
|
|
2017-05-20 14:46:29 +02:00
|
|
|
nodes.Lock()
|
2017-09-27 13:55:02 +02:00
|
|
|
for _, node := range nodes.List {
|
|
|
|
if node.Nodeinfo != nil {
|
|
|
|
nodes.readIfaces(node.Nodeinfo)
|
|
|
|
}
|
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
nodes.Unlock()
|
2017-09-27 13:55:02 +02:00
|
|
|
|
2016-11-20 18:30:32 +01:00
|
|
|
} else {
|
|
|
|
log.Println("failed to unmarshal nodes:", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Println("failed to load cached nodes:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-08 10:50:41 +02:00
|
|
|
func (nodes *Nodes) save() {
|
|
|
|
// Locking foo
|
|
|
|
nodes.RLock()
|
|
|
|
defer nodes.RUnlock()
|
|
|
|
|
|
|
|
// serialize nodes
|
2018-01-07 21:00:56 +01:00
|
|
|
SaveJSON(nodes, nodes.config.StatePath)
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
|
|
|
|
2017-04-10 18:54:12 +02:00
|
|
|
// SaveJSON to path
|
|
|
|
func SaveJSON(input interface{}, outputFile string) {
|
2016-11-20 18:30:32 +01:00
|
|
|
tmpFile := outputFile + ".tmp"
|
|
|
|
|
|
|
|
f, err := os.OpenFile(tmpFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
|
2016-02-25 21:06:37 +01:00
|
|
|
if err != nil {
|
2016-02-19 11:30:42 +01:00
|
|
|
log.Panic(err)
|
2016-02-19 11:13:30 +01:00
|
|
|
}
|
2015-12-29 14:05:47 +01:00
|
|
|
|
2016-11-20 18:30:32 +01:00
|
|
|
err = json.NewEncoder(f).Encode(input)
|
|
|
|
if err != nil {
|
2016-02-19 11:30:42 +01:00
|
|
|
log.Panic(err)
|
|
|
|
}
|
2016-03-20 18:30:44 +01:00
|
|
|
|
2016-11-20 18:30:32 +01:00
|
|
|
f.Close()
|
2016-03-20 18:30:44 +01:00
|
|
|
if err := os.Rename(tmpFile, outputFile); err != nil {
|
2016-02-19 11:30:42 +01:00
|
|
|
log.Panic(err)
|
|
|
|
}
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|