summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-03-27 14:21:11 +0200
committerPavel Machek <pavel@ucw.cz>2000-03-27 14:21:11 +0200
commitd0031c5ee94b29b7a5419a0504c160e424d970b0 (patch)
tree94fc48c97e404bbbf85ef8ca4c3107cd83f5e807 /proto/rip
parent200accf396b869267fd707b56afddb27d8479acc (diff)
downloadbird-d0031c5ee94b29b7a5419a0504c160e424d970b0.tar
bird-d0031c5ee94b29b7a5419a0504c160e424d970b0.zip
Use neigh_connected_to in rip, and behave more correctly
w.r.t. whotoldme and nexthop.
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c44
1 files changed, 16 insertions, 28 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index f51773f..f65a1f3 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -74,34 +74,17 @@ rip_tx_prepare(struct proto *p, ip_addr daddr, struct rip_block *b, struct rip_e
#ifndef IPV6
b->netmask = ipa_mkmask( e->n.pxlen );
ipa_hton( b->netmask );
- b->nexthop = IPA_NONE;
- {
- /*
- * FIXME: This DOESN'T work. The s->daddr will be typically
- * a broadcast or multicast address which will be of course
- * rejected by the neighbor cache. I've #ifdef'd out the whole
- * test to avoid dereferencing NULL pointer. --mj
- */
-#if 0
- /* IS this really neccessary?
- If nexthop and destination of this packet are on same interface, split horizont applies and *nothing* should be sent....
- */
-
- neighbor *n1, *n2;
- n1 = neigh_find( p, &daddr, 0 ); /* FIXME, mj: this is neccessary for responses, still it is too complicated for common case */
- n2 = neigh_find( p, &e->nexthop, 0 );
- if (n1->iface == n2->iface)
- b->nexthop = e->nexthop;
- else
-#endif
- b->nexthop = IPA_NONE;
- }
+
+ if (neigh_connected_to(p, &e->nexthop, rif->iface))
+ b->nexthop = e->nexthop;
+ else
+ b->nexthop = IPA_NONE;
ipa_hton( b->nexthop );
#else
b->pxlen = e->n.pxlen;
#endif
b->metric = htonl( e->metric );
- if (if_connected(&e->whotoldme, rif->iface)) {
+ if (neigh_connected_to(p, &e->whotoldme, rif->iface)) {
DBG( "(split horizon)" );
b->metric = htonl( P_CF->infinity );
}
@@ -719,13 +702,18 @@ rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte
e = fib_get( &P->rtable, &net->n.prefix, net->n.pxlen );
e->nexthop = new->attrs->gw;
- e->tag = ea_find(attrs, EA_RIP_TAG)->u.data;
- e->metric = ea_find(attrs, EA_RIP_METRIC)->u.data;
- if (e->metric > P_CF->infinity)
- e->metric = P_CF->infinity;
+ e->metric = 0;
+ e->whotoldme = IPA_NONE;
+ if (new->attrs->proto == p) {
+ e->tag = ea_find(attrs, EA_RIP_TAG)->u.data;
+ e->metric = ea_find(attrs, EA_RIP_METRIC)->u.data;
+ if (e->metric > P_CF->infinity)
+ e->metric = P_CF->infinity;
+ e->whotoldme = new->attrs->from;
+ }
+
if (!e->metric) /* FIXME: this is metric for external routes. Should it be configurable? */
e->metric = 5;
- e->whotoldme = new->attrs->from;
e->updated = e->changed = now;
e->flags = 0;
}