summaryrefslogtreecommitdiff
path: root/tests/test-create-xfrmi.c
blob: 8fd7c3abf3a2d1376a08ed47a36af408cdec5962 (plain)
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
/* SPDX-License-Identifier: LGPL-2.1-only */

#include "nl-default.h"

#include <netlink/route/link/xfrmi.h>

int main(int argc, char *argv[])
{
	struct nl_cache *link_cache;
	struct rtnl_link *link;
	struct nl_sock *sk;
	int err, if_index;

	sk = nl_socket_alloc();
	if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
		nl_perror(err, "Unable to connect socket");
		return err;
	}

	err = rtnl_link_alloc_cache(sk, AF_UNSPEC, &link_cache);
	if (err < 0) {
		nl_perror(err, "Unable to allocate cache");
		return err;
	}

	if_index = rtnl_link_name2i(link_cache, "eth0");
	if (!if_index) {
		fprintf(stderr, "Unable to lookup eth0");
		return -1;
	}

	link = rtnl_link_xfrmi_alloc();
	if (!link) {
		nl_perror(err, "Unable to allocate link");
		return -1;

	}

	rtnl_link_set_name(link, "ipsec0");
	rtnl_link_xfrmi_set_link(link, if_index);
	rtnl_link_xfrmi_set_if_id(link, 16);

	err = rtnl_link_add(sk, link, NLM_F_CREATE);
	if (err < 0) {
		nl_perror(err, "Unable to add link");
		return err;
	}

	rtnl_link_put(link);
	nl_close(sk);
	return 0;
}