Ole Troan | 53fffa1 | 2018-11-13 12:36:56 +0100 | [diff] [blame] | 1 | /* Hey Emacs use -*- mode: C -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2018 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 | |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 17 | option version = "3.2.0"; |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 18 | |
Ole Troan | 53fffa1 | 2018-11-13 12:36:56 +0100 | [diff] [blame] | 19 | import "vnet/interface_types.api"; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 20 | import "vnet/ethernet/ethernet_types.api"; |
| 21 | import "vnet/ip/ip_types.api"; |
Ole Troan | 53fffa1 | 2018-11-13 12:36:56 +0100 | [diff] [blame] | 22 | |
Marek Gradzki | 51e5968 | 2018-03-06 10:05:44 +0100 | [diff] [blame] | 23 | service { |
| 24 | rpc want_interface_events returns want_interface_events_reply |
| 25 | events sw_interface_event; |
| 26 | }; |
| 27 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 28 | /** \brief Set flags on the interface |
| 29 | @param client_index - opaque cookie to identify the sender |
| 30 | @param context - sender context, to match reply w/ request |
| 31 | @param sw_if_index - index of the interface to set flags on |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 32 | @param flags - interface_status flags |
| 33 | (only IF_STATUS_API_FLAG_ADMIN_UP used in config) |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 34 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 35 | autoreply define sw_interface_set_flags |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 36 | { |
| 37 | u32 client_index; |
| 38 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 39 | vl_api_interface_index_t sw_if_index; |
| 40 | vl_api_if_status_flags_t flags; |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 41 | }; |
| 42 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 43 | /** \brief Set interface physical MTU |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 44 | @param client_index - opaque cookie to identify the sender |
| 45 | @param context - sender context, to match reply w/ request |
| 46 | @param sw_if_index - index of the interface to set MTU on |
| 47 | @param mtu - MTU |
| 48 | */ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 49 | autoreply define hw_interface_set_mtu |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 50 | { |
| 51 | u32 client_index; |
| 52 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 53 | vl_api_interface_index_t sw_if_index; |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 54 | u16 mtu; |
| 55 | }; |
| 56 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 57 | /** \brief Set interface L3 MTU */ |
| 58 | autoreply define sw_interface_set_mtu |
| 59 | { |
| 60 | u32 client_index; |
| 61 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 62 | vl_api_interface_index_t sw_if_index; |
| 63 | u32 mtu[4]; /* vl_api_mtu_proto_t 0 - L3, 1 - IP4, 2 - IP6, 3 - MPLS */ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 66 | /** \brief Set IP4 directed broadcast |
| 67 | The directed broadcast enabled a packet sent to the interface's |
| 68 | subnet address will be broadcast on the interface |
| 69 | @param sw_if_index |
| 70 | @param enable |
| 71 | */ |
| 72 | autoreply define sw_interface_set_ip_directed_broadcast |
| 73 | { |
| 74 | u32 client_index; |
| 75 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 76 | vl_api_interface_index_t sw_if_index; |
| 77 | bool enable; |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 80 | /** \brief Interface Event generated by want_interface_events |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 81 | @param client_index - opaque cookie to identify the sender |
| 82 | @param pid - client pid registered to receive notification |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 83 | @param sw_if_index - index of the interface of the event |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 84 | @param flags - interface_status flags |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 85 | @param deleted - interface was deleted |
| 86 | */ |
| 87 | define sw_interface_event |
| 88 | { |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 89 | u32 client_index; |
| 90 | u32 pid; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 91 | vl_api_interface_index_t sw_if_index; |
| 92 | vl_api_if_status_flags_t flags; |
| 93 | bool deleted; |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 94 | }; |
| 95 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 96 | /** \brief Register for interface events |
| 97 | @param client_index - opaque cookie to identify the sender |
| 98 | @param context - sender context, to match reply w/ request |
| 99 | @param enable_disable - 1 => register for events, 0 => cancel registration |
| 100 | @param pid - sender's pid |
| 101 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 102 | autoreply define want_interface_events |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 103 | { |
| 104 | u32 client_index; |
| 105 | u32 context; |
| 106 | u32 enable_disable; |
| 107 | u32 pid; |
| 108 | }; |
| 109 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 110 | /** \brief Interface details structure (fix this) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 111 | @param sw_if_index - index of the interface |
Vratko Polak | 4a72406 | 2019-04-17 20:02:56 +0200 | [diff] [blame] | 112 | @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index |
Paul Vinciguerra | 9a29f79 | 2019-04-30 20:44:25 -0700 | [diff] [blame] | 113 | @param l2_address - the interface's l2 address |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 114 | @param flags - interface_status flags |
| 115 | @param type - interface type |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 116 | @param link_duplex - 1 if half duplex, 2 if full duplex |
Damjan Marion | 5100aa9 | 2018-11-08 15:30:16 +0100 | [diff] [blame] | 117 | @param link_speed - value in kbps |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 118 | @param link_MTU - max. transmission unit |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 119 | @param sub_id - A number 0-N to uniquely identify this subif on super if |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 120 | @param sub_number_of_tags - Number of tags (0 - 2) |
| 121 | @param sub_outer_vlan_id |
| 122 | @param sub_inner_vlan_id |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 123 | @param sub_if_flags - sub interface flags |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 124 | @param vtr_op - vlan tag rewrite operation |
| 125 | @param vtr_push_dot1q |
| 126 | @param vtr_tag1 |
| 127 | @param vtr_tag2 |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 128 | @param pbb_outer_tag - translate pbb s-tag |
| 129 | @param pbb_b_dmac[6] - B-tag remote mac address |
| 130 | @param pbb_b_smac[6] - B-tag local mac address |
| 131 | @param pbb_b_vlanid - B-tag vlanid |
| 132 | @param pbb_i_sid - I-tag service id |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 133 | @param interface_name - name of the interface |
Mohsin Kazmi | de312c2 | 2019-09-27 13:44:28 +0200 | [diff] [blame] | 134 | @param interface_dev_type - device type of the interface |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 135 | @param tag - an ascii tag |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 136 | */ |
| 137 | define sw_interface_details |
| 138 | { |
| 139 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 140 | vl_api_interface_index_t sw_if_index; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 141 | |
| 142 | /* index of sup interface (e.g. hw interface). |
| 143 | equal to sw_if_index for super hw interface. */ |
| 144 | u32 sup_sw_if_index; |
| 145 | |
| 146 | /* Layer 2 address, if applicable */ |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 147 | vl_api_mac_address_t l2_address; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 148 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 149 | vl_api_if_status_flags_t flags; |
Ole Trøan | 3b0d7e4 | 2019-03-15 16:14:41 +0000 | [diff] [blame] | 150 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 151 | vl_api_if_type_t type; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 152 | |
| 153 | /* 1 = half duplex, 2 = full duplex */ |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 154 | vl_api_link_duplex_t link_duplex; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 155 | |
Damjan Marion | 5100aa9 | 2018-11-08 15:30:16 +0100 | [diff] [blame] | 156 | /* link speed in kbps */ |
| 157 | u32 link_speed; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 158 | |
| 159 | /* MTU */ |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 160 | u16 link_mtu; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 161 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 162 | /* Per protocol MTUs */ |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 163 | u32 mtu[4]; /* vl_api_mtu_proto_t 0 - L3, 1 - IP4, 2 - IP6, 3 - MPLS */ |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 164 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 165 | /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface */ |
| 166 | u32 sub_id; |
| 167 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 168 | /* Number of tags 0-2 */ |
| 169 | u8 sub_number_of_tags; |
| 170 | u16 sub_outer_vlan_id; |
| 171 | u16 sub_inner_vlan_id; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 172 | |
| 173 | vl_api_sub_if_flags_t sub_if_flags; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 174 | |
| 175 | /* vlan tag rewrite state */ |
| 176 | u32 vtr_op; |
| 177 | u32 vtr_push_dot1q; // ethertype of first pushed tag is dot1q/dot1ad |
| 178 | u32 vtr_tag1; // first pushed tag |
| 179 | u32 vtr_tag2; // second pushed tag |
Vratko Polak | 4a72406 | 2019-04-17 20:02:56 +0200 | [diff] [blame] | 180 | |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 181 | /* pbb tag rewrite info */ |
| 182 | u16 outer_tag; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 183 | vl_api_mac_address_t b_dmac; |
| 184 | vl_api_mac_address_t b_smac; |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 185 | u16 b_vlanid; |
| 186 | u32 i_sid; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 187 | |
| 188 | /* Interface name */ |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 189 | string interface_name[64]; |
Mohsin Kazmi | de312c2 | 2019-09-27 13:44:28 +0200 | [diff] [blame] | 190 | string interface_dev_type[64]; |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 191 | string tag[64]; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 192 | }; |
| 193 | |
Paul Vinciguerra | bb2c7b5 | 2019-03-14 09:47:29 -0700 | [diff] [blame] | 194 | /** \brief Request all or filtered subset of sw_interface_details |
| 195 | @param client_index - opaque cookie to identify the sender |
| 196 | @param context - sender context, to match reply w/ request |
Vratko Polak | b8591ac | 2019-04-23 12:26:44 +0200 | [diff] [blame] | 197 | @param sw_if_index - index of the interface to dump info on, 0 or ~0 if on all |
| 198 | TODO: Support selecting only index==0 when CSIT is ready. |
Paul Vinciguerra | bb2c7b5 | 2019-03-14 09:47:29 -0700 | [diff] [blame] | 199 | @param name_filter_valid - 1 if requesting a filtered subset of records else 0 |
Vratko Polak | b8591ac | 2019-04-23 12:26:44 +0200 | [diff] [blame] | 200 | if name filter is set as valid, sw_if_index value is ignored and all interfaces are examined |
Paul Vinciguerra | bb2c7b5 | 2019-03-14 09:47:29 -0700 | [diff] [blame] | 201 | @param name_filter - interface name substring filter. Eg. loop1 returns [loop1, loop10] |
| 202 | */ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 203 | define sw_interface_dump |
| 204 | { |
| 205 | u32 client_index; |
| 206 | u32 context; |
Paul Vinciguerra | 6407ba5 | 2019-04-04 13:22:20 -0700 | [diff] [blame] | 207 | vl_api_interface_index_t sw_if_index; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 208 | bool name_filter_valid; |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 209 | string name_filter[]; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | /** \brief Set or delete one or all ip addresses on a specified interface |
| 213 | @param client_index - opaque cookie to identify the sender |
| 214 | @param context - sender context, to match reply w/ request |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 215 | @param sw_if_index - index of the interface to add/del addresses |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 216 | @param is_add - add address if non-zero, else delete |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 217 | @param del_all - if non-zero delete all addresses on the interface |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 218 | @param prefix - address + a prefix length for the implied connected route |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 219 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 220 | autoreply define sw_interface_add_del_address |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 221 | { |
| 222 | u32 client_index; |
| 223 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 224 | vl_api_interface_index_t sw_if_index; |
| 225 | bool is_add; |
| 226 | |
| 227 | bool del_all; |
Ole Troan | 75761b9 | 2019-09-11 17:49:08 +0200 | [diff] [blame] | 228 | vl_api_address_with_prefix_t prefix; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 229 | }; |
| 230 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 231 | /** \brief Associate the specified interface with a fib table |
| 232 | @param client_index - opaque cookie to identify the sender |
| 233 | @param context - sender context, to match reply w/ request |
| 234 | @param sw_if_index - index of the interface |
| 235 | @param is_ipv6 - if non-zero ipv6, else ipv4 |
jackiechen1985 | 0ad4a43 | 2019-05-09 16:57:16 +0800 | [diff] [blame] | 236 | @param vrf_id - fib table/vrf id to associate the interface with |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 237 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 238 | autoreply define sw_interface_set_table |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 239 | { |
| 240 | u32 client_index; |
| 241 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 242 | vl_api_interface_index_t sw_if_index; |
| 243 | bool is_ipv6; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 244 | u32 vrf_id; |
| 245 | }; |
| 246 | |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 247 | /** \brief Get VRF id assigned to interface |
| 248 | @param client_index - opaque cookie to identify the sender |
| 249 | @param context - sender context, to match reply w/ request |
| 250 | @param sw_if_index - index of the interface |
| 251 | */ |
| 252 | define sw_interface_get_table |
| 253 | { |
| 254 | u32 client_index; |
| 255 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 256 | vl_api_interface_index_t sw_if_index; |
| 257 | bool is_ipv6; |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 258 | }; |
| 259 | |
| 260 | /** \brief Reply to get_sw_interface_vrf |
| 261 | @param context - sender context which was passed in the request |
| 262 | @param vrf_id - VRF id assigned to the interface |
| 263 | */ |
| 264 | define sw_interface_get_table_reply |
| 265 | { |
| 266 | u32 context; |
| 267 | i32 retval; |
| 268 | u32 vrf_id; |
| 269 | }; |
| 270 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 271 | /** \brief Set unnumbered interface add / del request |
| 272 | @param client_index - opaque cookie to identify the sender |
| 273 | @param context - sender context, to match reply w/ request |
| 274 | @param sw_if_index - interface with an IP address |
| 275 | @param unnumbered_sw_if_index - interface which will use the address |
| 276 | @param is_add - if non-zero set the association, else unset it |
| 277 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 278 | autoreply define sw_interface_set_unnumbered |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 279 | { |
| 280 | u32 client_index; |
| 281 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 282 | vl_api_interface_index_t sw_if_index; /* use this intfc address */ |
| 283 | vl_api_interface_index_t unnumbered_sw_if_index; /* on this interface */ |
| 284 | bool is_add; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 285 | }; |
| 286 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 287 | /** \brief Clear interface statistics |
| 288 | @param client_index - opaque cookie to identify the sender |
| 289 | @param context - sender context, to match reply w/ request |
| 290 | @param sw_if_index - index of the interface to clear statistics |
| 291 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 292 | autoreply define sw_interface_clear_stats |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 293 | { |
| 294 | u32 client_index; |
| 295 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 296 | vl_api_interface_index_t sw_if_index; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 297 | }; |
| 298 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 299 | /** \brief Set / clear software interface tag |
| 300 | @param client_index - opaque cookie to identify the sender |
| 301 | @param context - sender context, to match reply w/ request |
| 302 | @param sw_if_index - the interface |
| 303 | @param add_del - 1 = add, 0 = delete |
| 304 | @param tag - an ascii tag |
| 305 | */ |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 306 | autoreply define sw_interface_tag_add_del |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 307 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 308 | u32 client_index; |
| 309 | u32 context; |
| 310 | bool is_add; |
| 311 | vl_api_interface_index_t sw_if_index; |
Ole Troan | e5ff5a3 | 2019-08-23 22:55:18 +0200 | [diff] [blame] | 312 | string tag[64]; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 313 | }; |
| 314 | |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 315 | /** \brief Add or delete a secondary MAC address on an interface |
| 316 | @param client_index - opaque cookie to identify the sender |
| 317 | @param context - sender context, to match reply w/ request |
| 318 | @param sw_if_index - the interface whose MAC will be set |
| 319 | @param mac_addr - the new MAC address |
| 320 | @param is_add - 0 to delete, != 0 to add |
| 321 | */ |
| 322 | autoreply define sw_interface_add_del_mac_address |
| 323 | { |
| 324 | u32 client_index; |
| 325 | u32 context; |
| 326 | u32 sw_if_index; |
| 327 | vl_api_mac_address_t addr; |
| 328 | u8 is_add; |
| 329 | }; |
| 330 | |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 331 | /** \brief Set an interface's MAC address |
| 332 | @param client_index - opaque cookie to identify the sender |
| 333 | @param context - sender context, to match reply w/ request |
| 334 | @param sw_if_index - the interface whose MAC will be set |
| 335 | @param mac_addr - the new MAC address |
| 336 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 337 | autoreply define sw_interface_set_mac_address |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 338 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 339 | u32 client_index; |
| 340 | u32 context; |
| 341 | vl_api_interface_index_t sw_if_index; |
| 342 | vl_api_mac_address_t mac_address; |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 343 | }; |
| 344 | |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 345 | /** \brief Get interface's MAC address |
| 346 | @param client_index - opaque cookie to identify the sender |
| 347 | @param context - sender context, to match reply w/ request |
| 348 | @param sw_if_index - the interface whose MAC will be returned |
| 349 | */ |
| 350 | define sw_interface_get_mac_address |
| 351 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 352 | u32 client_index; |
| 353 | u32 context; |
| 354 | vl_api_interface_index_t sw_if_index; |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 355 | }; |
| 356 | |
| 357 | /** \brief Reply for get interface's MAC address request |
| 358 | @param context - returned sender context, to match reply w/ request |
| 359 | @param retval - return code |
| 360 | @param mac_addr - returned interface's MAC address |
| 361 | */ |
| 362 | define sw_interface_get_mac_address_reply |
| 363 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 364 | u32 context; |
| 365 | i32 retval; |
| 366 | vl_api_mac_address_t mac_address; |
Juraj Sloboda | c037423 | 2018-02-01 15:18:49 +0100 | [diff] [blame] | 367 | }; |
| 368 | |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 369 | /** \brief Set an interface's rx-mode |
| 370 | @param client_index - opaque cookie to identify the sender |
| 371 | @param context - sender context, to match reply w/ request |
| 372 | @param sw_if_index - the interface whose rx-mode will be set |
| 373 | @param queue_id_valid - 1 = the queue_id field is valid. 0 means all |
| 374 | queue_id's |
| 375 | @param queue_id - the queue number whose rx-mode will be set. Only valid |
| 376 | if queue_id_valid is 1 |
| 377 | @param mode - polling=1, interrupt=2, adaptive=3 |
| 378 | */ |
| 379 | autoreply define sw_interface_set_rx_mode |
| 380 | { |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 381 | u32 client_index; |
| 382 | u32 context; |
| 383 | vl_api_interface_index_t sw_if_index; |
| 384 | bool queue_id_valid; |
| 385 | u32 queue_id; |
| 386 | vl_api_rx_mode_t mode; |
Steven | ad8015b | 2017-10-29 22:10:46 -0700 | [diff] [blame] | 387 | }; |
| 388 | |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 389 | /** \brief Set an interface's rx-placement |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 390 | Rx-Queue placement on specific thread is operational for only hardware |
| 391 | interface. It will not set queue - thread placement for sub-interfaces, |
| 392 | p2p and pipe interfaces. |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 393 | @param client_index - opaque cookie to identify the sender |
| 394 | @param context - sender context, to match reply w/ request |
| 395 | @param sw_if_index - the interface whose rx-placement will be set |
| 396 | @param queue_id - the queue number whose rx-placement will be set. |
| 397 | @param worker_id - the worker number whom rx-placement will be at. |
| 398 | @param is_main - flag to set rx-placement to main thread |
| 399 | */ |
| 400 | autoreply define sw_interface_set_rx_placement |
| 401 | { |
| 402 | u32 client_index; |
| 403 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 404 | vl_api_interface_index_t sw_if_index; |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 405 | u32 queue_id; |
| 406 | u32 worker_id; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 407 | bool is_main; |
Mohsin Kazmi | 54f7c51 | 2018-08-23 18:28:11 +0200 | [diff] [blame] | 408 | }; |
| 409 | |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 410 | /** \brief dump the rx queue placement of interface(s) |
| 411 | @param sw_if_index - optional interface index for which queue placement to |
| 412 | be requested. sw_if_index = ~0 will dump placement information for all |
| 413 | interfaces. It will not dump information related to sub-interfaces, p2p |
| 414 | and pipe interfaces. |
| 415 | */ |
| 416 | define sw_interface_rx_placement_dump |
| 417 | { |
| 418 | u32 client_index; |
| 419 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 420 | vl_api_interface_index_t sw_if_index; |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 421 | }; |
| 422 | |
| 423 | /** \brief show the interface's queue - thread placement |
| 424 | This api is used to display the interface and queue worker |
| 425 | thread placement. One message per rx-queue per interface will |
| 426 | be sent to client. |
| 427 | Each message will contain information about rx-queue id of an |
| 428 | interface, interface index, thread on which this rx-queue is |
| 429 | placed and mode of rx-queue. |
| 430 | @param client_index - opaque cookie to identify the sender |
| 431 | @param context - sender context, to match reply w/ request |
| 432 | @param sw_if_index - the interface whose rx-placement will be dumped |
| 433 | @param queue_id - the queue id |
| 434 | @param worker_id - the worker id on which queue_id is placed, |
| 435 | worker_id = 0 means main thread. |
| 436 | @param mode - polling=1, interrupt=2, adaptive=3 |
| 437 | */ |
| 438 | define sw_interface_rx_placement_details |
| 439 | { |
| 440 | u32 client_index; |
| 441 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 442 | vl_api_interface_index_t sw_if_index; |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 443 | u32 queue_id; |
| 444 | u32 worker_id; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 445 | vl_api_rx_mode_t mode; |
Mohsin Kazmi | f0b42f4 | 2018-09-10 18:11:00 +0200 | [diff] [blame] | 446 | }; |
| 447 | |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 448 | /* Gross kludge, DGMS */ |
| 449 | autoreply define interface_name_renumber |
| 450 | { |
| 451 | u32 client_index; |
| 452 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 453 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 454 | u32 new_show_dev_instance; |
| 455 | }; |
| 456 | |
| 457 | define create_subif |
| 458 | { |
| 459 | u32 client_index; |
| 460 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 461 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 462 | u32 sub_id; |
| 463 | |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 464 | vl_api_sub_if_flags_t sub_if_flags; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 465 | u16 outer_vlan_id; |
| 466 | u16 inner_vlan_id; |
| 467 | }; |
| 468 | |
| 469 | define create_subif_reply |
| 470 | { |
| 471 | u32 context; |
| 472 | i32 retval; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 473 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 474 | }; |
| 475 | |
| 476 | /** \brief Create a new subinterface with the given vlan id |
| 477 | @param client_index - opaque cookie to identify the sender |
| 478 | @param context - sender context, to match reply w/ request |
| 479 | @param sw_if_index - software index of the new vlan's parent interface |
| 480 | @param vlan_id - vlan tag of the new interface |
| 481 | */ |
| 482 | define create_vlan_subif |
| 483 | { |
| 484 | u32 client_index; |
| 485 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 486 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 487 | u32 vlan_id; |
| 488 | }; |
| 489 | |
| 490 | /** \brief Reply for the vlan subinterface create request |
| 491 | @param context - returned sender context, to match reply w/ request |
| 492 | @param retval - return code |
| 493 | @param sw_if_index - software index allocated for the new subinterface |
| 494 | */ |
| 495 | define create_vlan_subif_reply |
| 496 | { |
| 497 | u32 context; |
| 498 | i32 retval; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 499 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 500 | }; |
| 501 | |
| 502 | /** \brief Delete sub interface request |
| 503 | @param client_index - opaque cookie to identify the sender |
| 504 | @param context - sender context, to match reply w/ request |
| 505 | @param sw_if_index - sw index of the interface that was created by create_subif |
| 506 | */ |
| 507 | autoreply define delete_subif { |
| 508 | u32 client_index; |
| 509 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 510 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 511 | }; |
| 512 | |
| 513 | /** \brief Create loopback interface request |
| 514 | @param client_index - opaque cookie to identify the sender |
| 515 | @param context - sender context, to match reply w/ request |
| 516 | @param mac_address - mac addr to assign to the interface if none-zero |
| 517 | */ |
| 518 | define create_loopback |
| 519 | { |
| 520 | u32 client_index; |
| 521 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 522 | vl_api_mac_address_t mac_address; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 523 | }; |
| 524 | |
| 525 | /** \brief Create loopback interface response |
| 526 | @param context - sender context, to match reply w/ request |
| 527 | @param sw_if_index - sw index of the interface that was created |
| 528 | @param retval - return code for the request |
| 529 | */ |
| 530 | define create_loopback_reply |
| 531 | { |
| 532 | u32 context; |
| 533 | i32 retval; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 534 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 535 | }; |
| 536 | |
| 537 | /** \brief Create loopback interface instance request |
| 538 | @param client_index - opaque cookie to identify the sender |
| 539 | @param context - sender context, to match reply w/ request |
| 540 | @param mac_address - mac addr to assign to the interface if none-zero |
| 541 | @param is_specified - if non-0, a specific user_instance is being requested |
| 542 | @param user_instance - requested instance, ~0 => dynamically allocate |
| 543 | */ |
| 544 | define create_loopback_instance |
| 545 | { |
| 546 | u32 client_index; |
| 547 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 548 | vl_api_mac_address_t mac_address; |
| 549 | bool is_specified; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 550 | u32 user_instance; |
| 551 | }; |
| 552 | |
| 553 | /** \brief Create loopback interface instance response |
| 554 | @param context - sender context, to match reply w/ request |
| 555 | @param sw_if_index - sw index of the interface that was created |
| 556 | @param retval - return code for the request |
| 557 | */ |
| 558 | define create_loopback_instance_reply |
| 559 | { |
| 560 | u32 context; |
| 561 | i32 retval; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 562 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 563 | }; |
| 564 | |
| 565 | /** \brief Delete loopback interface request |
| 566 | @param client_index - opaque cookie to identify the sender |
| 567 | @param context - sender context, to match reply w/ request |
| 568 | @param sw_if_index - sw index of the interface that was created |
| 569 | */ |
| 570 | autoreply define delete_loopback |
| 571 | { |
| 572 | u32 client_index; |
| 573 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 574 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 575 | }; |
| 576 | |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 577 | /** \brief Enable or disable detailed interface stats |
| 578 | @param client_index - opaque cookie to identify the sender |
| 579 | @param context - sender context, to match reply w/ request |
Neale Ranns | 0cae3f7 | 2018-03-21 09:44:01 -0400 | [diff] [blame] | 580 | @param sw_if_index - The interface to collect detail stats on. ~0 implies |
| 581 | all interfaces. |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 582 | @param enable_disable - set to 1 to enable, 0 to disable detailed stats |
| 583 | */ |
| 584 | autoreply define collect_detailed_interface_stats |
| 585 | { |
| 586 | u32 client_index; |
| 587 | u32 context; |
Jakub Grajciar | 053204a | 2019-03-18 13:17:53 +0100 | [diff] [blame] | 588 | vl_api_interface_index_t sw_if_index; |
| 589 | bool enable_disable; |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 590 | }; |
| 591 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 592 | /* |
| 593 | * Local Variables: |
| 594 | * eval: (c-set-style "gnu") |
| 595 | * End: |
| 596 | */ |