]> git.proxmox.com Git - mirror_frr.git/commitdiff
zebra: fix pseudowire code re. upstream changes
authorDavid Lamparter <equinox@opensourcerouting.org>
Wed, 9 Aug 2017 10:37:45 +0000 (12:37 +0200)
committerDavid Lamparter <equinox@diac24.net>
Wed, 9 Aug 2017 11:03:39 +0000 (13:03 +0200)
- VTY_NEWLINE is out
- thread API changed with the extra arg
- struct rib got renamed to struct route_entry
- MPLS_NO_LABEL was removed
- RB-tree implementation has some extra args

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
ldpd/neighbor.c
zebra/debug.c
zebra/zebra_pw.c

index 1671fce4f15c8cacaad2dfaa8f59267e5fd36921..39860a185981d0492ed88466d60f2e176a249ce6 100644 (file)
@@ -316,7 +316,7 @@ nbr_del(struct nbr *nbr)
        mapping_list_clr(&nbr->release_list);
        mapping_list_clr(&nbr->abortreq_list);
 
-       while ((adj = RB_ROOT(&nbr->adj_tree)) != NULL) {
+       while ((adj = RB_ROOT(nbr_adj_head, &nbr->adj_tree)) != NULL) {
                adj->nbr = NULL;
                RB_REMOVE(nbr_adj_head, &nbr->adj_tree, adj);
        }
index 6728ed132583567c3bdf87899f66ec6bbebff0fa..25f47bc51a8fa85e9068c0ce18a036f79699f496 100644 (file)
@@ -438,7 +438,7 @@ static int config_write_debug(struct vty *vty)
                write++;
        }
        if (IS_ZEBRA_DEBUG_PW) {
-               vty_out(vty, "debug zebra pseudowires%s", VTY_NEWLINE);
+               vty_out(vty, "debug zebra pseudowires\n");
                write++;
        }
        return write;
index 21b6efd86f9ef18cfde6d9d7a3f208df21483a2f..4f1d8b0915c2d9e14eae021d02c3d2c30120d4fe 100644 (file)
@@ -39,6 +39,8 @@ DEFINE_QOBJ_TYPE(zebra_pw)
 DEFINE_HOOK(pw_install, (struct zebra_pw * pw), (pw))
 DEFINE_HOOK(pw_uninstall, (struct zebra_pw * pw), (pw))
 
+#define MPLS_NO_LABEL MPLS_INVALID_LABEL
+
 extern struct zebra_t zebrad;
 
 static int zebra_pw_enabled(struct zebra_pw *);
@@ -210,9 +212,8 @@ void zebra_pw_install_failure(struct zebra_pw *pw)
 
        /* schedule to retry later */
        THREAD_TIMER_OFF(pw->install_retry_timer);
-       pw->install_retry_timer =
-               thread_add_timer(zebrad.master, zebra_pw_install_retry, pw,
-                                PW_INSTALL_RETRY_INTERVAL);
+       thread_add_timer(zebrad.master, zebra_pw_install_retry, pw,
+                        PW_INSTALL_RETRY_INTERVAL, &pw->install_retry_timer);
 
        zebra_pw_update_status(pw, PW_STATUS_DOWN);
 }
@@ -236,16 +237,15 @@ static void zebra_pw_update_status(struct zebra_pw *pw, int status)
 
 static int zebra_pw_check_reachability(struct zebra_pw *pw)
 {
-       struct rib *rib;
-       struct nexthop *nexthop, *tnexthop;
-       int recursing;
+       struct route_entry *re;
+       struct nexthop *nexthop;
 
        /* TODO: consider GRE/L2TPv3 tunnels in addition to MPLS LSPs */
 
        /* find route to the remote end of the pseudowire */
-       rib = rib_match(family2afi(pw->af), SAFI_UNICAST, pw->vrf_id,
-                       &pw->nexthop, NULL);
-       if (!rib) {
+       re = rib_match(family2afi(pw->af), SAFI_UNICAST, pw->vrf_id,
+                      &pw->nexthop, NULL);
+       if (!re) {
                if (IS_ZEBRA_DEBUG_PW)
                        zlog_warn("%s: no route found for %s", __func__,
                                  pw->ifname);
@@ -256,7 +256,7 @@ static int zebra_pw_check_reachability(struct zebra_pw *pw)
         * Need to ensure that there's a label binding for all nexthops.
         * Otherwise, ECMP for this route could render the pseudowire unusable.
         */
-       for (ALL_NEXTHOPS_RO(rib->nexthop, nexthop, tnexthop, recursing)) {
+       for (ALL_NEXTHOPS(re->nexthop, nexthop)) {
                if (!nexthop->nh_label) {
                        if (IS_ZEBRA_DEBUG_PW)
                                zlog_warn("%s: unlabeled route for %s",
@@ -288,15 +288,15 @@ void zebra_pw_client_close(struct zserv *client)
 
 void zebra_pw_init(struct zebra_vrf *zvrf)
 {
-       RB_INIT(&zvrf->pseudowires);
-       RB_INIT(&zvrf->static_pseudowires);
+       RB_INIT(zebra_pw_head, &zvrf->pseudowires);
+       RB_INIT(zebra_static_pw_head, &zvrf->static_pseudowires);
 }
 
 void zebra_pw_exit(struct zebra_vrf *zvrf)
 {
        struct zebra_pw *pw;
 
-       while ((pw = RB_ROOT(&zvrf->pseudowires)) != NULL)
+       while ((pw = RB_ROOT(zebra_pw_head, &zvrf->pseudowires)) != NULL)
                zebra_pw_del(zvrf, pw);
 }
 
@@ -320,7 +320,7 @@ DEFUN_NOSH (pseudowire_if,
        ifname = argv[idx]->arg;
        pw = zebra_pw_find(zvrf, ifname);
        if (pw && pw->protocol != ZEBRA_ROUTE_STATIC) {
-               vty_out(vty, "%% Pseudowire is not static%s", VTY_NEWLINE);
+               vty_out(vty, "%% Pseudowire is not static\n");
                return CMD_WARNING;
        }
 
@@ -394,7 +394,7 @@ DEFUN (pseudowire_neighbor,
                else if (inet_pton(AF_INET6, address, &nexthop.ipv6) == 1)
                        af = AF_INET6;
                else {
-                       vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
+                       vty_out(vty, "%% Malformed address\n");
                        return CMD_WARNING;
                }
        }
@@ -445,8 +445,8 @@ DEFUN (show_pseudowires,
        if (!zvrf)
                return 0;
 
-       vty_out(vty, "%-16s %-24s %-12s %-8s %-10s%s", "Interface", "Neighbor",
-               "Labels", "Protocol", "Status", VTY_NEWLINE);
+       vty_out(vty, "%-16s %-24s %-12s %-8s %-10s\n", "Interface", "Neighbor",
+               "Labels", "Protocol", "Status");
 
        RB_FOREACH(pw, zebra_pw_head, &zvrf->pseudowires)
        {
@@ -462,13 +462,12 @@ DEFUN (show_pseudowires,
                else
                        snprintf(buf_labels, sizeof(buf_labels), "-");
 
-               vty_out(vty, "%-16s %-24s %-12s %-8s %-10s%s", pw->ifname,
+               vty_out(vty, "%-16s %-24s %-12s %-8s %-10s\n", pw->ifname,
                        (pw->af != AF_UNSPEC) ? buf_nbr : "-", buf_labels,
                        zebra_route_string(pw->protocol),
                        (zebra_pw_enabled(pw) && pw->status == PW_STATUS_UP)
                                ? "UP"
-                               : "DOWN",
-                       VTY_NEWLINE);
+                               : "DOWN");
        }
 
        return CMD_SUCCESS;
@@ -487,31 +486,29 @@ static int zebra_pw_config(struct vty *vty)
 
        RB_FOREACH(pw, zebra_static_pw_head, &zvrf->static_pseudowires)
        {
-               vty_out(vty, "pseudowire %s%s", pw->ifname, VTY_NEWLINE);
+               vty_out(vty, "pseudowire %s\n", pw->ifname);
                if (pw->local_label != MPLS_NO_LABEL
                    && pw->remote_label != MPLS_NO_LABEL)
-                       vty_out(vty, " mpls label local %u remote %u%s",
-                               pw->local_label, pw->remote_label, VTY_NEWLINE);
+                       vty_out(vty, " mpls label local %u remote %u\n",
+                               pw->local_label, pw->remote_label);
                else
                        vty_out(vty,
                                " ! Incomplete config, specify the static "
-                               "MPLS labels%s",
-                               VTY_NEWLINE);
+                               "MPLS labels\n");
 
                if (pw->af != AF_UNSPEC) {
                        char buf[INET6_ADDRSTRLEN];
                        inet_ntop(pw->af, &pw->nexthop, buf, sizeof(buf));
-                       vty_out(vty, " neighbor %s%s", buf, VTY_NEWLINE);
+                       vty_out(vty, " neighbor %s\n", buf);
                } else
                        vty_out(vty,
                                " ! Incomplete config, specify a neighbor "
-                               "address%s",
-                               VTY_NEWLINE);
+                               "address\n");
 
                if (!(pw->flags & F_PSEUDOWIRE_CWORD))
-                       vty_out(vty, " control-word exclude%s", VTY_NEWLINE);
+                       vty_out(vty, " control-word exclude\n");
 
-               vty_out(vty, "!%s", VTY_NEWLINE);
+               vty_out(vty, "!\n");
                write = 1;
        }