blob: 86656883bd82df4448ced297a8a5338ec052aaaf [file] [log] [blame]
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +01001/*
2 *------------------------------------------------------------------
3 * vhost-user_api.c - vhost-user api
4 *
5 * Copyright (c) 2016 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>
Mohsin Kazmie7cde312018-06-26 17:20:11 +020025#include <vnet/devices/virtio/vhost_user.h>
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020026#include <vnet/ethernet/ethernet.h>
27#include <vnet/ethernet/ethernet_types_api.h>
28#include <vnet/devices/virtio/virtio_types_api.h>
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010029
30#include <vnet/vnet_msg_enum.h>
31
32#define vl_typedefs /* define message structures */
33#include <vnet/vnet_all_api_h.h>
34#undef vl_typedefs
35
36#define vl_endianfun /* define message structures */
37#include <vnet/vnet_all_api_h.h>
38#undef vl_endianfun
39
40/* instantiate all the print functions we know about */
41#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
42#define vl_printfun
43#include <vnet/vnet_all_api_h.h>
44#undef vl_printfun
45
46#include <vlibapi/api_helper_macros.h>
47
48#define foreach_vpe_api_msg \
49_(CREATE_VHOST_USER_IF, create_vhost_user_if) \
50_(MODIFY_VHOST_USER_IF, modify_vhost_user_if) \
Steven Luong27ba5002020-11-17 13:30:44 -080051_(CREATE_VHOST_USER_IF_V2, create_vhost_user_if_v2) \
52_(MODIFY_VHOST_USER_IF_V2, modify_vhost_user_if_v2) \
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010053_(DELETE_VHOST_USER_IF, delete_vhost_user_if) \
Dave Baracha1a093d2017-03-02 13:13:23 -050054_(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010055
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010056static void
57vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp)
58{
59 int rv = 0;
60 vl_api_create_vhost_user_if_reply_t *rmp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010061 vnet_main_t *vnm = vnet_get_main ();
62 vlib_main_t *vm = vlib_get_main ();
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020063 u64 disabled_features = (u64) (0ULL);
Steven Luong27ba5002020-11-17 13:30:44 -080064 vhost_user_create_if_args_t args = { 0 };
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020065
Steven Luong27ba5002020-11-17 13:30:44 -080066 args.sw_if_index = (u32) ~ 0;
67 args.feature_mask = (u64) ~ (0ULL);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020068 if (mp->disable_mrg_rxbuf)
Mohsin Kazmia7a22812020-08-31 17:17:16 +020069 disabled_features = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020070
71 if (mp->disable_indirect_desc)
Mohsin Kazmia7a22812020-08-31 17:17:16 +020072 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020073
Steven Luong4208a4c2019-05-06 08:51:56 -070074 /*
Steven Luongbc0d9ff2020-03-23 09:34:59 -070075 * GSO and PACKED are not supported by feature mask via binary API. We
76 * disable GSO and PACKED feature in the feature mask. They may be enabled
77 * explicitly via enable_gso and enable_packed argument
Steven Luong4208a4c2019-05-06 08:51:56 -070078 */
Steven Luongbc0d9ff2020-03-23 09:34:59 -070079 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
Mohsin Kazmia7a22812020-08-31 17:17:16 +020080 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
Steven Luong27ba5002020-11-17 13:30:44 -080081
82 /* EVENT_IDX is disabled by default */
83 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
84 args.feature_mask &= ~disabled_features;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010085
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020086 if (mp->use_custom_mac)
Steven Luong27ba5002020-11-17 13:30:44 -080087 mac_address_decode (mp->mac_address, (mac_address_t *) args.hwaddr);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020088
Steven Luongd6361c72021-01-26 23:44:19 -080089 args.use_custom_mac = mp->use_custom_mac;
Steven Luong27ba5002020-11-17 13:30:44 -080090 args.is_server = mp->is_server;
91 args.sock_filename = (char *) mp->sock_filename;
92 args.renumber = mp->renumber;
93 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
94 args.enable_gso = mp->enable_gso;
95 args.enable_packed = mp->enable_packed;
96 rv = vhost_user_create_if (vnm, vm, &args);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010097
98 /* Remember an interface tag for the new interface */
99 if (rv == 0)
100 {
101 /* If a tag was supplied... */
102 if (mp->tag[0])
103 {
104 /* Make sure it's a proper C-string */
105 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
106 u8 *tag = format (0, "%s%c", mp->tag, 0);
Steven Luong27ba5002020-11-17 13:30:44 -0800107 vnet_set_sw_interface_tag (vnm, tag, args.sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100108 }
109 }
110
111 /* *INDENT-OFF* */
112 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
113 ({
Steven Luong27ba5002020-11-17 13:30:44 -0800114 rmp->sw_if_index = ntohl (args.sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100115 }));
116 /* *INDENT-ON* */
117}
118
119static void
120vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
121{
122 int rv = 0;
123 vl_api_modify_vhost_user_if_reply_t *rmp;
Steven Luong4208a4c2019-05-06 08:51:56 -0700124 u64 disabled_features = (u64) (0ULL);
Steven Luong27ba5002020-11-17 13:30:44 -0800125 vhost_user_create_if_args_t args = { 0 };
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100126 vnet_main_t *vnm = vnet_get_main ();
127 vlib_main_t *vm = vlib_get_main ();
128
Steven Luong27ba5002020-11-17 13:30:44 -0800129 args.feature_mask = (u64) ~ (0ULL);
130 /*
131 * GSO and PACKED are not supported by feature mask via binary API. We
132 * disable GSO and PACKED feature in the feature mask. They may be enabled
133 * explicitly via enable_gso and enable_packed argument
134 */
135 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
136 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
137
138 /* EVENT_IDX is disabled by default */
139 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
140 args.feature_mask &= ~disabled_features;
141
142 args.sw_if_index = ntohl (mp->sw_if_index);
143 args.sock_filename = (char *) mp->sock_filename;
144 args.is_server = mp->is_server;
145 args.renumber = mp->renumber;
146 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
147 args.enable_gso = mp->enable_gso;
148 args.enable_packed = mp->enable_packed;
149 rv = vhost_user_modify_if (vnm, vm, &args);
150
151 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
152}
153
154static void
155vl_api_create_vhost_user_if_v2_t_handler (vl_api_create_vhost_user_if_v2_t *
156 mp)
157{
158 int rv = 0;
159 vl_api_create_vhost_user_if_v2_reply_t *rmp;
160 vnet_main_t *vnm = vnet_get_main ();
161 vlib_main_t *vm = vlib_get_main ();
162 u64 disabled_features = (u64) (0ULL);
163 vhost_user_create_if_args_t args = { 0 };
164
165 args.sw_if_index = (u32) ~ 0;
166 args.feature_mask = (u64) ~ (0ULL);
167 if (mp->disable_mrg_rxbuf)
168 disabled_features = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
169
170 if (mp->disable_indirect_desc)
171 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
172
Steven Luong4208a4c2019-05-06 08:51:56 -0700173 /*
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700174 * GSO and PACKED are not supported by feature mask via binary API. We
175 * disable GSO and PACKED feature in the feature mask. They may be enabled
176 * explicitly via enable_gso and enable_packed argument
Steven Luong4208a4c2019-05-06 08:51:56 -0700177 */
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700178 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200179 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
Steven Luong4208a4c2019-05-06 08:51:56 -0700180
Steven Luong27ba5002020-11-17 13:30:44 -0800181 /* EVENT_IDX is disabled by default */
182 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
183 args.feature_mask &= ~disabled_features;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100184
Steven Luong27ba5002020-11-17 13:30:44 -0800185 if (mp->use_custom_mac)
186 mac_address_decode (mp->mac_address, (mac_address_t *) args.hwaddr);
187
188 args.is_server = mp->is_server;
189 args.sock_filename = (char *) mp->sock_filename;
190 args.renumber = mp->renumber;
191 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
192 args.enable_gso = mp->enable_gso;
193 args.enable_packed = mp->enable_packed;
194 args.enable_event_idx = mp->enable_event_idx;
195 rv = vhost_user_create_if (vnm, vm, &args);
196
197 /* Remember an interface tag for the new interface */
198 if (rv == 0)
199 {
200 /* If a tag was supplied... */
201 if (mp->tag[0])
202 {
203 /* Make sure it's a proper C-string */
204 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
205 u8 *tag = format (0, "%s%c", mp->tag, 0);
206 vnet_set_sw_interface_tag (vnm, tag, args.sw_if_index);
207 }
208 }
209
210 /* *INDENT-OFF* */
211 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_V2_REPLY,
212 ({
213 rmp->sw_if_index = ntohl (args.sw_if_index);
214 }));
215 /* *INDENT-ON* */
216}
217
218static void
219vl_api_modify_vhost_user_if_v2_t_handler (vl_api_modify_vhost_user_if_v2_t *
220 mp)
221{
222 int rv = 0;
223 vl_api_modify_vhost_user_if_v2_reply_t *rmp;
224 u64 disabled_features = (u64) (0ULL);
225 vhost_user_create_if_args_t args = { 0 };
226 vnet_main_t *vnm = vnet_get_main ();
227 vlib_main_t *vm = vlib_get_main ();
228
229 args.feature_mask = (u64) ~ (0ULL);
230 /*
231 * GSO and PACKED are not supported by feature mask via binary API. We
232 * disable GSO and PACKED feature in the feature mask. They may be enabled
233 * explicitly via enable_gso and enable_packed argument
234 */
235 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
236 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
237
238 /* EVENT_IDX is disabled by default */
239 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
240 args.feature_mask &= ~disabled_features;
241
242 args.sw_if_index = ntohl (mp->sw_if_index);
243 args.sock_filename = (char *) mp->sock_filename;
244 args.is_server = mp->is_server;
245 args.renumber = mp->renumber;
246 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
247 args.enable_gso = mp->enable_gso;
248 args.enable_packed = mp->enable_packed;
249 args.enable_event_idx = mp->enable_event_idx;
250 rv = vhost_user_modify_if (vnm, vm, &args);
251
252 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_V2_REPLY);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100253}
254
255static void
256vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
257{
258 int rv = 0;
259 vl_api_delete_vhost_user_if_reply_t *rmp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100260 u32 sw_if_index = ntohl (mp->sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800261 vl_api_registration_t *reg;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100262
263 vnet_main_t *vnm = vnet_get_main ();
264 vlib_main_t *vm = vlib_get_main ();
265
266 rv = vhost_user_delete_if (vnm, vm, sw_if_index);
267
268 REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
269 if (!rv)
270 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800271 reg = vl_api_client_index_to_registration (mp->client_index);
272 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100273 return;
274
275 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100276 }
277}
278
279static void
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100280send_sw_interface_vhost_user_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800281 vl_api_registration_t * reg,
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100282 vhost_user_intf_details_t * vui,
283 u32 context)
284{
285 vl_api_sw_interface_vhost_user_details_t *mp;
286
287 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400288 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100289 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
290 mp->sw_if_index = ntohl (vui->sw_if_index);
291 mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200292 virtio_features_encode (vui->features, (u32 *) & mp->features_first_32,
293 (u32 *) & mp->features_last_32);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100294 mp->is_server = vui->is_server;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100295 mp->num_regions = ntohl (vui->num_regions);
296 mp->sock_errno = ntohl (vui->sock_errno);
297 mp->context = context;
298
299 strncpy ((char *) mp->sock_filename,
300 (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
301 strncpy ((char *) mp->interface_name,
302 (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
303
Florin Coras6c4dae22018-01-09 06:39:23 -0800304 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100305}
306
307static void
308 vl_api_sw_interface_vhost_user_dump_t_handler
309 (vl_api_sw_interface_vhost_user_dump_t * mp)
310{
311 int rv = 0;
312 vpe_api_main_t *am = &vpe_api_main;
313 vnet_main_t *vnm = vnet_get_main ();
314 vlib_main_t *vm = vlib_get_main ();
315 vhost_user_intf_details_t *ifaces = NULL;
316 vhost_user_intf_details_t *vuid = NULL;
Florin Coras6c4dae22018-01-09 06:39:23 -0800317 vl_api_registration_t *reg;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200318 u32 filter_sw_if_index;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100319
Florin Coras6c4dae22018-01-09 06:39:23 -0800320 reg = vl_api_client_index_to_registration (mp->client_index);
321 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100322 return;
323
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200324 filter_sw_if_index = htonl (mp->sw_if_index);
325 if (filter_sw_if_index != ~0)
Steven Luonga0e8d962020-05-18 17:12:56 -0700326 VALIDATE_SW_IF_INDEX (mp);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200327
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100328 rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
329 if (rv)
330 return;
331
332 vec_foreach (vuid, ifaces)
333 {
Steven Luonga0e8d962020-05-18 17:12:56 -0700334 if ((filter_sw_if_index == ~0) ||
335 (vuid->sw_if_index == filter_sw_if_index))
336 send_sw_interface_vhost_user_details (am, reg, vuid, mp->context);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100337 }
Steven Luonga0e8d962020-05-18 17:12:56 -0700338 BAD_SW_IF_INDEX_LABEL;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100339 vec_free (ifaces);
340}
341
342/*
343 * vhost-user_api_hookup
344 * Add vpe's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -0500345 * vlib has already mapped shared memory and
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100346 * added the client registration handlers.
347 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
348 */
349#define vl_msg_name_crc_list
350#include <vnet/vnet_all_api_h.h>
351#undef vl_msg_name_crc_list
352
353static void
354setup_message_id_table (api_main_t * am)
355{
356#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
357 foreach_vl_msg_name_crc_vhost_user;
358#undef _
359}
360
361static clib_error_t *
362vhost_user_api_hookup (vlib_main_t * vm)
363{
Dave Barach39d69112019-11-27 11:42:13 -0500364 api_main_t *am = vlibapi_get_main ();
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100365
366#define _(N,n) \
367 vl_msg_api_set_handlers(VL_API_##N, #n, \
368 vl_api_##n##_t_handler, \
369 vl_noop_handler, \
370 vl_api_##n##_t_endian, \
371 vl_api_##n##_t_print, \
372 sizeof(vl_api_##n##_t), 1);
373 foreach_vpe_api_msg;
374#undef _
375
Steven Luong67f935e2019-02-01 10:23:56 -0800376 /* Mark CREATE_VHOST_USER_IF as mp safe */
377 am->is_mp_safe[VL_API_CREATE_VHOST_USER_IF] = 1;
Steven Luong27ba5002020-11-17 13:30:44 -0800378 am->is_mp_safe[VL_API_CREATE_VHOST_USER_IF_V2] = 1;
Steven Luong67f935e2019-02-01 10:23:56 -0800379
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100380 /*
381 * Set up the (msg_name, crc, message-id) table
382 */
383 setup_message_id_table (am);
384
385 return 0;
386}
387
388VLIB_API_INIT_FUNCTION (vhost_user_api_hookup);
389
390/*
391 * fd.io coding-style-patch-verification: ON
392 *
393 * Local Variables:
394 * eval: (c-set-style "gnu")
395 * End:
396 */