RDMA/nldev: Allow counter manual mode configration through RDMA netlink
authorMark Zhang <markz@mellanox.com>
Tue, 2 Jul 2019 10:02:44 +0000 (13:02 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Fri, 5 Jul 2019 13:22:55 +0000 (10:22 -0300)
Provide an option to allow users to manually bind a qp with a counter
through RDMA netlink. Limit it to users with ADMIN capability only.

Signed-off-by: Mark Zhang <markz@mellanox.com>
Reviewed-by: Majd Dibbiny <majd@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/nldev.c
include/rdma/rdma_counter.h
include/uapi/rdma/rdma_netlink.h

index cebc15b..3d750ec 100644 (file)
@@ -1649,8 +1649,8 @@ static int nldev_set_sys_set_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
 static int nldev_stat_set_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
                               struct netlink_ext_ack *extack)
 {
+       u32 index, port, mode, mask = 0, qpn, cntn = 0;
        struct nlattr *tb[RDMA_NLDEV_ATTR_MAX];
-       u32 index, port, mode, mask = 0;
        struct ib_device *device;
        struct sk_buff *msg;
        int ret;
@@ -1688,30 +1688,111 @@ static int nldev_stat_set_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
                        0, 0);
 
        mode = nla_get_u32(tb[RDMA_NLDEV_ATTR_STAT_MODE]);
-       if (mode != RDMA_COUNTER_MODE_AUTO) {
-               ret = -EMSGSIZE;
-               goto err_msg;
+       if (mode == RDMA_COUNTER_MODE_AUTO) {
+               if (tb[RDMA_NLDEV_ATTR_STAT_AUTO_MODE_MASK])
+                       mask = nla_get_u32(
+                               tb[RDMA_NLDEV_ATTR_STAT_AUTO_MODE_MASK]);
+
+               ret = rdma_counter_set_auto_mode(device, port,
+                                                mask ? true : false, mask);
+               if (ret)
+                       goto err_msg;
+       } else {
+               qpn = nla_get_u32(tb[RDMA_NLDEV_ATTR_RES_LQPN]);
+               if (tb[RDMA_NLDEV_ATTR_STAT_COUNTER_ID]) {
+                       cntn = nla_get_u32(tb[RDMA_NLDEV_ATTR_STAT_COUNTER_ID]);
+                       ret = rdma_counter_bind_qpn(device, port, qpn, cntn);
+               } else {
+                       ret = rdma_counter_bind_qpn_alloc(device, port,
+                                                         qpn, &cntn);
+               }
+               if (ret)
+                       goto err_msg;
+
+               if (fill_nldev_handle(msg, device) ||
+                   nla_put_u32(msg, RDMA_NLDEV_ATTR_PORT_INDEX, port) ||
+                   nla_put_u32(msg, RDMA_NLDEV_ATTR_STAT_COUNTER_ID, cntn) ||
+                   nla_put_u32(msg, RDMA_NLDEV_ATTR_RES_LQPN, qpn)) {
+                       ret = -EMSGSIZE;
+                       goto err_fill;
+               }
        }
 
-       if (tb[RDMA_NLDEV_ATTR_STAT_AUTO_MODE_MASK])
-               mask = nla_get_u32(tb[RDMA_NLDEV_ATTR_STAT_AUTO_MODE_MASK]);
+       nlmsg_end(msg, nlh);
+       ib_device_put(device);
+       return rdma_nl_unicast(msg, NETLINK_CB(skb).portid);
+
+err_fill:
+       rdma_counter_unbind_qpn(device, port, qpn, cntn);
+err_msg:
+       nlmsg_free(msg);
+err:
+       ib_device_put(device);
+       return ret;
+}
+
+static int nldev_stat_del_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
+                              struct netlink_ext_ack *extack)
+{
+       struct nlattr *tb[RDMA_NLDEV_ATTR_MAX];
+       struct ib_device *device;
+       struct sk_buff *msg;
+       u32 index, port, qpn, cntn;
+       int ret;
 
-       ret = rdma_counter_set_auto_mode(device, port,
-                                        mask ? true : false, mask);
+       ret = nlmsg_parse(nlh, 0, tb, RDMA_NLDEV_ATTR_MAX - 1,
+                         nldev_policy, extack);
+       if (ret || !tb[RDMA_NLDEV_ATTR_STAT_RES] ||
+           !tb[RDMA_NLDEV_ATTR_DEV_INDEX] || !tb[RDMA_NLDEV_ATTR_PORT_INDEX] ||
+           !tb[RDMA_NLDEV_ATTR_STAT_COUNTER_ID] ||
+           !tb[RDMA_NLDEV_ATTR_RES_LQPN])
+               return -EINVAL;
+
+       if (nla_get_u32(tb[RDMA_NLDEV_ATTR_STAT_RES]) != RDMA_NLDEV_ATTR_RES_QP)
+               return -EINVAL;
+
+       index = nla_get_u32(tb[RDMA_NLDEV_ATTR_DEV_INDEX]);
+       device = ib_device_get_by_index(sock_net(skb->sk), index);
+       if (!device)
+               return -EINVAL;
+
+       port = nla_get_u32(tb[RDMA_NLDEV_ATTR_PORT_INDEX]);
+       if (!rdma_is_port_valid(device, port)) {
+               ret = -EINVAL;
+               goto err;
+       }
+
+       msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
+       if (!msg) {
+               ret = -ENOMEM;
+               goto err;
+       }
+       nlh = nlmsg_put(msg, NETLINK_CB(skb).portid, nlh->nlmsg_seq,
+                       RDMA_NL_GET_TYPE(RDMA_NL_NLDEV,
+                                        RDMA_NLDEV_CMD_STAT_SET),
+                       0, 0);
+
+       cntn = nla_get_u32(tb[RDMA_NLDEV_ATTR_STAT_COUNTER_ID]);
+       qpn = nla_get_u32(tb[RDMA_NLDEV_ATTR_RES_LQPN]);
+       ret = rdma_counter_unbind_qpn(device, port, qpn, cntn);
        if (ret)
-               goto err_msg;
+               goto err_unbind;
 
-       if (nla_put_u32(msg, RDMA_NLDEV_ATTR_STAT_MODE, mode) ||
-           nla_put_u32(msg, RDMA_NLDEV_ATTR_STAT_AUTO_MODE_MASK, mask)) {
+       if (fill_nldev_handle(msg, device) ||
+           nla_put_u32(msg, RDMA_NLDEV_ATTR_PORT_INDEX, port) ||
+           nla_put_u32(msg, RDMA_NLDEV_ATTR_STAT_COUNTER_ID, cntn) ||
+           nla_put_u32(msg, RDMA_NLDEV_ATTR_RES_LQPN, qpn)) {
                ret = -EMSGSIZE;
-               goto err_msg;
+               goto err_fill;
        }
 
        nlmsg_end(msg, nlh);
        ib_device_put(device);
        return rdma_nl_unicast(msg, NETLINK_CB(skb).portid);
 
-err_msg:
+err_fill:
+       rdma_counter_bind_qpn(device, port, qpn, cntn);
+err_unbind:
        nlmsg_free(msg);
 err:
        ib_device_put(device);
@@ -1828,6 +1909,10 @@ static const struct rdma_nl_cbs nldev_cb_table[RDMA_NLDEV_NUM_OPS] = {
                .doit = nldev_stat_get_doit,
                .dump = nldev_stat_get_dumpit,
        },
+       [RDMA_NLDEV_CMD_STAT_DEL] = {
+               .doit = nldev_stat_del_doit,
+               .flags = RDMA_NL_ADMIN_PERM,
+       },
 };
 
 void __init nldev_init(void)
index 6603e10..6882770 100644 (file)
@@ -58,5 +58,8 @@ int rdma_counter_bind_qpn_alloc(struct ib_device *dev, u8 port,
                                u32 qp_num, u32 *counter_id);
 int rdma_counter_unbind_qpn(struct ib_device *dev, u8 port,
                            u32 qp_num, u32 counter_id);
+int rdma_counter_get_mode(struct ib_device *dev, u8 port,
+                         enum rdma_nl_counter_mode *mode,
+                         enum rdma_nl_counter_mask *mask);
 
 #endif /* _RDMA_COUNTER_H_ */
index ec86fab..ce6fd66 100644 (file)
@@ -285,6 +285,8 @@ enum rdma_nldev_command {
 
        RDMA_NLDEV_CMD_STAT_GET, /* can dump */
 
+       RDMA_NLDEV_CMD_STAT_DEL,
+
        RDMA_NLDEV_NUM_OPS
 };