]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd-network/test-ipv4ll-manual.c
tree-wide: drop copyright headers from frequent contributors
[thirdparty/systemd.git] / src / libsystemd-network / test-ipv4ll-manual.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <net/if.h>
5 #include <stdlib.h>
6 #include <unistd.h>
7 #include <linux/veth.h>
8
9 #include "sd-event.h"
10 #include "sd-ipv4ll.h"
11 #include "sd-netlink.h"
12
13 #include "alloc-util.h"
14 #include "in-addr-util.h"
15 #include "netlink-util.h"
16 #include "parse-util.h"
17 #include "string-util.h"
18 #include "util.h"
19
20 static void ll_handler(sd_ipv4ll *ll, int event, void *userdata) {
21 _cleanup_free_ char *address = NULL;
22 struct in_addr addr = {};
23
24 assert_se(ll);
25
26 if (sd_ipv4ll_get_address(ll, &addr) >= 0)
27 assert_se(in_addr_to_string(AF_INET, (const union in_addr_union*) &addr, &address) >= 0);
28
29 switch (event) {
30 case SD_IPV4LL_EVENT_BIND:
31 log_info("bound %s", strna(address));
32 break;
33 case SD_IPV4LL_EVENT_CONFLICT:
34 log_info("conflict on %s", strna(address));
35 break;
36 case SD_IPV4LL_EVENT_STOP:
37 log_error("the client was stopped with address %s", strna(address));
38 break;
39 default:
40 assert_not_reached("invalid LL event");
41 }
42 }
43
44 static int client_run(int ifindex, const char *seed_str, const struct ether_addr *ha, sd_event *e) {
45 sd_ipv4ll *ll;
46
47 assert_se(sd_ipv4ll_new(&ll) >= 0);
48 assert_se(sd_ipv4ll_attach_event(ll, e, 0) >= 0);
49
50 assert_se(sd_ipv4ll_set_ifindex(ll, ifindex) >= 0);
51 assert_se(sd_ipv4ll_set_mac(ll, ha) >= 0);
52 assert_se(sd_ipv4ll_set_callback(ll, ll_handler, NULL) >= 0);
53
54 if (seed_str) {
55 unsigned seed;
56
57 assert_se(safe_atou(seed_str, &seed) >= 0);
58
59 assert_se(sd_ipv4ll_set_address_seed(ll, seed) >= 0);
60 }
61
62 log_info("starting IPv4LL client");
63
64 assert_se(sd_ipv4ll_start(ll) >= 0);
65
66 assert_se(sd_event_loop(e) >= 0);
67
68 assert_se(!sd_ipv4ll_unref(ll));
69
70 return EXIT_SUCCESS;
71 }
72
73 static int test_ll(const char *ifname, const char *seed) {
74 _cleanup_(sd_event_unrefp) sd_event *e = NULL;
75 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
76 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *m = NULL, *reply = NULL;
77 struct ether_addr ha;
78 int ifindex;
79
80 assert_se(sd_event_new(&e) >= 0);
81
82 assert_se(sd_netlink_open(&rtnl) >= 0);
83 assert_se(sd_netlink_attach_event(rtnl, e, 0) >= 0);
84
85 assert_se(sd_rtnl_message_new_link(rtnl, &m, RTM_GETLINK, 0) >= 0);
86 assert_se(sd_netlink_message_append_string(m, IFLA_IFNAME, ifname) >= 0);
87 assert_se(sd_netlink_call(rtnl, m, 0, &reply) >= 0);
88
89 assert_se(sd_rtnl_message_link_get_ifindex(reply, &ifindex) >= 0);
90 assert_se(sd_netlink_message_read_ether_addr(reply, IFLA_ADDRESS, &ha) >= 0);
91
92 client_run(ifindex, seed, &ha, e);
93
94 return EXIT_SUCCESS;
95 }
96
97 int main(int argc, char *argv[]) {
98 log_set_max_level(LOG_DEBUG);
99 log_parse_environment();
100 log_open();
101
102 if (argc == 2)
103 return test_ll(argv[1], NULL);
104 else if (argc == 3)
105 return test_ll(argv[1], argv[2]);
106 else {
107 log_error("This program takes one or two arguments.\n"
108 "\t %s <ifname> [<seed>]", program_invocation_short_name);
109 return EXIT_FAILURE;
110 }
111 }