]> git.puffer.fish Git - mirror/frr.git/commitdiff
bgpd, zebra: Support NEXTHOP_IPV4_IFINDEX in nexthop_lookup api
authorChristian Franke <chris@opensourcerouting.org>
Sat, 25 May 2013 14:01:35 +0000 (14:01 +0000)
committerDavid Lamparter <equinox@opensourcerouting.org>
Tue, 6 Aug 2013 10:41:46 +0000 (12:41 +0200)
Since commit ba281d3d040, ospfd uses NEXTHOP_IPV4_IFINDEX
routes. The API between zebra and bgpd which is used to query
nexthops for recursive routes did not support this nexthop
type and therefore, ospf changes (or any other IGP changes
which use NEXTHOP_IPV4_IFINDEX) would never trigger any
recursive route update.

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
bgpd/bgp_nexthop.c
zebra/zserv.c

index 17586bc816a1ccb08e9a6b312a5c58be4eb4766b..7d8d866585d48d508f91fdd17a063cf856fd5384 100644 (file)
@@ -122,6 +122,11 @@ bgp_nexthop_same (struct nexthop *next1, struct nexthop *next2)
       if (! IPV4_ADDR_SAME (&next1->gate.ipv4, &next2->gate.ipv4))
        return 0;
       break;
+    case ZEBRA_NEXTHOP_IPV4_IFINDEX:
+      if (! IPV4_ADDR_SAME (&next1->gate.ipv4, &next2->gate.ipv4)
+         || next1->ifindex != next2->ifindex)
+       return 0;
+      break;
     case ZEBRA_NEXTHOP_IFINDEX:
     case ZEBRA_NEXTHOP_IFNAME:
       if (next1->ifindex != next2->ifindex)
@@ -832,6 +837,10 @@ zlookup_read (void)
            case ZEBRA_NEXTHOP_IPV4:
              nexthop->gate.ipv4.s_addr = stream_get_ipv4 (s);
              break;
+           case ZEBRA_NEXTHOP_IPV4_IFINDEX:
+             nexthop->gate.ipv4.s_addr = stream_get_ipv4 (s);
+             nexthop->ifindex = stream_getl (s);
+             break;
            case ZEBRA_NEXTHOP_IFINDEX:
            case ZEBRA_NEXTHOP_IFNAME:
              nexthop->ifindex = stream_getl (s);
@@ -1304,6 +1313,10 @@ show_ip_bgp_scan_tables (struct vty *vty, const char detail)
              case NEXTHOP_TYPE_IPV4:
                vty_out (vty, "  gate %s%s", inet_ntop (AF_INET, &bnc->nexthop[i].gate.ipv4, buf, INET6_ADDRSTRLEN), VTY_NEWLINE);
                break;
+             case NEXTHOP_TYPE_IPV4_IFINDEX:
+               vty_out (vty, "  gate %s", inet_ntop (AF_INET, &bnc->nexthop[i].gate.ipv4, buf, INET6_ADDRSTRLEN));
+               vty_out (vty, " ifidx %u%s", bnc->nexthop[i].ifindex, VTY_NEWLINE);
+               break;
              case NEXTHOP_TYPE_IFINDEX:
                vty_out (vty, "  ifidx %u%s", bnc->nexthop[i].ifindex, VTY_NEWLINE);
                break;
index 8aaaea6f1310f673e807eb49162dbad089890d69..f792c83884971f27f04e7a16715faaac67920d9a 100644 (file)
@@ -548,6 +548,8 @@ zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr)
 
   if (rib)
     {
+      if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
+        zlog_debug("%s: Matching rib entry found.", __func__);
       stream_putl (s, rib->metric);
       num = 0;
       nump = stream_get_endp(s);
@@ -561,6 +563,10 @@ zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr)
              case ZEBRA_NEXTHOP_IPV4:
                stream_put_in_addr (s, &nexthop->gate.ipv4);
                break;
+             case ZEBRA_NEXTHOP_IPV4_IFINDEX:
+               stream_put_in_addr (s, &nexthop->gate.ipv4);
+               stream_putl (s, nexthop->ifindex);
+               break;
              case ZEBRA_NEXTHOP_IFINDEX:
              case ZEBRA_NEXTHOP_IFNAME:
                stream_putl (s, nexthop->ifindex);
@@ -575,6 +581,8 @@ zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr)
     }
   else
     {
+      if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
+        zlog_debug("%s: No matching rib entry found.", __func__);
       stream_putl (s, 0);
       stream_putc (s, 0);
     }
@@ -890,8 +898,12 @@ static int
 zread_ipv4_nexthop_lookup (struct zserv *client, u_short length)
 {
   struct in_addr addr;
+  char buf[BUFSIZ];
 
   addr.s_addr = stream_get_ipv4 (client->ibuf);
+  if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
+    zlog_debug("%s: looking up %s", __func__,
+               inet_ntop (AF_INET, &addr, buf, BUFSIZ));
   return zsend_ipv4_nexthop_lookup (client, addr);
 }