blob: be3b75e9658d7064b310c91e77fc67c9bdaf7cf2 [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>
John Lo8d00fff2017-08-03 00:35:36 -040028#include <vnet/l2/l2_learn.h>
Matus Fabianf468e232016-12-02 06:00:53 -080029
30#include <vnet/vnet_msg_enum.h>
31
32#define vl_typedefs /* define message structures */
33#include <vnet/vnet_all_api_h.h>
34#undef vl_typedefs
35
36#define vl_endianfun /* define message structures */
37#include <vnet/vnet_all_api_h.h>
38#undef vl_endianfun
39
Ole Troan01384fe2017-05-12 11:55:35 +020040#define vl_api_bridge_domain_details_t_endian vl_noop_handler
41#define vl_api_bridge_domain_details_t_print vl_noop_handler
42
Matus Fabianf468e232016-12-02 06:00:53 -080043/* instantiate all the print functions we know about */
44#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
45#define vl_printfun
46#include <vnet/vnet_all_api_h.h>
47#undef vl_printfun
48
49#include <vlibapi/api_helper_macros.h>
50
Pavel Kotucek0f971d82017-01-03 10:48:54 +010051#define foreach_vpe_api_msg \
52_(L2_XCONNECT_DUMP, l2_xconnect_dump) \
53_(L2_FIB_CLEAR_TABLE, l2_fib_clear_table) \
54_(L2_FIB_TABLE_DUMP, l2_fib_table_dump) \
Eyal Bari7537e712017-04-27 14:07:55 +030055_(L2FIB_FLUSH_ALL, l2fib_flush_all) \
Eyal Barif24991c2017-04-05 05:33:21 +030056_(L2FIB_FLUSH_INT, l2fib_flush_int) \
57_(L2FIB_FLUSH_BD, l2fib_flush_bd) \
Pavel Kotucek0f971d82017-01-03 10:48:54 +010058_(L2FIB_ADD_DEL, l2fib_add_del) \
John Lo8d00fff2017-08-03 00:35:36 -040059_(WANT_L2_MACS_EVENTS, want_l2_macs_events) \
Pavel Kotucek0f971d82017-01-03 10:48:54 +010060_(L2_FLAGS, l2_flags) \
Neale Rannsb8d44812017-11-10 06:53:54 -080061_(SW_INTERFACE_SET_L2_XCONNECT, sw_interface_set_l2_xconnect) \
62_(SW_INTERFACE_SET_L2_BRIDGE, sw_interface_set_l2_bridge) \
63_(L2_PATCH_ADD_DEL, l2_patch_add_del) \
64_(L2_INTERFACE_EFP_FILTER, l2_interface_efp_filter) \
65_(BD_IP_MAC_ADD_DEL, bd_ip_mac_add_del) \
66_(BRIDGE_DOMAIN_ADD_DEL, bridge_domain_add_del) \
67_(BRIDGE_DOMAIN_DUMP, bridge_domain_dump) \
68_(BRIDGE_FLAGS, bridge_flags) \
Pavel Kotucekadec5872017-01-25 08:50:53 +010069_(L2_INTERFACE_VLAN_TAG_REWRITE, l2_interface_vlan_tag_rewrite) \
Neale Rannsb8d44812017-11-10 06:53:54 -080070_(L2_INTERFACE_PBB_TAG_REWRITE, l2_interface_pbb_tag_rewrite) \
71_(BRIDGE_DOMAIN_SET_MAC_AGE, bridge_domain_set_mac_age) \
72_(SW_INTERFACE_SET_VPATH, sw_interface_set_vpath)
Matus Fabianf468e232016-12-02 06:00:53 -080073
74static void
Florin Coras6c4dae22018-01-09 06:39:23 -080075send_l2_xconnect_details (vl_api_registration_t * reg, u32 context,
Matus Fabianf468e232016-12-02 06:00:53 -080076 u32 rx_sw_if_index, u32 tx_sw_if_index)
77{
78 vl_api_l2_xconnect_details_t *mp;
79
80 mp = vl_msg_api_alloc (sizeof (*mp));
81 memset (mp, 0, sizeof (*mp));
82 mp->_vl_msg_id = ntohs (VL_API_L2_XCONNECT_DETAILS);
83 mp->context = context;
84 mp->rx_sw_if_index = htonl (rx_sw_if_index);
85 mp->tx_sw_if_index = htonl (tx_sw_if_index);
86
Florin Coras6c4dae22018-01-09 06:39:23 -080087 vl_api_send_msg (reg, (u8 *) mp);
Matus Fabianf468e232016-12-02 06:00:53 -080088}
89
90static void
91vl_api_l2_xconnect_dump_t_handler (vl_api_l2_xconnect_dump_t * mp)
92{
Florin Coras6c4dae22018-01-09 06:39:23 -080093 vl_api_registration_t *reg;
Matus Fabianf468e232016-12-02 06:00:53 -080094 vnet_main_t *vnm = vnet_get_main ();
95 vnet_interface_main_t *im = &vnm->interface_main;
96 l2input_main_t *l2im = &l2input_main;
97 vnet_sw_interface_t *swif;
98 l2_input_config_t *config;
99
Florin Coras6c4dae22018-01-09 06:39:23 -0800100 reg = vl_api_client_index_to_registration (mp->client_index);
101 if (!reg)
Matus Fabianf468e232016-12-02 06:00:53 -0800102 return;
103
104 /* *INDENT-OFF* */
105 pool_foreach (swif, im->sw_interfaces,
106 ({
107 config = vec_elt_at_index (l2im->configs, swif->sw_if_index);
108 if (config->xconnect)
Florin Coras6c4dae22018-01-09 06:39:23 -0800109 send_l2_xconnect_details (reg, mp->context, swif->sw_if_index,
Matus Fabianf468e232016-12-02 06:00:53 -0800110 config->output_sw_if_index);
111 }));
112 /* *INDENT-ON* */
113}
114
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100115static void
116vl_api_l2_fib_clear_table_t_handler (vl_api_l2_fib_clear_table_t * mp)
117{
118 int rv = 0;
119 vl_api_l2_fib_clear_table_reply_t *rmp;
120
Eyal Bari7537e712017-04-27 14:07:55 +0300121 /* Clear all MACs including static MACs */
122 l2fib_clear_table ();
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100123
124 REPLY_MACRO (VL_API_L2_FIB_CLEAR_TABLE_REPLY);
125}
126
127static void
128send_l2fib_table_entry (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800129 vl_api_registration_t * reg,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100130 l2fib_entry_key_t * l2fe_key,
131 l2fib_entry_result_t * l2fe_res, u32 context)
132{
Ole Troan01384fe2017-05-12 11:55:35 +0200133 vl_api_l2_fib_table_details_t *mp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100134
135 mp = vl_msg_api_alloc (sizeof (*mp));
136 memset (mp, 0, sizeof (*mp));
Ole Troan01384fe2017-05-12 11:55:35 +0200137 mp->_vl_msg_id = ntohs (VL_API_L2_FIB_TABLE_DETAILS);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100138
139 mp->bd_id =
140 ntohl (l2input_main.bd_configs[l2fe_key->fields.bd_index].bd_id);
141
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200142 clib_memcpy (mp->mac, l2fe_key->fields.mac, 6);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100143 mp->sw_if_index = ntohl (l2fe_res->fields.sw_if_index);
144 mp->static_mac = l2fe_res->fields.static_mac;
145 mp->filter_mac = l2fe_res->fields.filter;
146 mp->bvi_mac = l2fe_res->fields.bvi;
147 mp->context = context;
148
Florin Coras6c4dae22018-01-09 06:39:23 -0800149 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100150}
151
152static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100153vl_api_l2_fib_table_dump_t_handler (vl_api_l2_fib_table_dump_t * mp)
154{
155 vpe_api_main_t *am = &vpe_api_main;
156 bd_main_t *bdm = &bd_main;
157 l2fib_entry_key_t *l2fe_key = NULL;
158 l2fib_entry_result_t *l2fe_res = NULL;
159 u32 ni, bd_id = ntohl (mp->bd_id);
160 u32 bd_index;
Florin Coras6c4dae22018-01-09 06:39:23 -0800161 vl_api_registration_t *reg;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100162 uword *p;
163
Florin Coras6c4dae22018-01-09 06:39:23 -0800164 reg = vl_api_client_index_to_registration (mp->client_index);
165 if (!reg)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100166 return;
167
168 /* see l2fib_table_dump: ~0 means "any" */
169 if (bd_id == ~0)
170 bd_index = ~0;
171 else
172 {
173 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
174 if (p == 0)
175 return;
176
177 bd_index = p[0];
178 }
179
180 l2fib_table_dump (bd_index, &l2fe_key, &l2fe_res);
181
182 vec_foreach_index (ni, l2fe_key)
183 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800184 send_l2fib_table_entry (am, reg, vec_elt_at_index (l2fe_key, ni),
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100185 vec_elt_at_index (l2fe_res, ni), mp->context);
186 }
187 vec_free (l2fe_key);
188 vec_free (l2fe_res);
189}
190
191static void
192vl_api_l2fib_add_del_t_handler (vl_api_l2fib_add_del_t * mp)
193{
194 bd_main_t *bdm = &bd_main;
195 l2input_main_t *l2im = &l2input_main;
196 vl_api_l2fib_add_del_reply_t *rmp;
197 int rv = 0;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100198 u32 bd_id = ntohl (mp->bd_id);
Eyal Bari31a71ab2017-06-25 14:42:33 +0300199 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100200
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100201 if (!p)
202 {
203 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
204 goto bad_sw_if_index;
205 }
Eyal Bari31a71ab2017-06-25 14:42:33 +0300206 u32 bd_index = p[0];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100207
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200208 u8 mac[6];
209
210 clib_memcpy (mac, mp->mac, 6);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100211 if (mp->is_add)
212 {
Eyal Bari31a71ab2017-06-25 14:42:33 +0300213 if (mp->filter_mac)
214 l2fib_add_filter_entry (mac, bd_index);
215 else
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100216 {
Eyal Bari31a71ab2017-06-25 14:42:33 +0300217 u32 sw_if_index = ntohl (mp->sw_if_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100218 VALIDATE_SW_IF_INDEX (mp);
219 if (vec_len (l2im->configs) <= sw_if_index)
220 {
221 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
222 goto bad_sw_if_index;
223 }
224 else
225 {
226 l2_input_config_t *config;
227 config = vec_elt_at_index (l2im->configs, sw_if_index);
228 if (config->bridge == 0)
229 {
230 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
231 goto bad_sw_if_index;
232 }
233 }
John Lo8d00fff2017-08-03 00:35:36 -0400234 u8 static_mac = mp->static_mac ? 1 : 0;
235 u8 bvi_mac = mp->bvi_mac ? 1 : 0;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300236 l2fib_add_fwd_entry (mac, bd_index, sw_if_index, static_mac,
237 bvi_mac);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100238 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100239 }
240 else
241 {
John Lo7dbd7262018-05-31 10:25:18 -0400242 u32 sw_if_index = ntohl (mp->sw_if_index);
243 if (l2fib_del_entry (mac, bd_index, sw_if_index))
244 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100245 }
246
247 BAD_SW_IF_INDEX_LABEL;
248
249 REPLY_MACRO (VL_API_L2FIB_ADD_DEL_REPLY);
250}
251
252static void
John Lo8d00fff2017-08-03 00:35:36 -0400253vl_api_want_l2_macs_events_t_handler (vl_api_want_l2_macs_events_t * mp)
254{
255 int rv = 0;
256 vl_api_want_l2_macs_events_reply_t *rmp;
257 l2learn_main_t *lm = &l2learn_main;
258 l2fib_main_t *fm = &l2fib_main;
259 u32 pid = ntohl (mp->pid);
260 u32 learn_limit = ntohl (mp->learn_limit);
261
262 if (mp->enable_disable)
263 {
264 if (lm->client_pid == 0)
265 {
266 lm->client_pid = pid;
267 lm->client_index = mp->client_index;
268
269 if (mp->max_macs_in_event)
270 fm->max_macs_in_event = mp->max_macs_in_event * 10;
271 else
272 fm->max_macs_in_event = L2FIB_EVENT_MAX_MACS_DEFAULT;
273
274 if (mp->scan_delay)
275 fm->event_scan_delay = (f64) (mp->scan_delay) * 10e-3;
276 else
277 fm->event_scan_delay = L2FIB_EVENT_SCAN_DELAY_DEFAULT;
278
279 /* change learn limit and flush all learned MACs */
280 if (learn_limit && (learn_limit < L2LEARN_DEFAULT_LIMIT))
281 lm->global_learn_limit = learn_limit;
282 else
283 lm->global_learn_limit = L2FIB_EVENT_LEARN_LIMIT_DEFAULT;
284
285 l2fib_flush_all_mac (vlib_get_main ());
286 }
287 else if (lm->client_pid != pid)
288 {
289 rv = VNET_API_ERROR_L2_MACS_EVENT_CLINET_PRESENT;
290 goto exit;
291 }
292 }
293 else if (lm->client_pid)
294 {
295 lm->client_pid = 0;
296 lm->client_index = 0;
John Lodbfa5742017-09-02 08:27:36 -0400297 if (learn_limit && (learn_limit < L2LEARN_DEFAULT_LIMIT))
John Loe531f4c2017-08-22 09:16:50 -0400298 lm->global_learn_limit = learn_limit;
299 else
300 lm->global_learn_limit = L2LEARN_DEFAULT_LIMIT;
John Lo8d00fff2017-08-03 00:35:36 -0400301 }
302
303exit:
304 REPLY_MACRO (VL_API_WANT_L2_MACS_EVENTS_REPLY);
305}
306
307static void
Eyal Barif24991c2017-04-05 05:33:21 +0300308vl_api_l2fib_flush_int_t_handler (vl_api_l2fib_flush_int_t * mp)
309{
310 int rv = 0;
311 vlib_main_t *vm = vlib_get_main ();
312 vl_api_l2fib_flush_int_reply_t *rmp;
313
314 VALIDATE_SW_IF_INDEX (mp);
315
316 u32 sw_if_index = ntohl (mp->sw_if_index);
317 l2fib_flush_int_mac (vm, sw_if_index);
318
319 BAD_SW_IF_INDEX_LABEL;
320 REPLY_MACRO (VL_API_L2FIB_FLUSH_INT_REPLY);
321}
322
323static void
Eyal Bari7537e712017-04-27 14:07:55 +0300324vl_api_l2fib_flush_all_t_handler (vl_api_l2fib_flush_all_t * mp)
325{
326 int rv = 0;
327 vl_api_l2fib_flush_all_reply_t *rmp;
328
329 l2fib_flush_all_mac (vlib_get_main ());
330 REPLY_MACRO (VL_API_L2FIB_FLUSH_ALL_REPLY);
331}
332
333static void
Eyal Barif24991c2017-04-05 05:33:21 +0300334vl_api_l2fib_flush_bd_t_handler (vl_api_l2fib_flush_bd_t * mp)
335{
336 int rv = 0;
337 vlib_main_t *vm = vlib_get_main ();
338 bd_main_t *bdm = &bd_main;
339 vl_api_l2fib_flush_bd_reply_t *rmp;
340
341 u32 bd_id = ntohl (mp->bd_id);
342 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
343 if (p == 0)
344 {
345 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
346 goto out;
347 }
348 l2fib_flush_bd_mac (vm, *p);
349out:
350 REPLY_MACRO (VL_API_L2FIB_FLUSH_BD_REPLY);
351}
352
353static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100354vl_api_l2_flags_t_handler (vl_api_l2_flags_t * mp)
355{
356 vl_api_l2_flags_reply_t *rmp;
357 int rv = 0;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100358 u32 rbm = 0;
359
360 VALIDATE_SW_IF_INDEX (mp);
361
Eyal Barifead6702017-04-04 04:46:32 +0300362 u32 sw_if_index = ntohl (mp->sw_if_index);
John Lo8d00fff2017-08-03 00:35:36 -0400363 u32 flags = ntohl (mp->feature_bitmap);
364 u32 bitmap = 0;
365
366 if (flags & L2_LEARN)
367 bitmap |= L2INPUT_FEAT_LEARN;
368
369 if (flags & L2_FWD)
370 bitmap |= L2INPUT_FEAT_FWD;
371
372 if (flags & L2_FLOOD)
373 bitmap |= L2INPUT_FEAT_FLOOD;
374
375 if (flags & L2_UU_FLOOD)
376 bitmap |= L2INPUT_FEAT_UU_FLOOD;
377
378 if (flags & L2_ARP_TERM)
379 bitmap |= L2INPUT_FEAT_ARP_TERM;
380
381 rbm = l2input_intf_bitmap_enable (sw_if_index, bitmap, mp->is_set);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100382
383 BAD_SW_IF_INDEX_LABEL;
384
385 /* *INDENT-OFF* */
386 REPLY_MACRO2(VL_API_L2_FLAGS_REPLY,
387 ({
388 rmp->resulting_feature_bitmap = ntohl(rbm);
389 }));
390 /* *INDENT-ON* */
391}
392
393static void
Eyal Barifead6702017-04-04 04:46:32 +0300394vl_api_bridge_domain_set_mac_age_t_handler (vl_api_bridge_domain_set_mac_age_t
395 * mp)
396{
397 vlib_main_t *vm = vlib_get_main ();
398 bd_main_t *bdm = &bd_main;
399 vl_api_bridge_domain_set_mac_age_reply_t *rmp;
400 int rv = 0;
401 u32 bd_id = ntohl (mp->bd_id);
Jon Loeliger1c7d4852017-05-02 11:06:23 -0500402 uword *p;
403
404 if (bd_id == 0)
405 {
406 rv = VNET_API_ERROR_BD_NOT_MODIFIABLE;
407 goto out;
408 }
409
410 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Eyal Barifead6702017-04-04 04:46:32 +0300411 if (p == 0)
412 {
413 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
414 goto out;
415 }
416 bd_set_mac_age (vm, *p, mp->mac_age);
417out:
418 REPLY_MACRO (VL_API_BRIDGE_DOMAIN_SET_MAC_AGE_REPLY);
419}
420
421static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100422vl_api_bridge_domain_add_del_t_handler (vl_api_bridge_domain_add_del_t * mp)
423{
Eyal Barib1352ed2017-04-07 23:14:17 +0300424 l2_bridge_domain_add_del_args_t a = {
425 .is_add = mp->is_add,
426 .flood = mp->flood,
427 .uu_flood = mp->uu_flood,
428 .forward = mp->forward,
429 .learn = mp->learn,
430 .arp_term = mp->arp_term,
431 .mac_age = mp->mac_age,
432 .bd_id = ntohl (mp->bd_id),
Jerome Tollet48304142017-09-05 12:13:22 +0100433 .bd_tag = mp->bd_tag
Eyal Barib1352ed2017-04-07 23:14:17 +0300434 };
435
436 int rv = bd_add_del (&a);
437
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100438 vl_api_bridge_domain_add_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100439 REPLY_MACRO (VL_API_BRIDGE_DOMAIN_ADD_DEL_REPLY);
440}
441
442static void
Ole Troan01384fe2017-05-12 11:55:35 +0200443send_bridge_domain_details (l2input_main_t * l2im,
Florin Coras6c4dae22018-01-09 06:39:23 -0800444 vl_api_registration_t * reg,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100445 l2_bridge_domain_t * bd_config,
446 u32 n_sw_ifs, u32 context)
447{
448 vl_api_bridge_domain_details_t *mp;
Ole Troan01384fe2017-05-12 11:55:35 +0200449 l2_flood_member_t *m;
450 vl_api_bridge_domain_sw_if_t *sw_ifs;
451 l2_input_config_t *input_cfg;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100452
Ole Troan01384fe2017-05-12 11:55:35 +0200453 mp = vl_msg_api_alloc (sizeof (*mp) +
454 (n_sw_ifs * sizeof (vl_api_bridge_domain_sw_if_t)));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100455 memset (mp, 0, sizeof (*mp));
456 mp->_vl_msg_id = ntohs (VL_API_BRIDGE_DOMAIN_DETAILS);
457 mp->bd_id = ntohl (bd_config->bd_id);
458 mp->flood = bd_feature_flood (bd_config);
459 mp->uu_flood = bd_feature_uu_flood (bd_config);
460 mp->forward = bd_feature_forward (bd_config);
461 mp->learn = bd_feature_learn (bd_config);
462 mp->arp_term = bd_feature_arp_term (bd_config);
463 mp->bvi_sw_if_index = ntohl (bd_config->bvi_sw_if_index);
464 mp->mac_age = bd_config->mac_age;
Jerome Tollet48304142017-09-05 12:13:22 +0100465 if (bd_config->bd_tag)
466 {
467 strncpy ((char *) mp->bd_tag, (char *) bd_config->bd_tag,
468 ARRAY_LEN (mp->bd_tag) - 1);
469 mp->bd_tag[ARRAY_LEN (mp->bd_tag) - 1] = 0;
470 }
471
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100472 mp->context = context;
473
Ole Troan01384fe2017-05-12 11:55:35 +0200474 sw_ifs = (vl_api_bridge_domain_sw_if_t *) mp->sw_if_details;
475 vec_foreach (m, bd_config->members)
476 {
477 sw_ifs->sw_if_index = ntohl (m->sw_if_index);
478 input_cfg = vec_elt_at_index (l2im->configs, m->sw_if_index);
479 sw_ifs->shg = input_cfg->shg;
480 sw_ifs++;
481 mp->n_sw_ifs++;
482 }
483 mp->n_sw_ifs = htonl (mp->n_sw_ifs);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100484
Florin Coras6c4dae22018-01-09 06:39:23 -0800485 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100486}
487
488static void
489vl_api_bridge_domain_dump_t_handler (vl_api_bridge_domain_dump_t * mp)
490{
491 bd_main_t *bdm = &bd_main;
492 l2input_main_t *l2im = &l2input_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800493 vl_api_registration_t *reg;
494 u32 bd_id, bd_index, end;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100495
Florin Coras6c4dae22018-01-09 06:39:23 -0800496 reg = vl_api_client_index_to_registration (mp->client_index);
497 if (!reg)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100498 return;
499
Florin Coras6c4dae22018-01-09 06:39:23 -0800500 bd_id = ntohl (mp->bd_id);
Jon Loeliger1c7d4852017-05-02 11:06:23 -0500501 if (bd_id == 0)
502 return;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100503
Eyal Bari259fca72017-05-14 10:38:39 +0300504 if (bd_id == ~0)
505 bd_index = 0, end = vec_len (l2im->bd_configs);
506 else
507 {
508 bd_index = bd_find_index (bdm, bd_id);
509 if (bd_index == ~0)
510 return;
511
512 end = bd_index + 1;
513 }
Jon Loeliger1c7d4852017-05-02 11:06:23 -0500514
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100515 for (; bd_index < end; bd_index++)
516 {
Eyal Bari259fca72017-05-14 10:38:39 +0300517 l2_bridge_domain_t *bd_config =
518 l2input_bd_config_from_index (l2im, bd_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100519 /* skip dummy bd_id 0 */
520 if (bd_config && (bd_config->bd_id > 0))
Florin Coras6c4dae22018-01-09 06:39:23 -0800521 send_bridge_domain_details (l2im, reg, bd_config,
Ole Troan01384fe2017-05-12 11:55:35 +0200522 vec_len (bd_config->members),
523 mp->context);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100524 }
525}
526
527static void
528vl_api_bridge_flags_t_handler (vl_api_bridge_flags_t * mp)
529{
530 vlib_main_t *vm = vlib_get_main ();
531 bd_main_t *bdm = &bd_main;
532 vl_api_bridge_flags_reply_t *rmp;
533 int rv = 0;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100534
Eyal Bari259fca72017-05-14 10:38:39 +0300535 u32 flags = ntohl (mp->feature_bitmap);
536 u32 bd_id = ntohl (mp->bd_id);
Jon Loeliger1c7d4852017-05-02 11:06:23 -0500537 if (bd_id == 0)
538 {
539 rv = VNET_API_ERROR_BD_NOT_MODIFIABLE;
540 goto out;
541 }
542
Eyal Bari259fca72017-05-14 10:38:39 +0300543 u32 bd_index = bd_find_index (bdm, bd_id);
544 if (bd_index == ~0)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100545 {
546 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
547 goto out;
548 }
549
John Lo8d00fff2017-08-03 00:35:36 -0400550 u32 bitmap = bd_set_flags (vm, bd_index, flags, mp->is_set);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100551
552out:
553 /* *INDENT-OFF* */
554 REPLY_MACRO2(VL_API_BRIDGE_FLAGS_REPLY,
555 ({
John Lo8d00fff2017-08-03 00:35:36 -0400556 rmp->resulting_feature_bitmap = ntohl(bitmap);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100557 }));
558 /* *INDENT-ON* */
559}
Matus Fabianf468e232016-12-02 06:00:53 -0800560
Pavel Kotucekadec5872017-01-25 08:50:53 +0100561static void
562 vl_api_l2_interface_vlan_tag_rewrite_t_handler
563 (vl_api_l2_interface_vlan_tag_rewrite_t * mp)
564{
565 int rv = 0;
566 vl_api_l2_interface_vlan_tag_rewrite_reply_t *rmp;
567 vnet_main_t *vnm = vnet_get_main ();
568 vlib_main_t *vm = vlib_get_main ();
569 u32 vtr_op;
570
571 VALIDATE_SW_IF_INDEX (mp);
572
573 vtr_op = ntohl (mp->vtr_op);
574
575 /* The L2 code is unsuspicious */
576 switch (vtr_op)
577 {
578 case L2_VTR_DISABLED:
579 case L2_VTR_PUSH_1:
580 case L2_VTR_PUSH_2:
581 case L2_VTR_POP_1:
582 case L2_VTR_POP_2:
583 case L2_VTR_TRANSLATE_1_1:
584 case L2_VTR_TRANSLATE_1_2:
585 case L2_VTR_TRANSLATE_2_1:
586 case L2_VTR_TRANSLATE_2_2:
587 break;
588
589 default:
590 rv = VNET_API_ERROR_INVALID_VALUE;
591 goto bad_sw_if_index;
592 }
593
594 rv = l2vtr_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
595 ntohl (mp->push_dot1q), ntohl (mp->tag1),
596 ntohl (mp->tag2));
597
598 BAD_SW_IF_INDEX_LABEL;
599
600 REPLY_MACRO (VL_API_L2_INTERFACE_VLAN_TAG_REWRITE_REPLY);
601}
602
603static void
604 vl_api_l2_interface_pbb_tag_rewrite_t_handler
605 (vl_api_l2_interface_pbb_tag_rewrite_t * mp)
606{
607 vl_api_l2_interface_pbb_tag_rewrite_reply_t *rmp;
608 vnet_main_t *vnm = vnet_get_main ();
609 vlib_main_t *vm = vlib_get_main ();
610 u32 vtr_op;
611 int rv = 0;
612
613 VALIDATE_SW_IF_INDEX (mp);
614
615 vtr_op = ntohl (mp->vtr_op);
616
617 switch (vtr_op)
618 {
619 case L2_VTR_DISABLED:
620 case L2_VTR_PUSH_2:
621 case L2_VTR_POP_2:
622 case L2_VTR_TRANSLATE_2_1:
623 break;
624
625 default:
626 rv = VNET_API_ERROR_INVALID_VALUE;
627 goto bad_sw_if_index;
628 }
629
630 rv = l2pbb_configure (vm, vnm, ntohl (mp->sw_if_index), vtr_op,
631 mp->b_dmac, mp->b_smac, ntohs (mp->b_vlanid),
632 ntohl (mp->i_sid), ntohs (mp->outer_tag));
633
634 BAD_SW_IF_INDEX_LABEL;
635
636 REPLY_MACRO (VL_API_L2_INTERFACE_PBB_TAG_REWRITE_REPLY);
637}
638
Neale Rannsb8d44812017-11-10 06:53:54 -0800639static void
640 vl_api_sw_interface_set_l2_xconnect_t_handler
641 (vl_api_sw_interface_set_l2_xconnect_t * mp)
642{
643 vl_api_sw_interface_set_l2_xconnect_reply_t *rmp;
644 int rv = 0;
645 u32 rx_sw_if_index = ntohl (mp->rx_sw_if_index);
646 u32 tx_sw_if_index = ntohl (mp->tx_sw_if_index);
647 vlib_main_t *vm = vlib_get_main ();
648 vnet_main_t *vnm = vnet_get_main ();
649
650 VALIDATE_RX_SW_IF_INDEX (mp);
651
652 if (mp->enable)
653 {
654 VALIDATE_TX_SW_IF_INDEX (mp);
655 rv = set_int_l2_mode (vm, vnm, MODE_L2_XC,
656 rx_sw_if_index, 0, 0, 0, tx_sw_if_index);
657 }
658 else
659 {
660 rv = set_int_l2_mode (vm, vnm, MODE_L3, rx_sw_if_index, 0, 0, 0, 0);
661 }
662
663 BAD_RX_SW_IF_INDEX_LABEL;
664 BAD_TX_SW_IF_INDEX_LABEL;
665
666 REPLY_MACRO (VL_API_SW_INTERFACE_SET_L2_XCONNECT_REPLY);
667}
668
669static void
670 vl_api_sw_interface_set_l2_bridge_t_handler
671 (vl_api_sw_interface_set_l2_bridge_t * mp)
672{
673 bd_main_t *bdm = &bd_main;
674 vl_api_sw_interface_set_l2_bridge_reply_t *rmp;
675 int rv = 0;
676 vlib_main_t *vm = vlib_get_main ();
677 vnet_main_t *vnm = vnet_get_main ();
678
679 VALIDATE_RX_SW_IF_INDEX (mp);
680 u32 rx_sw_if_index = ntohl (mp->rx_sw_if_index);
681
682
683 if (mp->enable)
684 {
685 VALIDATE_BD_ID (mp);
686 u32 bd_id = ntohl (mp->bd_id);
687 u32 bd_index = bd_find_or_add_bd_index (bdm, bd_id);
688 u32 bvi = mp->bvi;
689 u8 shg = mp->shg;
690 rv = set_int_l2_mode (vm, vnm, MODE_L2_BRIDGE,
691 rx_sw_if_index, bd_index, bvi, shg, 0);
692 }
693 else
694 {
695 rv = set_int_l2_mode (vm, vnm, MODE_L3, rx_sw_if_index, 0, 0, 0, 0);
696 }
697
698 BAD_RX_SW_IF_INDEX_LABEL;
699 BAD_BD_ID_LABEL;
700
701 REPLY_MACRO (VL_API_SW_INTERFACE_SET_L2_BRIDGE_REPLY);
702}
703
704static void
705vl_api_bd_ip_mac_add_del_t_handler (vl_api_bd_ip_mac_add_del_t * mp)
706{
707 bd_main_t *bdm = &bd_main;
708 vl_api_bd_ip_mac_add_del_reply_t *rmp;
709 int rv = 0;
710 u32 bd_id = ntohl (mp->bd_id);
711 u32 bd_index;
712 uword *p;
713
714 if (bd_id == 0)
715 {
716 rv = VNET_API_ERROR_BD_NOT_MODIFIABLE;
717 goto out;
718 }
719
720 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
721 if (p == 0)
722 {
723 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
724 goto out;
725 }
726
727 bd_index = p[0];
728 if (bd_add_del_ip_mac (bd_index, mp->ip_address,
729 mp->mac_address, mp->is_ipv6, mp->is_add))
730 rv = VNET_API_ERROR_UNSPECIFIED;
731
732out:
733 REPLY_MACRO (VL_API_BD_IP_MAC_ADD_DEL_REPLY);
734}
735
736extern void l2_efp_filter_configure (vnet_main_t * vnet_main,
Neale Ranns6b9b41c2018-07-23 05:47:09 -0400737 u32 sw_if_index, u8 enable);
Neale Rannsb8d44812017-11-10 06:53:54 -0800738
739static void
740vl_api_l2_interface_efp_filter_t_handler (vl_api_l2_interface_efp_filter_t *
741 mp)
742{
743 int rv;
744 vl_api_l2_interface_efp_filter_reply_t *rmp;
745 vnet_main_t *vnm = vnet_get_main ();
746
Neale Ranns6b9b41c2018-07-23 05:47:09 -0400747 VALIDATE_SW_IF_INDEX (mp);
748
Neale Rannsb8d44812017-11-10 06:53:54 -0800749 // enable/disable the feature
Neale Ranns6b9b41c2018-07-23 05:47:09 -0400750 l2_efp_filter_configure (vnm, ntohl (mp->sw_if_index), mp->enable_disable);
Neale Rannsb8d44812017-11-10 06:53:54 -0800751 rv = vnm->api_errno;
752
Neale Ranns6b9b41c2018-07-23 05:47:09 -0400753 BAD_SW_IF_INDEX_LABEL;
Neale Rannsb8d44812017-11-10 06:53:54 -0800754 REPLY_MACRO (VL_API_L2_INTERFACE_EFP_FILTER_REPLY);
755}
756
757static void
758vl_api_l2_patch_add_del_t_handler (vl_api_l2_patch_add_del_t * mp)
759{
760 extern int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
761 int is_add);
762 vl_api_l2_patch_add_del_reply_t *rmp;
763 int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index,
764 int is_add);
765 int rv = 0;
766
767 VALIDATE_RX_SW_IF_INDEX (mp);
768 VALIDATE_TX_SW_IF_INDEX (mp);
769
770 rv = vnet_l2_patch_add_del (ntohl (mp->rx_sw_if_index),
771 ntohl (mp->tx_sw_if_index),
772 (int) (mp->is_add != 0));
773
774 BAD_RX_SW_IF_INDEX_LABEL;
775 BAD_TX_SW_IF_INDEX_LABEL;
776
777 REPLY_MACRO (VL_API_L2_PATCH_ADD_DEL_REPLY);
778}
779
780static void
781vl_api_sw_interface_set_vpath_t_handler (vl_api_sw_interface_set_vpath_t * mp)
782{
783 vl_api_sw_interface_set_vpath_reply_t *rmp;
784 int rv = 0;
785 u32 sw_if_index = ntohl (mp->sw_if_index);
786
787 VALIDATE_SW_IF_INDEX (mp);
788
789 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_VPATH, mp->enable);
790 vnet_feature_enable_disable ("ip4-unicast", "vpath-input-ip4",
791 sw_if_index, mp->enable, 0, 0);
792 vnet_feature_enable_disable ("ip4-multicast", "vpath-input-ip4",
793 sw_if_index, mp->enable, 0, 0);
794 vnet_feature_enable_disable ("ip6-unicast", "vpath-input-ip6",
795 sw_if_index, mp->enable, 0, 0);
796 vnet_feature_enable_disable ("ip6-multicast", "vpath-input-ip6",
797 sw_if_index, mp->enable, 0, 0);
798
799 BAD_SW_IF_INDEX_LABEL;
800
801 REPLY_MACRO (VL_API_SW_INTERFACE_SET_VPATH_REPLY);
802}
803
Matus Fabianf468e232016-12-02 06:00:53 -0800804/*
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100805 * l2_api_hookup
Matus Fabianf468e232016-12-02 06:00:53 -0800806 * Add vpe's API message handlers to the table.
807 * vlib has alread mapped shared memory and
808 * added the client registration handlers.
809 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
810 */
811#define vl_msg_name_crc_list
812#include <vnet/vnet_all_api_h.h>
813#undef vl_msg_name_crc_list
814
815static void
816setup_message_id_table (api_main_t * am)
817{
818#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
819 foreach_vl_msg_name_crc_l2;
820#undef _
821}
822
823static clib_error_t *
824l2_api_hookup (vlib_main_t * vm)
825{
826 api_main_t *am = &api_main;
827
828#define _(N,n) \
829 vl_msg_api_set_handlers(VL_API_##N, #n, \
830 vl_api_##n##_t_handler, \
831 vl_noop_handler, \
832 vl_api_##n##_t_endian, \
833 vl_api_##n##_t_print, \
834 sizeof(vl_api_##n##_t), 1);
835 foreach_vpe_api_msg;
836#undef _
837
838 /*
839 * Set up the (msg_name, crc, message-id) table
840 */
841 setup_message_id_table (am);
842
843 return 0;
844}
845
846VLIB_API_INIT_FUNCTION (l2_api_hookup);
847
848/*
849 * fd.io coding-style-patch-verification: ON
850 *
851 * Local Variables:
852 * eval: (c-set-style "gnu")
853 * End:
854 */