691697cf4fe4e1a5a7ba16e5565b13852e1696c4
[vpp.git] / src / vnet / bonding / bond_api.c
1 /*
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>
26
27 #include <vnet/vnet_msg_enum.h>
28
29 #define vl_typedefs             /* define message structures */
30 #include <vnet/vnet_all_api_h.h>
31 #undef vl_typedefs
32
33 #define vl_endianfun            /* define message structures */
34 #include <vnet/vnet_all_api_h.h>
35 #undef vl_endianfun
36
37 /* instantiate all the print functions we know about */
38 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39 #define vl_printfun
40 #include <vnet/vnet_all_api_h.h>
41 #undef vl_printfun
42
43 #include <vlibapi/api_helper_macros.h>
44 #include <vnet/bonding/node.h>
45
46 #define foreach_bond_api_msg                     \
47 _(BOND_CREATE, bond_create)                      \
48 _(BOND_DELETE, bond_delete)                      \
49 _(BOND_ENSLAVE, bond_enslave)                    \
50 _(BOND_DETACH_SLAVE, bond_detach_slave)          \
51 _(SW_INTERFACE_BOND_DUMP, sw_interface_bond_dump)\
52 _(SW_INTERFACE_SLAVE_DUMP, sw_interface_slave_dump)
53
54 static void
55 bond_send_sw_interface_event_deleted (vpe_api_main_t * am,
56                                       unix_shared_memory_queue_t * q,
57                                       u32 sw_if_index)
58 {
59   vl_api_sw_interface_event_t *mp;
60
61   mp = vl_msg_api_alloc (sizeof (*mp));
62   clib_memset (mp, 0, sizeof (*mp));
63   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
64   mp->sw_if_index = ntohl (sw_if_index);
65
66   mp->admin_up_down = 0;
67   mp->link_up_down = 0;
68   mp->deleted = 1;
69   vl_msg_api_send_shmem (q, (u8 *) & mp);
70 }
71
72 static void
73 vl_api_bond_delete_t_handler (vl_api_bond_delete_t * mp)
74 {
75   vlib_main_t *vm = vlib_get_main ();
76   int rv;
77   vpe_api_main_t *vam = &vpe_api_main;
78   vl_api_bond_delete_reply_t *rmp;
79   unix_shared_memory_queue_t *q;
80   u32 sw_if_index = ntohl (mp->sw_if_index);
81
82   rv = bond_delete_if (vm, sw_if_index);
83
84   q = vl_api_client_index_to_input_queue (mp->client_index);
85   if (!q)
86     return;
87
88   rmp = vl_msg_api_alloc (sizeof (*rmp));
89   rmp->_vl_msg_id = ntohs (VL_API_BOND_DELETE_REPLY);
90   rmp->context = mp->context;
91   rmp->retval = ntohl (rv);
92
93   vl_msg_api_send_shmem (q, (u8 *) & rmp);
94
95   if (!rv)
96     bond_send_sw_interface_event_deleted (vam, q, sw_if_index);
97 }
98
99 static void
100 vl_api_bond_create_t_handler (vl_api_bond_create_t * mp)
101 {
102   vlib_main_t *vm = vlib_get_main ();
103   vl_api_bond_create_reply_t *rmp;
104   unix_shared_memory_queue_t *q;
105   bond_create_if_args_t _a, *ap = &_a;
106
107   clib_memset (ap, 0, sizeof (*ap));
108
109   if (mp->use_custom_mac)
110     {
111       clib_memcpy (ap->hw_addr, mp->mac_address, 6);
112       ap->hw_addr_set = 1;
113     }
114
115   ap->mode = mp->mode;
116   ap->lb = mp->lb;
117   bond_create_if (vm, ap);
118
119   q = vl_api_client_index_to_input_queue (mp->client_index);
120   if (!q)
121     return;
122
123   if (ap->rv != 0)
124     return;
125   rmp = vl_msg_api_alloc (sizeof (*rmp));
126   rmp->_vl_msg_id = ntohs (VL_API_BOND_CREATE_REPLY);
127   rmp->context = mp->context;
128   rmp->retval = ntohl (ap->rv);
129   rmp->sw_if_index = ntohl (ap->sw_if_index);
130
131   vl_msg_api_send_shmem (q, (u8 *) & rmp);
132 }
133
134 static void
135 vl_api_bond_enslave_t_handler (vl_api_bond_enslave_t * mp)
136 {
137   vlib_main_t *vm = vlib_get_main ();
138   vl_api_bond_enslave_reply_t *rmp;
139   unix_shared_memory_queue_t *q;
140   bond_enslave_args_t _a, *ap = &_a;
141
142   clib_memset (ap, 0, sizeof (*ap));
143
144   ap->group = ntohl (mp->bond_sw_if_index);
145   ap->slave = ntohl (mp->sw_if_index);
146   ap->is_passive = mp->is_passive;
147   ap->is_long_timeout = mp->is_long_timeout;
148
149   bond_enslave (vm, ap);
150
151   q = vl_api_client_index_to_input_queue (mp->client_index);
152   if (!q)
153     return;
154
155   rmp = vl_msg_api_alloc (sizeof (*rmp));
156   rmp->_vl_msg_id = ntohs (VL_API_BOND_ENSLAVE_REPLY);
157   rmp->context = mp->context;
158   rmp->retval = ntohl (ap->rv);
159
160   vl_msg_api_send_shmem (q, (u8 *) & rmp);
161 }
162
163 static void
164 vl_api_bond_detach_slave_t_handler (vl_api_bond_detach_slave_t * mp)
165 {
166   vlib_main_t *vm = vlib_get_main ();
167   vl_api_bond_detach_slave_reply_t *rmp;
168   unix_shared_memory_queue_t *q;
169   bond_detach_slave_args_t _a, *ap = &_a;
170
171   clib_memset (ap, 0, sizeof (*ap));
172
173   ap->slave = ntohl (mp->sw_if_index);
174   bond_detach_slave (vm, ap);
175
176   q = vl_api_client_index_to_input_queue (mp->client_index);
177   if (!q)
178     return;
179
180   rmp = vl_msg_api_alloc (sizeof (*rmp));
181   rmp->_vl_msg_id = ntohs (VL_API_BOND_DETACH_SLAVE_REPLY);
182   rmp->context = mp->context;
183   rmp->retval = htonl (ap->rv);
184
185   vl_msg_api_send_shmem (q, (u8 *) & rmp);
186 }
187
188 static void
189 bond_send_sw_interface_details (vpe_api_main_t * am,
190                                 vl_api_registration_t * reg,
191                                 bond_interface_details_t * bond_if,
192                                 u32 context)
193 {
194   vl_api_sw_interface_bond_details_t *mp;
195
196   mp = vl_msg_api_alloc (sizeof (*mp));
197   clib_memset (mp, 0, sizeof (*mp));
198   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_BOND_DETAILS);
199   mp->sw_if_index = htonl (bond_if->sw_if_index);
200   clib_memcpy (mp->interface_name, bond_if->interface_name,
201                MIN (ARRAY_LEN (mp->interface_name) - 1,
202                     strlen ((const char *) bond_if->interface_name)));
203   mp->mode = bond_if->mode;
204   mp->lb = bond_if->lb;
205   mp->active_slaves = htonl (bond_if->active_slaves);
206   mp->slaves = htonl (bond_if->slaves);
207
208   mp->context = context;
209   vl_api_send_msg (reg, (u8 *) mp);
210 }
211
212 static void
213 vl_api_sw_interface_bond_dump_t_handler (vl_api_sw_interface_bond_dump_t * mp)
214 {
215   int rv;
216   vpe_api_main_t *am = &vpe_api_main;
217   vl_api_registration_t *reg;
218   bond_interface_details_t *bondifs = NULL;
219   bond_interface_details_t *bond_if = NULL;
220
221   reg = vl_api_client_index_to_registration (mp->client_index);
222   if (!reg)
223     return;
224
225   rv = bond_dump_ifs (&bondifs);
226   if (rv)
227     return;
228
229   vec_foreach (bond_if, bondifs)
230   {
231     bond_send_sw_interface_details (am, reg, bond_if, mp->context);
232   }
233
234   vec_free (bondifs);
235 }
236
237 static void
238 bond_send_sw_interface_slave_details (vpe_api_main_t * am,
239                                       vl_api_registration_t * reg,
240                                       slave_interface_details_t * slave_if,
241                                       u32 context)
242 {
243   vl_api_sw_interface_slave_details_t *mp;
244
245   mp = vl_msg_api_alloc (sizeof (*mp));
246   clib_memset (mp, 0, sizeof (*mp));
247   mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_SLAVE_DETAILS);
248   mp->sw_if_index = htonl (slave_if->sw_if_index);
249   clib_memcpy (mp->interface_name, slave_if->interface_name,
250                MIN (ARRAY_LEN (mp->interface_name) - 1,
251                     strlen ((const char *) slave_if->interface_name)));
252   mp->is_passive = slave_if->is_passive;
253   mp->is_long_timeout = slave_if->is_long_timeout;
254
255   mp->context = context;
256   vl_api_send_msg (reg, (u8 *) mp);
257 }
258
259 static void
260 vl_api_sw_interface_slave_dump_t_handler (vl_api_sw_interface_slave_dump_t *
261                                           mp)
262 {
263   int rv;
264   vpe_api_main_t *am = &vpe_api_main;
265   vl_api_registration_t *reg;
266   slave_interface_details_t *slaveifs = NULL;
267   slave_interface_details_t *slave_if = NULL;
268
269   reg = vl_api_client_index_to_registration (mp->client_index);
270   if (!reg)
271     return;
272
273   rv = bond_dump_slave_ifs (&slaveifs, ntohl (mp->sw_if_index));
274   if (rv)
275     return;
276
277   vec_foreach (slave_if, slaveifs)
278   {
279     bond_send_sw_interface_slave_details (am, reg, slave_if, mp->context);
280   }
281
282   vec_free (slaveifs);
283 }
284
285 #define vl_msg_name_crc_list
286 #include <vnet/vnet_all_api_h.h>
287 #undef vl_msg_name_crc_list
288
289 static void
290 bond_setup_message_id_table (api_main_t * am)
291 {
292 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
293   foreach_vl_msg_name_crc_bond;
294 #undef _
295 }
296
297 static clib_error_t *
298 bond_api_hookup (vlib_main_t * vm)
299 {
300   api_main_t *am = &api_main;
301
302 #define _(N,n)                                                  \
303     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
304                            vl_api_##n##_t_handler,              \
305                            vl_noop_handler,                     \
306                            vl_api_##n##_t_endian,               \
307                            vl_api_##n##_t_print,                \
308                            sizeof(vl_api_##n##_t), 1);
309   foreach_bond_api_msg;
310 #undef _
311
312   /*
313    * Set up the (msg_name, crc, message-id) table
314    */
315   bond_setup_message_id_table (am);
316
317   return 0;
318 }
319
320 VLIB_API_INIT_FUNCTION (bond_api_hookup);
321
322 /*
323  * fd.io coding-style-patch-verification: ON
324  *
325  * Local Variables:
326  * eval: (c-set-style "gnu")
327  * End:
328  */