2019-06-06 18:37:40 +03:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2019-06-10 01:09:38 +03:00
|
|
|
"fmt"
|
2019-07-03 21:50:07 +03:00
|
|
|
"sort"
|
2019-06-10 01:09:38 +03:00
|
|
|
"strings"
|
2019-06-12 01:59:25 +03:00
|
|
|
"sync"
|
2019-06-28 13:53:55 +03:00
|
|
|
"time"
|
2019-06-10 01:09:38 +03:00
|
|
|
|
2019-06-06 18:37:40 +03:00
|
|
|
"github.com/micro/go-micro/registry"
|
2019-06-10 21:50:54 +03:00
|
|
|
"github.com/olekukonko/tablewriter"
|
2019-06-06 18:37:40 +03:00
|
|
|
)
|
|
|
|
|
2019-07-03 21:50:07 +03:00
|
|
|
const (
|
|
|
|
// UpdateRoutePenalty penalises route updates
|
|
|
|
UpdateRoutePenalty = 500
|
|
|
|
// DeleteRoutePenalty penalises route deletes
|
|
|
|
DeleteRoutePenalty = 1000
|
|
|
|
// AdvertiseTick is time interval in which we advertise route updates
|
|
|
|
AdvertiseTick = 5 * time.Second
|
|
|
|
)
|
|
|
|
|
2019-06-26 18:03:19 +03:00
|
|
|
// router provides default router implementation
|
2019-06-06 18:37:40 +03:00
|
|
|
type router struct {
|
2019-06-28 00:52:51 +03:00
|
|
|
opts Options
|
2019-06-28 20:35:53 +03:00
|
|
|
status Status
|
2019-06-28 13:53:55 +03:00
|
|
|
advertChan chan *Update
|
2019-06-28 00:52:51 +03:00
|
|
|
exit chan struct{}
|
|
|
|
wg *sync.WaitGroup
|
2019-06-28 20:35:53 +03:00
|
|
|
sync.RWMutex
|
2019-06-06 18:37:40 +03:00
|
|
|
}
|
|
|
|
|
2019-06-13 17:12:07 +03:00
|
|
|
// newRouter creates new router and returns it
|
2019-06-06 18:37:40 +03:00
|
|
|
func newRouter(opts ...Option) Router {
|
2019-06-13 00:30:42 +03:00
|
|
|
// get default options
|
|
|
|
options := DefaultOptions()
|
2019-06-06 18:37:40 +03:00
|
|
|
|
2019-06-12 01:59:25 +03:00
|
|
|
// apply requested options
|
2019-06-06 18:37:40 +03:00
|
|
|
for _, o := range opts {
|
2019-06-10 21:50:54 +03:00
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2019-06-12 01:59:25 +03:00
|
|
|
return &router{
|
2019-06-28 00:52:51 +03:00
|
|
|
opts: options,
|
2019-06-29 02:46:22 +03:00
|
|
|
status: Status{Error: nil, Code: Init},
|
2019-06-28 13:53:55 +03:00
|
|
|
advertChan: make(chan *Update),
|
2019-06-28 00:52:51 +03:00
|
|
|
exit: make(chan struct{}),
|
|
|
|
wg: &sync.WaitGroup{},
|
2019-06-06 18:37:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:29:24 +03:00
|
|
|
// Init initializes router with given options
|
2019-06-06 18:37:40 +03:00
|
|
|
func (r *router) Init(opts ...Option) error {
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&r.opts)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:29:24 +03:00
|
|
|
// Options returns router options
|
2019-06-06 18:37:40 +03:00
|
|
|
func (r *router) Options() Options {
|
|
|
|
return r.opts
|
|
|
|
}
|
|
|
|
|
2019-06-17 01:09:59 +03:00
|
|
|
// ID returns router ID
|
|
|
|
func (r *router) ID() string {
|
|
|
|
return r.opts.ID
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:29:24 +03:00
|
|
|
// Table returns routing table
|
2019-06-07 15:29:09 +03:00
|
|
|
func (r *router) Table() Table {
|
2019-06-10 21:50:54 +03:00
|
|
|
return r.opts.Table
|
2019-06-07 01:29:24 +03:00
|
|
|
}
|
|
|
|
|
2019-06-07 19:20:22 +03:00
|
|
|
// Address returns router's bind address
|
2019-06-07 01:29:24 +03:00
|
|
|
func (r *router) Address() string {
|
2019-06-07 15:29:09 +03:00
|
|
|
return r.opts.Address
|
2019-06-07 01:29:24 +03:00
|
|
|
}
|
|
|
|
|
2019-06-19 23:22:14 +03:00
|
|
|
// Network returns the address router advertises to the network
|
2019-06-10 21:50:54 +03:00
|
|
|
func (r *router) Network() string {
|
2019-06-26 18:03:19 +03:00
|
|
|
return r.opts.Network
|
2019-06-10 21:50:54 +03:00
|
|
|
}
|
|
|
|
|
2019-06-20 15:04:58 +03:00
|
|
|
// addServiceRoutes adds all services in given registry to the routing table.
|
2019-06-26 18:03:19 +03:00
|
|
|
// NOTE: this is a one-off operation done when bootstrapping the routing table
|
|
|
|
// It returns error if either the services failed to be listed or
|
2019-06-28 00:52:51 +03:00
|
|
|
// if any of the the routes could not be added to the routing table.
|
2019-06-26 18:03:19 +03:00
|
|
|
func (r *router) addServiceRoutes(reg registry.Registry, network string, metric int) error {
|
2019-06-13 00:30:42 +03:00
|
|
|
services, err := reg.ListServices()
|
|
|
|
if err != nil {
|
2019-07-03 21:50:07 +03:00
|
|
|
return fmt.Errorf("failed listing services: %v", err)
|
2019-06-13 00:30:42 +03:00
|
|
|
}
|
|
|
|
|
2019-06-28 00:52:51 +03:00
|
|
|
// add each service node as a separate route
|
2019-06-13 00:30:42 +03:00
|
|
|
for _, service := range services {
|
2019-06-27 16:37:52 +03:00
|
|
|
// get the service to retrieve all its info
|
|
|
|
srvs, err := reg.GetService(service.Name)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a flat slide of nodes
|
|
|
|
var nodes []*registry.Node
|
|
|
|
for _, s := range srvs {
|
|
|
|
nodes = append(nodes, s.Nodes...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// range over the flat slice of nodes
|
|
|
|
for _, node := range nodes {
|
2019-06-26 18:03:19 +03:00
|
|
|
route := Route{
|
|
|
|
Destination: service.Name,
|
2019-07-08 10:01:42 +03:00
|
|
|
Gateway: node.Address,
|
2019-06-26 18:03:19 +03:00
|
|
|
Router: r.opts.Address,
|
|
|
|
Network: r.opts.Network,
|
|
|
|
Metric: metric,
|
2019-06-19 20:01:48 +03:00
|
|
|
}
|
2019-06-26 18:03:19 +03:00
|
|
|
if err := r.opts.Table.Add(route); err != nil && err != ErrDuplicateRoute {
|
|
|
|
return fmt.Errorf("error adding route for service %s: %s", service.Name, err)
|
2019-06-19 20:01:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-26 18:03:19 +03:00
|
|
|
|
|
|
|
return nil
|
2019-06-19 20:01:48 +03:00
|
|
|
}
|
|
|
|
|
2019-06-13 17:12:07 +03:00
|
|
|
// manageServiceRoutes watches services in given registry and updates the routing table accordingly.
|
|
|
|
// It returns error if the service registry watcher has stopped or if the routing table failed to be updated.
|
2019-06-19 23:22:14 +03:00
|
|
|
func (r *router) manageServiceRoutes(w registry.Watcher, metric int) error {
|
2019-06-13 17:12:07 +03:00
|
|
|
// wait in the background for the router to stop
|
|
|
|
// when the router stops, stop the watcher and exit
|
2019-06-12 01:59:25 +03:00
|
|
|
r.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer r.wg.Done()
|
|
|
|
<-r.exit
|
|
|
|
w.Stop()
|
|
|
|
}()
|
|
|
|
|
|
|
|
var watchErr error
|
|
|
|
|
|
|
|
for {
|
|
|
|
res, err := w.Next()
|
|
|
|
if err != nil {
|
2019-07-01 17:43:50 +03:00
|
|
|
if err != registry.ErrWatcherStopped {
|
|
|
|
watchErr = err
|
|
|
|
}
|
2019-06-12 01:59:25 +03:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-06-19 23:22:14 +03:00
|
|
|
route := Route{
|
|
|
|
Destination: res.Service.Name,
|
2019-06-26 18:03:19 +03:00
|
|
|
Router: r.opts.Address,
|
|
|
|
Network: r.opts.Network,
|
2019-06-19 23:22:14 +03:00
|
|
|
Metric: metric,
|
|
|
|
}
|
2019-06-13 00:30:42 +03:00
|
|
|
|
|
|
|
switch res.Action {
|
|
|
|
case "create":
|
2019-06-26 18:03:19 +03:00
|
|
|
// only return error if the route is not duplicate, but something else has failed
|
|
|
|
if err := r.opts.Table.Add(route); err != nil && err != ErrDuplicateRoute {
|
2019-07-03 21:50:07 +03:00
|
|
|
return fmt.Errorf("failed adding route for service %v: %s", res.Service.Name, err)
|
2019-06-13 00:30:42 +03:00
|
|
|
}
|
|
|
|
case "delete":
|
2019-06-26 18:03:19 +03:00
|
|
|
// only return error if the route is not in the table, but something else has failed
|
|
|
|
if err := r.opts.Table.Delete(route); err != nil && err != ErrRouteNotFound {
|
2019-07-03 21:50:07 +03:00
|
|
|
return fmt.Errorf("failed adding route for service %v: %s", res.Service.Name, err)
|
2019-06-13 00:30:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return watchErr
|
|
|
|
}
|
|
|
|
|
2019-06-28 00:52:51 +03:00
|
|
|
// watchTable watches routing table entries and either adds or deletes locally registered service to/from network registry
|
|
|
|
// It returns error if the locally registered services either fails to be added/deleted to/from network registry.
|
|
|
|
func (r *router) watchTable(w Watcher) error {
|
|
|
|
// wait in the background for the router to stop
|
|
|
|
// when the router stops, stop the watcher and exit
|
|
|
|
r.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer r.wg.Done()
|
|
|
|
<-r.exit
|
|
|
|
w.Stop()
|
|
|
|
}()
|
|
|
|
|
|
|
|
var watchErr error
|
|
|
|
|
|
|
|
for {
|
|
|
|
event, err := w.Next()
|
|
|
|
if err != nil {
|
2019-07-01 17:43:50 +03:00
|
|
|
if err != ErrWatcherStopped {
|
|
|
|
watchErr = err
|
|
|
|
}
|
2019-06-28 00:52:51 +03:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-06-28 13:53:55 +03:00
|
|
|
u := &Update{
|
|
|
|
ID: r.ID(),
|
|
|
|
Timestamp: time.Now(),
|
2019-07-03 21:50:07 +03:00
|
|
|
Events: []*Event{event},
|
2019-06-28 13:53:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-r.exit:
|
2019-07-03 21:50:07 +03:00
|
|
|
close(r.advertChan)
|
|
|
|
return watchErr
|
2019-06-28 13:53:55 +03:00
|
|
|
case r.advertChan <- u:
|
2019-06-28 00:52:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-01 17:43:50 +03:00
|
|
|
// close the advertisement channel
|
|
|
|
close(r.advertChan)
|
|
|
|
|
2019-06-28 00:52:51 +03:00
|
|
|
return watchErr
|
|
|
|
}
|
|
|
|
|
2019-07-01 17:43:50 +03:00
|
|
|
// watchError watches router errors
|
|
|
|
func (r *router) watchError(errChan <-chan error) {
|
2019-06-29 02:46:22 +03:00
|
|
|
defer r.wg.Done()
|
|
|
|
|
|
|
|
var code StatusCode
|
|
|
|
var err error
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-r.exit:
|
|
|
|
code = Stopped
|
|
|
|
case err = <-errChan:
|
|
|
|
code = Error
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
2019-07-01 17:43:50 +03:00
|
|
|
status := Status{
|
|
|
|
Code: code,
|
|
|
|
Error: err,
|
|
|
|
}
|
|
|
|
r.status = status
|
2019-06-29 02:46:22 +03:00
|
|
|
|
|
|
|
// stop the router if some error happened
|
|
|
|
if err != nil && code != Stopped {
|
2019-07-01 22:33:08 +03:00
|
|
|
// this will stop watchers which will close r.advertChan
|
2019-06-29 02:46:22 +03:00
|
|
|
close(r.exit)
|
2019-07-01 22:33:08 +03:00
|
|
|
// drain the advertise channel
|
|
|
|
for range r.advertChan {
|
|
|
|
}
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advertise advertises the routes to the network.
|
|
|
|
// It returns error if any of the launched goroutines fail with error.
|
|
|
|
func (r *router) Advertise() (<-chan *Update, error) {
|
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
|
|
|
if r.status.Code != Running {
|
|
|
|
// add local service routes into the routing table
|
|
|
|
if err := r.addServiceRoutes(r.opts.Registry, "local", DefaultLocalMetric); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed adding routes: %v", err)
|
|
|
|
}
|
|
|
|
// add default gateway into routing table
|
|
|
|
if r.opts.Gateway != "" {
|
|
|
|
// note, the only non-default value is the gateway
|
|
|
|
route := Route{
|
|
|
|
Destination: "*",
|
|
|
|
Gateway: r.opts.Gateway,
|
|
|
|
Router: "*",
|
|
|
|
Network: "*",
|
|
|
|
Metric: DefaultLocalMetric,
|
|
|
|
}
|
|
|
|
if err := r.opts.Table.Add(route); err != nil {
|
2019-07-03 21:50:07 +03:00
|
|
|
return nil, fmt.Errorf("failed adding default gateway route: %s", err)
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: we only need to recreate the exit/advertChan if the router errored or was stopped
|
|
|
|
if r.status.Code == Error || r.status.Code == Stopped {
|
|
|
|
r.exit = make(chan struct{})
|
|
|
|
r.advertChan = make(chan *Update)
|
|
|
|
}
|
|
|
|
|
|
|
|
// routing table watcher which watches all routes i.e. to every destination
|
|
|
|
tableWatcher, err := r.opts.Table.Watch(WatchDestination("*"))
|
|
|
|
if err != nil {
|
2019-07-03 21:50:07 +03:00
|
|
|
return nil, fmt.Errorf("failed creating routing table watcher: %v", err)
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
// registry watcher
|
|
|
|
regWatcher, err := r.opts.Registry.Watch()
|
|
|
|
if err != nil {
|
2019-07-03 21:50:07 +03:00
|
|
|
return nil, fmt.Errorf("failed creating registry watcher: %v", err)
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// error channel collecting goroutine errors
|
|
|
|
errChan := make(chan error, 2)
|
|
|
|
|
|
|
|
r.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer r.wg.Done()
|
|
|
|
// watch local registry and register routes in routine table
|
|
|
|
errChan <- r.manageServiceRoutes(regWatcher, DefaultLocalMetric)
|
|
|
|
}()
|
|
|
|
|
|
|
|
r.wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer r.wg.Done()
|
|
|
|
// watch local registry and register routes in routing table
|
|
|
|
errChan <- r.watchTable(tableWatcher)
|
|
|
|
}()
|
|
|
|
|
|
|
|
r.wg.Add(1)
|
2019-07-01 17:43:50 +03:00
|
|
|
go r.watchError(errChan)
|
|
|
|
|
|
|
|
// mark router as running and set its Error to nil
|
|
|
|
status := Status{
|
|
|
|
Code: Running,
|
|
|
|
Error: nil,
|
|
|
|
}
|
|
|
|
r.status = status
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return r.advertChan, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates the routing table using the advertised values
|
2019-07-03 21:50:07 +03:00
|
|
|
func (r *router) Update(u *Update) error {
|
|
|
|
// NOTE: event sorting might not be necessary
|
|
|
|
// copy update events intp new slices
|
|
|
|
events := make([]*Event, len(u.Events))
|
|
|
|
copy(events, u.Events)
|
|
|
|
// sort events by timestamp
|
|
|
|
sort.Slice(events, func(i, j int) bool {
|
|
|
|
return events[i].Timestamp.Before(events[j].Timestamp)
|
|
|
|
})
|
|
|
|
|
|
|
|
for _, event := range events {
|
|
|
|
// we extract the route from advertisement and update the routing table
|
|
|
|
route := Route{
|
|
|
|
Destination: event.Route.Destination,
|
|
|
|
Gateway: event.Route.Gateway,
|
|
|
|
Router: event.Route.Router,
|
|
|
|
Network: event.Route.Network,
|
|
|
|
Metric: event.Route.Metric,
|
|
|
|
Policy: AddIfNotExists,
|
|
|
|
}
|
|
|
|
if err := r.opts.Table.Update(route); err != nil {
|
|
|
|
return fmt.Errorf("failed updating routing table: %v", err)
|
|
|
|
}
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
|
2019-07-03 21:50:07 +03:00
|
|
|
return nil
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
|
|
|
|
2019-06-28 20:35:53 +03:00
|
|
|
// Status returns router status
|
|
|
|
func (r *router) Status() Status {
|
|
|
|
r.RLock()
|
|
|
|
defer r.RUnlock()
|
|
|
|
|
2019-06-29 02:46:22 +03:00
|
|
|
// make a copy of the status
|
|
|
|
status := r.status
|
|
|
|
|
|
|
|
return status
|
2019-06-28 20:35:53 +03:00
|
|
|
}
|
|
|
|
|
2019-06-12 01:59:25 +03:00
|
|
|
// Stop stops the router
|
|
|
|
func (r *router) Stop() error {
|
2019-06-29 02:46:22 +03:00
|
|
|
r.RLock()
|
|
|
|
// only close the channel if the router is running
|
|
|
|
if r.status.Code == Running {
|
|
|
|
// notify all goroutines to finish
|
|
|
|
close(r.exit)
|
2019-07-01 22:33:08 +03:00
|
|
|
// drain the advertise channel
|
|
|
|
for range r.advertChan {
|
|
|
|
}
|
2019-06-29 02:46:22 +03:00
|
|
|
}
|
2019-07-01 17:43:50 +03:00
|
|
|
r.RUnlock()
|
|
|
|
|
|
|
|
// wait for all goroutines to finish
|
|
|
|
r.wg.Wait()
|
2019-06-19 20:01:48 +03:00
|
|
|
|
2019-06-12 01:59:25 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:29:24 +03:00
|
|
|
// String prints debugging information about router
|
2019-06-06 18:37:40 +03:00
|
|
|
func (r *router) String() string {
|
2019-06-10 01:09:38 +03:00
|
|
|
sb := &strings.Builder{}
|
|
|
|
|
2019-06-10 21:50:54 +03:00
|
|
|
table := tablewriter.NewWriter(sb)
|
2019-06-29 02:46:22 +03:00
|
|
|
table.SetHeader([]string{"ID", "Address", "Network", "Table", "Status"})
|
2019-06-10 01:09:38 +03:00
|
|
|
|
2019-06-10 21:50:54 +03:00
|
|
|
data := []string{
|
|
|
|
r.opts.ID,
|
|
|
|
r.opts.Address,
|
2019-06-26 18:03:19 +03:00
|
|
|
r.opts.Network,
|
2019-06-10 21:50:54 +03:00
|
|
|
fmt.Sprintf("%d", r.opts.Table.Size()),
|
2019-06-29 02:46:22 +03:00
|
|
|
r.status.Code.String(),
|
2019-06-10 21:50:54 +03:00
|
|
|
}
|
|
|
|
table.Append(data)
|
2019-06-10 01:09:38 +03:00
|
|
|
|
2019-06-10 21:50:54 +03:00
|
|
|
// render table into sb
|
|
|
|
table.Render()
|
2019-06-10 01:09:38 +03:00
|
|
|
|
|
|
|
return sb.String()
|
2019-06-06 18:37:40 +03:00
|
|
|
}
|