blob: df6768d4cdeb3ea5993b09761efb1c6f8152c20c [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
Filip Tehlar4f348df2021-06-22 12:18:17 +000030#include <vnet/format_fns.h>
31#include <vnet/devices/virtio/vhost_user.api_enum.h>
32#include <vnet/devices/virtio/vhost_user.api_types.h>
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010033
Filip Tehlar4f348df2021-06-22 12:18:17 +000034#define REPLY_MSG_ID_BASE msg_id_base
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010035#include <vlibapi/api_helper_macros.h>
36
Filip Tehlar4f348df2021-06-22 12:18:17 +000037static u16 msg_id_base;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010038
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010039static void
40vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp)
41{
42 int rv = 0;
43 vl_api_create_vhost_user_if_reply_t *rmp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010044 vnet_main_t *vnm = vnet_get_main ();
45 vlib_main_t *vm = vlib_get_main ();
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020046 u64 disabled_features = (u64) (0ULL);
Steven Luong27ba5002020-11-17 13:30:44 -080047 vhost_user_create_if_args_t args = { 0 };
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020048
Steven Luong27ba5002020-11-17 13:30:44 -080049 args.sw_if_index = (u32) ~ 0;
50 args.feature_mask = (u64) ~ (0ULL);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020051 if (mp->disable_mrg_rxbuf)
Mohsin Kazmia7a22812020-08-31 17:17:16 +020052 disabled_features = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020053
54 if (mp->disable_indirect_desc)
Mohsin Kazmia7a22812020-08-31 17:17:16 +020055 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020056
Steven Luong4208a4c2019-05-06 08:51:56 -070057 /*
Steven Luongbc0d9ff2020-03-23 09:34:59 -070058 * GSO and PACKED are not supported by feature mask via binary API. We
59 * disable GSO and PACKED feature in the feature mask. They may be enabled
60 * explicitly via enable_gso and enable_packed argument
Steven Luong4208a4c2019-05-06 08:51:56 -070061 */
Steven Luongbc0d9ff2020-03-23 09:34:59 -070062 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
Mohsin Kazmia7a22812020-08-31 17:17:16 +020063 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
Steven Luong27ba5002020-11-17 13:30:44 -080064
65 /* EVENT_IDX is disabled by default */
66 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
67 args.feature_mask &= ~disabled_features;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010068
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020069 if (mp->use_custom_mac)
Steven Luong27ba5002020-11-17 13:30:44 -080070 mac_address_decode (mp->mac_address, (mac_address_t *) args.hwaddr);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020071
Steven Luongd6361c72021-01-26 23:44:19 -080072 args.use_custom_mac = mp->use_custom_mac;
Steven Luong27ba5002020-11-17 13:30:44 -080073 args.is_server = mp->is_server;
74 args.sock_filename = (char *) mp->sock_filename;
75 args.renumber = mp->renumber;
76 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
77 args.enable_gso = mp->enable_gso;
78 args.enable_packed = mp->enable_packed;
79 rv = vhost_user_create_if (vnm, vm, &args);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010080
81 /* Remember an interface tag for the new interface */
82 if (rv == 0)
83 {
84 /* If a tag was supplied... */
85 if (mp->tag[0])
86 {
87 /* Make sure it's a proper C-string */
88 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
89 u8 *tag = format (0, "%s%c", mp->tag, 0);
Steven Luong27ba5002020-11-17 13:30:44 -080090 vnet_set_sw_interface_tag (vnm, tag, args.sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010091 }
92 }
93
94 /* *INDENT-OFF* */
95 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
96 ({
Steven Luong27ba5002020-11-17 13:30:44 -080097 rmp->sw_if_index = ntohl (args.sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010098 }));
99 /* *INDENT-ON* */
100}
101
102static void
103vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
104{
105 int rv = 0;
106 vl_api_modify_vhost_user_if_reply_t *rmp;
Steven Luong4208a4c2019-05-06 08:51:56 -0700107 u64 disabled_features = (u64) (0ULL);
Steven Luong27ba5002020-11-17 13:30:44 -0800108 vhost_user_create_if_args_t args = { 0 };
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100109 vnet_main_t *vnm = vnet_get_main ();
110 vlib_main_t *vm = vlib_get_main ();
111
Steven Luong27ba5002020-11-17 13:30:44 -0800112 args.feature_mask = (u64) ~ (0ULL);
113 /*
114 * GSO and PACKED are not supported by feature mask via binary API. We
115 * disable GSO and PACKED feature in the feature mask. They may be enabled
116 * explicitly via enable_gso and enable_packed argument
117 */
118 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
119 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
120
121 /* EVENT_IDX is disabled by default */
122 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
123 args.feature_mask &= ~disabled_features;
124
125 args.sw_if_index = ntohl (mp->sw_if_index);
126 args.sock_filename = (char *) mp->sock_filename;
127 args.is_server = mp->is_server;
128 args.renumber = mp->renumber;
129 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
130 args.enable_gso = mp->enable_gso;
131 args.enable_packed = mp->enable_packed;
132 rv = vhost_user_modify_if (vnm, vm, &args);
133
134 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
135}
136
137static void
138vl_api_create_vhost_user_if_v2_t_handler (vl_api_create_vhost_user_if_v2_t *
139 mp)
140{
141 int rv = 0;
142 vl_api_create_vhost_user_if_v2_reply_t *rmp;
143 vnet_main_t *vnm = vnet_get_main ();
144 vlib_main_t *vm = vlib_get_main ();
145 u64 disabled_features = (u64) (0ULL);
146 vhost_user_create_if_args_t args = { 0 };
147
148 args.sw_if_index = (u32) ~ 0;
149 args.feature_mask = (u64) ~ (0ULL);
150 if (mp->disable_mrg_rxbuf)
151 disabled_features = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
152
153 if (mp->disable_indirect_desc)
154 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
155
Steven Luong4208a4c2019-05-06 08:51:56 -0700156 /*
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700157 * GSO and PACKED are not supported by feature mask via binary API. We
158 * disable GSO and PACKED feature in the feature mask. They may be enabled
159 * explicitly via enable_gso and enable_packed argument
Steven Luong4208a4c2019-05-06 08:51:56 -0700160 */
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700161 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200162 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
Steven Luong4208a4c2019-05-06 08:51:56 -0700163
Steven Luong27ba5002020-11-17 13:30:44 -0800164 /* EVENT_IDX is disabled by default */
165 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
166 args.feature_mask &= ~disabled_features;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100167
Steven Luong27ba5002020-11-17 13:30:44 -0800168 if (mp->use_custom_mac)
169 mac_address_decode (mp->mac_address, (mac_address_t *) args.hwaddr);
170
171 args.is_server = mp->is_server;
172 args.sock_filename = (char *) mp->sock_filename;
173 args.renumber = mp->renumber;
174 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
175 args.enable_gso = mp->enable_gso;
176 args.enable_packed = mp->enable_packed;
177 args.enable_event_idx = mp->enable_event_idx;
178 rv = vhost_user_create_if (vnm, vm, &args);
179
180 /* Remember an interface tag for the new interface */
181 if (rv == 0)
182 {
183 /* If a tag was supplied... */
184 if (mp->tag[0])
185 {
186 /* Make sure it's a proper C-string */
187 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
188 u8 *tag = format (0, "%s%c", mp->tag, 0);
189 vnet_set_sw_interface_tag (vnm, tag, args.sw_if_index);
190 }
191 }
192
193 /* *INDENT-OFF* */
194 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_V2_REPLY,
195 ({
196 rmp->sw_if_index = ntohl (args.sw_if_index);
197 }));
198 /* *INDENT-ON* */
199}
200
201static void
202vl_api_modify_vhost_user_if_v2_t_handler (vl_api_modify_vhost_user_if_v2_t *
203 mp)
204{
205 int rv = 0;
206 vl_api_modify_vhost_user_if_v2_reply_t *rmp;
207 u64 disabled_features = (u64) (0ULL);
208 vhost_user_create_if_args_t args = { 0 };
209 vnet_main_t *vnm = vnet_get_main ();
210 vlib_main_t *vm = vlib_get_main ();
211
212 args.feature_mask = (u64) ~ (0ULL);
213 /*
214 * GSO and PACKED are not supported by feature mask via binary API. We
215 * disable GSO and PACKED feature in the feature mask. They may be enabled
216 * explicitly via enable_gso and enable_packed argument
217 */
218 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
219 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
220
221 /* EVENT_IDX is disabled by default */
222 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
223 args.feature_mask &= ~disabled_features;
224
225 args.sw_if_index = ntohl (mp->sw_if_index);
226 args.sock_filename = (char *) mp->sock_filename;
227 args.is_server = mp->is_server;
228 args.renumber = mp->renumber;
229 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
230 args.enable_gso = mp->enable_gso;
231 args.enable_packed = mp->enable_packed;
232 args.enable_event_idx = mp->enable_event_idx;
233 rv = vhost_user_modify_if (vnm, vm, &args);
234
235 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_V2_REPLY);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100236}
237
238static void
239vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
240{
241 int rv = 0;
242 vl_api_delete_vhost_user_if_reply_t *rmp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100243 u32 sw_if_index = ntohl (mp->sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800244 vl_api_registration_t *reg;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100245
246 vnet_main_t *vnm = vnet_get_main ();
247 vlib_main_t *vm = vlib_get_main ();
248
249 rv = vhost_user_delete_if (vnm, vm, sw_if_index);
250
251 REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
252 if (!rv)
253 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800254 reg = vl_api_client_index_to_registration (mp->client_index);
255 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100256 return;
257
258 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100259 }
260}
261
262static void
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100263send_sw_interface_vhost_user_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800264 vl_api_registration_t * reg,
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100265 vhost_user_intf_details_t * vui,
266 u32 context)
267{
268 vl_api_sw_interface_vhost_user_details_t *mp;
269
270 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400271 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar4f348df2021-06-22 12:18:17 +0000272 mp->_vl_msg_id =
273 ntohs (REPLY_MSG_ID_BASE + VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100274 mp->sw_if_index = ntohl (vui->sw_if_index);
275 mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200276 virtio_features_encode (vui->features, (u32 *) & mp->features_first_32,
277 (u32 *) & mp->features_last_32);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100278 mp->is_server = vui->is_server;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100279 mp->num_regions = ntohl (vui->num_regions);
280 mp->sock_errno = ntohl (vui->sock_errno);
281 mp->context = context;
282
283 strncpy ((char *) mp->sock_filename,
284 (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
285 strncpy ((char *) mp->interface_name,
286 (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
287
Florin Coras6c4dae22018-01-09 06:39:23 -0800288 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100289}
290
291static void
292 vl_api_sw_interface_vhost_user_dump_t_handler
293 (vl_api_sw_interface_vhost_user_dump_t * mp)
294{
295 int rv = 0;
296 vpe_api_main_t *am = &vpe_api_main;
297 vnet_main_t *vnm = vnet_get_main ();
298 vlib_main_t *vm = vlib_get_main ();
299 vhost_user_intf_details_t *ifaces = NULL;
300 vhost_user_intf_details_t *vuid = NULL;
Florin Coras6c4dae22018-01-09 06:39:23 -0800301 vl_api_registration_t *reg;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200302 u32 filter_sw_if_index;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100303
Florin Coras6c4dae22018-01-09 06:39:23 -0800304 reg = vl_api_client_index_to_registration (mp->client_index);
305 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100306 return;
307
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200308 filter_sw_if_index = htonl (mp->sw_if_index);
309 if (filter_sw_if_index != ~0)
Steven Luonga0e8d962020-05-18 17:12:56 -0700310 VALIDATE_SW_IF_INDEX (mp);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200311
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100312 rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
313 if (rv)
314 return;
315
316 vec_foreach (vuid, ifaces)
317 {
Steven Luonga0e8d962020-05-18 17:12:56 -0700318 if ((filter_sw_if_index == ~0) ||
319 (vuid->sw_if_index == filter_sw_if_index))
320 send_sw_interface_vhost_user_details (am, reg, vuid, mp->context);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100321 }
Steven Luonga0e8d962020-05-18 17:12:56 -0700322 BAD_SW_IF_INDEX_LABEL;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100323 vec_free (ifaces);
324}
325
Filip Tehlar4f348df2021-06-22 12:18:17 +0000326#include <vnet/devices/virtio/vhost_user.api.c>
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100327static clib_error_t *
328vhost_user_api_hookup (vlib_main_t * vm)
329{
Dave Barach39d69112019-11-27 11:42:13 -0500330 api_main_t *am = vlibapi_get_main ();
Steven Luong67f935e2019-02-01 10:23:56 -0800331 /* Mark CREATE_VHOST_USER_IF as mp safe */
332 am->is_mp_safe[VL_API_CREATE_VHOST_USER_IF] = 1;
Steven Luong27ba5002020-11-17 13:30:44 -0800333 am->is_mp_safe[VL_API_CREATE_VHOST_USER_IF_V2] = 1;
Steven Luong67f935e2019-02-01 10:23:56 -0800334
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100335 /*
336 * Set up the (msg_name, crc, message-id) table
337 */
Filip Tehlar4f348df2021-06-22 12:18:17 +0000338 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100339
340 return 0;
341}
342
343VLIB_API_INIT_FUNCTION (vhost_user_api_hookup);
344
345/*
346 * fd.io coding-style-patch-verification: ON
347 *
348 * Local Variables:
349 * eval: (c-set-style "gnu")
350 * End:
351 */