summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSabrina Dubroca <sd@queasysnail.net>2016-06-24 16:34:39 +0200
committerSabrina Dubroca <sd@queasysnail.net>2016-06-25 18:27:14 +0200
commit885ff4ae1efce35f8db378b2533025c3c931823c (patch)
tree5c848f99f4608144cbeefd796848beb4e4e0c878 /tests
parent6ecba6e44022a2d0f84e86579769b46086a182ca (diff)
downloadlibnl-885ff4ae1efce35f8db378b2533025c3c931823c.tar.gz
lib/route: add macsec support
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/.gitignore1
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/test-create-macsec.c47
3 files changed, 49 insertions, 0 deletions
diff --git a/tests/.gitignore b/tests/.gitignore
index 9666f279..247b0e6f 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -14,6 +14,7 @@
/test-create-ipip
/test-create-ipvlan
/test-create-ipvti
+/test-create-macsec
/test-create-macvlan
/test-create-macvtap
/test-create-sit
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5cf43e94..c31fb527 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -35,6 +35,7 @@ check_PROGRAMS = \
test-create-ipgretap \
test-create-ipip \
test-create-ipvti \
+ test-create-macsec \
test-create-macvlan \
test-create-macvtap \
test-create-ipvlan \
diff --git a/tests/test-create-macsec.c b/tests/test-create-macsec.c
new file mode 100644
index 00000000..abdb7f60
--- /dev/null
+++ b/tests/test-create-macsec.c
@@ -0,0 +1,47 @@
+#include <netlink/netlink.h>
+#include <netlink/route/link.h>
+#include <netlink/route/link/macsec.h>
+
+int main(int argc, char *argv[])
+{
+ struct rtnl_link *link;
+ struct nl_cache *link_cache;
+ struct nl_sock *sk;
+ int err, master_index;
+
+ sk = nl_socket_alloc();
+ if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
+ nl_perror(err, "Unable to connect socket");
+ return err;
+ }
+
+ if ((err = rtnl_link_alloc_cache(sk, AF_UNSPEC, &link_cache)) < 0) {
+ nl_perror(err, "Unable to allocate cache");
+ return err;
+ }
+
+ if (!(master_index = rtnl_link_name2i(link_cache, "eth0"))) {
+ fprintf(stderr, "Unable to lookup eth0");
+ return -1;
+ }
+
+
+ link = rtnl_link_macsec_alloc();
+
+ rtnl_link_set_link(link, master_index);
+
+ rtnl_link_macsec_set_port(link, 10);
+ rtnl_link_macsec_set_encrypt(link, 1);
+ rtnl_link_macsec_set_replay_protect(link, 1);
+ rtnl_link_macsec_set_window(link, 200);
+
+ 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;
+}