]> granicus.if.org Git - libnl/commitdiff
link: add ifb device support
authorCong Wang <xiyou.wangcong@gmail.com>
Mon, 21 Jul 2014 19:27:32 +0000 (12:27 -0700)
committerThomas Haller <thaller@redhat.com>
Thu, 24 Jul 2014 17:58:35 +0000 (19:58 +0200)
Cc: Thomas Graf <tgraf@suug.ch>
Cc: Thomas Haller <thaller@redhat.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Thomas Haller <thaller@redhat.com>
lib/Makefile.am
lib/route/link/ifb.c [new file with mode: 0644]
tests/.gitignore
tests/Makefile.am
tests/test-create-ifb.c [new file with mode: 0644]

index 4953d21f464c654bbc132b2fc2612e59aa2bc57b..ee9c00d4ac8dd638f0314df1220c0b6dd2fcb61c 100644 (file)
@@ -80,7 +80,7 @@ libnl_route_3_la_SOURCES = \
        route/link/bonding.c route/link/can.c route/link/macvlan.c \
        route/link/vxlan.c route/link/veth.c route/link/ipip.c \
        route/link/ipgre.c route/link/sit.c route/link/ipvti.c \
-       route/link/ip6tnl.c \
+       route/link/ip6tnl.c route/link/ifb.c \
        \
        route/qdisc/blackhole.c route/qdisc/cbq.c route/qdisc/dsmark.c \
        route/qdisc/fifo.c route/qdisc/htb.c route/qdisc/netem.c \
diff --git a/lib/route/link/ifb.c b/lib/route/link/ifb.c
new file mode 100644 (file)
index 0000000..524f5c6
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * lib/route/link/ifb.c        IFB Interfaces
+ *
+ *     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) 2014 Cong Wang <xiyou.wangcong@gmail.com>
+ */
+
+/**
+ * @ingroup link
+ * @defgroup ifb Intermediate Functional Block
+ *
+ * @details
+ * \b Link Type Name: "ifb"
+ *
+ * @{
+ */
+
+#include <netlink-private/netlink.h>
+#include <netlink/netlink.h>
+#include <netlink-private/route/link/api.h>
+
+static struct rtnl_link_info_ops ifb_info_ops = {
+       .io_name                = "ifb",
+};
+
+static void __init ifb_init(void)
+{
+       rtnl_link_register_info(&ifb_info_ops);
+}
+
+static void __exit ifb_exit(void)
+{
+       rtnl_link_unregister_info(&ifb_info_ops);
+}
+
+/** @} */
index 6b77caccee060cbc48bcc33a7e6c28233a89c367..7894d5aeabeda7243838115fb6bb5eb0ef63d1b3 100644 (file)
@@ -15,6 +15,7 @@
 /test-create-veth
 /test-create-vlan
 /test-create-vxlan
+/test-create-ifb
 /test-delete-link
 /test-genl
 /test-nf-cache-mngr
index 255033d7b5f7f904f57b124043c81b719db2fb53..85d93b8c4338fe431062a501d6cd15b892926e26 100644 (file)
@@ -29,6 +29,7 @@ check_PROGRAMS = \
        test-create-ipip \
        test-create-ipvti \
        test-create-sit \
+       test-create-ifb \
        test-delete-link \
        test-socket-creation \
        test-complex-HTB-with-hash-filters \
@@ -52,6 +53,7 @@ test_create_vlan_SOURCES = test-create-vlan.c
 test_create_vxlan_SOURCES = test-create-vxlan.c
 test_create_veth_SOURCES = test-create-veth.c
 test_create_bridge_SOURCES = test-create-bridge.c
+test_create_ifb_SOURCES = test-create-ifb.c
 test_delete_link_SOURCES = test-delete-link.c
 test_genl_SOURCES = test-genl.c
 test_nf_cache_mngr_SOURCES = test-nf-cache-mngr.c
diff --git a/tests/test-create-ifb.c b/tests/test-create-ifb.c
new file mode 100644 (file)
index 0000000..99336f5
--- /dev/null
@@ -0,0 +1,29 @@
+#include <netlink/netlink.h>
+#include <netlink/route/link.h>
+
+int main(int argc, char *argv[])
+{
+       struct rtnl_link *link;
+       struct nl_sock *sk;
+       int err;
+
+       sk = nl_socket_alloc();
+       if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
+               nl_perror(err, "Unable to connect socket");
+               return err;
+       }
+
+       link = rtnl_link_alloc();
+       rtnl_link_set_type(link, "ifb");
+       rtnl_link_set_name(link, "ifb1");
+
+       if ((err = rtnl_link_add(sk, link, NLM_F_CREATE)) < 0) {
+               nl_perror(err, "Unable to add link");
+               return err;
+       }
+
+       rtnl_link_put(link);
+       nl_close(sk);
+
+       return 0;
+}