[qca-nss-clients] Add Multicast support for lso_rx netlink module

Change-Id: I3882a18931f8aaf8acde4cd5ddaf2c96ab966969
Signed-off-by: Wayne Tan <wtan@codeaurora.org>
diff --git a/netlink/Makefile b/netlink/Makefile
index 982332b..9304d81 100644
--- a/netlink/Makefile
+++ b/netlink/Makefile
@@ -18,6 +18,7 @@
 ccflags-y += -DCONFIG_NSS_NLIPV4_REASM=1
 ccflags-y += -DCONFIG_NSS_NLIPV6_REASM=1
 ccflags-y += -DCONFIG_NSS_NLWIFILI=1
+ccflags-y += -DCONFIG_NSS_NLLSO_RX=1
 
 qca-nss-netlink-objs := nss_nl.o
 qca-nss-netlink-objs += nss_nlgre_redir_family.o
@@ -38,6 +39,7 @@
 qca-nss-netlink-objs += nss_nlipv4_reasm.o
 qca-nss-netlink-objs += nss_nlipv6_reasm.o
 qca-nss-netlink-objs += nss_nlwifili.o
+qca-nss-netlink-objs += nss_nllso_rx.o
 
 CAPWAP_ENABLED:=CONFIG_PACKAGE_kmod-qca-nss-drv-capwapmgr=y
 CAPWAP_CONFIG:=$(shell  grep $(CAPWAP_ENABLED) $(TOPDIR)/.config)
diff --git a/netlink/include/nss_nlcmn_if.h b/netlink/include/nss_nlcmn_if.h
index a619620..12a5db2 100644
--- a/netlink/include/nss_nlcmn_if.h
+++ b/netlink/include/nss_nlcmn_if.h
@@ -51,6 +51,7 @@
 	NSS_NLCMN_SUBSYS_IPV4_REASM,
 	NSS_NLCMN_SUBSYS_IPV6,
 	NSS_NLCMN_SUBSYS_IPV6_REASM,
+	NSS_NLCMN_SUBSYS_LSO_RX,
 	NSS_NLCMN_SUBSYS_N2H,
 	NSS_NLCMN_SUBSYS_WIFILI,
 	NSS_NLCMN_SUBSYS_MAX
diff --git a/netlink/include/nss_nllso_rx_if.h b/netlink/include/nss_nllso_rx_if.h
new file mode 100644
index 0000000..627424c
--- /dev/null
+++ b/netlink/include/nss_nllso_rx_if.h
@@ -0,0 +1,32 @@
+/*
+ **************************************************************************
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ *
+ * Permission to use, copy, modify, and/or distribute this software for
+ * any purpose with or without fee is hereby granted, provided that the
+ * above copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ **************************************************************************
+ */
+
+/*
+ * @file nss_nllso_rx_if.h
+ *	NSS Netlink lso_rx headers
+ */
+#ifndef __NSS_NLLSO_RX_IF_H
+#define __NSS_NLLSO_RX_IF_H
+
+/**
+ * lso_rx forwarding Family
+ */
+#define NSS_NLLSO_RX_FAMILY "nss_nllso_rx"
+#define NSS_NLLSO_RX_MCAST_GRP "nss_nllso_rx_mc"
+
+#endif /* __NSS_NLLSO_RX_IF_H */
diff --git a/netlink/nss_nl.c b/netlink/nss_nl.c
index 7515148..5b61f6e 100644
--- a/netlink/nss_nl.c
+++ b/netlink/nss_nl.c
@@ -68,6 +68,8 @@
 #include "nss_nlipv6_reasm_if.h"
 #include "nss_nlwifili.h"
 #include "nss_nlwifili_if.h"
+#include "nss_nllso_rx.h"
+#include "nss_nllso_rx_if.h"
 #if defined (CONFIG_NSS_NLCRYPTO)
 #include "nss_nlcrypto_if.h"
 #else
@@ -258,6 +260,15 @@
 		.exit = NSS_NLWIFILI_EXIT,		/* exit */
 		.valid = CONFIG_NSS_NLWIFILI		/* 1 or 0 */
 	},
+	{
+		/*
+		 * NSS_NLLSO_RX
+		 */
+		.name = NSS_NLLSO_RX_FAMILY,		/* lso_rx */
+		.entry = NSS_NLLSO_RX_INIT,		/* init */
+		.exit = NSS_NLLSO_RX_EXIT,		/* exit */
+		.valid = CONFIG_NSS_NLLSO_RX		/* 1 or 0 */
+	},
 };
 
 #define NSS_NL_FAMILY_HANDLER_SZ ARRAY_SIZE(family_handlers)
diff --git a/netlink/nss_nllso_rx.c b/netlink/nss_nllso_rx.c
new file mode 100644
index 0000000..ccea6aa
--- /dev/null
+++ b/netlink/nss_nllso_rx.c
@@ -0,0 +1,173 @@
+/*
+ **************************************************************************
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ *
+ * Permission to use, copy, modify, and/or distribute this software for
+ * any purpose with or without fee is hereby granted, provided that the
+ * above copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ **************************************************************************
+ */
+
+/*
+ * nss_nllso_rx.c
+ *	NSS Netlink lso_rx Handler
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/version.h>
+#include <linux/netlink.h>
+#include <linux/version.h>
+#include <linux/vmalloc.h>
+#include <linux/notifier.h>
+
+#include <net/genetlink.h>
+#include <net/sock.h>
+
+#include <nss_api_if.h>
+#include <nss_cmn.h>
+#include <nss_nl_if.h>
+#include "nss_nl.h"
+#include "nss_nlcmn_if.h"
+#include "nss_nllso_rx_if.h"
+#include "nss_lso_rx.h"
+
+/*
+ * prototypes
+ */
+static int nss_nllso_rx_ops_get_stats(struct sk_buff *skb, struct genl_info *info);
+static int nss_nllso_rx_process_notify(struct notifier_block *nb, unsigned long val, void *data);
+
+/*
+ * lso_rx family definition
+ */
+static struct genl_family nss_nllso_rx_family = {
+	.id = GENL_ID_GENERATE,						/* Auto generate ID */
+	.name = NSS_NLLSO_RX_FAMILY,					/* family name string */
+	.hdrsize = sizeof(struct nss_lso_rx_stats_notification),	/* NSS NETLINK lso_rx stats */
+	.version = NSS_NL_VER,						/* Set it to NSS_NLLSO_RX version */
+	.maxattr = NSS_STATS_EVENT_MAX,					/* maximum commands supported */
+	.netnsok = true,
+	.pre_doit = NULL,
+	.post_doit = NULL,
+};
+
+/*
+ * multicast group for sending message status & events
+ */
+static const struct genl_multicast_group nss_nllso_rx_mcgrp[] = {
+	{.name = NSS_NLLSO_RX_MCAST_GRP},
+};
+
+/*
+ * operation table called by the generic netlink layer based on the command
+ */
+static struct genl_ops nss_nllso_rx_ops[] = {
+	{.cmd = NSS_STATS_EVENT_NOTIFY, .doit = nss_nllso_rx_ops_get_stats},
+};
+
+/*
+ * device call back handler for lso_rx from NSS
+ */
+static struct notifier_block nss_lso_rx_stats_notifier_nb = {
+	.notifier_call = nss_nllso_rx_process_notify,
+};
+
+/*
+ * nss_nllso_rx_ops_get_stats()
+ *	get stats handler
+ */
+static int nss_nllso_rx_ops_get_stats(struct sk_buff *skb, struct genl_info *info)
+{
+	return 0;
+}
+
+/*
+ * nss_nllso_rx_process_notify()
+ *	process notification messages from NSS
+ */
+static int nss_nllso_rx_process_notify(struct notifier_block *nb, unsigned long val, void *data)
+{
+	struct sk_buff *skb;
+	struct nss_lso_rx_stats_notification *nss_stats, *nl_stats;
+
+	nss_stats = (struct nss_lso_rx_stats_notification *)data;
+	skb = nss_nl_new_msg(&nss_nllso_rx_family, NSS_NLCMN_SUBSYS_LSO_RX);
+	if (!skb) {
+		nss_nl_error("unable to allocate NSS_NLLSO_RX event\n");
+		return NOTIFY_DONE;
+	}
+
+	nl_stats = nss_nl_get_data(skb);
+	memcpy(nl_stats, nss_stats, sizeof(struct nss_lso_rx_stats_notification));
+	nss_nl_mcast_event(&nss_nllso_rx_family, skb);
+
+	return NOTIFY_DONE;
+}
+
+/*
+ * nss_nllso_rx_init()
+ *	handler init
+ */
+bool nss_nllso_rx_init(void)
+{
+	int error,ret;
+
+	nss_nl_info_always("Init NSS netlink lso_rx handler\n");
+
+	/*
+	 * register NETLINK ops with the family
+	 */
+	error = genl_register_family_with_ops_groups(&nss_nllso_rx_family, nss_nllso_rx_ops, nss_nllso_rx_mcgrp);
+	if (error) {
+		nss_nl_info_always("Error: unable to register lso_rx family\n");
+		return false;
+	}
+
+	/*
+	 * register device call back handler for lso_rx from NSS
+	 */
+	ret = nss_lso_rx_stats_register_notifier(&nss_lso_rx_stats_notifier_nb);
+	if (ret) {
+		nss_nl_info_always("Error: retreiving the NSS Context\n");
+		genl_unregister_family(&nss_nllso_rx_family);
+		return false;
+	}
+
+	return true;
+}
+
+/*
+ * nss_nllso_rx_exit()
+ *	handler exit
+ */
+bool nss_nllso_rx_exit(void)
+{
+	int error;
+
+	nss_nl_info_always("Exit NSS netlink lso_rx handler\n");
+
+	/*
+	 * Unregister the device callback handler for lso_rx
+	 */
+	nss_lso_rx_stats_unregister_notifier(&nss_lso_rx_stats_notifier_nb);
+
+	/*
+	 * unregister the ops family
+	 */
+	error = genl_unregister_family(&nss_nllso_rx_family);
+	if (error) {
+		nss_nl_info_always("unable to unregister lso_rx NETLINK family\n");
+		return false;
+	}
+
+	return true;
+}
diff --git a/netlink/nss_nllso_rx.h b/netlink/nss_nllso_rx.h
new file mode 100644
index 0000000..f190e7e
--- /dev/null
+++ b/netlink/nss_nllso_rx.h
@@ -0,0 +1,37 @@
+/*
+ **************************************************************************
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ *
+ * Permission to use, copy, modify, and/or distribute this software for
+ * any purpose with or without fee is hereby granted, provided that the
+ * above copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ **************************************************************************
+ */
+
+/*
+ * nss_nllso_rx.h
+ *	NSS Netlink lso_rx API definitions
+ */
+#ifndef __NSS_NLLSO_RX_H
+#define __NSS_NLLSO_RX_H
+
+bool nss_nllso_rx_init(void);
+bool nss_nllso_rx_exit(void);
+
+#if defined(CONFIG_NSS_NLLSO_RX)
+#define NSS_NLLSO_RX_INIT nss_nllso_rx_init
+#define NSS_NLLSO_RX_EXIT nss_nllso_rx_exit
+#else
+#define NSS_NLLSO_RX_INIT 0
+#define NSS_NLLSO_RX_EXIT 0
+#endif /* !CONFIG_NSS_NLLSO_RX */
+
+#endif /* __NSS_NLLSO_RX_H */