]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-network/test-ipv4ll-manual.c
util-lib: split our string related calls from util.[ch] into its own file string...
[thirdparty/systemd.git] / src / libsystemd-network / test-ipv4ll-manual.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>
07630cea
LP
23#include <net/if.h>
24#include <stdlib.h>
7b713b81 25#include <unistd.h>
7b713b81 26#include <linux/veth.h>
7b713b81
TG
27
28#include "sd-event.h"
7b713b81 29#include "sd-ipv4ll.h"
07630cea 30#include "sd-netlink.h"
7b713b81 31
7b713b81 32#include "event-util.h"
7b713b81 33#include "in-addr-util.h"
07630cea
LP
34#include "netlink-util.h"
35#include "string-util.h"
36#include "util.h"
7b713b81
TG
37
38static void ll_handler(sd_ipv4ll *ll, int event, void *userdata) {
39 _cleanup_free_ char *address = NULL;
40 struct in_addr addr = {};
41
42 assert_se(ll);
43
44 if (sd_ipv4ll_get_address(ll, &addr) >= 0)
45 assert_se(in_addr_to_string(AF_INET, (const union in_addr_union*) &addr, &address) >= 0);
46
47 switch (event) {
be19c5b5 48 case SD_IPV4LL_EVENT_BIND:
7b713b81
TG
49 log_info("bound %s", strna(address));
50 break;
be19c5b5 51 case SD_IPV4LL_EVENT_CONFLICT:
7b713b81
TG
52 log_info("conflict on %s", strna(address));
53 break;
be19c5b5 54 case SD_IPV4LL_EVENT_STOP:
7b713b81
TG
55 log_error("the client was stopped with address %s", strna(address));
56 break;
57 default:
58 assert_not_reached("invalid LL event");
59 }
60}
61
62static int client_run(int ifindex, const char *seed_str, const struct ether_addr *ha, sd_event *e) {
63 sd_ipv4ll *ll;
64
65 assert_se(sd_ipv4ll_new(&ll) >= 0);
66 assert_se(sd_ipv4ll_attach_event(ll, e, 0) >= 0);
67
68 assert_se(sd_ipv4ll_set_index(ll, ifindex) >= 0);
69 assert_se(sd_ipv4ll_set_mac(ll, ha) >= 0);
70 assert_se(sd_ipv4ll_set_callback(ll, ll_handler, NULL) >= 0);
71
72 if (seed_str) {
73 unsigned seed;
74
75 assert_se(safe_atou(seed_str, &seed) >= 0);
76
77 assert_se(sd_ipv4ll_set_address_seed(ll, seed) >= 0);
78 }
79
80 log_info("starting IPv4LL client");
81
82 assert_se(sd_ipv4ll_start(ll) >= 0);
83
84 assert_se(sd_event_loop(e) >= 0);
85
86 assert_se(!sd_ipv4ll_unref(ll));
87
88 return EXIT_SUCCESS;
89}
90
91static int test_ll(const char *ifname, const char *seed) {
92 _cleanup_event_unref_ sd_event *e = NULL;
93 _cleanup_netlink_unref_ sd_netlink *rtnl = NULL;
94 _cleanup_netlink_message_unref_ sd_netlink_message *m = NULL, *reply = NULL;
95 struct ether_addr ha;
96 int ifindex;
97
98 assert_se(sd_event_new(&e) >= 0);
99
100 assert_se(sd_netlink_open(&rtnl) >= 0);
101 assert_se(sd_netlink_attach_event(rtnl, e, 0) >= 0);
102
103 assert_se(sd_rtnl_message_new_link(rtnl, &m, RTM_GETLINK, 0) >= 0);
104 assert_se(sd_netlink_message_append_string(m, IFLA_IFNAME, ifname) >= 0);
105 assert_se(sd_netlink_call(rtnl, m, 0, &reply) >= 0);
106
107 assert_se(sd_rtnl_message_link_get_ifindex(reply, &ifindex) >= 0);
108 assert_se(sd_netlink_message_read_ether_addr(reply, IFLA_ADDRESS, &ha) >= 0);
109
110 client_run(ifindex, seed, &ha, e);
111
112 return EXIT_SUCCESS;
113}
114
115int main(int argc, char *argv[]) {
116 log_set_max_level(LOG_DEBUG);
117 log_parse_environment();
118 log_open();
119
120 if (argc == 2)
121 return test_ll(argv[1], NULL);
122 else if (argc == 3)
123 return test_ll(argv[1], argv[2]);
124 else {
125 log_error("This program takes one or two arguments.\n"
126 "\t %s <ifname> [<seed>]", program_invocation_short_name);
127 return EXIT_FAILURE;
128 }
129}