]> git.ipfire.org Git - thirdparty/libnl.git/commitdiff
nl-class-delete tool
authorThomas Graf <tgraf@suug.ch>
Wed, 20 Oct 2010 15:15:58 +0000 (17:15 +0200)
committerThomas Graf <tgraf@suug.ch>
Wed, 20 Oct 2010 15:15:58 +0000 (17:15 +0200)
Tool based on nl-qdisc-delete to delete traffic classes.

include/netlink/cli/class.h
src/.gitignore
src/Makefile.am
src/lib/class.c
src/nl-class-delete.c [new file with mode: 0644]

index 9c17761ab46e0a84ecfb34327b9ccfb8ff831366..e73cd460b75f27100b829a5ad8e2a9eca63b1017 100644 (file)
 #include <netlink/route/class.h>
 #include <netlink/route/class-modules.h>
 
-#define nl_cli_class_alloc_cache(sk) \
-               nl_cli_alloc_cache((sk), "traffic classes", \
-                                  rtnl_class_alloc_cache)
-
 extern struct rtnl_class *nl_cli_class_alloc(void);
+extern struct nl_cache *nl_cli_class_alloc_cache(struct nl_sock *, int);
 
 extern void nl_cli_class_parse_dev(struct rtnl_class *, struct nl_cache *, char *);
 extern void nl_cli_class_parse_parent(struct rtnl_class *, char *);
index cacaa3c1896d9ec235533438f7d7b65ebc68f02f..d5fdaa8046137410fa4d039f08d61b15f8349c93 100644 (file)
@@ -22,6 +22,7 @@ nl-qdisc-add
 nl-qdisc-delete
 nl-qdisc-list
 nl-class-add
+nl-class-delete
 nl-route-add
 nl-route-delete
 nl-route-list
index 1c0bcc4956c3168bc4c4ffade4122a3efb115b97..5cd10afd2bad8104e6f8808d0584da84afc15fd8 100644 (file)
@@ -7,7 +7,7 @@ AM_LDFLAGS = -L${top_builddir}/lib -L${top_builddir}/src/lib -lnl-cli
 
 sbin_PROGRAMS = \
        nl-qdisc-add nl-qdisc-list nl-qdisc-delete \
-       nl-class-add \
+       nl-class-add nl-class-delete \
        nl-classid-lookup
 
 noinst_PROGRAMS = \
@@ -79,6 +79,8 @@ nl_qdisc_list_LDADD = -lnl-route
 
 nl_class_add_SOURCES = nl-class-add.c
 nl_class_add_LDADD = -lnl-route
+nl_class_delete_SOURCES = nl-class-delete.c
+nl_class_delete_LDADD = -lnl-route
 
 nl_route_add_SOURCES = nl-route-add.c
 nl_route_add_LDADD = -lnl-route
index 93346d5b056ea6008602de21c86958b6a0f5a4ca..4f6ba30dadfe9e0c5e71d3b936a5d95be49b3027 100644 (file)
@@ -29,6 +29,20 @@ struct rtnl_class *nl_cli_class_alloc(void)
        return class;
 }
 
+struct nl_cache *nl_cli_class_alloc_cache(struct nl_sock *sock, int ifindex)
+{
+       struct nl_cache *cache;
+       int err;
+
+       if ((err = rtnl_class_alloc_cache(sock, ifindex, &cache)) < 0)
+               nl_cli_fatal(err, "Unable to allocate class cache: %s",
+                            nl_geterror(err));
+
+       nl_cache_mngt_provide(cache);
+
+       return cache;
+}
+
 void nl_cli_class_parse_dev(struct rtnl_class *class, struct nl_cache *link_cache, char *arg)
 {
        int ival;
diff --git a/src/nl-class-delete.c b/src/nl-class-delete.c
new file mode 100644 (file)
index 0000000..94b11d0
--- /dev/null
@@ -0,0 +1,134 @@
+/*
+ * src/nl-class-delete.c     Delete Traffic Classes
+ *
+ *     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>
+#include <netlink/cli/class.h>
+#include <netlink/cli/link.h>
+
+static int quiet = 0, default_yes = 0, deleted = 0, interactive = 0;
+struct nl_sock *sock;
+
+static void print_usage(void)
+{
+       printf(
+       "Usage: nl-class-delete [OPTION]... [class]\n"
+       "\n"
+       "OPTIONS\n"
+       "     --interactive     Run interactively.\n"
+       "     --yes             Set default answer to yes.\n"
+       " -q, --quiet           Do not print informal notifications.\n"
+       " -h, --help            Show this help text and exit.\n"
+       " -v, --version         Show versioning information and exit.\n"
+       "\n"
+       " -d, --dev=DEV         Device the class is attached to.\n"
+       " -p, --parent=ID       Identifier of parent qdisc/class.\n"
+       " -i, --id=ID           Identifier\n"
+       " -k, --kind=NAME       Kind of class (e.g. pfifo_fast)\n"
+       "\n"
+       "EXAMPLE\n"
+       "    # Delete all classes on eth0 attached to parent 1:\n"
+       "    $ nl-class-delete --dev eth0 --parent 1:\n"
+       "\n"
+       );
+
+       exit(0);
+}
+
+static void delete_cb(struct nl_object *obj, void *arg)
+{
+       struct rtnl_class *class = nl_object_priv(obj);
+       struct nl_dump_params params = {
+               .dp_type = NL_DUMP_LINE,
+               .dp_fd = stdout,
+       };
+       int err;
+
+       if (interactive && !nl_cli_confirm(obj, &params, default_yes))
+               return;
+
+       if ((err = rtnl_class_delete(sock, class)) < 0)
+               nl_cli_fatal(err, "Unable to delete class: %s\n", nl_geterror(err));
+
+       if (!quiet) {
+               printf("Deleted ");
+               nl_object_dump(obj, &params);
+       }
+
+       deleted++;
+}
+
+int main(int argc, char *argv[])
+{
+       struct rtnl_class *class;
+       struct nl_cache *link_cache, *class_cache;
+       sock = nl_cli_alloc_socket();
+       nl_cli_connect(sock, NETLINK_ROUTE);
+       link_cache = nl_cli_link_alloc_cache(sock);
+       class = nl_cli_class_alloc();
+       for (;;) {
+               int c, optidx = 0;
+               enum {
+                       ARG_YES = 257,
+                       ARG_INTERACTIVE = 258,
+               };
+               static struct option long_opts[] = {
+                       { "interactive", 0, 0, ARG_INTERACTIVE },
+                       { "yes", 0, 0, ARG_YES },
+                       { "quiet", 0, 0, 'q' },
+                       { "help", 0, 0, 'h' },
+                       { "version", 0, 0, 'v' },
+                       { "dev", 1, 0, 'd' },
+                       { "parent", 1, 0, 'p' },
+                       { "id", 1, 0, 'i' },
+                       { "kind", 1, 0, 'k' },
+                       { 0, 0, 0, 0 }
+               };
+       
+               c = getopt_long(argc, argv, "qhvd:p:i:k:", long_opts, &optidx);
+               if (c == -1)
+                       break;
+
+               switch (c) {
+               case '?': nl_cli_fatal(EINVAL, "Invalid options");
+               case ARG_INTERACTIVE: interactive = 1; break;
+               case ARG_YES: default_yes = 1; break;
+               case 'q': quiet = 1; break;
+               case 'h': print_usage(); break;
+               case 'v': nl_cli_print_version(); break;
+               case 'd':
+                       nl_cli_class_parse_dev(class, link_cache, optarg);
+                       break;
+               case 'p':
+                       nl_cli_class_parse_parent(class, optarg);
+                       break;
+               case 'i':
+                       nl_cli_class_parse_handle(class, optarg);
+                       break;
+               case 'k':
+                       nl_cli_class_parse_kind(class, optarg);
+                       break;
+               }
+       }
+
+       if (!rtnl_class_get_ifindex(class))
+               nl_cli_fatal(EINVAL, "You must specify a network device (--dev=XXX)");
+
+       class_cache = nl_cli_class_alloc_cache(sock, rtnl_class_get_ifindex(class));
+
+       nl_cache_foreach_filter(class_cache, OBJ_CAST(class), delete_cb, NULL);
+
+       if (!quiet)
+               printf("Deleted %d classs\n", deleted);
+
+       return 0;
+}