13 #include <netlink/cli/utils.h> 14 #include <netlink/route/pktloc.h> 15 #include <linux/tc_ematch/tc_em_cmp.h> 17 static void print_usage(
void)
20 "Usage: nl-pktloc-lookup [OPTIONS] <name>\n" 23 " -h, --help Show this help text.\n" 24 " -v, --version Show versioning information.\n" 25 " -l, --list List all packet location definitions.\n" 26 " --u32=VALUE Print in iproute2's u32 selector style\n" 30 " $ nl-pktloc-lookup ip.dst\n" 31 " $ nl-pktloc-lookup --list\n" 37 static const char *align_txt[] = {
38 [TCF_EM_ALIGN_U8] =
"u8",
39 [TCF_EM_ALIGN_U16] =
"u16",
40 [TCF_EM_ALIGN_U32] =
"u32" 43 static uint32_t align_mask[] = {
44 [TCF_EM_ALIGN_U8] = 0xff,
45 [TCF_EM_ALIGN_U16] = 0xffff,
46 [TCF_EM_ALIGN_U32] = 0xffffffff,
49 static const char *layer_txt[] = {
50 [TCF_LAYER_LINK] =
"eth",
51 [TCF_LAYER_NETWORK] =
"ip",
52 [TCF_LAYER_TRANSPORT] =
"tcp" 55 static void dump_u32_style(
struct rtnl_pktloc *loc, uint32_t value)
58 nl_cli_fatal(EINVAL,
"u32 only supports alignments u8|u16|u32.");
60 if (loc->layer == TCF_LAYER_LINK)
67 printf(
"%s %x %x at %s%u\n",
68 align_txt[loc->align],
69 value, loc->mask ? loc->mask : align_mask[loc->align],
70 loc->layer == TCF_LAYER_TRANSPORT ?
"nexthdr+" :
"",
79 strcpy(buf, align_txt[loc->align]);
81 snprintf(buf,
sizeof(buf),
"%u", loc->align);
88 printf(
"%s = %s at %s+%u & %#x >> %u\n",
89 loc->name, get_align_txt(loc), layer_txt[loc->layer],
90 loc->offset, loc->mask, loc->shift);
93 static void list_cb(
struct rtnl_pktloc *loc,
void *arg)
95 printf(
"%-26s %-5s %3s+%-4u %#-10x %-8u %u\n",
96 loc->name, get_align_txt(loc), layer_txt[loc->layer],
97 loc->offset, loc->mask, loc->shift, loc->refcnt);
100 static void do_list(
void)
103 "name align offset mask shift refcnt\n");
104 printf(
"---------------------------------------------------------\n");
106 rtnl_pktloc_foreach(&list_cb, NULL);
109 int main(
int argc,
char *argv[])
120 static struct option long_opts[] = {
121 {
"help", 0, 0,
'h' },
122 {
"version", 0, 0,
'v' },
123 {
"list", 0, 0,
'l' },
124 {
"u32", 1, 0, ARG_U32 },
128 c = getopt_long(argc, argv,
"hvl", long_opts, &optidx);
133 case 'h': print_usage();
break;
134 case 'v': nl_cli_print_version();
break;
135 case 'l': do_list(); exit(0);
147 nl_cli_fatal(err,
"Unable to lookup packet location: %s",
151 dump_u32_style(loc, uvalue);
uint32_t nl_cli_parse_u32(const char *arg)
Parse a text based 32 bit unsigned integer argument.
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
int rtnl_pktloc_lookup(const char *name, struct rtnl_pktloc **result)
Lookup packet location alias.