* [PATCH net-next v5 1/2] macsec: add support for IFLA_MACSEC_OFFLOAD in macsec_changelink
@ 2022-12-09 10:31 ehakim
2022-12-09 11:17 ` Jiri Pirko
0 siblings, 1 reply; 3+ messages in thread
From: ehakim @ 2022-12-09 10:31 UTC (permalink / raw)
To: netdev
Cc: raeds, davem, edumazet, kuba, pabeni, sd, atenart, jiri,
Emeel Hakim, Jiri Pirko
From: Emeel Hakim <ehakim@nvidia.com>
Add support for changing Macsec offload selection through the
netlink layer by implementing the relevant changes in
macsec_changelink.
Since the handling in macsec_changelink is similar to macsec_upd_offload,
update macsec_upd_offload to use a common helper function to avoid
duplication.
Example for setting offload for a macsec device:
ip link set macsec0 type macsec offload mac
Reviewed-by: Raed Salem <raeds@nvidia.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Signed-off-by: Emeel Hakim <ehakim@nvidia.com>
---
V4 -> V5: - Fail immediately if macsec ops does not exist
V3 -> V4: - Dont pass whole attributes data to macsec_update_offload, just pass relevant attribute.
- Fix code style.
- Remove macsec_changelink_upd_offload
V2 -> V3: - Split the original patch into 3 patches, the macsec_rtnl_policy related change (separate patch)
to be sent to "net" branch as a fix.
- Change the original patch title to make it clear that it's only adding IFLA_MACSEC_OFFLOAD
to changelink
V1 -> V2: Add common helper to avoid duplicating code
drivers/net/macsec.c | 101 +++++++++++++++++++++++--------------------
1 file changed, 53 insertions(+), 48 deletions(-)
diff --git a/drivers/net/macsec.c b/drivers/net/macsec.c
index d73b9d535b7a..cdc7124efaf0 100644
--- a/drivers/net/macsec.c
+++ b/drivers/net/macsec.c
@@ -2583,38 +2583,16 @@ static bool macsec_is_configured(struct macsec_dev *macsec)
return false;
}
-static int macsec_upd_offload(struct sk_buff *skb, struct genl_info *info)
+static int macsec_update_offload(struct net_device *dev, enum macsec_offload offload)
{
- struct nlattr *tb_offload[MACSEC_OFFLOAD_ATTR_MAX + 1];
- enum macsec_offload offload, prev_offload;
- int (*func)(struct macsec_context *ctx);
- struct nlattr **attrs = info->attrs;
- struct net_device *dev;
+ enum macsec_offload prev_offload;
const struct macsec_ops *ops;
struct macsec_context ctx;
struct macsec_dev *macsec;
- int ret;
-
- if (!attrs[MACSEC_ATTR_IFINDEX])
- return -EINVAL;
-
- if (!attrs[MACSEC_ATTR_OFFLOAD])
- return -EINVAL;
-
- if (nla_parse_nested_deprecated(tb_offload, MACSEC_OFFLOAD_ATTR_MAX,
- attrs[MACSEC_ATTR_OFFLOAD],
- macsec_genl_offload_policy, NULL))
- return -EINVAL;
+ int ret = 0;
- dev = get_dev_from_nl(genl_info_net(info), attrs);
- if (IS_ERR(dev))
- return PTR_ERR(dev);
macsec = macsec_priv(dev);
- if (!tb_offload[MACSEC_OFFLOAD_ATTR_TYPE])
- return -EINVAL;
-
- offload = nla_get_u8(tb_offload[MACSEC_OFFLOAD_ATTR_TYPE]);
if (macsec->offload == offload)
return 0;
@@ -2627,43 +2605,64 @@ static int macsec_upd_offload(struct sk_buff *skb, struct genl_info *info)
if (netif_running(dev))
return -EBUSY;
- rtnl_lock();
-
- prev_offload = macsec->offload;
- macsec->offload = offload;
-
/* Check if the device already has rules configured: we do not support
* rules migration.
*/
- if (macsec_is_configured(macsec)) {
- ret = -EBUSY;
- goto rollback;
- }
+ if (macsec_is_configured(macsec))
+ return -EBUSY;
+
+ prev_offload = macsec->offload;
ops = __macsec_get_ops(offload == MACSEC_OFFLOAD_OFF ? prev_offload : offload,
macsec, &ctx);
- if (!ops) {
- ret = -EOPNOTSUPP;
- goto rollback;
- }
+ if (!ops)
+ return -EOPNOTSUPP;
- if (prev_offload == MACSEC_OFFLOAD_OFF)
- func = ops->mdo_add_secy;
- else
- func = ops->mdo_del_secy;
+ macsec->offload = offload;
ctx.secy = &macsec->secy;
- ret = macsec_offload(func, &ctx);
+ ret = offload == MACSEC_OFFLOAD_OFF ? macsec_offload(ops->mdo_del_secy, &ctx)
+ : macsec_offload(ops->mdo_add_secy, &ctx);
if (ret)
- goto rollback;
+ macsec->offload = prev_offload;
- rtnl_unlock();
- return 0;
+ return ret;
+}
+
+static int macsec_upd_offload(struct sk_buff *skb, struct genl_info *info)
+{
+ struct nlattr *tb_offload[MACSEC_OFFLOAD_ATTR_MAX + 1];
+ struct nlattr **attrs = info->attrs;
+ enum macsec_offload offload;
+ struct net_device *dev;
+ int ret;
+
+ if (!attrs[MACSEC_ATTR_IFINDEX])
+ return -EINVAL;
+
+ if (!attrs[MACSEC_ATTR_OFFLOAD])
+ return -EINVAL;
+
+ if (nla_parse_nested_deprecated(tb_offload, MACSEC_OFFLOAD_ATTR_MAX,
+ attrs[MACSEC_ATTR_OFFLOAD],
+ macsec_genl_offload_policy, NULL))
+ return -EINVAL;
+
+ dev = get_dev_from_nl(genl_info_net(info), attrs);
+ if (IS_ERR(dev))
+ return PTR_ERR(dev);
-rollback:
- macsec->offload = prev_offload;
+ if (!tb_offload[MACSEC_OFFLOAD_ATTR_TYPE])
+ return -EINVAL;
+
+ offload = nla_get_u8(tb_offload[MACSEC_OFFLOAD_ATTR_TYPE]);
+
+ rtnl_lock();
+
+ ret = macsec_update_offload(dev, offload);
rtnl_unlock();
+
return ret;
}
@@ -3831,6 +3830,12 @@ static int macsec_changelink(struct net_device *dev, struct nlattr *tb[],
if (ret)
goto cleanup;
+ if (data[IFLA_MACSEC_OFFLOAD]) {
+ ret = macsec_update_offload(dev, nla_get_u8(data[IFLA_MACSEC_OFFLOAD]));
+ if (ret)
+ goto cleanup;
+ }
+
/* If h/w offloading is available, propagate to the device */
if (macsec_is_offloaded(macsec)) {
const struct macsec_ops *ops;
--
2.21.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v5 1/2] macsec: add support for IFLA_MACSEC_OFFLOAD in macsec_changelink
2022-12-09 10:31 [PATCH net-next v5 1/2] macsec: add support for IFLA_MACSEC_OFFLOAD in macsec_changelink ehakim
@ 2022-12-09 11:17 ` Jiri Pirko
2022-12-09 11:28 ` Emeel Hakim
0 siblings, 1 reply; 3+ messages in thread
From: Jiri Pirko @ 2022-12-09 11:17 UTC (permalink / raw)
To: ehakim
Cc: netdev, raeds, davem, edumazet, kuba, pabeni, sd, atenart,
Jiri Pirko
Fri, Dec 09, 2022 at 11:31:08AM CET, ehakim@nvidia.com wrote:
>From: Emeel Hakim <ehakim@nvidia.com>
>
>Add support for changing Macsec offload selection through the
>netlink layer by implementing the relevant changes in
>macsec_changelink.
>
>Since the handling in macsec_changelink is similar to macsec_upd_offload,
>update macsec_upd_offload to use a common helper function to avoid
>duplication.
>
>Example for setting offload for a macsec device:
> ip link set macsec0 type macsec offload mac
>
>Reviewed-by: Raed Salem <raeds@nvidia.com>
>Reviewed-by: Jiri Pirko <jiri@nvidia.com>
You have to drop this tag when patch changes.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH net-next v5 1/2] macsec: add support for IFLA_MACSEC_OFFLOAD in macsec_changelink
2022-12-09 11:17 ` Jiri Pirko
@ 2022-12-09 11:28 ` Emeel Hakim
0 siblings, 0 replies; 3+ messages in thread
From: Emeel Hakim @ 2022-12-09 11:28 UTC (permalink / raw)
To: Jiri Pirko
Cc: netdev@vger.kernel.org, Raed Salem, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
sd@queasysnail.net, atenart@kernel.org, Jiri Pirko
> -----Original Message-----
> From: Jiri Pirko <jiri@resnulli.us>
> Sent: Friday, 9 December 2022 13:17
> To: Emeel Hakim <ehakim@nvidia.com>
> Cc: netdev@vger.kernel.org; Raed Salem <raeds@nvidia.com>;
> davem@davemloft.net; edumazet@google.com; kuba@kernel.org;
> pabeni@redhat.com; sd@queasysnail.net; atenart@kernel.org; Jiri Pirko
> <jiri@nvidia.com>
> Subject: Re: [PATCH net-next v5 1/2] macsec: add support for
> IFLA_MACSEC_OFFLOAD in macsec_changelink
>
> External email: Use caution opening links or attachments
>
>
> Fri, Dec 09, 2022 at 11:31:08AM CET, ehakim@nvidia.com wrote:
> >From: Emeel Hakim <ehakim@nvidia.com>
> >
> >Add support for changing Macsec offload selection through the netlink
> >layer by implementing the relevant changes in macsec_changelink.
> >
> >Since the handling in macsec_changelink is similar to
> >macsec_upd_offload, update macsec_upd_offload to use a common helper
> >function to avoid duplication.
> >
> >Example for setting offload for a macsec device:
> > ip link set macsec0 type macsec offload mac
> >
> >Reviewed-by: Raed Salem <raeds@nvidia.com>
> >Reviewed-by: Jiri Pirko <jiri@nvidia.com>
>
> You have to drop this tag when patch changes.
Ack
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-12-09 11:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-09 10:31 [PATCH net-next v5 1/2] macsec: add support for IFLA_MACSEC_OFFLOAD in macsec_changelink ehakim
2022-12-09 11:17 ` Jiri Pirko
2022-12-09 11:28 ` Emeel Hakim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox