blob: 525f058ee4cb60d10830806d3be6a06169369490 [file] [log] [blame]
Steven9cd2d7a2017-12-20 12:43:01 -08001/*
2 *------------------------------------------------------------------
3 * bond_api.c - vnet bonding device driver API support
4 *
5 * Copyright (c) 2017 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <vnet/vnet.h>
21#include <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/ethernet/ethernet.h>
Jakub Grajciar3d1ef872019-08-26 12:55:15 +020026#include <vnet/ethernet/ethernet_types_api.h>
Steven9cd2d7a2017-12-20 12:43:01 -080027
28#include <vnet/vnet_msg_enum.h>
29
30#define vl_typedefs /* define message structures */
31#include <vnet/vnet_all_api_h.h>
32#undef vl_typedefs
33
34#define vl_endianfun /* define message structures */
35#include <vnet/vnet_all_api_h.h>
36#undef vl_endianfun
37
38/* instantiate all the print functions we know about */
39#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
40#define vl_printfun
41#include <vnet/vnet_all_api_h.h>
42#undef vl_printfun
43
44#include <vlibapi/api_helper_macros.h>
45#include <vnet/bonding/node.h>
46
47#define foreach_bond_api_msg \
48_(BOND_CREATE, bond_create) \
49_(BOND_DELETE, bond_delete) \
50_(BOND_ENSLAVE, bond_enslave) \
Steven Luonga1876b82019-08-20 16:58:00 -070051_(SW_INTERFACE_SET_BOND_WEIGHT, sw_interface_set_bond_weight) \
Steven9cd2d7a2017-12-20 12:43:01 -080052_(BOND_DETACH_SLAVE, bond_detach_slave) \
53_(SW_INTERFACE_BOND_DUMP, sw_interface_bond_dump)\
54_(SW_INTERFACE_SLAVE_DUMP, sw_interface_slave_dump)
55
56static void
Steven9cd2d7a2017-12-20 12:43:01 -080057vl_api_bond_delete_t_handler (vl_api_bond_delete_t * mp)
58{
59 vlib_main_t *vm = vlib_get_main ();
60 int rv;
Steven9cd2d7a2017-12-20 12:43:01 -080061 vl_api_bond_delete_reply_t *rmp;
Steven9cd2d7a2017-12-20 12:43:01 -080062 u32 sw_if_index = ntohl (mp->sw_if_index);
63
64 rv = bond_delete_if (vm, sw_if_index);
65
Ole Troan2e1c8962019-04-10 09:44:23 +020066 REPLY_MACRO (VL_API_BOND_DELETE_REPLY);
Steven9cd2d7a2017-12-20 12:43:01 -080067}
68
69static void
70vl_api_bond_create_t_handler (vl_api_bond_create_t * mp)
71{
72 vlib_main_t *vm = vlib_get_main ();
73 vl_api_bond_create_reply_t *rmp;
Steven9cd2d7a2017-12-20 12:43:01 -080074 bond_create_if_args_t _a, *ap = &_a;
75
Dave Barachb7b92992018-10-17 10:38:51 -040076 clib_memset (ap, 0, sizeof (*ap));
Steven9cd2d7a2017-12-20 12:43:01 -080077
Alexander Chernavinad9d5282018-12-13 09:08:09 -050078 ap->id = ntohl (mp->id);
79
Steven9cd2d7a2017-12-20 12:43:01 -080080 if (mp->use_custom_mac)
81 {
Jakub Grajciar3d1ef872019-08-26 12:55:15 +020082 mac_address_decode (mp->mac_address, (mac_address_t *) ap->hw_addr);
Steven9cd2d7a2017-12-20 12:43:01 -080083 ap->hw_addr_set = 1;
84 }
85
Jakub Grajciar3d1ef872019-08-26 12:55:15 +020086 ap->mode = ntohl (mp->mode);
87 ap->lb = ntohl (mp->lb);
Zhiyong Yang751e3f32019-06-26 05:49:14 -040088 ap->numa_only = mp->numa_only;
Steven9cd2d7a2017-12-20 12:43:01 -080089 bond_create_if (vm, ap);
90
Ole Troan2e1c8962019-04-10 09:44:23 +020091 int rv = ap->rv;
Steven9cd2d7a2017-12-20 12:43:01 -080092
Ole Troan2e1c8962019-04-10 09:44:23 +020093 /* *INDENT-OFF* */
94 REPLY_MACRO2(VL_API_BOND_CREATE_REPLY,
95 ({
96 rmp->sw_if_index = ntohl (ap->sw_if_index);
97 }));
98 /* *INDENT-ON* */
Steven9cd2d7a2017-12-20 12:43:01 -080099}
100
101static void
102vl_api_bond_enslave_t_handler (vl_api_bond_enslave_t * mp)
103{
104 vlib_main_t *vm = vlib_get_main ();
105 vl_api_bond_enslave_reply_t *rmp;
Steven9cd2d7a2017-12-20 12:43:01 -0800106 bond_enslave_args_t _a, *ap = &_a;
Ole Troan2e1c8962019-04-10 09:44:23 +0200107 int rv = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800108
Dave Barachb7b92992018-10-17 10:38:51 -0400109 clib_memset (ap, 0, sizeof (*ap));
Steven9cd2d7a2017-12-20 12:43:01 -0800110
111 ap->group = ntohl (mp->bond_sw_if_index);
112 ap->slave = ntohl (mp->sw_if_index);
113 ap->is_passive = mp->is_passive;
114 ap->is_long_timeout = mp->is_long_timeout;
115
116 bond_enslave (vm, ap);
117
Ole Troan2e1c8962019-04-10 09:44:23 +0200118 REPLY_MACRO (VL_API_BOND_ENSLAVE_REPLY);
Steven9cd2d7a2017-12-20 12:43:01 -0800119}
120
121static void
Steven Luonga1876b82019-08-20 16:58:00 -0700122 vl_api_sw_interface_set_bond_weight_t_handler
123 (vl_api_sw_interface_set_bond_weight_t * mp)
124{
125 vlib_main_t *vm = vlib_get_main ();
126 bond_set_intf_weight_args_t _a, *ap = &_a;
127 vl_api_sw_interface_set_bond_weight_reply_t *rmp;
128 int rv = 0;
129
130 clib_memset (ap, 0, sizeof (*ap));
131
132 ap->sw_if_index = ntohl (mp->sw_if_index);
133 ap->weight = ntohl (mp->weight);
134
135 bond_set_intf_weight (vm, ap);
136
137 REPLY_MACRO (VL_API_SW_INTERFACE_SET_BOND_WEIGHT_REPLY);
138}
139
140static void
Steven9cd2d7a2017-12-20 12:43:01 -0800141vl_api_bond_detach_slave_t_handler (vl_api_bond_detach_slave_t * mp)
142{
143 vlib_main_t *vm = vlib_get_main ();
144 vl_api_bond_detach_slave_reply_t *rmp;
Steven9cd2d7a2017-12-20 12:43:01 -0800145 bond_detach_slave_args_t _a, *ap = &_a;
Ole Troan2e1c8962019-04-10 09:44:23 +0200146 int rv = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800147
Dave Barachb7b92992018-10-17 10:38:51 -0400148 clib_memset (ap, 0, sizeof (*ap));
Steven9cd2d7a2017-12-20 12:43:01 -0800149
150 ap->slave = ntohl (mp->sw_if_index);
151 bond_detach_slave (vm, ap);
152
Ole Troan2e1c8962019-04-10 09:44:23 +0200153 REPLY_MACRO (VL_API_BOND_DETACH_SLAVE_REPLY);
Steven9cd2d7a2017-12-20 12:43:01 -0800154}
155
156static void
157bond_send_sw_interface_details (vpe_api_main_t * am,
158 vl_api_registration_t * reg,
159 bond_interface_details_t * bond_if,
160 u32 context)
161{
162 vl_api_sw_interface_bond_details_t *mp;
163
164 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400165 clib_memset (mp, 0, sizeof (*mp));
Steven9cd2d7a2017-12-20 12:43:01 -0800166 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_BOND_DETAILS);
167 mp->sw_if_index = htonl (bond_if->sw_if_index);
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500168 mp->id = htonl (bond_if->id);
Steven9cd2d7a2017-12-20 12:43:01 -0800169 clib_memcpy (mp->interface_name, bond_if->interface_name,
170 MIN (ARRAY_LEN (mp->interface_name) - 1,
171 strlen ((const char *) bond_if->interface_name)));
Jakub Grajciar3d1ef872019-08-26 12:55:15 +0200172 mp->mode = htonl (bond_if->mode);
173 mp->lb = htonl (bond_if->lb);
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400174 mp->numa_only = bond_if->numa_only;
Steven9cd2d7a2017-12-20 12:43:01 -0800175 mp->active_slaves = htonl (bond_if->active_slaves);
176 mp->slaves = htonl (bond_if->slaves);
177
178 mp->context = context;
179 vl_api_send_msg (reg, (u8 *) mp);
180}
181
182static void
183vl_api_sw_interface_bond_dump_t_handler (vl_api_sw_interface_bond_dump_t * mp)
184{
185 int rv;
186 vpe_api_main_t *am = &vpe_api_main;
187 vl_api_registration_t *reg;
188 bond_interface_details_t *bondifs = NULL;
189 bond_interface_details_t *bond_if = NULL;
190
191 reg = vl_api_client_index_to_registration (mp->client_index);
192 if (!reg)
193 return;
194
195 rv = bond_dump_ifs (&bondifs);
196 if (rv)
197 return;
198
199 vec_foreach (bond_if, bondifs)
200 {
201 bond_send_sw_interface_details (am, reg, bond_if, mp->context);
202 }
203
204 vec_free (bondifs);
205}
206
207static void
208bond_send_sw_interface_slave_details (vpe_api_main_t * am,
209 vl_api_registration_t * reg,
210 slave_interface_details_t * slave_if,
211 u32 context)
212{
213 vl_api_sw_interface_slave_details_t *mp;
214
215 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400216 clib_memset (mp, 0, sizeof (*mp));
Steven9cd2d7a2017-12-20 12:43:01 -0800217 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_SLAVE_DETAILS);
218 mp->sw_if_index = htonl (slave_if->sw_if_index);
219 clib_memcpy (mp->interface_name, slave_if->interface_name,
220 MIN (ARRAY_LEN (mp->interface_name) - 1,
221 strlen ((const char *) slave_if->interface_name)));
222 mp->is_passive = slave_if->is_passive;
223 mp->is_long_timeout = slave_if->is_long_timeout;
Steven Luonga1876b82019-08-20 16:58:00 -0700224 mp->is_local_numa = slave_if->is_local_numa;
225 mp->weight = htonl (slave_if->weight);
Steven9cd2d7a2017-12-20 12:43:01 -0800226
227 mp->context = context;
228 vl_api_send_msg (reg, (u8 *) mp);
229}
230
231static void
232vl_api_sw_interface_slave_dump_t_handler (vl_api_sw_interface_slave_dump_t *
233 mp)
234{
235 int rv;
236 vpe_api_main_t *am = &vpe_api_main;
237 vl_api_registration_t *reg;
238 slave_interface_details_t *slaveifs = NULL;
239 slave_interface_details_t *slave_if = NULL;
240
241 reg = vl_api_client_index_to_registration (mp->client_index);
242 if (!reg)
243 return;
244
245 rv = bond_dump_slave_ifs (&slaveifs, ntohl (mp->sw_if_index));
246 if (rv)
247 return;
248
249 vec_foreach (slave_if, slaveifs)
250 {
251 bond_send_sw_interface_slave_details (am, reg, slave_if, mp->context);
252 }
253
254 vec_free (slaveifs);
255}
256
257#define vl_msg_name_crc_list
258#include <vnet/vnet_all_api_h.h>
259#undef vl_msg_name_crc_list
260
261static void
262bond_setup_message_id_table (api_main_t * am)
263{
264#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
265 foreach_vl_msg_name_crc_bond;
266#undef _
267}
268
269static clib_error_t *
270bond_api_hookup (vlib_main_t * vm)
271{
Dave Barach39d69112019-11-27 11:42:13 -0500272 api_main_t *am = vlibapi_get_main ();
Steven9cd2d7a2017-12-20 12:43:01 -0800273
274#define _(N,n) \
275 vl_msg_api_set_handlers(VL_API_##N, #n, \
276 vl_api_##n##_t_handler, \
277 vl_noop_handler, \
278 vl_api_##n##_t_endian, \
279 vl_api_##n##_t_print, \
280 sizeof(vl_api_##n##_t), 1);
281 foreach_bond_api_msg;
282#undef _
283
284 /*
285 * Set up the (msg_name, crc, message-id) table
286 */
287 bond_setup_message_id_table (am);
288
289 return 0;
290}
291
292VLIB_API_INIT_FUNCTION (bond_api_hookup);
293
294/*
295 * fd.io coding-style-patch-verification: ON
296 *
297 * Local Variables:
298 * eval: (c-set-style "gnu")
299 * End:
300 */