summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-10-11 16:19:29 +0200
committerPavel Machek <pavel@ucw.cz>1999-10-11 16:19:29 +0200
commitc79ec2ec1962394f1550afa10a8b396f0e4dfc52 (patch)
tree3c34875313c163077dc5838a923d0afbbcd23a7f /proto/rip
parent720d911d777f64872df923e102ebc509113885f0 (diff)
downloadbird-c79ec2ec1962394f1550afa10a8b396f0e4dfc52.tar
bird-c79ec2ec1962394f1550afa10a8b396f0e4dfc52.zip
Untested IPv6 support added. I do not know if it compiles in IPV6 mode.
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c31
-rw-r--r--proto/rip/rip.h11
2 files changed, 34 insertions, 8 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index 7fcf624..78eaa65 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -4,6 +4,8 @@
* Copyright (c) 1998, 1999 Pavel Machek <pavel@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
+ *
+ FIXME: IpV6 support
*/
#define LOCAL_DEBUG
@@ -85,8 +87,14 @@ rip_tx( sock *s )
packet->block[i].family = htons( 2 ); /* AF_INET */
packet->block[i].tag = htons( e->tag );
packet->block[i].network = e->n.prefix;
+#ifndef IPV6
packet->block[i].netmask = ipa_mkmask( e->n.pxlen );
- packet->block[i].nexthop = IPA_NONE; /* FIXME: How should I set it? My own IP address? */
+ ipa_hton( packet->block[i].netmask );
+ packet->block[i].nexthop = IPA_NONE; /* FIXME: does it make sense to set this to not-me in some cases? */
+ ipa_hton( packet->block[i].nexthop );
+#else
+ packet->block[i].pxlen = e->n.pxlen;
+#endif
packet->block[i].metric = htonl( e->metric );
if (ipa_equal(e->whotoldme, s->daddr)) {
DBG( "(split horizont)" );
@@ -94,8 +102,6 @@ rip_tx( sock *s )
packet->block[i].metric = P_CF->infinity;
}
ipa_hton( packet->block[i].network );
- ipa_hton( packet->block[i].netmask );
- ipa_hton( packet->block[i].nexthop );
if (i++ == ((P_CF->authtype == AT_MD5) ? PACKET_MD5_MAX : PACKET_MAX)) {
FIB_ITERATE_PUT(&c->iter, z);
@@ -185,6 +191,7 @@ advertise_entry( struct proto *p, struct rip_block *b, ip_addr whotoldme )
net *n;
neighbor *neighbor;
struct rip_interface *rif;
+ int pxlen;
bzero(&A, sizeof(A));
A.proto = p;
@@ -193,14 +200,20 @@ advertise_entry( struct proto *p, struct rip_block *b, ip_addr whotoldme )
A.cast = RTC_UNICAST;
A.dest = RTD_ROUTER;
A.flags = 0;
+#ifndef IPV6
A.gw = ipa_nonzero(b->nexthop) ? b->nexthop : whotoldme;
+ pxlen = ipa_mklen(b->netmask);
+#else
+ A.gw = whotoldme; /* FIXME: next hop is in other packet for v6 */
+ pxlen = b->pxlen;
+#endif
A.from = whotoldme;
/* FIXME: Check if destination looks valid - ie not net 0 or 127 */
neighbor = neigh_find( p, &A.gw, 0 );
if (!neighbor) {
- log( L_ERR "%I asked me to route %I/%I using not-neighbor %I.", A.from, b->network, b->netmask, A.gw );
+ log( L_ERR "%I asked me to route %I/%d using not-neighbor %I.", A.from, b->network, pxlen, A.gw );
return;
}
@@ -215,11 +228,11 @@ advertise_entry( struct proto *p, struct rip_block *b, ip_addr whotoldme )
/* set to: interface of nexthop */
a = rta_lookup(&A);
- if (ipa_mklen(b->netmask)==-1) {
- log( L_ERR "%I asked me to route %I/%I, but that is not valid netmask.", A.from, b->network, b->netmask );
+ if (pxlen==-1) {
+ log( L_ERR "%I gave me invalid pxlen/netmask for %I.", A.from, b->network );
return;
}
- n = net_get( p->table, b->network, ipa_mklen( b->netmask ));
+ n = net_get( p->table, b->network, pxlen );
r = rte_get_temp(a);
r->u.rip.metric = ntohl(b->metric) + rif->patt->metric;
if (r->u.rip.metric > P_CF->infinity) r->u.rip.metric = P_CF->infinity;
@@ -243,7 +256,7 @@ process_block( struct proto *p, struct rip_block *block, ip_addr whotoldme )
return;
}
- debug( "block: %I tells me: %I/%I available, metric %d... ", whotoldme, network, block->netmask, metric );
+ debug( "block: %I tells me: %I/??? available, metric %d... ", whotoldme, network, metric );
advertise_entry( p, block, whotoldme );
}
@@ -302,12 +315,14 @@ rip_process_packet( struct proto *p, struct rip_packet *packet, int num, ip_addr
}
/* FIXME: Need to reject packets which have no authentication */
ipa_ntoh( block->network );
+#ifndef IPV6
ipa_ntoh( block->netmask );
ipa_ntoh( block->nexthop );
if (packet->heading.version == RIP_V1) {
block->netmask = block->network; /* MJ: why are macros like this?! */
ipa_class_mask( block->netmask );
}
+#endif
process_block( p, block, whotoldme );
}
break;
diff --git a/proto/rip/rip.h b/proto/rip/rip.h
index 4dcc396..7bf225c 100644
--- a/proto/rip/rip.h
+++ b/proto/rip/rip.h
@@ -1,5 +1,7 @@
/*
* Structures for RIP protocol
+ *
+ FIXME: in V6, they insert additional entry whenever next hop differs. Such entry is identified by 0xff in metric.
*/
#include "nest/route.h"
@@ -39,6 +41,7 @@ struct rip_packet_heading {
u16 unused;
};
+#ifndef IPV6
struct rip_block {
u16 family; /* 0xffff on first message means this is authentication */
u16 tag;
@@ -47,6 +50,14 @@ struct rip_block {
ip_addr nexthop;
u32 metric;
};
+#else
+struct rip_block {
+ ip_addr network;
+ u16 tag;
+ u8 pxlen;
+ u8 metric
+};
+#endif
struct rip_block_auth {
u16 mustbeFFFF;