* [PATCH] ipv4: delete the statements limit icmp message in ip_error()
@ 2014-01-12 9:52 Duan Jiong
2014-01-15 1:04 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Duan Jiong @ 2014-01-12 9:52 UTC (permalink / raw)
To: David Miller; +Cc: netdev
Because after the icmp_send() is called, the icmpv4_xrlim_allow()
will be called to limit the icmp message too.
Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
---
net/ipv4/route.c | 21 +--------------------
1 file changed, 1 insertion(+), 20 deletions(-)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index f8da282..e521de1 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -900,10 +900,7 @@ static int ip_error(struct sk_buff *skb)
{
struct in_device *in_dev = __in_dev_get_rcu(skb->dev);
struct rtable *rt = skb_rtable(skb);
- struct inet_peer *peer;
- unsigned long now;
struct net *net;
- bool send;
int code;
net = dev_net(rt->dst.dev);
@@ -936,23 +933,7 @@ static int ip_error(struct sk_buff *skb)
break;
}
- peer = inet_getpeer_v4(net->ipv4.peers, ip_hdr(skb)->saddr, 1);
-
- send = true;
- if (peer) {
- now = jiffies;
- peer->rate_tokens += now - peer->rate_last;
- if (peer->rate_tokens > ip_rt_error_burst)
- peer->rate_tokens = ip_rt_error_burst;
- peer->rate_last = now;
- if (peer->rate_tokens >= ip_rt_error_cost)
- peer->rate_tokens -= ip_rt_error_cost;
- else
- send = false;
- inet_putpeer(peer);
- }
- if (send)
- icmp_send(skb, ICMP_DEST_UNREACH, code, 0);
+ icmp_send(skb, ICMP_DEST_UNREACH, code, 0);
out: kfree_skb(skb);
return 0;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ipv4: delete the statements limit icmp message in ip_error()
2014-01-12 9:52 [PATCH] ipv4: delete the statements limit icmp message in ip_error() Duan Jiong
@ 2014-01-15 1:04 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2014-01-15 1:04 UTC (permalink / raw)
To: duanj.fnst; +Cc: netdev
From: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Date: Sun, 12 Jan 2014 17:52:20 +0800
> Because after the icmp_send() is called, the icmpv4_xrlim_allow()
> will be called to limit the icmp message too.
>
> Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
icmpv4_xrlim_allow() is different from what this code is doing.
There are seperate controls for ip_error() reporting, namely:
> - if (peer->rate_tokens > ip_rt_error_burst)
...
> - if (peer->rate_tokens >= ip_rt_error_cost)
And this is the only place where that is taken into account.
The icmpv4_xrlim_allow() is a top level limiting on all ICMPs,
this function is limiting specific kinds.
I am not applying this patch, sorry.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-15 1:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-12 9:52 [PATCH] ipv4: delete the statements limit icmp message in ip_error() Duan Jiong
2014-01-15 1:04 ` David Miller
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).