summaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-12-01 16:04:20 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-12-02 08:53:04 +0900
commit5ceeb3da2d429a15251b3283313377f9d7cb5f72 (patch)
tree5cc971f4fbaa61c65bf88f342749132e2a0bf7e8 /server
parentff26d4e93bf728b4fb312a2f66b1becbd2675c9f (diff)
cli: speed up showing specific routes from global/local rib
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'server')
-rw-r--r--server/server.go64
1 files changed, 51 insertions, 13 deletions
diff --git a/server/server.go b/server/server.go
index 7b6ffb3b..db92981a 100644
--- a/server/server.go
+++ b/server/server.go
@@ -1418,16 +1418,43 @@ func (server *BgpServer) handleGrpc(grpcReq *GrpcRequest) []*SenderMsg {
}
rib = peer.localRib
}
- rf := bgp.RouteFamily(arg.Family)
- if t, ok := rib.Tables[rf]; ok {
- switch rf {
- case bgp.RF_IPv4_UC, bgp.RF_IPv6_UC:
- d.Destinations = sortedDsts(rib.Tables[rf])
- default:
- d.Destinations = make([]*api.Destination, 0, len(t.GetDestinations()))
- for _, dst := range t.GetDestinations() {
- d.Destinations = append(d.Destinations, dst.ToApiStruct())
+ af := bgp.RouteFamily(arg.Family)
+ if _, ok := rib.Tables[af]; !ok {
+ err = fmt.Errorf("address family: %s not supported", af)
+ goto ERROR
+ }
+
+ switch af {
+ case bgp.RF_IPv4_UC, bgp.RF_IPv6_UC:
+ if len(arg.Destinations) > 0 {
+ dsts := []*api.Destination{}
+ for _, dst := range arg.Destinations {
+ key := dst.Prefix
+ if _, prefix, err := net.ParseCIDR(key); err == nil {
+ if dst := rib.Tables[af].GetDestination(prefix.String()); dst != nil {
+ dsts = append(dsts, dst.ToApiStruct())
+ }
+ } else if host := net.ParseIP(key); host != nil {
+ masklen := 32
+ if af == bgp.RF_IPv6_UC {
+ masklen = 128
+ }
+ for i := masklen; i > 0; i-- {
+ if dst := rib.Tables[af].GetDestination(fmt.Sprintf("%s/%d", key, i)); dst != nil {
+ dsts = append(dsts, dst.ToApiStruct())
+ break
+ }
+ }
+ }
}
+ d.Destinations = dsts
+ } else {
+ d.Destinations = sortedDsts(rib.Tables[af])
+ }
+ default:
+ d.Destinations = make([]*api.Destination, 0, len(rib.Tables[af].GetDestinations()))
+ for _, dst := range rib.Tables[af].GetDestinations() {
+ d.Destinations = append(d.Destinations, dst.ToApiStruct())
}
}
grpcReq.ResponseCh <- &GrpcResponse{
@@ -1494,10 +1521,21 @@ func (server *BgpServer) handleGrpc(grpcReq *GrpcRequest) []*SenderMsg {
r := radix.New()
for _, p := range paths {
key := p.GetNlri().String()
- r.Insert(table.CidrToRadixkey(key), &api.Destination{
- Prefix: key,
- Paths: []*api.Path{p.ToApiStruct()},
- })
+ found := true
+ for _, dst := range arg.Destinations {
+ found = false
+ if dst.Prefix == key {
+ found = true
+ break
+ }
+ }
+
+ if found {
+ r.Insert(table.CidrToRadixkey(key), &api.Destination{
+ Prefix: key,
+ Paths: []*api.Path{p.ToApiStruct()},
+ })
+ }
}
r.Walk(func(s string, v interface{}) bool {
results = append(results, v.(*api.Destination))