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