yanic/cmd/query.go

80 lines
2.1 KiB
Go
Raw Normal View History

2017-09-17 03:26:19 +02:00
package cmd
import (
2018-04-20 08:56:06 +02:00
"encoding/json"
2019-01-17 13:26:16 +01:00
"fmt"
2017-09-17 03:26:19 +02:00
"net"
"strings"
2017-09-17 03:26:19 +02:00
"time"
2019-01-17 13:26:16 +01:00
"github.com/bdlm/log"
"github.com/spf13/cobra"
2017-09-17 03:26:19 +02:00
"github.com/FreifunkBremen/yanic/respond"
"github.com/FreifunkBremen/yanic/runtime"
)
var (
wait int
port int
ipAddress string
)
2017-09-17 03:26:19 +02:00
// queryCmd represents the query command
var queryCmd = &cobra.Command{
Use: "query <interfaces> <destination>",
2017-09-17 03:26:19 +02:00
Short: "Sends a query on the interface to the destination and waits for a response",
Example: `yanic query "eth0,wlan0" "fe80::eade:27ff:dead:beef"`,
2017-09-17 03:26:19 +02:00
Args: cobra.ExactArgs(2),
Run: func(cmd *cobra.Command, args []string) {
ifaces := strings.Split(args[0], ",")
dstAddress := net.ParseIP(args[1])
2017-09-17 03:26:19 +02:00
2019-01-17 13:26:16 +01:00
log.WithFields(map[string]interface{}{
"address": dstAddress,
"ifaces": ifaces,
}).Info("sending request")
var ifacesConfigs []respond.InterfaceConfig
for _, iface := range ifaces {
ifaceConfig := respond.InterfaceConfig{
InterfaceName: iface,
Port: port,
IPAddress: ipAddress,
}
ifacesConfigs = append(ifacesConfigs, ifaceConfig)
}
var config respond.Config
config.Interfaces = ifacesConfigs
2017-09-17 03:26:19 +02:00
nodes := runtime.NewNodes(&runtime.NodesConfig{})
2017-09-17 03:26:19 +02:00
collector := respond.NewCollector(nil, nodes, &config)
2017-09-17 03:26:19 +02:00
defer collector.Close()
collector.SendPacket(dstAddress)
2017-09-17 03:26:19 +02:00
time.Sleep(time.Second * time.Duration(wait))
for id, data := range nodes.List {
jq, err := json.Marshal(data)
2018-04-20 08:56:06 +02:00
if err != nil {
2019-01-17 13:26:16 +01:00
fmt.Printf("%s: %+v", id, data)
2018-04-20 08:56:06 +02:00
} else {
jqNeighbours, err := json.Marshal(data.Neighbours)
if err != nil {
2019-01-17 13:26:16 +01:00
fmt.Printf("%s: %s neighbours: %+v", id, string(jq), data.Neighbours)
} else {
2019-01-17 13:26:16 +01:00
fmt.Printf("%s: %s neighbours: %s", id, string(jq), string(jqNeighbours))
}
2018-04-20 08:56:06 +02:00
}
2017-09-17 03:26:19 +02:00
}
},
}
func init() {
RootCmd.AddCommand(queryCmd)
queryCmd.Flags().IntVar(&wait, "wait", 1, "Seconds to wait for a response")
queryCmd.Flags().IntVar(&port, "port", 0, "define a port to listen (if not set or set to 0 the kernel will use a random free port at its own)")
queryCmd.Flags().StringVar(&ipAddress, "ip", "", "ip address which is used for sending (optional - without definition used the link-local address)")
2017-09-17 03:26:19 +02:00
}