2019-01-18 01:50:10 +00:00
|
|
|
// Copyright 2019 the Kilo authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package mesh
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
|
|
|
|
"github.com/awalterschulze/gographviz"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Dot generates a Graphviz graph of the Topology in DOT fomat.
|
|
|
|
func (t *Topology) Dot() (string, error) {
|
|
|
|
g := gographviz.NewGraph()
|
|
|
|
g.Name = "kilo"
|
|
|
|
if err := g.AddAttr("kilo", string(gographviz.Label), graphEscape(t.subnet.String())); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to add label to graph")
|
|
|
|
}
|
|
|
|
if err := g.AddAttr("kilo", string(gographviz.LabelLOC), "t"); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to add label location to graph")
|
|
|
|
}
|
2019-05-07 14:36:02 +00:00
|
|
|
if err := g.AddAttr("kilo", string(gographviz.OutputOrder), "nodesfirst"); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to set output ordering")
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
if err := g.AddAttr("kilo", string(gographviz.Overlap), "false"); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to disable graph overlap")
|
|
|
|
}
|
|
|
|
if err := g.SetDir(true); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to set direction")
|
|
|
|
}
|
2019-05-03 10:53:40 +00:00
|
|
|
leaders := make([]string, len(t.segments))
|
2019-01-18 01:50:10 +00:00
|
|
|
nodeAttrs := map[string]string{
|
|
|
|
string(gographviz.Shape): "ellipse",
|
|
|
|
}
|
2019-05-07 14:36:02 +00:00
|
|
|
|
2019-05-03 10:53:40 +00:00
|
|
|
for i, s := range t.segments {
|
|
|
|
if err := g.AddSubGraph("kilo", subGraphName(s.location), nil); err != nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
return "", fmt.Errorf("failed to add subgraph")
|
|
|
|
}
|
2019-05-03 10:53:40 +00:00
|
|
|
if err := g.AddAttr(subGraphName(s.location), string(gographviz.Label), graphEscape(s.location)); err != nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
return "", fmt.Errorf("failed to add label to subgraph")
|
|
|
|
}
|
2019-05-03 10:53:40 +00:00
|
|
|
if err := g.AddAttr(subGraphName(s.location), string(gographviz.Style), `"dashed,rounded"`); err != nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
return "", fmt.Errorf("failed to add style to subgraph")
|
|
|
|
}
|
|
|
|
for j := range s.cidrs {
|
2019-05-03 10:53:40 +00:00
|
|
|
if err := g.AddNode(subGraphName(s.location), graphEscape(s.hostnames[j]), nodeAttrs); err != nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
return "", fmt.Errorf("failed to add node to subgraph")
|
|
|
|
}
|
|
|
|
var wg net.IP
|
|
|
|
if j == s.leader {
|
|
|
|
wg = s.wireGuardIP
|
|
|
|
if err := g.Nodes.Lookup[graphEscape(s.hostnames[j])].Attrs.Add(string(gographviz.Rank), "1"); err != nil {
|
|
|
|
return "", fmt.Errorf("failed to add rank to node")
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 10:53:40 +00:00
|
|
|
if err := g.Nodes.Lookup[graphEscape(s.hostnames[j])].Attrs.Add(string(gographviz.Label), nodeLabel(s.location, s.hostnames[j], s.cidrs[j], s.privateIPs[j], wg)); err != nil {
|
2019-01-18 01:50:10 +00:00
|
|
|
return "", fmt.Errorf("failed to add label to node")
|
|
|
|
}
|
|
|
|
}
|
2019-05-07 14:36:02 +00:00
|
|
|
meshSubGraph(g, g.Relations.SortedChildren(subGraphName(s.location)), s.leader, nil)
|
2019-01-18 01:50:10 +00:00
|
|
|
leaders[i] = graphEscape(s.hostnames[s.leader])
|
|
|
|
}
|
2019-05-07 14:36:02 +00:00
|
|
|
meshGraph(g, leaders, nil)
|
2019-01-18 01:50:10 +00:00
|
|
|
return g.String(), nil
|
|
|
|
}
|
|
|
|
|
2019-05-07 14:36:02 +00:00
|
|
|
func meshGraph(g *gographviz.Graph, nodes []string, attrs gographviz.Attrs) {
|
|
|
|
if attrs == nil {
|
|
|
|
attrs = make(gographviz.Attrs)
|
|
|
|
attrs[gographviz.Dir] = "both"
|
|
|
|
}
|
|
|
|
for i := range nodes {
|
|
|
|
for j := i + 1; j < len(nodes); j++ {
|
|
|
|
if i == j {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
g.Edges.Add(&gographviz.Edge{Src: nodes[i], Dst: nodes[j], Dir: true, Attrs: attrs})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func meshSubGraph(g *gographviz.Graph, nodes []string, leader int, attrs gographviz.Attrs) {
|
|
|
|
if attrs == nil {
|
|
|
|
attrs = make(gographviz.Attrs)
|
|
|
|
attrs[gographviz.Dir] = "both"
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
for i := range nodes {
|
|
|
|
if i == leader {
|
|
|
|
continue
|
|
|
|
}
|
2019-05-07 14:36:02 +00:00
|
|
|
g.Edges.Add(&gographviz.Edge{Src: nodes[leader], Dst: nodes[i], Dir: true, Attrs: attrs})
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func graphEscape(s string) string {
|
|
|
|
return fmt.Sprintf("\"%s\"", s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func subGraphName(name string) string {
|
|
|
|
return graphEscape(fmt.Sprintf("cluster_%s", name))
|
|
|
|
}
|
|
|
|
|
|
|
|
func nodeLabel(location, name string, cidr *net.IPNet, priv, wgIP net.IP) string {
|
|
|
|
var wg string
|
|
|
|
if wgIP != nil {
|
|
|
|
wg = wgIP.String()
|
|
|
|
}
|
|
|
|
return graphEscape(fmt.Sprintf("%s\n%s\n%s\n%s\n%s", location, name, cidr.String(), priv.String(), wg))
|
|
|
|
}
|