Merge branch 'rdma-resource-tracking' into iproute2-next

Steve Wise  says:

====================

This series enhances the iproute2 rdma tool to include displaying
driver-specific resource attributes.  It is the user-space part of the
kernel driver resource tracking series that has been accepted for merging
into linux-4.18 [1]

If there are no additional review comments, it can now be merged, I think.

Changes since v2:
- resync rdma_netlink.h to fix uapi break

Changes since v1:
- commit log editorial fixes
- cite kernel commits that updated rdma_netlink.h in the
  iproute2 commit syncing this header
- reorder stack definitions ala "reverse christmas tree"
- correctly handle unknown driver attributes when printing

Changes since v0/rfc:
- changed "provider" to "driver" based on kernel side changes
- updated man pages
- removed "RFC" tag

Thanks,

Steve.

[1] https://www.spinics.net/lists/linux-rdma/msg64199.html

====================

Signed-off-by: David Ahern <dsahern@gmail.com>
This commit is contained in:
David Ahern 2018-05-18 09:21:42 -07:00
commit 24bd5ac6b8
7 changed files with 280 additions and 27 deletions

View File

@ -7,12 +7,15 @@ rdma-resource \- rdma resource configuration
.in +8
.ti -8
.B rdma
.RI "[ " OPTIONS " ]"
.B resource
.RI " { " COMMAND " | "
.RI "[ " OPTIONS " ] " RESOURCE " { " COMMAND " | "
.BR help " }"
.sp
.ti -8
.IR RESOURCE " := { "
.BR cm_id " | " cq " | " mr " | " pd " | " qp " }"
.sp
.ti -8
.IR OPTIONS " := { "
\fB\-j\fR[\fIson\fR] |
@ -70,11 +73,31 @@ rdma res show qp link mlx5_4/- -d
Detailed view.
.RE
.PP
rdma res show qp link mlx5_4/- -dd
.RS 4
Detailed view including driver-specific details.
.RE
.PP
rdma res show qp link mlx5_4/1 lqpn 0-6
.RS 4
Limit to specific Local QPNs.
.RE
.PP
rdma resource show cm_id dst-port 7174
.RS 4
Show CM_IDs with destination ip port of 7174.
.RE
.PP
rdma resource show cm_id src-addr 172.16.0.100
.RS 4
Show CM_IDs bound to local ip address 172.16.0.100
.RE
.PP
rdma resource show cq pid 30489
.RS 4
Show CQs belonging to pid 30489
.RE
.PP
.SH SEE ALSO
.BR rdma (8),

View File

@ -49,7 +49,7 @@ If there were any errors during execution of the commands, the application retur
.TP
.BR "\-d" , " --details"
Output detailed information.
Output detailed information. Adding a second \-d includes driver-specific details.
.TP
.BR "\-p" , " --pretty"

View File

@ -249,10 +249,22 @@ enum rdma_nldev_command {
RDMA_NLDEV_NUM_OPS
};
enum {
RDMA_NLDEV_ATTR_ENTRY_STRLEN = 16,
};
enum rdma_nldev_print_type {
RDMA_NLDEV_PRINT_TYPE_UNSPEC,
RDMA_NLDEV_PRINT_TYPE_HEX,
};
enum rdma_nldev_attr {
/* don't change the order or add anything between, this is ABI! */
RDMA_NLDEV_ATTR_UNSPEC,
/* Pad attribute for 64b alignment */
RDMA_NLDEV_ATTR_PAD = RDMA_NLDEV_ATTR_UNSPEC,
/* Identifier for ib_device */
RDMA_NLDEV_ATTR_DEV_INDEX, /* u32 */
@ -387,7 +399,6 @@ enum rdma_nldev_attr {
RDMA_NLDEV_ATTR_RES_PD_ENTRY, /* nested table */
RDMA_NLDEV_ATTR_RES_LOCAL_DMA_LKEY, /* u32 */
RDMA_NLDEV_ATTR_RES_UNSAFE_GLOBAL_RKEY, /* u32 */
/*
* Provides logical name and index of netdevice which is
* connected to physical port. This information is relevant
@ -400,7 +411,24 @@ enum rdma_nldev_attr {
*/
RDMA_NLDEV_ATTR_NDEV_INDEX, /* u32 */
RDMA_NLDEV_ATTR_NDEV_NAME, /* string */
/*
* driver-specific attributes.
*/
RDMA_NLDEV_ATTR_DRIVER, /* nested table */
RDMA_NLDEV_ATTR_DRIVER_ENTRY, /* nested table */
RDMA_NLDEV_ATTR_DRIVER_STRING, /* string */
/*
* u8 values from enum rdma_nldev_print_type
*/
RDMA_NLDEV_ATTR_DRIVER_PRINT_TYPE, /* u8 */
RDMA_NLDEV_ATTR_DRIVER_S32, /* s32 */
RDMA_NLDEV_ATTR_DRIVER_U32, /* u32 */
RDMA_NLDEV_ATTR_DRIVER_S64, /* s64 */
RDMA_NLDEV_ATTR_DRIVER_U64, /* u64 */
/*
* Always the end
*/
RDMA_NLDEV_ATTR_MAX
};
#endif /* _RDMA_NETLINK_H */

View File

@ -129,13 +129,14 @@ int main(int argc, char **argv)
{ "batch", required_argument, NULL, 'b' },
{ NULL, 0, NULL, 0 }
};
bool show_driver_details = false;
const char *batch_file = NULL;
bool pretty_output = false;
bool show_details = false;
bool json_output = false;
bool force = false;
char *filename;
struct rd rd = {};
char *filename;
int opt;
int err;
@ -152,7 +153,10 @@ int main(int argc, char **argv)
pretty_output = true;
break;
case 'd':
show_details = true;
if (show_details)
show_driver_details = true;
else
show_details = true;
break;
case 'j':
json_output = true;
@ -180,6 +184,7 @@ int main(int argc, char **argv)
argv += optind;
rd.show_details = show_details;
rd.show_driver_details = show_driver_details;
rd.json_output = json_output;
rd.pretty_output = pretty_output;

View File

@ -55,6 +55,7 @@ struct rd {
char **argv;
char *filename;
bool show_details;
bool show_driver_details;
struct list_head dev_map_list;
uint32_t dev_idx;
uint32_t port_idx;
@ -115,4 +116,14 @@ int rd_recv_msg(struct rd *rd, mnl_cb_t callback, void *data, uint32_t seq);
void rd_prepare_msg(struct rd *rd, uint32_t cmd, uint32_t *seq, uint16_t flags);
int rd_dev_init_cb(const struct nlmsghdr *nlh, void *data);
int rd_attr_cb(const struct nlattr *attr, void *data);
int rd_attr_check(const struct nlattr *attr, int *typep);
/*
* Print helpers
*/
void print_driver_table(struct rd *rd, struct nlattr *tb);
void newline(struct rd *rd);
void newline_indent(struct rd *rd);
#define MAX_LINE_LENGTH 80
#endif /* _RDMA_TOOL_H_ */

View File

@ -439,10 +439,8 @@ static int res_qp_parse_cb(const struct nlmsghdr *nlh, void *data)
if (nla_line[RDMA_NLDEV_ATTR_RES_PID])
free(comm);
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
print_driver_table(rd, nla_line[RDMA_NLDEV_ATTR_DRIVER]);
newline(rd);
}
return MNL_CB_OK;
}
@ -678,10 +676,8 @@ static int res_cm_id_parse_cb(const struct nlmsghdr *nlh, void *data)
if (nla_line[RDMA_NLDEV_ATTR_RES_PID])
free(comm);
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
print_driver_table(rd, nla_line[RDMA_NLDEV_ATTR_DRIVER]);
newline(rd);
}
return MNL_CB_OK;
}
@ -804,10 +800,8 @@ static int res_cq_parse_cb(const struct nlmsghdr *nlh, void *data)
if (nla_line[RDMA_NLDEV_ATTR_RES_PID])
free(comm);
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
print_driver_table(rd, nla_line[RDMA_NLDEV_ATTR_DRIVER]);
newline(rd);
}
return MNL_CB_OK;
}
@ -919,10 +913,8 @@ static int res_mr_parse_cb(const struct nlmsghdr *nlh, void *data)
if (nla_line[RDMA_NLDEV_ATTR_RES_PID])
free(comm);
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
print_driver_table(rd, nla_line[RDMA_NLDEV_ATTR_DRIVER]);
newline(rd);
}
return MNL_CB_OK;
}
@ -1004,10 +996,8 @@ static int res_pd_parse_cb(const struct nlmsghdr *nlh, void *data)
if (nla_line[RDMA_NLDEV_ATTR_RES_PID])
free(comm);
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
print_driver_table(rd, nla_line[RDMA_NLDEV_ATTR_DRIVER]);
newline(rd);
}
return MNL_CB_OK;
}

View File

@ -11,6 +11,7 @@
#include "rdma.h"
#include <ctype.h>
#include <inttypes.h>
int rd_argc(struct rd *rd)
{
@ -393,8 +394,32 @@ static const enum mnl_attr_data_type nldev_policy[RDMA_NLDEV_ATTR_MAX] = {
[RDMA_NLDEV_ATTR_RES_MRLEN] = MNL_TYPE_U64,
[RDMA_NLDEV_ATTR_NDEV_INDEX] = MNL_TYPE_U32,
[RDMA_NLDEV_ATTR_NDEV_NAME] = MNL_TYPE_NUL_STRING,
[RDMA_NLDEV_ATTR_DRIVER] = MNL_TYPE_NESTED,
[RDMA_NLDEV_ATTR_DRIVER_ENTRY] = MNL_TYPE_NESTED,
[RDMA_NLDEV_ATTR_DRIVER_STRING] = MNL_TYPE_NUL_STRING,
[RDMA_NLDEV_ATTR_DRIVER_PRINT_TYPE] = MNL_TYPE_U8,
[RDMA_NLDEV_ATTR_DRIVER_S32] = MNL_TYPE_U32,
[RDMA_NLDEV_ATTR_DRIVER_U32] = MNL_TYPE_U32,
[RDMA_NLDEV_ATTR_DRIVER_S64] = MNL_TYPE_U64,
[RDMA_NLDEV_ATTR_DRIVER_U64] = MNL_TYPE_U64,
};
int rd_attr_check(const struct nlattr *attr, int *typep)
{
int type;
if (mnl_attr_type_valid(attr, RDMA_NLDEV_ATTR_MAX) < 0)
return MNL_CB_ERROR;
type = mnl_attr_get_type(attr);
if (mnl_attr_validate(attr, nldev_policy[type]) < 0)
return MNL_CB_ERROR;
*typep = nldev_policy[type];
return MNL_CB_OK;
}
int rd_attr_cb(const struct nlattr *attr, void *data)
{
const struct nlattr **tb = data;
@ -660,3 +685,174 @@ struct dev_map *dev_map_lookup(struct rd *rd, bool allow_port_index)
free(dev_name);
return dev_map;
}
#define nla_type(attr) ((attr)->nla_type & NLA_TYPE_MASK)
void newline(struct rd *rd)
{
if (rd->json_output)
jsonw_end_array(rd->jw);
else
pr_out("\n");
}
void newline_indent(struct rd *rd)
{
newline(rd);
if (!rd->json_output)
pr_out(" ");
}
static int print_driver_string(struct rd *rd, const char *key_str,
const char *val_str)
{
if (rd->json_output) {
jsonw_string_field(rd->jw, key_str, val_str);
return 0;
} else {
return pr_out("%s %s ", key_str, val_str);
}
}
static int print_driver_s32(struct rd *rd, const char *key_str, int32_t val,
enum rdma_nldev_print_type print_type)
{
if (rd->json_output) {
jsonw_int_field(rd->jw, key_str, val);
return 0;
}
switch (print_type) {
case RDMA_NLDEV_PRINT_TYPE_UNSPEC:
return pr_out("%s %d ", key_str, val);
case RDMA_NLDEV_PRINT_TYPE_HEX:
return pr_out("%s 0x%x ", key_str, val);
default:
return -EINVAL;
}
}
static int print_driver_u32(struct rd *rd, const char *key_str, uint32_t val,
enum rdma_nldev_print_type print_type)
{
if (rd->json_output) {
jsonw_int_field(rd->jw, key_str, val);
return 0;
}
switch (print_type) {
case RDMA_NLDEV_PRINT_TYPE_UNSPEC:
return pr_out("%s %u ", key_str, val);
case RDMA_NLDEV_PRINT_TYPE_HEX:
return pr_out("%s 0x%x ", key_str, val);
default:
return -EINVAL;
}
}
static int print_driver_s64(struct rd *rd, const char *key_str, int64_t val,
enum rdma_nldev_print_type print_type)
{
if (rd->json_output) {
jsonw_int_field(rd->jw, key_str, val);
return 0;
}
switch (print_type) {
case RDMA_NLDEV_PRINT_TYPE_UNSPEC:
return pr_out("%s %" PRId64 " ", key_str, val);
case RDMA_NLDEV_PRINT_TYPE_HEX:
return pr_out("%s 0x%" PRIx64 " ", key_str, val);
default:
return -EINVAL;
}
}
static int print_driver_u64(struct rd *rd, const char *key_str, uint64_t val,
enum rdma_nldev_print_type print_type)
{
if (rd->json_output) {
jsonw_int_field(rd->jw, key_str, val);
return 0;
}
switch (print_type) {
case RDMA_NLDEV_PRINT_TYPE_UNSPEC:
return pr_out("%s %" PRIu64 " ", key_str, val);
case RDMA_NLDEV_PRINT_TYPE_HEX:
return pr_out("%s 0x%" PRIx64 " ", key_str, val);
default:
return -EINVAL;
}
}
static int print_driver_entry(struct rd *rd, struct nlattr *key_attr,
struct nlattr *val_attr,
enum rdma_nldev_print_type print_type)
{
const char *key_str = mnl_attr_get_str(key_attr);
int attr_type = nla_type(val_attr);
switch (attr_type) {
case RDMA_NLDEV_ATTR_DRIVER_STRING:
return print_driver_string(rd, key_str,
mnl_attr_get_str(val_attr));
case RDMA_NLDEV_ATTR_DRIVER_S32:
return print_driver_s32(rd, key_str,
mnl_attr_get_u32(val_attr), print_type);
case RDMA_NLDEV_ATTR_DRIVER_U32:
return print_driver_u32(rd, key_str,
mnl_attr_get_u32(val_attr), print_type);
case RDMA_NLDEV_ATTR_DRIVER_S64:
return print_driver_s64(rd, key_str,
mnl_attr_get_u64(val_attr), print_type);
case RDMA_NLDEV_ATTR_DRIVER_U64:
return print_driver_u64(rd, key_str,
mnl_attr_get_u64(val_attr), print_type);
}
return -EINVAL;
}
void print_driver_table(struct rd *rd, struct nlattr *tb)
{
int print_type = RDMA_NLDEV_PRINT_TYPE_UNSPEC;
struct nlattr *tb_entry, *key = NULL, *val;
int type, cc = 0;
int ret;
if (!rd->show_driver_details || !tb)
return;
if (rd->pretty_output)
newline_indent(rd);
/*
* Driver attrs are tuples of {key, [print-type], value}.
* The key must be a string. If print-type is present, it
* defines an alternate printf format type vs the native format
* for the attribute. And the value can be any available
* driver type.
*/
mnl_attr_for_each_nested(tb_entry, tb) {
if (cc > MAX_LINE_LENGTH) {
if (rd->pretty_output)
newline_indent(rd);
cc = 0;
}
if (rd_attr_check(tb_entry, &type) != MNL_CB_OK)
return;
if (!key) {
if (type != MNL_TYPE_NUL_STRING)
return;
key = tb_entry;
} else if (type == MNL_TYPE_U8) {
print_type = mnl_attr_get_u8(tb_entry);
} else {
val = tb_entry;
ret = print_driver_entry(rd, key, val, print_type);
if (ret < 0)
return;
cc += ret;
print_type = RDMA_NLDEV_PRINT_TYPE_UNSPEC;
key = NULL;
}
}
return;
}