linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c
@ 2020-03-22 21:09 Florian Fainelli
  2020-03-22 23:57 ` Vladimir Oltean
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Florian Fainelli @ 2020-03-22 21:09 UTC (permalink / raw)
  To: netdev
  Cc: alobakin, olteanv, Florian Fainelli, Andrew Lunn, Vivien Didelot,
	David S. Miller, Jakub Kicinski, open list

Provide a flow_dissect callback which returns the network offset and
where to find the skb protocol, given the tags structure a common
function works for both tagging formats that are supported.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 net/dsa/tag_brcm.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/net/dsa/tag_brcm.c b/net/dsa/tag_brcm.c
index 9c3114179690..0d3f796d14a3 100644
--- a/net/dsa/tag_brcm.c
+++ b/net/dsa/tag_brcm.c
@@ -142,6 +142,27 @@ static struct sk_buff *brcm_tag_rcv_ll(struct sk_buff *skb,
 
 	return skb;
 }
+
+static int brcm_tag_flow_dissect(const struct sk_buff *skb, __be16 *proto,
+				 int *offset)
+{
+	/* We have been called on the DSA master network device after
+	 * eth_type_trans() which pulled the Ethernet header already.
+	 * Frames have one of these two layouts:
+	 * -----------------------------------
+	 * | MAC DA | MAC SA | 4b tag | Type | DSA_TAG_PROTO_BRCM
+	 * -----------------------------------
+	 * -----------------------------------
+	 * | 4b tag | MAC DA | MAC SA | Type | DSA_TAG_PROTO_BRCM_PREPEND
+	 * -----------------------------------
+	 * skb->data points 2 bytes before the actual Ethernet type field and
+	 * we have an offset of 4bytes between where skb->data and where the
+	 * payload starts.
+	 */
+	*offset = BRCM_TAG_LEN;
+	*proto = ((__be16 *)skb->data)[1];
+	return 0;
+}
 #endif
 
 #if IS_ENABLED(CONFIG_NET_DSA_TAG_BRCM)
@@ -177,6 +198,7 @@ static const struct dsa_device_ops brcm_netdev_ops = {
 	.xmit	= brcm_tag_xmit,
 	.rcv	= brcm_tag_rcv,
 	.overhead = BRCM_TAG_LEN,
+	.flow_dissect = brcm_tag_flow_dissect,
 };
 
 DSA_TAG_DRIVER(brcm_netdev_ops);
@@ -205,6 +227,7 @@ static const struct dsa_device_ops brcm_prepend_netdev_ops = {
 	.xmit	= brcm_tag_xmit_prepend,
 	.rcv	= brcm_tag_rcv_prepend,
 	.overhead = BRCM_TAG_LEN,
+	.flow_dissect = brcm_tag_flow_dissect,
 };
 
 DSA_TAG_DRIVER(brcm_prepend_netdev_ops);
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c
  2020-03-22 21:09 [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c Florian Fainelli
@ 2020-03-22 23:57 ` Vladimir Oltean
  2020-03-23 18:28 ` Vivien Didelot
  2020-03-24  4:49 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Vladimir Oltean @ 2020-03-22 23:57 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: netdev, Alexander Lobakin, Andrew Lunn, Vivien Didelot,
	David S. Miller, Jakub Kicinski, open list

On Sun, 22 Mar 2020 at 23:10, Florian Fainelli <f.fainelli@gmail.com> wrote:
>
> Provide a flow_dissect callback which returns the network offset and
> where to find the skb protocol, given the tags structure a common
> function works for both tagging formats that are supported.
>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---

Looks good to me.

>  net/dsa/tag_brcm.c | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/net/dsa/tag_brcm.c b/net/dsa/tag_brcm.c
> index 9c3114179690..0d3f796d14a3 100644
> --- a/net/dsa/tag_brcm.c
> +++ b/net/dsa/tag_brcm.c
> @@ -142,6 +142,27 @@ static struct sk_buff *brcm_tag_rcv_ll(struct sk_buff *skb,
>
>         return skb;
>  }
> +
> +static int brcm_tag_flow_dissect(const struct sk_buff *skb, __be16 *proto,
> +                                int *offset)
> +{
> +       /* We have been called on the DSA master network device after
> +        * eth_type_trans() which pulled the Ethernet header already.
> +        * Frames have one of these two layouts:
> +        * -----------------------------------
> +        * | MAC DA | MAC SA | 4b tag | Type | DSA_TAG_PROTO_BRCM
> +        * -----------------------------------
> +        * -----------------------------------
> +        * | 4b tag | MAC DA | MAC SA | Type | DSA_TAG_PROTO_BRCM_PREPEND
> +        * -----------------------------------
> +        * skb->data points 2 bytes before the actual Ethernet type field and
> +        * we have an offset of 4bytes between where skb->data and where the
> +        * payload starts.
> +        */
> +       *offset = BRCM_TAG_LEN;
> +       *proto = ((__be16 *)skb->data)[1];
> +       return 0;
> +}
>  #endif
>
>  #if IS_ENABLED(CONFIG_NET_DSA_TAG_BRCM)
> @@ -177,6 +198,7 @@ static const struct dsa_device_ops brcm_netdev_ops = {
>         .xmit   = brcm_tag_xmit,
>         .rcv    = brcm_tag_rcv,
>         .overhead = BRCM_TAG_LEN,
> +       .flow_dissect = brcm_tag_flow_dissect,
>  };
>
>  DSA_TAG_DRIVER(brcm_netdev_ops);
> @@ -205,6 +227,7 @@ static const struct dsa_device_ops brcm_prepend_netdev_ops = {
>         .xmit   = brcm_tag_xmit_prepend,
>         .rcv    = brcm_tag_rcv_prepend,
>         .overhead = BRCM_TAG_LEN,
> +       .flow_dissect = brcm_tag_flow_dissect,
>  };
>
>  DSA_TAG_DRIVER(brcm_prepend_netdev_ops);
> --
> 2.19.1
>

Regards,
-Vladimir

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c
  2020-03-22 21:09 [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c Florian Fainelli
  2020-03-22 23:57 ` Vladimir Oltean
@ 2020-03-23 18:28 ` Vivien Didelot
  2020-03-24  4:49 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Vivien Didelot @ 2020-03-23 18:28 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: netdev, alobakin, olteanv, Florian Fainelli, Andrew Lunn,
	David S. Miller, Jakub Kicinski, open list

On Sun, 22 Mar 2020 14:09:57 -0700, Florian Fainelli <f.fainelli@gmail.com> wrote:
> Provide a flow_dissect callback which returns the network offset and
> where to find the skb protocol, given the tags structure a common
> function works for both tagging formats that are supported.
> 
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Reviewed-by: Vivien Didelot <vivien.didelot@gmail.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c
  2020-03-22 21:09 [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c Florian Fainelli
  2020-03-22 23:57 ` Vladimir Oltean
  2020-03-23 18:28 ` Vivien Didelot
@ 2020-03-24  4:49 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2020-03-24  4:49 UTC (permalink / raw)
  To: f.fainelli
  Cc: netdev, alobakin, olteanv, andrew, vivien.didelot, kuba, linux-kernel

From: Florian Fainelli <f.fainelli@gmail.com>
Date: Sun, 22 Mar 2020 14:09:57 -0700

> Provide a flow_dissect callback which returns the network offset and
> where to find the skb protocol, given the tags structure a common
> function works for both tagging formats that are supported.
> 
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Applied, thanks Florian.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-24  4:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-22 21:09 [PATCH net-next] net: dsa: Implement flow dissection for tag_brcm.c Florian Fainelli
2020-03-22 23:57 ` Vladimir Oltean
2020-03-23 18:28 ` Vivien Didelot
2020-03-24  4:49 ` David Miller

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).