From ff73f1d63d2d1e49737ea2471dc5cb92e9591847 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Wed, 10 May 2000 23:41:18 +0000 Subject: More robust tests in packet receiving. --- proto/ospf/packet.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'proto/ospf/packet.c') diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c index 37156d3..67db361 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -51,15 +51,11 @@ ospf_rx_hook(sock *sk, int size) { #ifndef IPV6 struct ospf_packet *ps; - struct ospf_iface *ifa; - struct proto *p; + struct ospf_iface *ifa=(struct ospf_iface *)(sk->data); + struct proto *p=(struct proto *)(ifa->proto); int i; u8 *pu8; - - ifa=(struct ospf_iface *)(sk->data); - - p=(struct proto *)(ifa->proto); DBG("%s: RX_Hook called on interface %s.\n",p->name, sk->iface->name); ps = (struct ospf_packet *) ipv4_skip_header(sk->rbuf, &size); @@ -77,7 +73,7 @@ ospf_rx_hook(sock *sk, int size) return(1); } - if(ntohs(ps->length) != size) + if((ntohs(ps->length)!=size)||(size!=(4*(size/4)))) { log("%s: Bad OSPF packet received: size field does not match", p->name); log("%s: Discarding",p->name); -- cgit v1.2.3