Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 1 | /* |
| 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 Kazmi | e7cde31 | 2018-06-26 17:20:11 +0200 | [diff] [blame] | 25 | #include <vnet/devices/virtio/vhost_user.h> |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 26 | #include <vnet/ethernet/ethernet.h> |
| 27 | #include <vnet/ethernet/ethernet_types_api.h> |
| 28 | #include <vnet/devices/virtio/virtio_types_api.h> |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 29 | |
| 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) \ |
| 51 | _(DELETE_VHOST_USER_IF, delete_vhost_user_if) \ |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 52 | _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump) |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 53 | |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 54 | static void |
| 55 | vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp) |
| 56 | { |
| 57 | int rv = 0; |
| 58 | vl_api_create_vhost_user_if_reply_t *rmp; |
| 59 | u32 sw_if_index = (u32) ~ 0; |
| 60 | vnet_main_t *vnm = vnet_get_main (); |
| 61 | vlib_main_t *vm = vlib_get_main (); |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 62 | u64 features = (u64) ~ (0ULL); |
| 63 | u64 disabled_features = (u64) (0ULL); |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 64 | mac_address_t mac; |
| 65 | u8 *mac_p = NULL; |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 66 | |
| 67 | if (mp->disable_mrg_rxbuf) |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame^] | 68 | disabled_features = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF); |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 69 | |
| 70 | if (mp->disable_indirect_desc) |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame^] | 71 | disabled_features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC); |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 72 | |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 73 | /* |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 74 | * GSO and PACKED are not supported by feature mask via binary API. We |
| 75 | * disable GSO and PACKED feature in the feature mask. They may be enabled |
| 76 | * explicitly via enable_gso and enable_packed argument |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 77 | */ |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 78 | disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame^] | 79 | VIRTIO_FEATURE (VIRTIO_F_RING_PACKED); |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 80 | features &= ~disabled_features; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 81 | |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 82 | if (mp->use_custom_mac) |
| 83 | { |
| 84 | mac_address_decode (mp->mac_address, &mac); |
| 85 | mac_p = (u8 *) & mac; |
| 86 | } |
| 87 | |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 88 | rv = vhost_user_create_if (vnm, vm, (char *) mp->sock_filename, |
Mohsin Kazmi | ee2e58f | 2018-08-21 16:07:03 +0200 | [diff] [blame] | 89 | mp->is_server, &sw_if_index, features, |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 90 | mp->renumber, ntohl (mp->custom_dev_instance), |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 91 | mac_p, mp->enable_gso, mp->enable_packed); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 92 | |
| 93 | /* Remember an interface tag for the new interface */ |
| 94 | if (rv == 0) |
| 95 | { |
| 96 | /* If a tag was supplied... */ |
| 97 | if (mp->tag[0]) |
| 98 | { |
| 99 | /* Make sure it's a proper C-string */ |
| 100 | mp->tag[ARRAY_LEN (mp->tag) - 1] = 0; |
| 101 | u8 *tag = format (0, "%s%c", mp->tag, 0); |
| 102 | vnet_set_sw_interface_tag (vnm, tag, sw_if_index); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | /* *INDENT-OFF* */ |
| 107 | REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY, |
| 108 | ({ |
| 109 | rmp->sw_if_index = ntohl (sw_if_index); |
| 110 | })); |
| 111 | /* *INDENT-ON* */ |
| 112 | } |
| 113 | |
| 114 | static void |
| 115 | vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp) |
| 116 | { |
| 117 | int rv = 0; |
| 118 | vl_api_modify_vhost_user_if_reply_t *rmp; |
| 119 | u32 sw_if_index = ntohl (mp->sw_if_index); |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 120 | u64 features = (u64) ~ (0ULL); |
| 121 | u64 disabled_features = (u64) (0ULL); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 122 | |
| 123 | vnet_main_t *vnm = vnet_get_main (); |
| 124 | vlib_main_t *vm = vlib_get_main (); |
| 125 | |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 126 | /* |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 127 | * GSO and PACKED are not supported by feature mask via binary API. We |
| 128 | * disable GSO and PACKED feature in the feature mask. They may be enabled |
| 129 | * explicitly via enable_gso and enable_packed argument |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 130 | */ |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 131 | disabled_features |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame^] | 132 | VIRTIO_FEATURE (VIRTIO_F_RING_PACKED); |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 133 | features &= ~disabled_features; |
| 134 | |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 135 | rv = vhost_user_modify_if (vnm, vm, (char *) mp->sock_filename, |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 136 | mp->is_server, sw_if_index, features, |
| 137 | mp->renumber, ntohl (mp->custom_dev_instance), |
Steven Luong | bc0d9ff | 2020-03-23 09:34:59 -0700 | [diff] [blame] | 138 | mp->enable_gso, mp->enable_packed); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 139 | |
| 140 | REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY); |
| 141 | } |
| 142 | |
| 143 | static void |
| 144 | vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp) |
| 145 | { |
| 146 | int rv = 0; |
| 147 | vl_api_delete_vhost_user_if_reply_t *rmp; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 148 | u32 sw_if_index = ntohl (mp->sw_if_index); |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 149 | vl_api_registration_t *reg; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 150 | |
| 151 | vnet_main_t *vnm = vnet_get_main (); |
| 152 | vlib_main_t *vm = vlib_get_main (); |
| 153 | |
| 154 | rv = vhost_user_delete_if (vnm, vm, sw_if_index); |
| 155 | |
| 156 | REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY); |
| 157 | if (!rv) |
| 158 | { |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 159 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 160 | if (!reg) |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 161 | return; |
| 162 | |
| 163 | vnet_clear_sw_interface_tag (vnm, sw_if_index); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 164 | } |
| 165 | } |
| 166 | |
| 167 | static void |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 168 | send_sw_interface_vhost_user_details (vpe_api_main_t * am, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 169 | vl_api_registration_t * reg, |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 170 | vhost_user_intf_details_t * vui, |
| 171 | u32 context) |
| 172 | { |
| 173 | vl_api_sw_interface_vhost_user_details_t *mp; |
| 174 | |
| 175 | mp = vl_msg_api_alloc (sizeof (*mp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 176 | clib_memset (mp, 0, sizeof (*mp)); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 177 | mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS); |
| 178 | mp->sw_if_index = ntohl (vui->sw_if_index); |
| 179 | mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz); |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 180 | virtio_features_encode (vui->features, (u32 *) & mp->features_first_32, |
| 181 | (u32 *) & mp->features_last_32); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 182 | mp->is_server = vui->is_server; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 183 | mp->num_regions = ntohl (vui->num_regions); |
| 184 | mp->sock_errno = ntohl (vui->sock_errno); |
| 185 | mp->context = context; |
| 186 | |
| 187 | strncpy ((char *) mp->sock_filename, |
| 188 | (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1); |
| 189 | strncpy ((char *) mp->interface_name, |
| 190 | (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1); |
| 191 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 192 | vl_api_send_msg (reg, (u8 *) mp); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static void |
| 196 | vl_api_sw_interface_vhost_user_dump_t_handler |
| 197 | (vl_api_sw_interface_vhost_user_dump_t * mp) |
| 198 | { |
| 199 | int rv = 0; |
| 200 | vpe_api_main_t *am = &vpe_api_main; |
| 201 | vnet_main_t *vnm = vnet_get_main (); |
| 202 | vlib_main_t *vm = vlib_get_main (); |
| 203 | vhost_user_intf_details_t *ifaces = NULL; |
| 204 | vhost_user_intf_details_t *vuid = NULL; |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 205 | vl_api_registration_t *reg; |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 206 | u32 filter_sw_if_index; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 207 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 208 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 209 | if (!reg) |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 210 | return; |
| 211 | |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 212 | filter_sw_if_index = htonl (mp->sw_if_index); |
| 213 | if (filter_sw_if_index != ~0) |
Steven Luong | a0e8d96 | 2020-05-18 17:12:56 -0700 | [diff] [blame] | 214 | VALIDATE_SW_IF_INDEX (mp); |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 215 | |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 216 | rv = vhost_user_dump_ifs (vnm, vm, &ifaces); |
| 217 | if (rv) |
| 218 | return; |
| 219 | |
| 220 | vec_foreach (vuid, ifaces) |
| 221 | { |
Steven Luong | a0e8d96 | 2020-05-18 17:12:56 -0700 | [diff] [blame] | 222 | if ((filter_sw_if_index == ~0) || |
| 223 | (vuid->sw_if_index == filter_sw_if_index)) |
| 224 | send_sw_interface_vhost_user_details (am, reg, vuid, mp->context); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 225 | } |
Steven Luong | a0e8d96 | 2020-05-18 17:12:56 -0700 | [diff] [blame] | 226 | BAD_SW_IF_INDEX_LABEL; |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 227 | vec_free (ifaces); |
| 228 | } |
| 229 | |
| 230 | /* |
| 231 | * vhost-user_api_hookup |
| 232 | * Add vpe's API message handlers to the table. |
Jim Thompson | f324dec | 2019-04-08 03:22:21 -0500 | [diff] [blame] | 233 | * vlib has already mapped shared memory and |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 234 | * added the client registration handlers. |
| 235 | * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() |
| 236 | */ |
| 237 | #define vl_msg_name_crc_list |
| 238 | #include <vnet/vnet_all_api_h.h> |
| 239 | #undef vl_msg_name_crc_list |
| 240 | |
| 241 | static void |
| 242 | setup_message_id_table (api_main_t * am) |
| 243 | { |
| 244 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 245 | foreach_vl_msg_name_crc_vhost_user; |
| 246 | #undef _ |
| 247 | } |
| 248 | |
| 249 | static clib_error_t * |
| 250 | vhost_user_api_hookup (vlib_main_t * vm) |
| 251 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 252 | api_main_t *am = vlibapi_get_main (); |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 253 | |
| 254 | #define _(N,n) \ |
| 255 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 256 | vl_api_##n##_t_handler, \ |
| 257 | vl_noop_handler, \ |
| 258 | vl_api_##n##_t_endian, \ |
| 259 | vl_api_##n##_t_print, \ |
| 260 | sizeof(vl_api_##n##_t), 1); |
| 261 | foreach_vpe_api_msg; |
| 262 | #undef _ |
| 263 | |
Steven Luong | 67f935e | 2019-02-01 10:23:56 -0800 | [diff] [blame] | 264 | /* Mark CREATE_VHOST_USER_IF as mp safe */ |
| 265 | am->is_mp_safe[VL_API_CREATE_VHOST_USER_IF] = 1; |
| 266 | |
Pavel Kotucek | f07dc9e | 2016-12-20 12:17:37 +0100 | [diff] [blame] | 267 | /* |
| 268 | * Set up the (msg_name, crc, message-id) table |
| 269 | */ |
| 270 | setup_message_id_table (am); |
| 271 | |
| 272 | return 0; |
| 273 | } |
| 274 | |
| 275 | VLIB_API_INIT_FUNCTION (vhost_user_api_hookup); |
| 276 | |
| 277 | /* |
| 278 | * fd.io coding-style-patch-verification: ON |
| 279 | * |
| 280 | * Local Variables: |
| 281 | * eval: (c-set-style "gnu") |
| 282 | * End: |
| 283 | */ |