blob: 5a3c8dc26826fe0da456cbe143eefd7b260e547f [file] [log] [blame]
Matus Fabianf468e232016-12-02 06:00:53 -08001/*
2 *------------------------------------------------------------------
3 * l2_api.c - layer 2 forwarding api
4 *
5 * Copyright (c) 2016 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/l2/l2_input.h>
Pavel Kotucek0f971d82017-01-03 10:48:54 +010026#include <vnet/l2/l2_fib.h>
Pavel Kotucekadec5872017-01-25 08:50:53 +010027#include <vnet/l2/l2_vtr.h>
Matus Fabianf468e232016-12-02 06:00:53 -080028
29#include <vnet/vnet_msg_enum.h>
30
31#define vl_typedefs /* define message structures */
32#include <vnet/vnet_all_api_h.h>
33#undef vl_typedefs
34
35#define vl_endianfun /* define message structures */
36#include <vnet/vnet_all_api_h.h>
37#undef vl_endianfun
38
39/* instantiate all the print functions we know about */
40#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
41#define vl_printfun
42#include <vnet/vnet_all_api_h.h>
43#undef vl_printfun
44
45#include <vlibapi/api_helper_macros.h>
46
Pavel Kotucek0f971d82017-01-03 10:48:54 +010047#define foreach_vpe_api_msg \
48_(L2_XCONNECT_DUMP, l2_xconnect_dump) \
49_(L2_FIB_CLEAR_TABLE, l2_fib_clear_table) \
50_(L2_FIB_TABLE_DUMP, l2_fib_table_dump) \
Eyal Barif24991c2017-04-05 05:33:21 +030051_(L2FIB_FLUSH_INT, l2fib_flush_int) \
52_(L2FIB_FLUSH_BD, l2fib_flush_bd) \
Pavel Kotucek0f971d82017-01-03 10:48:54 +010053_(L2FIB_ADD_DEL, l2fib_add_del) \
54_(L2_FLAGS, l2_flags) \
55_(BRIDGE_DOMAIN_ADD_DEL, bridge_domain_add_del) \
56_(BRIDGE_DOMAIN_DUMP, bridge_domain_dump) \
Pavel Kotucekadec5872017-01-25 08:50:53 +010057_(BRIDGE_FLAGS, bridge_flags) \
58_(L2_INTERFACE_VLAN_TAG_REWRITE, l2_interface_vlan_tag_rewrite) \
Eyal Barifead6702017-04-04 04:46:32 +030059_(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite) \
60_(BRIDGE_DOMAIN_SET_MAC_AGE, bridge_domain_set_mac_age)
Matus Fabianf468e232016-12-02 06:00:53 -080061
62static void
63send_l2_xconnect_details (unix_shared_memory_queue_t * q, u32 context,
64 u32 rx_sw_if_index, u32 tx_sw_if_index)
65{
66 vl_api_l2_xconnect_details_t *mp;
67
68 mp = vl_msg_api_alloc (sizeof (*mp));
69 memset (mp, 0, sizeof (*mp));
70 mp->_vl_msg_id = ntohs (VL_API_L2_XCONNECT_DETAILS);
71 mp->context = context;
72 mp->rx_sw_if_index = htonl (rx_sw_if_index);
73 mp->tx_sw_if_index = htonl (tx_sw_if_index);
74
75 vl_msg_api_send_shmem (q, (u8 *) & mp);
76}
77
78static void
79vl_api_l2_xconnect_dump_t_handler (vl_api_l2_xconnect_dump_t * mp)
80{
81 unix_shared_memory_queue_t *q;
82 vnet_main_t *vnm = vnet_get_main ();
83 vnet_interface_main_t *im = &vnm->interface_main;
84 l2input_main_t *l2im = &l2input_main;
85 vnet_sw_interface_t *swif;
86 l2_input_config_t *config;
87
88 q = vl_api_client_index_to_input_queue (mp->client_index);
89 if (q == 0)
90 return;
91
92 /* *INDENT-OFF* */
93 pool_foreach (swif, im->sw_interfaces,
94 ({
95 config = vec_elt_at_index (l2im->configs, swif->sw_if_index);
96 if (config->xconnect)
97 send_l2_xconnect_details (q, mp->context, swif->sw_if_index,
98 config->output_sw_if_index);
99 }));
100 /* *INDENT-ON* */
101}
102
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100103static void
104vl_api_l2_fib_clear_table_t_handler (vl_api_l2_fib_clear_table_t * mp)
105{
106 int rv = 0;
107 vl_api_l2_fib_clear_table_reply_t *rmp;
108
109 /* DAW-FIXME: This API should only clear non-static l2fib entries, but
110 * that is not currently implemented. When that TODO is fixed
111 * this call should be changed to pass 1 instead of 0.
112 */
113 l2fib_clear_table (0);
114
115 REPLY_MACRO (VL_API_L2_FIB_CLEAR_TABLE_REPLY);
116}
117
118static void
119send_l2fib_table_entry (vpe_api_main_t * am,
120 unix_shared_memory_queue_t * q,
121 l2fib_entry_key_t * l2fe_key,
122 l2fib_entry_result_t * l2fe_res, u32 context)
123{
124 vl_api_l2_fib_table_entry_t *mp;
125
126 mp = vl_msg_api_alloc (sizeof (*mp));
127 memset (mp, 0, sizeof (*mp));
128 mp->_vl_msg_id = ntohs (VL_API_L2_FIB_TABLE_ENTRY);
129
130 mp->bd_id =
131 ntohl (l2input_main.bd_configs[l2fe_key->fields.bd_index].bd_id);
132
133 mp->mac = l2fib_make_key (l2fe_key->fields.mac, 0);
134 mp->sw_if_index = ntohl (l2fe_res->fields.sw_if_index);
135 mp->static_mac = l2fe_res->fields.static_mac;
136 mp->filter_mac = l2fe_res->fields.filter;
137 mp->bvi_mac = l2fe_res->fields.bvi;
138 mp->context = context;
139
140 vl_msg_api_send_shmem (q, (u8 *) & mp);
141}
142
143static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100144vl_api_l2_fib_table_dump_t_handler (vl_api_l2_fib_table_dump_t * mp)
145{
146 vpe_api_main_t *am = &vpe_api_main;
147 bd_main_t *bdm = &bd_main;
148 l2fib_entry_key_t *l2fe_key = NULL;
149 l2fib_entry_result_t *l2fe_res = NULL;
150 u32 ni, bd_id = ntohl (mp->bd_id);
151 u32 bd_index;
152 unix_shared_memory_queue_t *q;
153 uword *p;
154
155 q = vl_api_client_index_to_input_queue (mp->client_index);
156 if (q == 0)
157 return;
158
159 /* see l2fib_table_dump: ~0 means "any" */
160 if (bd_id == ~0)
161 bd_index = ~0;
162 else
163 {
164 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
165 if (p == 0)
166 return;
167
168 bd_index = p[0];
169 }
170
171 l2fib_table_dump (bd_index, &l2fe_key, &l2fe_res);
172
173 vec_foreach_index (ni, l2fe_key)
174 {
175 send_l2fib_table_entry (am, q, vec_elt_at_index (l2fe_key, ni),
176 vec_elt_at_index (l2fe_res, ni), mp->context);
177 }
178 vec_free (l2fe_key);
179 vec_free (l2fe_res);
180}
181
182static void
183vl_api_l2fib_add_del_t_handler (vl_api_l2fib_add_del_t * mp)
184{
185 bd_main_t *bdm = &bd_main;
186 l2input_main_t *l2im = &l2input_main;
187 vl_api_l2fib_add_del_reply_t *rmp;
188 int rv = 0;
189 u64 mac = 0;
190 u32 sw_if_index = ntohl (mp->sw_if_index);
191 u32 bd_id = ntohl (mp->bd_id);
192 u32 bd_index;
193 u32 static_mac;
194 u32 filter_mac;
195 u32 bvi_mac;
196 uword *p;
197
198 mac = mp->mac;
199
200 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
201 if (!p)
202 {
203 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
204 goto bad_sw_if_index;
205 }
206 bd_index = p[0];
207
208 if (mp->is_add)
209 {
210 filter_mac = mp->filter_mac ? 1 : 0;
211 if (filter_mac == 0)
212 {
213 VALIDATE_SW_IF_INDEX (mp);
214 if (vec_len (l2im->configs) <= sw_if_index)
215 {
216 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
217 goto bad_sw_if_index;
218 }
219 else
220 {
221 l2_input_config_t *config;
222 config = vec_elt_at_index (l2im->configs, sw_if_index);
223 if (config->bridge == 0)
224 {
225 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
226 goto bad_sw_if_index;
227 }
228 }
229 }
230 static_mac = mp->static_mac ? 1 : 0;
231 bvi_mac = mp->bvi_mac ? 1 : 0;
232 l2fib_add_entry (mac, bd_index, sw_if_index, static_mac, filter_mac,
233 bvi_mac);
234 }
235 else
236 {
237 l2fib_del_entry (mac, bd_index);
238 }
239
240 BAD_SW_IF_INDEX_LABEL;
241
242 REPLY_MACRO (VL_API_L2FIB_ADD_DEL_REPLY);
243}
244
245static void
Eyal Barif24991c2017-04-05 05:33:21 +0300246vl_api_l2fib_flush_int_t_handler (vl_api_l2fib_flush_int_t * mp)
247{
248 int rv = 0;
249 vlib_main_t *vm = vlib_get_main ();
250 vl_api_l2fib_flush_int_reply_t *rmp;
251
252 VALIDATE_SW_IF_INDEX (mp);
253
254 u32 sw_if_index = ntohl (mp->sw_if_index);
255 l2fib_flush_int_mac (vm, sw_if_index);
256
257 BAD_SW_IF_INDEX_LABEL;
258 REPLY_MACRO (VL_API_L2FIB_FLUSH_INT_REPLY);
259}
260
261static void
262vl_api_l2fib_flush_bd_t_handler (vl_api_l2fib_flush_bd_t * mp)
263{
264 int rv = 0;
265 vlib_main_t *vm = vlib_get_main ();
266 bd_main_t *bdm = &bd_main;
267 vl_api_l2fib_flush_bd_reply_t *rmp;
268
269 u32 bd_id = ntohl (mp->bd_id);
270 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
271 if (p == 0)
272 {
273 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
274 goto out;
275 }
276 l2fib_flush_bd_mac (vm, *p);
277out:
278 REPLY_MACRO (VL_API_L2FIB_FLUSH_BD_REPLY);
279}
280
281static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100282vl_api_l2_flags_t_handler (vl_api_l2_flags_t * mp)
283{
284 vl_api_l2_flags_reply_t *rmp;
285 int rv = 0;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100286 u32 rbm = 0;
287
288 VALIDATE_SW_IF_INDEX (mp);
289
Eyal Barifead6702017-04-04 04:46:32 +0300290 u32 sw_if_index = ntohl (mp->sw_if_index);
291 u32 flags = ntohl (mp->feature_bitmap) & L2INPUT_VALID_MASK;
292 rbm = l2input_intf_bitmap_enable (sw_if_index, flags, mp->is_set);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100293
294 BAD_SW_IF_INDEX_LABEL;
295
296 /* *INDENT-OFF* */
297 REPLY_MACRO2(VL_API_L2_FLAGS_REPLY,
298 ({
299 rmp->resulting_feature_bitmap = ntohl(rbm);
300 }));
301 /* *INDENT-ON* */
302}
303
304static void
Eyal Barifead6702017-04-04 04:46:32 +0300305vl_api_bridge_domain_set_mac_age_t_handler (vl_api_bridge_domain_set_mac_age_t
306 * mp)
307{
308 vlib_main_t *vm = vlib_get_main ();
309 bd_main_t *bdm = &bd_main;
310 vl_api_bridge_domain_set_mac_age_reply_t *rmp;
311 int rv = 0;
312 u32 bd_id = ntohl (mp->bd_id);
313 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
314 if (p == 0)
315 {
316 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
317 goto out;
318 }
319 bd_set_mac_age (vm, *p, mp->mac_age);
320out:
321 REPLY_MACRO (VL_API_BRIDGE_DOMAIN_SET_MAC_AGE_REPLY);
322}
323
324static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100325vl_api_bridge_domain_add_del_t_handler (vl_api_bridge_domain_add_del_t * mp)
326{
Eyal Barib1352ed2017-04-07 23:14:17 +0300327 l2_bridge_domain_add_del_args_t a = {
328 .is_add = mp->is_add,
329 .flood = mp->flood,
330 .uu_flood = mp->uu_flood,
331 .forward = mp->forward,
332 .learn = mp->learn,
333 .arp_term = mp->arp_term,
334 .mac_age = mp->mac_age,
335 .bd_id = ntohl (mp->bd_id),
336 };
337
338 int rv = bd_add_del (&a);
339
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100340 vl_api_bridge_domain_add_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100341 REPLY_MACRO (VL_API_BRIDGE_DOMAIN_ADD_DEL_REPLY);
342}
343
344static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100345send_bridge_domain_details (unix_shared_memory_queue_t * q,
346 l2_bridge_domain_t * bd_config,
347 u32 n_sw_ifs, u32 context)
348{
349 vl_api_bridge_domain_details_t *mp;
350
351 mp = vl_msg_api_alloc (sizeof (*mp));
352 memset (mp, 0, sizeof (*mp));
353 mp->_vl_msg_id = ntohs (VL_API_BRIDGE_DOMAIN_DETAILS);
354 mp->bd_id = ntohl (bd_config->bd_id);
355 mp->flood = bd_feature_flood (bd_config);
356 mp->uu_flood = bd_feature_uu_flood (bd_config);
357 mp->forward = bd_feature_forward (bd_config);
358 mp->learn = bd_feature_learn (bd_config);
359 mp->arp_term = bd_feature_arp_term (bd_config);
360 mp->bvi_sw_if_index = ntohl (bd_config->bvi_sw_if_index);
361 mp->mac_age = bd_config->mac_age;
362 mp->n_sw_ifs = ntohl (n_sw_ifs);
363 mp->context = context;
364
365 vl_msg_api_send_shmem (q, (u8 *) & mp);
366}
367
368static void
369send_bd_sw_if_details (l2input_main_t * l2im,
370 unix_shared_memory_queue_t * q,
371 l2_flood_member_t * member, u32 bd_id, u32 context)
372{
373 vl_api_bridge_domain_sw_if_details_t *mp;
374 l2_input_config_t *input_cfg;
375
376 mp = vl_msg_api_alloc (sizeof (*mp));
377 memset (mp, 0, sizeof (*mp));
378 mp->_vl_msg_id = ntohs (VL_API_BRIDGE_DOMAIN_SW_IF_DETAILS);
379 mp->bd_id = ntohl (bd_id);
380 mp->sw_if_index = ntohl (member->sw_if_index);
381 input_cfg = vec_elt_at_index (l2im->configs, member->sw_if_index);
382 mp->shg = input_cfg->shg;
383 mp->context = context;
384
385 vl_msg_api_send_shmem (q, (u8 *) & mp);
386}
387
388static void
389vl_api_bridge_domain_dump_t_handler (vl_api_bridge_domain_dump_t * mp)
390{
391 bd_main_t *bdm = &bd_main;
392 l2input_main_t *l2im = &l2input_main;
393 unix_shared_memory_queue_t *q;
394 l2_bridge_domain_t *bd_config;
395 u32 bd_id, bd_index;
396 u32 end;
397
398 q = vl_api_client_index_to_input_queue (mp->client_index);
399
400 if (q == 0)
401 return;
402
403 bd_id = ntohl (mp->bd_id);
404
Eyal Barib1352ed2017-04-07 23:14:17 +0300405 bd_index = (bd_id == ~0) ? 0 : bd_find_index (bdm, bd_id);
406 ASSERT (bd_index != ~0);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100407 end = (bd_id == ~0) ? vec_len (l2im->bd_configs) : bd_index + 1;
408 for (; bd_index < end; bd_index++)
409 {
410 bd_config = l2input_bd_config_from_index (l2im, bd_index);
411 /* skip dummy bd_id 0 */
412 if (bd_config && (bd_config->bd_id > 0))
413 {
414 u32 n_sw_ifs;
415 l2_flood_member_t *m;
416
417 n_sw_ifs = vec_len (bd_config->members);
418 send_bridge_domain_details (q, bd_config, n_sw_ifs, mp->context);
419
420 vec_foreach (m, bd_config->members)
421 {
422 send_bd_sw_if_details (l2im, q, m, bd_config->bd_id, mp->context);
423 }
424 }
425 }
426}
427
428static void
429vl_api_bridge_flags_t_handler (vl_api_bridge_flags_t * mp)
430{
431 vlib_main_t *vm = vlib_get_main ();
432 bd_main_t *bdm = &bd_main;
433 vl_api_bridge_flags_reply_t *rmp;
434 int rv = 0;
435 u32 bd_id = ntohl (mp->bd_id);
436 u32 bd_index;
437 u32 flags = ntohl (mp->feature_bitmap);
438 uword *p;
439
440 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
441 if (p == 0)
442 {
443 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
444 goto out;
445 }
446
447 bd_index = p[0];
448
449 bd_set_flags (vm, bd_index, flags, mp->is_set);
450
451out:
452 /* *INDENT-OFF* */
453 REPLY_MACRO2(VL_API_BRIDGE_FLAGS_REPLY,
454 ({
455 rmp->resulting_feature_bitmap = ntohl(flags);
456 }));
457 /* *INDENT-ON* */
458}
Matus Fabianf468e232016-12-02 06:00:53 -0800459
Pavel Kotucekadec5872017-01-25 08:50:53 +0100460static void
461 vl_api_l2_interface_vlan_tag_rewrite_t_handler
462 (vl_api_l2_interface_vlan_tag_rewrite_t * mp)
463{
464 int rv = 0;
465 vl_api_l2_interface_vlan_tag_rewrite_reply_t *rmp;
466 vnet_main_t *vnm = vnet_get_main ();
467 vlib_main_t *vm = vlib_get_main ();
468 u32 vtr_op;
469
470 VALIDATE_SW_IF_INDEX (mp);
471
472 vtr_op = ntohl (mp->vtr_op);
473
474 /* The L2 code is unsuspicious */
475 switch (vtr_op)
476 {
477 case L2_VTR_DISABLED:
478 case L2_VTR_PUSH_1:
479 case L2_VTR_PUSH_2:
480 case L2_VTR_POP_1:
481 case L2_VTR_POP_2:
482 case L2_VTR_TRANSLATE_1_1:
483 case L2_VTR_TRANSLATE_1_2:
484 case L2_VTR_TRANSLATE_2_1:
485 case L2_VTR_TRANSLATE_2_2:
486 break;
487
488 default:
489 rv = VNET_API_ERROR_INVALID_VALUE;
490 goto bad_sw_if_index;
491 }
492
493 rv = l2vtr_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
494 ntohl (mp->push_dot1q), ntohl (mp->tag1),
495 ntohl (mp->tag2));
496
497 BAD_SW_IF_INDEX_LABEL;
498
499 REPLY_MACRO (VL_API_L2_INTERFACE_VLAN_TAG_REWRITE_REPLY);
500}
501
502static void
503 vl_api_l2_interface_pbb_tag_rewrite_t_handler
504 (vl_api_l2_interface_pbb_tag_rewrite_t * mp)
505{
506 vl_api_l2_interface_pbb_tag_rewrite_reply_t *rmp;
507 vnet_main_t *vnm = vnet_get_main ();
508 vlib_main_t *vm = vlib_get_main ();
509 u32 vtr_op;
510 int rv = 0;
511
512 VALIDATE_SW_IF_INDEX (mp);
513
514 vtr_op = ntohl (mp->vtr_op);
515
516 switch (vtr_op)
517 {
518 case L2_VTR_DISABLED:
519 case L2_VTR_PUSH_2:
520 case L2_VTR_POP_2:
521 case L2_VTR_TRANSLATE_2_1:
522 break;
523
524 default:
525 rv = VNET_API_ERROR_INVALID_VALUE;
526 goto bad_sw_if_index;
527 }
528
529 rv = l2pbb_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
530 mp->b_dmac, mp->b_smac, ntohs (mp->b_vlanid),
531 ntohl (mp->i_sid), ntohs (mp->outer_tag));
532
533 BAD_SW_IF_INDEX_LABEL;
534
535 REPLY_MACRO (VL_API_L2_INTERFACE_PBB_TAG_REWRITE_REPLY);
536}
537
Matus Fabianf468e232016-12-02 06:00:53 -0800538/*
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100539 * l2_api_hookup
Matus Fabianf468e232016-12-02 06:00:53 -0800540 * Add vpe's API message handlers to the table.
541 * vlib has alread mapped shared memory and
542 * added the client registration handlers.
543 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
544 */
545#define vl_msg_name_crc_list
546#include <vnet/vnet_all_api_h.h>
547#undef vl_msg_name_crc_list
548
549static void
550setup_message_id_table (api_main_t * am)
551{
552#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
553 foreach_vl_msg_name_crc_l2;
554#undef _
555}
556
557static clib_error_t *
558l2_api_hookup (vlib_main_t * vm)
559{
560 api_main_t *am = &api_main;
561
562#define _(N,n) \
563 vl_msg_api_set_handlers(VL_API_##N, #n, \
564 vl_api_##n##_t_handler, \
565 vl_noop_handler, \
566 vl_api_##n##_t_endian, \
567 vl_api_##n##_t_print, \
568 sizeof(vl_api_##n##_t), 1);
569 foreach_vpe_api_msg;
570#undef _
571
572 /*
573 * Set up the (msg_name, crc, message-id) table
574 */
575 setup_message_id_table (am);
576
577 return 0;
578}
579
580VLIB_API_INIT_FUNCTION (l2_api_hookup);
581
582/*
583 * fd.io coding-style-patch-verification: ON
584 *
585 * Local Variables:
586 * eval: (c-set-style "gnu")
587 * End:
588 */