api: API trace improvements
[vpp.git] / src / vlibmemory / socket_api.c
1 /*
2  *------------------------------------------------------------------
3  * socket_api.c
4  *
5  * Copyright (c) 2009 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 <sys/types.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <sys/ioctl.h>
24 #include <fcntl.h>
25 #include <sys/stat.h>
26
27 #include <vppinfra/byte_order.h>
28 #include <svm/ssvm.h>
29 #include <vlibmemory/api.h>
30
31 #include <vlibmemory/vl_memory_msg_enum.h>
32
33 #define vl_typedefs             /* define message structures */
34 #include <vlibmemory/vl_memory_api_h.h>
35 #undef vl_typedefs
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 <vlibmemory/vl_memory_api_h.h>
41 #undef vl_printfun
42
43 /* instantiate all the endian swap functions we know about */
44 #define vl_endianfun
45 #include <vlibmemory/vl_memory_api_h.h>
46 #undef vl_endianfun
47
48 socket_main_t socket_main;
49
50 #define SOCK_API_REG_HANDLE_BIT (1<<31)
51
52 static u32
53 sock_api_registration_handle (vl_api_registration_t * regp)
54 {
55   ASSERT (regp->vl_api_registration_pool_index < SOCK_API_REG_HANDLE_BIT);
56   return regp->vl_api_registration_pool_index | SOCK_API_REG_HANDLE_BIT;
57 }
58
59 static u32
60 socket_api_registration_handle_to_index (u32 reg_index)
61 {
62   return (reg_index & ~SOCK_API_REG_HANDLE_BIT);
63 }
64
65 u8
66 vl_socket_api_registration_handle_is_valid (u32 reg_handle)
67 {
68   return ((reg_handle & SOCK_API_REG_HANDLE_BIT) != 0);
69 }
70
71 void
72 vl_sock_api_dump_clients (vlib_main_t * vm, api_main_t * am)
73 {
74   vl_api_registration_t *reg;
75   socket_main_t *sm = &socket_main;
76   clib_file_t *f;
77
78   /*
79    * Must have at least one active client, not counting the
80    * REGISTRATION_TYPE_SOCKET_LISTEN bind/accept socket
81    */
82   if (pool_elts (sm->registration_pool) < 2)
83     return;
84
85   vlib_cli_output (vm, "Socket clients");
86   vlib_cli_output (vm, "%20s %8s", "Name", "Fildesc");
87     /* *INDENT-OFF* */
88     pool_foreach (reg, sm->registration_pool)
89      {
90         if (reg->registration_type == REGISTRATION_TYPE_SOCKET_SERVER) {
91             f = vl_api_registration_file (reg);
92             vlib_cli_output (vm, "%20s %8d", reg->name, f->file_descriptor);
93         }
94     }
95 /* *INDENT-ON* */
96 }
97
98 vl_api_registration_t *
99 vl_socket_api_client_handle_to_registration (u32 handle)
100 {
101   socket_main_t *sm = &socket_main;
102   u32 index = socket_api_registration_handle_to_index (handle);
103   if (pool_is_free_index (sm->registration_pool, index))
104     {
105 #if DEBUG > 2
106       clib_warning ("Invalid index %d\n", index);
107 #endif
108       return 0;
109     }
110   return pool_elt_at_index (sm->registration_pool, index);
111 }
112
113 void
114 vl_socket_api_send (vl_api_registration_t * rp, u8 * elem)
115 {
116 #if CLIB_DEBUG > 1
117   u32 output_length;
118 #endif
119   socket_main_t *sm = &socket_main;
120   u16 msg_id = ntohs (*(u16 *) elem);
121   api_main_t *am = vlibapi_get_main ();
122   msgbuf_t *mb = (msgbuf_t *) (elem - offsetof (msgbuf_t, data));
123   vl_api_registration_t *sock_rp;
124   clib_file_main_t *fm = &file_main;
125   clib_error_t *error;
126   clib_file_t *cf;
127
128   cf = vl_api_registration_file (rp);
129   ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM);
130
131   if (msg_id >= vec_len (am->api_trace_cfg))
132     {
133       clib_warning ("id out of range: %d", msg_id);
134       vl_msg_api_free ((void *) elem);
135       return;
136     }
137
138   sock_rp = pool_elt_at_index (sm->registration_pool,
139                                rp->vl_api_registration_pool_index);
140   ASSERT (sock_rp);
141
142   /* Add the msgbuf_t to the output vector */
143   vec_add (sock_rp->output_vector, (u8 *) mb, sizeof (*mb));
144
145   /* Try to send the message and save any error like
146    * we do in the input epoll loop */
147   vec_add (sock_rp->output_vector, elem, ntohl (mb->data_len));
148   error = clib_file_write (cf);
149   unix_save_error (&unix_main, error);
150
151   /* If we didn't finish sending everything, wait for tx space */
152   if (vec_len (sock_rp->output_vector) > 0
153       && !(cf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE))
154     {
155       cf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
156       fm->file_update (cf, UNIX_FILE_UPDATE_MODIFY);
157     }
158
159 #if CLIB_DEBUG > 1
160   output_length = sizeof (*mb) + ntohl (mb->data_len);
161   clib_warning ("wrote %u bytes to fd %d", output_length,
162                 cf->file_descriptor);
163 #endif
164
165   vl_msg_api_free ((void *) elem);
166 }
167
168 void
169 vl_socket_free_registration_index (u32 pool_index)
170 {
171   int i;
172   vl_api_registration_t *rp;
173   void vl_api_call_reaper_functions (u32 client_index);
174
175   if (pool_is_free_index (socket_main.registration_pool, pool_index))
176     {
177       clib_warning ("main pool index %d already free", pool_index);
178       return;
179     }
180   rp = pool_elt_at_index (socket_main.registration_pool, pool_index);
181
182   vl_api_call_reaper_functions (pool_index);
183
184   ASSERT (rp->registration_type != REGISTRATION_TYPE_FREE);
185   for (i = 0; i < vec_len (rp->additional_fds_to_close); i++)
186     if (close (rp->additional_fds_to_close[i]) < 0)
187       clib_unix_warning ("close");
188   vec_free (rp->additional_fds_to_close);
189   vec_free (rp->name);
190   vec_free (rp->unprocessed_input);
191   vec_free (rp->output_vector);
192   rp->registration_type = REGISTRATION_TYPE_FREE;
193   pool_put (socket_main.registration_pool, rp);
194 }
195
196 void
197 vl_socket_process_api_msg (vl_api_registration_t * rp, i8 * input_v)
198 {
199   msgbuf_t *mbp = (msgbuf_t *) input_v;
200
201   u8 *the_msg = (u8 *) (mbp->data);
202   socket_main.current_rp = rp;
203   vl_msg_api_socket_handler (the_msg);
204   socket_main.current_rp = 0;
205 }
206
207 int
208 is_being_removed_reg_index (u32 reg_index)
209 {
210   vl_api_registration_t *rp = vl_socket_get_registration (reg_index);
211   ALWAYS_ASSERT (rp != 0);
212   return (rp->is_being_removed);
213 }
214
215 static void
216 socket_cleanup_pending_remove_registration_cb (u32 *preg_index)
217 {
218   vl_api_registration_t *rp = vl_socket_get_registration (*preg_index);
219   clib_file_main_t *fm = &file_main;
220   u32 pending_remove_file_index = vl_api_registration_file_index (rp);
221
222   clib_file_t *zf = fm->file_pool + pending_remove_file_index;
223
224   clib_file_del (fm, zf);
225   vl_socket_free_registration_index (rp - socket_main.registration_pool);
226 }
227
228 static void
229 vl_socket_request_remove_reg_index (u32 reg_index)
230 {
231   vl_api_registration_t *rp = vl_socket_get_registration (reg_index);
232   ALWAYS_ASSERT (rp != 0);
233   if (rp->is_being_removed)
234     {
235       return;
236     }
237   rp->is_being_removed = 1;
238   vl_api_force_rpc_call_main_thread (
239     socket_cleanup_pending_remove_registration_cb, (void *) &reg_index,
240     sizeof (u32));
241 }
242
243 /*
244  * Read function for API socket.
245  *
246  * Read data from socket, invoke SOCKET_READ_EVENT
247  * for each fully read API message, return 0.
248  * Store incomplete data for next invocation to continue.
249  *
250  * On severe read error, the file is closed.
251  *
252  * As reading is single threaded,
253  * socket_main.input_buffer is used temporarily.
254  * Even its length is modified, but always restored before return.
255  *
256  * Incomplete data is copied into a vector,
257  * pointer saved in registration's unprocessed_input.
258  */
259 clib_error_t *
260 vl_socket_read_ready (clib_file_t * uf)
261 {
262   vlib_main_t *vm = vlib_get_main ();
263   vl_api_registration_t *rp;
264   /* n is the size of data read to input_buffer */
265   int n;
266   /* msg_buffer vector can point to input_buffer or unprocessed_input */
267   i8 *msg_buffer = 0;
268   /* data_for_process is a vector containing one full message, incl msgbuf_t */
269   u8 *data_for_process;
270   /* msgbuf_len is the size of one message, including sizeof (msgbuf_t) */
271   u32 msgbuf_len;
272   u32 save_input_buffer_length = vec_len (socket_main.input_buffer);
273   vl_socket_args_for_process_t *a;
274   u32 reg_index = uf->private_data;
275   if (is_being_removed_reg_index (reg_index))
276     {
277       return 0;
278     }
279
280   rp = vl_socket_get_registration (reg_index);
281
282   /* Ignore unprocessed_input for now, n describes input_buffer for now. */
283   n = read (uf->file_descriptor, socket_main.input_buffer,
284             vec_len (socket_main.input_buffer));
285
286   if (n <= 0)
287     {
288       if (errno != EAGAIN)
289         {
290           /* Severe error, close the file. */
291           vl_socket_request_remove_reg_index (reg_index);
292         }
293       /* EAGAIN means we do not close the file, but no data to process anyway. */
294       return 0;
295     }
296
297   /* Fake smaller length teporarily, so input_buffer can be used as msg_buffer. */
298   vec_set_len (socket_main.input_buffer, n);
299
300   /*
301    * Look for bugs here. This code is tricky because
302    * data read from a stream socket does not honor message
303    * boundaries. In the case of a long message (>4K bytes)
304    * we have to do (at least) 2 reads, etc.
305    */
306   /* Determine msg_buffer. */
307   if (vec_len (rp->unprocessed_input))
308     {
309       vec_append (rp->unprocessed_input, socket_main.input_buffer);
310       msg_buffer = rp->unprocessed_input;
311     }
312   else
313     {
314       msg_buffer = socket_main.input_buffer;
315     }
316   /* Loop to process any full messages. */
317   ASSERT (vec_len (msg_buffer) > 0);
318   do
319     {
320       /* Here, we are not sure how big a chunk of message we have left. */
321       /* Do we at least know how big the full message will be? */
322       if (vec_len (msg_buffer) <= sizeof (msgbuf_t))
323         /* No, so fragment is not a full message. */
324         goto save_and_split;
325
326       /* Now we know how big the full message will be. */
327       msgbuf_len =
328         ntohl (((msgbuf_t *) msg_buffer)->data_len) + sizeof (msgbuf_t);
329
330       /* But do we have a full message? */
331       if (msgbuf_len > vec_len (msg_buffer))
332         {
333         save_and_split:
334           /* We don't have the entire message yet. */
335           /* If msg_buffer is unprocessed_input, nothing needs to be done. */
336           if (msg_buffer == socket_main.input_buffer)
337             /* But if we were using the input buffer, save the fragment. */
338             {
339               ASSERT (vec_len (rp->unprocessed_input) == 0);
340               vec_validate (rp->unprocessed_input, vec_len (msg_buffer) - 1);
341               clib_memcpy_fast (rp->unprocessed_input, msg_buffer,
342                                 vec_len (msg_buffer));
343               vec_set_len (rp->unprocessed_input, vec_len (msg_buffer));
344             }
345           /* No more full messages, restore original input_buffer length. */
346           vec_set_len (socket_main.input_buffer, save_input_buffer_length);
347           return 0;
348         }
349
350       /*
351        * We have at least one full message.
352        * But msg_buffer can contain more data, so copy one message data
353        * so we can overwrite its length to what single message has.
354        */
355       data_for_process = (u8 *) vec_dup (msg_buffer);
356       vec_set_len (data_for_process, msgbuf_len);
357       /* Everything is ready to signal the SOCKET_READ_EVENT. */
358       pool_get (socket_main.process_args, a);
359       a->reg_index = reg_index;
360       a->data = data_for_process;
361
362       vlib_process_signal_event (vm, vl_api_clnt_node.index,
363                                  SOCKET_READ_EVENT,
364                                  a - socket_main.process_args);
365       if (vec_len (msg_buffer) > msgbuf_len)
366         /* There are some fragments left. Shrink the msg_buffer to simplify logic. */
367         vec_delete (msg_buffer, msgbuf_len, 0);
368       else
369         /* We are done with msg_buffer. */
370         vec_set_len (msg_buffer, 0);
371     }
372   while (vec_len (msg_buffer) > 0);
373
374   /* Restore input_buffer, it could have been msg_buffer. */
375   vec_set_len (socket_main.input_buffer, save_input_buffer_length);
376   return 0;
377 }
378
379 clib_error_t *
380 vl_socket_write_ready (clib_file_t * uf)
381 {
382   clib_file_main_t *fm = &file_main;
383   vl_api_registration_t *rp;
384   int n;
385
386   u32 reg_index = uf->private_data;
387   if (is_being_removed_reg_index (reg_index))
388     {
389       return 0;
390     }
391
392   rp = pool_elt_at_index (socket_main.registration_pool, reg_index);
393
394   /* Flush output vector. */
395   size_t total_bytes = vec_len (rp->output_vector);
396   size_t bytes_to_send, remaining_bytes = total_bytes;
397   void *p = rp->output_vector;
398   while (remaining_bytes > 0)
399     {
400       bytes_to_send = remaining_bytes > 4096 ? 4096 : remaining_bytes;
401       n = write (uf->file_descriptor, p, bytes_to_send);
402       if (n < 0)
403         {
404           if (errno == EAGAIN)
405             {
406               break;
407             }
408 #if DEBUG > 2
409           clib_warning ("write error, close the file...\n");
410 #endif
411           vl_socket_request_remove_reg_index (reg_index);
412           return 0;
413         }
414       remaining_bytes -= bytes_to_send;
415       p += bytes_to_send;
416     }
417
418   vec_delete (rp->output_vector, total_bytes - remaining_bytes, 0);
419   if (vec_len (rp->output_vector) <= 0
420       && (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE))
421     {
422       uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
423       fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
424     }
425
426   return 0;
427 }
428
429 clib_error_t *
430 vl_socket_error_ready (clib_file_t * uf)
431 {
432   u32 reg_index = uf->private_data;
433   vl_socket_request_remove_reg_index (reg_index);
434   return 0;
435 }
436
437 void
438 socksvr_file_add (clib_file_main_t * fm, int fd)
439 {
440   vl_api_registration_t *rp;
441   clib_file_t template = { 0 };
442
443   pool_get (socket_main.registration_pool, rp);
444   clib_memset (rp, 0, sizeof (*rp));
445
446   template.read_function = vl_socket_read_ready;
447   template.write_function = vl_socket_write_ready;
448   template.error_function = vl_socket_error_ready;
449   template.file_descriptor = fd;
450   template.description = format (0, "socksrv");
451   template.private_data = rp - socket_main.registration_pool;
452
453   rp->registration_type = REGISTRATION_TYPE_SOCKET_SERVER;
454   rp->vl_api_registration_pool_index = rp - socket_main.registration_pool;
455   rp->clib_file_index = clib_file_add (fm, &template);
456 }
457
458 static clib_error_t *
459 socksvr_accept_ready (clib_file_t * uf)
460 {
461   clib_file_main_t *fm = &file_main;
462   socket_main_t *sm = &socket_main;
463   clib_socket_t *sock = &sm->socksvr_listen_socket;
464   clib_socket_t client;
465   clib_error_t *error;
466
467   error = clib_socket_accept (sock, &client);
468   if (error)
469     return error;
470
471   socksvr_file_add (fm, client.fd);
472   return 0;
473 }
474
475 static clib_error_t *
476 socksvr_bogus_write (clib_file_t * uf)
477 {
478   clib_warning ("why am I here?");
479   return 0;
480 }
481
482 /*
483  * vl_api_sockclnt_create_t_handler
484  */
485 void
486 vl_api_sockclnt_create_t_handler (vl_api_sockclnt_create_t * mp)
487 {
488   vl_api_registration_t *regp;
489   vl_api_sockclnt_create_reply_t *rp;
490   api_main_t *am = vlibapi_get_main ();
491   hash_pair_t *hp;
492   int rv = 0;
493   u32 nmsg = hash_elts (am->msg_index_by_name_and_crc);
494   u32 i = 0;
495
496   regp = socket_main.current_rp;
497
498   /* client already connected through shared memory? */
499   if (!regp || regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER)
500     {
501       clib_warning (
502         "unsupported API call: already connected though shared memory?");
503       return;
504     }
505
506   regp->name = format (0, "%s%c", mp->name, 0);
507
508   u32 size = sizeof (*rp) + (nmsg * sizeof (vl_api_message_table_entry_t));
509   rp = vl_msg_api_alloc_zero (size);
510   rp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE_REPLY);
511   rp->index = htonl (sock_api_registration_handle (regp));
512   rp->context = mp->context;
513   rp->response = htonl (rv);
514   rp->count = htons (nmsg);
515
516   /* *INDENT-OFF* */
517   hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
518   ({
519     rp->message_table[i].index = htons(hp->value[0]);
520     (void) strncpy_s((char *)rp->message_table[i].name,
521                      64 /* bytes of space at dst */,
522                      (char *)hp->key,
523                      64-1 /* chars to copy, without zero byte. */);
524     i++;
525   }));
526   /* *INDENT-ON* */
527   vl_api_send_msg (regp, (u8 *) rp);
528 }
529
530 /*
531  * vl_api_sockclnt_delete_t_handler
532  */
533 void
534 vl_api_sockclnt_delete_t_handler (vl_api_sockclnt_delete_t * mp)
535 {
536   vl_api_registration_t *regp;
537   vl_api_sockclnt_delete_reply_t *rp;
538
539   regp = vl_api_client_index_to_registration (mp->client_index);
540   if (!regp)
541     return;
542
543   u32 reg_index = socket_api_registration_handle_to_index (ntohl (mp->index));
544   rp = vl_msg_api_alloc (sizeof (*rp));
545   rp->_vl_msg_id = htons (VL_API_SOCKCLNT_DELETE_REPLY);
546   rp->context = mp->context;
547
548   if (!pool_is_free_index (socket_main.registration_pool, reg_index))
549     {
550       rp->response = htonl (1);
551       vl_api_send_msg (regp, (u8 *) rp);
552
553       vl_api_registration_del_file (regp);
554       vl_socket_free_registration_index (reg_index);
555     }
556   else
557     {
558       clib_warning ("unknown client ID %d", reg_index);
559       rp->response = htonl (-1);
560       vl_api_send_msg (regp, (u8 *) rp);
561     }
562 }
563
564 clib_error_t *
565 vl_sock_api_send_fd_msg (int socket_fd, int fds[], int n_fds)
566 {
567   struct msghdr mh = { 0 };
568   struct iovec iov[1];
569   char ctl[CMSG_SPACE (sizeof (int) * n_fds)];
570   struct cmsghdr *cmsg;
571   char *msg = "fdmsg";
572   int rv;
573
574   iov[0].iov_base = msg;
575   iov[0].iov_len = strlen (msg);
576   mh.msg_iov = iov;
577   mh.msg_iovlen = 1;
578
579   clib_memset (&ctl, 0, sizeof (ctl));
580   mh.msg_control = ctl;
581   mh.msg_controllen = sizeof (ctl);
582   cmsg = CMSG_FIRSTHDR (&mh);
583   cmsg->cmsg_len = CMSG_LEN (sizeof (int) * n_fds);
584   cmsg->cmsg_level = SOL_SOCKET;
585   cmsg->cmsg_type = SCM_RIGHTS;
586   clib_memcpy_fast (CMSG_DATA (cmsg), fds, sizeof (int) * n_fds);
587
588   while ((rv = sendmsg (socket_fd, &mh, 0)) < 0 && errno == EAGAIN)
589     ;
590   if (rv < 0)
591     return clib_error_return_unix (0, "sendmsg");
592   return 0;
593 }
594
595 vl_api_shm_elem_config_t *
596 vl_api_make_shm_config (vl_api_sock_init_shm_t * mp)
597 {
598   vl_api_shm_elem_config_t *config = 0, *c;
599   u64 cfg;
600   int i;
601
602   if (!mp->nitems)
603     {
604       vec_validate (config, 6);
605       config[0].type = VL_API_VLIB_RING;
606       config[0].size = 256;
607       config[0].count = 32;
608
609       config[1].type = VL_API_VLIB_RING;
610       config[1].size = 1024;
611       config[1].count = 16;
612
613       config[2].type = VL_API_VLIB_RING;
614       config[2].size = 4096;
615       config[2].count = 2;
616
617       config[3].type = VL_API_CLIENT_RING;
618       config[3].size = 256;
619       config[3].count = 32;
620
621       config[4].type = VL_API_CLIENT_RING;
622       config[4].size = 1024;
623       config[4].count = 16;
624
625       config[5].type = VL_API_CLIENT_RING;
626       config[5].size = 4096;
627       config[5].count = 2;
628
629       config[6].type = VL_API_QUEUE;
630       config[6].count = 128;
631       config[6].size = sizeof (uword);
632     }
633   else
634     {
635       vec_validate (config, mp->nitems - 1);
636       for (i = 0; i < mp->nitems; i++)
637         {
638           cfg = mp->configs[i];
639           /* Pretty much a hack but it avoids defining our own api type
640            * in memclnt.api */
641           c = (vl_api_shm_elem_config_t *) & cfg;
642           config[i].type = c->type;
643           config[i].count = c->count;
644           config[i].size = c->size;
645         }
646     }
647   return config;
648 }
649
650 /*
651  * Bootstrap shm api using the socket api
652  */
653 void
654 vl_api_sock_init_shm_t_handler (vl_api_sock_init_shm_t * mp)
655 {
656   vl_api_sock_init_shm_reply_t *rmp;
657   ssvm_private_t _memfd_private, *memfd = &_memfd_private;
658   svm_map_region_args_t _args, *a = &_args;
659   vl_api_registration_t *regp;
660   api_main_t *am = vlibapi_get_main ();
661   svm_region_t *vlib_rp;
662   clib_file_t *cf;
663   vl_api_shm_elem_config_t *config = 0;
664   vl_shmem_hdr_t *shmem_hdr;
665   int rv, tries = 1000;
666
667   regp = vl_api_client_index_to_registration (mp->client_index);
668   if (regp == 0)
669     {
670       clib_warning ("API client disconnected");
671       return;
672     }
673   if (regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER)
674     {
675       clib_warning ("Invalid registration");
676       return;
677     }
678
679   /*
680    * Set up a memfd segment of the requested size wherein the
681    * shmem data structures will be initialized
682    */
683   clib_memset (memfd, 0, sizeof (*memfd));
684   memfd->ssvm_size = mp->requested_size;
685   memfd->requested_va = 0ULL;
686   memfd->is_server = 1;
687   memfd->name = format (0, "%s%c", regp->name, 0);
688
689   if ((rv = ssvm_server_init_memfd (memfd)))
690     goto reply;
691
692   /* delete the unused heap created in ssvm_server_init_memfd and mark it
693    * accessible again for ASAN */
694   clib_mem_destroy_heap (memfd->sh->heap);
695   CLIB_MEM_UNPOISON ((void *) memfd->sh->ssvm_va, memfd->ssvm_size);
696
697   /* Remember to close this fd when the socket connection goes away */
698   vec_add1 (regp->additional_fds_to_close, memfd->fd);
699
700   /*
701    * Create a plausible svm_region in the memfd backed segment
702    */
703   clib_memset (a, 0, sizeof (*a));
704   a->baseva = memfd->sh->ssvm_va + MMAP_PAGESIZE;
705   a->size = memfd->ssvm_size - MMAP_PAGESIZE;
706   /* $$$$ might want a different config parameter */
707   a->pvt_heap_size = am->api_pvt_heap_size;
708   a->flags = SVM_FLAGS_MHEAP;
709   svm_region_init_mapped_region (a, (svm_region_t *) a->baseva);
710
711   /*
712    * Part deux, initialize the svm_region_t shared-memory header
713    * api allocation rings, and so on.
714    */
715   config = vl_api_make_shm_config (mp);
716   vlib_rp = (svm_region_t *) a->baseva;
717   vl_init_shmem (vlib_rp, config, 1 /* is_vlib (dont-care) */ ,
718                  1 /* is_private */ );
719
720   /* Remember who created this. Needs to be post vl_init_shmem */
721   shmem_hdr = (vl_shmem_hdr_t *) vlib_rp->user_ctx;
722   shmem_hdr->clib_file_index = vl_api_registration_file_index (regp);
723
724   vec_add1 (am->vlib_private_rps, vlib_rp);
725   memfd->sh->ready = 1;
726   vec_free (config);
727
728   /* Recompute the set of input queues to poll in memclnt_process */
729   vec_reset_length (vl_api_queue_cursizes);
730
731 reply:
732
733   rmp = vl_msg_api_alloc (sizeof (*rmp));
734   rmp->_vl_msg_id = htons (VL_API_SOCK_INIT_SHM_REPLY);
735   rmp->context = mp->context;
736   rmp->retval = htonl (rv);
737
738   /*
739    * Note: The reply message needs to make it out the back door
740    * before we send the magic fd message. That's taken care of by
741    * the send function.
742    */
743   vl_socket_api_send (regp, (u8 *) rmp);
744
745   if (rv != 0)
746     return;
747
748   /* Send the magic "here's your sign (aka fd)" socket message */
749   cf = vl_api_registration_file (regp);
750   if (!cf)
751     {
752       clib_warning ("cf removed");
753       return;
754     }
755
756   /* Wait for reply to be consumed before sending the fd */
757   while (tries-- > 0)
758     {
759       int bytes;
760       rv = ioctl (cf->file_descriptor, TIOCOUTQ, &bytes);
761       if (rv < 0)
762         {
763           clib_unix_warning ("ioctl returned");
764           break;
765         }
766       if (bytes == 0)
767         break;
768       usleep (1e3);
769     }
770
771   vl_sock_api_send_fd_msg (cf->file_descriptor, &memfd->fd, 1);
772 }
773
774 #define foreach_vlib_api_msg                                                  \
775   _ (SOCKCLNT_CREATE, sockclnt_create, 0)                                     \
776   _ (SOCKCLNT_DELETE, sockclnt_delete, 0)                                     \
777   _ (SOCK_INIT_SHM, sock_init_shm, 0)
778
779 clib_error_t *
780 vl_sock_api_init (vlib_main_t * vm)
781 {
782   api_main_t *am = vlibapi_get_main ();
783   clib_file_main_t *fm = &file_main;
784   clib_file_t template = { 0 };
785   vl_api_registration_t *rp;
786   socket_main_t *sm = &socket_main;
787   clib_socket_t *sock = &sm->socksvr_listen_socket;
788   clib_error_t *error;
789
790   /* If not explicitly configured, do not bind/enable, etc. */
791   if (sm->socket_name == 0)
792     return 0;
793
794 #define _(N, n, t)                                                            \
795   vl_msg_api_set_handlers (VL_API_##N, #n, vl_api_##n##_t_handler,            \
796                            vl_noop_handler, vl_api_##n##_t_endian,            \
797                            vl_api_##n##_t_print, sizeof (vl_api_##n##_t), t,  \
798                            vl_api_##n##_t_print_json, vl_api_##n##_t_tojson,  \
799                            vl_api_##n##_t_fromjson);                          \
800   am->api_trace_cfg[VL_API_##N].replay_enable = 0;
801   foreach_vlib_api_msg;
802 #undef _
803
804   vec_resize (sm->input_buffer, 4096);
805
806   sock->config = (char *) sm->socket_name;
807   sock->flags = CLIB_SOCKET_F_IS_SERVER | CLIB_SOCKET_F_ALLOW_GROUP_WRITE;
808   error = clib_socket_init (sock);
809   if (error)
810     return error;
811
812   pool_get (sm->registration_pool, rp);
813   clib_memset (rp, 0, sizeof (*rp));
814
815   rp->registration_type = REGISTRATION_TYPE_SOCKET_LISTEN;
816
817   template.read_function = socksvr_accept_ready;
818   template.write_function = socksvr_bogus_write;
819   template.file_descriptor = sock->fd;
820   template.description = format (0, "socksvr %s", sock->config);
821   template.private_data = rp - sm->registration_pool;
822
823   rp->clib_file_index = clib_file_add (fm, &template);
824   return 0;
825 }
826
827 static clib_error_t *
828 socket_exit (vlib_main_t * vm)
829 {
830   socket_main_t *sm = &socket_main;
831   vl_api_registration_t *rp;
832
833   /* Defensive driving in case something wipes out early */
834   if (sm->registration_pool)
835     {
836       u32 index;
837         /* *INDENT-OFF* */
838         pool_foreach (rp, sm->registration_pool)  {
839           vl_api_registration_del_file (rp);
840           index = rp->vl_api_registration_pool_index;
841           vl_socket_free_registration_index (index);
842         }
843 /* *INDENT-ON* */
844     }
845
846   return 0;
847 }
848
849 VLIB_MAIN_LOOP_EXIT_FUNCTION (socket_exit);
850
851 static clib_error_t *
852 socksvr_config (vlib_main_t * vm, unformat_input_t * input)
853 {
854   socket_main_t *sm = &socket_main;
855
856   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
857     {
858       if (unformat (input, "socket-name %s", &sm->socket_name))
859         ;
860       /* DEPRECATE: default keyword is ignored */
861       else if (unformat (input, "default"))
862         ;
863       else
864         {
865           return clib_error_return (0, "unknown input '%U'",
866                                     format_unformat_error, input);
867         }
868     }
869
870   if (!vec_len (sm->socket_name))
871     sm->socket_name = format (0, "%s/%s", vlib_unix_get_runtime_dir (),
872                               API_SOCKET_FILENAME);
873   vec_terminate_c_string (sm->socket_name);
874
875   return 0;
876 }
877
878 VLIB_CONFIG_FUNCTION (socksvr_config, "socksvr");
879
880 void
881 vlibsocket_reference ()
882 {
883 }
884
885 /*
886  * fd.io coding-style-patch-verification: ON
887  *
888  * Local Variables:
889  * eval: (c-set-style "gnu")
890  * End:
891  */