From: Oliver Herms <oliver.peter.herms@gmail.com>
To: Eric Dumazet <eric.dumazet@gmail.com>,
davem@davemloft.net, kuznet@ms2.inr.ac.ru,
yoshfuji@linux-ipv6.org
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH] net: ip/tnl: Set iph->id only when don't fragment is not set
Date: Sun, 24 Nov 2019 14:02:52 +0100 [thread overview]
Message-ID: <77eb8b03-f586-b766-1df9-af441a2df16d@gmail.com> (raw)
In-Reply-To: <fa37491f-3604-bd3b-7518-dab654b641b6@gmail.com>
On 23.11.19 18:53, Eric Dumazet wrote:
> Official sources for this assertion please, so that we can double check if you
> implemented the proper avoidance ?
From RFC 6864 Section 4.1:
"The IPv4 ID field MUST NOT be used for purposes other than
fragmentation and reassembly."
>> net/ipv4/ip_tunnel_core.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/net/ipv4/ip_tunnel_core.c b/net/ipv4/ip_tunnel_core.c
>> index 1452a97914a0..8636c1e0e7b7 100644
>> --- a/net/ipv4/ip_tunnel_core.c
>> +++ b/net/ipv4/ip_tunnel_core.c
>> @@ -73,7 +73,9 @@ void iptunnel_xmit(struct sock *sk, struct rtable *rt, struct sk_buff *skb,
>> iph->daddr = dst;
>> iph->saddr = src;
>> iph->ttl = ttl;
>> - __ip_select_ident(net, iph, skb_shinfo(skb)->gso_segs ?: 1);
>> +
>> + if (unlikely((iph->frag_off & htons(IP_DF)) == false))
>
> This unlikely() seems wrong to me.
>
> You do not know what are the odds of IP_DF being set or not.
Right. I'll send a corrected patch.
>> + __ip_select_ident(net, iph, skb_shinfo(skb)->gso_segs ?: 1);
> So we are going to send 2 bytes with garbage if we do not call __ip_select_ident()
>
> This would cause various security threats, since the garbage might reveal a secret.
So we should set it to zero then.
prev parent reply other threads:[~2019-11-24 13:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-23 14:58 [PATCH] net: ip/tnl: Set iph->id only when don't fragment is not set Oliver Herms
2019-11-23 17:53 ` Eric Dumazet
2019-11-23 18:29 ` Joe Perches
2019-11-24 13:02 ` Oliver Herms [this message]
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=77eb8b03-f586-b766-1df9-af441a2df16d@gmail.com \
--to=oliver.peter.herms@gmail.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=kuznet@ms2.inr.ac.ru \
--cc=netdev@vger.kernel.org \
--cc=yoshfuji@linux-ipv6.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).