blob: 442d9146945e3f1dd0adbc6f9897d15ddad3c66e [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>
25#include <vnet/devices/virtio/vhost-user.h>
26
27#include <vnet/vnet_msg_enum.h>
28
29#define vl_typedefs /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_typedefs
32
33#define vl_endianfun /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39#define vl_printfun
40#include <vnet/vnet_all_api_h.h>
41#undef vl_printfun
42
43#include <vlibapi/api_helper_macros.h>
44
45#define foreach_vpe_api_msg \
46_(CREATE_VHOST_USER_IF, create_vhost_user_if) \
47_(MODIFY_VHOST_USER_IF, modify_vhost_user_if) \
48_(DELETE_VHOST_USER_IF, delete_vhost_user_if) \
Dave Baracha1a093d2017-03-02 13:13:23 -050049_(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010050
51/*
52 * WARNING: replicated pending api refactor completion
53 */
54static void
Neale Rannsa07bd702017-08-07 07:53:49 -070055send_sw_interface_event_deleted (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -080056 vl_api_registration_t * reg, u32 sw_if_index)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010057{
Neale Rannsa07bd702017-08-07 07:53:49 -070058 vl_api_sw_interface_event_t *mp;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010059
60 mp = vl_msg_api_alloc (sizeof (*mp));
61 memset (mp, 0, sizeof (*mp));
Neale Ranns07145412017-08-18 02:34:28 -070062 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010063 mp->sw_if_index = ntohl (sw_if_index);
64
65 mp->admin_up_down = 0;
66 mp->link_up_down = 0;
67 mp->deleted = 1;
Florin Coras6c4dae22018-01-09 06:39:23 -080068 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010069}
70
71static void
72vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp)
73{
74 int rv = 0;
75 vl_api_create_vhost_user_if_reply_t *rmp;
76 u32 sw_if_index = (u32) ~ 0;
77 vnet_main_t *vnm = vnet_get_main ();
78 vlib_main_t *vm = vlib_get_main ();
79
80 rv = vhost_user_create_if (vnm, vm, (char *) mp->sock_filename,
81 mp->is_server, &sw_if_index, (u64) ~ 0,
82 mp->renumber, ntohl (mp->custom_dev_instance),
Stevenf3b53642017-05-01 14:03:02 -070083 (mp->use_custom_mac) ? mp->mac_address : NULL);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010084
85 /* Remember an interface tag for the new interface */
86 if (rv == 0)
87 {
88 /* If a tag was supplied... */
89 if (mp->tag[0])
90 {
91 /* Make sure it's a proper C-string */
92 mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
93 u8 *tag = format (0, "%s%c", mp->tag, 0);
94 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
95 }
96 }
97
98 /* *INDENT-OFF* */
99 REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
100 ({
101 rmp->sw_if_index = ntohl (sw_if_index);
102 }));
103 /* *INDENT-ON* */
104}
105
106static void
107vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
108{
109 int rv = 0;
110 vl_api_modify_vhost_user_if_reply_t *rmp;
111 u32 sw_if_index = ntohl (mp->sw_if_index);
112
113 vnet_main_t *vnm = vnet_get_main ();
114 vlib_main_t *vm = vlib_get_main ();
115
116 rv = vhost_user_modify_if (vnm, vm, (char *) mp->sock_filename,
117 mp->is_server, sw_if_index, (u64) ~ 0,
Stevenf3b53642017-05-01 14:03:02 -0700118 mp->renumber, ntohl (mp->custom_dev_instance));
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100119
120 REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
121}
122
123static void
124vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
125{
126 int rv = 0;
127 vl_api_delete_vhost_user_if_reply_t *rmp;
128 vpe_api_main_t *vam = &vpe_api_main;
129 u32 sw_if_index = ntohl (mp->sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800130 vl_api_registration_t *reg;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100131
132 vnet_main_t *vnm = vnet_get_main ();
133 vlib_main_t *vm = vlib_get_main ();
134
135 rv = vhost_user_delete_if (vnm, vm, sw_if_index);
136
137 REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
138 if (!rv)
139 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800140 reg = vl_api_client_index_to_registration (mp->client_index);
141 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100142 return;
143
144 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800145 send_sw_interface_event_deleted (vam, reg, sw_if_index);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100146 }
147}
148
149static void
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100150send_sw_interface_vhost_user_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800151 vl_api_registration_t * reg,
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100152 vhost_user_intf_details_t * vui,
153 u32 context)
154{
155 vl_api_sw_interface_vhost_user_details_t *mp;
156
157 mp = vl_msg_api_alloc (sizeof (*mp));
158 memset (mp, 0, sizeof (*mp));
159 mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
160 mp->sw_if_index = ntohl (vui->sw_if_index);
161 mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
162 mp->features = clib_net_to_host_u64 (vui->features);
163 mp->is_server = vui->is_server;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100164 mp->num_regions = ntohl (vui->num_regions);
165 mp->sock_errno = ntohl (vui->sock_errno);
166 mp->context = context;
167
168 strncpy ((char *) mp->sock_filename,
169 (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
170 strncpy ((char *) mp->interface_name,
171 (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
172
Florin Coras6c4dae22018-01-09 06:39:23 -0800173 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100174}
175
176static void
177 vl_api_sw_interface_vhost_user_dump_t_handler
178 (vl_api_sw_interface_vhost_user_dump_t * mp)
179{
180 int rv = 0;
181 vpe_api_main_t *am = &vpe_api_main;
182 vnet_main_t *vnm = vnet_get_main ();
183 vlib_main_t *vm = vlib_get_main ();
184 vhost_user_intf_details_t *ifaces = NULL;
185 vhost_user_intf_details_t *vuid = NULL;
Florin Coras6c4dae22018-01-09 06:39:23 -0800186 vl_api_registration_t *reg;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100187
Florin Coras6c4dae22018-01-09 06:39:23 -0800188 reg = vl_api_client_index_to_registration (mp->client_index);
189 if (!reg)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100190 return;
191
192 rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
193 if (rv)
194 return;
195
196 vec_foreach (vuid, ifaces)
197 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800198 send_sw_interface_vhost_user_details (am, reg, vuid, mp->context);
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100199 }
200 vec_free (ifaces);
201}
202
203/*
204 * vhost-user_api_hookup
205 * Add vpe's API message handlers to the table.
206 * vlib has alread mapped shared memory and
207 * added the client registration handlers.
208 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
209 */
210#define vl_msg_name_crc_list
211#include <vnet/vnet_all_api_h.h>
212#undef vl_msg_name_crc_list
213
214static void
215setup_message_id_table (api_main_t * am)
216{
217#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
218 foreach_vl_msg_name_crc_vhost_user;
219#undef _
220}
221
222static clib_error_t *
223vhost_user_api_hookup (vlib_main_t * vm)
224{
225 api_main_t *am = &api_main;
226
227#define _(N,n) \
228 vl_msg_api_set_handlers(VL_API_##N, #n, \
229 vl_api_##n##_t_handler, \
230 vl_noop_handler, \
231 vl_api_##n##_t_endian, \
232 vl_api_##n##_t_print, \
233 sizeof(vl_api_##n##_t), 1);
234 foreach_vpe_api_msg;
235#undef _
236
237 /*
238 * Set up the (msg_name, crc, message-id) table
239 */
240 setup_message_id_table (am);
241
242 return 0;
243}
244
245VLIB_API_INIT_FUNCTION (vhost_user_api_hookup);
246
247/*
248 * fd.io coding-style-patch-verification: ON
249 *
250 * Local Variables:
251 * eval: (c-set-style "gnu")
252 * End:
253 */