blob: 25ba70342ee37d41c4442de8065d7626f9c21789 [file] [log] [blame]
Juraj Slobodac0374232018-02-01 15:18:49 +01001option version = "1.1.0";
Dave Barach0d056e52017-09-28 15:11:16 -04002
Marek Gradzki51e59682018-03-06 10:05:44 +01003service {
4 rpc want_interface_events returns want_interface_events_reply
5 events sw_interface_event;
6};
7
Dave Barachaff70772016-10-31 11:59:07 -04008/** \brief Set flags on the interface
9 @param client_index - opaque cookie to identify the sender
10 @param context - sender context, to match reply w/ request
11 @param sw_if_index - index of the interface to set flags on
12 @param admin_up_down - set the admin state, 1 = up, 0 = down
13 @param link_up_down - Oper state sent on change event, not used in config.
Dave Barachaff70772016-10-31 11:59:07 -040014*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040015autoreply define sw_interface_set_flags
Dave Barachaff70772016-10-31 11:59:07 -040016{
17 u32 client_index;
18 u32 context;
19 u32 sw_if_index;
20 /* 1 = up, 0 = down */
21 u8 admin_up_down;
Dave Barachaff70772016-10-31 11:59:07 -040022};
23
Matus Fabiand162f3d2016-12-05 01:05:35 -080024/** \brief Set interface MTU
25 @param client_index - opaque cookie to identify the sender
26 @param context - sender context, to match reply w/ request
27 @param sw_if_index - index of the interface to set MTU on
28 @param mtu - MTU
29*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040030autoreply define sw_interface_set_mtu
Matus Fabiand162f3d2016-12-05 01:05:35 -080031{
32 u32 client_index;
33 u32 context;
34 u32 sw_if_index;
35 u16 mtu;
36};
37
Neale Rannsa07bd702017-08-07 07:53:49 -070038/** \brief Interface Event generated by want_interface_events
Neale Rannsd292ab12017-08-15 12:29:48 -070039 @param client_index - opaque cookie to identify the sender
40 @param pid - client pid registered to receive notification
Neale Rannsa07bd702017-08-07 07:53:49 -070041 @param sw_if_index - index of the interface of the event
42 @param admin_up_down - The administrative state; 1 = up, 0 = down
43 @param link_up_down - The operational state; 1 = up, 0 = down
44 @param deleted - interface was deleted
45*/
46define sw_interface_event
47{
Neale Rannsd292ab12017-08-15 12:29:48 -070048 u32 client_index;
49 u32 pid;
Neale Rannsa07bd702017-08-07 07:53:49 -070050 u32 sw_if_index;
51 u8 admin_up_down;
52 u8 link_up_down;
53 u8 deleted;
54};
55
Dave Barach6d963c22016-12-05 09:50:05 -050056/** \brief Register for interface events
57 @param client_index - opaque cookie to identify the sender
58 @param context - sender context, to match reply w/ request
59 @param enable_disable - 1 => register for events, 0 => cancel registration
60 @param pid - sender's pid
61*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040062autoreply define want_interface_events
Dave Barach6d963c22016-12-05 09:50:05 -050063{
64 u32 client_index;
65 u32 context;
66 u32 enable_disable;
67 u32 pid;
68};
69
Dave Barach6d963c22016-12-05 09:50:05 -050070/** \brief Interface details structure (fix this)
71 @param sw_if_index - index of the interface
72 @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index
73 @param l2_address_length - length of the interface's l2 address
74 @param pid - the interface's l2 address
75 @param interface_name - name of the interface
76 @param link_duplex - 1 if half duplex, 2 if full duplex
77 @param link_speed - 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G
Pavel Kotucek65e84572017-01-16 17:01:56 +010078 @param link_MTU - max. transmittion unit
Dave Barach6d963c22016-12-05 09:50:05 -050079 @param sub_if_id - A number 0-N to uniquely identify this subif on super if
Pavel Kotucek65e84572017-01-16 17:01:56 +010080 @param sub_dot1ad - 0 = dot1q, 1 = dot1ad
81 @param sub_dot1ah - 1 = dot1ah, 0 = otherwise
Dave Barach6d963c22016-12-05 09:50:05 -050082 @param sub_number_of_tags - Number of tags (0 - 2)
83 @param sub_outer_vlan_id
84 @param sub_inner_vlan_id
85 @param sub_exact_match
86 @param sub_default
87 @param sub_outer_vlan_id_any
88 @param sub_inner_vlan_id_any
89 @param vtr_op - vlan tag rewrite operation
90 @param vtr_push_dot1q
91 @param vtr_tag1
92 @param vtr_tag2
Pavel Kotucek65e84572017-01-16 17:01:56 +010093 @param pbb_outer_tag - translate pbb s-tag
94 @param pbb_b_dmac[6] - B-tag remote mac address
95 @param pbb_b_smac[6] - B-tag local mac address
96 @param pbb_b_vlanid - B-tag vlanid
97 @param pbb_i_sid - I-tag service id
Dave Barach6d963c22016-12-05 09:50:05 -050098*/
99define sw_interface_details
100{
101 u32 context;
102 u32 sw_if_index;
103
104 /* index of sup interface (e.g. hw interface).
105 equal to sw_if_index for super hw interface. */
106 u32 sup_sw_if_index;
107
108 /* Layer 2 address, if applicable */
109 u32 l2_address_length;
110 u8 l2_address[8];
111
112 /* Interface name */
113 u8 interface_name[64];
114
115 /* 1 = up, 0 = down */
116 u8 admin_up_down;
117 u8 link_up_down;
118
119 /* 1 = half duplex, 2 = full duplex */
120 u8 link_duplex;
121
122 /* 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G */
123 u8 link_speed;
124
125 /* MTU */
126 u16 link_mtu;
127
128 /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface */
129 u32 sub_id;
130
131 /* 0 = dot1q, 1=dot1ad */
132 u8 sub_dot1ad;
Pavel Kotucek65e84572017-01-16 17:01:56 +0100133 /* 1 = dot1h, 1=otherwise */
134 u8 sub_dot1ah;
Dave Barach6d963c22016-12-05 09:50:05 -0500135
136 /* Number of tags 0-2 */
137 u8 sub_number_of_tags;
138 u16 sub_outer_vlan_id;
139 u16 sub_inner_vlan_id;
140 u8 sub_exact_match;
141 u8 sub_default;
142 u8 sub_outer_vlan_id_any;
143 u8 sub_inner_vlan_id_any;
144
145 /* vlan tag rewrite state */
146 u32 vtr_op;
147 u32 vtr_push_dot1q; // ethertype of first pushed tag is dot1q/dot1ad
148 u32 vtr_tag1; // first pushed tag
149 u32 vtr_tag2; // second pushed tag
150 u8 tag[64];
Pavel Kotucek65e84572017-01-16 17:01:56 +0100151
152 /* pbb tag rewrite info */
153 u16 outer_tag;
154 u8 b_dmac[6];
155 u8 b_smac[6];
156 u16 b_vlanid;
157 u32 i_sid;
Dave Barach6d963c22016-12-05 09:50:05 -0500158};
159
160/* works */
161define sw_interface_dump
162{
163 u32 client_index;
164 u32 context;
165 u8 name_filter_valid;
166 u8 name_filter[49];
167};
168
169/** \brief Set or delete one or all ip addresses on a specified interface
170 @param client_index - opaque cookie to identify the sender
171 @param context - sender context, to match reply w/ request
172 @param sw_if_index - index of the interface to add/del addresses
173 @param is_add - add address if non-zero, else delete
174 @param is_ipv6 - if non-zero the address is ipv6, else ipv4
175 @param del_all - if non-zero delete all addresses on the interface
176 @param address_length - address length in bytes, 4 for ip4, 16 for ip6
177 @param address - array of address bytes
178*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400179autoreply define sw_interface_add_del_address
Dave Barach6d963c22016-12-05 09:50:05 -0500180{
181 u32 client_index;
182 u32 context;
183 u32 sw_if_index;
184 u8 is_add;
185 u8 is_ipv6;
186 u8 del_all;
187 u8 address_length;
188 u8 address[16];
189};
190
Dave Barach6d963c22016-12-05 09:50:05 -0500191/** \brief Associate the specified interface with a fib table
192 @param client_index - opaque cookie to identify the sender
193 @param context - sender context, to match reply w/ request
194 @param sw_if_index - index of the interface
195 @param is_ipv6 - if non-zero ipv6, else ipv4
196 @param vrf_id - fib table/vrd id to associate the interface with
197*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400198autoreply define sw_interface_set_table
Dave Barach6d963c22016-12-05 09:50:05 -0500199{
200 u32 client_index;
201 u32 context;
202 u32 sw_if_index;
203 u8 is_ipv6;
204 u32 vrf_id;
205};
206
Juraj Slobodadfc19232016-12-05 13:20:37 +0100207/** \brief Get VRF id assigned to interface
208 @param client_index - opaque cookie to identify the sender
209 @param context - sender context, to match reply w/ request
210 @param sw_if_index - index of the interface
211*/
212define sw_interface_get_table
213{
214 u32 client_index;
215 u32 context;
216 u32 sw_if_index;
217 u8 is_ipv6;
218};
219
220/** \brief Reply to get_sw_interface_vrf
221 @param context - sender context which was passed in the request
222 @param vrf_id - VRF id assigned to the interface
223*/
224define sw_interface_get_table_reply
225{
226 u32 context;
227 i32 retval;
228 u32 vrf_id;
229};
230
Aloys Augustinee551982017-02-17 14:55:29 +0100231typeonly manual_print manual_endian define vlib_counter
232{
233 u64 packets; /**< packet counter */
234 u64 bytes; /**< byte counter */
235};
236
Keith Burns (alagalah)831fb592017-09-12 15:12:17 -0700237/** \brief Combined interface counter data type for vnet_interface_combined_counters
238 @param sw_if_index - interface indexes for counters
239 @param rx_packets - received packet count
240 @param rx_bytes - received byte count
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700241 @param rx_unicast_packets - received unicast packet count
242 @param rx_unicast_bytes - received unicast byte count
243 @param rx_multicast_packets - received multicast packet count
244 @param rx_multicast_bytes - received multicast byte count
245 @param rx_broadcast_packets - received broadcast packet count
246 @param rx_broadcast_bytes - received broadcast byte count
Keith Burns (alagalah)831fb592017-09-12 15:12:17 -0700247 @param tx_packets - transmitted packet count
248 @param tx_bytes - transmitted byte count
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700249 @param tx_unicast_packets - transmitted unicast packet count
250 @param tx_unicast_bytes - transmitted unicast byte count
251 @param tx_multicast_packets - transmitted multicast packet count
252 @param tx_multicast_bytes - transmitted multicast byte count
253 @param tx_broadcast_packets - transmitted broadcast packet count
254 @param tx_broadcast_bytes - transmitted broadcast byte count
Keith Burns (alagalah)831fb592017-09-12 15:12:17 -0700255
256*/
257typeonly manual_print manual_endian define vnet_combined_counter
258{
259 u32 sw_if_index;
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700260 u64 rx_packets; /**< packet counter */
261 u64 rx_bytes; /**< byte counter */
262 u64 rx_unicast_packets; /**< packet counter */
263 u64 rx_unicast_bytes; /**< byte counter */
264 u64 rx_multicast_packets; /**< packet counter */
265 u64 rx_multicast_bytes; /**< byte counter */
266 u64 rx_broadcast_packets; /**< packet counter */
267 u64 rx_broadcast_bytes; /**< byte counter */
268 u64 tx_packets; /**< packet counter */
269 u64 tx_bytes; /**< byte counter */
270 u64 tx_unicast_packets; /**< packet counter */
271 u64 tx_unicast_bytes; /**< byte counter */
272 u64 tx_multicast_packets; /**< packet counter */
273 u64 tx_multicast_bytes; /**< byte counter */
274 u64 tx_broadcast_packets; /**< packet counter */
275 u64 tx_broadcast_bytes; /**< byte counter */
Keith Burns (alagalah)831fb592017-09-12 15:12:17 -0700276};
277
278/** \brief Simple interface counter data type for vnet_interface_simple_counters
279 @param sw_if_index - interface indexes for counters
280 @param drop - RX or TX drops due to buffer starvation
281 @param punt - used with VNET "punt" disposition
282 @param rx_ip4 - received IP4 packets
283 @param rx_ip6 - received IP6 packets
284 @param rx_no_buffer - no RX buffers available
285 @param rx_miss - receive misses
286 @param rx_error - receive errors
287 @param tx_error - transmit errors
288 @param rx_mpls - received MPLS packet
289
290*/
291typeonly manual_print manual_endian define vnet_simple_counter
292{
293 u32 sw_if_index;
294 u64 drop;
295 u64 punt;
296 u64 rx_ip4;
297 u64 rx_ip6;
298 u64 rx_no_buffer;
299 u64 rx_miss;
300 u64 rx_error;
301 u64 tx_error;
302 u64 rx_mpls;
303};
304
Dave Barach6d963c22016-12-05 09:50:05 -0500305/** \brief Set unnumbered interface add / del request
306 @param client_index - opaque cookie to identify the sender
307 @param context - sender context, to match reply w/ request
308 @param sw_if_index - interface with an IP address
309 @param unnumbered_sw_if_index - interface which will use the address
310 @param is_add - if non-zero set the association, else unset it
311*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400312autoreply define sw_interface_set_unnumbered
Dave Barach6d963c22016-12-05 09:50:05 -0500313{
314 u32 client_index;
315 u32 context;
316 u32 sw_if_index; /* use this intfc address */
317 u32 unnumbered_sw_if_index; /* on this interface */
318 u8 is_add;
319};
320
Dave Barach6d963c22016-12-05 09:50:05 -0500321/** \brief Clear interface statistics
322 @param client_index - opaque cookie to identify the sender
323 @param context - sender context, to match reply w/ request
324 @param sw_if_index - index of the interface to clear statistics
325*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400326autoreply define sw_interface_clear_stats
Dave Barach6d963c22016-12-05 09:50:05 -0500327{
328 u32 client_index;
329 u32 context;
330 u32 sw_if_index;
331};
332
Dave Barach6d963c22016-12-05 09:50:05 -0500333/** \brief Set / clear software interface tag
334 @param client_index - opaque cookie to identify the sender
335 @param context - sender context, to match reply w/ request
336 @param sw_if_index - the interface
337 @param add_del - 1 = add, 0 = delete
338 @param tag - an ascii tag
339*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400340autoreply define sw_interface_tag_add_del
Dave Barach6d963c22016-12-05 09:50:05 -0500341{
342 u32 client_index;
343 u32 context;
344 u8 is_add;
345 u32 sw_if_index;
346 u8 tag[64];
347};
348
Jon Loeliger10c273b2017-03-30 08:39:33 -0500349/** \brief Set an interface's MAC address
350 @param client_index - opaque cookie to identify the sender
351 @param context - sender context, to match reply w/ request
352 @param sw_if_index - the interface whose MAC will be set
353 @param mac_addr - the new MAC address
354*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400355autoreply define sw_interface_set_mac_address
Jon Loeliger10c273b2017-03-30 08:39:33 -0500356{
357 u32 client_index;
358 u32 context;
359 u32 sw_if_index;
360 u8 mac_address[6];
361};
362
Juraj Slobodac0374232018-02-01 15:18:49 +0100363/** \brief Get interface's MAC address
364 @param client_index - opaque cookie to identify the sender
365 @param context - sender context, to match reply w/ request
366 @param sw_if_index - the interface whose MAC will be returned
367*/
368define sw_interface_get_mac_address
369{
370 u32 client_index;
371 u32 context;
372 u32 sw_if_index;
373};
374
375/** \brief Reply for get interface's MAC address request
376 @param context - returned sender context, to match reply w/ request
377 @param retval - return code
378 @param mac_addr - returned interface's MAC address
379*/
380define sw_interface_get_mac_address_reply
381{
382 u32 context;
383 i32 retval;
384 u8 mac_address[6];
385};
386
Stevenad8015b2017-10-29 22:10:46 -0700387/** \brief Set an interface's rx-mode
388 @param client_index - opaque cookie to identify the sender
389 @param context - sender context, to match reply w/ request
390 @param sw_if_index - the interface whose rx-mode will be set
391 @param queue_id_valid - 1 = the queue_id field is valid. 0 means all
392 queue_id's
393 @param queue_id - the queue number whose rx-mode will be set. Only valid
394 if queue_id_valid is 1
395 @param mode - polling=1, interrupt=2, adaptive=3
396*/
397autoreply define sw_interface_set_rx_mode
398{
399 u32 client_index;
400 u32 context;
401 u32 sw_if_index;
402 u8 queue_id_valid;
403 u32 queue_id;
404 u8 mode;
405};
406
Neale Rannsb8d44812017-11-10 06:53:54 -0800407/* Gross kludge, DGMS */
408autoreply define interface_name_renumber
409{
410 u32 client_index;
411 u32 context;
412 u32 sw_if_index;
413 u32 new_show_dev_instance;
414};
415
416define create_subif
417{
418 u32 client_index;
419 u32 context;
420 u32 sw_if_index;
421 u32 sub_id;
422
423 /* These fields map directly onto the subif template */
424 u8 no_tags;
425 u8 one_tag;
426 u8 two_tags;
427 u8 dot1ad; // 0 = dot1q, 1=dot1ad
428 u8 exact_match;
429 u8 default_sub;
430 u8 outer_vlan_id_any;
431 u8 inner_vlan_id_any;
432 u16 outer_vlan_id;
433 u16 inner_vlan_id;
434};
435
436define create_subif_reply
437{
438 u32 context;
439 i32 retval;
440 u32 sw_if_index;
441};
442
443/** \brief Create a new subinterface with the given vlan id
444 @param client_index - opaque cookie to identify the sender
445 @param context - sender context, to match reply w/ request
446 @param sw_if_index - software index of the new vlan's parent interface
447 @param vlan_id - vlan tag of the new interface
448*/
449define create_vlan_subif
450{
451 u32 client_index;
452 u32 context;
453 u32 sw_if_index;
454 u32 vlan_id;
455};
456
457/** \brief Reply for the vlan subinterface create request
458 @param context - returned sender context, to match reply w/ request
459 @param retval - return code
460 @param sw_if_index - software index allocated for the new subinterface
461*/
462define create_vlan_subif_reply
463{
464 u32 context;
465 i32 retval;
466 u32 sw_if_index;
467};
468
469/** \brief Delete sub interface request
470 @param client_index - opaque cookie to identify the sender
471 @param context - sender context, to match reply w/ request
472 @param sw_if_index - sw index of the interface that was created by create_subif
473*/
474autoreply define delete_subif {
475 u32 client_index;
476 u32 context;
477 u32 sw_if_index;
478};
479
480/** \brief Create loopback interface request
481 @param client_index - opaque cookie to identify the sender
482 @param context - sender context, to match reply w/ request
483 @param mac_address - mac addr to assign to the interface if none-zero
484*/
485define create_loopback
486{
487 u32 client_index;
488 u32 context;
489 u8 mac_address[6];
490};
491
492/** \brief Create loopback interface response
493 @param context - sender context, to match reply w/ request
494 @param sw_if_index - sw index of the interface that was created
495 @param retval - return code for the request
496*/
497define create_loopback_reply
498{
499 u32 context;
500 i32 retval;
501 u32 sw_if_index;
502};
503
504/** \brief Create loopback interface instance request
505 @param client_index - opaque cookie to identify the sender
506 @param context - sender context, to match reply w/ request
507 @param mac_address - mac addr to assign to the interface if none-zero
508 @param is_specified - if non-0, a specific user_instance is being requested
509 @param user_instance - requested instance, ~0 => dynamically allocate
510*/
511define create_loopback_instance
512{
513 u32 client_index;
514 u32 context;
515 u8 mac_address[6];
516 u8 is_specified;
517 u32 user_instance;
518};
519
520/** \brief Create loopback interface instance response
521 @param context - sender context, to match reply w/ request
522 @param sw_if_index - sw index of the interface that was created
523 @param retval - return code for the request
524*/
525define create_loopback_instance_reply
526{
527 u32 context;
528 i32 retval;
529 u32 sw_if_index;
530};
531
532/** \brief Delete loopback interface request
533 @param client_index - opaque cookie to identify the sender
534 @param context - sender context, to match reply w/ request
535 @param sw_if_index - sw index of the interface that was created
536*/
537autoreply define delete_loopback
538{
539 u32 client_index;
540 u32 context;
541 u32 sw_if_index;
542};
543
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700544/** \brief Enable or disable detailed interface stats
545 @param client_index - opaque cookie to identify the sender
546 @param context - sender context, to match reply w/ request
Neale Ranns0cae3f72018-03-21 09:44:01 -0400547 @param sw_if_index - The interface to collect detail stats on. ~0 implies
548 all interfaces.
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700549 @param enable_disable - set to 1 to enable, 0 to disable detailed stats
550*/
551autoreply define collect_detailed_interface_stats
552{
553 u32 client_index;
554 u32 context;
Neale Ranns0cae3f72018-03-21 09:44:01 -0400555 u32 sw_if_index;
556 u8 enable_disable;
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700557};
558
Dave Barach6d963c22016-12-05 09:50:05 -0500559/*
560 * Local Variables:
561 * eval: (c-set-style "gnu")
562 * End:
563 */