libnl 3.12.0
nl-qdisc-add.c
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2010 Thomas Graf <tgraf@suug.ch>
4 */
5
6#include "nl-default.h"
7
8#include <linux/netlink.h>
9
10#include <netlink/cli/utils.h>
11#include <netlink/cli/tc.h>
12#include <netlink/cli/qdisc.h>
13#include <netlink/cli/link.h>
14
15#include "nl-priv-dynamic-route/nl-priv-dynamic-route.h"
16
17static int quiet = 0;
18
19static void print_usage(void)
20{
21 printf(
22"Usage: nl-qdisc-add [OPTIONS]... QDISC [CONFIGURATION]...\n"
23"\n"
24"OPTIONS\n"
25" -q, --quiet Do not print informal notifications.\n"
26" -h, --help Show this help text.\n"
27" -v, --version Show versioning information.\n"
28" --update Update qdisc if it exists.\n"
29" --replace Replace or update qdisc if it exists.\n"
30" --update-only Only update qdisc, never create it.\n"
31" --replace-only Only replace or update qdisc, never create it.\n"
32" -d, --dev=DEV Network device the qdisc should be attached to.\n"
33" -i, --id=ID ID of new qdisc (default: auto-generated)r\n"
34" -p, --parent=ID ID of parent { root | ingress | QDISC-ID }\n"
35"\n"
36"CONFIGURATION\n"
37" -h, --help Show help text of qdisc specific options.\n"
38"\n"
39"EXAMPLE\n"
40" $ nl-qdisc-add --dev=eth1 --parent=root htb --rate=100mbit\n"
41"\n"
42 );
43 exit(0);
44}
45
46int main(int argc, char *argv[])
47{
48 struct nl_sock *sock;
49 struct rtnl_qdisc *qdisc;
50 struct rtnl_tc *tc;
51 struct nl_cache *link_cache;
52 struct nl_dump_params dp = {
53 .dp_type = NL_DUMP_DETAILS,
54 .dp_fd = stdout,
55 };
56 struct nl_cli_tc_module *tm;
57 struct rtnl_tc_ops *ops;
58 int err, flags = NLM_F_CREATE | NLM_F_EXCL;
59 const char *kind;
60 _nl_auto_free char *id = NULL;
61
62 sock = nl_cli_alloc_socket();
63 nl_cli_connect(sock, NETLINK_ROUTE);
64
65 link_cache = nl_cli_link_alloc_cache(sock);
66
67 qdisc = nl_cli_qdisc_alloc();
68 tc = (struct rtnl_tc *) qdisc;
69
70 for (;;) {
71 int c, optidx = 0;
72 enum {
73 ARG_REPLACE = 257,
74 ARG_UPDATE = 258,
75 ARG_REPLACE_ONLY,
76 ARG_UPDATE_ONLY,
77 };
78 static struct option long_opts[] = {
79 { "quiet", 0, 0, 'q' },
80 { "help", 0, 0, 'h' },
81 { "version", 0, 0, 'v' },
82 { "dev", 1, 0, 'd' },
83 { "parent", 1, 0, 'p' },
84 { "id", 1, 0, 'i' },
85 { "replace", 0, 0, ARG_REPLACE },
86 { "update", 0, 0, ARG_UPDATE },
87 { "replace-only", 0, 0, ARG_REPLACE_ONLY },
88 { "update-only", 0, 0, ARG_UPDATE_ONLY },
89 { 0, 0, 0, 0 }
90 };
91
92 c = getopt_long(argc, argv, "+qhvd:p:i:",
93 long_opts, &optidx);
94 if (c == -1)
95 break;
96
97 switch (c) {
98 case 'q': quiet = 1; break;
99 case 'h': print_usage(); break;
100 case 'v': nl_cli_print_version(); break;
101 case 'd': nl_cli_tc_parse_dev(tc, link_cache, optarg); break;
102 case 'p': nl_cli_tc_parse_parent(tc, optarg); break;
103 case 'i': _nl_clear_free(&id); id = strdup(optarg); break;
104 case ARG_UPDATE: flags = NLM_F_CREATE; break;
105 case ARG_REPLACE: flags = NLM_F_CREATE | NLM_F_REPLACE; break;
106 case ARG_UPDATE_ONLY: flags = 0; break;
107 case ARG_REPLACE_ONLY: flags = NLM_F_REPLACE; break;
108 }
109 }
110
111 if (optind >= argc)
112 print_usage();
113
114 if (!rtnl_tc_get_ifindex(tc))
115 nl_cli_fatal(EINVAL, "You must specify a network device (--dev=XXX)");
116
117 if (!rtnl_tc_get_parent(tc))
118 nl_cli_fatal(EINVAL, "You must specify a parent");
119
120 if (id) {
121 nl_cli_tc_parse_handle(tc, id, 1);
122 }
123
124 kind = argv[optind++];
125 rtnl_tc_set_kind(tc, kind);
126
127 if (!(ops = rtnl_tc_get_ops(tc)))
128 nl_cli_fatal(ENOENT, "Unknown qdisc \"%s\"", kind);
129
130 if (!(tm = nl_cli_tc_lookup(ops)))
131 nl_cli_fatal(ENOTSUP, "Qdisc type \"%s\" not supported.", kind);
132
133 tm->tm_parse_argv(tc, argc, argv);
134
135 if (!quiet) {
136 printf("Adding ");
137 nl_object_dump(OBJ_CAST(qdisc), &dp);
138 }
139
140 if ((err = rtnl_qdisc_add(sock, qdisc, flags)) < 0)
141 nl_cli_fatal(EINVAL, "Unable to add qdisc: %s", nl_geterror(err));
142
143 return 0;
144}
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
Definition utils.c:71
void nl_object_dump(struct nl_object *obj, struct nl_dump_params *params)
Dump this object according to the specified parameters.
Definition object.c:294
int rtnl_qdisc_add(struct nl_sock *sk, struct rtnl_qdisc *qdisc, int flags)
Add qdisc.
Definition qdisc.c:157
uint32_t rtnl_tc_get_parent(struct rtnl_tc *tc)
Return parent identifier of a traffic control object.
Definition tc.c:516
int rtnl_tc_set_kind(struct rtnl_tc *tc, const char *kind)
Define the type of traffic control object.
Definition tc.c:528
int rtnl_tc_get_ifindex(struct rtnl_tc *tc)
Return interface index of traffic control object.
Definition tc.c:292
@ NL_DUMP_DETAILS
Dump all attributes but no statistics.
Definition types.h:21
Dumping parameters.
Definition types.h:32