dpdk: Add support for Mellanox ConnectX-4 devices
[vpp.git] / vnet / vnet / devices / virtio / vhost_user_api.c
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>
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)                           \
49 _(SW_INTERFACE_VHOST_USER_DUMP, sw_interface_vhost_user_dump)           \
50 _(SW_INTERFACE_VHOST_USER_DETAILS, sw_interface_vhost_user_details)
51
52 /*
53  * WARNING: replicated pending api refactor completion
54  */
55 static void
56 send_sw_interface_flags_deleted (vpe_api_main_t * am,
57                                  unix_shared_memory_queue_t * q,
58                                  u32 sw_if_index)
59 {
60   vl_api_sw_interface_set_flags_t *mp;
61
62   mp = vl_msg_api_alloc (sizeof (*mp));
63   memset (mp, 0, sizeof (*mp));
64   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SET_FLAGS);
65   mp->sw_if_index = ntohl (sw_if_index);
66
67   mp->admin_up_down = 0;
68   mp->link_up_down = 0;
69   mp->deleted = 1;
70   vl_msg_api_send_shmem (q, (u8 *) & mp);
71 }
72
73 static void
74 vl_api_create_vhost_user_if_t_handler (vl_api_create_vhost_user_if_t * mp)
75 {
76   int rv = 0;
77   vl_api_create_vhost_user_if_reply_t *rmp;
78   u32 sw_if_index = (u32) ~ 0;
79   vnet_main_t *vnm = vnet_get_main ();
80   vlib_main_t *vm = vlib_get_main ();
81
82   rv = vhost_user_create_if (vnm, vm, (char *) mp->sock_filename,
83                              mp->is_server, &sw_if_index, (u64) ~ 0,
84                              mp->renumber, ntohl (mp->custom_dev_instance),
85                              (mp->use_custom_mac) ? mp->mac_address : NULL);
86
87   /* Remember an interface tag for the new interface */
88   if (rv == 0)
89     {
90       /* If a tag was supplied... */
91       if (mp->tag[0])
92         {
93           /* Make sure it's a proper C-string */
94           mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
95           u8 *tag = format (0, "%s%c", mp->tag, 0);
96           vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
97         }
98     }
99
100   /* *INDENT-OFF* */
101   REPLY_MACRO2(VL_API_CREATE_VHOST_USER_IF_REPLY,
102   ({
103     rmp->sw_if_index = ntohl (sw_if_index);
104   }));
105   /* *INDENT-ON* */
106 }
107
108 static void
109 vl_api_modify_vhost_user_if_t_handler (vl_api_modify_vhost_user_if_t * mp)
110 {
111   int rv = 0;
112   vl_api_modify_vhost_user_if_reply_t *rmp;
113   u32 sw_if_index = ntohl (mp->sw_if_index);
114
115   vnet_main_t *vnm = vnet_get_main ();
116   vlib_main_t *vm = vlib_get_main ();
117
118   rv = vhost_user_modify_if (vnm, vm, (char *) mp->sock_filename,
119                              mp->is_server, sw_if_index, (u64) ~ 0,
120                              mp->renumber, ntohl (mp->custom_dev_instance));
121
122   REPLY_MACRO (VL_API_MODIFY_VHOST_USER_IF_REPLY);
123 }
124
125 static void
126 vl_api_delete_vhost_user_if_t_handler (vl_api_delete_vhost_user_if_t * mp)
127 {
128   int rv = 0;
129   vl_api_delete_vhost_user_if_reply_t *rmp;
130   vpe_api_main_t *vam = &vpe_api_main;
131   u32 sw_if_index = ntohl (mp->sw_if_index);
132
133   vnet_main_t *vnm = vnet_get_main ();
134   vlib_main_t *vm = vlib_get_main ();
135
136   rv = vhost_user_delete_if (vnm, vm, sw_if_index);
137
138   REPLY_MACRO (VL_API_DELETE_VHOST_USER_IF_REPLY);
139   if (!rv)
140     {
141       unix_shared_memory_queue_t *q =
142         vl_api_client_index_to_input_queue (mp->client_index);
143       if (!q)
144         return;
145
146       vnet_clear_sw_interface_tag (vnm, sw_if_index);
147       send_sw_interface_flags_deleted (vam, q, sw_if_index);
148     }
149 }
150
151 static void
152   vl_api_sw_interface_vhost_user_details_t_handler
153   (vl_api_sw_interface_vhost_user_details_t * mp)
154 {
155   clib_warning ("BUG");
156 }
157
158 static void
159 send_sw_interface_vhost_user_details (vpe_api_main_t * am,
160                                       unix_shared_memory_queue_t * q,
161                                       vhost_user_intf_details_t * vui,
162                                       u32 context)
163 {
164   vl_api_sw_interface_vhost_user_details_t *mp;
165
166   mp = vl_msg_api_alloc (sizeof (*mp));
167   memset (mp, 0, sizeof (*mp));
168   mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_VHOST_USER_DETAILS);
169   mp->sw_if_index = ntohl (vui->sw_if_index);
170   mp->virtio_net_hdr_sz = ntohl (vui->virtio_net_hdr_sz);
171   mp->features = clib_net_to_host_u64 (vui->features);
172   mp->is_server = vui->is_server;
173   mp->num_regions = ntohl (vui->num_regions);
174   mp->sock_errno = ntohl (vui->sock_errno);
175   mp->context = context;
176
177   strncpy ((char *) mp->sock_filename,
178            (char *) vui->sock_filename, ARRAY_LEN (mp->sock_filename) - 1);
179   strncpy ((char *) mp->interface_name,
180            (char *) vui->if_name, ARRAY_LEN (mp->interface_name) - 1);
181
182   vl_msg_api_send_shmem (q, (u8 *) & mp);
183 }
184
185 static void
186   vl_api_sw_interface_vhost_user_dump_t_handler
187   (vl_api_sw_interface_vhost_user_dump_t * mp)
188 {
189   int rv = 0;
190   vpe_api_main_t *am = &vpe_api_main;
191   vnet_main_t *vnm = vnet_get_main ();
192   vlib_main_t *vm = vlib_get_main ();
193   vhost_user_intf_details_t *ifaces = NULL;
194   vhost_user_intf_details_t *vuid = NULL;
195   unix_shared_memory_queue_t *q;
196
197   q = vl_api_client_index_to_input_queue (mp->client_index);
198   if (q == 0)
199     return;
200
201   rv = vhost_user_dump_ifs (vnm, vm, &ifaces);
202   if (rv)
203     return;
204
205   vec_foreach (vuid, ifaces)
206   {
207     send_sw_interface_vhost_user_details (am, q, vuid, mp->context);
208   }
209   vec_free (ifaces);
210 }
211
212 /*
213  * vhost-user_api_hookup
214  * Add vpe's API message handlers to the table.
215  * vlib has alread mapped shared memory and
216  * added the client registration handlers.
217  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
218  */
219 #define vl_msg_name_crc_list
220 #include <vnet/vnet_all_api_h.h>
221 #undef vl_msg_name_crc_list
222
223 static void
224 setup_message_id_table (api_main_t * am)
225 {
226 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
227   foreach_vl_msg_name_crc_vhost_user;
228 #undef _
229 }
230
231 static clib_error_t *
232 vhost_user_api_hookup (vlib_main_t * vm)
233 {
234   api_main_t *am = &api_main;
235
236 #define _(N,n)                                                  \
237     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
238                            vl_api_##n##_t_handler,              \
239                            vl_noop_handler,                     \
240                            vl_api_##n##_t_endian,               \
241                            vl_api_##n##_t_print,                \
242                            sizeof(vl_api_##n##_t), 1);
243   foreach_vpe_api_msg;
244 #undef _
245
246   /*
247    * Set up the (msg_name, crc, message-id) table
248    */
249   setup_message_id_table (am);
250
251   return 0;
252 }
253
254 VLIB_API_INIT_FUNCTION (vhost_user_api_hookup);
255
256 /*
257  * fd.io coding-style-patch-verification: ON
258  *
259  * Local Variables:
260  * eval: (c-set-style "gnu")
261  * End:
262  */