summaryrefslogtreecommitdiffhomepage
path: root/table/table.go
diff options
context:
space:
mode:
authorWataru Ishida <ishida.wataru@lab.ntt.co.jp>2016-09-03 03:49:50 +0000
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-09-13 00:49:17 -0700
commit1156fc33fadf6b147f1f04982b2319bdd3d3ce01 (patch)
treed075123431a55d569966161b329c4b9a340283d6 /table/table.go
parent8c11fdfd0ff67fcab0c60b4c1ba23280fa1589f2 (diff)
cli/table: support filtering of IPv4/IPv6 MPLS routes
close #1086 Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/table.go')
-rw-r--r--table/table.go87
1 files changed, 47 insertions, 40 deletions
diff --git a/table/table.go b/table/table.go
index 143c4c53..59994245 100644
--- a/table/table.go
+++ b/table/table.go
@@ -262,7 +262,7 @@ func (t *Table) GetDestination(key string) *Destination {
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:
+ 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, err
@@ -332,54 +332,61 @@ func (t *Table) Select(option ...TableSelectOption) (*Table, error) {
}
dOption := DestinationSelectOption{ID: id, VRF: vrf, adj: adj, Best: best, MultiPath: mp}
dsts := make(map[string]*Destination)
- if (t.routeFamily == bgp.RF_IPv4_UC || t.routeFamily == bgp.RF_IPv6_UC) && len(prefixes) > 0 {
- f := func(id, key string) (bool, error) {
- if dst := t.GetDestination(key); dst != nil {
- if d := dst.Select(dOption); d != nil {
- dsts[key] = 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 len(prefixes) != 0 {
+ switch t.routeFamily {
+ case bgp.RF_IPv4_UC, bgp.RF_IPv6_UC, bgp.RF_IPv4_MPLS, bgp.RF_IPv6_MPLS:
+ f := func(id, key string) (bool, error) {
+ if dst := t.GetDestination(key); dst != nil {
if d := dst.Select(dOption); d != nil {
- dsts[dst.GetNlri().String()] = d
+ dsts[key] = d
+ return true, nil
}
}
- case LOOKUP_SHORTER:
- _, prefix, err := net.ParseCIDR(key)
- if err != nil {
- return nil, err
- }
- ones, bits := prefix.Mask.Size()
- for i := ones; i > 0; i-- {
- prefix.Mask = net.CIDRMask(i, bits)
- f(id, prefix.String())
- }
- default:
- if _, err := f(id, key); err != nil {
- if host := net.ParseIP(key); host != nil {
- masklen := 32
- if t.routeFamily == bgp.RF_IPv6_UC {
- masklen = 128
+ 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 {
+ dsts[dst.GetNlri().String()] = d
}
- for i := masklen; i > 0; i-- {
- if y, _ := f(id, fmt.Sprintf("%s/%d", key, i)); y {
- break
+ }
+ case LOOKUP_SHORTER:
+ _, prefix, err := net.ParseCIDR(key)
+ if err != nil {
+ return nil, err
+ }
+ ones, bits := prefix.Mask.Size()
+ for i := ones; i > 0; i-- {
+ prefix.Mask = net.CIDRMask(i, bits)
+ f(id, prefix.String())
+ }
+ default:
+ if _, err := f(id, key); err != nil {
+ if host := net.ParseIP(key); host != nil {
+ masklen := 32
+ if afi, _ := RouteFamilyToAfiSafi(t.routeFamily); afi == AFI_IP6 {
+ masklen = 128
+ }
+ for i := masklen; i > 0; i-- {
+ if y, _ := f(id, fmt.Sprintf("%s/%d", key, i)); y {
+ break
+ }
}
}
}
}
}
+ default:
+ return nil, fmt.Errorf("route filtering is only supported for IPv4/IPv6 unicast/mpls routes")
}
} else {
for k, dst := range t.GetDestinations() {