From: Ahmed Abdelsalam <ahabdels@gmail.com>
To: David Miller <davem@davemloft.net>
Cc: kuznet@ms2.inr.ac.ru, yoshfuji@linux-ipv6.org, kuba@kernel.org,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
andrea.mayer@uniroma2.it
Subject: Re: [net-next] seg6: using DSCP of inner IPv4 packets
Date: Fri, 31 Jul 2020 19:31:20 +0200 [thread overview]
Message-ID: <64f8d98d-3195-9bb0-858f-18a9625ccf8e@gmail.com> (raw)
In-Reply-To: <20200730.164424.85007408369570229.davem@davemloft.net>
I will refactor the code of this function and submit a new patch.
Ahmed
On 31/07/2020 01:44, David Miller wrote:
> From: Ahmed Abdelsalam <ahabdels@gmail.com>
> Date: Tue, 28 Jul 2020 12:20:44 +0000
>
>> This patch allows copying the DSCP from inner IPv4 header to the
>> outer IPv6 header, when doing SRv6 Encapsulation.
>>
>> This allows forwarding packet across the SRv6 fabric based on their
>> original traffic class.
>>
>> Signed-off-by: Ahmed Abdelsalam <ahabdels@gmail.com>
>
> The conditionals in this function are now a mess.
>
>> - inner_hdr = ipv6_hdr(skb);
>> + if (skb->protocol == htons(ETH_P_IPV6))
>> + inner_hdr = ipv6_hdr(skb);
>> + else
>> + inner_ipv4_hdr = ip_hdr(skb);
>> +
>
> You assume that if skb->protocol is not ipv6 then it is ipv4.
>
>> @@ -138,6 +143,10 @@ int seg6_do_srh_encap(struct sk_buff *skb, struct ipv6_sr_hdr *osrh, int proto)
>> ip6_flow_hdr(hdr, ip6_tclass(ip6_flowinfo(inner_hdr)),
>> flowlabel);
>> hdr->hop_limit = inner_hdr->hop_limit;
>> + } else if (skb->protocol == htons(ETH_P_IP)) {
>> + ip6_flow_hdr(hdr, inner_ipv4_hdr->tos, flowlabel);
>> + hdr->hop_limit = inner_ipv4_hdr->ttl;
>> + memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
>> } else {
>> ip6_flow_hdr(hdr, 0, flowlabel);
>> hdr->hop_limit = ip6_dst_hoplimit(skb_dst(skb));
>
> But this code did not make that assumption at all.
>
> Only one of the two can be correct.
>
> The conditional assignment is also very ugly, you have two pointers
> conditionally initialized. The compiler is going to have a hard time
> figuring out that each pointer is only used in the code path where it
> is guaranteed to be initialiazed.
>
> And it can't do that, as far as the compiler knows, skb->protocol can
> change between those two locations. It MUST assume that can happen if
> there are any functions calls whatsoever between these two code points.
>
> This function has to be sanitized, with better handling of access to
> the inner protocol header values, before I am willing to apply this.
>
prev parent reply other threads:[~2020-07-31 17:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-28 12:20 Ahmed Abdelsalam
2020-07-30 23:44 ` David Miller
2020-07-31 17:31 ` Ahmed Abdelsalam [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=64f8d98d-3195-9bb0-858f-18a9625ccf8e@gmail.com \
--to=ahabdels@gmail.com \
--cc=andrea.mayer@uniroma2.it \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=kuznet@ms2.inr.ac.ru \
--cc=linux-kernel@vger.kernel.org \
--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
all inboxes | Powered by JetHome®