mirror of
https://github.com/osrg/gobgp.git
synced 2024-05-11 05:55:10 +00:00
794 lines
19 KiB
Go
794 lines
19 KiB
Go
// Copyright (C) 2014 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 table
|
|
|
|
import (
|
|
"fmt"
|
|
"math/bits"
|
|
"net"
|
|
"strconv"
|
|
"strings"
|
|
"unsafe"
|
|
|
|
"github.com/k-sone/critbitgo"
|
|
|
|
"github.com/osrg/gobgp/v3/pkg/log"
|
|
"github.com/osrg/gobgp/v3/pkg/packet/bgp"
|
|
)
|
|
|
|
type LookupOption uint8
|
|
|
|
const (
|
|
LOOKUP_EXACT LookupOption = iota
|
|
LOOKUP_LONGER
|
|
LOOKUP_SHORTER
|
|
)
|
|
|
|
type LookupPrefix struct {
|
|
Prefix string
|
|
RD string
|
|
LookupOption
|
|
}
|
|
|
|
type TableSelectOption struct {
|
|
ID string
|
|
AS uint32
|
|
LookupPrefixes []*LookupPrefix
|
|
VRF *Vrf
|
|
adj bool
|
|
Best bool
|
|
MultiPath bool
|
|
}
|
|
|
|
type Table struct {
|
|
routeFamily bgp.RouteFamily
|
|
destinations map[string]*Destination
|
|
logger log.Logger
|
|
// index of route distinguishers with paths to a specific MAC
|
|
// this is a map[MAC address]map[RD]struct{}
|
|
// this holds a map for a set of RD.
|
|
macIndex map[string]map[string]struct{}
|
|
}
|
|
|
|
func NewTable(logger log.Logger, rf bgp.RouteFamily, dsts ...*Destination) *Table {
|
|
t := &Table{
|
|
routeFamily: rf,
|
|
destinations: make(map[string]*Destination),
|
|
logger: logger,
|
|
macIndex: make(map[string]map[string]struct{}),
|
|
}
|
|
for _, dst := range dsts {
|
|
t.setDestination(dst)
|
|
}
|
|
return t
|
|
}
|
|
|
|
func (t *Table) GetRoutefamily() bgp.RouteFamily {
|
|
return t.routeFamily
|
|
}
|
|
|
|
func (t *Table) deletePathsByVrf(vrf *Vrf) []*Path {
|
|
pathList := make([]*Path, 0)
|
|
for _, dest := range t.destinations {
|
|
for _, p := range dest.knownPathList {
|
|
var rd bgp.RouteDistinguisherInterface
|
|
nlri := p.GetNlri()
|
|
switch v := nlri.(type) {
|
|
case *bgp.LabeledVPNIPAddrPrefix:
|
|
rd = v.RD
|
|
case *bgp.LabeledVPNIPv6AddrPrefix:
|
|
rd = v.RD
|
|
case *bgp.EVPNNLRI:
|
|
rd = v.RD()
|
|
case *bgp.MUPNLRI:
|
|
rd = v.RD()
|
|
default:
|
|
return pathList
|
|
}
|
|
if p.IsLocal() && vrf.Rd.String() == rd.String() {
|
|
pathList = append(pathList, p.Clone(true))
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return pathList
|
|
}
|
|
|
|
func (t *Table) deleteRTCPathsByVrf(vrf *Vrf, vrfs map[string]*Vrf) []*Path {
|
|
pathList := make([]*Path, 0)
|
|
if t.routeFamily != bgp.RF_RTC_UC {
|
|
return pathList
|
|
}
|
|
for _, target := range vrf.ImportRt {
|
|
lhs := target.String()
|
|
for _, dest := range t.destinations {
|
|
nlri := dest.GetNlri().(*bgp.RouteTargetMembershipNLRI)
|
|
rhs := nlri.RouteTarget.String()
|
|
if lhs == rhs && isLastTargetUser(vrfs, target) {
|
|
for _, p := range dest.knownPathList {
|
|
if p.IsLocal() {
|
|
pathList = append(pathList, p.Clone(true))
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return pathList
|
|
}
|
|
|
|
func (t *Table) deleteDest(dest *Destination) {
|
|
count := 0
|
|
for _, v := range dest.localIdMap.bitmap {
|
|
count += bits.OnesCount64(v)
|
|
}
|
|
if len(dest.localIdMap.bitmap) != 0 && count != 1 {
|
|
return
|
|
}
|
|
destinations := t.GetDestinations()
|
|
delete(destinations, t.tableKey(dest.GetNlri()))
|
|
if len(destinations) == 0 {
|
|
t.destinations = make(map[string]*Destination)
|
|
}
|
|
|
|
if nlri, ok := dest.nlri.(*bgp.EVPNNLRI); ok {
|
|
if macadv, ok := nlri.RouteTypeData.(*bgp.EVPNMacIPAdvertisementRoute); ok {
|
|
mac := *(*string)(unsafe.Pointer(&macadv.MacAddress))
|
|
serializedRD, _ := macadv.RD.Serialize()
|
|
rd := *(*string)(unsafe.Pointer(&serializedRD))
|
|
if rds, ok := t.macIndex[mac]; ok {
|
|
delete(rds, rd)
|
|
if len(rds) == 0 {
|
|
delete(t.macIndex, mac)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (t *Table) validatePath(path *Path) {
|
|
if path == nil {
|
|
t.logger.Error("path is nil",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Key": t.routeFamily})
|
|
}
|
|
if path.GetRouteFamily() != t.routeFamily {
|
|
t.logger.Error("Invalid path. RouteFamily mismatch",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Key": t.routeFamily,
|
|
"Prefix": path.GetPrefix(),
|
|
"ReceivedRf": path.GetRouteFamily().String()})
|
|
}
|
|
if attr := path.getPathAttr(bgp.BGP_ATTR_TYPE_AS_PATH); attr != nil {
|
|
pathParam := attr.(*bgp.PathAttributeAsPath).Value
|
|
for _, as := range pathParam {
|
|
_, y := as.(*bgp.As4PathParam)
|
|
if !y {
|
|
t.logger.Fatal("AsPathParam must be converted to As4PathParam",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Key": t.routeFamily,
|
|
"As": as})
|
|
}
|
|
}
|
|
}
|
|
if attr := path.getPathAttr(bgp.BGP_ATTR_TYPE_AS4_PATH); attr != nil {
|
|
t.logger.Fatal("AS4_PATH must be converted to AS_PATH",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Key": t.routeFamily})
|
|
}
|
|
if path.GetNlri() == nil {
|
|
t.logger.Fatal("path's nlri is nil",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Key": t.routeFamily})
|
|
}
|
|
}
|
|
|
|
func (t *Table) getOrCreateDest(nlri bgp.AddrPrefixInterface, size int) *Destination {
|
|
dest := t.GetDestination(nlri)
|
|
// If destination for given prefix does not exist we create it.
|
|
if dest == nil {
|
|
t.logger.Debug("create Destination",
|
|
log.Fields{
|
|
"Topic": "Table",
|
|
"Nlri": nlri})
|
|
dest = NewDestination(nlri, size)
|
|
t.setDestination(dest)
|
|
}
|
|
return dest
|
|
}
|
|
|
|
func (t *Table) GetDestinations() map[string]*Destination {
|
|
return t.destinations
|
|
}
|
|
func (t *Table) setDestinations(destinations map[string]*Destination) {
|
|
t.destinations = destinations
|
|
}
|
|
func (t *Table) GetDestination(nlri bgp.AddrPrefixInterface) *Destination {
|
|
dest, ok := t.destinations[t.tableKey(nlri)]
|
|
if ok {
|
|
return dest
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (t *Table) GetLongerPrefixDestinations(key string) ([]*Destination, error) {
|
|
results := make([]*Destination, 0, len(t.GetDestinations()))
|
|
switch t.routeFamily {
|
|
case bgp.RF_IPv4_UC, bgp.RF_IPv6_UC, bgp.RF_IPv4_MPLS, bgp.RF_IPv6_MPLS:
|
|
_, prefix, err := net.ParseCIDR(key)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing cidr %s: %v", key, err)
|
|
}
|
|
ones, bits := prefix.Mask.Size()
|
|
|
|
r := critbitgo.NewNet()
|
|
for _, dst := range t.GetDestinations() {
|
|
r.Add(nlriToIPNet(dst.nlri), dst)
|
|
}
|
|
p := &net.IPNet{
|
|
IP: prefix.IP,
|
|
Mask: net.CIDRMask((ones>>3)<<3, bits),
|
|
}
|
|
mask := 0
|
|
div := 0
|
|
if ones%8 != 0 {
|
|
mask = 8 - ones&0x7
|
|
div = ones >> 3
|
|
}
|
|
r.WalkPrefix(p, func(n *net.IPNet, v interface{}) bool {
|
|
if mask != 0 && n.IP[div]>>mask != p.IP[div]>>mask {
|
|
return true
|
|
}
|
|
l, _ := n.Mask.Size()
|
|
|
|
if ones > l {
|
|
return true
|
|
}
|
|
results = append(results, v.(*Destination))
|
|
return true
|
|
})
|
|
case bgp.RF_IPv4_VPN, bgp.RF_IPv6_VPN:
|
|
prefixRd, _, network, err := bgp.ParseVPNPrefix(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ones, bits := network.Mask.Size()
|
|
|
|
r := critbitgo.NewNet()
|
|
for _, dst := range t.GetDestinations() {
|
|
var dstRD bgp.RouteDistinguisherInterface
|
|
switch t.routeFamily {
|
|
case bgp.RF_IPv4_VPN:
|
|
dstRD = dst.nlri.(*bgp.LabeledVPNIPAddrPrefix).RD
|
|
case bgp.RF_IPv6_VPN:
|
|
dstRD = dst.nlri.(*bgp.LabeledVPNIPv6AddrPrefix).RD
|
|
}
|
|
|
|
if prefixRd.String() != dstRD.String() {
|
|
continue
|
|
}
|
|
|
|
r.Add(nlriToIPNet(dst.nlri), dst)
|
|
}
|
|
|
|
p := &net.IPNet{
|
|
IP: network.IP,
|
|
Mask: net.CIDRMask((ones>>3)<<3, bits),
|
|
}
|
|
|
|
mask := 0
|
|
div := 0
|
|
if ones%8 != 0 {
|
|
mask = 8 - ones&0x7
|
|
div = ones >> 3
|
|
}
|
|
|
|
r.WalkPrefix(p, func(n *net.IPNet, v interface{}) bool {
|
|
if mask != 0 && n.IP[div]>>mask != p.IP[div]>>mask {
|
|
return true
|
|
}
|
|
l, _ := n.Mask.Size()
|
|
|
|
if ones > l {
|
|
return true
|
|
}
|
|
results = append(results, v.(*Destination))
|
|
return true
|
|
})
|
|
default:
|
|
for _, dst := range t.GetDestinations() {
|
|
results = append(results, dst)
|
|
}
|
|
}
|
|
return results, nil
|
|
}
|
|
|
|
func (t *Table) GetEvpnDestinationsWithRouteType(typ string) ([]*Destination, error) {
|
|
var routeType uint8
|
|
switch strings.ToLower(typ) {
|
|
case "a-d":
|
|
routeType = bgp.EVPN_ROUTE_TYPE_ETHERNET_AUTO_DISCOVERY
|
|
case "macadv":
|
|
routeType = bgp.EVPN_ROUTE_TYPE_MAC_IP_ADVERTISEMENT
|
|
case "multicast":
|
|
routeType = bgp.EVPN_INCLUSIVE_MULTICAST_ETHERNET_TAG
|
|
case "esi":
|
|
routeType = bgp.EVPN_ETHERNET_SEGMENT_ROUTE
|
|
case "prefix":
|
|
routeType = bgp.EVPN_IP_PREFIX
|
|
default:
|
|
return nil, fmt.Errorf("unsupported evpn route type: %s", typ)
|
|
}
|
|
destinations := t.GetDestinations()
|
|
results := make([]*Destination, 0, len(destinations))
|
|
switch t.routeFamily {
|
|
case bgp.RF_EVPN:
|
|
for _, dst := range destinations {
|
|
if nlri, ok := dst.nlri.(*bgp.EVPNNLRI); !ok {
|
|
return nil, fmt.Errorf("invalid evpn nlri type detected: %T", dst.nlri)
|
|
} else if nlri.RouteType == routeType {
|
|
results = append(results, dst)
|
|
}
|
|
}
|
|
default:
|
|
for _, dst := range destinations {
|
|
results = append(results, dst)
|
|
}
|
|
}
|
|
return results, nil
|
|
}
|
|
|
|
func (t *Table) GetMUPDestinationsWithRouteType(p string) ([]*Destination, error) {
|
|
var routeType uint16
|
|
switch strings.ToLower(p) {
|
|
case "isd":
|
|
routeType = bgp.MUP_ROUTE_TYPE_INTERWORK_SEGMENT_DISCOVERY
|
|
case "dsd":
|
|
routeType = bgp.MUP_ROUTE_TYPE_DIRECT_SEGMENT_DISCOVERY
|
|
case "t1st":
|
|
routeType = bgp.MUP_ROUTE_TYPE_TYPE_1_SESSION_TRANSFORMED
|
|
case "t2st":
|
|
routeType = bgp.MUP_ROUTE_TYPE_TYPE_2_SESSION_TRANSFORMED
|
|
default:
|
|
// use prefix as route key
|
|
}
|
|
destinations := t.GetDestinations()
|
|
results := make([]*Destination, 0, len(destinations))
|
|
switch t.routeFamily {
|
|
case bgp.RF_MUP_IPv4, bgp.RF_MUP_IPv6:
|
|
for _, dst := range destinations {
|
|
if nlri, ok := dst.nlri.(*bgp.MUPNLRI); !ok {
|
|
return nil, fmt.Errorf("invalid mup nlri type detected: %T", dst.nlri)
|
|
} else if nlri.RouteType == routeType {
|
|
results = append(results, dst)
|
|
} else if nlri.String() == p {
|
|
results = append(results, dst)
|
|
}
|
|
}
|
|
default:
|
|
for _, dst := range destinations {
|
|
results = append(results, dst)
|
|
}
|
|
}
|
|
return results, nil
|
|
}
|
|
|
|
func (t *Table) setDestination(dst *Destination) {
|
|
t.destinations[t.tableKey(dst.nlri)] = dst
|
|
|
|
if nlri, ok := dst.nlri.(*bgp.EVPNNLRI); ok {
|
|
if macadv, ok := nlri.RouteTypeData.(*bgp.EVPNMacIPAdvertisementRoute); ok {
|
|
mac := *(*string)(unsafe.Pointer(&macadv.MacAddress))
|
|
serializedRD, _ := macadv.RD.Serialize()
|
|
rd := *(*string)(unsafe.Pointer(&serializedRD))
|
|
if rds, ok := t.macIndex[mac]; ok {
|
|
rds[rd] = struct{}{}
|
|
} else {
|
|
t.macIndex[mac] = map[string]struct{}{rd: {}}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (t *Table) tableKey(nlri bgp.AddrPrefixInterface) string {
|
|
switch T := nlri.(type) {
|
|
case *bgp.IPAddrPrefix:
|
|
b := make([]byte, 5)
|
|
copy(b, T.Prefix.To4())
|
|
b[4] = T.Length
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
case *bgp.IPv6AddrPrefix:
|
|
b := make([]byte, 17)
|
|
copy(b, T.Prefix.To16())
|
|
b[16] = T.Length
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
case *bgp.LabeledVPNIPAddrPrefix:
|
|
b := make([]byte, 13)
|
|
serializedRD, _ := T.RD.Serialize()
|
|
copy(b, serializedRD)
|
|
copy(b[8:12], T.Prefix.To4())
|
|
b[12] = T.Length
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
case *bgp.LabeledVPNIPv6AddrPrefix:
|
|
b := make([]byte, 25)
|
|
serializedRD, _ := T.RD.Serialize()
|
|
copy(b, serializedRD)
|
|
copy(b[8:24], T.Prefix.To16())
|
|
b[24] = T.Length
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
// we need fast lookup to routes for a specific mac address for evpn mac mobility
|
|
case *bgp.EVPNNLRI:
|
|
switch U := T.RouteTypeData.(type) {
|
|
case *bgp.EVPNMacIPAdvertisementRoute:
|
|
b := make([]byte, 15)
|
|
serializedRD, _ := U.RD.Serialize()
|
|
copy(b, serializedRD)
|
|
b[8] = bgp.EVPN_ROUTE_TYPE_MAC_IP_ADVERTISEMENT
|
|
copy(b[9:15], U.MacAddress)
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
}
|
|
}
|
|
return nlri.String()
|
|
}
|
|
|
|
func (t *Table) Bests(id string, as uint32) []*Path {
|
|
paths := make([]*Path, 0, len(t.destinations))
|
|
for _, dst := range t.destinations {
|
|
path := dst.GetBestPath(id, as)
|
|
if path != nil {
|
|
paths = append(paths, path)
|
|
}
|
|
}
|
|
return paths
|
|
}
|
|
|
|
func (t *Table) MultiBests(id string) [][]*Path {
|
|
paths := make([][]*Path, 0, len(t.destinations))
|
|
for _, dst := range t.destinations {
|
|
path := dst.GetMultiBestPath(id)
|
|
if path != nil {
|
|
paths = append(paths, path)
|
|
}
|
|
}
|
|
return paths
|
|
}
|
|
|
|
func (t *Table) GetKnownPathList(id string, as uint32) []*Path {
|
|
paths := make([]*Path, 0, len(t.destinations))
|
|
for _, dst := range t.destinations {
|
|
paths = append(paths, dst.GetKnownPathList(id, as)...)
|
|
}
|
|
return paths
|
|
}
|
|
|
|
func (t *Table) GetKnownPathListWithMac(id string, as uint32, mac net.HardwareAddr, onlyBest bool) []*Path {
|
|
var paths []*Path
|
|
if rds, ok := t.macIndex[*(*string)(unsafe.Pointer(&mac))]; ok {
|
|
for rd := range rds {
|
|
b := make([]byte, 15)
|
|
copy(b, rd)
|
|
b[8] = bgp.EVPN_ROUTE_TYPE_MAC_IP_ADVERTISEMENT
|
|
copy(b[9:15], mac)
|
|
key := *(*string)(unsafe.Pointer(&b))
|
|
if dst, ok := t.destinations[key]; ok {
|
|
if onlyBest {
|
|
paths = append(paths, dst.GetBestPath(id, as))
|
|
} else {
|
|
paths = append(paths, dst.GetKnownPathList(id, as)...)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return paths
|
|
}
|
|
|
|
func (t *Table) Select(option ...TableSelectOption) (*Table, error) {
|
|
id := GLOBAL_RIB_NAME
|
|
var vrf *Vrf
|
|
adj := false
|
|
prefixes := make([]*LookupPrefix, 0, len(option))
|
|
best := false
|
|
mp := false
|
|
as := uint32(0)
|
|
for _, o := range option {
|
|
if o.ID != "" {
|
|
id = o.ID
|
|
}
|
|
if o.VRF != nil {
|
|
vrf = o.VRF
|
|
}
|
|
adj = o.adj
|
|
prefixes = append(prefixes, o.LookupPrefixes...)
|
|
best = o.Best
|
|
mp = o.MultiPath
|
|
as = o.AS
|
|
}
|
|
dOption := DestinationSelectOption{ID: id, AS: as, VRF: vrf, adj: adj, Best: best, MultiPath: mp}
|
|
r := &Table{
|
|
routeFamily: t.routeFamily,
|
|
destinations: make(map[string]*Destination),
|
|
macIndex: make(map[string]map[string]struct{}),
|
|
}
|
|
|
|
if len(prefixes) != 0 {
|
|
switch t.routeFamily {
|
|
case bgp.RF_IPv4_UC, bgp.RF_IPv6_UC:
|
|
f := func(prefixStr string) (bool, error) {
|
|
var nlri bgp.AddrPrefixInterface
|
|
var err error
|
|
if t.routeFamily == bgp.RF_IPv4_UC {
|
|
nlri, err = bgp.NewPrefixFromRouteFamily(bgp.AFI_IP, bgp.SAFI_UNICAST, prefixStr)
|
|
} else {
|
|
nlri, err = bgp.NewPrefixFromRouteFamily(bgp.AFI_IP6, bgp.SAFI_UNICAST, prefixStr)
|
|
}
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if dst := t.GetDestination(nlri); dst != nil {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
for _, p := range prefixes {
|
|
key := p.Prefix
|
|
switch p.LookupOption {
|
|
case LOOKUP_LONGER:
|
|
ds, err := t.GetLongerPrefixDestinations(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, dst := range ds {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
case LOOKUP_SHORTER:
|
|
addr, prefix, err := net.ParseCIDR(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ones, _ := prefix.Mask.Size()
|
|
for i := ones; i >= 0; i-- {
|
|
_, prefix, _ := net.ParseCIDR(fmt.Sprintf("%s/%d", addr.String(), i))
|
|
f(prefix.String())
|
|
}
|
|
default:
|
|
if host := net.ParseIP(key); host != nil {
|
|
masklen := 32
|
|
if t.routeFamily == bgp.RF_IPv6_UC {
|
|
masklen = 128
|
|
}
|
|
for i := masklen; i >= 0; i-- {
|
|
_, prefix, err := net.ParseCIDR(fmt.Sprintf("%s/%d", key, i))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ret, err := f(prefix.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if ret {
|
|
break
|
|
}
|
|
}
|
|
} else {
|
|
f(key)
|
|
}
|
|
}
|
|
}
|
|
case bgp.RF_IPv4_VPN, bgp.RF_IPv6_VPN:
|
|
f := func(prefixStr string) error {
|
|
var nlri bgp.AddrPrefixInterface
|
|
var err error
|
|
|
|
if t.routeFamily == bgp.RF_IPv4_VPN {
|
|
nlri, err = bgp.NewPrefixFromRouteFamily(bgp.AFI_IP, bgp.SAFI_MPLS_VPN, prefixStr)
|
|
} else {
|
|
nlri, err = bgp.NewPrefixFromRouteFamily(bgp.AFI_IP6, bgp.SAFI_MPLS_VPN, prefixStr)
|
|
}
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create prefix: %w", err)
|
|
}
|
|
|
|
if dst := t.GetDestination(nlri); dst != nil {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
for _, p := range prefixes {
|
|
switch p.LookupOption {
|
|
case LOOKUP_LONGER:
|
|
_, prefix, err := net.ParseCIDR(p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if p.RD == "" {
|
|
for _, dst := range t.GetDestinations() {
|
|
tablePrefix := nlriToIPNet(dst.nlri)
|
|
|
|
if bgp.ContainsCIDR(prefix, tablePrefix) {
|
|
r.setDestination(dst)
|
|
}
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
|
|
ds, err := t.GetLongerPrefixDestinations(p.RD + ":" + p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, dst := range ds {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
case LOOKUP_SHORTER:
|
|
addr, prefix, err := net.ParseCIDR(p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if p.RD == "" {
|
|
for _, dst := range t.GetDestinations() {
|
|
tablePrefix := nlriToIPNet(dst.nlri)
|
|
|
|
if bgp.ContainsCIDR(tablePrefix, prefix) {
|
|
r.setDestination(dst)
|
|
}
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
|
|
rd, err := bgp.ParseRouteDistinguisher(p.RD)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ones, _ := prefix.Mask.Size()
|
|
for i := ones; i >= 0; i-- {
|
|
_, prefix, _ := net.ParseCIDR(addr.String() + "/" + strconv.Itoa(i))
|
|
|
|
err := f(rd.String() + ":" + prefix.String())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
default:
|
|
if p.RD == "" {
|
|
for _, dst := range t.GetDestinations() {
|
|
net := nlriToIPNet(dst.nlri)
|
|
if net.String() == p.Prefix {
|
|
r.setDestination(dst)
|
|
}
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
|
|
err := f(p.RD + ":" + p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
case bgp.RF_EVPN:
|
|
for _, p := range prefixes {
|
|
// Uses LookupPrefix.Prefix as EVPN Route Type string
|
|
ds, err := t.GetEvpnDestinationsWithRouteType(p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, dst := range ds {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
}
|
|
case bgp.RF_MUP_IPv4, bgp.RF_MUP_IPv6:
|
|
for _, p := range prefixes {
|
|
ds, err := t.GetMUPDestinationsWithRouteType(p.Prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, dst := range ds {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
}
|
|
default:
|
|
return nil, fmt.Errorf("route filtering is not supported for this family")
|
|
}
|
|
} else {
|
|
for _, dst := range t.GetDestinations() {
|
|
if d := dst.Select(dOption); d != nil {
|
|
r.setDestination(d)
|
|
}
|
|
}
|
|
}
|
|
return r, nil
|
|
}
|
|
|
|
type TableInfo struct {
|
|
NumDestination int
|
|
NumPath int
|
|
NumAccepted int
|
|
}
|
|
|
|
type TableInfoOptions struct {
|
|
ID string
|
|
AS uint32
|
|
VRF *Vrf
|
|
}
|
|
|
|
func (t *Table) Info(option ...TableInfoOptions) *TableInfo {
|
|
var numD, numP int
|
|
|
|
id := GLOBAL_RIB_NAME
|
|
var vrf *Vrf
|
|
as := uint32(0)
|
|
|
|
for _, o := range option {
|
|
if o.ID != "" {
|
|
id = o.ID
|
|
}
|
|
if o.VRF != nil {
|
|
vrf = o.VRF
|
|
}
|
|
as = o.AS
|
|
}
|
|
|
|
for _, d := range t.destinations {
|
|
paths := d.GetKnownPathList(id, as)
|
|
n := len(paths)
|
|
|
|
if vrf != nil {
|
|
ps := make([]*Path, 0, len(paths))
|
|
for _, p := range paths {
|
|
if CanImportToVrf(vrf, p) {
|
|
ps = append(ps, p.ToLocal())
|
|
}
|
|
}
|
|
n = len(ps)
|
|
}
|
|
if n != 0 {
|
|
numD++
|
|
numP += n
|
|
}
|
|
}
|
|
return &TableInfo{
|
|
NumDestination: numD,
|
|
NumPath: numP,
|
|
}
|
|
}
|