a48cd188f045dd6218ba5b7a12a719162c1b9842
[vpp.git] / src / plugins / memif / memif_api.c
1 /*
2  *------------------------------------------------------------------
3  * memif_api.c - memif api
4  *
5  * Copyright (c) 2017 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 <vlib/vlib.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vlib/unix/unix.h>
23 #include <memif/memif.h>
24 #include <memif/private.h>
25
26 #include <vlibapi/api.h>
27 #include <vlibmemory/api.h>
28
29
30 /* define message IDs */
31 #include <memif/memif_msg_enum.h>
32
33 /* define message structures */
34 #define vl_typedefs
35 #include <memif/memif_all_api_h.h>
36 #undef vl_typedefs
37
38 /* define generated endian-swappers */
39 #define vl_endianfun
40 #include <memif/memif_all_api_h.h>
41 #undef vl_endianfun
42
43 /* instantiate all the print functions we know about */
44 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
45 #define vl_printfun
46 #include <memif/memif_all_api_h.h>
47 #undef vl_printfun
48
49 /* Get the API version number */
50 #define vl_api_version(n,v) static u32 api_version=(v);
51 #include <memif/memif_all_api_h.h>
52 #undef vl_api_version
53
54 /*
55  * A handy macro to set up a message reply.
56  * Assumes that the following variables are available:
57  * mp - pointer to request message
58  * rmp - pointer to reply message type
59  * rv - return value
60  */
61 #define REPLY_MACRO(t)                                          \
62 do {                                                            \
63     svm_queue_t * q =                            \
64     vl_api_client_index_to_input_queue (mp->client_index);      \
65     if (!q)                                                     \
66         return;                                                 \
67                                                                 \
68     rmp = vl_msg_api_alloc (sizeof (*rmp));                     \
69     rmp->_vl_msg_id = htons ((t)+mm->msg_id_base);              \
70     rmp->context = mp->context;                                 \
71     rmp->retval = htonl (rv);                                   \
72                                                                 \
73     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
74 } while(0);
75
76 #define REPLY_MACRO2(t, body)                                   \
77 do {                                                            \
78     svm_queue_t * q =                            \
79     vl_api_client_index_to_input_queue (mp->client_index);      \
80     if (!q)                                                     \
81         return;                                                 \
82                                                                 \
83     rmp = vl_msg_api_alloc (sizeof (*rmp));                     \
84     rmp->_vl_msg_id = htons ((t)+mm->msg_id_base);              \
85     rmp->context = mp->context;                                 \
86     rmp->retval = htonl (rv);                                   \
87     do {body;} while (0);                                       \
88     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
89 } while(0);
90
91 #define foreach_memif_plugin_api_msg                                    \
92 _(MEMIF_SOCKET_FILENAME_ADD_DEL, memif_socket_filename_add_del) \
93 _(MEMIF_CREATE, memif_create)                                           \
94 _(MEMIF_DELETE, memif_delete)                                           \
95 _(MEMIF_SOCKET_FILENAME_DUMP, memif_socket_filename_dump)               \
96 _(MEMIF_DUMP, memif_dump)                                               \
97
98
99 /**
100  * @brief Message handler for memif_socket_filename_add_del API.
101  * @param mp the vl_api_memif_socket_filename_add_del_t API message
102  */
103 void
104   vl_api_memif_socket_filename_add_del_t_handler
105   (vl_api_memif_socket_filename_add_del_t * mp)
106 {
107   memif_main_t *mm = &memif_main;
108   u8 is_add;
109   u32 socket_id;
110   u32 len;
111   u8 *socket_filename;
112   vl_api_memif_socket_filename_add_del_reply_t *rmp;
113   int rv;
114
115   /* is_add */
116   is_add = mp->is_add;
117
118   /* socket_id */
119   socket_id = clib_net_to_host_u32 (mp->socket_id);
120   if (socket_id == 0 || socket_id == ~0)
121     {
122       rv = VNET_API_ERROR_INVALID_ARGUMENT;
123       goto reply;
124     }
125
126   /* socket filename */
127   socket_filename = 0;
128   mp->socket_filename[ARRAY_LEN (mp->socket_filename) - 1] = 0;
129   len = strlen ((char *) mp->socket_filename);
130   if (len > 0)
131     {
132       vec_validate (socket_filename, len);
133       strncpy ((char *) socket_filename, (char *) mp->socket_filename, len);
134     }
135
136   rv = memif_socket_filename_add_del (is_add, socket_id, socket_filename);
137
138   vec_free (socket_filename);
139
140 reply:
141   REPLY_MACRO (VL_API_MEMIF_SOCKET_FILENAME_ADD_DEL_REPLY);
142 }
143
144
145 /**
146  * @brief Message handler for memif_create API.
147  * @param mp vl_api_memif_create_t * mp the api message
148  */
149 void
150 vl_api_memif_create_t_handler (vl_api_memif_create_t * mp)
151 {
152   memif_main_t *mm = &memif_main;
153   vlib_main_t *vm = vlib_get_main ();
154   vl_api_memif_create_reply_t *rmp;
155   memif_create_if_args_t args = { 0 };
156   u32 ring_size = MEMIF_DEFAULT_RING_SIZE;
157   static const u8 empty_hw_addr[6];
158   int rv = 0;
159
160   /* id */
161   args.id = clib_net_to_host_u32 (mp->id);
162
163   /* socket-id */
164   args.socket_id = clib_net_to_host_u32 (mp->socket_id);
165
166   /* secret */
167   mp->secret[ARRAY_LEN (mp->secret) - 1] = 0;
168   if (strlen ((char *) mp->secret) > 0)
169     {
170       vec_validate (args.secret, strlen ((char *) mp->secret));
171       strncpy ((char *) args.secret, (char *) mp->secret,
172                vec_len (args.secret));
173     }
174
175   /* role */
176   args.is_master = (mp->role == 0);
177
178   /* mode */
179   args.mode = mp->mode;
180
181   /* rx/tx queues */
182   if (args.is_master == 0)
183     {
184       args.rx_queues = MEMIF_DEFAULT_RX_QUEUES;
185       args.tx_queues = MEMIF_DEFAULT_TX_QUEUES;
186       if (mp->rx_queues)
187         {
188           args.rx_queues = mp->rx_queues;
189         }
190       if (mp->tx_queues)
191         {
192           args.tx_queues = mp->tx_queues;
193         }
194     }
195
196   /* ring size */
197   if (mp->ring_size)
198     {
199       ring_size = ntohl (mp->ring_size);
200     }
201   if (!is_pow2 (ring_size))
202     {
203       rv = VNET_API_ERROR_INVALID_ARGUMENT;
204       goto reply;
205     }
206   args.log2_ring_size = min_log2 (ring_size);
207
208   /* buffer size */
209   args.buffer_size = MEMIF_DEFAULT_BUFFER_SIZE;
210   if (mp->buffer_size)
211     {
212       args.buffer_size = ntohs (mp->buffer_size);
213     }
214
215   /* MAC address */
216   if (memcmp (mp->hw_addr, empty_hw_addr, 6) != 0)
217     {
218       memcpy (args.hw_addr, mp->hw_addr, 6);
219       args.hw_addr_set = 1;
220     }
221
222   rv = memif_create_if (vm, &args);
223
224   vec_free (args.secret);
225
226 reply:
227   REPLY_MACRO (VL_API_MEMIF_CREATE_REPLY);
228 }
229
230 /**
231  * @brief Message handler for memif_delete API.
232  * @param mp vl_api_memif_delete_t * mp the api message
233  */
234 void
235 vl_api_memif_delete_t_handler (vl_api_memif_delete_t * mp)
236 {
237   memif_main_t *mm = &memif_main;
238   vlib_main_t *vm = vlib_get_main ();
239   vnet_main_t *vnm = vnet_get_main ();
240   vl_api_memif_delete_reply_t *rmp;
241   vnet_hw_interface_t *hi =
242     vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
243   memif_if_t *mif;
244   int rv = 0;
245
246   if (hi == NULL || memif_device_class.index != hi->dev_class_index)
247     rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
248   else
249     {
250       mif = pool_elt_at_index (mm->interfaces, hi->dev_instance);
251       rv = memif_delete_if (vm, mif);
252     }
253
254   REPLY_MACRO (VL_API_MEMIF_DELETE_REPLY);
255 }
256
257 static void
258 send_memif_details (vl_api_registration_t * reg,
259                     memif_if_t * mif,
260                     vnet_sw_interface_t * swif,
261                     u8 * interface_name, u32 context)
262 {
263   vl_api_memif_details_t *mp;
264   vnet_main_t *vnm = vnet_get_main ();
265   memif_main_t *mm = &memif_main;
266   vnet_hw_interface_t *hwif;
267   memif_socket_file_t *msf;
268
269   hwif = vnet_get_sup_hw_interface (vnm, swif->sw_if_index);
270
271   mp = vl_msg_api_alloc (sizeof (*mp));
272   memset (mp, 0, sizeof (*mp));
273
274   mp->_vl_msg_id = htons (VL_API_MEMIF_DETAILS + mm->msg_id_base);
275   mp->context = context;
276
277   mp->sw_if_index = htonl (swif->sw_if_index);
278   strncpy ((char *) mp->if_name,
279            (char *) interface_name, ARRAY_LEN (mp->if_name) - 1);
280
281   if (hwif->hw_address)
282     {
283       memcpy (mp->hw_addr, hwif->hw_address, ARRAY_LEN (mp->hw_addr));
284     }
285
286   mp->id = clib_host_to_net_u32 (mif->id);
287
288   msf = pool_elt_at_index (mm->socket_files, mif->socket_file_index);
289   mp->socket_id = clib_host_to_net_u32 (msf->socket_id);
290
291   mp->role = (mif->flags & MEMIF_IF_FLAG_IS_SLAVE) ? 1 : 0;
292   mp->ring_size = htonl (1 << mif->run.log2_ring_size);
293   mp->buffer_size = htons (mif->run.buffer_size);
294
295   mp->admin_up_down = (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? 1 : 0;
296   mp->link_up_down = (hwif->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ? 1 : 0;
297
298   vl_api_send_msg (reg, (u8 *) mp);
299 }
300
301 /**
302  * @brief Message handler for memif_dump API.
303  * @param mp vl_api_memif_dump_t * mp the api message
304  */
305 void
306 vl_api_memif_dump_t_handler (vl_api_memif_dump_t * mp)
307 {
308   memif_main_t *mm = &memif_main;
309   vnet_main_t *vnm = vnet_get_main ();
310   vnet_sw_interface_t *swif;
311   memif_if_t *mif;
312   u8 *if_name = 0;
313   vl_api_registration_t *reg;
314
315   reg = vl_api_client_index_to_registration (mp->client_index);
316   if (!reg)
317     return;
318
319   /* *INDENT-OFF* */
320   pool_foreach (mif, mm->interfaces,
321     ({
322       swif = vnet_get_sw_interface (vnm, mif->sw_if_index);
323
324       if_name = format (if_name, "%U%c",
325                         format_vnet_sw_interface_name,
326                         vnm, swif, 0);
327
328       send_memif_details (reg, mif, swif, if_name, mp->context);
329       _vec_len (if_name) = 0;
330     }));
331   /* *INDENT-ON* */
332
333   vec_free (if_name);
334 }
335
336 static void
337 send_memif_socket_filename_details (vl_api_registration_t * reg,
338                                     u32 socket_id,
339                                     u8 * socket_filename, u32 context)
340 {
341   vl_api_memif_socket_filename_details_t *mp;
342   memif_main_t *mm = &memif_main;
343
344   mp = vl_msg_api_alloc (sizeof (*mp));
345   memset (mp, 0, sizeof (*mp));
346
347   mp->_vl_msg_id = htons (VL_API_MEMIF_SOCKET_FILENAME_DETAILS
348                           + mm->msg_id_base);
349   mp->context = context;
350
351   mp->socket_id = clib_host_to_net_u32 (socket_id);
352   strncpy ((char *) mp->socket_filename,
353            (char *) socket_filename, ARRAY_LEN (mp->socket_filename) - 1);
354
355   vl_api_send_msg (reg, (u8 *) mp);
356 }
357
358 /**
359  * @brief Message handler for memif_socket_filename_dump API.
360  * @param mp vl_api_memif_socket_filename_dump_t api message
361  */
362 void
363   vl_api_memif_socket_filename_dump_t_handler
364   (vl_api_memif_socket_filename_dump_t * mp)
365 {
366   memif_main_t *mm = &memif_main;
367   vl_api_registration_t *reg;
368   u32 sock_id;
369   u32 msf_idx;
370
371   reg = vl_api_client_index_to_registration (mp->client_index);
372   if (!reg)
373     return;
374
375   /* *INDENT-OFF* */
376   hash_foreach (sock_id, msf_idx, mm->socket_file_index_by_sock_id,
377     ({
378       memif_socket_file_t *msf;
379       u8 *filename;
380
381       msf = pool_elt_at_index(mm->socket_files, msf_idx);
382       filename = msf->filename;
383       send_memif_socket_filename_details(reg, sock_id, filename, mp->context);
384     }));
385   /* *INDENT-ON* */
386 }
387
388 #define vl_msg_name_crc_list
389 #include <memif/memif_all_api_h.h>
390 #undef vl_msg_name_crc_list
391
392 static void
393 setup_message_id_table (memif_main_t * mm, api_main_t * am)
394 {
395 #define _(id,n,crc) \
396   vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + mm->msg_id_base);
397   foreach_vl_msg_name_crc_memif;
398 #undef _
399 }
400
401 /* Set up the API message handling tables */
402 clib_error_t *
403 memif_plugin_api_hookup (vlib_main_t * vm)
404 {
405   memif_main_t *mm = &memif_main;
406   api_main_t *am = &api_main;
407   u8 *name;
408
409   /* Construct the API name */
410   name = format (0, "memif_%08x%c", api_version, 0);
411
412   /* Ask for a correctly-sized block of API message decode slots */
413   mm->msg_id_base = vl_msg_api_get_msg_ids
414     ((char *) name, VL_MSG_FIRST_AVAILABLE);
415
416 #define _(N,n)                                                  \
417     vl_msg_api_set_handlers((VL_API_##N + mm->msg_id_base),     \
418                            #n,                                  \
419                            vl_api_##n##_t_handler,              \
420                            vl_noop_handler,                     \
421                            vl_api_##n##_t_endian,               \
422                            vl_api_##n##_t_print,                \
423                            sizeof(vl_api_##n##_t), 1);
424   foreach_memif_plugin_api_msg;
425 #undef _
426
427   /*
428    * Set up the (msg_name, crc, message-id) table
429    */
430   setup_message_id_table (mm, am);
431
432   vec_free (name);
433   return 0;
434 }
435
436 /*
437  * fd.io coding-style-patch-verification: ON
438  *
439  * Local Variables:
440  * eval: (c-set-style "gnu")
441  * End:
442  */