mirror of
https://github.com/osrg/gobgp.git
synced 2024-05-11 05:55:10 +00:00
401 lines
12 KiB
Go
401 lines
12 KiB
Go
// Copyright (C) 2015-2021 Nippon Telegraph and Telephone Corporation.
|
|
//
|
|
// 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 server
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"strconv"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
api "github.com/osrg/gobgp/v3/api"
|
|
"github.com/osrg/gobgp/v3/internal/pkg/table"
|
|
"github.com/osrg/gobgp/v3/pkg/config/oc"
|
|
"github.com/osrg/gobgp/v3/pkg/log"
|
|
"github.com/osrg/gobgp/v3/pkg/packet/bgp"
|
|
"github.com/osrg/gobgp/v3/pkg/packet/bmp"
|
|
)
|
|
|
|
type ribout map[string][]*table.Path
|
|
|
|
func newribout() ribout {
|
|
return make(map[string][]*table.Path)
|
|
}
|
|
|
|
// return true if we need to send the path to the BMP server
|
|
func (r ribout) update(p *table.Path) bool {
|
|
key := p.GetNlri().String() // TODO expose (*Path).getPrefix()
|
|
l := r[key]
|
|
if p.IsWithdraw {
|
|
if len(l) == 0 {
|
|
return false
|
|
}
|
|
n := make([]*table.Path, 0, len(l))
|
|
for _, q := range l {
|
|
if p.GetSource() == q.GetSource() {
|
|
continue
|
|
}
|
|
n = append(n, q)
|
|
}
|
|
if len(n) == 0 {
|
|
delete(r, key)
|
|
} else {
|
|
r[key] = n
|
|
}
|
|
return true
|
|
}
|
|
|
|
if len(l) == 0 {
|
|
r[key] = []*table.Path{p}
|
|
return true
|
|
}
|
|
|
|
doAppend := true
|
|
for idx, q := range l {
|
|
if p.GetSource() == q.GetSource() {
|
|
// if we have sent the same path, don't send it again
|
|
if p.Equal(q) {
|
|
return false
|
|
}
|
|
l[idx] = p
|
|
doAppend = false
|
|
}
|
|
}
|
|
if doAppend {
|
|
r[key] = append(r[key], p)
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (b *bmpClient) tryConnect() *net.TCPConn {
|
|
interval := 1
|
|
for {
|
|
b.s.logger.Debug("Connecting to BMP server",
|
|
log.Fields{
|
|
"Topic": "bmp",
|
|
"Key": b.host})
|
|
conn, err := net.Dial("tcp", b.host)
|
|
if err != nil {
|
|
select {
|
|
case <-b.dead:
|
|
return nil
|
|
default:
|
|
}
|
|
time.Sleep(time.Duration(interval) * time.Second)
|
|
if interval < 30 {
|
|
interval *= 2
|
|
}
|
|
} else {
|
|
b.s.logger.Debug("Connected to BMP server",
|
|
log.Fields{
|
|
"Topic": "bmp",
|
|
"Key": b.host})
|
|
return conn.(*net.TCPConn)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (b *bmpClient) Stop() {
|
|
close(b.dead)
|
|
}
|
|
|
|
func (b *bmpClient) loop() {
|
|
for {
|
|
conn := b.tryConnect()
|
|
if conn == nil {
|
|
break
|
|
}
|
|
atomic.StoreInt64(&b.uptime, time.Now().Unix())
|
|
|
|
if func() bool {
|
|
defer func() {
|
|
atomic.StoreInt64(&b.downtime, time.Now().Unix())
|
|
}()
|
|
ops := []watchOption{watchPeer()}
|
|
if b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_BOTH {
|
|
b.s.logger.Warn("both option for route-monitoring-policy is obsoleted", log.Fields{"Topic": "bmp"})
|
|
}
|
|
if b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_PRE_POLICY || b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_ALL {
|
|
ops = append(ops, watchUpdate(true, "", ""))
|
|
}
|
|
if b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_POST_POLICY || b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_ALL {
|
|
ops = append(ops, watchPostUpdate(true, "", ""))
|
|
}
|
|
if b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_LOCAL_RIB || b.c.RouteMonitoringPolicy == oc.BMP_ROUTE_MONITORING_POLICY_TYPE_ALL {
|
|
ops = append(ops, watchBestPath(true))
|
|
}
|
|
if b.c.RouteMirroringEnabled {
|
|
ops = append(ops, watchMessage(false))
|
|
}
|
|
w := b.s.watch(ops...)
|
|
defer w.Stop()
|
|
|
|
var tickerCh <-chan time.Time
|
|
if b.c.StatisticsTimeout == 0 {
|
|
b.s.logger.Debug("statistics reports disabled", log.Fields{"Topic": "bmp"})
|
|
} else {
|
|
t := time.NewTicker(time.Duration(b.c.StatisticsTimeout) * time.Second)
|
|
defer t.Stop()
|
|
tickerCh = t.C
|
|
}
|
|
|
|
write := func(msg *bmp.BMPMessage) error {
|
|
buf, _ := msg.Serialize()
|
|
_, err := conn.Write(buf)
|
|
if err != nil {
|
|
b.s.logger.Warn("failed to write to bmp server",
|
|
log.Fields{
|
|
"Topic": "bmp",
|
|
"Key": b.host})
|
|
}
|
|
return err
|
|
}
|
|
|
|
tlv := []bmp.BMPInfoTLVInterface{
|
|
bmp.NewBMPInfoTLVString(bmp.BMP_INIT_TLV_TYPE_SYS_NAME, b.c.SysName),
|
|
bmp.NewBMPInfoTLVString(bmp.BMP_INIT_TLV_TYPE_SYS_DESCR, b.c.SysDescr),
|
|
}
|
|
|
|
if err := write(bmp.NewBMPInitiation(tlv)); err != nil {
|
|
return false
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case ev := <-w.Event():
|
|
switch msg := ev.(type) {
|
|
case *watchEventUpdate:
|
|
info := &table.PeerInfo{
|
|
Address: msg.PeerAddress,
|
|
AS: msg.PeerAS,
|
|
ID: msg.PeerID,
|
|
}
|
|
if msg.Payload == nil {
|
|
var pathList []*table.Path
|
|
if msg.Init {
|
|
pathList = msg.PathList
|
|
} else {
|
|
for _, p := range msg.PathList {
|
|
if b.ribout.update(p) {
|
|
pathList = append(pathList, p)
|
|
}
|
|
}
|
|
}
|
|
for _, path := range pathList {
|
|
for _, u := range table.CreateUpdateMsgFromPaths([]*table.Path{path}) {
|
|
payload, _ := u.Serialize()
|
|
if err := write(bmpPeerRoute(bmp.BMP_PEER_TYPE_GLOBAL, msg.PostPolicy, 0, true, info, path.GetTimestamp().Unix(), payload)); err != nil {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
} else if err := write(bmpPeerRoute(bmp.BMP_PEER_TYPE_GLOBAL, msg.PostPolicy, 0, msg.FourBytesAs, info, msg.Timestamp.Unix(), msg.Payload)); err != nil {
|
|
return false
|
|
}
|
|
case *watchEventBestPath:
|
|
info := &table.PeerInfo{
|
|
Address: net.ParseIP("0.0.0.0").To4(),
|
|
AS: b.s.bgpConfig.Global.Config.As,
|
|
ID: net.ParseIP(b.s.bgpConfig.Global.Config.RouterId).To4(),
|
|
}
|
|
for _, p := range msg.PathList {
|
|
u := table.CreateUpdateMsgFromPaths([]*table.Path{p})[0]
|
|
if payload, err := u.Serialize(); err != nil {
|
|
return false
|
|
} else if err = write(bmpPeerRoute(bmp.BMP_PEER_TYPE_LOCAL_RIB, false, 0, true, info, p.GetTimestamp().Unix(), payload)); err != nil {
|
|
return false
|
|
}
|
|
}
|
|
case *watchEventPeer:
|
|
if msg.Type != PEER_EVENT_END_OF_INIT {
|
|
if msg.State == bgp.BGP_FSM_ESTABLISHED {
|
|
if err := write(bmpPeerUp(msg, bmp.BMP_PEER_TYPE_GLOBAL, false, 0)); err != nil {
|
|
return false
|
|
}
|
|
} else if msg.Type != PEER_EVENT_INIT && msg.OldState == bgp.BGP_FSM_ESTABLISHED {
|
|
if err := write(bmpPeerDown(msg, bmp.BMP_PEER_TYPE_GLOBAL, false, 0)); err != nil {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
case *watchEventMessage:
|
|
info := &table.PeerInfo{
|
|
Address: msg.PeerAddress,
|
|
AS: msg.PeerAS,
|
|
ID: msg.PeerID,
|
|
}
|
|
if err := write(bmpPeerRouteMirroring(bmp.BMP_PEER_TYPE_GLOBAL, 0, info, msg.Timestamp.Unix(), msg.Message)); err != nil {
|
|
return false
|
|
}
|
|
}
|
|
case <-tickerCh:
|
|
var err error
|
|
b.s.ListPeer(context.Background(), &api.ListPeerRequest{EnableAdvertised: true},
|
|
func(peer *api.Peer) {
|
|
if err == nil && peer.State.SessionState == api.PeerState_ESTABLISHED {
|
|
err = write(bmpPeerStats(bmp.BMP_PEER_TYPE_GLOBAL, 0, time.Now().Unix(), peer))
|
|
}
|
|
})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
case <-b.dead:
|
|
term := bmp.NewBMPTermination([]bmp.BMPTermTLVInterface{
|
|
bmp.NewBMPTermTLV16(bmp.BMP_TERM_TLV_TYPE_REASON, bmp.BMP_TERM_REASON_PERMANENTLY_ADMIN),
|
|
})
|
|
if err := write(term); err != nil {
|
|
return false
|
|
}
|
|
conn.Close()
|
|
return true
|
|
}
|
|
}
|
|
}() {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
type bmpClient struct {
|
|
s *BgpServer
|
|
dead chan struct{}
|
|
host string
|
|
c *oc.BmpServerConfig
|
|
ribout ribout
|
|
uptime int64
|
|
downtime int64
|
|
}
|
|
|
|
func bmpPeerUp(ev *watchEventPeer, t uint8, policy bool, pd uint64) *bmp.BMPMessage {
|
|
var flags uint8 = 0
|
|
if policy {
|
|
flags |= bmp.BMP_PEER_FLAG_POST_POLICY
|
|
}
|
|
ph := bmp.NewBMPPeerHeader(t, flags, pd, ev.PeerAddress.String(), ev.PeerAS, ev.PeerID.String(), float64(ev.Timestamp.Unix()))
|
|
return bmp.NewBMPPeerUpNotification(*ph, ev.LocalAddress.String(), ev.LocalPort, ev.PeerPort, ev.SentOpen, ev.RecvOpen)
|
|
}
|
|
|
|
func bmpPeerDown(ev *watchEventPeer, t uint8, policy bool, pd uint64) *bmp.BMPMessage {
|
|
var flags uint8 = 0
|
|
if policy {
|
|
flags |= bmp.BMP_PEER_FLAG_POST_POLICY
|
|
}
|
|
ph := bmp.NewBMPPeerHeader(t, flags, pd, ev.PeerAddress.String(), ev.PeerAS, ev.PeerID.String(), float64(ev.Timestamp.Unix()))
|
|
|
|
reasonCode := bmp.BMP_peerDownByUnknownReason
|
|
switch ev.StateReason.Type {
|
|
case fsmDying, fsmInvalidMsg, fsmNotificationSent, fsmHoldTimerExpired, fsmIdleTimerExpired, fsmRestartTimerExpired:
|
|
reasonCode = bmp.BMP_PEER_DOWN_REASON_LOCAL_BGP_NOTIFICATION
|
|
case fsmAdminDown:
|
|
reasonCode = bmp.BMP_PEER_DOWN_REASON_LOCAL_NO_NOTIFICATION
|
|
case fsmNotificationRecv, fsmGracefulRestart, fsmHardReset:
|
|
reasonCode = bmp.BMP_PEER_DOWN_REASON_REMOTE_BGP_NOTIFICATION
|
|
case fsmReadFailed, fsmWriteFailed:
|
|
reasonCode = bmp.BMP_PEER_DOWN_REASON_REMOTE_NO_NOTIFICATION
|
|
case fsmDeConfigured:
|
|
reasonCode = bmp.BMP_PEER_DOWN_REASON_PEER_DE_CONFIGURED
|
|
}
|
|
return bmp.NewBMPPeerDownNotification(*ph, uint8(reasonCode), ev.StateReason.BGPNotification, ev.StateReason.Data)
|
|
}
|
|
|
|
func bmpPeerRoute(t uint8, policy bool, pd uint64, fourBytesAs bool, peeri *table.PeerInfo, timestamp int64, payload []byte) *bmp.BMPMessage {
|
|
var flags uint8 = 0
|
|
if policy {
|
|
flags |= bmp.BMP_PEER_FLAG_POST_POLICY
|
|
}
|
|
if !fourBytesAs {
|
|
flags |= bmp.BMP_PEER_FLAG_TWO_AS
|
|
}
|
|
ph := bmp.NewBMPPeerHeader(t, flags, pd, peeri.Address.String(), peeri.AS, peeri.ID.String(), float64(timestamp))
|
|
m := bmp.NewBMPRouteMonitoring(*ph, nil)
|
|
body := m.Body.(*bmp.BMPRouteMonitoring)
|
|
body.BGPUpdatePayload = payload
|
|
return m
|
|
}
|
|
|
|
func bmpPeerStats(peerType uint8, peerDist uint64, timestamp int64, peer *api.Peer) *bmp.BMPMessage {
|
|
var peerFlags uint8 = 0
|
|
ph := bmp.NewBMPPeerHeader(peerType, peerFlags, peerDist, peer.State.NeighborAddress, peer.State.PeerAsn, peer.State.RouterId, float64(timestamp))
|
|
received := uint64(0)
|
|
accepted := uint64(0)
|
|
for _, a := range peer.AfiSafis {
|
|
received += a.State.Received
|
|
accepted += a.State.Accepted
|
|
}
|
|
return bmp.NewBMPStatisticsReport(
|
|
*ph,
|
|
[]bmp.BMPStatsTLVInterface{
|
|
bmp.NewBMPStatsTLV64(bmp.BMP_STAT_TYPE_ADJ_RIB_IN, received),
|
|
bmp.NewBMPStatsTLV64(bmp.BMP_STAT_TYPE_LOC_RIB, accepted),
|
|
bmp.NewBMPStatsTLV32(bmp.BMP_STAT_TYPE_WITHDRAW_UPDATE, uint32(peer.State.Messages.Received.WithdrawUpdate)),
|
|
bmp.NewBMPStatsTLV32(bmp.BMP_STAT_TYPE_WITHDRAW_PREFIX, uint32(peer.State.Messages.Received.WithdrawPrefix)),
|
|
},
|
|
)
|
|
}
|
|
|
|
func bmpPeerRouteMirroring(peerType uint8, peerDist uint64, peerInfo *table.PeerInfo, timestamp int64, msg *bgp.BGPMessage) *bmp.BMPMessage {
|
|
var peerFlags uint8 = 0
|
|
ph := bmp.NewBMPPeerHeader(peerType, peerFlags, peerDist, peerInfo.Address.String(), peerInfo.AS, peerInfo.ID.String(), float64(timestamp))
|
|
return bmp.NewBMPRouteMirroring(
|
|
*ph,
|
|
[]bmp.BMPRouteMirrTLVInterface{
|
|
// RFC7854: BGP Message TLV MUST occur last in the list of TLVs
|
|
bmp.NewBMPRouteMirrTLVBGPMsg(bmp.BMP_ROUTE_MIRRORING_TLV_TYPE_BGP_MSG, msg),
|
|
},
|
|
)
|
|
}
|
|
|
|
func (b *bmpClientManager) addServer(c *oc.BmpServerConfig) error {
|
|
host := net.JoinHostPort(c.Address, strconv.Itoa(int(c.Port)))
|
|
if _, y := b.clientMap[host]; y {
|
|
return fmt.Errorf("bmp client %s is already configured", host)
|
|
}
|
|
b.clientMap[host] = &bmpClient{
|
|
s: b.s,
|
|
dead: make(chan struct{}),
|
|
host: host,
|
|
c: c,
|
|
ribout: newribout(),
|
|
}
|
|
go b.clientMap[host].loop()
|
|
return nil
|
|
}
|
|
|
|
func (b *bmpClientManager) deleteServer(c *oc.BmpServerConfig) error {
|
|
host := net.JoinHostPort(c.Address, strconv.Itoa(int(c.Port)))
|
|
if c, y := b.clientMap[host]; !y {
|
|
return fmt.Errorf("bmp client %s isn't found", host)
|
|
} else {
|
|
c.Stop()
|
|
delete(b.clientMap, host)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type bmpClientManager struct {
|
|
s *BgpServer
|
|
clientMap map[string]*bmpClient
|
|
}
|
|
|
|
func newBmpClientManager(s *BgpServer) *bmpClientManager {
|
|
return &bmpClientManager{
|
|
s: s,
|
|
clientMap: make(map[string]*bmpClient),
|
|
}
|
|
}
|