blob: b0ac23f705a4896a156f95d7e2eef6c2f759d638 [file] [log] [blame]
Matus Fabianf468e232016-12-02 06:00:53 -08001/* Hey Emacs use -*- mode: C -*- */
2/*
3 * Copyright (c) 2016 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jerome Tollet0f8d1002021-01-07 12:44:17 +010017option version = "3.1.0";
Neale Ranns4d5b9172018-10-24 02:57:49 -070018
19import "vnet/ip/ip_types.api";
20import "vnet/ethernet/ethernet_types.api";
Neale Rannscbe25aa2019-09-30 10:53:31 +000021import "vnet/interface_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040022
Jakub Grajciar145e3302019-10-24 13:52:42 +020023/** \brief Reply to l2_xconnect_dump
Matus Fabianf468e232016-12-02 06:00:53 -080024 @param context - sender context which was passed in the request
25 @param rx_sw_if_index - Receive interface index
26 @param tx_sw_if_index - Transmit interface index
27 */
28define l2_xconnect_details
29{
30 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +020031 vl_api_interface_index_t rx_sw_if_index;
32 vl_api_interface_index_t tx_sw_if_index;
Matus Fabianf468e232016-12-02 06:00:53 -080033};
34
35/** \brief Dump L2 XConnects
36 @param client_index - opaque cookie to identify the sender
37 @param context - sender context, to match reply w/ request
38*/
39define l2_xconnect_dump
40{
41 u32 client_index;
42 u32 context;
43};
44
Ole Troan01384fe2017-05-12 11:55:35 +020045/** \brief l2 fib table details structure
Pavel Kotucek0f971d82017-01-03 10:48:54 +010046 @param bd_id - the l2 fib / bridge domain table id
47 @param mac - the entry's mac address
48 @param sw_if_index - index of the interface
49 @param static_mac - the entry is statically configured.
50 @param filter_mac - the entry is a mac filter entry.
51 @param bvi_mac - the mac address is a bridge virtual interface
52*/
Ole Troan01384fe2017-05-12 11:55:35 +020053define l2_fib_table_details
Pavel Kotucek0f971d82017-01-03 10:48:54 +010054{
55 u32 context;
56 u32 bd_id;
Jakub Grajciar145e3302019-10-24 13:52:42 +020057 vl_api_mac_address_t mac;
58 vl_api_interface_index_t sw_if_index;
59 bool static_mac;
60 bool filter_mac;
61 bool bvi_mac;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010062};
63
64/** \brief Dump l2 fib (aka bridge domain) table
65 @param client_index - opaque cookie to identify the sender
66 @param bd_id - the l2 fib / bridge domain table identifier
67*/
68define l2_fib_table_dump
69{
70 u32 client_index;
71 u32 context;
72 u32 bd_id;
73};
74
75/** \brief L2 fib clear table request, clear all mac entries in the l2 fib
76 @param client_index - opaque cookie to identify the sender
77 @param context - sender context, to match reply w/ request
78*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040079autoreply define l2_fib_clear_table
Pavel Kotucek0f971d82017-01-03 10:48:54 +010080{
81 u32 client_index;
82 u32 context;
83};
84
Eyal Bari7537e712017-04-27 14:07:55 +030085/** \brief L2 FIB flush all entries
86 @param client_index - opaque cookie to identify the sender
87 @param context - sender context, to match reply w/ request
88*/
89autoreply define l2fib_flush_all
90{
91 u32 client_index;
92 u32 context;
93};
94
Eyal Barif24991c2017-04-05 05:33:21 +030095/** \brief L2 FIB flush bridge domain entries
96 @param client_index - opaque cookie to identify the sender
97 @param context - sender context, to match reply w/ request
98 @param bd_id - the entry's bridge domain id
99*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400100autoreply define l2fib_flush_bd
Eyal Barif24991c2017-04-05 05:33:21 +0300101{
102 u32 client_index;
103 u32 context;
104 u32 bd_id;
105};
106
Eyal Barif24991c2017-04-05 05:33:21 +0300107/** \brief L2 FIB flush interface entries
108 @param client_index - opaque cookie to identify the sender
109 @param context - sender context, to match reply w/ request
110 @param bd_id - the entry's bridge domain id
111*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400112autoreply define l2fib_flush_int
Eyal Barif24991c2017-04-05 05:33:21 +0300113{
114 u32 client_index;
115 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200116 vl_api_interface_index_t sw_if_index;
Eyal Barif24991c2017-04-05 05:33:21 +0300117};
118
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100119/** \brief L2 FIB add entry request
120 @param client_index - opaque cookie to identify the sender
121 @param context - sender context, to match reply w/ request
122 @param mac - the entry's mac address
123 @param bd_id - the entry's bridge domain id
124 @param sw_if_index - the interface
125 @param is_add - If non zero add the entry, else delete it
Jakub Grajciar145e3302019-10-24 13:52:42 +0200126 @param static_mac -
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100127 @param filter_mac -
Jakub Grajciar145e3302019-10-24 13:52:42 +0200128 @param bvi_mac -
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100129*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400130autoreply define l2fib_add_del
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100131{
132 u32 client_index;
133 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200134 vl_api_mac_address_t mac;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100135 u32 bd_id;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200136 vl_api_interface_index_t sw_if_index;
137 bool is_add [default=true];
138 bool static_mac;
139 bool filter_mac;
140 bool bvi_mac;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100141};
142
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700143/** \brief Register to receive L2 MAC events for learned and aged MAC
John Lo8d00fff2017-08-03 00:35:36 -0400144 @param client_index - opaque cookie to identify the sender
145 @param context - sender context, to match reply w/ request
Jakub Grajciar145e3302019-10-24 13:52:42 +0200146 @param learn_limit - MAC learn limit
147 @param scan_delay - event scan delay in 10 msec unit
148 @param max_macs_in_event - in units of 10 mac entries
John Lo8d00fff2017-08-03 00:35:36 -0400149 @param enable_disable - 1 => register for MAC events, 0 => cancel registration
150 @param pid - sender's pid
151*/
152autoreply define want_l2_macs_events
153{
Jerome Tollet0f8d1002021-01-07 12:44:17 +0100154 option deprecated;
John Lo8d00fff2017-08-03 00:35:36 -0400155 u32 client_index;
156 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200157 u32 learn_limit [default=1000];
158 u8 scan_delay [default=10];
159 u8 max_macs_in_event [default=10];
160 bool enable_disable [default=true];
John Lo8d00fff2017-08-03 00:35:36 -0400161 u32 pid;
162};
163
Jerome Tollet0f8d1002021-01-07 12:44:17 +0100164/** \brief Register to receive L2 MAC events for learned and aged MAC
165 @param client_index - opaque cookie to identify the sender
166 @param context - sender context, to match reply w/ request
167 @param max_macs_in_event - in units of 10 mac entries
168 @param enable_disable - 1 => register for MAC events, 0 => cancel registration
169 @param pid - sender's pid
170*/
171autoreply define want_l2_macs_events2
172{
173 u32 client_index;
174 u32 context;
175 u8 max_macs_in_event [default=10];
176 bool enable_disable [default=true];
177 u32 pid;
178};
179
180/** \brief set l2 table scan delay
181 @param client_index - opaque cookie to identify the sender
182 @param context - sender context, to match reply w/ request
183 @param scan_delay - event scan delay in 10 msec unit
184*/
185autoreply define l2fib_set_scan_delay
186{
187 u32 client_index;
188 u32 context;
189 u16 scan_delay [default=10];
190};
191
192
Jakub Grajciar145e3302019-10-24 13:52:42 +0200193enum mac_event_action
194{
195 MAC_EVENT_ACTION_API_ADD = 0,
196 MAC_EVENT_ACTION_API_DELETE = 1,
197 MAC_EVENT_ACTION_API_MOVE = 2,
198};
199
John Lo8d00fff2017-08-03 00:35:36 -0400200/** \brief Entry for learned or aged MAC in L2 MAC Events
201 @param sw_if_index - sw_if_index in the domain
202 @param mac_addr - mac_address
John Loe23c99e2018-03-13 21:53:18 -0400203 @param action - 0 => newly learned MAC, 1 => MAC deleted by ager
Jakub Grajciar145e3302019-10-24 13:52:42 +0200204 2 => MAC move (sw_if_index changed)
John Loe23c99e2018-03-13 21:53:18 -0400205 @param flags - flag bits to provide other info, not yet used
John Lo8d00fff2017-08-03 00:35:36 -0400206*/
Paul Vinciguerrae7174822019-08-07 00:05:59 -0400207typedef mac_entry
John Lo8d00fff2017-08-03 00:35:36 -0400208{
Jakub Grajciar145e3302019-10-24 13:52:42 +0200209 vl_api_interface_index_t sw_if_index;
210 vl_api_mac_address_t mac_addr;
211 vl_api_mac_event_action_t action;
212 u8 flags;
John Lo8d00fff2017-08-03 00:35:36 -0400213};
214
215/** \brief L2 MAC event for a list of learned or aged MACs
216 @param client_index - opaque cookie to identify the sender
217 @param pid - client pid registered to receive notification
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700218 @param n_macs - number of learned/aged MAC entries
John Lo8d00fff2017-08-03 00:35:36 -0400219 @param mac - array of learned/aged MAC entries
220*/
221define l2_macs_event
222{
223 u32 client_index;
224 u32 pid;
225 u32 n_macs;
226 vl_api_mac_entry_t mac[n_macs];
227};
228
Marek Gradzki51e59682018-03-06 10:05:44 +0100229service {
230 rpc want_l2_macs_events returns want_l2_macs_events_reply
231 events l2_macs_event;
232};
233
Jakub Grajciar145e3302019-10-24 13:52:42 +0200234/** \brief Set interface L2 flags (such as L2_LEARN, L2_FWD,
John Lo8d00fff2017-08-03 00:35:36 -0400235 L2_FLOOD, L2_UU_FLOOD, or L2_ARP_TERM bits). This can be used
236 to disable one or more of the features represented by the
237 flag bits on an interface to override what is set as default
238 for all interfaces in the bridge domain
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100239 @param client_index - opaque cookie to identify the sender
240 @param context - sender context, to match reply w/ request
Jakub Grajciar145e3302019-10-24 13:52:42 +0200241 @param sw_if_index - interface
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100242 @param is_set - if non-zero, set the bits, else clear them
John Lo8d00fff2017-08-03 00:35:36 -0400243 @param feature_bitmap - non-zero bits (as above) to set or clear
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100244*/
245define l2_flags
246{
247 u32 client_index;
248 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200249 vl_api_interface_index_t sw_if_index;
250 bool is_set;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100251 u32 feature_bitmap;
252};
253
John Lo8d00fff2017-08-03 00:35:36 -0400254/** \brief Set interface L2 flags response
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100255 @param context - sender context, to match reply w/ request
256 @param retval - return code for the set l2 bits request
John Lo8d00fff2017-08-03 00:35:36 -0400257 @param resulting_feature_bitmap - the internal l2 feature bitmap after the request is implemented
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100258*/
259define l2_flags_reply
260{
261 u32 context;
262 i32 retval;
263 u32 resulting_feature_bitmap;
264};
265
Eyal Barifead6702017-04-04 04:46:32 +0300266/** \brief L2 bridge domain set mac age
267 @param client_index - opaque cookie to identify the sender
268 @param context - sender context, to match reply w/ request
269 @param bd_id - the bridge domain to create
270 @param mac_age - mac aging time in min, 0 for disabled
271*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400272autoreply define bridge_domain_set_mac_age
Eyal Barifead6702017-04-04 04:46:32 +0300273{
274 u32 client_index;
275 u32 context;
276 u32 bd_id;
277 u8 mac_age;
278};
279
Jerome Tollet5f93e3b2020-12-18 09:44:24 +0100280/** \brief L2 bridge domain set default learn limit
281 @param client_index - opaque cookie to identify the sender
282 @param context - sender context, to match reply w/ request
283 @param learn limit - maximum number of entries by default for bridge domains
284*/
285autoreply define bridge_domain_set_default_learn_limit
286{
287 u32 client_index;
288 u32 context;
289 u32 learn_limit;
290};
291
292
293/** \brief L2 bridge domain set learn limit
294 @param client_index - opaque cookie to identify the sender
295 @param context - sender context, to match reply w/ request
296 @param bd_id - the bridge domain idenntifier
297 @param learn limit - maximum number of entries for this bd
298*/
299autoreply define bridge_domain_set_learn_limit
300{
301 u32 client_index;
302 u32 context;
303 u32 bd_id;
304 u32 learn_limit;
305};
306
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100307/** \brief L2 bridge domain add or delete request
308 @param client_index - opaque cookie to identify the sender
309 @param context - sender context, to match reply w/ request
310 @param bd_id - the bridge domain to create
311 @param flood - enable/disable bcast/mcast flooding in the bd
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700312 @param uu_flood - enable/disable unknown unicast flood in the bd
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100313 @param forward - enable/disable forwarding on all interfaces in the bd
314 @param learn - enable/disable learning on all interfaces in the bd
315 @param arp_term - enable/disable arp termination in the bd
Mohsin Kazmi5e6f7342019-04-05 17:40:20 +0200316 @param arp_ufwd - enable/disable arp unicast forwarding in the bd
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100317 @param mac_age - mac aging time in min, 0 for disabled
318 @param is_add - add or delete flag
319*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400320autoreply define bridge_domain_add_del
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100321{
322 u32 client_index;
323 u32 context;
324 u32 bd_id;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200325 bool flood;
326 bool uu_flood;
327 bool forward;
328 bool learn;
329 bool arp_term;
330 bool arp_ufwd;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100331 u8 mac_age;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200332 string bd_tag[64];
333 bool is_add [default=true];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100334};
335
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100336/** \brief L2 bridge domain request operational state details
337 @param client_index - opaque cookie to identify the sender
338 @param context - sender context, to match reply w/ request
339 @param bd_id - the bridge domain id desired or ~0 to request all bds
Jakub Grajciar145e3302019-10-24 13:52:42 +0200340 @param sw_if_index - filter by sw_if_index UNIMPLEMENTED
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100341*/
342define bridge_domain_dump
343{
344 u32 client_index;
345 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200346 u32 bd_id [default=0xffffffff];
347 vl_api_interface_index_t sw_if_index [default=0xffffffff];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100348};
349
Ole Troan01384fe2017-05-12 11:55:35 +0200350/** \brief L2 bridge domain sw interface operational state response
351 @param bd_id - the bridge domain id
352 @param sw_if_index - sw_if_index in the domain
353 @param shg - split horizon group for the interface
354*/
Paul Vinciguerrae7174822019-08-07 00:05:59 -0400355typedef bridge_domain_sw_if
Ole Troan01384fe2017-05-12 11:55:35 +0200356{
357 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200358 vl_api_interface_index_t sw_if_index;
359 /* FIXME: set_int_l2_mode() u32/ api u8 */
Ole Troan01384fe2017-05-12 11:55:35 +0200360 u8 shg;
361};
362
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100363/** \brief L2 bridge domain operational state response
364 @param bd_id - the bridge domain id
365 @param flood - bcast/mcast flooding state on all interfaces in the bd
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700366 @param uu_flood - unknown unicast flooding state on all interfaces in the bd
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100367 @param forward - forwarding state on all interfaces in the bd
368 @param learn - learning state on all interfaces in the bd
369 @param arp_term - arp termination state on all interfaces in the bd
Mohsin Kazmi5e6f7342019-04-05 17:40:20 +0200370 @param arp_ufwd - arp unicast forwarding state on all interfaces in the bd
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100371 @param mac_age - mac aging time in min, 0 for disabled
Jerome Tollet50570ec2017-09-14 12:53:56 +0100372 @param bd_tag - optional textual tag for the bridge domain
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100373 @param n_sw_ifs - number of sw_if_index's in the domain
374*/
Ole Troandf87f802020-11-18 19:17:48 +0100375define bridge_domain_details
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100376{
377 u32 context;
378 u32 bd_id;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200379 bool flood;
380 bool uu_flood;
381 bool forward;
382 bool learn;
383 bool arp_term;
384 bool arp_ufwd;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100385 u8 mac_age;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200386 string bd_tag[64];
387 vl_api_interface_index_t bvi_sw_if_index;
388 vl_api_interface_index_t uu_fwd_sw_if_index;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100389 u32 n_sw_ifs;
Ole Troan01384fe2017-05-12 11:55:35 +0200390 vl_api_bridge_domain_sw_if_t sw_if_details[n_sw_ifs];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100391};
392
Neale Rannsb4743802018-09-05 09:13:57 -0700393/** \brief Flags that can be changed on a bridge domain */
394enum bd_flags
395{
Michal Cmarada5daf0c52019-03-15 10:46:07 +0100396 BRIDGE_API_FLAG_NONE = 0x0,
Neale Rannsb4743802018-09-05 09:13:57 -0700397 BRIDGE_API_FLAG_LEARN = 0x1,
398 BRIDGE_API_FLAG_FWD = 0x2,
399 BRIDGE_API_FLAG_FLOOD = 0x4,
400 BRIDGE_API_FLAG_UU_FLOOD = 0x8,
401 BRIDGE_API_FLAG_ARP_TERM = 0x10,
Mohsin Kazmi5e6f7342019-04-05 17:40:20 +0200402 BRIDGE_API_FLAG_ARP_UFWD = 0x20,
Neale Rannsb4743802018-09-05 09:13:57 -0700403};
404
405/** \brief Set bridge flags request
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100406 @param client_index - opaque cookie to identify the sender
407 @param context - sender context, to match reply w/ request
408 @param bd_id - the bridge domain to set the flags for
409 @param is_set - if non-zero, set the flags, else clear them
Neale Rannsb4743802018-09-05 09:13:57 -0700410 @param flags - flags that are non-zero to set or clear
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100411*/
412define bridge_flags
413{
414 u32 client_index;
415 u32 context;
416 u32 bd_id;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200417 bool is_set;
Neale Rannsb4743802018-09-05 09:13:57 -0700418 vl_api_bd_flags_t flags;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100419};
420
421/** \brief Set bridge flags response
422 @param context - sender context, to match reply w/ request
423 @param retval - return code for the set bridge flags request
John Lo8d00fff2017-08-03 00:35:36 -0400424 @param resulting_feature_bitmap - the internal L2 feature bitmap after the request is implemented
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100425*/
426define bridge_flags_reply
427{
428 u32 context;
429 i32 retval;
430 u32 resulting_feature_bitmap;
431};
432
Pavel Kotucekadec5872017-01-25 08:50:53 +0100433/** \brief L2 interface vlan tag rewrite configure request
434 @param client_index - opaque cookie to identify the sender
435 @param context - sender context, to match reply w/ request
436 @param sw_if_index - interface the operation is applied to
437 @param vtr_op - Choose from l2_vtr_op_t enum values
438 @param push_dot1q - first pushed flag dot1q id set, else dot1ad
439 @param tag1 - Needed for any push or translate vtr op
440 @param tag2 - Needed for any push 2 or translate x-2 vtr ops
441*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400442autoreply define l2_interface_vlan_tag_rewrite
Pavel Kotucekadec5872017-01-25 08:50:53 +0100443{
444 u32 client_index;
445 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200446 vl_api_interface_index_t sw_if_index;
Pavel Kotucekadec5872017-01-25 08:50:53 +0100447 u32 vtr_op;
448 u32 push_dot1q; // ethertype of first pushed tag is dot1q/dot1ad
449 u32 tag1; // first pushed tag
450 u32 tag2; // second pushed tag
451};
452
Pavel Kotucekadec5872017-01-25 08:50:53 +0100453/** \brief L2 interface pbb tag rewrite configure request
454 @param client_index - opaque cookie to identify the sender
455 @param context - sender context, to match reply w/ request
456 @param sw_if_index - interface the operation is applied to
457 @param vtr_op - Choose from l2_vtr_op_t enum values
458 @param inner_tag - needed for translate_qinq vtr op only
Jakub Grajciar145e3302019-10-24 13:52:42 +0200459 @param outer_tag - needed for translate_qinq vtr op only
Pavel Kotucekadec5872017-01-25 08:50:53 +0100460 @param b_dmac - B-tag remote mac address, needed for any push or translate_qinq vtr op
461 @param b_smac - B-tag local mac address, needed for any push or translate qinq vtr op
462 @param b_vlanid - B-tag vlanid, needed for any push or translate qinq vtr op
463 @param i_sid - I-tag service id, needed for any push or translate qinq vtr op
464*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400465autoreply define l2_interface_pbb_tag_rewrite
Pavel Kotucekadec5872017-01-25 08:50:53 +0100466{
467 u32 client_index;
468 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200469 vl_api_interface_index_t sw_if_index;
Pavel Kotucekadec5872017-01-25 08:50:53 +0100470 u32 vtr_op;
471 u16 outer_tag;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200472 vl_api_mac_address_t b_dmac;
473 vl_api_mac_address_t b_smac;
Pavel Kotucekadec5872017-01-25 08:50:53 +0100474 u16 b_vlanid;
475 u32 i_sid;
476};
477
Neale Rannsb8d44812017-11-10 06:53:54 -0800478/** \brief L2 interface patch add / del request
479 @param client_index - opaque cookie to identify the sender
480 @param context - sender context, to match reply w/ request
Jakub Grajciar145e3302019-10-24 13:52:42 +0200481 @param rx_sw_if_index - receive side interface
Neale Rannsb8d44812017-11-10 06:53:54 -0800482 @param tx_sw_if_index - transmit side interface
483 @param is_add - if non-zero set up the interface patch, else remove it
484*/
485autoreply define l2_patch_add_del
486{
487 u32 client_index;
488 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200489 vl_api_interface_index_t rx_sw_if_index;
490 vl_api_interface_index_t tx_sw_if_index;
491 bool is_add [default=true];
Neale Rannsb8d44812017-11-10 06:53:54 -0800492};
493
494/** \brief Set L2 XConnect between two interfaces request
495 @param client_index - opaque cookie to identify the sender
496 @param context - sender context, to match reply w/ request
497 @param rx_sw_if_index - Receive interface index
498 @param tx_sw_if_index - Transmit interface index
499 @param enable - enable xconnect if not 0, else set to L3 mode
500*/
501autoreply define sw_interface_set_l2_xconnect
502{
503 u32 client_index;
504 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200505 vl_api_interface_index_t rx_sw_if_index;
506 vl_api_interface_index_t tx_sw_if_index;
507 bool enable [default=true];
Neale Rannsb8d44812017-11-10 06:53:54 -0800508};
509
Neale Rannsb4743802018-09-05 09:13:57 -0700510/**
511 * @brief An enumeration of the type of ports that can be added
512 * to a bridge domain
513 */
514enum l2_port_type
515{
516 /* a 'normal' interface, i.e. not BVI or UU-Flood */
517 L2_API_PORT_TYPE_NORMAL = 0,
518 /* a BVI interface in the BD */
519 L2_API_PORT_TYPE_BVI = 1,
520 /* The interface on which to forward unknown unicast packets
521 * If this is not set for a BD then UU is flooded */
522 L2_API_PORT_TYPE_UU_FWD = 2,
523};
524
Neale Rannsb8d44812017-11-10 06:53:54 -0800525/** \brief Interface bridge mode request
526 @param client_index - opaque cookie to identify the sender
527 @param context - sender context, to match reply w/ request
528 @param rx_sw_if_index - the interface
529 @param bd_id - bridge domain id
Yichen Wang0a4e0062018-10-01 11:15:25 -0700530 @param port_type - port_mode, see #l2_port_type
Yichen Wang5c7c49d2018-09-18 17:32:29 -0700531 @param shg - Split horizon group, for bridge mode only
Neale Rannsb8d44812017-11-10 06:53:54 -0800532 @param enable - Enable beige mode if not 0, else set to L3 mode
533*/
Neale Rannsb4743802018-09-05 09:13:57 -0700534
Neale Rannsb8d44812017-11-10 06:53:54 -0800535autoreply define sw_interface_set_l2_bridge
536{
537 u32 client_index;
538 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200539 vl_api_interface_index_t rx_sw_if_index;
Neale Rannsb8d44812017-11-10 06:53:54 -0800540 u32 bd_id;
Neale Rannsb4743802018-09-05 09:13:57 -0700541 vl_api_l2_port_type_t port_type;
Neale Rannsb8d44812017-11-10 06:53:54 -0800542 u8 shg;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200543 bool enable [default=true];
Neale Rannsb8d44812017-11-10 06:53:54 -0800544};
545
546/** \brief Set bridge domain ip to mac entry request
547 @param client_index - opaque cookie to identify the sender
548 @param context - sender context, to match reply w/ request
549 @param bd_id - the bridge domain to set the flags for
550 @param is_add - if non-zero, add the entry, else clear it
Igor Mikhailov (imichail)54bc5e42019-05-08 16:01:01 -0700551 @param ip - ipv4 or ipv6 address
552 @param mac - MAC address
Neale Rannsb8d44812017-11-10 06:53:54 -0800553*/
Neale Rannsbc764c82019-06-19 07:07:13 -0700554
555typedef bd_ip_mac
556{
557 u32 bd_id;
558 vl_api_address_t ip;
559 vl_api_mac_address_t mac;
560};
561
Neale Rannsb8d44812017-11-10 06:53:54 -0800562autoreply define bd_ip_mac_add_del
563{
564 u32 client_index;
565 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200566 bool is_add [default=true];
Neale Rannsbc764c82019-06-19 07:07:13 -0700567 vl_api_bd_ip_mac_t entry;
Neale Rannsb8d44812017-11-10 06:53:54 -0800568};
569
John Loe26c81f2019-01-07 15:16:33 -0500570/** \brief Flush bridge domain IP to MAC entries
571 @param client_index - opaque cookie to identify the sender
572 @param bd_id - bridge domain identifier
573*/
574autoreply define bd_ip_mac_flush
575{
576 u32 client_index;
577 u32 context;
578 u32 bd_id;
579};
580
Mohsin Kazmi5d82d2f2018-08-13 19:17:54 +0200581/** \brief bridge domain IP to MAC entry details structure
582 @param bd_id - bridge domain table id
583 @param is_ipv6 - if non-zero, ipv6 address, else ipv4 address
584 @param ip_address - ipv4 or ipv6 address
585 @param mac_address - MAC address
586*/
587define bd_ip_mac_details
588{
589 u32 context;
Neale Rannsbc764c82019-06-19 07:07:13 -0700590 vl_api_bd_ip_mac_t entry;
Mohsin Kazmi5d82d2f2018-08-13 19:17:54 +0200591};
592
593/** \brief Dump bridge domain IP to MAC entries
594 @param client_index - opaque cookie to identify the sender
595 @param bd_id - bridge domain identifier
596*/
597define bd_ip_mac_dump
598{
599 u32 client_index;
600 u32 context;
601 u32 bd_id;
602};
603
Neale Rannsb8d44812017-11-10 06:53:54 -0800604/** \brief L2 interface ethernet flow point filtering enable/disable request
605 @param client_index - opaque cookie to identify the sender
606 @param context - sender context, to match reply w/ request
607 @param sw_if_index - interface to enable/disable filtering on
608 @param enable_disable - if non-zero enable filtering, else disable
609*/
610autoreply define l2_interface_efp_filter
611{
612 u32 client_index;
613 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200614 vl_api_interface_index_t sw_if_index;
615 bool enable_disable [default=true];
Neale Rannsb8d44812017-11-10 06:53:54 -0800616};
617
618/** \brief Interface set vpath request
619 @param client_index - opaque cookie to identify the sender
620 @param context - sender context, to match reply w/ request
621 @param sw_if_index - interface used to reach neighbor
622 @param enable - if non-zero enable, else disable
623*/
624autoreply define sw_interface_set_vpath
625{
626 u32 client_index;
627 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200628 vl_api_interface_index_t sw_if_index;
629 bool enable [default=0xffffffff];
Neale Rannsb8d44812017-11-10 06:53:54 -0800630};
631
Neale Ranns192b13f2019-03-15 02:16:20 -0700632/** \brief Create BVI interface instance request
633 @param client_index - opaque cookie to identify the sender
634 @param context - sender context, to match reply w/ request
635 @param mac_address - mac addr to assign to the interface if none-zero
636 @param user_instance - requested instance, ~0 => dynamically allocate
637*/
638define bvi_create
639{
640 u32 client_index;
641 u32 context;
642 vl_api_mac_address_t mac;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200643 u32 user_instance [default=0xffffffff];
Neale Ranns192b13f2019-03-15 02:16:20 -0700644};
645
646/** \brief Create BVI interface instance response
647 @param context - sender context, to match reply w/ request
648 @param sw_if_index - sw index of the interface that was created
649 @param retval - return code for the request
650*/
651define bvi_create_reply
652{
653 u32 context;
654 i32 retval;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200655 vl_api_interface_index_t sw_if_index;
Neale Ranns192b13f2019-03-15 02:16:20 -0700656};
657
658/** \brief Delete BVI interface request
659 @param client_index - opaque cookie to identify the sender
660 @param context - sender context, to match reply w/ request
661 @param sw_if_index - sw index of the interface that was created
662*/
663autoreply define bvi_delete
664{
665 u32 client_index;
666 u32 context;
Jakub Grajciar145e3302019-10-24 13:52:42 +0200667 vl_api_interface_index_t sw_if_index;
Neale Ranns192b13f2019-03-15 02:16:20 -0700668};
669
Paul Vinciguerrac0e94412020-04-28 01:12:04 -0400670/** \brief Register for IP4 ARP resolution event on receiving ARP reply or
Neale Rannscbe25aa2019-09-30 10:53:31 +0000671 MAC/IP info from ARP requests in L2 BDs
672 @param client_index - opaque cookie to identify the sender
673 @param context - sender context, to match reply w/ request
674 @param enable - 1 => register for events, 0 => cancel registration
675 @param pid - sender's pid
676*/
677autoreply define want_l2_arp_term_events
678{
679 u32 client_index;
680 u32 context;
681 bool enable;
682 u32 pid;
683};
684
685/** \brief Tell client about an IP4 ARP resolution event or
686 MAC/IP info from ARP requests in L2 BDs
687 @param client_index - opaque cookie to identify the sender
688 @param pid - client pid registered to receive notification
689 @param ip - IP address of new ARP term entry
690 @param sw_if_index - interface of new ARP term entry
691 @param mac - MAC address of new ARP term entry
692*/
693define l2_arp_term_event
694{
695 u32 client_index;
696 u32 pid;
697 vl_api_address_t ip;
698 vl_api_interface_index_t sw_if_index;
699 vl_api_mac_address_t mac;
700};
701
702service {
703 rpc want_l2_arp_term_events returns want_l2_arp_term_events_reply
704 events l2_arp_term_event;
705};
706
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100707/*
708 * Local Variables:
709 * eval: (c-set-style "gnu")
710 * End:
711 */