From: Florian Fainelli <f.fainelli@gmail.com>
To: Vladimir Oltean <olteanv@gmail.com>
Cc: Vladimir Oltean <vladimir.oltean@nxp.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
Andrew Lunn <andrew@lunn.ch>,
Vivien Didelot <vivien.didelot@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
open list <linux-kernel@vger.kernel.org>,
"nikolay@nvidia.com" <nikolay@nvidia.com>
Subject: Re: [PATCH net-next v3 1/2] net: dsa: untag the bridge pvid from rx skbs
Date: Wed, 23 Sep 2020 21:27:36 -0700 [thread overview]
Message-ID: <623b6091-aa87-dc1b-e3ed-d5d22000ccba@gmail.com> (raw)
In-Reply-To: <20200923230821.s4v4xda732ah3cxy@skbuf>
On 9/23/2020 4:08 PM, Vladimir Oltean wrote:
> On Wed, Sep 23, 2020 at 03:59:46PM -0700, Florian Fainelli wrote:
>> On 9/23/20 3:58 PM, Vladimir Oltean wrote:
>>> On Wed, Sep 23, 2020 at 03:54:59PM -0700, Florian Fainelli wrote:
>>>> Not having much luck with using __vlan_find_dev_deep_rcu() for a reason
>>>> I don't understand we trip over the proto value being neither of the two
>>>> support Ethertype and hit the BUG().
>>>>
>>>> + upper_dev = __vlan_find_dev_deep_rcu(br, htons(proto), vid);
>>>> + if (upper_dev)
>>>> + return skb;
>>>>
>>>> Any ideas?
>>>
>>> Damn...
>>> Yes, of course, the skb->protocol is still ETH_P_XDSA which is where
>>> eth_type_trans() on the master left it.
>>
>> proto was obtained from br_vlan_get_proto() a few lines above, and
>> br_vlan_get_proto() just returns br->vlan_proto which defaults to
>> htons(ETH_P_8021Q) from br_vlan_init().
>>
>> This is not skb->protocol that we are looking at AFAICT.
>
> Ok, my mistake. So what is the value of proto in vlan_proto_idx when it
> fails? To me, the call path looks pretty pass-through for vlan_proto.
At the time we crash the proto value is indeed ETH_P_XDSA, but it is not
because of the __vlan_find_dev_deep_rcu() call as I was mislead by the
traces I was looking it (on ARMv7 the LR was pointing not where I was
expecting it to), it is because of the following call trace:
netif_receive_skb_list_internal
-> __netif_receive_skb_list_core
-> __netif_receive_skb_core
-> vlan_do_receive()
That function does use skb->vlan_proto to determine the VLAN group, at
that point we have not set it but we did inherit skb->protocol instead
which is ETH_P_XDSA.
The following does work though, tested with both br0 and a br0.1 upper:
+ upper_dev = __vlan_find_dev_deep_rcu(br, htons(proto), vid);
+ if (upper_dev) {
+ skb->vlan_proto = vlan_dev_vlan_proto(upper_dev);
+ return skb;
}
I should have re-tested v2 and v3 with a bridge upper but I did not
otherwise I would have caught that. If that sounds acceptable to you as
well, I will submit that tomorrow.
Let me know what you think about the 802.1Q upper of a physical switch
port in the other email.
--
Florian
next prev parent reply other threads:[~2020-09-24 4:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-23 21:40 [PATCH net-next v3 0/2] net: dsa: b53: Configure VLANs while not filtering Florian Fainelli
2020-09-23 21:40 ` [PATCH net-next v3 1/2] net: dsa: untag the bridge pvid from rx skbs Florian Fainelli
2020-09-23 21:48 ` Vladimir Oltean
2020-09-23 21:51 ` Florian Fainelli
2020-09-23 22:01 ` Vladimir Oltean
2020-09-23 22:06 ` Florian Fainelli
2020-09-23 22:08 ` Florian Fainelli
2020-09-23 22:25 ` Vladimir Oltean
2020-09-23 22:49 ` Florian Fainelli
2020-09-23 22:54 ` Florian Fainelli
2020-09-23 22:58 ` Vladimir Oltean
2020-09-23 22:59 ` Florian Fainelli
2020-09-23 23:08 ` Vladimir Oltean
2020-09-24 4:27 ` Florian Fainelli [this message]
2020-09-23 21:40 ` [PATCH net-next v3 2/2] net: dsa: b53: Configure VLANs while not filtering Florian Fainelli
2020-09-24 1:14 ` [PATCH net-next v3 0/2] " David Miller
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=623b6091-aa87-dc1b-e3ed-d5d22000ccba@gmail.com \
--to=f.fainelli@gmail.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nikolay@nvidia.com \
--cc=olteanv@gmail.com \
--cc=vivien.didelot@gmail.com \
--cc=vladimir.oltean@nxp.com \
/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).