net: macsec: add support for specifying offload upon link creation
authorMark Starovoytov <mstarovoitov@marvell.com>
Wed, 25 Mar 2020 13:01:34 +0000 (16:01 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Mar 2020 04:34:21 +0000 (21:34 -0700)
This patch adds new netlink attribute to allow a user to (optionally)
specify the desired offload mode immediately upon MACSec link creation.

Separate iproute patch will be required to support this from user space.

Signed-off-by: Mark Starovoytov <mstarovoitov@marvell.com>
Signed-off-by: Igor Russkikh <irusskikh@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macsec.c
include/uapi/linux/if_link.h
tools/include/uapi/linux/if_link.h

index 2dad91cba459cafb082332511480450c25c63cb9..da82d7f16a09d97bb876c21e04f0a83305aad8cd 100644 (file)
@@ -1469,6 +1469,11 @@ static struct net_device *get_dev_from_nl(struct net *net,
        return dev;
 }
 
+static enum macsec_offload nla_get_offload(const struct nlattr *nla)
+{
+       return (__force enum macsec_offload)nla_get_u8(nla);
+}
+
 static sci_t nla_get_sci(const struct nlattr *nla)
 {
        return (__force sci_t)nla_get_u64(nla);
@@ -4012,8 +4017,16 @@ static int macsec_newlink(struct net *net, struct net_device *dev,
 
        macsec->real_dev = real_dev;
 
-       /* MACsec offloading is off by default */
-       macsec->offload = MACSEC_OFFLOAD_OFF;
+       if (data && data[IFLA_MACSEC_OFFLOAD])
+               macsec->offload = nla_get_offload(data[IFLA_MACSEC_OFFLOAD]);
+       else
+               /* MACsec offloading is off by default */
+               macsec->offload = MACSEC_OFFLOAD_OFF;
+
+       /* Check if the offloading mode is supported by the underlying layers */
+       if (macsec->offload != MACSEC_OFFLOAD_OFF &&
+           !macsec_check_offload(macsec->offload, macsec))
+               return -EOPNOTSUPP;
 
        if (data && data[IFLA_MACSEC_ICV_LEN])
                icv_len = nla_get_u8(data[IFLA_MACSEC_ICV_LEN]);
@@ -4056,6 +4069,20 @@ static int macsec_newlink(struct net *net, struct net_device *dev,
                        goto del_dev;
        }
 
+       /* If h/w offloading is available, propagate to the device */
+       if (macsec_is_offloaded(macsec)) {
+               const struct macsec_ops *ops;
+               struct macsec_context ctx;
+
+               ops = macsec_get_ops(macsec, &ctx);
+               if (ops) {
+                       ctx.secy = &macsec->secy;
+                       err = macsec_offload(ops->mdo_add_secy, &ctx);
+                       if (err)
+                               goto del_dev;
+               }
+       }
+
        err = register_macsec_dev(real_dev, dev);
        if (err < 0)
                goto del_dev;
index d6ccd0105c050707613a3f9355cca762bc013fe3..e204c3e4dce10d10bcc664a58420b58233f6ab5e 100644 (file)
@@ -463,6 +463,7 @@ enum {
        IFLA_MACSEC_REPLAY_PROTECT,
        IFLA_MACSEC_VALIDATION,
        IFLA_MACSEC_PAD,
+       IFLA_MACSEC_OFFLOAD,
        __IFLA_MACSEC_MAX,
 };
 
index 771371d5b99600d2cf715c6eb7ab53926cce2bc7..24cf6fe075f74863bd8093748ef9c0e79e8a6206 100644 (file)
@@ -463,6 +463,7 @@ enum {
        IFLA_MACSEC_REPLAY_PROTECT,
        IFLA_MACSEC_VALIDATION,
        IFLA_MACSEC_PAD,
+       IFLA_MACSEC_OFFLOAD,
        __IFLA_MACSEC_MAX,
 };