1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2003-09-14 21:41:24 +08:00
|
|
|
* (c) 1999 - 2003 Ondrej Filip <feela@network.cz>
|
1999-11-17 23:50:41 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
|
|
|
void
|
2004-06-06 17:37:54 +08:00
|
|
|
fill_ospf_pkt_hdr(struct ospf_iface *ifa, void *buf, u8 h_type)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
struct ospf_packet *pkt;
|
|
|
|
struct proto *p;
|
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
p = (struct proto *) (ifa->proto);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
pkt = (struct ospf_packet *) buf;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
pkt->version = OSPF_VERSION;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
pkt->type = h_type;
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
pkt->routerid = htonl(p->cf->global->router_id);
|
|
|
|
pkt->areaid = htonl(ifa->an);
|
|
|
|
pkt->autype = htons(ifa->autype);
|
2003-09-14 21:41:24 +08:00
|
|
|
pkt->checksum = 0;
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_tx_authenticate(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
pkt->autype = htons(ifa->autype);
|
|
|
|
memcpy(pkt->authetication, ifa->aukey, 8);
|
1999-11-17 23:50:41 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static int
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_rx_authenticate(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
2000-06-06 09:23:03 +08:00
|
|
|
{
|
|
|
|
int i;
|
2004-06-06 17:37:54 +08:00
|
|
|
if (pkt->autype != htons(ifa->autype))
|
2003-09-14 21:41:24 +08:00
|
|
|
return 0;
|
|
|
|
if (ifa->autype == AU_NONE)
|
|
|
|
return 1;
|
|
|
|
if (ifa->autype == AU_SIMPLE)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
|
|
|
for (i = 0; i < 8; i++)
|
2000-06-06 09:23:03 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (pkt->authetication[i] != ifa->aukey[i])
|
|
|
|
return 0;
|
2000-06-06 09:23:03 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2000-06-06 09:23:03 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_pkt_finalize(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_tx_authenticate(ifa, pkt);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
/* Count checksum */
|
2004-06-06 17:37:54 +08:00
|
|
|
pkt->checksum = ipsum_calculate(pkt, sizeof(struct ospf_packet) - 8,
|
|
|
|
(pkt + 1),
|
|
|
|
ntohs(pkt->length) -
|
|
|
|
sizeof(struct ospf_packet), NULL);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
2000-06-08 05:56:32 +08:00
|
|
|
/**
|
|
|
|
* ospf_rx_hook
|
2003-08-23 18:42:41 +08:00
|
|
|
* @sk: socket we received the packet. Its ignored.
|
2000-06-08 05:56:32 +08:00
|
|
|
* @size: size of the packet
|
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* This is the entry point for messages from neighbors. Many checks (like
|
|
|
|
* authentication, checksums, size) are done before the packet is passed to
|
2000-06-08 05:56:32 +08:00
|
|
|
* non generic functions.
|
|
|
|
*/
|
1999-11-17 23:50:41 +08:00
|
|
|
int
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_rx_hook(sock * sk, int size)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
struct ospf_packet *ps;
|
2003-09-14 21:41:24 +08:00
|
|
|
struct ospf_iface *ifa = (struct ospf_iface *) (sk->data);
|
|
|
|
struct proto *p = (struct proto *) (ifa->proto);
|
2004-06-07 03:53:52 +08:00
|
|
|
struct ospf_neighbor *n;
|
2004-06-17 07:01:49 +08:00
|
|
|
int osize;
|
2004-06-07 03:53:52 +08:00
|
|
|
char *mesg = "Bad OSPF packet from ";
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
if (ifa->stub)
|
|
|
|
return (1);
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("%s: RX_Hook called on interface %s.\n", p->name, sk->iface->name);
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
ps = (struct ospf_packet *) ipv4_skip_header(sk->rbuf, &size);
|
2004-06-17 07:01:49 +08:00
|
|
|
osize = ntohs(ps->length);
|
2003-09-14 21:41:24 +08:00
|
|
|
if (ps == NULL)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - bad IP header", mesg, sk->faddr);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((unsigned) size < sizeof(struct ospf_packet))
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - too short (%u bytes)", mesg, sk->faddr, size);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-17 07:01:49 +08:00
|
|
|
if ((osize > size) || (osize != (4 * (osize / 4))))
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2004-06-17 07:01:49 +08:00
|
|
|
log(L_ERR "%s%I - size field does not match (%d/%d)", mesg, sk->faddr, ntohs(ps->length), size );
|
2004-06-07 03:53:52 +08:00
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
|
|
|
if (ps->version != OSPF_VERSION)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - version %u", mesg, sk->faddr, ps->version);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (!ipsum_verify(ps, 16, (void *) ps + sizeof(struct ospf_packet),
|
|
|
|
ntohs(ps->length) - sizeof(struct ospf_packet), NULL))
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - bad checksum", mesg, sk->faddr);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (!ospf_rx_authenticate(ifa, ps))
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - bad password", mesg, sk->faddr);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ntohl(ps->areaid) != ifa->an)
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - other area %ld", mesg, sk->faddr, ps->areaid);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ntohl(ps->routerid) == p->cf->global->router_id)
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - received my own router ID!", mesg, sk->faddr);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ntohl(ps->routerid) == 0)
|
|
|
|
{
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - router id = 0.0.0.0", mesg, sk->faddr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((unsigned) size > ifa->iface->mtu)
|
|
|
|
{
|
|
|
|
log(L_ERR "%s%I - received larger packet than MTU", mesg, sk->faddr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = find_neigh(ifa, ntohl(((struct ospf_packet *) ps)->routerid));
|
|
|
|
|
|
|
|
if(!n && (ps->type != HELLO_P))
|
|
|
|
{
|
|
|
|
OSPF_TRACE(D_PACKETS, "Received non-hello packet from uknown neighbor (%I)", sk->faddr);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2003-09-14 21:41:24 +08:00
|
|
|
|
2000-06-08 05:56:32 +08:00
|
|
|
/* Dump packet
|
2003-09-14 21:41:24 +08:00
|
|
|
pu8=(u8 *)(sk->rbuf+5*4);
|
|
|
|
for(i=0;i<ntohs(ps->length);i+=4)
|
|
|
|
DBG("%s: received %u,%u,%u,%u\n",p->name, pu8[i+0], pu8[i+1], pu8[i+2],
|
|
|
|
pu8[i+3]);
|
|
|
|
DBG("%s: received size: %u\n",p->name,size);
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (ps->type)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
|
|
|
case HELLO_P:
|
|
|
|
DBG("%s: Hello received.\n", p->name);
|
2004-06-07 03:53:52 +08:00
|
|
|
ospf_hello_receive((struct ospf_hello_packet *) ps, ifa, n, sk->faddr);
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
case DBDES_P:
|
|
|
|
DBG("%s: Database description received.\n", p->name);
|
2004-06-07 03:53:52 +08:00
|
|
|
ospf_dbdes_receive((struct ospf_dbdes_packet *) ps, ifa, n);
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
case LSREQ_P:
|
|
|
|
DBG("%s: Link state request received.\n", p->name);
|
2004-06-07 03:53:52 +08:00
|
|
|
ospf_lsreq_receive((struct ospf_lsreq_packet *) ps, ifa, n);
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
case LSUPD_P:
|
|
|
|
DBG("%s: Link state update received.\n", p->name);
|
2004-06-07 03:53:52 +08:00
|
|
|
ospf_lsupd_receive((struct ospf_lsupd_packet *) ps, ifa, n);
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
case LSACK_P:
|
|
|
|
DBG("%s: Link state ack received.\n", p->name);
|
2004-06-07 03:53:52 +08:00
|
|
|
ospf_lsack_receive((struct ospf_lsack_packet *) ps, ifa, n);
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
default:
|
2004-06-07 03:53:52 +08:00
|
|
|
log(L_ERR "%s%I - wrong type %u", mesg, sk->faddr, ps->type);
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
};
|
2004-06-07 03:53:52 +08:00
|
|
|
return 1;
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_tx_hook(sock * sk)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct proto *p;
|
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
ifa = (struct ospf_iface *) (sk->data);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
p = (struct proto *) (ifa->proto);
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("%s: TX_Hook called on interface %s\n", p->name, sk->iface->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_err_hook(sock * sk, int err UNUSED)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct proto *p;
|
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
ifa = (struct ospf_iface *) (sk->data);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2003-09-14 21:41:24 +08:00
|
|
|
p = (struct proto *) (ifa->proto);
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("%s: Err_Hook called on interface %s\n", p->name, sk->iface->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
2000-04-18 09:06:16 +08:00
|
|
|
void
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_send_to_agt(sock * sk, u16 len, struct ospf_iface *ifa, u8 state)
|
2000-04-18 09:06:16 +08:00
|
|
|
{
|
|
|
|
struct ospf_neighbor *n;
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_LIST(NODE n, ifa->neigh_list) if (n->state >= state)
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_send_to(sk, len, n->ip);
|
2003-09-14 21:41:24 +08:00
|
|
|
}
|
2000-06-06 08:08:27 +08:00
|
|
|
|
|
|
|
void
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_send_to_bdr(sock * sk, u16 len, struct ospf_iface *ifa)
|
2000-06-06 08:08:27 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_compare(ifa->drip, ipa_from_u32(0)) != 0)
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_send_to(sk, len, ifa->drip);
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_compare(ifa->bdrip, ipa_from_u32(0)) != 0)
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_send_to(sk, len, ifa->bdrip);
|
2000-06-06 08:08:27 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ospf_send_to(sock *sk, u16 len, ip_addr ip)
|
|
|
|
{
|
|
|
|
sk_send_to(sk, len, ip, OSPF_PROTO);
|
|
|
|
}
|
|
|
|
|