Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | /** \file |
| 17 | |
| 18 | This file defines vpe control-plane API messages for |
| 19 | the Linux kernel TAP device driver |
| 20 | */ |
| 21 | |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 22 | option version = "3.0.0"; |
| 23 | |
| 24 | import "vnet/interface_types.api"; |
| 25 | import "vnet/ethernet/ethernet_types.api"; |
| 26 | import "vnet/ip/ip_types.api"; |
| 27 | |
| 28 | enum tap_flags { |
| 29 | TAP_FLAG_GSO = 1, |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 30 | TAP_FLAG_CSUM_OFFLOAD = 2, |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 31 | TAP_FLAG_PERSIST = 4, |
| 32 | TAP_FLAG_ATTACH = 8, |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 33 | TAP_FLAG_TUN = 16, |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 34 | }; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 35 | |
Paul Vinciguerra | 97c998c | 2019-10-29 16:11:09 -0400 | [diff] [blame] | 36 | /** \brief Initialize a new tap interface with the given parameters |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 37 | @param client_index - opaque cookie to identify the sender |
| 38 | @param context - sender context, to match reply w/ request |
Ian Wells | d600ffe | 2018-06-18 13:53:17 -0700 | [diff] [blame] | 39 | @param id - interface id, 0xffffffff means auto |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 40 | @param use_random_mac - let the system generate a unique mac address |
Paul Vinciguerra | 97c998c | 2019-10-29 16:11:09 -0400 | [diff] [blame] | 41 | @param mac_address - mac addr to assign to the interface if use_random not set |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 42 | @param num_rx_queues - number of rx queues |
Paul Vinciguerra | 073d74d | 2020-04-27 01:12:48 -0400 | [diff] [blame] | 43 | @param tx_ring_sz - the number of entries of TX ring, optional, default is 256 entries, must be power of 2 |
| 44 | @param rx_ring_sz - the number of entries of RX ring, optional, default is 256 entries, must be power of 2 |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 45 | @param host_mtu_set - host MTU should be set |
| 46 | @param host_mtu_size - host MTU size |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 47 | @param host_mac_addr_set - host side interface mac address should be set |
| 48 | @param host_mac_addr - host side interface mac address |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 49 | @param host_ip4_prefix_set - host IPv4 ip address should be set |
| 50 | @param host_ip4_prefix - host IPv4 ip address |
| 51 | @param host_ip6_prefix_set - host IPv6 ip address should be set |
| 52 | @param host_ip6_prefix - host IPv6 ip address |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 53 | @param host_ip4_gw_set - host IPv4 default gateway should be set |
| 54 | @param host_ip4_gw - host IPv4 default gateway |
| 55 | @param host_ip6_gw_set - host IPv6 default gateway should be set |
| 56 | @param host_ip6_gw - host IPv6 default gateway |
Andrew Yourtchenko | 754f24b | 2019-01-07 20:56:46 +0100 | [diff] [blame] | 57 | @param tap_flags - flags for the TAP interface creation |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 58 | @param host_if_name_set - host side interface name should be set |
| 59 | @param host_if_name - host side interface name |
Paul Vinciguerra | 073d74d | 2020-04-27 01:12:48 -0400 | [diff] [blame] | 60 | @param host_namespace_set - host namespace should be set |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 61 | @param host_namespace - host namespace to attach interface to |
| 62 | @param host_bridge_set - host bridge should be set |
| 63 | @param host_bridge - host bridge to attach interface to |
| 64 | @param tag - tag |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 65 | */ |
| 66 | define tap_create_v2 |
| 67 | { |
| 68 | u32 client_index; |
| 69 | u32 context; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 70 | u32 id [default=0xffffffff]; |
| 71 | bool use_random_mac [default=true]; |
| 72 | vl_api_mac_address_t mac_address; |
| 73 | u8 num_rx_queues [default=1]; |
Paul Vinciguerra | 073d74d | 2020-04-27 01:12:48 -0400 | [diff] [blame] | 74 | u16 tx_ring_sz [default=256]; |
| 75 | u16 rx_ring_sz [default=256]; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 76 | bool host_mtu_set; |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 77 | u32 host_mtu_size; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 78 | bool host_mac_addr_set; |
| 79 | vl_api_mac_address_t host_mac_addr; |
| 80 | bool host_ip4_prefix_set; |
| 81 | vl_api_ip4_address_with_prefix_t host_ip4_prefix; |
| 82 | bool host_ip6_prefix_set; |
| 83 | vl_api_ip6_address_with_prefix_t host_ip6_prefix; |
| 84 | bool host_ip4_gw_set; |
| 85 | vl_api_ip4_address_t host_ip4_gw; |
| 86 | bool host_ip6_gw_set; |
| 87 | vl_api_ip6_address_t host_ip6_gw; |
| 88 | vl_api_tap_flags_t tap_flags; |
| 89 | bool host_namespace_set; |
| 90 | string host_namespace[64]; |
| 91 | bool host_if_name_set; |
| 92 | string host_if_name[64]; |
| 93 | bool host_bridge_set; |
| 94 | string host_bridge[64]; |
| 95 | string tag[]; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | /** \brief Reply for tap create reply |
| 99 | @param context - returned sender context, to match reply w/ request |
| 100 | @param retval - return code |
| 101 | @param sw_if_index - software index allocated for the new tap interface |
| 102 | */ |
| 103 | define tap_create_v2_reply |
| 104 | { |
| 105 | u32 context; |
| 106 | i32 retval; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 107 | vl_api_interface_index_t sw_if_index; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | /** \brief Delete tap interface |
| 111 | @param client_index - opaque cookie to identify the sender |
| 112 | @param context - sender context, to match reply w/ request |
| 113 | @param sw_if_index - interface index of existing tap interface |
| 114 | */ |
| 115 | autoreply define tap_delete_v2 |
| 116 | { |
| 117 | u32 client_index; |
| 118 | u32 context; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 119 | vl_api_interface_index_t sw_if_index; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 120 | }; |
| 121 | |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 122 | /** \brief Dump tap interfaces request |
Paul Vinciguerra | 073d74d | 2020-04-27 01:12:48 -0400 | [diff] [blame] | 123 | @param sw_if_index - filter by sw_if_index |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 124 | */ |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 125 | define sw_interface_tap_v2_dump |
| 126 | { |
| 127 | u32 client_index; |
| 128 | u32 context; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 129 | vl_api_interface_index_t sw_if_index [default=0xffffffff]; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | /** \brief Reply for tap dump request |
| 133 | @param sw_if_index - software index of tap interface |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 134 | @param id - interface id |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 135 | @param tx_ring_sz - the number of entries of TX ring |
| 136 | @param rx_ring_sz - the number of entries of RX ring |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 137 | @param host_mtu_size - host mtu size |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 138 | @param host_mac_addr - mac address assigned to the host side of the interface |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 139 | @param host_ip4_prefix - host IPv4 ip address |
| 140 | @param host_ip6_prefix - host IPv6 ip address |
| 141 | @param tap_flags - flags for the TAP interface creation |
| 142 | @param dev_name - Linux tap device name |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 143 | @param host_if_name - host side interface name |
| 144 | @param host_namespace - host namespace the interface is attached into |
| 145 | @param host_bridge - host bridge the interface is attached into |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 146 | */ |
| 147 | define sw_interface_tap_v2_details |
| 148 | { |
| 149 | u32 context; |
| 150 | u32 sw_if_index; |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 151 | u32 id; |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 152 | u16 tx_ring_sz; |
| 153 | u16 rx_ring_sz; |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 154 | u32 host_mtu_size; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 155 | vl_api_mac_address_t host_mac_addr; |
| 156 | vl_api_ip4_address_with_prefix_t host_ip4_prefix; |
| 157 | vl_api_ip6_address_with_prefix_t host_ip6_prefix; |
| 158 | vl_api_tap_flags_t tap_flags; |
| 159 | string dev_name[64]; |
| 160 | string host_if_name[64]; |
| 161 | string host_namespace[64]; |
| 162 | string host_bridge[64]; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 163 | }; |
| 164 | |
| 165 | /* |
| 166 | * Local Variables: |
| 167 | * eval: (c-set-style "gnu") |
| 168 | * End: |
| 169 | */ |