blob: ac38128daf8c71e345443304417aaa8e4e821eee [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
2 *------------------------------------------------------------------
3 * tap_api.c - vnet tap device driver API support
4 *
5 * Copyright (c) 2017 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <vnet/vnet.h>
21#include <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/ethernet/ethernet.h>
26#include <vnet/ip/ip.h>
27
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020028#include <vnet/ethernet/ethernet_types_api.h>
29#include <vnet/ip/ip_types_api.h>
30
Damjan Marion8389fb92017-10-13 18:29:53 +020031#include <vnet/vnet_msg_enum.h>
32
33#define vl_typedefs /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_typedefs
36
37#define vl_endianfun /* define message structures */
38#include <vnet/vnet_all_api_h.h>
39#undef vl_endianfun
40
41/* instantiate all the print functions we know about */
42#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
43#define vl_printfun
44#include <vnet/vnet_all_api_h.h>
45#undef vl_printfun
46
47#include <vlibapi/api_helper_macros.h>
Damjan Marionc99b4cd2017-12-04 15:25:58 +010048#include <vnet/devices/tap/tap.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020049
50#define foreach_tapv2_api_msg \
51_(TAP_CREATE_V2, tap_create_v2) \
52_(TAP_DELETE_V2, tap_delete_v2) \
53_(SW_INTERFACE_TAP_V2_DUMP, sw_interface_tap_v2_dump)
54
55static void
56vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp)
57{
Paul Vinciguerra44d06912019-10-30 01:53:25 +000058 vl_api_registration_t *reg;
59 reg = vl_api_client_index_to_registration (mp->client_index);
60 if (!reg)
61 return;
62
Jerome Tollet0b061112018-06-04 16:40:26 +010063 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020064 vlib_main_t *vm = vlib_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020065 vl_api_tap_create_v2_reply_t *rmp;
Paul Vinciguerra44d06912019-10-30 01:53:25 +000066
Damjan Marion8389fb92017-10-13 18:29:53 +020067 tap_create_if_args_t _a, *ap = &_a;
68
Dave Barachb7b92992018-10-17 10:38:51 -040069 clib_memset (ap, 0, sizeof (*ap));
Damjan Marion8389fb92017-10-13 18:29:53 +020070
Steven9e635692018-03-01 09:36:01 -080071 ap->id = ntohl (mp->id);
Damjan Marion8389fb92017-10-13 18:29:53 +020072 if (!mp->use_random_mac)
73 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020074 mac_address_decode (mp->mac_address, &ap->mac_addr);
Damjan Marion2df39092017-12-04 20:03:37 +010075 ap->mac_addr_set = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020076 }
Milan Lenco2aef64f2017-12-05 12:18:15 +010077 ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
78 ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
Damjan Marion8389fb92017-10-13 18:29:53 +020079 ap->sw_if_index = (u32) ~ 0;
Mohsin Kazmi9f32b6a2020-02-14 12:09:04 +000080 ap->num_rx_queues = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020081
Mohsin Kazmi9f32b6a2020-02-14 12:09:04 +000082 if (mp->num_rx_queues > 1)
83 ap->num_rx_queues = mp->num_rx_queues;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020084
Damjan Marion2df39092017-12-04 20:03:37 +010085 if (mp->host_if_name_set)
Mohsin Kazmi784bbcc2020-10-21 18:32:59 +020086 ap->host_if_name = format (0, "%s%c", mp->host_if_name, 0);
Damjan Marion2df39092017-12-04 20:03:37 +010087
88 if (mp->host_mac_addr_set)
89 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020090 mac_address_decode (mp->host_mac_addr, &ap->host_mac_addr);
Damjan Marion2df39092017-12-04 20:03:37 +010091 }
92
Damjan Marion91c6ef72017-12-01 13:34:24 +010093 if (mp->host_namespace_set)
Mohsin Kazmi784bbcc2020-10-21 18:32:59 +020094 ap->host_namespace = format (0, "%s%c", mp->host_namespace, 0);
Damjan Marion91c6ef72017-12-01 13:34:24 +010095
96 if (mp->host_bridge_set)
Mohsin Kazmi784bbcc2020-10-21 18:32:59 +020097 ap->host_bridge = format (0, "%s%c", mp->host_bridge, 0);
Damjan Marion91c6ef72017-12-01 13:34:24 +010098
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020099 if (mp->host_ip4_prefix_set)
Damjan Marion91c6ef72017-12-01 13:34:24 +0100100 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200101 ip4_address_decode (mp->host_ip4_prefix.address, &ap->host_ip4_addr);
102 ap->host_ip4_prefix_len = mp->host_ip4_prefix.len;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100103 }
104
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200105 if (mp->host_ip6_prefix_set)
Damjan Marion91c6ef72017-12-01 13:34:24 +0100106 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200107 ip6_address_decode (mp->host_ip6_prefix.address, &ap->host_ip6_addr);
108 ap->host_ip6_prefix_len = mp->host_ip6_prefix.len;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100109 }
110
Damjan Marion7866c452018-01-18 13:35:11 +0100111 if (mp->host_ip4_gw_set)
112 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200113 ip4_address_decode (mp->host_ip4_gw, &ap->host_ip4_gw);
Damjan Marion7866c452018-01-18 13:35:11 +0100114 ap->host_ip4_gw_set = 1;
115 }
116
117 if (mp->host_ip6_gw_set)
118 {
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200119 ip6_address_decode (mp->host_ip6_gw, &ap->host_ip6_gw);
Damjan Marion7866c452018-01-18 13:35:11 +0100120 ap->host_ip6_gw_set = 1;
121 }
122
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200123 if (mp->host_mtu_set)
124 {
125 ap->host_mtu_size = ntohl (mp->host_mtu_size);
126 ap->host_mtu_set = 1;
127 }
128
Mohsin Kazmia1a22462020-09-02 11:59:37 +0000129 STATIC_ASSERT (((int) TAP_API_FLAG_GSO == (int) TAP_FLAG_GSO),
130 "tap gso api flag mismatch");
131 STATIC_ASSERT (((int) TAP_API_FLAG_CSUM_OFFLOAD ==
132 (int) TAP_FLAG_CSUM_OFFLOAD),
133 "tap checksum offload api flag mismatch");
134 STATIC_ASSERT (((int) TAP_API_FLAG_PERSIST == (int) TAP_FLAG_PERSIST),
135 "tap persist api flag mismatch");
136 STATIC_ASSERT (((int) TAP_API_FLAG_ATTACH == (int) TAP_FLAG_ATTACH),
137 "tap attach api flag mismatch");
138 STATIC_ASSERT (((int) TAP_API_FLAG_TUN == (int) TAP_FLAG_TUN),
139 "tap tun api flag mismatch");
140 STATIC_ASSERT (((int) TAP_API_FLAG_GRO_COALESCE ==
141 (int) TAP_FLAG_GRO_COALESCE),
142 "tap gro coalesce api flag mismatch");
143 STATIC_ASSERT (((int) TAP_API_FLAG_PACKED == (int) TAP_FLAG_PACKED),
144 "tap packed api flag mismatch");
145 STATIC_ASSERT (((int) TAP_API_FLAG_IN_ORDER ==
146 (int) TAP_FLAG_IN_ORDER), "tap in-order api flag mismatch");
147
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +0100148 ap->tap_flags = ntohl (mp->tap_flags);
149
Damjan Marion91c6ef72017-12-01 13:34:24 +0100150 tap_create_if (vm, ap);
Damjan Marion8389fb92017-10-13 18:29:53 +0200151
Damjan Marion8389fb92017-10-13 18:29:53 +0200152
Jerome Tollet0b061112018-06-04 16:40:26 +0100153 /* If a tag was supplied... */
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200154 if (vl_api_string_len (&mp->tag))
Jerome Tollet0b061112018-06-04 16:40:26 +0100155 {
Dave Barach77841402020-04-29 17:04:10 -0400156 u8 *tag = vl_api_from_api_to_new_vec (mp, &mp->tag);
Jerome Tollet0b061112018-06-04 16:40:26 +0100157 vnet_set_sw_interface_tag (vnm, tag, ap->sw_if_index);
158 }
159
Damjan Marion8389fb92017-10-13 18:29:53 +0200160 rmp = vl_msg_api_alloc (sizeof (*rmp));
161 rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
162 rmp->context = mp->context;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100163 rmp->retval = ntohl (ap->rv);
Damjan Marion8389fb92017-10-13 18:29:53 +0200164 rmp->sw_if_index = ntohl (ap->sw_if_index);
165
Florin Coras6c4dae22018-01-09 06:39:23 -0800166 vl_api_send_msg (reg, (u8 *) rmp);
Mohsin Kazmi784bbcc2020-10-21 18:32:59 +0200167
168 vec_free (ap->host_if_name);
169 vec_free (ap->host_namespace);
170 vec_free (ap->host_bridge);
171
Damjan Marion8389fb92017-10-13 18:29:53 +0200172}
173
174static void
Damjan Marion8389fb92017-10-13 18:29:53 +0200175vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
176{
Paul Vinciguerra44d06912019-10-30 01:53:25 +0000177 vl_api_registration_t *reg;
178 reg = vl_api_client_index_to_registration (mp->client_index);
179 if (!reg)
180 return;
181
Jerome Tollet0b061112018-06-04 16:40:26 +0100182 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +0200183 vlib_main_t *vm = vlib_get_main ();
184 int rv;
Damjan Marion8389fb92017-10-13 18:29:53 +0200185 vl_api_tap_delete_v2_reply_t *rmp;
Paul Vinciguerra44d06912019-10-30 01:53:25 +0000186
Damjan Marion8389fb92017-10-13 18:29:53 +0200187 u32 sw_if_index = ntohl (mp->sw_if_index);
188
189 rv = tap_delete_if (vm, sw_if_index);
190
Damjan Marion8389fb92017-10-13 18:29:53 +0200191 rmp = vl_msg_api_alloc (sizeof (*rmp));
192 rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
193 rmp->context = mp->context;
194 rmp->retval = ntohl (rv);
195
Florin Coras6c4dae22018-01-09 06:39:23 -0800196 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200197
198 if (!rv)
Ole Troan2e1c8962019-04-10 09:44:23 +0200199 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200200}
201
202static void
203tap_send_sw_interface_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800204 vl_api_registration_t * reg,
Damjan Marion8389fb92017-10-13 18:29:53 +0200205 tap_interface_details_t * tap_if, u32 context)
206{
207 vl_api_sw_interface_tap_v2_details_t *mp;
208 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400209 clib_memset (mp, 0, sizeof (*mp));
Milan Lenco73e7f422017-12-14 10:04:25 +0100210 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
211 mp->id = htonl (tap_if->id);
212 mp->sw_if_index = htonl (tap_if->sw_if_index);
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +0100213 mp->tap_flags = htonl (tap_if->tap_flags);
Damjan Marion8389fb92017-10-13 18:29:53 +0200214 clib_memcpy (mp->dev_name, tap_if->dev_name,
215 MIN (ARRAY_LEN (mp->dev_name) - 1,
216 strlen ((const char *) tap_if->dev_name)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100217 mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
218 mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200219 mac_address_encode (&tap_if->host_mac_addr, mp->host_mac_addr);
Milan Lenco73e7f422017-12-14 10:04:25 +0100220 clib_memcpy (mp->host_if_name, tap_if->host_if_name,
221 MIN (ARRAY_LEN (mp->host_if_name) - 1,
222 strlen ((const char *) tap_if->host_if_name)));
223 clib_memcpy (mp->host_namespace, tap_if->host_namespace,
224 MIN (ARRAY_LEN (mp->host_namespace) - 1,
225 strlen ((const char *) tap_if->host_namespace)));
226 clib_memcpy (mp->host_bridge, tap_if->host_bridge,
227 MIN (ARRAY_LEN (mp->host_bridge) - 1,
228 strlen ((const char *) tap_if->host_bridge)));
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200229 mp->host_mtu_size = htonl (tap_if->host_mtu_size);
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200230 mac_address_encode (&tap_if->host_mac_addr, mp->host_mac_addr);
231
Milan Lenco73e7f422017-12-14 10:04:25 +0100232 if (tap_if->host_ip4_prefix_len)
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200233 ip4_address_encode (&tap_if->host_ip4_addr, mp->host_ip4_prefix.address);
234 mp->host_ip4_prefix.len = tap_if->host_ip4_prefix_len;
Milan Lenco73e7f422017-12-14 10:04:25 +0100235 if (tap_if->host_ip6_prefix_len)
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200236 ip6_address_encode (&tap_if->host_ip6_addr, mp->host_ip6_prefix.address);
237 mp->host_ip6_prefix.len = tap_if->host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200238
Milan Lenco73e7f422017-12-14 10:04:25 +0100239 mp->context = context;
Florin Coras6c4dae22018-01-09 06:39:23 -0800240 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200241}
242
243static void
244vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
245 mp)
246{
247 int rv;
248 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800249 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200250 tap_interface_details_t *tapifs = NULL;
251 tap_interface_details_t *tap_if = NULL;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200252 u32 filter_sw_if_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200253
Florin Coras6c4dae22018-01-09 06:39:23 -0800254 reg = vl_api_client_index_to_registration (mp->client_index);
255 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200256 return;
257
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200258 filter_sw_if_index = htonl (mp->sw_if_index);
Paul Vinciguerra073d74d2020-04-27 01:12:48 -0400259 if (mp->sw_if_index != ~0)
260 VALIDATE_SW_IF_INDEX (mp);
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200261
Damjan Marion8389fb92017-10-13 18:29:53 +0200262 rv = tap_dump_ifs (&tapifs);
263 if (rv)
264 return;
265
266 vec_foreach (tap_if, tapifs)
267 {
Paul Vinciguerra073d74d2020-04-27 01:12:48 -0400268 if ((filter_sw_if_index == ~0)
269 || (tap_if->sw_if_index == filter_sw_if_index))
270 tap_send_sw_interface_details (am, reg, tap_if, mp->context);
Damjan Marion8389fb92017-10-13 18:29:53 +0200271 }
Paul Vinciguerra073d74d2020-04-27 01:12:48 -0400272 BAD_SW_IF_INDEX_LABEL;
Damjan Marion8389fb92017-10-13 18:29:53 +0200273 vec_free (tapifs);
274}
275
276#define vl_msg_name_crc_list
277#include <vnet/vnet_all_api_h.h>
278#undef vl_msg_name_crc_list
279
280static void
281tap_setup_message_id_table (api_main_t * am)
282{
283#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
284 foreach_vl_msg_name_crc_tapv2;
285#undef _
286}
287
288static clib_error_t *
289tapv2_api_hookup (vlib_main_t * vm)
290{
Dave Barach39d69112019-11-27 11:42:13 -0500291 api_main_t *am = vlibapi_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +0200292
293#define _(N,n) \
294 vl_msg_api_set_handlers(VL_API_##N, #n, \
295 vl_api_##n##_t_handler, \
296 vl_noop_handler, \
297 vl_api_##n##_t_endian, \
298 vl_api_##n##_t_print, \
299 sizeof(vl_api_##n##_t), 1);
300 foreach_tapv2_api_msg;
301#undef _
302
303 /*
304 * Set up the (msg_name, crc, message-id) table
305 */
306 tap_setup_message_id_table (am);
307
308 return 0;
309}
310
311VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
312
313/*
314 * fd.io coding-style-patch-verification: ON
315 *
316 * Local Variables:
317 * eval: (c-set-style "gnu")
318 * End:
319 */