* [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv
@ 2017-06-08 4:32 Haishuang Yan
2017-06-08 4:32 ` [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv Haishuang Yan
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Haishuang Yan @ 2017-06-08 4:32 UTC (permalink / raw)
To: =David S. Miller, Alexey Kuznetsov, James Morris,
Hideaki YOSHIFUJI, Patrick McHardy
Cc: netdev, linux-kernel, Haishuang Yan, Pravin B Shelar
When ip_tunnel_rcv fails, the tun_dst won't be freed, so call
dst_release to free it in error code path.
CC: Pravin B Shelar <pshelar@nicira.com>
Fixes: 2e15ea390e6f ("ip_gre: Add support to collect tunnel metadata.")
Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
---
Changes in v2:
- Add the the missing Fixes information
Changes in v3:
- Free tun_dst from error code path
---
net/ipv4/ip_tunnel.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
index b878ecb..0f1d876 100644
--- a/net/ipv4/ip_tunnel.c
+++ b/net/ipv4/ip_tunnel.c
@@ -446,6 +446,8 @@ int ip_tunnel_rcv(struct ip_tunnel *tunnel, struct sk_buff *skb,
return 0;
drop:
+ if (tun_dst)
+ dst_release((struct dst_entry *)tun_dst);
kfree_skb(skb);
return 0;
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 4:32 [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Haishuang Yan
@ 2017-06-08 4:32 ` Haishuang Yan
2017-06-08 4:38 ` Alexei Starovoitov
2017-06-08 4:54 ` [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Eric Dumazet
2017-06-08 21:47 ` Pravin Shelar
2 siblings, 1 reply; 11+ messages in thread
From: Haishuang Yan @ 2017-06-08 4:32 UTC (permalink / raw)
To: =David S. Miller, Alexey Kuznetsov, James Morris,
Hideaki YOSHIFUJI, Patrick McHardy
Cc: netdev, linux-kernel, Haishuang Yan, Alexei Starovoitov
When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
dst_release to free it in error code path.
CC: Alexei Starovoitov <ast@fb.com>
Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
---
Changes in v2:
- Add the the missing Fixes information
Changes in v3:
- Free tun_dst from error code path
---
net/ipv6/ip6_tunnel.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
index 9b37f97..ef99d59 100644
--- a/net/ipv6/ip6_tunnel.c
+++ b/net/ipv6/ip6_tunnel.c
@@ -859,6 +859,8 @@ static int __ip6_tnl_rcv(struct ip6_tnl *tunnel, struct sk_buff *skb,
return 0;
drop:
+ if (tun_dst)
+ dst_release((struct dst_entry *)tun_dst);
kfree_skb(skb);
return 0;
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 4:32 ` [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv Haishuang Yan
@ 2017-06-08 4:38 ` Alexei Starovoitov
2017-06-08 4:50 ` Eric Dumazet
[not found] ` <3A078CA0-C9C8-45D2-A359-1FB38B25792D@cmss.chinamobile.com>
0 siblings, 2 replies; 11+ messages in thread
From: Alexei Starovoitov @ 2017-06-08 4:38 UTC (permalink / raw)
To: Haishuang Yan; +Cc: =David S. Miller, netdev, Eric Dumazet
On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
> dst_release to free it in error code path.
>
> CC: Alexei Starovoitov <ast@fb.com>
> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
I don't get it. Why did you send another version of the patch?
What was wrong with previous approach that myself and Eric acked?
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 4:38 ` Alexei Starovoitov
@ 2017-06-08 4:50 ` Eric Dumazet
[not found] ` <3A078CA0-C9C8-45D2-A359-1FB38B25792D@cmss.chinamobile.com>
1 sibling, 0 replies; 11+ messages in thread
From: Eric Dumazet @ 2017-06-08 4:50 UTC (permalink / raw)
To: Alexei Starovoitov; +Cc: Haishuang Yan, =David S. Miller, netdev
On Wed, Jun 7, 2017 at 9:38 PM, Alexei Starovoitov
<alexei.starovoitov@gmail.com> wrote:
> On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
>> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
>> dst_release to free it in error code path.
>>
>> CC: Alexei Starovoitov <ast@fb.com>
>> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
>> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>
> I don't get it. Why did you send another version of the patch?
> What was wrong with previous approach that myself and Eric acked?
>
Answer lies in Pravin feedback on v2 of the patch on ipv4 side.
^ permalink raw reply [flat|nested] 11+ messages in thread
[parent not found: <3A078CA0-C9C8-45D2-A359-1FB38B25792D@cmss.chinamobile.com>]
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
[not found] ` <3A078CA0-C9C8-45D2-A359-1FB38B25792D@cmss.chinamobile.com>
@ 2017-06-08 5:00 ` Alexei Starovoitov
2017-06-08 7:33 ` 严海双
2017-06-08 13:18 ` David Miller
0 siblings, 2 replies; 11+ messages in thread
From: Alexei Starovoitov @ 2017-06-08 5:00 UTC (permalink / raw)
To: 严海双; +Cc: =David S. Miller, netdev, Eric Dumazet
On Thu, Jun 08, 2017 at 12:56:58PM +0800, 严海双 wrote:
>
> > On 8 Jun 2017, at 12:38 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
> >
> > On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
> >> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
> >> dst_release to free it in error code path.
> >>
> >> CC: Alexei Starovoitov <ast@fb.com>
> >> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
> >> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
> >
> > I don't get it. Why did you send another version of the patch?
> > What was wrong with previous approach that myself and Eric acked?
> >
> >
>
> Sorry for your confusing, because Pravin Shelar give a feedback in ipv4 patch, see below:
hmm. right.
Then it raises the question: How did you test this and previous patch?
since previous version was sort-of fixing the bug, but completely
breaking the logic...
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 5:00 ` Alexei Starovoitov
@ 2017-06-08 7:33 ` 严海双
2017-06-08 13:59 ` David Miller
2017-06-08 13:18 ` David Miller
1 sibling, 1 reply; 11+ messages in thread
From: 严海双 @ 2017-06-08 7:33 UTC (permalink / raw)
To: Alexei Starovoitov; +Cc: =David S. Miller, netdev, Eric Dumazet
> On 8 Jun 2017, at 1:00 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>
> On Thu, Jun 08, 2017 at 12:56:58PM +0800, 严海双 wrote:
>>
>>> On 8 Jun 2017, at 12:38 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>>>
>>> On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
>>>> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
>>>> dst_release to free it in error code path.
>>>>
>>>> CC: Alexei Starovoitov <ast@fb.com>
>>>> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
>>>> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>>>
>>> I don't get it. Why did you send another version of the patch?
>>> What was wrong with previous approach that myself and Eric acked?
>>>
>>>
>>
>> Sorry for your confusing, because Pravin Shelar give a feedback in ipv4 patch, see below:
>
> hmm. right.
> Then it raises the question: How did you test this and previous patch?
>
> since previous version was sort-of fixing the bug, but completely
> breaking the logic...
>
>
Sorry for my previous fault, I tried to fix this problem in theory without testing carefully.
I have tested the latest patches, it works ok now.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 7:33 ` 严海双
@ 2017-06-08 13:59 ` David Miller
2017-06-09 0:23 ` 严海双
0 siblings, 1 reply; 11+ messages in thread
From: David Miller @ 2017-06-08 13:59 UTC (permalink / raw)
To: yanhaishuang; +Cc: alexei.starovoitov, netdev, edumazet
From: 严海双 <yanhaishuang@cmss.chinamobile.com>
Date: Thu, 8 Jun 2017 15:33:58 +0800
>> On 8 Jun 2017, at 1:00 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>>
>> On Thu, Jun 08, 2017 at 12:56:58PM +0800, 严海双 wrote:
>>>
>>>> On 8 Jun 2017, at 12:38 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>>>>
>>>> On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
>>>>> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
>>>>> dst_release to free it in error code path.
>>>>>
>>>>> CC: Alexei Starovoitov <ast@fb.com>
>>>>> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
>>>>> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>>>>
>>>> I don't get it. Why did you send another version of the patch?
>>>> What was wrong with previous approach that myself and Eric acked?
>>>>
>>>>
>>>
>>> Sorry for your confusing, because Pravin Shelar give a feedback in ipv4 patch, see below:
>>
>> hmm. right.
>> Then it raises the question: How did you test this and previous patch?
>>
>> since previous version was sort-of fixing the bug, but completely
>> breaking the logic...
>>
>>
>
> Sorry for my previous fault, I tried to fix this problem in theory without testing carefully.
> I have tested the latest patches, it works ok now.
This does not instill a lot of confidence in us.
I want someone else to test these patches, then you can resubmit them
with proper Tested-by: tags added, since you thought it was OK to submit
a patch without testing in the first place.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 13:59 ` David Miller
@ 2017-06-09 0:23 ` 严海双
0 siblings, 0 replies; 11+ messages in thread
From: 严海双 @ 2017-06-09 0:23 UTC (permalink / raw)
To: David Miller; +Cc: alexei.starovoitov, netdev, edumazet
> On 8 Jun 2017, at 9:59 PM, David Miller <davem@davemloft.net> wrote:
>
> From: 严海双 <yanhaishuang@cmss.chinamobile.com>
> Date: Thu, 8 Jun 2017 15:33:58 +0800
>
>>> On 8 Jun 2017, at 1:00 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>>>
>>> On Thu, Jun 08, 2017 at 12:56:58PM +0800, 严海双 wrote:
>>>>
>>>>> On 8 Jun 2017, at 12:38 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>>>>>
>>>>> On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
>>>>>> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
>>>>>> dst_release to free it in error code path.
>>>>>>
>>>>>> CC: Alexei Starovoitov <ast@fb.com>
>>>>>> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
>>>>>> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>>>>>
>>>>> I don't get it. Why did you send another version of the patch?
>>>>> What was wrong with previous approach that myself and Eric acked?
>>>>>
>>>>>
>>>>
>>>> Sorry for your confusing, because Pravin Shelar give a feedback in ipv4 patch, see below:
>>>
>>> hmm. right.
>>> Then it raises the question: How did you test this and previous patch?
>>>
>>> since previous version was sort-of fixing the bug, but completely
>>> breaking the logic...
>>>
>>>
>>
>> Sorry for my previous fault, I tried to fix this problem in theory without testing carefully.
>> I have tested the latest patches, it works ok now.
>
> This does not instill a lot of confidence in us.
>
> I want someone else to test these patches, then you can resubmit them
> with proper Tested-by: tags added, since you thought it was OK to submit
> a patch without testing in the first place.
Ok, thanks.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv
2017-06-08 5:00 ` Alexei Starovoitov
2017-06-08 7:33 ` 严海双
@ 2017-06-08 13:18 ` David Miller
1 sibling, 0 replies; 11+ messages in thread
From: David Miller @ 2017-06-08 13:18 UTC (permalink / raw)
To: alexei.starovoitov; +Cc: yanhaishuang, netdev, edumazet
From: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Date: Wed, 7 Jun 2017 22:00:43 -0700
> On Thu, Jun 08, 2017 at 12:56:58PM +0800, 严海双 wrote:
>>
>> > On 8 Jun 2017, at 12:38 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
>> >
>> > On Thu, Jun 08, 2017 at 12:32:44PM +0800, Haishuang Yan wrote:
>> >> When __ip6_tnl_rcv fails, the tun_dst won't be freed, so call
>> >> dst_release to free it in error code path.
>> >>
>> >> CC: Alexei Starovoitov <ast@fb.com>
>> >> Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnels")
>> >> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>> >
>> > I don't get it. Why did you send another version of the patch?
>> > What was wrong with previous approach that myself and Eric acked?
>> >
>> >
>>
>> Sorry for your confusing, because Pravin Shelar give a feedback in ipv4 patch, see below:
>
> hmm. right.
> Then it raises the question: How did you test this and previous patch?
>
> since previous version was sort-of fixing the bug, but completely
> breaking the logic...
Anyone who posts new patches this patch isn't testing things thoroughly at all.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv
2017-06-08 4:32 [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Haishuang Yan
2017-06-08 4:32 ` [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv Haishuang Yan
@ 2017-06-08 4:54 ` Eric Dumazet
2017-06-08 21:47 ` Pravin Shelar
2 siblings, 0 replies; 11+ messages in thread
From: Eric Dumazet @ 2017-06-08 4:54 UTC (permalink / raw)
To: Haishuang Yan; +Cc: netdev, linux-kernel, Pravin B Shelar
On Thu, 2017-06-08 at 12:32 +0800, Haishuang Yan wrote:
> When ip_tunnel_rcv fails, the tun_dst won't be freed, so call
> dst_release to free it in error code path.
>
> CC: Pravin B Shelar <pshelar@nicira.com>
> Fixes: 2e15ea390e6f ("ip_gre: Add support to collect tunnel metadata.")
> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>
> ---
> Changes in v2:
> - Add the the missing Fixes information
> Changes in v3:
> - Free tun_dst from error code path
> ---
> net/ipv4/ip_tunnel.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
> index b878ecb..0f1d876 100644
> --- a/net/ipv4/ip_tunnel.c
> +++ b/net/ipv4/ip_tunnel.c
> @@ -446,6 +446,8 @@ int ip_tunnel_rcv(struct ip_tunnel *tunnel, struct sk_buff *skb,
> return 0;
>
> drop:
> + if (tun_dst)
> + dst_release((struct dst_entry *)tun_dst);
> kfree_skb(skb);
> return 0;
> }
Acked-by: Eric Dumazet <edumazet@google.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv
2017-06-08 4:32 [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Haishuang Yan
2017-06-08 4:32 ` [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv Haishuang Yan
2017-06-08 4:54 ` [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Eric Dumazet
@ 2017-06-08 21:47 ` Pravin Shelar
2 siblings, 0 replies; 11+ messages in thread
From: Pravin Shelar @ 2017-06-08 21:47 UTC (permalink / raw)
To: Haishuang Yan
Cc: =David S. Miller, Alexey Kuznetsov, James Morris,
Hideaki YOSHIFUJI, Patrick McHardy,
Linux Kernel Network Developers, linux-kernel, Pravin B Shelar
On Wed, Jun 7, 2017 at 9:32 PM, Haishuang Yan
<yanhaishuang@cmss.chinamobile.com> wrote:
> When ip_tunnel_rcv fails, the tun_dst won't be freed, so call
> dst_release to free it in error code path.
>
> CC: Pravin B Shelar <pshelar@nicira.com>
> Fixes: 2e15ea390e6f ("ip_gre: Add support to collect tunnel metadata.")
> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>
> ---
> Changes in v2:
> - Add the the missing Fixes information
> Changes in v3:
> - Free tun_dst from error code path
> ---
Acked-by: Pravin B Shelar <pshelar@ovn.org>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2017-06-09 0:23 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-08 4:32 [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Haishuang Yan
2017-06-08 4:32 ` [PATCH v3 2/2] ip6_tunnel: fix potential issue in __ip6_tnl_rcv Haishuang Yan
2017-06-08 4:38 ` Alexei Starovoitov
2017-06-08 4:50 ` Eric Dumazet
[not found] ` <3A078CA0-C9C8-45D2-A359-1FB38B25792D@cmss.chinamobile.com>
2017-06-08 5:00 ` Alexei Starovoitov
2017-06-08 7:33 ` 严海双
2017-06-08 13:59 ` David Miller
2017-06-09 0:23 ` 严海双
2017-06-08 13:18 ` David Miller
2017-06-08 4:54 ` [PATCH v3 1/2] ip_tunnel: fix potential issue in ip_tunnel_rcv Eric Dumazet
2017-06-08 21:47 ` Pravin Shelar
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).