From: Wei Dong <weid@nanjing-fnst.com>
To: netdev@vger.kernel.org
Subject: MIB "ipInHdrErrors" error
Date: Thu, 25 May 2006 16:37:42 +0800 [thread overview]
Message-ID: <1148546261.3038.14.camel@RHEL3GM> (raw)
Hi All:
When I test linux kernel 2.6.9-34, and find that kernel statistics
about ipInHdrErrors which exsits in file /proc/net/snmp doesn't increase
correctly. The criteria conform to RFC2011:
ipInHdrErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input datagrams discarded due to errors in
their IP headers, including bad checksums, version number
mismatch, other format errors, time-to-live exceeded, errors
discovered in processing their IP options, etc."
When kernel receives an IP packet containing error protocol in IP
header, kernel doesn't increase this counter "ipInHdrErrors". Also, when
kernel receives an IP packet and need to forward, but TTL=1 or TTL=0,
kernel just sends an ICMP packet to inform the sender TTL count
exceeded, and doesn't increase this counter.
The patch for this problem is shown as the following:
diff -ruN old/net/ipv4/ip_forward.c new/net/ipv4/ip_forward.c
--- old/net/ipv4/ip_forward.c 2006-05-10 10:43:30.000000000 +0800
+++ new/net/ipv4/ip_forward.c 2006-05-12 15:06:57.000000000 +0800
@@ -120,6 +120,7 @@
too_many_hops:
/* Tell the sender its packet died... */
+ IP_INC_STATS_BH(IPSTATS_MIB_INHDRERRORS);
icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0);
drop:
kfree_skb(skb);
diff -ruN old/net/ipv4/ip_input.c new/net/ipv4/ip_input.c
--- old/net/ipv4/ip_input.c 2006-05-10 10:43:31.000000000 +0800
+++ new/net/ipv4/ip_input.c 2006-05-12 15:07:27.000000000 +0800
@@ -249,6 +249,7 @@
if (!raw_sk) {
if (xfrm4_policy_check(NULL,
XFRM_POLICY_IN, skb)) {
IP_INC_STATS_BH(IPSTATS_MIB_INUNKNOWNPROTOS);
+ IP_INC_STATS_BH(IPSTATS_MIB_INHDRERRORS);
icmp_send(skb,
ICMP_DEST_UNREACH,
ICMP_PROT_UNREACH, 0);
}
Signed-off-by: Wei Dong <weid@nanjing-fnst.com>
Regards
Wei Dong
next reply other threads:[~2006-05-25 8:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-05-25 8:37 Wei Dong [this message]
2006-06-05 23:38 ` MIB "ipInHdrErrors" error David Miller
-- strict thread matches above, loose matches on Subject: below --
2006-06-12 8:49 Wei Dong
2006-06-12 20:10 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1148546261.3038.14.camel@RHEL3GM \
--to=weid@nanjing-fnst.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).