2016-02-26 09:28:31 +01:00
|
|
|
package respond
|
2015-12-29 04:08:03 +01:00
|
|
|
|
|
|
|
import (
|
2017-04-10 18:54:12 +02:00
|
|
|
"fmt"
|
2015-12-29 04:08:03 +01:00
|
|
|
"net"
|
|
|
|
"time"
|
2017-02-01 18:37:39 +01:00
|
|
|
|
2021-10-02 17:19:13 +02:00
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
|
2019-01-17 13:26:16 +01:00
|
|
|
"github.com/bdlm/log"
|
|
|
|
|
2017-03-03 16:19:35 +01:00
|
|
|
"github.com/FreifunkBremen/yanic/data"
|
|
|
|
"github.com/FreifunkBremen/yanic/database"
|
2018-01-07 21:00:56 +01:00
|
|
|
"github.com/FreifunkBremen/yanic/lib/jsontime"
|
2017-04-10 18:54:12 +02:00
|
|
|
"github.com/FreifunkBremen/yanic/runtime"
|
2015-12-29 04:08:03 +01:00
|
|
|
)
|
|
|
|
|
2017-01-29 22:14:40 +01:00
|
|
|
// Collector for a specificle respond messages
|
2015-12-29 04:08:03 +01:00
|
|
|
type Collector struct {
|
2017-12-05 23:17:49 +01:00
|
|
|
connections []multicastConn // UDP sockets
|
2017-10-18 18:22:14 +02:00
|
|
|
|
2019-11-17 10:33:20 +01:00
|
|
|
queue chan *Response // received responses
|
|
|
|
db database.Connection
|
|
|
|
nodes *runtime.Nodes
|
|
|
|
interval time.Duration // Interval for multicast packets
|
|
|
|
stop chan interface{}
|
|
|
|
config *Config
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
type multicastConn struct {
|
|
|
|
Conn *net.UDPConn
|
2018-03-11 20:21:35 +01:00
|
|
|
SendRequest bool
|
2017-12-05 23:17:49 +01:00
|
|
|
MulticastAddress net.IP
|
|
|
|
}
|
|
|
|
|
2017-01-20 22:27:44 +01:00
|
|
|
// NewCollector creates a Collector struct
|
2019-11-17 10:33:20 +01:00
|
|
|
func NewCollector(db database.Connection, nodes *runtime.Nodes, config *Config) *Collector {
|
2017-10-18 18:22:14 +02:00
|
|
|
|
|
|
|
coll := &Collector{
|
2019-11-17 10:33:20 +01:00
|
|
|
db: db,
|
|
|
|
nodes: nodes,
|
|
|
|
queue: make(chan *Response, 400),
|
|
|
|
stop: make(chan interface{}),
|
|
|
|
config: config,
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
|
|
|
|
2019-11-17 10:33:20 +01:00
|
|
|
for _, iface := range config.Interfaces {
|
2017-10-18 18:22:14 +02:00
|
|
|
coll.listenUDP(iface)
|
|
|
|
}
|
|
|
|
|
|
|
|
go coll.parser()
|
|
|
|
|
|
|
|
if coll.db != nil {
|
|
|
|
go coll.globalStatsWorker()
|
|
|
|
}
|
|
|
|
|
|
|
|
return coll
|
|
|
|
}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
func (coll *Collector) listenUDP(iface InterfaceConfig) {
|
|
|
|
|
|
|
|
var addr net.IP
|
|
|
|
|
2021-10-02 16:59:20 +02:00
|
|
|
ifaceInfo, err := net.InterfaceByName(iface.InterfaceName)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
if iface.IPAddress != "" {
|
|
|
|
addr = net.ParseIP(iface.IPAddress)
|
|
|
|
} else {
|
|
|
|
addr, err = getUnicastAddr(ifaceInfo)
|
2017-12-05 23:17:49 +01:00
|
|
|
}
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
2017-12-05 23:17:49 +01:00
|
|
|
|
2021-10-02 16:59:20 +02:00
|
|
|
if err != nil {
|
|
|
|
log.WithField("iface", iface.InterfaceName).Panic(err)
|
|
|
|
}
|
|
|
|
|
2020-01-07 15:27:08 +01:00
|
|
|
multicastAddress := MulticastAddressDefault
|
2017-12-05 23:17:49 +01:00
|
|
|
if iface.MulticastAddress != "" {
|
|
|
|
multicastAddress = iface.MulticastAddress
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Open socket
|
2017-02-01 18:37:39 +01:00
|
|
|
conn, err := net.ListenUDP("udp", &net.UDPAddr{
|
2017-12-05 23:17:49 +01:00
|
|
|
IP: addr,
|
|
|
|
Port: iface.Port,
|
|
|
|
Zone: iface.InterfaceName,
|
2017-02-01 18:37:39 +01:00
|
|
|
})
|
2015-12-29 04:08:03 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
2022-03-28 03:56:00 +02:00
|
|
|
if err := conn.SetReadBuffer(MaxDataGramSize); err != nil {
|
|
|
|
log.Println("failed to set read buffer:", err)
|
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
|
2021-10-02 17:19:13 +02:00
|
|
|
raw, err := conn.SyscallConn()
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
err = raw.Control(func(fd uintptr) {
|
|
|
|
err = unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_MULTICAST_IF, ifaceInfo.Index)
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
2017-12-05 23:17:49 +01:00
|
|
|
coll.connections = append(coll.connections, multicastConn{
|
|
|
|
Conn: conn,
|
2018-03-11 20:21:35 +01:00
|
|
|
SendRequest: !iface.SendNoRequest,
|
2017-12-05 23:17:49 +01:00
|
|
|
MulticastAddress: net.ParseIP(multicastAddress),
|
|
|
|
})
|
2016-03-12 01:04:22 +01:00
|
|
|
|
2017-10-18 18:22:14 +02:00
|
|
|
// Start receiver
|
|
|
|
go coll.receiver(conn)
|
2016-12-22 03:06:46 +01:00
|
|
|
}
|
|
|
|
|
2018-05-08 17:15:49 +02:00
|
|
|
// Returns a unicast address of given interface (linklocal or global unicast address)
|
2021-10-02 16:59:20 +02:00
|
|
|
func getUnicastAddr(iface *net.Interface) (net.IP, error) {
|
2017-02-01 18:37:39 +01:00
|
|
|
addresses, err := iface.Addrs()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-12-05 23:17:49 +01:00
|
|
|
var ip net.IP
|
2017-02-01 18:37:39 +01:00
|
|
|
|
|
|
|
for _, addr := range addresses {
|
2017-12-05 23:17:49 +01:00
|
|
|
ipnet, ok := addr.(*net.IPNet)
|
|
|
|
if !ok {
|
|
|
|
continue
|
2017-02-01 18:37:39 +01:00
|
|
|
}
|
2019-05-03 17:35:15 +02:00
|
|
|
if (ip == nil && ipnet.IP.IsGlobalUnicast()) || ipnet.IP.IsLinkLocalUnicast() {
|
2017-12-05 23:17:49 +01:00
|
|
|
ip = ipnet.IP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ip != nil {
|
|
|
|
return ip, nil
|
2017-02-01 18:37:39 +01:00
|
|
|
}
|
2019-01-17 13:26:16 +01:00
|
|
|
return nil, fmt.Errorf("unable to find a unicast address")
|
2017-02-01 18:37:39 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 03:06:46 +01:00
|
|
|
// Start Collector
|
|
|
|
func (coll *Collector) Start(interval time.Duration) {
|
2017-01-29 22:26:16 +01:00
|
|
|
if coll.interval != 0 {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.Panic("already started")
|
2016-12-22 03:06:46 +01:00
|
|
|
}
|
2017-01-29 22:26:16 +01:00
|
|
|
if interval <= 0 {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.Panic("invalid collector interval")
|
2017-01-29 22:26:16 +01:00
|
|
|
}
|
|
|
|
coll.interval = interval
|
2016-12-22 03:06:46 +01:00
|
|
|
|
2016-03-12 18:26:51 +01:00
|
|
|
go func() {
|
2016-12-22 03:06:46 +01:00
|
|
|
coll.sendOnce() // immediately
|
|
|
|
coll.sender() // periodically
|
2016-03-12 18:26:51 +01:00
|
|
|
}()
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
|
2016-03-11 23:56:23 +01:00
|
|
|
// Close Collector
|
2015-12-29 04:08:03 +01:00
|
|
|
func (coll *Collector) Close() {
|
2017-01-29 22:26:16 +01:00
|
|
|
close(coll.stop)
|
2017-10-18 18:22:14 +02:00
|
|
|
for _, conn := range coll.connections {
|
2017-12-05 23:17:49 +01:00
|
|
|
conn.Conn.Close()
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
close(coll.queue)
|
|
|
|
}
|
|
|
|
|
2015-12-29 14:05:47 +01:00
|
|
|
func (coll *Collector) sendOnce() {
|
2017-01-29 22:14:40 +01:00
|
|
|
now := jsontime.Now()
|
|
|
|
coll.sendMulticast()
|
|
|
|
|
|
|
|
// Wait for the multicast responses to be processed and send unicasts
|
|
|
|
time.Sleep(coll.interval / 2)
|
|
|
|
coll.sendUnicasts(now)
|
2015-12-29 14:05:47 +01:00
|
|
|
}
|
|
|
|
|
2017-01-29 22:14:40 +01:00
|
|
|
func (coll *Collector) sendMulticast() {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.Info("sending multicasts")
|
2017-10-18 18:22:14 +02:00
|
|
|
for _, conn := range coll.connections {
|
2018-03-11 20:21:35 +01:00
|
|
|
if conn.SendRequest {
|
|
|
|
coll.sendPacket(conn.Conn, conn.MulticastAddress)
|
|
|
|
}
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
2017-01-29 22:14:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send unicast packets to nodes that did not answer the multicast
|
|
|
|
func (coll *Collector) sendUnicasts(seenBefore jsontime.Time) {
|
|
|
|
seenAfter := seenBefore.Add(-time.Minute * 10)
|
|
|
|
|
|
|
|
// Select online nodes that has not been seen recently
|
2017-04-10 18:54:12 +02:00
|
|
|
nodes := coll.nodes.Select(func(n *runtime.Node) bool {
|
2017-01-29 22:14:40 +01:00
|
|
|
return n.Lastseen.After(seenAfter) && n.Lastseen.Before(seenBefore) && n.Address != nil
|
|
|
|
})
|
|
|
|
|
|
|
|
// Send unicast packets
|
2017-12-05 23:17:49 +01:00
|
|
|
count := 0
|
2017-01-29 22:14:40 +01:00
|
|
|
for _, node := range nodes {
|
2017-12-05 23:17:49 +01:00
|
|
|
send := 0
|
|
|
|
for _, conn := range coll.connections {
|
2018-07-27 20:42:03 +02:00
|
|
|
if node.Address.Zone != "" && conn.Conn.LocalAddr().(*net.UDPAddr).Zone != node.Address.Zone && conn.SendRequest {
|
2017-12-05 23:17:49 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
coll.sendPacket(conn.Conn, node.Address.IP)
|
|
|
|
send++
|
|
|
|
}
|
|
|
|
if send == 0 {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.WithField("iface", node.Address.Zone).Error("unable to find connection")
|
2017-12-05 23:17:49 +01:00
|
|
|
} else {
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
count += send
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
2017-01-29 22:14:40 +01:00
|
|
|
}
|
2019-01-17 13:26:16 +01:00
|
|
|
log.WithFields(map[string]interface{}{
|
|
|
|
"pkg_count": count,
|
|
|
|
"nodes_count": len(nodes),
|
|
|
|
}).Info("sending unicast pkg")
|
2017-01-29 22:14:40 +01:00
|
|
|
}
|
|
|
|
|
2017-10-18 18:22:14 +02:00
|
|
|
// SendPacket sends a UDP request to the given unicast or multicast address on the first UDP socket
|
|
|
|
func (coll *Collector) SendPacket(destination net.IP) {
|
2017-12-05 23:17:49 +01:00
|
|
|
coll.sendPacket(coll.connections[0].Conn, destination)
|
2017-10-18 18:22:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// sendPacket sends a UDP request to the given unicast or multicast address on the given UDP socket
|
|
|
|
func (coll *Collector) sendPacket(conn *net.UDPConn, destination net.IP) {
|
2017-01-29 22:14:40 +01:00
|
|
|
addr := net.UDPAddr{
|
2017-10-18 18:22:14 +02:00
|
|
|
IP: destination,
|
2020-01-07 15:27:08 +01:00
|
|
|
Port: PortDefault,
|
2017-10-18 18:22:14 +02:00
|
|
|
Zone: conn.LocalAddr().(*net.UDPAddr).Zone,
|
2016-02-19 11:13:30 +01:00
|
|
|
}
|
2015-12-29 14:05:47 +01:00
|
|
|
|
2017-10-18 18:22:14 +02:00
|
|
|
if _, err := conn.WriteToUDP([]byte("GET nodeinfo statistics neighbours"), &addr); err != nil {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.WithField("address", addr.String()).Errorf("WriteToUDP failed: %s", err)
|
2016-03-07 01:37:07 +01:00
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
|
2018-01-13 16:54:48 +01:00
|
|
|
// send packets continuously
|
2016-03-11 23:56:23 +01:00
|
|
|
func (coll *Collector) sender() {
|
2017-01-29 22:26:16 +01:00
|
|
|
ticker := time.NewTicker(coll.interval)
|
2016-03-11 23:56:23 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-coll.stop:
|
2017-01-29 22:26:16 +01:00
|
|
|
ticker.Stop()
|
2016-03-11 23:56:23 +01:00
|
|
|
return
|
2017-01-29 22:26:16 +01:00
|
|
|
case <-ticker.C:
|
2016-10-04 01:05:18 +02:00
|
|
|
// send the multicast packet to request per-node statistics
|
2016-03-11 23:56:23 +01:00
|
|
|
coll.sendOnce()
|
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (coll *Collector) parser() {
|
2016-01-04 02:07:09 +01:00
|
|
|
for obj := range coll.queue {
|
2019-11-17 10:44:11 +01:00
|
|
|
if data, err := obj.parse(coll.config.CustomFields); err != nil {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.WithField("address", obj.Address.String()).Errorf("unable to decode response %s", err)
|
2016-10-03 19:55:37 +02:00
|
|
|
} else {
|
|
|
|
coll.saveResponse(obj.Address, data)
|
2016-03-12 00:59:36 +01:00
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-18 18:22:14 +02:00
|
|
|
func (coll *Collector) saveResponse(addr *net.UDPAddr, res *data.ResponseData) {
|
2016-10-03 19:55:37 +02:00
|
|
|
// Search for NodeID
|
2017-01-20 22:27:44 +01:00
|
|
|
var nodeID string
|
2019-01-24 02:56:13 +01:00
|
|
|
if val := res.Nodeinfo; val != nil {
|
2017-01-20 22:27:44 +01:00
|
|
|
nodeID = val.NodeID
|
2016-10-03 19:55:37 +02:00
|
|
|
} else if val := res.Neighbours; val != nil {
|
2017-01-20 22:27:44 +01:00
|
|
|
nodeID = val.NodeID
|
2016-10-03 19:55:37 +02:00
|
|
|
} else if val := res.Statistics; val != nil {
|
2017-01-20 22:27:44 +01:00
|
|
|
nodeID = val.NodeID
|
2016-10-03 19:55:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-29 22:26:16 +01:00
|
|
|
// Check length of nodeID
|
2017-01-20 22:27:44 +01:00
|
|
|
if len(nodeID) != 12 {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.WithFields(map[string]interface{}{
|
|
|
|
"node_id": nodeID,
|
|
|
|
"address": addr.String(),
|
|
|
|
}).Warn("invalid NodeID")
|
2016-10-03 19:55:37 +02:00
|
|
|
return
|
2016-03-19 15:07:44 +01:00
|
|
|
}
|
2017-01-29 22:26:16 +01:00
|
|
|
|
2017-09-27 13:55:02 +02:00
|
|
|
// Set fields to nil if nodeID is inconsistent
|
|
|
|
if res.Statistics != nil && res.Statistics.NodeID != nodeID {
|
|
|
|
res.Statistics = nil
|
|
|
|
}
|
|
|
|
if res.Neighbours != nil && res.Neighbours.NodeID != nodeID {
|
|
|
|
res.Neighbours = nil
|
|
|
|
}
|
2019-01-24 02:56:13 +01:00
|
|
|
if res.Nodeinfo != nil && res.Nodeinfo.NodeID != nodeID {
|
|
|
|
res.Nodeinfo = nil
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
|
|
|
|
2017-01-29 22:14:40 +01:00
|
|
|
// Process the data and update IP address
|
2017-01-20 22:27:44 +01:00
|
|
|
node := coll.nodes.Update(nodeID, res)
|
2017-10-18 18:22:14 +02:00
|
|
|
node.Address = addr
|
2016-03-19 15:07:44 +01:00
|
|
|
|
2017-04-18 01:48:38 +02:00
|
|
|
// Store statistics in database
|
2017-09-27 13:55:02 +02:00
|
|
|
if db := coll.db; db != nil {
|
|
|
|
db.InsertNode(node)
|
|
|
|
|
|
|
|
// Store link data
|
|
|
|
if neighbours := node.Neighbours; neighbours != nil {
|
2017-05-20 14:46:29 +02:00
|
|
|
coll.nodes.RLock()
|
2017-09-27 13:55:02 +02:00
|
|
|
for _, link := range coll.nodes.NodeLinks(node) {
|
|
|
|
db.InsertLink(&link, node.Lastseen.GetTime())
|
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
coll.nodes.RUnlock()
|
2017-09-27 13:55:02 +02:00
|
|
|
}
|
2016-10-03 19:55:37 +02:00
|
|
|
}
|
2016-03-19 01:50:23 +01:00
|
|
|
}
|
|
|
|
|
2017-10-18 18:22:14 +02:00
|
|
|
func (coll *Collector) receiver(conn *net.UDPConn) {
|
2020-01-07 15:27:08 +01:00
|
|
|
buf := make([]byte, MaxDataGramSize)
|
2015-12-29 04:08:03 +01:00
|
|
|
for {
|
2017-10-18 18:22:14 +02:00
|
|
|
n, src, err := conn.ReadFromUDP(buf)
|
2015-12-29 04:08:03 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2019-01-17 13:26:16 +01:00
|
|
|
if conn != nil {
|
|
|
|
log.WithFields(map[string]interface{}{
|
|
|
|
"local": conn.LocalAddr(),
|
|
|
|
"remote": conn.RemoteAddr(),
|
|
|
|
}).Errorf("ReadFromUDP failed: %s", err)
|
|
|
|
} else {
|
|
|
|
log.Errorf("ReadFromUDP failed: %s", err)
|
|
|
|
}
|
2015-12-29 14:05:47 +01:00
|
|
|
return
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
2016-01-04 02:07:09 +01:00
|
|
|
|
|
|
|
raw := make([]byte, n)
|
|
|
|
copy(raw, buf)
|
|
|
|
|
|
|
|
coll.queue <- &Response{
|
2017-10-18 18:22:14 +02:00
|
|
|
Address: src,
|
2016-01-04 02:07:09 +01:00
|
|
|
Raw: raw,
|
|
|
|
}
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-15 11:10:09 +01:00
|
|
|
|
|
|
|
func (coll *Collector) globalStatsWorker() {
|
|
|
|
ticker := time.NewTicker(time.Minute)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-coll.stop:
|
2017-01-29 22:26:16 +01:00
|
|
|
ticker.Stop()
|
2016-12-15 11:10:09 +01:00
|
|
|
return
|
|
|
|
case <-ticker.C:
|
|
|
|
coll.saveGlobalStats()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// saves global statistics
|
|
|
|
func (coll *Collector) saveGlobalStats() {
|
2019-11-17 10:33:20 +01:00
|
|
|
stats := runtime.NewGlobalStats(coll.nodes, coll.config.SitesDomains())
|
2016-12-15 11:10:09 +01:00
|
|
|
|
2018-01-17 20:20:35 +01:00
|
|
|
for site, domains := range stats {
|
|
|
|
for domain, stat := range domains {
|
|
|
|
coll.db.InsertGlobals(stat, time.Now(), site, domain)
|
|
|
|
}
|
2017-11-21 15:12:06 +01:00
|
|
|
}
|
2016-12-15 11:10:09 +01:00
|
|
|
}
|