if (IS_ZEBRA_DEBUG_RIB)
{
inet_ntop (rn->p.family, &rn->p.u.prefix, buf, sizeof (buf));
- zlog_debug("%s: Filtering out %s with NH out %s due to route map",
- __FUNCTION__, buf, nexthop->ifname);
+ zlog_debug("%u:%s/%d: Filtering out with NH out %s due to route map",
+ rib->vrf_id, buf, rn->p.prefixlen, nexthop->ifname);
}
UNSET_FLAG (nexthop->flags, NEXTHOP_FLAG_ACTIVE);
}
{
rib_dest_t *dest;
char buf[INET6_ADDRSTRLEN];
+ struct zebra_vrf *zvrf;
dest = rib_dest_from_rnode (rn);
if (!dest)
if (!rib_can_delete_dest (dest))
return 0;
- if (IS_ZEBRA_DEBUG_RIB)
+ zvrf = rib_dest_vrf (dest);
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
{
inet_ntop (rn->p.family, &rn->p.u.prefix, buf, sizeof (buf));
- zlog_debug ("%s: %s/%d: removing dest from table", __func__,
- buf, rn->p.prefixlen);
+ zlog_debug ("%u:%s/%d: rn %p removing dest",
+ zvrf->vrf_id, buf, rn->p.prefixlen, rn);
}
dest->rnode = NULL;
struct nexthop *nexthop = NULL, *tnexthop;
int recursing;
char buf[INET6_ADDRSTRLEN];
-
+ rib_dest_t *dest;
+ struct zebra_vrf *zvrf = NULL;
+ vrf_id_t vrf_id = 0;
+
assert (rn);
- if (IS_ZEBRA_DEBUG_RIB || IS_ZEBRA_DEBUG_RIB_Q)
+ dest = rib_dest_from_rnode (rn);
+ if (dest)
+ {
+ zvrf = rib_dest_vrf (dest);
+ vrf_id = zvrf->vrf_id;
+ }
+
+ if (IS_ZEBRA_DEBUG_RIB)
inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ zlog_debug ("%u:%s/%d: Processing rn %p", vrf_id, buf, rn->p.prefixlen, rn);
+
RNODE_FOREACH_RIB_SAFE (rn, rib, next)
{
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ zlog_debug ("%u:%s/%d: Examine rib %p (type %d) status %x flags %x "
+ "dist %d metric %d",
+ vrf_id, buf, rn->p.prefixlen, rib, rib->type, rib->status,
+ rib->flags, rib->distance, rib->metric);
+
UNSET_FLAG(rib->status, RIB_ENTRY_NEXTHOPS_CHANGED);
/* Currently installed rib. */
if (rib != fib)
{
if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: %s/%d: rn %p, removing rib %p", __func__,
- buf, rn->p.prefixlen, rn, rib);
+ zlog_debug ("%u:%s/%d: Freeing route rn %p, rib %p (type %d)",
+ vrf_id, buf, rn->p.prefixlen, rn, rib, rib->type);
rib_unlink (rn, rib);
}
else
* del --- equal to fib, if fib is queued for deletion, NULL otherwise
* rib --- NULL
*/
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ zlog_debug ("%u:%s/%d: After processing: select %p fib %p del %p",
+ vrf_id, buf, rn->p.prefixlen, select, fib, del);
/* Same RIB entry is selected. Update FIB and finish. */
if (select && select == fib)
{
- if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: %s/%d: Updating existing route, select %p, fib %p",
- __func__, buf, rn->p.prefixlen, select, fib);
if (CHECK_FLAG (select->flags, ZEBRA_FLAG_CHANGED))
{
zfpm_trigger_update (rn, "updating existing route");
*/
if (nexthop_active_update (rn, select, 1))
{
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: Updating route rn %p, rib %p (type %d)",
+ vrf_id, buf, rn->p.prefixlen, rn, select, select->type);
if (! RIB_SYSTEM_ROUTE (select))
{
/* Clear FIB flag if performing a replace, will get set again
}
else
{
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: Deleting route rn %p, rib %p (type %d) "
+ "- nexthop inactive",
+ vrf_id, buf, rn->p.prefixlen, rn, select, select->type);
+
/* Withdraw unreachable redistribute route */
redistribute_delete(&rn->p, select);
*/
if (fib)
{
- if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: %s/%d: Removing existing route, fib %p", __func__,
- buf, rn->p.prefixlen, fib);
-
zfpm_trigger_update (rn, "removing existing route");
/* If there's no route to replace this with, withdraw redistribute and
*/
if (!select)
{
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: Deleting route rn %p, rib %p (type %d)",
+ vrf_id, buf, rn->p.prefixlen, rn, fib, fib->type);
+
redistribute_delete(&rn->p, fib);
if (! RIB_SYSTEM_ROUTE (fib))
rib_uninstall_kernel (rn, fib);
*/
if (select)
{
- if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: %s/%d: Adding route, select %p", __func__, buf,
- rn->p.prefixlen, select);
-
zfpm_trigger_update (rn, "new route selected");
/* Set real nexthop. */
if (nexthop_active_update (rn, select, 1))
{
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ if (fib)
+ zlog_debug ("%u:%s/%d: Updating route rn %p, rib %p (type %d) "
+ "old %p (type %d)", vrf_id, buf, rn->p.prefixlen, rn,
+ select, select->type, fib, fib->type);
+ else
+ zlog_debug ("%u:%s/%d: Adding route rn %p, rib %p (type %d)",
+ vrf_id, buf, rn->p.prefixlen, rn, select, select->type);
+ }
+
if (! RIB_SYSTEM_ROUTE (select))
{
/* Clear FIB flag if performing a replace, will get set again
}
else
{
- /* Uninstall prior route here, if needed. */
- if (fib && !RIB_SYSTEM_ROUTE (fib))
- rib_uninstall_kernel (rn, fib);
- /* if "select", the earlier redist delete wouldn't have happened */
+ /* Uninstall prior route here and do redist delete, if needed. */
if (fib)
- redistribute_delete(&rn->p, fib);
+ {
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: Deleting route rn %p, rib %p (type %d) "
+ "- nexthop inactive",
+ vrf_id, buf, rn->p.prefixlen, rn, fib, fib->type);
+
+ if (!RIB_SYSTEM_ROUTE (fib))
+ rib_uninstall_kernel (rn, fib);
+ redistribute_delete(&rn->p, fib);
+ }
}
UNSET_FLAG(select->flags, ZEBRA_FLAG_CHANGED);
}
if (del)
{
if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: %s/%d: Deleting fib %p, rn %p", __func__, buf,
- rn->p.prefixlen, del, rn);
+ zlog_debug ("%u:%s/%d: Freeing route rn %p, rib %p (type %d)",
+ vrf_id, buf, rn->p.prefixlen, rn, del, del->type);
rib_unlink (rn, del);
}
end:
- if (IS_ZEBRA_DEBUG_RIB_Q)
- zlog_debug ("%s: %s/%d: rn %p dequeued", __func__, buf, rn->p.prefixlen, rn);
-
/*
* Check if the dest can be deleted now.
*/
{
struct listnode *lnode = listhead (subq);
struct route_node *rnode;
+ char buf[INET6_ADDRSTRLEN];
+ rib_dest_t *dest;
+ struct zebra_vrf *zvrf = NULL;
if (!lnode)
return 0;
rnode = listgetdata (lnode);
+ dest = rib_dest_from_rnode (rnode);
+ if (dest)
+ zvrf = rib_dest_vrf (dest);
+
rib_process (rnode);
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ {
+ inet_ntop (rnode->p.family, &rnode->p.u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: rn %p dequeued from sub-queue %u",
+ zvrf ? zvrf->vrf_id : 0, buf, rnode->p.prefixlen, rnode, qindex);
+ }
+
if (rnode->info)
UNSET_FLAG (rib_dest_from_rnode (rnode)->flags, RIB_ROUTE_QUEUED (qindex));
struct rib *rib;
char buf[INET6_ADDRSTRLEN];
- if (IS_ZEBRA_DEBUG_RIB_Q)
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
RNODE_FOREACH_RIB (rn, rib)
/* Invariant: at this point we always have rn->info set. */
if (CHECK_FLAG (rib_dest_from_rnode (rn)->flags,
RIB_ROUTE_QUEUED (qindex)))
- {
- if (IS_ZEBRA_DEBUG_RIB_Q)
- zlog_debug ("%s: %s/%d: rn %p is already queued in sub-queue %u",
- __func__, buf, rn->p.prefixlen, rn, qindex);
- continue;
- }
+ continue;
SET_FLAG (rib_dest_from_rnode (rn)->flags, RIB_ROUTE_QUEUED (qindex));
listnode_add (mq->subq[qindex], rn);
route_lock_node (rn);
mq->size++;
- if (IS_ZEBRA_DEBUG_RIB_Q)
- zlog_debug ("%s: %s/%d: queued rn %p into sub-queue %u",
- __func__, buf, rn->p.prefixlen, rn, qindex);
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ zlog_debug ("%u:%s/%d: rn %p queued into sub-queue %u",
+ rib->vrf_id, buf, rn->p.prefixlen, rn, qindex);
}
}
void
rib_queue_add (struct zebra_t *zebra, struct route_node *rn)
{
- char buf[INET_ADDRSTRLEN];
assert (zebra && rn);
- if (IS_ZEBRA_DEBUG_RIB_Q)
- inet_ntop (AF_INET, &rn->p.u.prefix, buf, INET_ADDRSTRLEN);
-
/* Pointless to queue a route_node with no RIB entries to add or remove */
if (!rnode_to_ribs (rn))
{
return;
}
- if (IS_ZEBRA_DEBUG_RIB_Q)
- zlog_info ("%s: %s/%d: work queue added", __func__, buf, rn->p.prefixlen);
-
assert (zebra);
if (zebra->ribq == NULL)
rib_meta_queue_add (zebra->mq, rn);
- if (IS_ZEBRA_DEBUG_RIB_Q)
- zlog_debug ("%s: %s/%d: rn %p queued", __func__, buf, rn->p.prefixlen, rn);
-
return;
}
assert (rib && rn);
- if (IS_ZEBRA_DEBUG_RIB)
- {
- inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
- zlog_debug ("%s: %s/%d: rn %p, rib %p", __func__,
- buf, rn->p.prefixlen, rn, rib);
- }
-
dest = rib_dest_from_rnode (rn);
if (!dest)
{
- if (IS_ZEBRA_DEBUG_RIB)
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
{
- zlog_debug ("%s: %s/%d: adding dest to table", __func__,
- buf, rn->p.prefixlen);
+ inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: rn %p adding dest",
+ rib->vrf_id, buf, rn->p.prefixlen, rn);
}
dest = XCALLOC (MTYPE_RIB_DEST, sizeof (rib_dest_t));
rib_queue_add (&zebrad, rn);
else
{
- if (IS_ZEBRA_DEBUG_RIB)
- {
- zlog_debug ("%s: %s/%d: Skipping further RIB processing of non-main table",
- __func__, buf, rn->p.prefixlen);
- }
afi = (rn->p.family == AF_INET) ? AFI_IP :
(rn->p.family == AF_INET6) ? AFI_IP6 : AFI_MAX;
if (is_zebra_import_table_enabled (afi, rib->table))
*/
if (CHECK_FLAG (rib->status, RIB_ENTRY_REMOVED))
{
- if (IS_ZEBRA_DEBUG_RIB)
- {
- char buf[INET6_ADDRSTRLEN];
- inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
- zlog_debug ("%s: %s/%d: rn %p, un-removed rib %p",
- __func__, buf, rn->p.prefixlen, rn, rib);
- }
UNSET_FLAG (rib->status, RIB_ENTRY_REMOVED);
return;
}
static void
rib_unlink (struct route_node *rn, struct rib *rib)
{
- char buf[INET6_ADDRSTRLEN];
rib_dest_t *dest;
assert (rn && rib);
- if (IS_ZEBRA_DEBUG_RIB)
- {
- inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
- zlog_debug ("%s: %s/%d: rn %p, rib %p",
- __func__, buf, rn->p.prefixlen, rn, rib);
- }
-
dest = rib_dest_from_rnode (rn);
if (rib->next)
{
afi_t afi;
- if (IS_ZEBRA_DEBUG_RIB)
- {
- char buf[INET6_ADDRSTRLEN];
- inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
- zlog_debug ("%s: %s/%d: rn %p, rib %p, removing", __func__,
- buf, rn->p.prefixlen, rn, rib);
- }
SET_FLAG (rib->status, RIB_ENTRY_REMOVED);
if ((rib->table == RT_TABLE_MAIN) || (rib->table == zebrad.rtm_table_default))
if (is_zebra_import_table_enabled (afi, rib->table))
zebra_del_import_table_entry(rn, rib);
/* Just clean up if non main table */
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (rn->p.family, &rn->p.u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Freeing route rn %p, rib %p (type %d)",
+ rib->vrf_id, buf, rn->p.prefixlen, rn, rib, rib->type);
+ }
+ }
+
rib_unlink(rn, rib);
}
}
/* Link new rib to node.*/
if (IS_ZEBRA_DEBUG_RIB)
- {
- zlog_debug ("%s: called rib_addnode (%p, %p) on new RIB entry",
- __func__, rn, rib);
- rib_dump ((struct prefix *)p, rib);
- }
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Inserting route rn %p, rib %p (type %d) "
+ "existing %p",
+ vrf_id, buf, p->prefixlen, rn, rib, rib->type, same);
+ }
+
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ rib_dump ((struct prefix *)p, rib);
+ }
rib_addnode (rn, rib);
/* Free implicit route.*/
if (same)
- {
- if (IS_ZEBRA_DEBUG_RIB)
- zlog_debug ("%s: calling rib_delnode (%p, %p)", __func__, rn, rib);
rib_delnode (rn, same);
- }
route_unlock_node (rn);
return 0;
{
char buf[INET_ADDRSTRLEN];
inet_ntop (rn->p.family, &p->prefix, buf, INET_ADDRSTRLEN);
- zlog_debug ("%s: freeing way for connected prefix %s/%d", __func__, buf, p->prefixlen);
+ zlog_debug ("%u:%s/%d: freeing way for connected prefix",
+ rib->vrf_id, buf, p->prefixlen);
rib_dump (&rn->p, rib);
}
rib_uninstall (rn, rib);
SET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB);
/* Link new rib to node.*/
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Inserting route rn %p, rib %p (type %d) "
+ "existing %p",
+ rib->vrf_id, buf, p->prefixlen, rn, rib, rib->type, same);
+ }
+
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ rib_dump ((struct prefix *)p, rib);
+ }
rib_addnode (rn, rib);
ret = 1;
- if (IS_ZEBRA_DEBUG_RIB)
- {
- zlog_debug ("%s: called rib_addnode (%p, %p) on new RIB entry",
- __func__, rn, rib);
- rib_dump (p, rib);
- }
/* Free implicit route.*/
if (same)
- {
- if (IS_ZEBRA_DEBUG_RIB)
{
- zlog_debug ("%s: calling rib_delnode (%p, %p) on existing RIB entry",
- __func__, rn, same);
- rib_dump (p, same);
+ rib_delnode (rn, same);
+ ret = -1;
}
- rib_delnode (rn, same);
- ret = -1;
- }
route_unlock_node (rn);
return ret;
struct rib *same = NULL;
struct nexthop *nexthop, *tnexthop;
int recursing;
- char buf1[INET_ADDRSTRLEN];
- char buf2[INET_ADDRSTRLEN];
+ char buf1[INET6_ADDRSTRLEN];
+ char buf2[INET6_ADDRSTRLEN];
/* Lookup table. */
if ((table_id == RT_TABLE_MAIN) || (table_id == zebrad.rtm_table_default))
/* Apply mask. */
apply_mask_ipv4 (p);
- if (IS_ZEBRA_DEBUG_KERNEL)
- {
- if (gate)
- zlog_debug ("rib_delete_ipv4(): route delete %s vrf %u via %s ifindex %d",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- inet_ntoa (*gate),
- ifindex);
- else
- zlog_debug ("rib_delete_ipv4(): route delete %s vrf %u ifindex %d",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- ifindex);
- }
-
/* Lookup route node. */
rn = route_node_lookup (table, (struct prefix *) p);
if (! rn)
{
- if (IS_ZEBRA_DEBUG_KERNEL)
- {
- if (gate)
- zlog_debug ("route %s vrf %u via %s ifindex %d doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- inet_ntop (AF_INET, gate, buf2, INET_ADDRSTRLEN),
- ifindex);
- else
- zlog_debug ("route %s vrf %u ifindex %d doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- ifindex);
- }
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: doesn't exist in rib",
+ vrf_id, inet_ntop (p->family, &p->prefix, buf1, INET6_ADDRSTRLEN),
+ p->prefixlen);
return ZEBRA_ERR_RTNOEXIST;
}
if (fib && type == ZEBRA_ROUTE_KERNEL &&
CHECK_FLAG(flags, ZEBRA_FLAG_SELFROUTE))
{
- if (IS_ZEBRA_DEBUG_KERNEL)
+ if (IS_ZEBRA_DEBUG_RIB)
{
- zlog_debug ("Zebra route %s/%d was deleted by others from kernel",
- inet_ntop (AF_INET, &p->prefix, buf1, INET_ADDRSTRLEN),
- p->prefixlen);
+ zlog_debug ("%u:%s/%d: rn %p, rib %p (type %d) was deleted "
+ "from kernel, adding",
+ vrf_id, inet_ntop (p->family, &p->prefix, buf1, INET6_ADDRSTRLEN),
+ p->prefixlen, rn, fib, fib->type);
}
if (allow_delete)
{
}
else
{
- if (IS_ZEBRA_DEBUG_KERNEL)
+ if (IS_ZEBRA_DEBUG_RIB)
{
if (gate)
- zlog_debug ("route %s vrf %u via %s ifindex %d type %d "
+ zlog_debug ("%u:%s: via %s ifindex %d type %d "
"doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
+ vrf_id, prefix2str (p, buf1, sizeof(buf1)),
inet_ntop (AF_INET, gate, buf2, INET_ADDRSTRLEN),
ifindex,
type);
else
- zlog_debug ("route %s vrf %u ifindex %d type %d doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
+ zlog_debug ("%u:%s: ifindex %d type %d doesn't exist in rib",
+ vrf_id, prefix2str (p, buf1, sizeof(buf1)),
ifindex,
type);
}
nexthop_ipv6_ifname_add (rib, &si->addr.ipv6, si->ifname);
break;
}
+
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Modifying route rn %p, rib %p (type %d)",
+ si->vrf_id, buf, p->prefixlen, rn, rib, rib->type);
+ }
+ }
rib_queue_add (&zebrad, rn);
}
else
rib->flags = si->flags;
/* Link this rib to the tree. */
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Inserting route rn %p, rib %p (type %d)",
+ si->vrf_id, buf, p->prefixlen, rn, rib, rib->type);
+ }
+ }
rib_addnode (rn, rib);
}
}
* the nexthop. There is no need to re-evaluate the route for this
* scenario.
*/
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Modifying route rn %p, rib %p (type %d)",
+ si->vrf_id, buf, p->prefixlen, rn, rib, rib->type);
+ }
+ }
UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB))
{
SET_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB);
/* Link new rib to node.*/
- rib_addnode (rn, rib);
if (IS_ZEBRA_DEBUG_RIB)
- {
- zlog_debug ("%s: called rib_addnode (%p, %p) on new RIB entry",
- __func__, rn, rib);
- rib_dump (p, rib);
- }
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Inserting route rn %p, rib %p (type %d) "
+ "existing %p",
+ vrf_id, buf, p->prefixlen, rn, rib, rib->type, same);
+ }
+
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ rib_dump ((struct prefix *)p, rib);
+ }
+ rib_addnode (rn, rib);
/* Free implicit route.*/
if (same)
- {
- if (IS_ZEBRA_DEBUG_RIB)
- {
- zlog_debug ("%s: calling rib_delnode (%p, %p) on existing RIB entry",
- __func__, rn, same);
- rib_dump (p, same);
- }
rib_delnode (rn, same);
- }
route_unlock_node (rn);
return 0;
}
/* Link new rib to node.*/
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ char buf[INET6_ADDRSTRLEN];
+ if (IS_ZEBRA_DEBUG_RIB)
+ {
+ inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN);
+ zlog_debug ("%u:%s/%d: Inserting route rn %p, rib %p (type %d) "
+ "existing %p",
+ rib->vrf_id, buf, p->prefixlen, rn, rib, rib->type, same);
+ }
+
+ if (IS_ZEBRA_DEBUG_RIB_DETAILED)
+ rib_dump ((struct prefix *)p, rib);
+ }
rib_addnode (rn, rib);
ret = 1;
+
/* Free implicit route.*/
if (same)
- {
- if (IS_ZEBRA_DEBUG_RIB)
{
- zlog_debug ("%s: calling rib_delnode (%p, %p) on existing RIB entry",
- __func__, rn, same);
- rib_dump ((struct prefix *)p, same);
+ rib_delnode (rn, same);
+ ret = -1;
}
- rib_delnode (rn, same);
- ret = -1;
- }
route_unlock_node (rn);
return ret;
rn = route_node_lookup (table, (struct prefix *) p);
if (! rn)
{
- if (IS_ZEBRA_DEBUG_KERNEL)
- {
- if (gate)
- zlog_debug ("route %s vrf %u via %s ifindex %d doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- inet_ntop (AF_INET6, gate, buf2, INET6_ADDRSTRLEN),
- ifindex);
- else
- zlog_debug ("route %s vrf %u ifindex %d doesn't exist in rib",
- prefix2str (p, buf1, sizeof(buf1)), vrf_id,
- ifindex);
- }
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: doesn't exist in rib",
+ vrf_id, inet_ntop (p->family, &p->prefix, buf1, INET6_ADDRSTRLEN),
+ p->prefixlen);
return ZEBRA_ERR_RTNOEXIST;
}
if (fib && type == ZEBRA_ROUTE_KERNEL &&
CHECK_FLAG(flags, ZEBRA_FLAG_SELFROUTE))
{
- if (IS_ZEBRA_DEBUG_KERNEL)
- {
- zlog_debug ("Zebra route %s/%d was deleted by others from kernel",
- inet_ntop (AF_INET6, &p->prefix, buf1, INET6_ADDRSTRLEN),
- p->prefixlen);
- }
+ if (IS_ZEBRA_DEBUG_RIB)
+ zlog_debug ("%u:%s/%d: rn %p, rib %p (type %d) was deleted "
+ "from kernel, adding",
+ vrf_id, inet_ntop (p->family, &p->prefix, buf1, INET6_ADDRSTRLEN),
+ p->prefixlen, rn, fib, fib->type);
if (allow_delete)
{
/* Unset flags. */
if (IS_ZEBRA_DEBUG_KERNEL)
{
if (gate)
- zlog_debug ("route %s vrf %u via %s ifindex %d type %d "
+ zlog_debug ("%s: vrf %u via %s ifindex %d type %d "
"doesn't exist in rib",
prefix2str (p, buf1, sizeof(buf1)), vrf_id,
inet_ntop (AF_INET6, gate, buf2, INET6_ADDRSTRLEN),
ifindex,
type);
else
- zlog_debug ("route %s vrf %u ifindex %d type %d doesn't exist in rib",
+ zlog_debug ("%s: vrf %u ifindex %d type %d doesn't exist in rib",
prefix2str (p, buf1, sizeof(buf1)), vrf_id,
ifindex,
type);