blob: a1acacf47197a646d8a095e43b6ea48601f0c692 [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
28#include <vnet/vnet_msg_enum.h>
29
30#define vl_typedefs /* define message structures */
31#include <vnet/vnet_all_api_h.h>
32#undef vl_typedefs
33
34#define vl_endianfun /* define message structures */
35#include <vnet/vnet_all_api_h.h>
36#undef vl_endianfun
37
38/* instantiate all the print functions we know about */
39#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
40#define vl_printfun
41#include <vnet/vnet_all_api_h.h>
42#undef vl_printfun
43
44#include <vlibapi/api_helper_macros.h>
Damjan Marionc99b4cd2017-12-04 15:25:58 +010045#include <vnet/devices/tap/tap.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020046
47#define foreach_tapv2_api_msg \
48_(TAP_CREATE_V2, tap_create_v2) \
49_(TAP_DELETE_V2, tap_delete_v2) \
50_(SW_INTERFACE_TAP_V2_DUMP, sw_interface_tap_v2_dump)
51
52static void
53vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp)
54{
Paul Vinciguerra44d06912019-10-30 01:53:25 +000055 vl_api_registration_t *reg;
56 reg = vl_api_client_index_to_registration (mp->client_index);
57 if (!reg)
58 return;
59
Jerome Tollet0b061112018-06-04 16:40:26 +010060 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020061 vlib_main_t *vm = vlib_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020062 vl_api_tap_create_v2_reply_t *rmp;
Paul Vinciguerra44d06912019-10-30 01:53:25 +000063
Damjan Marion8389fb92017-10-13 18:29:53 +020064 tap_create_if_args_t _a, *ap = &_a;
65
Dave Barachb7b92992018-10-17 10:38:51 -040066 clib_memset (ap, 0, sizeof (*ap));
Damjan Marion8389fb92017-10-13 18:29:53 +020067
Steven9e635692018-03-01 09:36:01 -080068 ap->id = ntohl (mp->id);
Damjan Marion8389fb92017-10-13 18:29:53 +020069 if (!mp->use_random_mac)
70 {
Damjan Marion2df39092017-12-04 20:03:37 +010071 clib_memcpy (ap->mac_addr, mp->mac_address, 6);
72 ap->mac_addr_set = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020073 }
Milan Lenco2aef64f2017-12-05 12:18:15 +010074 ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
75 ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
Damjan Marion8389fb92017-10-13 18:29:53 +020076 ap->sw_if_index = (u32) ~ 0;
Damjan Marion8389fb92017-10-13 18:29:53 +020077
Damjan Marion2df39092017-12-04 20:03:37 +010078 if (mp->host_if_name_set)
79 ap->host_if_name = mp->host_if_name;
80
81 if (mp->host_mac_addr_set)
82 {
83 clib_memcpy (ap->host_mac_addr, mp->host_mac_addr, 6);
84 ap->mac_addr_set = 1;
85 }
86
Damjan Marion91c6ef72017-12-01 13:34:24 +010087 if (mp->host_namespace_set)
88 ap->host_namespace = mp->host_namespace;
89
90 if (mp->host_bridge_set)
91 ap->host_bridge = mp->host_bridge;
92
93 if (mp->host_ip4_addr_set)
94 {
95 clib_memcpy (&ap->host_ip4_addr.as_u8, mp->host_ip4_addr, 4);
96 ap->host_ip4_prefix_len = mp->host_ip4_prefix_len;
97 }
98
99 if (mp->host_ip6_addr_set)
100 {
101 clib_memcpy (&ap->host_ip6_addr, mp->host_ip6_addr, 16);
102 ap->host_ip6_prefix_len = mp->host_ip6_prefix_len;
103 }
104
Damjan Marion7866c452018-01-18 13:35:11 +0100105 if (mp->host_ip4_gw_set)
106 {
107 clib_memcpy (&ap->host_ip4_gw, mp->host_ip4_gw, 4);
108 ap->host_ip4_gw_set = 1;
109 }
110
111 if (mp->host_ip6_gw_set)
112 {
113 clib_memcpy (&ap->host_ip6_gw, mp->host_ip6_gw, 16);
114 ap->host_ip6_gw_set = 1;
115 }
116
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200117 if (mp->host_mtu_set)
118 {
119 ap->host_mtu_size = ntohl (mp->host_mtu_size);
120 ap->host_mtu_set = 1;
121 }
122
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +0100123 ap->tap_flags = ntohl (mp->tap_flags);
124
Damjan Marion91c6ef72017-12-01 13:34:24 +0100125 tap_create_if (vm, ap);
Damjan Marion8389fb92017-10-13 18:29:53 +0200126
Damjan Marion8389fb92017-10-13 18:29:53 +0200127
Jerome Tollet0b061112018-06-04 16:40:26 +0100128 /* If a tag was supplied... */
129 if (mp->tag[0])
130 {
131 /* Make sure it's a proper C-string */
132 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
133 u8 *tag = format (0, "%s%c", mp->tag, 0);
134 vnet_set_sw_interface_tag (vnm, tag, ap->sw_if_index);
135 }
136
137
Damjan Marion8389fb92017-10-13 18:29:53 +0200138 rmp = vl_msg_api_alloc (sizeof (*rmp));
139 rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
140 rmp->context = mp->context;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100141 rmp->retval = ntohl (ap->rv);
Damjan Marion8389fb92017-10-13 18:29:53 +0200142 rmp->sw_if_index = ntohl (ap->sw_if_index);
143
Florin Coras6c4dae22018-01-09 06:39:23 -0800144 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200145}
146
147static void
Damjan Marion8389fb92017-10-13 18:29:53 +0200148vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
149{
Paul Vinciguerra44d06912019-10-30 01:53:25 +0000150 vl_api_registration_t *reg;
151 reg = vl_api_client_index_to_registration (mp->client_index);
152 if (!reg)
153 return;
154
Jerome Tollet0b061112018-06-04 16:40:26 +0100155 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +0200156 vlib_main_t *vm = vlib_get_main ();
157 int rv;
Damjan Marion8389fb92017-10-13 18:29:53 +0200158 vl_api_tap_delete_v2_reply_t *rmp;
Paul Vinciguerra44d06912019-10-30 01:53:25 +0000159
Damjan Marion8389fb92017-10-13 18:29:53 +0200160 u32 sw_if_index = ntohl (mp->sw_if_index);
161
162 rv = tap_delete_if (vm, sw_if_index);
163
Paul Vinciguerra44d06912019-10-30 01:53:25 +0000164
Damjan Marion8389fb92017-10-13 18:29:53 +0200165
166 rmp = vl_msg_api_alloc (sizeof (*rmp));
167 rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
168 rmp->context = mp->context;
169 rmp->retval = ntohl (rv);
170
Florin Coras6c4dae22018-01-09 06:39:23 -0800171 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200172
173 if (!rv)
Ole Troan2e1c8962019-04-10 09:44:23 +0200174 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200175}
176
177static void
178tap_send_sw_interface_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800179 vl_api_registration_t * reg,
Damjan Marion8389fb92017-10-13 18:29:53 +0200180 tap_interface_details_t * tap_if, u32 context)
181{
182 vl_api_sw_interface_tap_v2_details_t *mp;
183 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400184 clib_memset (mp, 0, sizeof (*mp));
Milan Lenco73e7f422017-12-14 10:04:25 +0100185 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
186 mp->id = htonl (tap_if->id);
187 mp->sw_if_index = htonl (tap_if->sw_if_index);
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +0100188 mp->tap_flags = htonl (tap_if->tap_flags);
Damjan Marion8389fb92017-10-13 18:29:53 +0200189 clib_memcpy (mp->dev_name, tap_if->dev_name,
190 MIN (ARRAY_LEN (mp->dev_name) - 1,
191 strlen ((const char *) tap_if->dev_name)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100192 mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
193 mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
194 clib_memcpy (mp->host_mac_addr, tap_if->host_mac_addr, 6);
195 clib_memcpy (mp->host_if_name, tap_if->host_if_name,
196 MIN (ARRAY_LEN (mp->host_if_name) - 1,
197 strlen ((const char *) tap_if->host_if_name)));
198 clib_memcpy (mp->host_namespace, tap_if->host_namespace,
199 MIN (ARRAY_LEN (mp->host_namespace) - 1,
200 strlen ((const char *) tap_if->host_namespace)));
201 clib_memcpy (mp->host_bridge, tap_if->host_bridge,
202 MIN (ARRAY_LEN (mp->host_bridge) - 1,
203 strlen ((const char *) tap_if->host_bridge)));
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200204 mp->host_mtu_size = htonl (tap_if->host_mtu_size);
Milan Lenco73e7f422017-12-14 10:04:25 +0100205 if (tap_if->host_ip4_prefix_len)
206 clib_memcpy (&mp->host_ip4_addr, &tap_if->host_ip4_addr, 4);
207 mp->host_ip4_prefix_len = tap_if->host_ip4_prefix_len;
208 if (tap_if->host_ip6_prefix_len)
209 clib_memcpy (&mp->host_ip6_addr, &tap_if->host_ip6_addr, 16);
210 mp->host_ip6_prefix_len = tap_if->host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200211
Milan Lenco73e7f422017-12-14 10:04:25 +0100212 mp->context = context;
Florin Coras6c4dae22018-01-09 06:39:23 -0800213 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200214}
215
216static void
217vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
218 mp)
219{
220 int rv;
221 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800222 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200223 tap_interface_details_t *tapifs = NULL;
224 tap_interface_details_t *tap_if = NULL;
225
Florin Coras6c4dae22018-01-09 06:39:23 -0800226 reg = vl_api_client_index_to_registration (mp->client_index);
227 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200228 return;
229
230 rv = tap_dump_ifs (&tapifs);
231 if (rv)
232 return;
233
234 vec_foreach (tap_if, tapifs)
235 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800236 tap_send_sw_interface_details (am, reg, tap_if, mp->context);
Damjan Marion8389fb92017-10-13 18:29:53 +0200237 }
238
239 vec_free (tapifs);
240}
241
242#define vl_msg_name_crc_list
243#include <vnet/vnet_all_api_h.h>
244#undef vl_msg_name_crc_list
245
246static void
247tap_setup_message_id_table (api_main_t * am)
248{
249#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
250 foreach_vl_msg_name_crc_tapv2;
251#undef _
252}
253
254static clib_error_t *
255tapv2_api_hookup (vlib_main_t * vm)
256{
257 api_main_t *am = &api_main;
258
259#define _(N,n) \
260 vl_msg_api_set_handlers(VL_API_##N, #n, \
261 vl_api_##n##_t_handler, \
262 vl_noop_handler, \
263 vl_api_##n##_t_endian, \
264 vl_api_##n##_t_print, \
265 sizeof(vl_api_##n##_t), 1);
266 foreach_tapv2_api_msg;
267#undef _
268
269 /*
270 * Set up the (msg_name, crc, message-id) table
271 */
272 tap_setup_message_id_table (am);
273
274 return 0;
275}
276
277VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
278
279/*
280 * fd.io coding-style-patch-verification: ON
281 *
282 * Local Variables:
283 * eval: (c-set-style "gnu")
284 * End:
285 */