Message ID | 20200915235259.457050-3-kuba@kernel.org |
---|---|
State | New |
Headers | show |
Series | [ethtool-next,1/5] update UAPI header copies | expand |
On 9/15/2020 4:52 PM, Jakub Kicinski wrote: > No change in normal text output: > > # ./ethtool -a eth0 > Pause parameters for eth0: > Autonegotiate: on > RX: on > TX: on > RX negotiated: on > TX negotiated: on > > JSON: > > # ./ethtool --json -a eth0 > [ { > "ifname": "eth0", > "autonegotiate": true, > "rx": true, > "tx": true, > "negotiated": { > "rx": true, > "tx": true > } > } ] Makes sense, we report all of these as a single dictionary with key-values. Putting negotiated as a subsection seems reasonable as well. I guess we could split this so that tx and rx have their own section. but I think this is good. This looks good to me. Reviewed-by: Jacob Keller <jacob.e.keller@gmail.com> > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- > netlink/netlink.h | 12 ++++++++++-- > netlink/pause.c | 45 +++++++++++++++++++++++++++++++++++---------- > 2 files changed, 45 insertions(+), 12 deletions(-) > > diff --git a/netlink/netlink.h b/netlink/netlink.h > index dd4a02bcc916..4916d25ed5c0 100644 > --- a/netlink/netlink.h > +++ b/netlink/netlink.h > @@ -106,9 +106,17 @@ static inline const char *u8_to_bool(const struct nlattr *attr) > return "n/a"; > } > > -static inline void show_bool(const struct nlattr *attr, const char *label) > +static inline void show_bool(const char *key, const char *fmt, > + const struct nlattr *attr) > { > - printf("%s%s\n", label, u8_to_bool(attr)); > + if (is_json_context()) { > + if (attr) { > + print_bool(PRINT_JSON, key, NULL, > + mnl_attr_get_u8(attr)); > + } > + } else { > + print_string(PRINT_FP, NULL, fmt, u8_to_bool(attr)); Ok. The change from label to fmt makes sense because we now pass a format string instead of a label, and we use print_string instead of printf. > + } > } > > /* misc */ > diff --git a/netlink/pause.c b/netlink/pause.c > index 7b6b3a1d2c10..30ecdccb15eb 100644 > --- a/netlink/pause.c > +++ b/netlink/pause.c > @@ -72,8 +72,16 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) > else if (peer.pause) > tx_status = true; > } > - printf("RX negotiated: %s\nTX negotiated: %s\n", > - rx_status ? "on" : "off", tx_status ? "on" : "off"); > + > + if (is_json_context()) { > + open_json_object("negotiated"); > + print_bool(PRINT_JSON, "rx", NULL, rx_status); > + print_bool(PRINT_JSON, "tx", NULL, tx_status); > + close_json_object(); > + } else { > + printf("RX negotiated: %s\nTX negotiated: %s\n", > + rx_status ? "on" : "off", tx_status ? "on" : "off"); > + } > Why not use print_string here like show_bool did? > return MNL_CB_OK; > } > @@ -121,21 +129,34 @@ int pause_reply_cb(const struct nlmsghdr *nlhdr, void *data) > return err_ret; > > if (silent) > - putchar('\n'); > - printf("Pause parameters for %s:\n", nlctx->devname); > - show_bool(tb[ETHTOOL_A_PAUSE_AUTONEG], "Autonegotiate:\t"); > - show_bool(tb[ETHTOOL_A_PAUSE_RX], "RX:\t\t"); > - show_bool(tb[ETHTOOL_A_PAUSE_TX], "TX:\t\t"); > + print_nl(); > + > + open_json_object(NULL); > + > + print_string(PRINT_ANY, "ifname", "Pause parameters for %s:\n", > + nlctx->devname); > + Ah, nice, so this prints based on the current format and will just print the ifname instead of showing the format string. Neat. > + show_bool("autonegotiate", "Autonegotiate:\t%s\n", > + tb[ETHTOOL_A_PAUSE_AUTONEG]); > + show_bool("rx", "RX:\t\t%s\n", tb[ETHTOOL_A_PAUSE_RX]); > + show_bool("tx", "TX:\t\t%s\n", tb[ETHTOOL_A_PAUSE_TX]); > + > if (!nlctx->is_monitor && tb[ETHTOOL_A_PAUSE_AUTONEG] && > mnl_attr_get_u8(tb[ETHTOOL_A_PAUSE_AUTONEG])) { > ret = show_pause_autoneg_status(nlctx); > if (ret < 0) > - return err_ret; > + goto err_close_dev; > } > if (!silent) > - putchar('\n'); > + print_nl(); > + > + close_json_object(); > > return MNL_CB_OK; > + > +err_close_dev: > + close_json_object(); > + return err_ret; > } > > int nl_gpause(struct cmd_context *ctx) > @@ -156,7 +177,11 @@ int nl_gpause(struct cmd_context *ctx) > ETHTOOL_A_PAUSE_HEADER, 0); > if (ret < 0) > return ret; > - return nlsock_send_get_request(nlsk, pause_reply_cb); > + > + new_json_obj(ctx->json); > + ret = nlsock_send_get_request(nlsk, pause_reply_cb); > + delete_json_obj(); > + return ret; > } > > /* PAUSE_SET */ >
On Wed, 23 Sep 2020 17:10:30 -0700 Jacob Keller wrote: > > - printf("RX negotiated: %s\nTX negotiated: %s\n", > > - rx_status ? "on" : "off", tx_status ? "on" : "off"); > > + > > + if (is_json_context()) { > > + open_json_object("negotiated"); > > + print_bool(PRINT_JSON, "rx", NULL, rx_status); > > + print_bool(PRINT_JSON, "tx", NULL, tx_status); > > + close_json_object(); > > + } else { > > + printf("RX negotiated: %s\nTX negotiated: %s\n", > > + rx_status ? "on" : "off", tx_status ? "on" : "off"); > > + } > > Why not use print_string here like show_bool did? Yeah.. I did not come up with a good way of reusing the show_bool code so I gave up. Taking another swing at it - how does this look? diff --git a/netlink/coalesce.c b/netlink/coalesce.c index 65f75cf9a8dd..07a92d04b7a1 100644 --- a/netlink/coalesce.c +++ b/netlink/coalesce.c @@ -36,9 +36,9 @@ int coalesce_reply_cb(const struct nlmsghdr *nlhdr, void *data) if (silent) putchar('\n'); printf("Coalesce parameters for %s:\n", nlctx->devname); - printf("Adaptive RX: %s TX: %s\n", - u8_to_bool(tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX]), - u8_to_bool(tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX])); + show_bool("rx", "Adaptive RX: %s ", + tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX]); + show_bool("tx", "TX: %s\n", tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX]); show_u32(tb[ETHTOOL_A_COALESCE_STATS_BLOCK_USECS], "stats-block-usecs: "); show_u32(tb[ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL], diff --git a/netlink/netlink.h b/netlink/netlink.h index 4916d25ed5c0..1012e8e32cd8 100644 --- a/netlink/netlink.h +++ b/netlink/netlink.h @@ -98,27 +98,30 @@ static inline void show_u32(const struct nlattr *attr, const char *label) printf("%sn/a\n", label); } -static inline const char *u8_to_bool(const struct nlattr *attr) +static inline const char *u8_to_bool(const uint8_t *val) { - if (attr) - return mnl_attr_get_u8(attr) ? "on" : "off"; + if (val) + return *val ? "on" : "off"; else return "n/a"; } -static inline void show_bool(const char *key, const char *fmt, - const struct nlattr *attr) +static inline void show_bool_val(const char *key, const char *fmt, uint8_t *val) { if (is_json_context()) { - if (attr) { - print_bool(PRINT_JSON, key, NULL, - mnl_attr_get_u8(attr)); - } + if (val) + print_bool(PRINT_JSON, key, NULL, val); } else { - print_string(PRINT_FP, NULL, fmt, u8_to_bool(attr)); + print_string(PRINT_FP, NULL, fmt, u8_to_bool(val)); } } +static inline void show_bool(const char *key, const char *fmt, + const struct nlattr *attr) +{ + show_bool_val(key, fmt, attr ? mnl_attr_get_payload(attr) : NULL); +} + /* misc */ static inline void copy_devname(char *dst, const char *src) diff --git a/netlink/pause.c b/netlink/pause.c index f9dec9fe887a..5395398ba948 100644 --- a/netlink/pause.c +++ b/netlink/pause.c @@ -41,8 +41,8 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) struct pause_autoneg_status ours = {}; struct pause_autoneg_status peer = {}; struct nl_context *nlctx = data; - bool rx_status = false; - bool tx_status = false; + uint8_t rx_status = false; + uint8_t tx_status = false; bool silent; int err_ret; int ret; @@ -74,15 +74,10 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) tx_status = true; } - if (is_json_context()) { - open_json_object("negotiated"); - print_bool(PRINT_JSON, "rx", NULL, rx_status); - print_bool(PRINT_JSON, "tx", NULL, tx_status); - close_json_object(); - } else { - printf("RX negotiated: %s\nTX negotiated: %s\n", - rx_status ? "on" : "off", tx_status ? "on" : "off"); - } + open_json_object("negotiated"); + show_bool_val("rx", "RX negotiated: %s\n", &rx_status); + show_bool_val("tx", "TX negotiated: %s\n", &tx_status); + close_json_object(); return MNL_CB_OK; }
On 9/24/2020 8:36 AM, Jakub Kicinski wrote: > On Wed, 23 Sep 2020 17:10:30 -0700 Jacob Keller wrote: >>> - printf("RX negotiated: %s\nTX negotiated: %s\n", >>> - rx_status ? "on" : "off", tx_status ? "on" : "off"); >>> + >>> + if (is_json_context()) { >>> + open_json_object("negotiated"); >>> + print_bool(PRINT_JSON, "rx", NULL, rx_status); >>> + print_bool(PRINT_JSON, "tx", NULL, tx_status); >>> + close_json_object(); >>> + } else { >>> + printf("RX negotiated: %s\nTX negotiated: %s\n", >>> + rx_status ? "on" : "off", tx_status ? "on" : "off"); >>> + } >> >> Why not use print_string here like show_bool did? > > Yeah.. I did not come up with a good way of reusing the show_bool code > so I gave up. Taking another swing at it - how does this look? > > diff --git a/netlink/coalesce.c b/netlink/coalesce.c > index 65f75cf9a8dd..07a92d04b7a1 100644 > --- a/netlink/coalesce.c > +++ b/netlink/coalesce.c > @@ -36,9 +36,9 @@ int coalesce_reply_cb(const struct nlmsghdr *nlhdr, void *data) > if (silent) > putchar('\n'); > printf("Coalesce parameters for %s:\n", nlctx->devname); > - printf("Adaptive RX: %s TX: %s\n", > - u8_to_bool(tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX]), > - u8_to_bool(tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX])); > + show_bool("rx", "Adaptive RX: %s ", > + tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX]); > + show_bool("tx", "TX: %s\n", tb[ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX]); > show_u32(tb[ETHTOOL_A_COALESCE_STATS_BLOCK_USECS], > "stats-block-usecs: "); > show_u32(tb[ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL], > diff --git a/netlink/netlink.h b/netlink/netlink.h > index 4916d25ed5c0..1012e8e32cd8 100644 > --- a/netlink/netlink.h > +++ b/netlink/netlink.h > @@ -98,27 +98,30 @@ static inline void show_u32(const struct nlattr *attr, const char *label) > printf("%sn/a\n", label); > } > > -static inline const char *u8_to_bool(const struct nlattr *attr) > +static inline const char *u8_to_bool(const uint8_t *val) > { > - if (attr) > - return mnl_attr_get_u8(attr) ? "on" : "off"; > + if (val) > + return *val ? "on" : "off"; > else > return "n/a"; > } > > -static inline void show_bool(const char *key, const char *fmt, > - const struct nlattr *attr) > +static inline void show_bool_val(const char *key, const char *fmt, uint8_t *val) > { > if (is_json_context()) { > - if (attr) { > - print_bool(PRINT_JSON, key, NULL, > - mnl_attr_get_u8(attr)); > - } > + if (val) > + print_bool(PRINT_JSON, key, NULL, val); > } else { > - print_string(PRINT_FP, NULL, fmt, u8_to_bool(attr)); > + print_string(PRINT_FP, NULL, fmt, u8_to_bool(val)); > } > } > > +static inline void show_bool(const char *key, const char *fmt, > + const struct nlattr *attr) > +{ > + show_bool_val(key, fmt, attr ? mnl_attr_get_payload(attr) : NULL); > +} > + > /* misc */ > > static inline void copy_devname(char *dst, const char *src) > diff --git a/netlink/pause.c b/netlink/pause.c > index f9dec9fe887a..5395398ba948 100644 > --- a/netlink/pause.c > +++ b/netlink/pause.c > @@ -41,8 +41,8 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) > struct pause_autoneg_status ours = {}; > struct pause_autoneg_status peer = {}; > struct nl_context *nlctx = data; > - bool rx_status = false; > - bool tx_status = false; > + uint8_t rx_status = false; > + uint8_t tx_status = false; > bool silent; > int err_ret; > int ret; > @@ -74,15 +74,10 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) > tx_status = true; > } > > - if (is_json_context()) { > - open_json_object("negotiated"); > - print_bool(PRINT_JSON, "rx", NULL, rx_status); > - print_bool(PRINT_JSON, "tx", NULL, tx_status); > - close_json_object(); > - } else { > - printf("RX negotiated: %s\nTX negotiated: %s\n", > - rx_status ? "on" : "off", tx_status ? "on" : "off"); > - } > + open_json_object("negotiated"); > + show_bool_val("rx", "RX negotiated: %s\n", &rx_status); > + show_bool_val("tx", "TX negotiated: %s\n", &tx_status); > + close_json_object(); > > return MNL_CB_OK; > } > This looks good! Thanks, Jake
diff --git a/netlink/netlink.h b/netlink/netlink.h index dd4a02bcc916..4916d25ed5c0 100644 --- a/netlink/netlink.h +++ b/netlink/netlink.h @@ -106,9 +106,17 @@ static inline const char *u8_to_bool(const struct nlattr *attr) return "n/a"; } -static inline void show_bool(const struct nlattr *attr, const char *label) +static inline void show_bool(const char *key, const char *fmt, + const struct nlattr *attr) { - printf("%s%s\n", label, u8_to_bool(attr)); + if (is_json_context()) { + if (attr) { + print_bool(PRINT_JSON, key, NULL, + mnl_attr_get_u8(attr)); + } + } else { + print_string(PRINT_FP, NULL, fmt, u8_to_bool(attr)); + } } /* misc */ diff --git a/netlink/pause.c b/netlink/pause.c index 7b6b3a1d2c10..30ecdccb15eb 100644 --- a/netlink/pause.c +++ b/netlink/pause.c @@ -72,8 +72,16 @@ static int pause_autoneg_cb(const struct nlmsghdr *nlhdr, void *data) else if (peer.pause) tx_status = true; } - printf("RX negotiated: %s\nTX negotiated: %s\n", - rx_status ? "on" : "off", tx_status ? "on" : "off"); + + if (is_json_context()) { + open_json_object("negotiated"); + print_bool(PRINT_JSON, "rx", NULL, rx_status); + print_bool(PRINT_JSON, "tx", NULL, tx_status); + close_json_object(); + } else { + printf("RX negotiated: %s\nTX negotiated: %s\n", + rx_status ? "on" : "off", tx_status ? "on" : "off"); + } return MNL_CB_OK; } @@ -121,21 +129,34 @@ int pause_reply_cb(const struct nlmsghdr *nlhdr, void *data) return err_ret; if (silent) - putchar('\n'); - printf("Pause parameters for %s:\n", nlctx->devname); - show_bool(tb[ETHTOOL_A_PAUSE_AUTONEG], "Autonegotiate:\t"); - show_bool(tb[ETHTOOL_A_PAUSE_RX], "RX:\t\t"); - show_bool(tb[ETHTOOL_A_PAUSE_TX], "TX:\t\t"); + print_nl(); + + open_json_object(NULL); + + print_string(PRINT_ANY, "ifname", "Pause parameters for %s:\n", + nlctx->devname); + + show_bool("autonegotiate", "Autonegotiate:\t%s\n", + tb[ETHTOOL_A_PAUSE_AUTONEG]); + show_bool("rx", "RX:\t\t%s\n", tb[ETHTOOL_A_PAUSE_RX]); + show_bool("tx", "TX:\t\t%s\n", tb[ETHTOOL_A_PAUSE_TX]); + if (!nlctx->is_monitor && tb[ETHTOOL_A_PAUSE_AUTONEG] && mnl_attr_get_u8(tb[ETHTOOL_A_PAUSE_AUTONEG])) { ret = show_pause_autoneg_status(nlctx); if (ret < 0) - return err_ret; + goto err_close_dev; } if (!silent) - putchar('\n'); + print_nl(); + + close_json_object(); return MNL_CB_OK; + +err_close_dev: + close_json_object(); + return err_ret; } int nl_gpause(struct cmd_context *ctx) @@ -156,7 +177,11 @@ int nl_gpause(struct cmd_context *ctx) ETHTOOL_A_PAUSE_HEADER, 0); if (ret < 0) return ret; - return nlsock_send_get_request(nlsk, pause_reply_cb); + + new_json_obj(ctx->json); + ret = nlsock_send_get_request(nlsk, pause_reply_cb); + delete_json_obj(); + return ret; } /* PAUSE_SET */
No change in normal text output: # ./ethtool -a eth0 Pause parameters for eth0: Autonegotiate: on RX: on TX: on RX negotiated: on TX negotiated: on JSON: # ./ethtool --json -a eth0 [ { "ifname": "eth0", "autonegotiate": true, "rx": true, "tx": true, "negotiated": { "rx": true, "tx": true } } ] Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- netlink/netlink.h | 12 ++++++++++-- netlink/pause.c | 45 +++++++++++++++++++++++++++++++++++---------- 2 files changed, 45 insertions(+), 12 deletions(-)