[PATCHLET] 2.5.70 invalid icmp broadcast.

From: Maciej Soltysiak (solt@dns.toxicfilms.tv)
Date: Tue Jun 10 2003 - 08:55:10 EST


Hello,

I noticed this a couple of weeks ago in the kernel log:
150.254.39.135 sent an invalid to a broadcast.

I decided to make the kernel be more verbose about it. Here is a patch
that would show:
150.254.39.135 sent an invalid ICMP type 11, code 0 error to a broadcast: 150.254.39.255 on eth1

Please apply.

Regards,
Maciej

diff -Nru linux-2.5.68.bak/net/ipv4/icmp.c linux-2.5.70/net/ipv4/icmp.c
--- linux-2.5.68.bak/net/ipv4/icmp.c 2003-05-17 14:56:11.000000000 +0200
+++ linux-2.5.70/net/ipv4/icmp.c 2003-06-09 13:21:37.000000000 +0200
@@ -663,8 +659,12 @@
             inet_addr_type(iph->daddr) == RTN_BROADCAST) {
                 if (net_ratelimit())
                         printk(KERN_WARNING "%u.%u.%u.%u sent an invalid ICMP "
- "error to a broadcast.\n",
- NIPQUAD(skb->nh.iph->saddr));
+ "type %u, code %u "
+ "error to a broadcast: %u.%u.%u.%u on %s\n",
+ NIPQUAD(iph->saddr),
+ icmph->type, icmph->code,
+ NIPQUAD(iph->daddr),
+ skb->dev->name);
                 goto out;
         }

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sun Jun 15 2003 - 22:00:23 EST