blob: cc1896b108a971b272db3cf5371c5ff2b58acf9c [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
Fahad Naeem08183d72022-04-04 10:31:04 -0400171 args.use_custom_mac = mp->use_custom_mac;
Steven Luong27ba5002020-11-17 13:30:44 -0800172 args.is_server = mp->is_server;
173 args.sock_filename = (char *) mp->sock_filename;
174 args.renumber = mp->renumber;
175 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
176 args.enable_gso = mp->enable_gso;
177 args.enable_packed = mp->enable_packed;
178 args.enable_event_idx = mp->enable_event_idx;
179 rv = vhost_user_create_if (vnm, vm, &args);
180
181 /* Remember an interface tag for the new interface */
182 if (rv == 0)
183 {
184 /* If a tag was supplied... */
185 if (mp->tag[0])
186 {
187 /* Make sure it's a proper C-string */
188 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
189 u8 *tag = format (0, "%s%c", mp->tag, 0);
190 vnet_set_sw_interface_tag (vnm, tag, args.sw_if_index);
191 }
192 }
193
194 /* *INDENT-OFF* */
195 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_V2_REPLY,
196 ({
197 rmp->sw_if_index = ntohl (args.sw_if_index);
198 }));
199 /* *INDENT-ON* */
200}
201
202static void
203vl_api_modify_vhost_user_if_v2_t_handler (vl_api_modify_vhost_user_if_v2_t *
204 mp)
205{
206 int rv = 0;
207 vl_api_modify_vhost_user_if_v2_reply_t *rmp;
208 u64 disabled_features = (u64) (0ULL);
209 vhost_user_create_if_args_t args = { 0 };
210 vnet_main_t *vnm = vnet_get_main ();
211 vlib_main_t *vm = vlib_get_main ();
212
213 args.feature_mask = (u64) ~ (0ULL);
214 /*
215 * GSO and PACKED are not supported by feature mask via binary API. We
216 * disable GSO and PACKED feature in the feature mask. They may be enabled
217 * explicitly via enable_gso and enable_packed argument
218 */
219 disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS |
220 VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
221
222 /* EVENT_IDX is disabled by default */
223 disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
224 args.feature_mask &= ~disabled_features;
225
226 args.sw_if_index = ntohl (mp->sw_if_index);
227 args.sock_filename = (char *) mp->sock_filename;
228 args.is_server = mp->is_server;
229 args.renumber = mp->renumber;
230 args.custom_dev_instance = ntohl (mp->custom_dev_instance);
231 args.enable_gso = mp->enable_gso;
232 args.enable_packed = mp->enable_packed;
233 args.enable_event_idx = mp->enable_event_idx;
234 rv = vhost_user_modify_if (vnm, vm, &args);
235
236 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_V2_REPLY);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100237}
238
239static void
240vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
241{
242 int rv = 0;
243 vl_api_delete_vhost_user_if_reply_t *rmp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100244 u32 sw_if_index = ntohl (mp->sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800245 vl_api_registration_t *reg;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100246
247 vnet_main_t *vnm = vnet_get_main ();
248 vlib_main_t *vm = vlib_get_main ();
249
250 rv = vhost_user_delete_if (vnm, vm, sw_if_index);
251
252 REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
253 if (!rv)
254 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800255 reg = vl_api_client_index_to_registration (mp->client_index);
256 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100257 return;
258
259 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100260 }
261}
262
263static void
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100264send_sw_interface_vhost_user_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800265 vl_api_registration_t * reg,
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100266 vhost_user_intf_details_t * vui,
267 u32 context)
268{
269 vl_api_sw_interface_vhost_user_details_t *mp;
270
271 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400272 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlar4f348df2021-06-22 12:18:17 +0000273 mp->_vl_msg_id =
274 ntohs (REPLY_MSG_ID_BASE + VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100275 mp->sw_if_index = ntohl (vui->sw_if_index);
276 mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200277 virtio_features_encode (vui->features, (u32 *) & mp->features_first_32,
278 (u32 *) & mp->features_last_32);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100279 mp->is_server = vui->is_server;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100280 mp->num_regions = ntohl (vui->num_regions);
281 mp->sock_errno = ntohl (vui->sock_errno);
282 mp->context = context;
283
284 strncpy ((char *) mp->sock_filename,
285 (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
286 strncpy ((char *) mp->interface_name,
287 (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
288
Florin Coras6c4dae22018-01-09 06:39:23 -0800289 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100290}
291
292static void
293 vl_api_sw_interface_vhost_user_dump_t_handler
294 (vl_api_sw_interface_vhost_user_dump_t * mp)
295{
296 int rv = 0;
297 vpe_api_main_t *am = &vpe_api_main;
298 vnet_main_t *vnm = vnet_get_main ();
299 vlib_main_t *vm = vlib_get_main ();
300 vhost_user_intf_details_t *ifaces = NULL;
301 vhost_user_intf_details_t *vuid = NULL;
Florin Coras6c4dae22018-01-09 06:39:23 -0800302 vl_api_registration_t *reg;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200303 u32 filter_sw_if_index;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100304
Florin Coras6c4dae22018-01-09 06:39:23 -0800305 reg = vl_api_client_index_to_registration (mp->client_index);
306 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100307 return;
308
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200309 filter_sw_if_index = htonl (mp->sw_if_index);
310 if (filter_sw_if_index != ~0)
Steven Luonga0e8d962020-05-18 17:12:56 -0700311 VALIDATE_SW_IF_INDEX (mp);
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200312
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100313 rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
314 if (rv)
315 return;
316
317 vec_foreach (vuid, ifaces)
318 {
Steven Luonga0e8d962020-05-18 17:12:56 -0700319 if ((filter_sw_if_index == ~0) ||
320 (vuid->sw_if_index == filter_sw_if_index))
321 send_sw_interface_vhost_user_details (am, reg, vuid, mp->context);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100322 }
Steven Luonga0e8d962020-05-18 17:12:56 -0700323 BAD_SW_IF_INDEX_LABEL;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100324 vec_free (ifaces);
325}
326
Filip Tehlar4f348df2021-06-22 12:18:17 +0000327#include <vnet/devices/virtio/vhost_user.api.c>
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100328static clib_error_t *
329vhost_user_api_hookup (vlib_main_t * vm)
330{
Dave Barach39d69112019-11-27 11:42:13 -0500331 api_main_t *am = vlibapi_get_main ();
Steven Luong67f935e2019-02-01 10:23:56 -0800332 /* Mark CREATE_VHOST_USER_IF as mp safe */
Damjan Marioncada9eb2022-05-18 22:16:11 +0200333 vl_api_set_msg_thread_safe (am, VL_API_CREATE_VHOST_USER_IF, 1);
334 vl_api_set_msg_thread_safe (am, VL_API_CREATE_VHOST_USER_IF_V2, 1);
Steven Luong67f935e2019-02-01 10:23:56 -0800335
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100336 /*
337 * Set up the (msg_name, crc, message-id) table
338 */
Filip Tehlar4f348df2021-06-22 12:18:17 +0000339 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100340
341 return 0;
342}
343
344VLIB_API_INIT_FUNCTION (vhost_user_api_hookup);
345
346/*
347 * fd.io coding-style-patch-verification: ON
348 *
349 * Local Variables:
350 * eval: (c-set-style "gnu")
351 * End:
352 */