Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1658874
| From | David Miller <davem@davemloft.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] sit: reload iphdr in ipip6_rcv |
| Date | 2017-06-06 17:40 +0200 |
| Message-ID | <tPoKm-2cf-13@gated-at.bofh.it> (permalink) |
| References | <tOxG1-18T-7@gated-at.bofh.it> <tOZVF-3jm-39@gated-at.bofh.it> <tPoKm-2cf-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: 严海双 <yanhaishuang@cmss.chinamobile.com>
Date: Tue, 6 Jun 2017 10:09:45 +0800
>
>> On 5 Jun 2017, at 9:03 PM, Eric Dumazet <eric.dumazet@gmail.com> wrote:
>>
>> On Sun, 2017-06-04 at 14:43 +0800, Haishuang Yan wrote:
>>> Since iptunnel_pull_header() can call pskb_may_pull(),
>>> we must reload any pointer that was related to skb->head.
>>>
>>> Fixes: a09a4c8dd1ec ("tunnels: Remove encapsulation offloads on decap")
>>> Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
>>> ---
>>> net/ipv6/sit.c | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
>>> index 61e5902..af832e7 100644
>>> --- a/net/ipv6/sit.c
>>> +++ b/net/ipv6/sit.c
>>> @@ -657,6 +657,7 @@ static int ipip6_rcv(struct sk_buff *skb)
>>> if (iptunnel_pull_header(skb, 0, htons(ETH_P_IPV6),
>>> !net_eq(tunnel->net, dev_net(tunnel->dev))))
>>> goto out;
>>> + iph = ip_hdr(skb);
>>>
>>> err = IP_ECN_decapsulate(iph, skb);
>>> if (unlikely(err)) {
>>
>> This seems unnecessary.
>>
>> By the time ipip6_rcv() is called, we already have the guarantee the
>> IPv4 header is in skb linear part.
>>
>> Otherwise we could not use iph->saddr and iph->daddr in the call to
>> ipip6_tunnel_lookup()
>>
>> Therefore, the pskb_may_pull() is a nop in this particular case.
>
> Yes, it’s right. Thanks!
Ok, I reverted, thanks everyone.
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] sit: reload iphdr in ipip6_rcv Haishuang Yan <yanhaishuang@cmss.chinamobile.com> - 2017-06-04 09:00 +0200
Re: [PATCH] sit: reload iphdr in ipip6_rcv David Miller <davem@davemloft.net> - 2017-06-05 05:10 +0200
Re: [PATCH] sit: reload iphdr in ipip6_rcv Eric Dumazet <eric.dumazet@gmail.com> - 2017-06-05 15:10 +0200
Re: [PATCH] sit: reload iphdr in ipip6_rcv David Miller <davem@davemloft.net> - 2017-06-06 17:40 +0200
csiph-web