@@ -318,6 +318,9 @@ static void cmd_help_long_parsed(void *parsed_result,
"set output (filename)\n"
" Set the packet debug log file\n\n"
+ "set format (verbose|hex)\n"
+ " Set the format of packet log\\n"
+
"set log global|(type) (level)\n"
" Set the log level.\n\n"
@@ -4150,6 +4153,42 @@ static cmdline_parse_inst_t cmd_set_output = {
},
};
+/* *** SET FORMAT OF PACKET LOG */
+struct cmd_set_format_result {
+ cmdline_fixed_string_t set;
+ cmdline_fixed_string_t format;
+ cmdline_fixed_string_t value;
+};
+
+static void
+cmd_set_format_parsed(void *parsed_result,
+ __rte_unused struct cmdline *cl,
+ __rte_unused void *data)
+{
+ struct cmd_set_format_result *res = parsed_result;
+
+ set_output_format(res->value);
+}
+
+static cmdline_parse_token_string_t cmd_set_format_set =
+ TOKEN_STRING_INITIALIZER(struct cmd_set_format_result, set, "set");
+static cmdline_parse_token_string_t cmd_set_format_output =
+ TOKEN_STRING_INITIALIZER(struct cmd_set_format_result, format, "format");
+static cmdline_parse_token_string_t cmd_set_format_value =
+ TOKEN_STRING_INITIALIZER(struct cmd_set_format_result, value, "verbose#hex");
+
+static cmdline_parse_inst_t cmd_set_format = {
+ .f = cmd_set_format_parsed,
+ .data = NULL,
+ .help_str = "set format verbose|hex",
+ .tokens = {
+ (void *)&cmd_set_format_set,
+ (void *)&cmd_set_format_output,
+ (void *)&cmd_set_format_value,
+ NULL,
+ },
+};
+
/* *** SET LOG LEVEL CONFIGURATION *** */
struct cmd_set_log_result {
@@ -13685,6 +13724,7 @@ static cmdline_parse_ctx_t builtin_ctx[] = {
&cmd_read_rxd_txd,
&cmd_stop,
&cmd_mac_addr,
+ &cmd_set_format,
&cmd_set_fwd_eth_peer,
&cmd_set_qmap,
&cmd_set_xstats_hide_zero,
@@ -6340,6 +6340,17 @@ set_verbose_level(uint16_t vb_level)
configure_rxtx_dump_callbacks(verbose_level);
}
+void
+set_output_format(const char *mode)
+{
+ if (!strcmp(mode, "verbose"))
+ output_format = OUTPUT_MODE_VERBOSE;
+ else if (!strcmp(mode, "hex"))
+ output_format = OUTPUT_MODE_HEX;
+ else
+ fprintf(stderr, "Unknown output format '%s'\n", mode);
+}
+
void
set_output_file(const char *filename)
{
@@ -100,6 +100,7 @@
uint16_t verbose_level = 0; /**< Silent by default. */
RTE_ATOMIC(FILE *) output_file; /**< log to console by default. */
+enum output_mode output_format; /**< default to original mode. */
int testpmd_logtype; /**< Log type for testpmd logs */
/* use main core for command line ? */
@@ -488,6 +488,11 @@ enum dcb_mode_enable
DCB_ENABLED
};
+enum output_mode {
+ OUTPUT_MODE_VERBOSE = 0,
+ OUTPUT_MODE_HEX,
+};
+
extern uint8_t xstats_hide_zero; /**< Hide zero values for xstats display */
/* globals used for configuration */
@@ -495,6 +500,7 @@ extern uint8_t record_core_cycles; /**< Enables measurement of CPU cycles */
extern uint8_t record_burst_stats; /**< Enables display of RX and TX bursts */
extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
extern RTE_ATOMIC(FILE *) output_file; /**< Where packet data is written */
+extern enum output_mode output_format; /**< Format of packet decode */
extern int testpmd_logtype; /**< Log type for testpmd logs */
extern uint8_t interactive;
extern uint8_t auto_start;
@@ -1107,6 +1113,7 @@ void set_xstats_hide_zero(uint8_t on_off);
void set_record_core_cycles(uint8_t on_off);
void set_record_burst_stats(uint8_t on_off);
void set_verbose_level(uint16_t vb_level);
+void set_output_format(const char *mode);
void set_output_file(const char *filename);
void set_rx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
void set_rx_pkt_hdrs(unsigned int *seg_protos, unsigned int nb_segs);
@@ -16,6 +16,7 @@
#include "testpmd.h"
#define MAX_STRING_LEN 8192
+#define MAX_DUMP_LEN 1024
#define MKDUMPSTR(buf, buf_size, cur_len, ...) \
do { \
@@ -67,9 +68,9 @@ get_timestamp(const struct rte_mbuf *mbuf)
timestamp_dynfield_offset, rte_mbuf_timestamp_t *);
}
-static inline void
-dump_pkt_burst(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
- uint16_t nb_pkts, int is_rx)
+static void
+dump_pkt_verbose(FILE *outf, uint16_t port_id, uint16_t queue,
+ struct rte_mbuf *pkts[], uint16_t nb_pkts, int is_rx)
{
struct rte_mbuf *mb;
const struct rte_ether_hdr *eth_hdr;
@@ -89,14 +90,6 @@ dump_pkt_burst(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
size_t buf_size = MAX_STRING_LEN;
size_t cur_len = 0;
uint64_t restore_info_dynflag;
- FILE *outf;
-
- if (!nb_pkts)
- return;
-
- outf = rte_atomic_load_explicit(&output_file, rte_memory_order_relaxed);
- if (!outf)
- return;
restore_info_dynflag = rte_flow_restore_info_dynflag();
MKDUMPSTR(print_buf, buf_size, cur_len,
@@ -303,6 +296,45 @@ dump_pkt_burst(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
fprintf(outf, "%s", print_buf);
cur_len = 0;
}
+}
+
+static void
+dump_pkt_hex(FILE *outf, uint16_t port_id, uint16_t queue,
+ struct rte_mbuf *pkts[], uint16_t nb_pkts, int is_rx)
+{
+ fprintf(outf, "port %u/queue %u: %s %u packets\n", port_id, queue,
+ is_rx ? "received" : "sent", (unsigned int) nb_pkts);
+
+ for (uint16_t i = 0; i < nb_pkts; i++) {
+ rte_pktmbuf_dump(outf, pkts[i], MAX_DUMP_LEN);
+ fprintf(outf, "\n");
+ }
+}
+
+
+static void
+dump_pkt_burst(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
+ uint16_t nb_pkts, int is_rx)
+{
+ FILE *outf;
+
+ if (!nb_pkts)
+ return;
+
+ outf = rte_atomic_load_explicit(&output_file, rte_memory_order_relaxed);
+ if (unlikely(!outf))
+ return;
+
+ switch (output_format) {
+ case OUTPUT_MODE_VERBOSE:
+ dump_pkt_verbose(outf, port_id, queue, pkts, nb_pkts, is_rx);
+ return;
+ case OUTPUT_MODE_HEX:
+ dump_pkt_hex(outf, port_id, queue, pkts, nb_pkts, is_rx);
+ break;
+ default:
+ return;
+ }
fflush(outf);
}
@@ -691,6 +691,19 @@ Redirect the debug log::
testpmd> set output /tmp/packet.log
+set format
+~~~~~~~~~~
+
+Chose the output format for packet debug log::
+
+ testpmd> set format verbose|hex
+
+Available formats are:
+
+* ``verbose`` print the packet meta data information
+* ``hex`` print the mbuf flags and data in hex
+
+
set verbose
~~~~~~~~~~~