]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-network/test-acd.c
tree-wide: sort includes
[thirdparty/systemd.git] / src / libsystemd-network / test-acd.c
CommitLineData
7b713b81
TG
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright (C) 2014 Tom Gundersen <teg@jklm.no>
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
7b713b81 22#include <errno.h>
cf0fbc49 23#include <stdlib.h>
7b713b81
TG
24#include <unistd.h>
25
26#include <linux/veth.h>
27#include <net/if.h>
28
29#include "sd-event.h"
7b713b81 30#include "sd-ipv4acd.h"
cf0fbc49 31#include "sd-netlink.h"
7b713b81 32
7b713b81 33#include "event-util.h"
7b713b81 34#include "in-addr-util.h"
cf0fbc49
TA
35#include "netlink-util.h"
36#include "util.h"
7b713b81
TG
37
38static void acd_handler(sd_ipv4acd *acd, int event, void *userdata) {
39 assert_se(acd);
40
41 switch (event) {
2237aa02 42 case SD_IPV4ACD_EVENT_BIND:
7b713b81
TG
43 log_info("bound");
44 break;
2237aa02 45 case SD_IPV4ACD_EVENT_CONFLICT:
7b713b81
TG
46 log_info("conflict");
47 break;
2237aa02 48 case SD_IPV4ACD_EVENT_STOP:
7b713b81
TG
49 log_error("the client was stopped");
50 break;
51 default:
52 assert_not_reached("invalid ACD event");
53 }
54}
55
56static int client_run(int ifindex, const struct in_addr *pa, const struct ether_addr *ha, sd_event *e) {
57 sd_ipv4acd *acd;
58
59 assert_se(sd_ipv4acd_new(&acd) >= 0);
60 assert_se(sd_ipv4acd_attach_event(acd, e, 0) >= 0);
61
62 assert_se(sd_ipv4acd_set_index(acd, ifindex) >= 0);
63 assert_se(sd_ipv4acd_set_mac(acd, ha) >= 0);
64 assert_se(sd_ipv4acd_set_address(acd, pa) >= 0);
65 assert_se(sd_ipv4acd_set_callback(acd, acd_handler, NULL) >= 0);
66
67 log_info("starting IPv4ACD client");
68
69 assert_se(sd_ipv4acd_start(acd) >= 0);
70
71 assert_se(sd_event_loop(e) >= 0);
72
73 assert_se(!sd_ipv4acd_unref(acd));
74
75 return EXIT_SUCCESS;
76}
77
78static int test_acd(const char *ifname, const char *address) {
79 _cleanup_event_unref_ sd_event *e = NULL;
80 _cleanup_netlink_unref_ sd_netlink *rtnl = NULL;
81 _cleanup_netlink_message_unref_ sd_netlink_message *m = NULL, *reply = NULL;
82 union in_addr_union pa;
83 struct ether_addr ha;
84 int ifindex;
85
86 assert_se(in_addr_from_string(AF_INET, address, &pa) >= 0);
87
88 assert_se(sd_event_new(&e) >= 0);
89
90 assert_se(sd_netlink_open(&rtnl) >= 0);
91 assert_se(sd_netlink_attach_event(rtnl, e, 0) >= 0);
92
93 assert_se(sd_rtnl_message_new_link(rtnl, &m, RTM_GETLINK, 0) >= 0);
94 assert_se(sd_netlink_message_append_string(m, IFLA_IFNAME, ifname) >= 0);
95 assert_se(sd_netlink_call(rtnl, m, 0, &reply) >= 0);
96
97 assert_se(sd_rtnl_message_link_get_ifindex(reply, &ifindex) >= 0);
98 assert_se(sd_netlink_message_read_ether_addr(reply, IFLA_ADDRESS, &ha) >= 0);
99
100 client_run(ifindex, &pa.in, &ha, e);
101
102 return EXIT_SUCCESS;
103}
104
105int main(int argc, char *argv[]) {
106 log_set_max_level(LOG_DEBUG);
107 log_parse_environment();
108 log_open();
109
110 if (argc == 3)
111 return test_acd(argv[1], argv[2]);
112 else {
113 log_error("This program takes two arguments.\n"
114 "\t %s <ifname> <IPv4 address>", program_invocation_short_name);
115 return EXIT_FAILURE;
116 }
117}