]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
devlink: Support get port function state
authorParav Pandit <parav@nvidia.com>
Mon, 1 Feb 2021 21:35:50 +0000 (23:35 +0200)
committerDavid Ahern <dsahern@kernel.org>
Tue, 2 Feb 2021 02:06:41 +0000 (02:06 +0000)
Print port function state and operational state whenever reported by
kernel.

Example of a PCI SF port function which supports the state:

$ devlink dev eswitch set pci/0000:06:00.0 mode switchdev

$ devlink port show
pci/0000:06:00.0/65535: type eth netdev ens2f0np0 flavour physical port 0 splittable false

$ devlink port add pci/0000:06:00.0 flavour pcisf pfnum 0 sfnum 88
pci/0000:08:00.0/32768: type eth netdev eth6 flavour pcisf controller 0 pfnum 0 sfnum 88 splittable false
  function:
    hw_addr 00:00:00:00:00:00 state inactive opstate detached

$ devlink port show pci/0000:06:00.0/32768
pci/0000:06:00.0/32768: type eth netdev ens2f0npf0sf88 flavour pcisf controller 0 pfnum 0 sfnum 88 splittable false
  function:
    hw_addr 00:00:00:00:00:00 state inactive opstate detached

$ devlink port function set pci/0000:06:00.0/32768 hw_addr 00:00:00:00:88:88

$ devlink port show pci/0000:06:00.0/32768 -jp
{
    "port": {
        "pci/0000:06:00.0/32768": {
            "type": "eth",
            "netdev": "ens2f0npf0sf88",
            "flavour": "pcisf",
            "controller": 0,
            "pfnum": 0,
            "sfnum": 88,
            "splittable": false,
            "function": {
                "hw_addr": "00:00:00:00:88:88",
                "state": "inactive",
                "opstate": "detached"
            }
        }
    }
}

Signed-off-by: Parav Pandit <parav@nvidia.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Signed-off-by: David Ahern <dsahern@kernel.org>
devlink/devlink.c
include/utils.h
lib/utils.c

index 76ea7cacd32c01503a2dd14465fab890de9ae4fd..17db86231b2c08243e14075e192a9e1ccd185c5d 100644 (file)
@@ -1400,6 +1400,18 @@ static struct str_num_map port_flavour_map[] = {
        { .str = NULL, },
 };
 
+static struct str_num_map port_fn_state_map[] = {
+       { .str = "inactive", .num = DEVLINK_PORT_FN_STATE_INACTIVE},
+       { .str = "active", .num = DEVLINK_PORT_FN_STATE_ACTIVE },
+       { .str = NULL, }
+};
+
+static struct str_num_map port_fn_opstate_map[] = {
+       { .str = "attached", .num = DEVLINK_PORT_FN_OPSTATE_ATTACHED},
+       { .str = "detached", .num = DEVLINK_PORT_FN_OPSTATE_DETACHED},
+       { .str = NULL, }
+};
+
 static int port_flavour_parse(const char *flavour, uint16_t *value)
 {
        int num;
@@ -3810,6 +3822,22 @@ static void pr_out_port_pfvfsf_num(struct dl *dl, struct nlattr **tb)
        }
 }
 
+static const char *port_fn_state(uint8_t state)
+{
+       const char *str;
+
+       str = str_map_lookup_u8(port_fn_state_map, state);
+       return str ? str : "<unknown state>";
+}
+
+static const char *port_fn_opstate(uint8_t state)
+{
+       const char *str;
+
+       str = str_map_lookup_u8(port_fn_opstate_map, state);
+       return str ? str : "<unknown state>";
+}
+
 static void pr_out_port_function(struct dl *dl, struct nlattr **tb_port)
 {
        struct nlattr *tb[DEVLINK_PORT_FUNCTION_ATTR_MAX + 1] = {};
@@ -3826,16 +3854,33 @@ static void pr_out_port_function(struct dl *dl, struct nlattr **tb_port)
        if (err != MNL_CB_OK)
                return;
 
-       if (!tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR])
-               return;
-
-       len = mnl_attr_get_payload_len(tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR]);
-       data = mnl_attr_get_payload(tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR]);
-
        pr_out_object_start(dl, "function");
        check_indent_newline(dl);
-       print_string(PRINT_ANY, "hw_addr", "hw_addr %s",
-                    ll_addr_n2a(data, len, 0, hw_addr, sizeof(hw_addr)));
+
+       if (tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR]) {
+               len = mnl_attr_get_payload_len(tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR]);
+               data = mnl_attr_get_payload(tb[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR]);
+
+               print_string(PRINT_ANY, "hw_addr", "hw_addr %s",
+                            ll_addr_n2a(data, len, 0, hw_addr, sizeof(hw_addr)));
+       }
+       if (tb[DEVLINK_PORT_FN_ATTR_STATE]) {
+               uint8_t state;
+
+               state = mnl_attr_get_u8(tb[DEVLINK_PORT_FN_ATTR_STATE]);
+
+               print_string(PRINT_ANY, "state", " state %s",
+                            port_fn_state(state));
+       }
+       if (tb[DEVLINK_PORT_FN_ATTR_OPSTATE]) {
+               uint8_t state;
+
+               state = mnl_attr_get_u8(tb[DEVLINK_PORT_FN_ATTR_OPSTATE]);
+
+               print_string(PRINT_ANY, "opstate", " opstate %s",
+                            port_fn_opstate(state));
+       }
+
        if (!dl->json_output)
                __pr_out_indent_dec();
        pr_out_object_end(dl);
index 1d67443e6cb18a8b9d1744f9beb7eb418a372c0c..e66090ae5169cd886901c8091cdcece110516816 100644 (file)
@@ -347,5 +347,6 @@ struct str_num_map {
 
 int str_map_lookup_str(const struct str_num_map *map, const char *needle);
 const char *str_map_lookup_u16(const struct str_num_map *map, uint16_t val);
+const char *str_map_lookup_u8(const struct str_num_map *map, uint8_t val);
 
 #endif /* __UTILS_H__ */
index 9fef2d760fae66162b6519a5ff987de4116bfad2..af1b553cd67f3a5fb65544863fc7b57822f5b294 100644 (file)
@@ -1965,3 +1965,16 @@ const char *str_map_lookup_u16(const struct str_num_map *map, uint16_t val)
        }
        return NULL;
 }
+
+const char *str_map_lookup_u8(const struct str_num_map *map, uint8_t val)
+{
+       int num = val;
+
+       while (map && map->str) {
+               if (num == map->num)
+                       return map->str;
+
+               map++;
+       }
+       return NULL;
+}