blob: ccbbe15816018eea7dd6bd41c4420bce04ff38cb [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
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 Grajciar5de4fb72019-09-03 10:40:01 +020022option version = "3.0.0";
23
24import "vnet/interface_types.api";
25import "vnet/ethernet/ethernet_types.api";
26import "vnet/ip/ip_types.api";
27
28enum tap_flags {
29 TAP_FLAG_GSO = 1,
Mohsin Kazmiba0061f2019-12-18 17:08:54 +010030 TAP_FLAG_CSUM_OFFLOAD = 2,
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +000031 TAP_FLAG_PERSIST = 4,
32 TAP_FLAG_ATTACH = 8,
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020033};
Damjan Marion8389fb92017-10-13 18:29:53 +020034
Paul Vinciguerra97c998c2019-10-29 16:11:09 -040035/** \brief Initialize a new tap interface with the given parameters
Damjan Marion8389fb92017-10-13 18:29:53 +020036 @param client_index - opaque cookie to identify the sender
37 @param context - sender context, to match reply w/ request
Ian Wellsd600ffe2018-06-18 13:53:17 -070038 @param id - interface id, 0xffffffff means auto
Damjan Marion8389fb92017-10-13 18:29:53 +020039 @param use_random_mac - let the system generate a unique mac address
Paul Vinciguerra97c998c2019-10-29 16:11:09 -040040 @param mac_address - mac addr to assign to the interface if use_random not set
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020041 @param num_rx_queues - number of rx queues
Damjan Marion8389fb92017-10-13 18:29:53 +020042 @param tx_ring_sz - the number of entries of TX ring
43 @param rx_ring_sz - the number of entries of RX ring
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020044 @param host_mtu_set - host MTU should be set
45 @param host_mtu_size - host MTU size
Damjan Marion2df39092017-12-04 20:03:37 +010046 @param host_mac_addr_set - host side interface mac address should be set
47 @param host_mac_addr - host side interface mac address
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020048 @param host_ip4_prefix_set - host IPv4 ip address should be set
49 @param host_ip4_prefix - host IPv4 ip address
50 @param host_ip6_prefix_set - host IPv6 ip address should be set
51 @param host_ip6_prefix - host IPv6 ip address
Damjan Marion7866c452018-01-18 13:35:11 +010052 @param host_ip4_gw_set - host IPv4 default gateway should be set
53 @param host_ip4_gw - host IPv4 default gateway
54 @param host_ip6_gw_set - host IPv6 default gateway should be set
55 @param host_ip6_gw - host IPv6 default gateway
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +010056 @param tap_flags - flags for the TAP interface creation
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020057 @param host_if_name_set - host side interface name should be set
58 @param host_if_name - host side interface name
59 @param host_namespace_set - host namespece should be set
60 @param host_namespace - host namespace to attach interface to
61 @param host_bridge_set - host bridge should be set
62 @param host_bridge - host bridge to attach interface to
63 @param tag - tag
Damjan Marion8389fb92017-10-13 18:29:53 +020064*/
65define tap_create_v2
66{
67 u32 client_index;
68 u32 context;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020069 u32 id [default=0xffffffff];
70 bool use_random_mac [default=true];
71 vl_api_mac_address_t mac_address;
72 u8 num_rx_queues [default=1];
Damjan Marion8389fb92017-10-13 18:29:53 +020073 u16 tx_ring_sz; /* optional, default is 256 entries, must be power of 2 */
74 u16 rx_ring_sz; /* optional, default is 256 entries, must be power of 2 */
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020075 bool host_mtu_set;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020076 u32 host_mtu_size;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020077 bool host_mac_addr_set;
78 vl_api_mac_address_t host_mac_addr;
79 bool host_ip4_prefix_set;
80 vl_api_ip4_address_with_prefix_t host_ip4_prefix;
81 bool host_ip6_prefix_set;
82 vl_api_ip6_address_with_prefix_t host_ip6_prefix;
83 bool host_ip4_gw_set;
84 vl_api_ip4_address_t host_ip4_gw;
85 bool host_ip6_gw_set;
86 vl_api_ip6_address_t host_ip6_gw;
87 vl_api_tap_flags_t tap_flags;
88 bool host_namespace_set;
89 string host_namespace[64];
90 bool host_if_name_set;
91 string host_if_name[64];
92 bool host_bridge_set;
93 string host_bridge[64];
94 string tag[];
Damjan Marion8389fb92017-10-13 18:29:53 +020095};
96
97/** \brief Reply for tap create reply
98 @param context - returned sender context, to match reply w/ request
99 @param retval - return code
100 @param sw_if_index - software index allocated for the new tap interface
101*/
102define tap_create_v2_reply
103{
104 u32 context;
105 i32 retval;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200106 vl_api_interface_index_t sw_if_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200107};
108
109/** \brief Delete tap interface
110 @param client_index - opaque cookie to identify the sender
111 @param context - sender context, to match reply w/ request
112 @param sw_if_index - interface index of existing tap interface
113*/
114autoreply define tap_delete_v2
115{
116 u32 client_index;
117 u32 context;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200118 vl_api_interface_index_t sw_if_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200119};
120
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200121/** \brief Dump tap interfaces request
122 @param sw_if_index - filter by sw_if_index UNIMPLEMENTED
123*/
Damjan Marion8389fb92017-10-13 18:29:53 +0200124define sw_interface_tap_v2_dump
125{
126 u32 client_index;
127 u32 context;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200128 vl_api_interface_index_t sw_if_index [default=0xffffffff];
Damjan Marion8389fb92017-10-13 18:29:53 +0200129};
130
131/** \brief Reply for tap dump request
132 @param sw_if_index - software index of tap interface
Milan Lenco73e7f422017-12-14 10:04:25 +0100133 @param id - interface id
Milan Lenco73e7f422017-12-14 10:04:25 +0100134 @param tx_ring_sz - the number of entries of TX ring
135 @param rx_ring_sz - the number of entries of RX ring
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200136 @param host_mtu_size - host mtu size
Milan Lenco73e7f422017-12-14 10:04:25 +0100137 @param host_mac_addr - mac address assigned to the host side of the interface
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200138 @param host_ip4_prefix - host IPv4 ip address
139 @param host_ip6_prefix - host IPv6 ip address
140 @param tap_flags - flags for the TAP interface creation
141 @param dev_name - Linux tap device name
Milan Lenco73e7f422017-12-14 10:04:25 +0100142 @param host_if_name - host side interface name
143 @param host_namespace - host namespace the interface is attached into
144 @param host_bridge - host bridge the interface is attached into
Damjan Marion8389fb92017-10-13 18:29:53 +0200145*/
146define sw_interface_tap_v2_details
147{
148 u32 context;
149 u32 sw_if_index;
Milan Lenco73e7f422017-12-14 10:04:25 +0100150 u32 id;
Milan Lenco73e7f422017-12-14 10:04:25 +0100151 u16 tx_ring_sz;
152 u16 rx_ring_sz;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200153 u32 host_mtu_size;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200154 vl_api_mac_address_t host_mac_addr;
155 vl_api_ip4_address_with_prefix_t host_ip4_prefix;
156 vl_api_ip6_address_with_prefix_t host_ip6_prefix;
157 vl_api_tap_flags_t tap_flags;
158 string dev_name[64];
159 string host_if_name[64];
160 string host_namespace[64];
161 string host_bridge[64];
Damjan Marion8389fb92017-10-13 18:29:53 +0200162};
163
164/*
165 * Local Variables:
166 * eval: (c-set-style "gnu")
167 * End:
168 */