naccyde / rpms / iproute

Forked from rpms/iproute 5 months ago
Clone

Blame SOURCES/0025-devlink-Change-netlink-attribute-validation.patch

cd1737
From 56a3a027d053ab592a3363a92108c93c150301f5 Mon Sep 17 00:00:00 2001
cd1737
From: Kamal Heib <kheib@redhat.com>
cd1737
Date: Thu, 9 Nov 2017 04:44:32 -0500
cd1737
Subject: [PATCH] devlink: Change netlink attribute validation
cd1737
cd1737
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1456539
cd1737
cd1737
commit 4f10cede93b758785f5b201774ed3e02eaf1a7bb
cd1737
Author: Arkadi Sharshevsky <arkadis@mellanox.com>
cd1737
Date:   Wed May 3 13:25:22 2017 +0200
cd1737
cd1737
    devlink: Change netlink attribute validation
cd1737
cd1737
    Currently the netlink attribute resolving is done by a sequence of
cd1737
    if's. Change the attribute resolving to table lookup.
cd1737
cd1737
    Signed-off-by: Arkadi Sharshevsky <arkadis@mellanox.com>
cd1737
    Signed-off-by: Jiri Pirko <jiri@mellanox.com>
cd1737
    Reviewed-by: Greg Rose <gvrose8192@gmail.com>
cd1737
cd1737
Signed-off-by: Kamal Heib <kheib@redhat.com>
cd1737
---
cd1737
 devlink/devlink.c | 103 ++++++++++++++++--------------------------------------
cd1737
 1 file changed, 30 insertions(+), 73 deletions(-)
cd1737
cd1737
diff --git a/devlink/devlink.c b/devlink/devlink.c
cd1737
index e90226e..35220d8 100644
cd1737
--- a/devlink/devlink.c
cd1737
+++ b/devlink/devlink.c
cd1737
@@ -232,88 +232,45 @@ static bool dl_no_arg(struct dl *dl)
cd1737
 	return dl_argc(dl) == 0;
cd1737
 }
cd1737
 
cd1737
+static const enum mnl_attr_data_type devlink_policy[DEVLINK_ATTR_MAX + 1] = {
cd1737
+	[DEVLINK_ATTR_BUS_NAME] = MNL_TYPE_NUL_STRING,
cd1737
+	[DEVLINK_ATTR_DEV_NAME] = MNL_TYPE_NUL_STRING,
cd1737
+	[DEVLINK_ATTR_PORT_INDEX] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_PORT_TYPE] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_PORT_DESIRED_TYPE] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_PORT_NETDEV_IFINDEX] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_PORT_NETDEV_NAME] = MNL_TYPE_NUL_STRING,
cd1737
+	[DEVLINK_ATTR_PORT_IBDEV_NAME] = MNL_TYPE_NUL_STRING,
cd1737
+	[DEVLINK_ATTR_SB_INDEX] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_SB_SIZE] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_SB_INGRESS_POOL_COUNT] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_EGRESS_POOL_COUNT] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_INGRESS_TC_COUNT] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_EGRESS_TC_COUNT] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_POOL_INDEX] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_POOL_TYPE] = MNL_TYPE_U8,
cd1737
+	[DEVLINK_ATTR_SB_POOL_SIZE] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE] = MNL_TYPE_U8,
cd1737
+	[DEVLINK_ATTR_SB_THRESHOLD] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_SB_TC_INDEX] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_SB_OCC_CUR] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_SB_OCC_MAX] = MNL_TYPE_U32,
cd1737
+	[DEVLINK_ATTR_ESWITCH_MODE] = MNL_TYPE_U16,
cd1737
+	[DEVLINK_ATTR_ESWITCH_INLINE_MODE] = MNL_TYPE_U8,
cd1737
+};
cd1737
+
cd1737
 static int attr_cb(const struct nlattr *attr, void *data)
cd1737
 {
cd1737
 	const struct nlattr **tb = data;
cd1737
 	int type;
cd1737
 
cd1737
-	type = mnl_attr_get_type(attr);
cd1737
-
cd1737
 	if (mnl_attr_type_valid(attr, DEVLINK_ATTR_MAX) < 0)
cd1737
 		return MNL_CB_ERROR;
cd1737
 
cd1737
-	if (type == DEVLINK_ATTR_BUS_NAME &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_NUL_STRING) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_DEV_NAME &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_NUL_STRING) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_INDEX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_TYPE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_DESIRED_TYPE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_NETDEV_IFINDEX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_NETDEV_NAME &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_NUL_STRING) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_PORT_IBDEV_NAME &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_NUL_STRING) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_INDEX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_SIZE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_INGRESS_POOL_COUNT &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_EGRESS_POOL_COUNT &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_INGRESS_TC_COUNT &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_EGRESS_TC_COUNT &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_POOL_INDEX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_POOL_TYPE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U8) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_POOL_SIZE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U8) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_THRESHOLD &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_TC_INDEX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_OCC_CUR &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_SB_OCC_MAX &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_ESWITCH_MODE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
cd1737
-		return MNL_CB_ERROR;
cd1737
-	if (type == DEVLINK_ATTR_ESWITCH_INLINE_MODE &&
cd1737
-	    mnl_attr_validate(attr, MNL_TYPE_U8) < 0)
cd1737
+	type = mnl_attr_get_type(attr);
cd1737
+	if (mnl_attr_validate(attr, devlink_policy[type]) < 0)
cd1737
 		return MNL_CB_ERROR;
cd1737
+
cd1737
 	tb[type] = attr;
cd1737
 	return MNL_CB_OK;
cd1737
 }
cd1737
-- 
cd1737
1.8.3.1
cd1737