]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd-network/test-acd.c
e83f27e76f1cd01e7ecea7ac7508403009391c00
[thirdparty/systemd.git] / src / libsystemd-network / test-acd.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 Copyright (C) 2014 Tom Gundersen <teg@jklm.no>
4 ***/
5
6 #include <errno.h>
7 #include <stdlib.h>
8 #include <unistd.h>
9
10 #include <linux/veth.h>
11 #include <net/if.h>
12
13 #include "sd-event.h"
14 #include "sd-ipv4acd.h"
15 #include "sd-netlink.h"
16
17 #include "in-addr-util.h"
18 #include "netlink-util.h"
19 #include "util.h"
20
21 static void acd_handler(sd_ipv4acd *acd, int event, void *userdata) {
22 assert_se(acd);
23
24 switch (event) {
25 case SD_IPV4ACD_EVENT_BIND:
26 log_info("bound");
27 break;
28 case SD_IPV4ACD_EVENT_CONFLICT:
29 log_info("conflict");
30 break;
31 case SD_IPV4ACD_EVENT_STOP:
32 log_error("the client was stopped");
33 break;
34 default:
35 assert_not_reached("invalid ACD event");
36 }
37 }
38
39 static int client_run(int ifindex, const struct in_addr *pa, const struct ether_addr *ha, sd_event *e) {
40 sd_ipv4acd *acd;
41
42 assert_se(sd_ipv4acd_new(&acd) >= 0);
43 assert_se(sd_ipv4acd_attach_event(acd, e, 0) >= 0);
44
45 assert_se(sd_ipv4acd_set_ifindex(acd, ifindex) >= 0);
46 assert_se(sd_ipv4acd_set_mac(acd, ha) >= 0);
47 assert_se(sd_ipv4acd_set_address(acd, pa) >= 0);
48 assert_se(sd_ipv4acd_set_callback(acd, acd_handler, NULL) >= 0);
49
50 log_info("starting IPv4ACD client");
51
52 assert_se(sd_ipv4acd_start(acd) >= 0);
53
54 assert_se(sd_event_loop(e) >= 0);
55
56 assert_se(!sd_ipv4acd_unref(acd));
57
58 return EXIT_SUCCESS;
59 }
60
61 static int test_acd(const char *ifname, const char *address) {
62 _cleanup_(sd_event_unrefp) sd_event *e = NULL;
63 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
64 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *m = NULL, *reply = NULL;
65 union in_addr_union pa;
66 struct ether_addr ha;
67 int ifindex;
68
69 assert_se(in_addr_from_string(AF_INET, address, &pa) >= 0);
70
71 assert_se(sd_event_new(&e) >= 0);
72
73 assert_se(sd_netlink_open(&rtnl) >= 0);
74 assert_se(sd_netlink_attach_event(rtnl, e, 0) >= 0);
75
76 assert_se(sd_rtnl_message_new_link(rtnl, &m, RTM_GETLINK, 0) >= 0);
77 assert_se(sd_netlink_message_append_string(m, IFLA_IFNAME, ifname) >= 0);
78 assert_se(sd_netlink_call(rtnl, m, 0, &reply) >= 0);
79
80 assert_se(sd_rtnl_message_link_get_ifindex(reply, &ifindex) >= 0);
81 assert_se(sd_netlink_message_read_ether_addr(reply, IFLA_ADDRESS, &ha) >= 0);
82
83 client_run(ifindex, &pa.in, &ha, e);
84
85 return EXIT_SUCCESS;
86 }
87
88 int main(int argc, char *argv[]) {
89 log_set_max_level(LOG_DEBUG);
90 log_parse_environment();
91 log_open();
92
93 if (argc == 3)
94 return test_acd(argv[1], argv[2]);
95 else {
96 log_error("This program takes two arguments.\n"
97 "\t %s <ifname> <IPv4 address>", program_invocation_short_name);
98 return EXIT_FAILURE;
99 }
100 }