blob: 34472c0ab28bc15f28849b22d5640cfcc322019b [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{
55 vlib_main_t *vm = vlib_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020056 vl_api_tap_create_v2_reply_t *rmp;
Florin Coras6c4dae22018-01-09 06:39:23 -080057 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +020058 tap_create_if_args_t _a, *ap = &_a;
59
60 memset (ap, 0, sizeof (*ap));
61
Damjan Marion2df39092017-12-04 20:03:37 +010062 ap->id = mp->id;
Damjan Marion8389fb92017-10-13 18:29:53 +020063 if (!mp->use_random_mac)
64 {
Damjan Marion2df39092017-12-04 20:03:37 +010065 clib_memcpy (ap->mac_addr, mp->mac_address, 6);
66 ap->mac_addr_set = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020067 }
Milan Lenco2aef64f2017-12-05 12:18:15 +010068 ap->rx_ring_sz = ntohs (mp->rx_ring_sz);
69 ap->tx_ring_sz = ntohs (mp->tx_ring_sz);
Damjan Marion8389fb92017-10-13 18:29:53 +020070 ap->sw_if_index = (u32) ~ 0;
Damjan Marion8389fb92017-10-13 18:29:53 +020071
Damjan Marion2df39092017-12-04 20:03:37 +010072 if (mp->host_if_name_set)
73 ap->host_if_name = mp->host_if_name;
74
75 if (mp->host_mac_addr_set)
76 {
77 clib_memcpy (ap->host_mac_addr, mp->host_mac_addr, 6);
78 ap->mac_addr_set = 1;
79 }
80
Damjan Marion91c6ef72017-12-01 13:34:24 +010081 if (mp->host_namespace_set)
82 ap->host_namespace = mp->host_namespace;
83
84 if (mp->host_bridge_set)
85 ap->host_bridge = mp->host_bridge;
86
87 if (mp->host_ip4_addr_set)
88 {
89 clib_memcpy (&ap->host_ip4_addr.as_u8, mp->host_ip4_addr, 4);
90 ap->host_ip4_prefix_len = mp->host_ip4_prefix_len;
91 }
92
93 if (mp->host_ip6_addr_set)
94 {
95 clib_memcpy (&ap->host_ip6_addr, mp->host_ip6_addr, 16);
96 ap->host_ip6_prefix_len = mp->host_ip6_prefix_len;
97 }
98
Damjan Marion7866c452018-01-18 13:35:11 +010099 if (mp->host_ip4_gw_set)
100 {
101 clib_memcpy (&ap->host_ip4_gw, mp->host_ip4_gw, 4);
102 ap->host_ip4_gw_set = 1;
103 }
104
105 if (mp->host_ip6_gw_set)
106 {
107 clib_memcpy (&ap->host_ip6_gw, mp->host_ip6_gw, 16);
108 ap->host_ip6_gw_set = 1;
109 }
110
Damjan Marion91c6ef72017-12-01 13:34:24 +0100111 tap_create_if (vm, ap);
Damjan Marion8389fb92017-10-13 18:29:53 +0200112
Florin Coras6c4dae22018-01-09 06:39:23 -0800113 reg = vl_api_client_index_to_registration (mp->client_index);
114 if (!reg)
115 return;;
Damjan Marion8389fb92017-10-13 18:29:53 +0200116
117 rmp = vl_msg_api_alloc (sizeof (*rmp));
118 rmp->_vl_msg_id = ntohs (VL_API_TAP_CREATE_V2_REPLY);
119 rmp->context = mp->context;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100120 rmp->retval = ntohl (ap->rv);
Damjan Marion8389fb92017-10-13 18:29:53 +0200121 rmp->sw_if_index = ntohl (ap->sw_if_index);
122
Florin Coras6c4dae22018-01-09 06:39:23 -0800123 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200124}
125
126static void
127tap_send_sw_interface_event_deleted (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800128 vl_api_registration_t * reg,
129 u32 sw_if_index)
Damjan Marion8389fb92017-10-13 18:29:53 +0200130{
131 vl_api_sw_interface_event_t *mp;
132
133 mp = vl_msg_api_alloc (sizeof (*mp));
134 memset (mp, 0, sizeof (*mp));
135 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
136 mp->sw_if_index = ntohl (sw_if_index);
137
138 mp->admin_up_down = 0;
139 mp->link_up_down = 0;
140 mp->deleted = 1;
Florin Coras6c4dae22018-01-09 06:39:23 -0800141 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200142}
143
144static void
145vl_api_tap_delete_v2_t_handler (vl_api_tap_delete_v2_t * mp)
146{
147 vlib_main_t *vm = vlib_get_main ();
148 int rv;
149 vpe_api_main_t *vam = &vpe_api_main;
150 vl_api_tap_delete_v2_reply_t *rmp;
Florin Coras6c4dae22018-01-09 06:39:23 -0800151 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200152 u32 sw_if_index = ntohl (mp->sw_if_index);
153
154 rv = tap_delete_if (vm, sw_if_index);
155
Florin Coras6c4dae22018-01-09 06:39:23 -0800156 reg = vl_api_client_index_to_registration (mp->client_index);
157 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200158 return;
159
160 rmp = vl_msg_api_alloc (sizeof (*rmp));
161 rmp->_vl_msg_id = ntohs (VL_API_TAP_DELETE_V2_REPLY);
162 rmp->context = mp->context;
163 rmp->retval = ntohl (rv);
164
Florin Coras6c4dae22018-01-09 06:39:23 -0800165 vl_api_send_msg (reg, (u8 *) rmp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200166
167 if (!rv)
Florin Coras6c4dae22018-01-09 06:39:23 -0800168 tap_send_sw_interface_event_deleted (vam, reg, sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200169}
170
171static void
172tap_send_sw_interface_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800173 vl_api_registration_t * reg,
Damjan Marion8389fb92017-10-13 18:29:53 +0200174 tap_interface_details_t * tap_if, u32 context)
175{
176 vl_api_sw_interface_tap_v2_details_t *mp;
177 mp = vl_msg_api_alloc (sizeof (*mp));
178 memset (mp, 0, sizeof (*mp));
Milan Lenco73e7f422017-12-14 10:04:25 +0100179 mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS);
180 mp->id = htonl (tap_if->id);
181 mp->sw_if_index = htonl (tap_if->sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200182 clib_memcpy (mp->dev_name, tap_if->dev_name,
183 MIN (ARRAY_LEN (mp->dev_name) - 1,
184 strlen ((const char *) tap_if->dev_name)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100185 mp->rx_ring_sz = htons (tap_if->rx_ring_sz);
186 mp->tx_ring_sz = htons (tap_if->tx_ring_sz);
187 clib_memcpy (mp->host_mac_addr, tap_if->host_mac_addr, 6);
188 clib_memcpy (mp->host_if_name, tap_if->host_if_name,
189 MIN (ARRAY_LEN (mp->host_if_name) - 1,
190 strlen ((const char *) tap_if->host_if_name)));
191 clib_memcpy (mp->host_namespace, tap_if->host_namespace,
192 MIN (ARRAY_LEN (mp->host_namespace) - 1,
193 strlen ((const char *) tap_if->host_namespace)));
194 clib_memcpy (mp->host_bridge, tap_if->host_bridge,
195 MIN (ARRAY_LEN (mp->host_bridge) - 1,
196 strlen ((const char *) tap_if->host_bridge)));
197 if (tap_if->host_ip4_prefix_len)
198 clib_memcpy (&mp->host_ip4_addr, &tap_if->host_ip4_addr, 4);
199 mp->host_ip4_prefix_len = tap_if->host_ip4_prefix_len;
200 if (tap_if->host_ip6_prefix_len)
201 clib_memcpy (&mp->host_ip6_addr, &tap_if->host_ip6_addr, 16);
202 mp->host_ip6_prefix_len = tap_if->host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200203
Milan Lenco73e7f422017-12-14 10:04:25 +0100204 mp->context = context;
Florin Coras6c4dae22018-01-09 06:39:23 -0800205 vl_api_send_msg (reg, (u8 *) mp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200206}
207
208static void
209vl_api_sw_interface_tap_v2_dump_t_handler (vl_api_sw_interface_tap_v2_dump_t *
210 mp)
211{
212 int rv;
213 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800214 vl_api_registration_t *reg;
Damjan Marion8389fb92017-10-13 18:29:53 +0200215 tap_interface_details_t *tapifs = NULL;
216 tap_interface_details_t *tap_if = NULL;
217
Florin Coras6c4dae22018-01-09 06:39:23 -0800218 reg = vl_api_client_index_to_registration (mp->client_index);
219 if (!reg)
Damjan Marion8389fb92017-10-13 18:29:53 +0200220 return;
221
222 rv = tap_dump_ifs (&tapifs);
223 if (rv)
224 return;
225
226 vec_foreach (tap_if, tapifs)
227 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800228 tap_send_sw_interface_details (am, reg, tap_if, mp->context);
Damjan Marion8389fb92017-10-13 18:29:53 +0200229 }
230
231 vec_free (tapifs);
232}
233
234#define vl_msg_name_crc_list
235#include <vnet/vnet_all_api_h.h>
236#undef vl_msg_name_crc_list
237
238static void
239tap_setup_message_id_table (api_main_t * am)
240{
241#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
242 foreach_vl_msg_name_crc_tapv2;
243#undef _
244}
245
246static clib_error_t *
247tapv2_api_hookup (vlib_main_t * vm)
248{
249 api_main_t *am = &api_main;
250
251#define _(N,n) \
252 vl_msg_api_set_handlers(VL_API_##N, #n, \
253 vl_api_##n##_t_handler, \
254 vl_noop_handler, \
255 vl_api_##n##_t_endian, \
256 vl_api_##n##_t_print, \
257 sizeof(vl_api_##n##_t), 1);
258 foreach_tapv2_api_msg;
259#undef _
260
261 /*
262 * Set up the (msg_name, crc, message-id) table
263 */
264 tap_setup_message_id_table (am);
265
266 return 0;
267}
268
269VLIB_API_INIT_FUNCTION (tapv2_api_hookup);
270
271/*
272 * fd.io coding-style-patch-verification: ON
273 *
274 * Local Variables:
275 * eval: (c-set-style "gnu")
276 * End:
277 */