This patch provides an implementation of the genetlink commands
to associate a given HMAC key identifier with an hashing algorithm
and a secret. It also provides a per-interface sysctl called
seg6_require_hmac, allowing a user-defined policy for processing
HMAC-signed SR-enabled packets. A value of -1 means that the HMAC
field will always be ignored. A value of 0 means that if an HMAC
field is present, its validity will be enforced (the packet is
dropped is the signature is incorrect). Finally, a value of 1 means
that any SR-enabled packet that does not contain an HMAC signature
or whose signature is incorrect will be dropped.

Signed-off-by: David Lebrun <david.leb...@uclouvain.be>
---
 include/linux/ipv6.h      |   1 +
 include/net/seg6.h        |   5 +-
 include/net/seg6_hmac.h   |   1 +
 include/uapi/linux/ipv6.h |   1 +
 net/ipv6/Makefile         |   2 +-
 net/ipv6/addrconf.c       |  10 +++
 net/ipv6/seg6.c           | 155 +++++++++++++++++++++++++++++++++++++++++++++-
 net/ipv6/seg6_hmac.c      |   2 +-
 8 files changed, 172 insertions(+), 5 deletions(-)

diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h
index 75395ad..4354d55 100644
--- a/include/linux/ipv6.h
+++ b/include/linux/ipv6.h
@@ -66,6 +66,7 @@ struct ipv6_devconf {
        __s32           keep_addr_on_down;
 #ifdef CONFIG_IPV6_SEG6
        __s32           seg6_enabled;
+       __s32           seg6_require_hmac;
 #endif
 
        struct ctl_table_header *sysctl_header;
diff --git a/include/net/seg6.h b/include/net/seg6.h
index 228f90f..f833c1f 100644
--- a/include/net/seg6.h
+++ b/include/net/seg6.h
@@ -17,10 +17,12 @@
 #include <linux/net.h>
 #include <linux/ipv6.h>
 #include <net/lwtunnel.h>
+#include <net/seg6_hmac.h>
 
 struct seg6_pernet_data {
        struct mutex lock;
        struct in6_addr __rcu *tun_src;
+       struct list_head hmac_infos;
 };
 
 static inline struct seg6_pernet_data *seg6_pernet(struct net *net)
@@ -44,5 +46,6 @@ seg6_lwtunnel_encap(struct lwtunnel_state *lwtstate)
        return (struct seg6_iptunnel_encap *)lwtstate->data;
 }
 
-#endif
+extern struct sr6_tlv_hmac *seg6_get_tlv_hmac(struct ipv6_sr_hdr *srh);
 
+#endif
diff --git a/include/net/seg6_hmac.h b/include/net/seg6_hmac.h
index 6e5ee6a..9646b7e 100644
--- a/include/net/seg6_hmac.h
+++ b/include/net/seg6_hmac.h
@@ -21,6 +21,7 @@
 #include <linux/ipv6.h>
 #include <linux/route.h>
 #include <net/seg6.h>
+#include <linux/seg6.h>
 #include <linux/seg6_hmac.h>
 
 #define SEG6_HMAC_MAX_DIGESTSIZE       160
diff --git a/include/uapi/linux/ipv6.h b/include/uapi/linux/ipv6.h
index 7ff1d65..53561be 100644
--- a/include/uapi/linux/ipv6.h
+++ b/include/uapi/linux/ipv6.h
@@ -180,6 +180,7 @@ enum {
        DEVCONF_KEEP_ADDR_ON_DOWN,
        DEVCONF_RTR_SOLICIT_MAX_INTERVAL,
        DEVCONF_SEG6_ENABLED,
+       DEVCONF_SEG6_REQUIRE_HMAC,
        DEVCONF_MAX
 };
 
diff --git a/net/ipv6/Makefile b/net/ipv6/Makefile
index 2fe7b54..95dcb89 100644
--- a/net/ipv6/Makefile
+++ b/net/ipv6/Makefile
@@ -44,7 +44,7 @@ obj-$(CONFIG_IPV6_SIT) += sit.o
 obj-$(CONFIG_IPV6_TUNNEL) += ip6_tunnel.o
 obj-$(CONFIG_IPV6_GRE) += ip6_gre.o
 obj-$(CONFIG_IPV6_FOU) += fou6.o
-obj-$(CONFIG_IPV6_SEG6) += seg6.o seg6_iptunnel.o
+obj-$(CONFIG_IPV6_SEG6) += seg6.o seg6_iptunnel.o seg6_hmac.o
 
 obj-y += addrconf_core.o exthdrs_core.o ip6_checksum.o ip6_icmp.o
 obj-$(CONFIG_INET) += output_core.o protocol.o $(ipv6-offload)
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 42c0ffb..2b5e036 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -241,6 +241,7 @@ static struct ipv6_devconf ipv6_devconf __read_mostly = {
        .keep_addr_on_down      = 0,
 #ifdef CONFIG_IPV6_SEG6
        .seg6_enabled           = 0,
+       .seg6_require_hmac      = 0,
 #endif
 };
 
@@ -290,6 +291,7 @@ static struct ipv6_devconf ipv6_devconf_dflt __read_mostly 
= {
        .keep_addr_on_down      = 0,
 #ifdef CONFIG_IPV6_SEG6
        .seg6_enabled           = 0,
+       .seg6_require_hmac      = 0,
 #endif
 };
 
@@ -4973,6 +4975,7 @@ static inline void ipv6_store_devconf(struct ipv6_devconf 
*cnf,
        array[DEVCONF_KEEP_ADDR_ON_DOWN] = cnf->keep_addr_on_down;
 #ifdef CONFIG_IPV6_SEG6
        array[DEVCONF_SEG6_ENABLED] = cnf->seg6_enabled;
+       array[DEVCONF_SEG6_REQUIRE_HMAC] = cnf->seg6_require_hmac;
 #endif
 }
 
@@ -6073,6 +6076,13 @@ static const struct ctl_table addrconf_sysctl[] = {
                .mode           = 0644,
                .proc_handler   = proc_dointvec,
        },
+       {
+               .procname       = "seg6_require_hmac",
+               .data           = &ipv6_devconf.seg6_enabled,
+               .maxlen         = sizeof(int),
+               .mode           = 0644,
+               .proc_handler   = proc_dointvec,
+       },
 #endif
        {
                /* sentinel */
diff --git a/net/ipv6/seg6.c b/net/ipv6/seg6.c
index 8dafe7b..df79b37 100644
--- a/net/ipv6/seg6.c
+++ b/net/ipv6/seg6.c
@@ -25,6 +25,7 @@
 #include <net/genetlink.h>
 #include <linux/seg6.h>
 #include <linux/seg6_genl.h>
+#include <net/seg6_hmac.h>
 
 static const struct nla_policy seg6_genl_policy[SEG6_ATTR_MAX + 1] = {
        [SEG6_ATTR_DST]                         = { .type = NLA_BINARY,
@@ -46,9 +47,93 @@ static struct genl_family seg6_genl_family = {
        .netnsok = true,
 };
 
+struct sr6_tlv_hmac *seg6_get_tlv_hmac(struct ipv6_sr_hdr *srh)
+{
+       struct sr6_tlv_hmac *tlv;
+
+       if (srh->hdrlen < (srh->first_segment + 1) * 2 + 5)
+               return NULL;
+
+       if (!(sr_get_flags(srh) & SR6_FLAG_HMAC))
+               return NULL;
+
+       tlv = (struct sr6_tlv_hmac *)
+             ((char *)srh + ((srh->hdrlen + 1) << 3) - 40);
+
+       if (tlv->type != SR6_TLV_HMAC || tlv->len != 38)
+               return NULL;
+
+       return tlv;
+}
+
 static int seg6_genl_sethmac(struct sk_buff *skb, struct genl_info *info)
 {
-       return -ENOTSUPP;
+       struct net *net = genl_info_net(info);
+       char *secret;
+       u32 hmackeyid;
+       u8 algid;
+       u8 slen;
+       struct seg6_hmac_info *hinfo;
+       int err = 0;
+
+       if (!info->attrs[SEG6_ATTR_HMACKEYID] ||
+           !info->attrs[SEG6_ATTR_SECRETLEN] ||
+           !info->attrs[SEG6_ATTR_ALGID])
+               return -EINVAL;
+
+       hmackeyid = nla_get_u32(info->attrs[SEG6_ATTR_HMACKEYID]);
+       slen = nla_get_u8(info->attrs[SEG6_ATTR_SECRETLEN]);
+       algid = nla_get_u8(info->attrs[SEG6_ATTR_ALGID]);
+
+       if (hmackeyid == 0)
+               return -EINVAL;
+
+       if (slen > SEG6_HMAC_SECRET_LEN)
+               return -EINVAL;
+
+       seg6_pernet_lock(net);
+       hinfo = seg6_hmac_info_lookup(net, hmackeyid);
+
+       if (!slen) {
+               if (!hinfo || seg6_hmac_info_del(net, hmackeyid, hinfo))
+                       err = -ENOENT;
+               else
+                       kfree(hinfo);
+
+               goto out_unlock;
+       }
+
+       if (!info->attrs[SEG6_ATTR_SECRET]) {
+               err = -EINVAL;
+               goto out_unlock;
+       }
+
+       if (hinfo) {
+               if (seg6_hmac_info_del(net, hmackeyid, hinfo)) {
+                       err = -ENOENT;
+                       goto out_unlock;
+               }
+               kfree(hinfo);
+       }
+
+       secret = (char *)nla_data(info->attrs[SEG6_ATTR_SECRET]);
+
+       hinfo = kzalloc(sizeof(*hinfo), GFP_KERNEL);
+       if (!hinfo) {
+               err = -ENOMEM;
+               goto out_unlock;
+       }
+
+       memcpy(hinfo->secret, secret, slen);
+       hinfo->slen = slen;
+       hinfo->alg_id = algid;
+       hinfo->hmackeyid = hmackeyid;
+
+       seg6_hmac_info_add(net, hmackeyid, hinfo);
+
+out_unlock:
+       seg6_pernet_unlock(net);
+       return err;
 }
 
 static int seg6_genl_set_tunsrc(struct sk_buff *skb, struct genl_info *info)
@@ -113,9 +198,63 @@ static int seg6_genl_get_tunsrc(struct sk_buff *skb, 
struct genl_info *info)
        return -ENOMEM;
 }
 
+static int __seg6_hmac_fill_info(struct seg6_hmac_info *hinfo,
+                                struct sk_buff *msg)
+{
+       if (nla_put_u32(msg, SEG6_ATTR_HMACKEYID, hinfo->hmackeyid) ||
+           nla_put_u8(msg, SEG6_ATTR_SECRETLEN, hinfo->slen) ||
+           nla_put(msg, SEG6_ATTR_SECRET, hinfo->slen, hinfo->secret) ||
+           nla_put_u8(msg, SEG6_ATTR_ALGID, hinfo->alg_id))
+               return -1;
+
+       return 0;
+}
+
+static int __seg6_genl_dumphmac_element(struct seg6_hmac_info *hinfo,
+                                       u32 portid, u32 seq, u32 flags,
+                                       struct sk_buff *skb, u8 cmd)
+{
+       void *hdr;
+
+       hdr = genlmsg_put(skb, portid, seq, &seg6_genl_family, flags, cmd);
+       if (!hdr)
+               return -ENOMEM;
+
+       if (__seg6_hmac_fill_info(hinfo, skb) < 0)
+               goto nla_put_failure;
+
+       genlmsg_end(skb, hdr);
+       return 0;
+
+nla_put_failure:
+       genlmsg_cancel(skb, hdr);
+       return -EMSGSIZE;
+}
+
 static int seg6_genl_dumphmac(struct sk_buff *skb, struct netlink_callback *cb)
 {
-       return -ENOTSUPP;
+       struct net *net = sock_net(skb->sk);
+       struct seg6_pernet_data *sdata = seg6_pernet(net);
+       struct seg6_hmac_info *hinfo;
+       int idx = 0, ret;
+
+       rcu_read_lock();
+       list_for_each_entry_rcu(hinfo, &sdata->hmac_infos, list) {
+               if (idx++ < cb->args[0])
+                       continue;
+
+               ret = __seg6_genl_dumphmac_element(hinfo,
+                                                  NETLINK_CB(cb->skb).portid,
+                                                  cb->nlh->nlmsg_seq,
+                                                  NLM_F_MULTI,
+                                                  skb, SEG6_CMD_DUMPHMAC);
+               if (ret)
+                       break;
+       }
+       rcu_read_unlock();
+
+       cb->args[0] = idx;
+       return skb->len;
 }
 
 static const struct genl_ops seg6_genl_ops[] = {
@@ -163,6 +302,8 @@ static int __net_init seg6_net_init(struct net *net)
 
        net->ipv6.seg6_data = sdata;
 
+       seg6_hmac_net_init(net);
+
        return 0;
 }
 
@@ -170,6 +311,8 @@ static void __net_exit seg6_net_exit(struct net *net)
 {
        struct seg6_pernet_data *sdata = seg6_pernet(net);
 
+       seg6_hmac_net_exit(net);
+
        kfree(sdata->tun_src);
        kfree(sdata);
 }
@@ -191,10 +334,16 @@ static int __init seg6_init(void)
        if (err)
                goto out_unregister_genl;
 
+       err = seg6_hmac_init();
+       if (err)
+               goto out_unregister_pernet;
+
        pr_info("Segment Routing with IPv6\n");
 
 out:
        return err;
+out_unregister_pernet:
+       unregister_pernet_subsys(&ip6_segments_ops);
 out_unregister_genl:
        genl_unregister_family(&seg6_genl_family);
        goto out;
@@ -203,6 +352,8 @@ module_init(seg6_init);
 
 static void __exit seg6_exit(void)
 {
+       seg6_hmac_exit();
+
        unregister_pernet_subsys(&ip6_segments_ops);
        genl_unregister_family(&seg6_genl_family);
 }
diff --git a/net/ipv6/seg6_hmac.c b/net/ipv6/seg6_hmac.c
index 91bd59a..99e90c8 100644
--- a/net/ipv6/seg6_hmac.c
+++ b/net/ipv6/seg6_hmac.c
@@ -289,7 +289,7 @@ int seg6_push_hmac(struct net *net, struct in6_addr *saddr,
        int err = -ENOENT;
        struct sr6_tlv_hmac *tlv;
 
-       tlv = seg6_get_tlv(srh, SR6_TLV_HMAC);
+       tlv = seg6_get_tlv_hmac(srh);
        if (!tlv)
                return -EINVAL;
 
-- 
2.7.3

Reply via email to