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