hsa: dealloc proxy fifos on right thread
[vpp.git] / src / plugins / hs_apps / proxy.c
1 /*
2 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include <vnet/vnet.h>
17 #include <vlibmemory/api.h>
18 #include <vnet/session/application.h>
19 #include <vnet/session/application_interface.h>
20 #include <hs_apps/proxy.h>
21 #include <vnet/tcp/tcp.h>
22
23 proxy_main_t proxy_main;
24
25 #define TCP_MSS 1460
26
27 typedef struct
28 {
29   session_endpoint_cfg_t sep;
30   u32 app_index;
31   u32 api_context;
32 } proxy_connect_args_t;
33
34 static void
35 proxy_cb_fn (void *data, u32 data_len)
36 {
37   proxy_connect_args_t *pa = (proxy_connect_args_t *) data;
38   vnet_connect_args_t a;
39
40   clib_memset (&a, 0, sizeof (a));
41   a.api_context = pa->api_context;
42   a.app_index = pa->app_index;
43   clib_memcpy (&a.sep_ext, &pa->sep, sizeof (pa->sep));
44   vnet_connect (&a);
45   if (a.sep_ext.ext_cfg)
46     clib_mem_free (a.sep_ext.ext_cfg);
47 }
48
49 static void
50 proxy_call_main_thread (vnet_connect_args_t * a)
51 {
52   if (vlib_get_thread_index () == 0)
53     {
54       vnet_connect (a);
55       if (a->sep_ext.ext_cfg)
56         clib_mem_free (a->sep_ext.ext_cfg);
57     }
58   else
59     {
60       proxy_connect_args_t args;
61       args.api_context = a->api_context;
62       args.app_index = a->app_index;
63       clib_memcpy (&args.sep, &a->sep_ext, sizeof (a->sep_ext));
64       vl_api_rpc_call_main_thread (proxy_cb_fn, (u8 *) & args, sizeof (args));
65     }
66 }
67
68 static proxy_session_t *
69 proxy_session_alloc (void)
70 {
71   proxy_main_t *pm = &proxy_main;
72   proxy_session_t *ps;
73
74   pool_get_zero (pm->sessions, ps);
75   ps->ps_index = ps - pm->sessions;
76
77   return ps;
78 }
79
80 static inline proxy_session_t *
81 proxy_session_get (u32 ps_index)
82 {
83   proxy_main_t *pm = &proxy_main;
84
85   return pool_elt_at_index (pm->sessions, ps_index);
86 }
87
88 static inline proxy_session_t *
89 proxy_session_get_if_valid (u32 ps_index)
90 {
91   proxy_main_t *pm = &proxy_main;
92
93   if (pool_is_free_index (pm->sessions, ps_index))
94     return 0;
95   return pool_elt_at_index (pm->sessions, ps_index);
96 }
97
98 static void
99 proxy_session_free (proxy_session_t *ps)
100 {
101   proxy_main_t *pm = &proxy_main;
102
103   if (CLIB_DEBUG > 0)
104     clib_memset (ps, 0xFE, sizeof (*ps));
105   pool_put (pm->sessions, ps);
106 }
107
108 static int
109 proxy_session_postponed_free_rpc (void *arg)
110 {
111   uword ps_index = pointer_to_uword (arg);
112   proxy_main_t *pm = &proxy_main;
113   proxy_session_t *ps = 0;
114
115   clib_spinlock_lock_if_init (&pm->sessions_lock);
116
117   ps = proxy_session_get (ps_index);
118   segment_manager_dealloc_fifos (ps->server_rx_fifo, ps->server_tx_fifo);
119   proxy_session_free (ps);
120
121   clib_spinlock_unlock_if_init (&pm->sessions_lock);
122
123   return 0;
124 }
125
126 static void
127 proxy_session_postponed_free (proxy_session_t *ps)
128 {
129   session_send_rpc_evt_to_thread (ps->po_thread_index,
130                                   proxy_session_postponed_free_rpc,
131                                   uword_to_pointer (ps->ps_index, void *));
132 }
133
134 static void
135 proxy_try_close_session (session_t * s, int is_active_open)
136 {
137   proxy_main_t *pm = &proxy_main;
138   proxy_session_t *ps = 0;
139   vnet_disconnect_args_t _a, *a = &_a;
140
141   clib_spinlock_lock_if_init (&pm->sessions_lock);
142
143   ps = proxy_session_get (s->opaque);
144
145   if (is_active_open)
146     {
147       a->handle = ps->vpp_active_open_handle;
148       a->app_index = pm->active_open_app_index;
149       vnet_disconnect_session (a);
150       ps->ao_disconnected = 1;
151
152       if (!ps->po_disconnected)
153         {
154           ASSERT (ps->vpp_server_handle != SESSION_INVALID_HANDLE);
155           a->handle = ps->vpp_server_handle;
156           a->app_index = pm->server_app_index;
157           vnet_disconnect_session (a);
158           ps->po_disconnected = 1;
159         }
160     }
161   else
162     {
163       a->handle = ps->vpp_server_handle;
164       a->app_index = pm->server_app_index;
165       vnet_disconnect_session (a);
166       ps->po_disconnected = 1;
167
168       if (!ps->ao_disconnected && !ps->active_open_establishing)
169         {
170           /* Proxy session closed before active open */
171           if (ps->vpp_active_open_handle != SESSION_INVALID_HANDLE)
172             {
173               a->handle = ps->vpp_active_open_handle;
174               a->app_index = pm->active_open_app_index;
175               vnet_disconnect_session (a);
176             }
177           ps->ao_disconnected = 1;
178         }
179     }
180   clib_spinlock_unlock_if_init (&pm->sessions_lock);
181 }
182
183 static void
184 proxy_try_delete_session (session_t * s, u8 is_active_open)
185 {
186   proxy_main_t *pm = &proxy_main;
187   proxy_session_t *ps = 0;
188
189   clib_spinlock_lock_if_init (&pm->sessions_lock);
190
191   ps = proxy_session_get (s->opaque);
192
193   if (is_active_open)
194     {
195       ps->vpp_active_open_handle = SESSION_INVALID_HANDLE;
196
197       /* Revert master thread index change on connect notification */
198       ps->server_rx_fifo->master_thread_index = ps->po_thread_index;
199
200       /* Passive open already cleaned up */
201       if (ps->vpp_server_handle == SESSION_INVALID_HANDLE)
202         {
203           ASSERT (s->rx_fifo->refcnt == 1);
204
205           /* The two sides of the proxy on different threads */
206           if (ps->po_thread_index != s->thread_index)
207             {
208               /* This is not the right thread to delete the fifos */
209               s->rx_fifo = 0;
210               s->tx_fifo = 0;
211               proxy_session_postponed_free (ps);
212             }
213           else
214             proxy_session_free (ps);
215         }
216     }
217   else
218     {
219       ps->vpp_server_handle = SESSION_INVALID_HANDLE;
220
221       if (ps->vpp_active_open_handle == SESSION_INVALID_HANDLE)
222         {
223           if (!ps->active_open_establishing)
224             proxy_session_free (ps);
225         }
226     }
227   clib_spinlock_unlock_if_init (&pm->sessions_lock);
228 }
229
230 static int
231 common_fifo_tuning_callback (session_t * s, svm_fifo_t * f,
232                              session_ft_action_t act, u32 bytes)
233 {
234   proxy_main_t *pm = &proxy_main;
235
236   segment_manager_t *sm = segment_manager_get (f->segment_manager);
237   fifo_segment_t *fs = segment_manager_get_segment (sm, f->segment_index);
238
239   u8 seg_usage = fifo_segment_get_mem_usage (fs);
240   u32 fifo_in_use = svm_fifo_max_dequeue_prod (f);
241   u32 fifo_size = svm_fifo_size (f);
242   u8 fifo_usage = fifo_in_use * 100 / fifo_size;
243   u8 update_size = 0;
244
245   ASSERT (act < SESSION_FT_ACTION_N_ACTIONS);
246
247   if (act == SESSION_FT_ACTION_ENQUEUED)
248     {
249       if (seg_usage < pm->low_watermark && fifo_usage > 50)
250         update_size = fifo_in_use;
251       else if (seg_usage < pm->high_watermark && fifo_usage > 80)
252         update_size = fifo_in_use;
253
254       update_size = clib_min (update_size, sm->max_fifo_size - fifo_size);
255       if (update_size)
256         svm_fifo_set_size (f, fifo_size + update_size);
257     }
258   else                          /* dequeued */
259     {
260       if (seg_usage > pm->high_watermark || fifo_usage < 20)
261         update_size = bytes;
262       else if (seg_usage > pm->low_watermark && fifo_usage < 50)
263         update_size = (bytes / 2);
264
265       ASSERT (fifo_size >= 4096);
266       update_size = clib_min (update_size, fifo_size - 4096);
267       if (update_size)
268         svm_fifo_set_size (f, fifo_size - update_size);
269     }
270
271   return 0;
272 }
273
274 static int
275 proxy_accept_callback (session_t * s)
276 {
277   proxy_main_t *pm = &proxy_main;
278   proxy_session_t *ps;
279
280   clib_spinlock_lock_if_init (&pm->sessions_lock);
281
282   ps = proxy_session_alloc ();
283   ps->vpp_server_handle = session_handle (s);
284   ps->vpp_active_open_handle = SESSION_INVALID_HANDLE;
285   ps->po_thread_index = s->thread_index;
286
287   s->opaque = ps->ps_index;
288
289   clib_spinlock_unlock_if_init (&pm->sessions_lock);
290
291   s->session_state = SESSION_STATE_READY;
292
293   return 0;
294 }
295
296 static void
297 proxy_disconnect_callback (session_t * s)
298 {
299   proxy_try_close_session (s, 0 /* is_active_open */ );
300 }
301
302 static void
303 proxy_reset_callback (session_t * s)
304 {
305   proxy_try_close_session (s, 0 /* is_active_open */ );
306 }
307
308 static int
309 proxy_connected_callback (u32 app_index, u32 api_context,
310                           session_t * s, session_error_t err)
311 {
312   clib_warning ("called...");
313   return -1;
314 }
315
316 static int
317 proxy_add_segment_callback (u32 client_index, u64 segment_handle)
318 {
319   return 0;
320 }
321
322 static int
323 proxy_transport_needs_crypto (transport_proto_t proto)
324 {
325   return proto == TRANSPORT_PROTO_TLS;
326 }
327
328 static int
329 proxy_rx_callback (session_t * s)
330 {
331   proxy_main_t *pm = &proxy_main;
332   u32 thread_index = vlib_get_thread_index ();
333   svm_fifo_t *ao_tx_fifo;
334   proxy_session_t *ps;
335
336   ASSERT (s->thread_index == thread_index);
337
338   clib_spinlock_lock_if_init (&pm->sessions_lock);
339
340   ps = proxy_session_get (s->opaque);
341
342   if (PREDICT_TRUE (ps->vpp_active_open_handle != SESSION_INVALID_HANDLE))
343     {
344       clib_spinlock_unlock_if_init (&pm->sessions_lock);
345
346       ao_tx_fifo = s->rx_fifo;
347
348       /*
349        * Send event for active open tx fifo
350        */
351       if (svm_fifo_set_event (ao_tx_fifo))
352         {
353           u32 ao_thread_index = ao_tx_fifo->master_thread_index;
354           u32 ao_session_index = ao_tx_fifo->shr->master_session_index;
355           if (session_send_io_evt_to_thread_custom (&ao_session_index,
356                                                     ao_thread_index,
357                                                     SESSION_IO_EVT_TX))
358             clib_warning ("failed to enqueue tx evt");
359         }
360
361       if (svm_fifo_max_enqueue (ao_tx_fifo) <= TCP_MSS)
362         svm_fifo_add_want_deq_ntf (ao_tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
363     }
364   else
365     {
366       vnet_connect_args_t _a, *a = &_a;
367       svm_fifo_t *tx_fifo, *rx_fifo;
368       u32 max_dequeue, ps_index;
369       int actual_transfer __attribute__ ((unused));
370
371       rx_fifo = s->rx_fifo;
372       tx_fifo = s->tx_fifo;
373
374       ASSERT (rx_fifo->master_thread_index == thread_index);
375       ASSERT (tx_fifo->master_thread_index == thread_index);
376
377       max_dequeue = svm_fifo_max_dequeue_cons (s->rx_fifo);
378
379       if (PREDICT_FALSE (max_dequeue == 0))
380         {
381           clib_spinlock_unlock_if_init (&pm->sessions_lock);
382           return 0;
383         }
384
385       max_dequeue = clib_min (pm->rcv_buffer_size, max_dequeue);
386       actual_transfer = svm_fifo_peek (rx_fifo, 0 /* relative_offset */ ,
387                                        max_dequeue, pm->rx_buf[thread_index]);
388
389       /* $$$ your message in this space: parse url, etc. */
390
391       clib_memset (a, 0, sizeof (*a));
392
393       ps->server_rx_fifo = rx_fifo;
394       ps->server_tx_fifo = tx_fifo;
395       ps->active_open_establishing = 1;
396       ps_index = ps->ps_index;
397
398       clib_spinlock_unlock_if_init (&pm->sessions_lock);
399
400       clib_memcpy (&a->sep_ext, &pm->client_sep, sizeof (pm->client_sep));
401       a->api_context = ps_index;
402       a->app_index = pm->active_open_app_index;
403
404       if (proxy_transport_needs_crypto (a->sep.transport_proto))
405         {
406           session_endpoint_alloc_ext_cfg (&a->sep_ext,
407                                           TRANSPORT_ENDPT_EXT_CFG_CRYPTO);
408           a->sep_ext.ext_cfg->crypto.ckpair_index = pm->ckpair_index;
409         }
410
411       proxy_call_main_thread (a);
412     }
413
414   return 0;
415 }
416
417 static void
418 proxy_force_ack (void *handlep)
419 {
420   transport_connection_t *tc;
421   session_t *ao_s;
422
423   ao_s = session_get_from_handle (pointer_to_uword (handlep));
424   if (session_get_transport_proto (ao_s) != TRANSPORT_PROTO_TCP)
425     return;
426   tc = session_get_transport (ao_s);
427   tcp_send_ack ((tcp_connection_t *) tc);
428 }
429
430 static int
431 proxy_tx_callback (session_t * proxy_s)
432 {
433   proxy_main_t *pm = &proxy_main;
434   proxy_session_t *ps;
435   u32 min_free;
436
437   min_free = clib_min (svm_fifo_size (proxy_s->tx_fifo) >> 3, 128 << 10);
438   if (svm_fifo_max_enqueue (proxy_s->tx_fifo) < min_free)
439     {
440       svm_fifo_add_want_deq_ntf (proxy_s->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
441       return 0;
442     }
443
444   clib_spinlock_lock_if_init (&pm->sessions_lock);
445
446   ps = proxy_session_get (proxy_s->opaque);
447
448   if (ps->vpp_active_open_handle == SESSION_INVALID_HANDLE)
449     goto unlock;
450
451   /* Force ack on active open side to update rcv wnd. Make sure it's done on
452    * the right thread */
453   void *arg = uword_to_pointer (ps->vpp_active_open_handle, void *);
454   session_send_rpc_evt_to_thread (ps->server_rx_fifo->master_thread_index,
455                                   proxy_force_ack, arg);
456
457 unlock:
458   clib_spinlock_unlock_if_init (&pm->sessions_lock);
459
460   return 0;
461 }
462
463 static void
464 proxy_cleanup_callback (session_t * s, session_cleanup_ntf_t ntf)
465 {
466   if (ntf == SESSION_CLEANUP_TRANSPORT)
467     return;
468
469   proxy_try_delete_session (s, 0 /* is_active_open */ );
470 }
471
472 static session_cb_vft_t proxy_session_cb_vft = {
473   .session_accept_callback = proxy_accept_callback,
474   .session_disconnect_callback = proxy_disconnect_callback,
475   .session_connected_callback = proxy_connected_callback,
476   .add_segment_callback = proxy_add_segment_callback,
477   .builtin_app_rx_callback = proxy_rx_callback,
478   .builtin_app_tx_callback = proxy_tx_callback,
479   .session_reset_callback = proxy_reset_callback,
480   .session_cleanup_callback = proxy_cleanup_callback,
481   .fifo_tuning_callback = common_fifo_tuning_callback
482 };
483
484 static int
485 active_open_connected_callback (u32 app_index, u32 opaque,
486                                 session_t * s, session_error_t err)
487 {
488   proxy_main_t *pm = &proxy_main;
489   proxy_session_t *ps;
490   u8 thread_index = vlib_get_thread_index ();
491
492   /*
493    * Setup proxy session handle.
494    */
495   clib_spinlock_lock_if_init (&pm->sessions_lock);
496
497   ps = proxy_session_get (opaque);
498
499   /* Connection failed */
500   if (err)
501     {
502       vnet_disconnect_args_t _a, *a = &_a;
503
504       a->handle = ps->vpp_server_handle;
505       a->app_index = pm->server_app_index;
506       vnet_disconnect_session (a);
507       ps->po_disconnected = 1;
508     }
509   else
510     {
511       ps->vpp_active_open_handle = session_handle (s);
512       ps->active_open_establishing = 0;
513     }
514
515   /* Passive open session was already closed! */
516   if (ps->po_disconnected)
517     {
518       /* Setup everything for the cleanup notification */
519       ps->ao_disconnected = 1;
520       clib_spinlock_unlock_if_init (&pm->sessions_lock);
521       return -1;
522     }
523
524   s->tx_fifo = ps->server_rx_fifo;
525   s->rx_fifo = ps->server_tx_fifo;
526
527   /*
528    * Reset the active-open tx-fifo master indices so the active-open session
529    * will receive data, etc.
530    */
531   s->tx_fifo->shr->master_session_index = s->session_index;
532   s->tx_fifo->master_thread_index = s->thread_index;
533
534   /*
535    * Account for the active-open session's use of the fifos
536    * so they won't disappear until the last session which uses
537    * them disappears
538    */
539   s->tx_fifo->refcnt++;
540   s->rx_fifo->refcnt++;
541
542   s->opaque = opaque;
543
544   clib_spinlock_unlock_if_init (&pm->sessions_lock);
545
546   /*
547    * Send event for active open tx fifo
548    */
549   ASSERT (s->thread_index == thread_index);
550   if (svm_fifo_set_event (s->tx_fifo))
551     session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
552
553   return 0;
554 }
555
556 static void
557 active_open_reset_callback (session_t * s)
558 {
559   proxy_try_close_session (s, 1 /* is_active_open */ );
560 }
561
562 static int
563 active_open_create_callback (session_t * s)
564 {
565   return 0;
566 }
567
568 static void
569 active_open_disconnect_callback (session_t * s)
570 {
571   proxy_try_close_session (s, 1 /* is_active_open */ );
572 }
573
574 static int
575 active_open_rx_callback (session_t * s)
576 {
577   svm_fifo_t *proxy_tx_fifo;
578
579   proxy_tx_fifo = s->rx_fifo;
580
581   /*
582    * Send event for server tx fifo
583    */
584   if (svm_fifo_set_event (proxy_tx_fifo))
585     {
586       u8 thread_index = proxy_tx_fifo->master_thread_index;
587       u32 session_index = proxy_tx_fifo->shr->master_session_index;
588       return session_send_io_evt_to_thread_custom (&session_index,
589                                                    thread_index,
590                                                    SESSION_IO_EVT_TX);
591     }
592
593   if (svm_fifo_max_enqueue (proxy_tx_fifo) <= TCP_MSS)
594     svm_fifo_add_want_deq_ntf (proxy_tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
595
596   return 0;
597 }
598
599 static int
600 active_open_tx_callback (session_t * ao_s)
601 {
602   proxy_main_t *pm = &proxy_main;
603   transport_connection_t *tc;
604   proxy_session_t *ps;
605   session_t *proxy_s;
606   u32 min_free;
607
608   min_free = clib_min (svm_fifo_size (ao_s->tx_fifo) >> 3, 128 << 10);
609   if (svm_fifo_max_enqueue (ao_s->tx_fifo) < min_free)
610     {
611       svm_fifo_add_want_deq_ntf (ao_s->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
612       return 0;
613     }
614
615   clib_spinlock_lock_if_init (&pm->sessions_lock);
616
617   ps = proxy_session_get_if_valid (ao_s->opaque);
618   if (!ps)
619     goto unlock;
620
621   if (ps->vpp_server_handle == ~0)
622     goto unlock;
623
624   proxy_s = session_get_from_handle (ps->vpp_server_handle);
625
626   /* Force ack on proxy side to update rcv wnd */
627   tc = session_get_transport (proxy_s);
628   tcp_send_ack ((tcp_connection_t *) tc);
629
630 unlock:
631   clib_spinlock_unlock_if_init (&pm->sessions_lock);
632
633   return 0;
634 }
635
636 static void
637 active_open_cleanup_callback (session_t * s, session_cleanup_ntf_t ntf)
638 {
639   if (ntf == SESSION_CLEANUP_TRANSPORT)
640     return;
641
642   proxy_try_delete_session (s, 1 /* is_active_open */ );
643 }
644
645 /* *INDENT-OFF* */
646 static session_cb_vft_t active_open_clients = {
647   .session_reset_callback = active_open_reset_callback,
648   .session_connected_callback = active_open_connected_callback,
649   .session_accept_callback = active_open_create_callback,
650   .session_disconnect_callback = active_open_disconnect_callback,
651   .session_cleanup_callback = active_open_cleanup_callback,
652   .builtin_app_rx_callback = active_open_rx_callback,
653   .builtin_app_tx_callback = active_open_tx_callback,
654   .fifo_tuning_callback = common_fifo_tuning_callback
655 };
656 /* *INDENT-ON* */
657
658 static int
659 proxy_server_attach ()
660 {
661   proxy_main_t *pm = &proxy_main;
662   u64 options[APP_OPTIONS_N_OPTIONS];
663   vnet_app_attach_args_t _a, *a = &_a;
664   u32 segment_size = 512 << 20;
665
666   clib_memset (a, 0, sizeof (*a));
667   clib_memset (options, 0, sizeof (options));
668
669   if (pm->private_segment_size)
670     segment_size = pm->private_segment_size;
671   a->name = format (0, "proxy-server");
672   a->api_client_index = pm->server_client_index;
673   a->session_cb_vft = &proxy_session_cb_vft;
674   a->options = options;
675   a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size;
676   a->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = segment_size;
677   a->options[APP_OPTIONS_RX_FIFO_SIZE] = pm->fifo_size;
678   a->options[APP_OPTIONS_TX_FIFO_SIZE] = pm->fifo_size;
679   a->options[APP_OPTIONS_MAX_FIFO_SIZE] = pm->max_fifo_size;
680   a->options[APP_OPTIONS_HIGH_WATERMARK] = (u64) pm->high_watermark;
681   a->options[APP_OPTIONS_LOW_WATERMARK] = (u64) pm->low_watermark;
682   a->options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = pm->private_segment_count;
683   a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
684     pm->prealloc_fifos ? pm->prealloc_fifos : 0;
685
686   a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN;
687
688   if (vnet_application_attach (a))
689     {
690       clib_warning ("failed to attach server");
691       return -1;
692     }
693   pm->server_app_index = a->app_index;
694
695   vec_free (a->name);
696   return 0;
697 }
698
699 static int
700 active_open_attach (void)
701 {
702   proxy_main_t *pm = &proxy_main;
703   vnet_app_attach_args_t _a, *a = &_a;
704   u64 options[APP_OPTIONS_N_OPTIONS];
705
706   clib_memset (a, 0, sizeof (*a));
707   clib_memset (options, 0, sizeof (options));
708
709   a->api_client_index = pm->active_open_client_index;
710   a->session_cb_vft = &active_open_clients;
711   a->name = format (0, "proxy-active-open");
712
713   options[APP_OPTIONS_ACCEPT_COOKIE] = 0x12345678;
714   options[APP_OPTIONS_SEGMENT_SIZE] = 512 << 20;
715   options[APP_OPTIONS_RX_FIFO_SIZE] = pm->fifo_size;
716   options[APP_OPTIONS_TX_FIFO_SIZE] = pm->fifo_size;
717   options[APP_OPTIONS_MAX_FIFO_SIZE] = pm->max_fifo_size;
718   options[APP_OPTIONS_HIGH_WATERMARK] = (u64) pm->high_watermark;
719   options[APP_OPTIONS_LOW_WATERMARK] = (u64) pm->low_watermark;
720   options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = pm->private_segment_count;
721   options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
722     pm->prealloc_fifos ? pm->prealloc_fifos : 0;
723
724   options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN
725     | APP_OPTIONS_FLAGS_IS_PROXY;
726
727   a->options = options;
728
729   if (vnet_application_attach (a))
730     return -1;
731
732   pm->active_open_app_index = a->app_index;
733
734   vec_free (a->name);
735
736   return 0;
737 }
738
739 static int
740 proxy_server_listen ()
741 {
742   proxy_main_t *pm = &proxy_main;
743   vnet_listen_args_t _a, *a = &_a;
744   int rv;
745
746   clib_memset (a, 0, sizeof (*a));
747
748   a->app_index = pm->server_app_index;
749   clib_memcpy (&a->sep_ext, &pm->server_sep, sizeof (pm->server_sep));
750   if (proxy_transport_needs_crypto (a->sep.transport_proto))
751     {
752       session_endpoint_alloc_ext_cfg (&a->sep_ext,
753                                       TRANSPORT_ENDPT_EXT_CFG_CRYPTO);
754       a->sep_ext.ext_cfg->crypto.ckpair_index = pm->ckpair_index;
755     }
756
757   rv = vnet_listen (a);
758   if (a->sep_ext.ext_cfg)
759     clib_mem_free (a->sep_ext.ext_cfg);
760
761   return rv;
762 }
763
764 static void
765 proxy_server_add_ckpair (void)
766 {
767   vnet_app_add_cert_key_pair_args_t _ck_pair, *ck_pair = &_ck_pair;
768   proxy_main_t *pm = &proxy_main;
769
770   clib_memset (ck_pair, 0, sizeof (*ck_pair));
771   ck_pair->cert = (u8 *) test_srv_crt_rsa;
772   ck_pair->key = (u8 *) test_srv_key_rsa;
773   ck_pair->cert_len = test_srv_crt_rsa_len;
774   ck_pair->key_len = test_srv_key_rsa_len;
775   vnet_app_add_cert_key_pair (ck_pair);
776
777   pm->ckpair_index = ck_pair->index;
778 }
779
780 static int
781 proxy_server_create (vlib_main_t * vm)
782 {
783   vlib_thread_main_t *vtm = vlib_get_thread_main ();
784   proxy_main_t *pm = &proxy_main;
785   u32 num_threads;
786   int i;
787
788   num_threads = 1 /* main thread */  + vtm->n_threads;
789   vec_validate (pm->rx_buf, num_threads - 1);
790
791   for (i = 0; i < num_threads; i++)
792     vec_validate (pm->rx_buf[i], pm->rcv_buffer_size);
793
794   proxy_server_add_ckpair ();
795
796   if (proxy_server_attach ())
797     {
798       clib_warning ("failed to attach server app");
799       return -1;
800     }
801   if (proxy_server_listen ())
802     {
803       clib_warning ("failed to start listening");
804       return -1;
805     }
806   if (active_open_attach ())
807     {
808       clib_warning ("failed to attach active open app");
809       return -1;
810     }
811
812   return 0;
813 }
814
815 static clib_error_t *
816 proxy_server_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
817                                 vlib_cli_command_t * cmd)
818 {
819   unformat_input_t _line_input, *line_input = &_line_input;
820   char *default_server_uri = "tcp://0.0.0.0/23";
821   char *default_client_uri = "tcp://6.0.2.2/23";
822   u8 *server_uri = 0, *client_uri = 0;
823   proxy_main_t *pm = &proxy_main;
824   clib_error_t *error = 0;
825   int rv, tmp32;
826   u64 tmp64;
827
828   pm->fifo_size = 64 << 10;
829   pm->max_fifo_size = 128 << 20;
830   pm->high_watermark = 80;
831   pm->low_watermark = 50;
832   pm->rcv_buffer_size = 1024;
833   pm->prealloc_fifos = 0;
834   pm->private_segment_count = 0;
835   pm->private_segment_size = 0;
836
837   if (vlib_num_workers ())
838     clib_spinlock_init (&pm->sessions_lock);
839
840   if (!unformat_user (input, unformat_line_input, line_input))
841     return 0;
842
843   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
844     {
845       if (unformat (line_input, "fifo-size %U", unformat_memory_size,
846                     &pm->fifo_size))
847         ;
848       else if (unformat (line_input, "max-fifo-size %U", unformat_memory_size,
849                          &pm->max_fifo_size))
850         ;
851       else if (unformat (line_input, "high-watermark %d", &tmp32))
852         pm->high_watermark = (u8) tmp32;
853       else if (unformat (line_input, "low-watermark %d", &tmp32))
854         pm->low_watermark = (u8) tmp32;
855       else if (unformat (line_input, "rcv-buf-size %d", &pm->rcv_buffer_size))
856         ;
857       else if (unformat (line_input, "prealloc-fifos %d", &pm->prealloc_fifos))
858         ;
859       else if (unformat (line_input, "private-segment-count %d",
860                          &pm->private_segment_count))
861         ;
862       else if (unformat (line_input, "private-segment-size %U",
863                          unformat_memory_size, &tmp64))
864         {
865           if (tmp64 >= 0x100000000ULL)
866             {
867               error = clib_error_return (
868                 0, "private segment size %lld (%llu) too large", tmp64, tmp64);
869               goto done;
870             }
871           pm->private_segment_size = tmp64;
872         }
873       else if (unformat (line_input, "server-uri %s", &server_uri))
874         vec_add1 (server_uri, 0);
875       else if (unformat (line_input, "client-uri %s", &client_uri))
876         vec_add1 (client_uri, 0);
877       else
878         {
879           error = clib_error_return (0, "unknown input `%U'",
880                                      format_unformat_error, line_input);
881           goto done;
882         }
883     }
884
885   if (!server_uri)
886     {
887       clib_warning ("No server-uri provided, Using default: %s",
888                     default_server_uri);
889       server_uri = format (0, "%s%c", default_server_uri, 0);
890     }
891   if (!client_uri)
892     {
893       clib_warning ("No client-uri provided, Using default: %s",
894                     default_client_uri);
895       client_uri = format (0, "%s%c", default_client_uri, 0);
896     }
897
898   if (parse_uri ((char *) server_uri, &pm->server_sep))
899     {
900       error = clib_error_return (0, "Invalid server uri %v", server_uri);
901       goto done;
902     }
903   if (parse_uri ((char *) client_uri, &pm->client_sep))
904     {
905       error = clib_error_return (0, "Invalid client uri %v", client_uri);
906       goto done;
907     }
908
909   vnet_session_enable_disable (vm, 1 /* turn on session and transport */ );
910
911   rv = proxy_server_create (vm);
912   switch (rv)
913     {
914     case 0:
915       break;
916     default:
917       error = clib_error_return (0, "server_create returned %d", rv);
918     }
919
920 done:
921   unformat_free (line_input);
922   vec_free (client_uri);
923   vec_free (server_uri);
924   return error;
925 }
926
927 VLIB_CLI_COMMAND (proxy_create_command, static) =
928 {
929   .path = "test proxy server",
930   .short_help = "test proxy server [server-uri <tcp://ip/port>]"
931       "[client-uri <tcp://ip/port>][fifo-size <nn>[k|m]]"
932       "[max-fifo-size <nn>[k|m]][high-watermark <nn>]"
933       "[low-watermark <nn>][rcv-buf-size <nn>][prealloc-fifos <nn>]"
934       "[private-segment-size <mem>][private-segment-count <nn>]",
935   .function = proxy_server_create_command_fn,
936 };
937
938 clib_error_t *
939 proxy_main_init (vlib_main_t * vm)
940 {
941   proxy_main_t *pm = &proxy_main;
942   pm->server_client_index = ~0;
943   pm->active_open_client_index = ~0;
944
945   return 0;
946 }
947
948 VLIB_INIT_FUNCTION (proxy_main_init);
949
950 /*
951 * fd.io coding-style-patch-verification: ON
952 *
953 * Local Variables:
954 * eval: (c-set-style "gnu")
955 * End:
956 */