liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * src/nl-classid-lookup.c     Lookup classid
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation version 2.1
 *    of the License.
 *
 * Copyright (c) 2010 Thomas Graf <tgraf@suug.ch>
 */
 
#include <netlink/cli/utils.h>
 
static void print_usage(void)
{
   printf(
"Usage: nl-classid-lookup [OPTIONS]... NAME\n"
"\n"
"OPTIONS\n"
" -h, --help                Show this help text.\n"
" -v, --version             Show versioning information.\n"
" -r, --reverse             Do a reverse lookup, i.e. classid to name.\n"
"     --raw                 Print the raw classid, not pretty printed.\n"
"\n"
"EXAMPLE\n"
"   $ nl-classid-lookup low_latency\n"
"   $ nl-classid-lookup -r 1:12\n"
"\n"
   );
   exit(0);
}
 
int main(int argc, char *argv[])
{
   uint32_t classid;
   char *name;
   int err, reverse = 0, raw = 0;
 
   for (;;) {
       int c, optidx = 0;
       enum {
           ARG_RAW = 257,
       };
       static struct option long_opts[] = {
           { "help", 0, 0, 'h' },
           { "version", 0, 0, 'v' },
           { "reverse", 0, 0, 'r' },
           { "raw", 0, 0, ARG_RAW },
           { 0, 0, 0, 0 }
       };
   
       c = getopt_long(argc, argv, "hvr", long_opts, &optidx);
       if (c == -1)
           break;
 
       switch (c) {
       case 'h': print_usage(); break;
       case 'v': nl_cli_print_version(); break;
       case 'r': reverse = 1; break;
       case ARG_RAW: raw = 1; break;
       }
     }
 
   if (optind >= argc)
       print_usage();
 
   name = argv[optind++];
 
   /*
    * We use rtnl_tc_str2handle() even while doing a reverse lookup. This
    * allows for name -> name lookups. This is intentional, it does not
    * do any harm and avoids duplicating a lot of code.
    */
   if ((err = rtnl_tc_str2handle(name, &classid)) < 0)
       nl_cli_fatal(err, "Unable to lookup classid \"%s\": %s",
                name, nl_geterror(err));
 
   if (reverse) {
       char buf[64];
       printf("%s\n", rtnl_tc_handle2str(classid, buf, sizeof(buf)));
   } else if (raw)
       printf("%#x\n", classid);
   else
       printf("%x:%x\n", TC_H_MAJ(classid) >> 16, TC_H_MIN(classid));
 
   return 0;
}