[IPV6]: Fix SKB leak in ip6_input_finish()

2005-08-17 Thread Linux Kernel Mailing List
tree c14fefeeb50683accf0a34e4785155f0edad030d
parent c8ac37746489f05a32a958b048f29ae45487e81e
author Patrick McHardy <[EMAIL PROTECTED]> Wed, 17 Aug 2005 11:03:41 -0700
committer David S. Miller <[EMAIL PROTECTED]> Wed, 17 Aug 2005 11:03:41 -0700

[IPV6]: Fix SKB leak in ip6_input_finish()

Changing it to how ip_input handles should fix it.

Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
Signed-off-by: David S. Miller <[EMAIL PROTECTED]>

 net/ipv6/ip6_input.c |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/net/ipv6/ip6_input.c b/net/ipv6/ip6_input.c
--- a/net/ipv6/ip6_input.c
+++ b/net/ipv6/ip6_input.c
@@ -198,12 +198,13 @@ resubmit:
if (!raw_sk) {
if (xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
IP6_INC_STATS_BH(IPSTATS_MIB_INUNKNOWNPROTOS);
-   icmpv6_param_prob(skb, ICMPV6_UNK_NEXTHDR, 
nhoff);
+   icmpv6_send(skb, ICMPV6_PARAMPROB,
+   ICMPV6_UNK_NEXTHDR, nhoff,
+   skb->dev);
}
-   } else {
+   } else
IP6_INC_STATS_BH(IPSTATS_MIB_INDELIVERS);
-   kfree_skb(skb);
-   }
+   kfree_skb(skb);
}
rcu_read_unlock();
return 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[IPV6]: Fix SKB leak in ip6_input_finish()

2005-08-17 Thread Linux Kernel Mailing List
tree 1977975176717950d6389f41cc92832111e175ae
parent 35d59efd105b3b7c1b5878dcc9d1749f41f9740f
author Patrick McHardy <[EMAIL PROTECTED]> Thu, 18 Aug 2005 02:04:22 -0700
committer David S. Miller <[EMAIL PROTECTED]> Thu, 18 Aug 2005 02:04:22 -0700

[IPV6]: Fix SKB leak in ip6_input_finish()

Changing it to how ip_input handles should fix it.

Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
Signed-off-by: David S. Miller <[EMAIL PROTECTED]>

 net/ipv6/ip6_input.c |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/net/ipv6/ip6_input.c b/net/ipv6/ip6_input.c
--- a/net/ipv6/ip6_input.c
+++ b/net/ipv6/ip6_input.c
@@ -198,12 +198,13 @@ resubmit:
if (!raw_sk) {
if (xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
IP6_INC_STATS_BH(IPSTATS_MIB_INUNKNOWNPROTOS);
-   icmpv6_param_prob(skb, ICMPV6_UNK_NEXTHDR, 
nhoff);
+   icmpv6_send(skb, ICMPV6_PARAMPROB,
+   ICMPV6_UNK_NEXTHDR, nhoff,
+   skb->dev);
}
-   } else {
+   } else
IP6_INC_STATS_BH(IPSTATS_MIB_INDELIVERS);
-   kfree_skb(skb);
-   }
+   kfree_skb(skb);
}
rcu_read_unlock();
return 0;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html