blob: fb90483efbebb462a2e1e5315481f5d8bb10f1c7 [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
Jerome Tollet0b061112018-06-04 16:40:26 +010022option version = "2.0.0";
Damjan Marion8389fb92017-10-13 18:29:53 +020023
24/** \brief Initialize a new tap interface with the given paramters
25 @param client_index - opaque cookie to identify the sender
26 @param context - sender context, to match reply w/ request
Ian Wellsd600ffe2018-06-18 13:53:17 -070027 @param id - interface id, 0xffffffff means auto
Damjan Marion8389fb92017-10-13 18:29:53 +020028 @param use_random_mac - let the system generate a unique mac address
Damjan Marion8389fb92017-10-13 18:29:53 +020029 @param mac_address - mac addr to assign to the interface if use_radom not set
Damjan Marion8389fb92017-10-13 18:29:53 +020030 @param tx_ring_sz - the number of entries of TX ring
31 @param rx_ring_sz - the number of entries of RX ring
Damjan Marion2df39092017-12-04 20:03:37 +010032 @param host_mac_addr_set - host side interface mac address should be set
33 @param host_mac_addr - host side interface mac address
34 @param host_if_name_set - host side interface name should be set
35 @param host_if_name - host side interface name
Damjan Marion91c6ef72017-12-01 13:34:24 +010036 @param host_namespace_set - host namespece should be set
37 @param host_namespace - host namespace to attach interface to
38 @param host_bridge_set - host bridge should be set
39 @param host_bridge - host bridge to attach interface to
40 @param host_ip4_addr_set - host IPv4 ip address should be set
41 @param host_ip4_addr - host IPv4 ip address
42 @param host_ip4_prefix_len - host IPv4 ip address prefix length
43 @param host_ip6_addr_set - host IPv6 ip address should be set
44 @param host_ip6_addr - host IPv6 ip address
45 @param host_ip6_prefix_len - host IPv6 ip address prefix length
Damjan Marion7866c452018-01-18 13:35:11 +010046 @param host_ip4_gw_set - host IPv4 default gateway should be set
47 @param host_ip4_gw - host IPv4 default gateway
48 @param host_ip6_gw_set - host IPv6 default gateway should be set
49 @param host_ip6_gw - host IPv6 default gateway
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +010050 @param tap_flags - flags for the TAP interface creation
Damjan Marion8389fb92017-10-13 18:29:53 +020051*/
52define tap_create_v2
53{
54 u32 client_index;
55 u32 context;
Damjan Marion2df39092017-12-04 20:03:37 +010056 u32 id;
Damjan Marion8389fb92017-10-13 18:29:53 +020057 u8 use_random_mac;
Damjan Marion8389fb92017-10-13 18:29:53 +020058 u8 mac_address[6];
Damjan Marion8389fb92017-10-13 18:29:53 +020059 u16 tx_ring_sz; /* optional, default is 256 entries, must be power of 2 */
60 u16 rx_ring_sz; /* optional, default is 256 entries, must be power of 2 */
Damjan Marion91c6ef72017-12-01 13:34:24 +010061 u8 host_namespace_set;
62 u8 host_namespace[64];
Damjan Marion2df39092017-12-04 20:03:37 +010063 u8 host_mac_addr_set;
64 u8 host_mac_addr[6];
65 u8 host_if_name_set;
66 u8 host_if_name[64];
Damjan Marion91c6ef72017-12-01 13:34:24 +010067 u8 host_bridge_set;
68 u8 host_bridge[64];
69 u8 host_ip4_addr_set;
70 u8 host_ip4_addr[4];
71 u8 host_ip4_prefix_len;
72 u8 host_ip6_addr_set;
73 u8 host_ip6_addr[16];
74 u8 host_ip6_prefix_len;
Damjan Marion7866c452018-01-18 13:35:11 +010075 u8 host_ip4_gw_set;
76 u8 host_ip4_gw[4];
77 u8 host_ip6_gw_set;
78 u8 host_ip6_gw[16];
Jerome Tollet0b061112018-06-04 16:40:26 +010079 u8 tag[64];
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +010080 u32 tap_flags;
Damjan Marion8389fb92017-10-13 18:29:53 +020081};
82
83/** \brief Reply for tap create reply
84 @param context - returned sender context, to match reply w/ request
85 @param retval - return code
86 @param sw_if_index - software index allocated for the new tap interface
87*/
88define tap_create_v2_reply
89{
90 u32 context;
91 i32 retval;
92 u32 sw_if_index;
93};
94
95/** \brief Delete tap interface
96 @param client_index - opaque cookie to identify the sender
97 @param context - sender context, to match reply w/ request
98 @param sw_if_index - interface index of existing tap interface
99*/
100autoreply define tap_delete_v2
101{
102 u32 client_index;
103 u32 context;
104 u32 sw_if_index;
105};
106
107/** \brief Dump tap interfaces request */
108define sw_interface_tap_v2_dump
109{
110 u32 client_index;
111 u32 context;
112};
113
114/** \brief Reply for tap dump request
115 @param sw_if_index - software index of tap interface
Milan Lenco73e7f422017-12-14 10:04:25 +0100116 @param id - interface id
Damjan Marion8389fb92017-10-13 18:29:53 +0200117 @param dev_name - Linux tap device name
Milan Lenco73e7f422017-12-14 10:04:25 +0100118 @param tx_ring_sz - the number of entries of TX ring
119 @param rx_ring_sz - the number of entries of RX ring
120 @param host_mac_addr - mac address assigned to the host side of the interface
121 @param host_if_name - host side interface name
122 @param host_namespace - host namespace the interface is attached into
123 @param host_bridge - host bridge the interface is attached into
124 @param host_ip4_addr - host IPv4 ip address
125 @param host_ip4_prefix_len - host IPv4 ip address prefix length; 0 if unset
126 @param host_ip6_addr - host IPv6 ip address
127 @param host_ip6_prefix_len - host IPv6 ip address prefix length; 0 if unset
Damjan Marion8389fb92017-10-13 18:29:53 +0200128*/
129define sw_interface_tap_v2_details
130{
131 u32 context;
132 u32 sw_if_index;
Milan Lenco73e7f422017-12-14 10:04:25 +0100133 u32 id;
Damjan Marion8389fb92017-10-13 18:29:53 +0200134 u8 dev_name[64];
Milan Lenco73e7f422017-12-14 10:04:25 +0100135 u16 tx_ring_sz;
136 u16 rx_ring_sz;
137 u8 host_mac_addr[6];
138 u8 host_if_name[64];
139 u8 host_namespace[64];
140 u8 host_bridge[64];
141 u8 host_ip4_addr[4];
142 u8 host_ip4_prefix_len;
143 u8 host_ip6_addr[16];
144 u8 host_ip6_prefix_len;
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +0100145 u32 tap_flags;
Damjan Marion8389fb92017-10-13 18:29:53 +0200146};
147
148/*
149 * Local Variables:
150 * eval: (c-set-style "gnu")
151 * End:
152 */