6 #include <netlink/cli/utils.h>
7 #include <netlink/route/pktloc.h>
8 #include <linux/tc_ematch/tc_em_cmp.h>
10 static void print_usage(
void)
13 "Usage: nl-pktloc-lookup [OPTIONS] <name>\n"
16 " -h, --help Show this help text.\n"
17 " -v, --version Show versioning information.\n"
18 " -l, --list List all packet location definitions.\n"
19 " --u32=VALUE Print in iproute2's u32 selector style\n"
23 " $ nl-pktloc-lookup ip.dst\n"
24 " $ nl-pktloc-lookup --list\n"
30 static const char *align_txt[] = {
31 [TCF_EM_ALIGN_U8] =
"u8",
32 [TCF_EM_ALIGN_U16] =
"u16",
33 [TCF_EM_ALIGN_U32] =
"u32"
36 static uint32_t align_mask[] = {
37 [TCF_EM_ALIGN_U8] = 0xff,
38 [TCF_EM_ALIGN_U16] = 0xffff,
39 [TCF_EM_ALIGN_U32] = 0xffffffff,
42 static const char *layer_txt[] = {
43 [TCF_LAYER_LINK] =
"eth",
44 [TCF_LAYER_NETWORK] =
"ip",
45 [TCF_LAYER_TRANSPORT] =
"tcp"
48 static void dump_u32_style(
struct rtnl_pktloc *loc, uint32_t value)
51 nl_cli_fatal(EINVAL,
"u32 only supports alignments u8|u16|u32.");
53 if (loc->layer == TCF_LAYER_LINK)
60 printf(
"%s %x %x at %s%u\n",
61 align_txt[loc->align],
62 value, loc->mask ? loc->mask : align_mask[loc->align],
63 loc->layer == TCF_LAYER_TRANSPORT ?
"nexthdr+" :
"",
72 strcpy(buf, align_txt[loc->align]);
74 snprintf(buf,
sizeof(buf),
"%u", loc->align);
81 printf(
"%s = %s at %s+%u & %#x >> %u\n",
82 loc->name, get_align_txt(loc), layer_txt[loc->layer],
83 loc->offset, loc->mask, loc->shift);
86 static void list_cb(
struct rtnl_pktloc *loc,
void *arg)
88 printf(
"%-26s %-5s %3s+%-4u %#-10x %-8u %u\n",
89 loc->name, get_align_txt(loc), layer_txt[loc->layer],
90 loc->offset, loc->mask, loc->shift, loc->refcnt);
93 static void do_list(
void)
96 "name align offset mask shift refcnt\n");
97 printf(
"---------------------------------------------------------\n");
99 rtnl_pktloc_foreach(&list_cb, NULL);
102 int main(
int argc,
char *argv[])
113 static struct option long_opts[] = {
114 {
"help", 0, 0,
'h' },
115 {
"version", 0, 0,
'v' },
116 {
"list", 0, 0,
'l' },
117 {
"u32", 1, 0, ARG_U32 },
121 c = getopt_long(argc, argv,
"hvl", long_opts, &optidx);
126 case 'h': print_usage();
break;
127 case 'v': nl_cli_print_version();
break;
128 case 'l': do_list(); exit(0);
140 nl_cli_fatal(err,
"Unable to lookup packet location: %s",
144 dump_u32_style(loc, uvalue);
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
uint32_t nl_cli_parse_u32(const char *arg)
Parse a text based 32 bit unsigned integer argument.
int rtnl_pktloc_lookup(const char *name, struct rtnl_pktloc **result)
Lookup packet location alias.