chiark / gitweb /
rtnl: fix sockaddr confusion
[elogind.git] / src / libsystemd-rtnl / test-rtnl.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2013 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
22 #include <netinet/ether.h>
23
24 #include "util.h"
25 #include "macro.h"
26 #include "sd-rtnl.h"
27 #include "socket-util.h"
28
29 static void test_link_configure(sd_rtnl *rtnl, int ifindex) {
30         _cleanup_sd_rtnl_message_unref_ sd_rtnl_message *message;
31         uint16_t type;
32         const char *mac = "98:fe:94:3f:c6:18", *name = "test";
33         unsigned int mtu = 1450;
34         void *data;
35
36         /* we'd really like to test NEWLINK, but let's not mess with the running kernel */
37         assert(sd_rtnl_message_link_new(RTM_GETLINK, ifindex, 0, 0, &message) >= 0);
38         assert(sd_rtnl_message_append(message, IFLA_IFNAME, name) >= 0);
39         assert(sd_rtnl_message_append(message, IFLA_ADDRESS, ether_aton(mac)) >= 0);
40         assert(sd_rtnl_message_append(message, IFLA_MTU, &mtu) >= 0);
41
42         assert(sd_rtnl_message_read(message, &type, &data) >= 0);
43         assert(type == IFLA_IFNAME);
44         assert(streq(name, (char *) data));
45
46         assert(sd_rtnl_message_read(message, &type, &data) >= 0);
47         assert(type == IFLA_ADDRESS);
48         assert(streq(mac, ether_ntoa(data)));
49
50         assert(sd_rtnl_message_read(message, &type, &data) >= 0);
51         assert(type == IFLA_MTU);
52         assert(mtu == *(unsigned int *) data);
53
54         assert(sd_rtnl_send_with_reply_and_block(rtnl, message, 0, NULL) == 0);
55 }
56
57 static void test_multiple(void) {
58         sd_rtnl *rtnl1, *rtnl2;
59
60         assert(sd_rtnl_open(0, &rtnl1) >= 0);
61         assert(sd_rtnl_open(0, &rtnl2) >= 0);
62
63         rtnl1 = sd_rtnl_unref(rtnl1);
64         rtnl2 = sd_rtnl_unref(rtnl2);
65 }
66
67 int main(void) {
68         sd_rtnl *rtnl;
69         sd_rtnl_message *m;
70         sd_rtnl_message *r;
71         void *data;
72         int if_loopback;
73         uint16_t type;
74         unsigned int mtu = 0;
75         unsigned int *mtu_reply;
76
77         test_multiple();
78
79         assert(sd_rtnl_open(0, &rtnl) >= 0);
80         assert(rtnl);
81
82         if_loopback = (int) if_nametoindex("lo");
83         assert(if_loopback > 0);
84
85         test_link_configure(rtnl, if_loopback);
86
87         assert(sd_rtnl_message_link_new(RTM_GETLINK, if_loopback, 0, 0, &m) >= 0);
88         assert(m);
89
90         assert(sd_rtnl_message_get_type(m, &type) >= 0);
91         assert(type == RTM_GETLINK);
92
93         assert(sd_rtnl_message_read(m, &type, &data) == 0);
94
95         assert(sd_rtnl_send_with_reply_and_block(rtnl, m, 0, &r) >= 0);
96         assert(sd_rtnl_message_get_type(r, &type) >= 0);
97         assert(type == RTM_NEWLINK);
98
99         assert(sd_rtnl_message_read(m, &type, data) == 0);
100         assert((r = sd_rtnl_message_unref(r)) == NULL);
101
102         assert(sd_rtnl_send_with_reply_and_block(rtnl, m, -1, &r) == -EPERM);
103         assert((m = sd_rtnl_message_unref(m)) == NULL);
104         assert((r = sd_rtnl_message_unref(r)) == NULL);
105
106         assert(sd_rtnl_message_link_new(RTM_GETLINK, if_loopback, 0, 0, &m) >= 0);
107         assert(m);
108
109         assert(sd_rtnl_message_append(m, IFLA_MTU, &mtu) >= 0);
110         assert(sd_rtnl_message_read(m, &type, (void **) &mtu_reply) == 1);
111
112         assert(type == IFLA_MTU);
113         assert(*mtu_reply == 0);
114
115         assert(sd_rtnl_message_read(m, &type, data) == 0);
116
117         assert(sd_rtnl_send_with_reply_and_block(rtnl, m, -1, &r) >= 0);
118         while (sd_rtnl_message_read(r, &type, &data)) {
119                 switch (type) {
120 //                        case IFLA_MTU:
121 //                                assert(*(unsigned int *) data == 65536);
122 //                                break;;
123 //                        case IFLA_QDISC:
124 //                                assert(streq((char *) data, "noqueue"));
125 //                                break;;
126                         case IFLA_IFNAME:
127                                 assert(streq((char *) data, "lo"));
128                                 break;;
129                 }
130         }
131
132         assert((m = sd_rtnl_message_unref(m)) == NULL);
133         assert((r = sd_rtnl_message_unref(r)) == NULL);
134         assert((rtnl = sd_rtnl_unref(rtnl)) == NULL);
135
136         return EXIT_SUCCESS;
137 }