Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1 | /** \brief Set flags on the interface |
| 2 | @param client_index - opaque cookie to identify the sender |
| 3 | @param context - sender context, to match reply w/ request |
| 4 | @param sw_if_index - index of the interface to set flags on |
| 5 | @param admin_up_down - set the admin state, 1 = up, 0 = down |
| 6 | @param link_up_down - Oper state sent on change event, not used in config. |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 7 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 8 | autoreply define sw_interface_set_flags |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 9 | { |
| 10 | u32 client_index; |
| 11 | u32 context; |
| 12 | u32 sw_if_index; |
| 13 | /* 1 = up, 0 = down */ |
| 14 | u8 admin_up_down; |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 15 | }; |
| 16 | |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 17 | /** \brief Set interface MTU |
| 18 | @param client_index - opaque cookie to identify the sender |
| 19 | @param context - sender context, to match reply w/ request |
| 20 | @param sw_if_index - index of the interface to set MTU on |
| 21 | @param mtu - MTU |
| 22 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 23 | autoreply define sw_interface_set_mtu |
Matus Fabian | d162f3d | 2016-12-05 01:05:35 -0800 | [diff] [blame] | 24 | { |
| 25 | u32 client_index; |
| 26 | u32 context; |
| 27 | u32 sw_if_index; |
| 28 | u16 mtu; |
| 29 | }; |
| 30 | |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 31 | /** \brief Interface Event generated by want_interface_events |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 32 | @param client_index - opaque cookie to identify the sender |
| 33 | @param pid - client pid registered to receive notification |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 34 | @param sw_if_index - index of the interface of the event |
| 35 | @param admin_up_down - The administrative state; 1 = up, 0 = down |
| 36 | @param link_up_down - The operational state; 1 = up, 0 = down |
| 37 | @param deleted - interface was deleted |
| 38 | */ |
| 39 | define sw_interface_event |
| 40 | { |
Neale Ranns | d292ab1 | 2017-08-15 12:29:48 -0700 | [diff] [blame] | 41 | u32 client_index; |
| 42 | u32 pid; |
Neale Ranns | a07bd70 | 2017-08-07 07:53:49 -0700 | [diff] [blame] | 43 | u32 sw_if_index; |
| 44 | u8 admin_up_down; |
| 45 | u8 link_up_down; |
| 46 | u8 deleted; |
| 47 | }; |
| 48 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 49 | /** \brief Register for interface events |
| 50 | @param client_index - opaque cookie to identify the sender |
| 51 | @param context - sender context, to match reply w/ request |
| 52 | @param enable_disable - 1 => register for events, 0 => cancel registration |
| 53 | @param pid - sender's pid |
| 54 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 55 | autoreply define want_interface_events |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 56 | { |
| 57 | u32 client_index; |
| 58 | u32 context; |
| 59 | u32 enable_disable; |
| 60 | u32 pid; |
| 61 | }; |
| 62 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 63 | /** \brief Interface details structure (fix this) |
| 64 | @param sw_if_index - index of the interface |
| 65 | @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index |
| 66 | @param l2_address_length - length of the interface's l2 address |
| 67 | @param pid - the interface's l2 address |
| 68 | @param interface_name - name of the interface |
| 69 | @param link_duplex - 1 if half duplex, 2 if full duplex |
| 70 | @param link_speed - 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 71 | @param link_MTU - max. transmittion unit |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 72 | @param sub_if_id - A number 0-N to uniquely identify this subif on super if |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 73 | @param sub_dot1ad - 0 = dot1q, 1 = dot1ad |
| 74 | @param sub_dot1ah - 1 = dot1ah, 0 = otherwise |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 75 | @param sub_number_of_tags - Number of tags (0 - 2) |
| 76 | @param sub_outer_vlan_id |
| 77 | @param sub_inner_vlan_id |
| 78 | @param sub_exact_match |
| 79 | @param sub_default |
| 80 | @param sub_outer_vlan_id_any |
| 81 | @param sub_inner_vlan_id_any |
| 82 | @param vtr_op - vlan tag rewrite operation |
| 83 | @param vtr_push_dot1q |
| 84 | @param vtr_tag1 |
| 85 | @param vtr_tag2 |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 86 | @param pbb_outer_tag - translate pbb s-tag |
| 87 | @param pbb_b_dmac[6] - B-tag remote mac address |
| 88 | @param pbb_b_smac[6] - B-tag local mac address |
| 89 | @param pbb_b_vlanid - B-tag vlanid |
| 90 | @param pbb_i_sid - I-tag service id |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 91 | */ |
| 92 | define sw_interface_details |
| 93 | { |
| 94 | u32 context; |
| 95 | u32 sw_if_index; |
| 96 | |
| 97 | /* index of sup interface (e.g. hw interface). |
| 98 | equal to sw_if_index for super hw interface. */ |
| 99 | u32 sup_sw_if_index; |
| 100 | |
| 101 | /* Layer 2 address, if applicable */ |
| 102 | u32 l2_address_length; |
| 103 | u8 l2_address[8]; |
| 104 | |
| 105 | /* Interface name */ |
| 106 | u8 interface_name[64]; |
| 107 | |
| 108 | /* 1 = up, 0 = down */ |
| 109 | u8 admin_up_down; |
| 110 | u8 link_up_down; |
| 111 | |
| 112 | /* 1 = half duplex, 2 = full duplex */ |
| 113 | u8 link_duplex; |
| 114 | |
| 115 | /* 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G */ |
| 116 | u8 link_speed; |
| 117 | |
| 118 | /* MTU */ |
| 119 | u16 link_mtu; |
| 120 | |
| 121 | /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface */ |
| 122 | u32 sub_id; |
| 123 | |
| 124 | /* 0 = dot1q, 1=dot1ad */ |
| 125 | u8 sub_dot1ad; |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 126 | /* 1 = dot1h, 1=otherwise */ |
| 127 | u8 sub_dot1ah; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 128 | |
| 129 | /* Number of tags 0-2 */ |
| 130 | u8 sub_number_of_tags; |
| 131 | u16 sub_outer_vlan_id; |
| 132 | u16 sub_inner_vlan_id; |
| 133 | u8 sub_exact_match; |
| 134 | u8 sub_default; |
| 135 | u8 sub_outer_vlan_id_any; |
| 136 | u8 sub_inner_vlan_id_any; |
| 137 | |
| 138 | /* vlan tag rewrite state */ |
| 139 | u32 vtr_op; |
| 140 | u32 vtr_push_dot1q; // ethertype of first pushed tag is dot1q/dot1ad |
| 141 | u32 vtr_tag1; // first pushed tag |
| 142 | u32 vtr_tag2; // second pushed tag |
| 143 | u8 tag[64]; |
Pavel Kotucek | 65e8457 | 2017-01-16 17:01:56 +0100 | [diff] [blame] | 144 | |
| 145 | /* pbb tag rewrite info */ |
| 146 | u16 outer_tag; |
| 147 | u8 b_dmac[6]; |
| 148 | u8 b_smac[6]; |
| 149 | u16 b_vlanid; |
| 150 | u32 i_sid; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | /* works */ |
| 154 | define sw_interface_dump |
| 155 | { |
| 156 | u32 client_index; |
| 157 | u32 context; |
| 158 | u8 name_filter_valid; |
| 159 | u8 name_filter[49]; |
| 160 | }; |
| 161 | |
| 162 | /** \brief Set or delete one or all ip addresses on a specified interface |
| 163 | @param client_index - opaque cookie to identify the sender |
| 164 | @param context - sender context, to match reply w/ request |
| 165 | @param sw_if_index - index of the interface to add/del addresses |
| 166 | @param is_add - add address if non-zero, else delete |
| 167 | @param is_ipv6 - if non-zero the address is ipv6, else ipv4 |
| 168 | @param del_all - if non-zero delete all addresses on the interface |
| 169 | @param address_length - address length in bytes, 4 for ip4, 16 for ip6 |
| 170 | @param address - array of address bytes |
| 171 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 172 | autoreply define sw_interface_add_del_address |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 173 | { |
| 174 | u32 client_index; |
| 175 | u32 context; |
| 176 | u32 sw_if_index; |
| 177 | u8 is_add; |
| 178 | u8 is_ipv6; |
| 179 | u8 del_all; |
| 180 | u8 address_length; |
| 181 | u8 address[16]; |
| 182 | }; |
| 183 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 184 | /** \brief Associate the specified interface with a fib table |
| 185 | @param client_index - opaque cookie to identify the sender |
| 186 | @param context - sender context, to match reply w/ request |
| 187 | @param sw_if_index - index of the interface |
| 188 | @param is_ipv6 - if non-zero ipv6, else ipv4 |
| 189 | @param vrf_id - fib table/vrd id to associate the interface with |
| 190 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 191 | autoreply define sw_interface_set_table |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 192 | { |
| 193 | u32 client_index; |
| 194 | u32 context; |
| 195 | u32 sw_if_index; |
| 196 | u8 is_ipv6; |
| 197 | u32 vrf_id; |
| 198 | }; |
| 199 | |
Juraj Sloboda | dfc1923 | 2016-12-05 13:20:37 +0100 | [diff] [blame] | 200 | /** \brief Get VRF id assigned to interface |
| 201 | @param client_index - opaque cookie to identify the sender |
| 202 | @param context - sender context, to match reply w/ request |
| 203 | @param sw_if_index - index of the interface |
| 204 | */ |
| 205 | define sw_interface_get_table |
| 206 | { |
| 207 | u32 client_index; |
| 208 | u32 context; |
| 209 | u32 sw_if_index; |
| 210 | u8 is_ipv6; |
| 211 | }; |
| 212 | |
| 213 | /** \brief Reply to get_sw_interface_vrf |
| 214 | @param context - sender context which was passed in the request |
| 215 | @param vrf_id - VRF id assigned to the interface |
| 216 | */ |
| 217 | define sw_interface_get_table_reply |
| 218 | { |
| 219 | u32 context; |
| 220 | i32 retval; |
| 221 | u32 vrf_id; |
| 222 | }; |
| 223 | |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 224 | typeonly manual_print manual_endian define vlib_counter |
| 225 | { |
| 226 | u64 packets; /**< packet counter */ |
| 227 | u64 bytes; /**< byte counter */ |
| 228 | }; |
| 229 | |
Keith Burns (alagalah) | 831fb59 | 2017-09-12 15:12:17 -0700 | [diff] [blame^] | 230 | /** \brief Combined interface counter data type for vnet_interface_combined_counters |
| 231 | @param sw_if_index - interface indexes for counters |
| 232 | @param rx_packets - received packet count |
| 233 | @param rx_bytes - received byte count |
| 234 | @param tx_packets - transmitted packet count |
| 235 | @param tx_bytes - transmitted byte count |
| 236 | |
| 237 | */ |
| 238 | typeonly manual_print manual_endian define vnet_combined_counter |
| 239 | { |
| 240 | u32 sw_if_index; |
| 241 | u64 rx_packets; /**< packet counter */ |
| 242 | u64 rx_bytes; /**< byte counter */ |
| 243 | u64 tx_packets; /**< packet counter */ |
| 244 | u64 tx_bytes; /**< byte counter */ |
| 245 | }; |
| 246 | |
| 247 | /** \brief Simple interface counter data type for vnet_interface_simple_counters |
| 248 | @param sw_if_index - interface indexes for counters |
| 249 | @param drop - RX or TX drops due to buffer starvation |
| 250 | @param punt - used with VNET "punt" disposition |
| 251 | @param rx_ip4 - received IP4 packets |
| 252 | @param rx_ip6 - received IP6 packets |
| 253 | @param rx_no_buffer - no RX buffers available |
| 254 | @param rx_miss - receive misses |
| 255 | @param rx_error - receive errors |
| 256 | @param tx_error - transmit errors |
| 257 | @param rx_mpls - received MPLS packet |
| 258 | |
| 259 | */ |
| 260 | typeonly manual_print manual_endian define vnet_simple_counter |
| 261 | { |
| 262 | u32 sw_if_index; |
| 263 | u64 drop; |
| 264 | u64 punt; |
| 265 | u64 rx_ip4; |
| 266 | u64 rx_ip6; |
| 267 | u64 rx_no_buffer; |
| 268 | u64 rx_miss; |
| 269 | u64 rx_error; |
| 270 | u64 tx_error; |
| 271 | u64 rx_mpls; |
| 272 | }; |
| 273 | |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 274 | /** \brief Simple stats counters structure |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 275 | @param vnet_counter_type- such as ip4, ip6, punts, etc |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 276 | @param first_sw_if_index - first sw index in block of index, counts |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 277 | @param count - number of counters, equal to the number of interfaces in |
| 278 | this stats block |
| 279 | @param data - contiguous block of u64 counters |
Keith Burns (alagalah) | 831fb59 | 2017-09-12 15:12:17 -0700 | [diff] [blame^] | 280 | |
| 281 | vnet_counter_type defined in enums - plural - in vnet/interface.h |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 282 | */ |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 283 | manual_print manual_endian define vnet_interface_simple_counters |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 284 | { |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 285 | u8 vnet_counter_type; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 286 | u32 first_sw_if_index; |
| 287 | u32 count; |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 288 | u64 data[count]; |
| 289 | }; |
| 290 | |
| 291 | /** \brief Combined stats counters structure |
| 292 | @param vnet_counter_type- such as ip4, ip6, punts, etc |
| 293 | @param first_sw_if_index - first sw index in block of index, counts |
| 294 | @param count - number of counters, equal to the number of interfaces in |
| 295 | this stats block |
| 296 | @param data - contiguous block of vlib_counter_t structures |
Keith Burns (alagalah) | 831fb59 | 2017-09-12 15:12:17 -0700 | [diff] [blame^] | 297 | |
| 298 | vnet_counter_type defined in enums - plural - in vnet/interface.h |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 299 | */ |
| 300 | manual_print manual_endian define vnet_interface_combined_counters |
| 301 | { |
Aloys Augustin | ee55198 | 2017-02-17 14:55:29 +0100 | [diff] [blame] | 302 | u8 vnet_counter_type; |
| 303 | u32 first_sw_if_index; |
| 304 | u32 count; |
| 305 | vl_api_vlib_counter_t data[count]; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 306 | }; |
| 307 | |
Keith Burns (alagalah) | 831fb59 | 2017-09-12 15:12:17 -0700 | [diff] [blame^] | 308 | |
| 309 | /** \brief Simple per interface stats counters structure |
| 310 | @param count - number of elements in message |
| 311 | @param timestamp - u32 vlib timestamp for control plane |
| 312 | @param data[count] - vl_api_vnet_simple_counter_t |
| 313 | |
| 314 | */ |
| 315 | manual_print manual_endian define vnet_per_interface_simple_counters |
| 316 | { |
| 317 | u32 count; |
| 318 | u32 timestamp; |
| 319 | vl_api_vnet_simple_counter_t data[count]; |
| 320 | }; |
| 321 | |
| 322 | /** \brief Combined stats counters structure per interface |
| 323 | @param count - number of elements in message |
| 324 | @param timestamp - u32 vlib timestamp for control plane |
| 325 | @param data[count] - vl_api_vnet_combined_counter_t |
| 326 | */ |
| 327 | manual_print manual_endian define vnet_per_interface_combined_counters |
| 328 | { |
| 329 | u32 count; |
| 330 | u32 timestamp; |
| 331 | vl_api_vnet_combined_counter_t data[count]; |
| 332 | }; |
| 333 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 334 | /** \brief Set unnumbered interface add / del request |
| 335 | @param client_index - opaque cookie to identify the sender |
| 336 | @param context - sender context, to match reply w/ request |
| 337 | @param sw_if_index - interface with an IP address |
| 338 | @param unnumbered_sw_if_index - interface which will use the address |
| 339 | @param is_add - if non-zero set the association, else unset it |
| 340 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 341 | autoreply define sw_interface_set_unnumbered |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 342 | { |
| 343 | u32 client_index; |
| 344 | u32 context; |
| 345 | u32 sw_if_index; /* use this intfc address */ |
| 346 | u32 unnumbered_sw_if_index; /* on this interface */ |
| 347 | u8 is_add; |
| 348 | }; |
| 349 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 350 | /** \brief Clear interface statistics |
| 351 | @param client_index - opaque cookie to identify the sender |
| 352 | @param context - sender context, to match reply w/ request |
| 353 | @param sw_if_index - index of the interface to clear statistics |
| 354 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 355 | autoreply define sw_interface_clear_stats |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 356 | { |
| 357 | u32 client_index; |
| 358 | u32 context; |
| 359 | u32 sw_if_index; |
| 360 | }; |
| 361 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 362 | /** \brief Set / clear software interface tag |
| 363 | @param client_index - opaque cookie to identify the sender |
| 364 | @param context - sender context, to match reply w/ request |
| 365 | @param sw_if_index - the interface |
| 366 | @param add_del - 1 = add, 0 = delete |
| 367 | @param tag - an ascii tag |
| 368 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 369 | autoreply define sw_interface_tag_add_del |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 370 | { |
| 371 | u32 client_index; |
| 372 | u32 context; |
| 373 | u8 is_add; |
| 374 | u32 sw_if_index; |
| 375 | u8 tag[64]; |
| 376 | }; |
| 377 | |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 378 | /** \brief Set an interface's MAC address |
| 379 | @param client_index - opaque cookie to identify the sender |
| 380 | @param context - sender context, to match reply w/ request |
| 381 | @param sw_if_index - the interface whose MAC will be set |
| 382 | @param mac_addr - the new MAC address |
| 383 | */ |
Dave Barach | 11b8dbf | 2017-04-24 10:46:54 -0400 | [diff] [blame] | 384 | autoreply define sw_interface_set_mac_address |
Jon Loeliger | 10c273b | 2017-03-30 08:39:33 -0500 | [diff] [blame] | 385 | { |
| 386 | u32 client_index; |
| 387 | u32 context; |
| 388 | u32 sw_if_index; |
| 389 | u8 mac_address[6]; |
| 390 | }; |
| 391 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 392 | /* |
| 393 | * Local Variables: |
| 394 | * eval: (c-set-style "gnu") |
| 395 | * End: |
| 396 | */ |