blob: f0c980a64fa6ffcd483b6afa1b2145443564ec78 [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{
Jerome Tollet0b061112018-06-04 16:40:26 +010055 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020056 vlib_main_t *vm = vlib_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020057 vl_api_tap_create_v2_reply_t *rmp;
Florin Coras6c4dae22018-01-09 06:39:23 -080058 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +020059 tap_create_if_args_t _a, *ap = &_a;
60
61 memset (ap, 0, sizeof (*ap));
62
Steven9e635692018-03-01 09:36:01 -080063 ap->id = ntohl (mp->id);
Damjan Marion8389fb92017-10-13 18:29:53 +020064 if (!mp->use_random_mac)
65 {
Damjan Marion2df39092017-12-04 20:03:37 +010066 clib_memcpy (ap->mac_addr, mp->mac_address, 6);
67 ap->mac_addr_set = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020068 }
Milan Lenco2aef64f2017-12-05 12:18:15 +010069 ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
70 ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
Damjan Marion8389fb92017-10-13 18:29:53 +020071 ap->sw_if_index = (u32) ~ 0;
Damjan Marion8389fb92017-10-13 18:29:53 +020072
Damjan Marion2df39092017-12-04 20:03:37 +010073 if (mp->host_if_name_set)
74 ap->host_if_name = mp->host_if_name;
75
76 if (mp->host_mac_addr_set)
77 {
78 clib_memcpy (ap->host_mac_addr, mp->host_mac_addr, 6);
79 ap->mac_addr_set = 1;
80 }
81
Damjan Marion91c6ef72017-12-01 13:34:24 +010082 if (mp->host_namespace_set)
83 ap->host_namespace = mp->host_namespace;
84
85 if (mp->host_bridge_set)
86 ap->host_bridge = mp->host_bridge;
87
88 if (mp->host_ip4_addr_set)
89 {
90 clib_memcpy (&ap->host_ip4_addr.as_u8, mp->host_ip4_addr, 4);
91 ap->host_ip4_prefix_len = mp->host_ip4_prefix_len;
92 }
93
94 if (mp->host_ip6_addr_set)
95 {
96 clib_memcpy (&ap->host_ip6_addr, mp->host_ip6_addr, 16);
97 ap->host_ip6_prefix_len = mp->host_ip6_prefix_len;
98 }
99
Damjan Marion7866c452018-01-18 13:35:11 +0100100 if (mp->host_ip4_gw_set)
101 {
102 clib_memcpy (&ap->host_ip4_gw, mp->host_ip4_gw, 4);
103 ap->host_ip4_gw_set = 1;
104 }
105
106 if (mp->host_ip6_gw_set)
107 {
108 clib_memcpy (&ap->host_ip6_gw, mp->host_ip6_gw, 16);
109 ap->host_ip6_gw_set = 1;
110 }
111
Damjan Marion91c6ef72017-12-01 13:34:24 +0100112 tap_create_if (vm, ap);
Damjan Marion8389fb92017-10-13 18:29:53 +0200113
Florin Coras6c4dae22018-01-09 06:39:23 -0800114 reg = vl_api_client_index_to_registration (mp->client_index);
115 if (!reg)
116 return;;
Damjan Marion8389fb92017-10-13 18:29:53 +0200117
Jerome Tollet0b061112018-06-04 16:40:26 +0100118 /* If a tag was supplied... */
119 if (mp->tag[0])
120 {
121 /* Make sure it's a proper C-string */
122 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
123 u8 *tag = format (0, "%s%c", mp->tag, 0);
124 vnet_set_sw_interface_tag (vnm, tag, ap->sw_if_index);
125 }
126
127
Damjan Marion8389fb92017-10-13 18:29:53 +0200128 rmp = vl_msg_api_alloc (sizeof (*rmp));
129 rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
130 rmp->context = mp->context;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100131 rmp->retval = ntohl (ap->rv);
Damjan Marion8389fb92017-10-13 18:29:53 +0200132 rmp->sw_if_index = ntohl (ap->sw_if_index);
133
Florin Coras6c4dae22018-01-09 06:39:23 -0800134 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200135}
136
137static void
138tap_send_sw_interface_event_deleted (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800139 vl_api_registration_t * reg,
140 u32 sw_if_index)
Damjan Marion8389fb92017-10-13 18:29:53 +0200141{
142 vl_api_sw_interface_event_t *mp;
143
144 mp = vl_msg_api_alloc (sizeof (*mp));
145 memset (mp, 0, sizeof (*mp));
146 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
147 mp->sw_if_index = ntohl (sw_if_index);
148
149 mp->admin_up_down = 0;
150 mp->link_up_down = 0;
151 mp->deleted = 1;
Florin Coras6c4dae22018-01-09 06:39:23 -0800152 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200153}
154
155static void
156vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
157{
Jerome Tollet0b061112018-06-04 16:40:26 +0100158 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +0200159 vlib_main_t *vm = vlib_get_main ();
160 int rv;
161 vpe_api_main_t *vam = &vpe_api_main;
162 vl_api_tap_delete_v2_reply_t *rmp;
Florin Coras6c4dae22018-01-09 06:39:23 -0800163 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200164 u32 sw_if_index = ntohl (mp->sw_if_index);
165
166 rv = tap_delete_if (vm, sw_if_index);
167
Florin Coras6c4dae22018-01-09 06:39:23 -0800168 reg = vl_api_client_index_to_registration (mp->client_index);
169 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200170 return;
171
172 rmp = vl_msg_api_alloc (sizeof (*rmp));
173 rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
174 rmp->context = mp->context;
175 rmp->retval = ntohl (rv);
176
Florin Coras6c4dae22018-01-09 06:39:23 -0800177 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200178
179 if (!rv)
Jerome Tollet0b061112018-06-04 16:40:26 +0100180 {
181 vnet_clear_sw_interface_tag (vnm, sw_if_index);
182 tap_send_sw_interface_event_deleted (vam, reg, sw_if_index);
183 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200184}
185
186static void
187tap_send_sw_interface_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800188 vl_api_registration_t * reg,
Damjan Marion8389fb92017-10-13 18:29:53 +0200189 tap_interface_details_t * tap_if, u32 context)
190{
191 vl_api_sw_interface_tap_v2_details_t *mp;
192 mp = vl_msg_api_alloc (sizeof (*mp));
193 memset (mp, 0, sizeof (*mp));
Milan Lenco73e7f422017-12-14 10:04:25 +0100194 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
195 mp->id = htonl (tap_if->id);
196 mp->sw_if_index = htonl (tap_if->sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200197 clib_memcpy (mp->dev_name, tap_if->dev_name,
198 MIN (ARRAY_LEN (mp->dev_name) - 1,
199 strlen ((const char *) tap_if->dev_name)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100200 mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
201 mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
202 clib_memcpy (mp->host_mac_addr, tap_if->host_mac_addr, 6);
203 clib_memcpy (mp->host_if_name, tap_if->host_if_name,
204 MIN (ARRAY_LEN (mp->host_if_name) - 1,
205 strlen ((const char *) tap_if->host_if_name)));
206 clib_memcpy (mp->host_namespace, tap_if->host_namespace,
207 MIN (ARRAY_LEN (mp->host_namespace) - 1,
208 strlen ((const char *) tap_if->host_namespace)));
209 clib_memcpy (mp->host_bridge, tap_if->host_bridge,
210 MIN (ARRAY_LEN (mp->host_bridge) - 1,
211 strlen ((const char *) tap_if->host_bridge)));
212 if (tap_if->host_ip4_prefix_len)
213 clib_memcpy (&mp->host_ip4_addr, &tap_if->host_ip4_addr, 4);
214 mp->host_ip4_prefix_len = tap_if->host_ip4_prefix_len;
215 if (tap_if->host_ip6_prefix_len)
216 clib_memcpy (&mp->host_ip6_addr, &tap_if->host_ip6_addr, 16);
217 mp->host_ip6_prefix_len = tap_if->host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200218
Milan Lenco73e7f422017-12-14 10:04:25 +0100219 mp->context = context;
Florin Coras6c4dae22018-01-09 06:39:23 -0800220 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200221}
222
223static void
224vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
225 mp)
226{
227 int rv;
228 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800229 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200230 tap_interface_details_t *tapifs = NULL;
231 tap_interface_details_t *tap_if = NULL;
232
Florin Coras6c4dae22018-01-09 06:39:23 -0800233 reg = vl_api_client_index_to_registration (mp->client_index);
234 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200235 return;
236
237 rv = tap_dump_ifs (&tapifs);
238 if (rv)
239 return;
240
241 vec_foreach (tap_if, tapifs)
242 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800243 tap_send_sw_interface_details (am, reg, tap_if, mp->context);
Damjan Marion8389fb92017-10-13 18:29:53 +0200244 }
245
246 vec_free (tapifs);
247}
248
249#define vl_msg_name_crc_list
250#include <vnet/vnet_all_api_h.h>
251#undef vl_msg_name_crc_list
252
253static void
254tap_setup_message_id_table (api_main_t * am)
255{
256#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
257 foreach_vl_msg_name_crc_tapv2;
258#undef _
259}
260
261static clib_error_t *
262tapv2_api_hookup (vlib_main_t * vm)
263{
264 api_main_t *am = &api_main;
265
266#define _(N,n) \
267 vl_msg_api_set_handlers(VL_API_##N, #n, \
268 vl_api_##n##_t_handler, \
269 vl_noop_handler, \
270 vl_api_##n##_t_endian, \
271 vl_api_##n##_t_print, \
272 sizeof(vl_api_##n##_t), 1);
273 foreach_tapv2_api_msg;
274#undef _
275
276 /*
277 * Set up the (msg_name, crc, message-id) table
278 */
279 tap_setup_message_id_table (am);
280
281 return 0;
282}
283
284VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
285
286/*
287 * fd.io coding-style-patch-verification: ON
288 *
289 * Local Variables:
290 * eval: (c-set-style "gnu")
291 * End:
292 */