session: cleanup segment manager and fifo segment
[vpp.git] / src / vnet / session / application_interface.h
1 /*
2  * Copyright (c) 2016-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 #ifndef __included_uri_h__
16 #define __included_uri_h__
17
18 #include <vlibmemory/api.h>
19 #include <svm/message_queue.h>
20 #include <vnet/session/session_types.h>
21 #include <vnet/tls/tls_test.h>
22 #include <svm/fifo_segment.h>
23
24 typedef struct _stream_session_cb_vft
25 {
26   /** Notify server of new segment */
27   int (*add_segment_callback) (u32 api_client_index, u64 segment_handle);
28
29   /** Notify server of new segment */
30   int (*del_segment_callback) (u32 api_client_index, u64 segment_handle);
31
32   /** Notify server of newly accepted session */
33   int (*session_accept_callback) (session_t * new_session);
34
35   /** Connection request callback */
36   int (*session_connected_callback) (u32 app_wrk_index, u32 opaque,
37                                      session_t * s, u8 code);
38
39   /** Notify app that session is closing */
40   void (*session_disconnect_callback) (session_t * s);
41
42   /** Notify app that session was reset */
43   void (*session_reset_callback) (session_t * s);
44
45   /** Direct RX callback for built-in application */
46   int (*builtin_app_rx_callback) (session_t * session);
47
48   /** Direct TX callback for built-in application */
49   int (*builtin_app_tx_callback) (session_t * session);
50
51 } session_cb_vft_t;
52
53 #define foreach_app_init_args                   \
54   _(u32, api_client_index)                      \
55   _(u8 *, name)                                 \
56   _(u64 *, options)                             \
57   _(u8 *, namespace_id)                         \
58   _(session_cb_vft_t *, session_cb_vft)         \
59   _(u32, app_index)                             \
60
61 typedef struct _vnet_app_attach_args_t
62 {
63 #define _(_type, _name) _type _name;
64   foreach_app_init_args
65 #undef _
66   ssvm_private_t * segment;
67   svm_msg_q_t *app_evt_q;
68   u64 segment_handle;
69 } vnet_app_attach_args_t;
70
71 typedef struct _vnet_app_detach_args_t
72 {
73   u32 app_index;
74   u32 api_client_index;
75 } vnet_app_detach_args_t;
76
77 typedef struct _vnet_bind_args_t
78 {
79   union
80   {
81     session_endpoint_cfg_t sep_ext;
82     session_endpoint_t sep;
83     char *uri;
84   };
85
86   u32 app_index;
87   u32 wrk_map_index;
88
89   /*
90    * Results
91    */
92   char *segment_name;
93   u32 segment_name_length;
94   u64 server_event_queue_address;
95   u64 handle;
96 } vnet_listen_args_t;
97
98 typedef struct _vnet_unlisten_args_t
99 {
100   union
101   {
102     char *uri;
103     u64 handle;                 /**< Session handle */
104   };
105   u32 app_index;                /**< Owning application index */
106   u32 wrk_map_index;            /**< App's local pool worker index */
107 } vnet_unlisten_args_t;
108
109 typedef struct _vnet_connect_args
110 {
111   union
112   {
113     session_endpoint_cfg_t sep_ext;
114     session_endpoint_t sep;
115     char *uri;
116   };
117   u32 app_index;
118   u32 wrk_map_index;
119   u32 api_context;
120
121   session_handle_t session_handle;
122 } vnet_connect_args_t;
123
124 typedef struct _vnet_disconnect_args_t
125 {
126   session_handle_t handle;
127   u32 app_index;
128 } vnet_disconnect_args_t;
129
130 typedef struct _vnet_application_add_tls_cert_args_t
131 {
132   u32 app_index;
133   u8 *cert;
134 } vnet_app_add_tls_cert_args_t;
135
136 typedef struct _vnet_application_add_tls_key_args_t
137 {
138   u32 app_index;
139   u8 *key;
140 } vnet_app_add_tls_key_args_t;
141
142 typedef enum tls_engine_type_
143 {
144   TLS_ENGINE_NONE,
145   TLS_ENGINE_MBEDTLS,
146   TLS_ENGINE_OPENSSL,
147   TLS_N_ENGINES
148 } tls_engine_type_t;
149
150 /* Application attach options */
151 typedef enum
152 {
153   APP_OPTIONS_FLAGS,
154   APP_OPTIONS_EVT_QUEUE_SIZE,
155   APP_OPTIONS_SEGMENT_SIZE,
156   APP_OPTIONS_ADD_SEGMENT_SIZE,
157   APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
158   APP_OPTIONS_RX_FIFO_SIZE,
159   APP_OPTIONS_TX_FIFO_SIZE,
160   APP_OPTIONS_PREALLOC_FIFO_PAIRS,
161   APP_OPTIONS_NAMESPACE,
162   APP_OPTIONS_NAMESPACE_SECRET,
163   APP_OPTIONS_PROXY_TRANSPORT,
164   APP_OPTIONS_ACCEPT_COOKIE,
165   APP_OPTIONS_TLS_ENGINE,
166   APP_OPTIONS_N_OPTIONS
167 } app_attach_options_index_t;
168
169 #define foreach_app_options_flags                               \
170   _(ACCEPT_REDIRECT, "Use FIFO with redirects")                 \
171   _(ADD_SEGMENT, "Add segment and signal app if needed")        \
172   _(IS_BUILTIN, "Application is builtin")                       \
173   _(IS_TRANSPORT_APP, "Application is a transport proto")       \
174   _(IS_PROXY, "Application is proxying")                        \
175   _(USE_GLOBAL_SCOPE, "App can use global session scope")       \
176   _(USE_LOCAL_SCOPE, "App can use local session scope")         \
177   _(EVT_MQ_USE_EVENTFD, "Use eventfds for signaling")           \
178
179 typedef enum _app_options
180 {
181 #define _(sym, str) APP_OPTIONS_##sym,
182   foreach_app_options_flags
183 #undef _
184 } app_options_t;
185
186 typedef enum _app_options_flags
187 {
188 #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
189   foreach_app_options_flags
190 #undef _
191 } app_options_flags_t;
192
193 #define foreach_fd_type                                         \
194   _(VPP_MQ_SEGMENT, "Fd for vpp's event mq segment")            \
195   _(MEMFD_SEGMENT, "Fd for memfd segment")                      \
196   _(MQ_EVENTFD, "Event fd used by message queue")               \
197   _(VPP_MQ_EVENTFD, "Event fd used by vpp's message queue")     \
198
199 typedef enum session_fd_type_
200 {
201 #define _(sym, str) SESSION_FD_##sym,
202   foreach_fd_type
203 #undef _
204   SESSION_N_FD_TYPE
205 } session_fd_type_t;
206
207 typedef enum session_fd_flag_
208 {
209 #define _(sym, str) SESSION_FD_F_##sym = 1 << SESSION_FD_##sym,
210   foreach_fd_type
211 #undef _
212 } session_fd_flag_t;
213
214 int parse_uri (char *uri, session_endpoint_cfg_t * sep);
215 int vnet_bind_uri (vnet_listen_args_t *);
216 int vnet_unbind_uri (vnet_unlisten_args_t * a);
217 int vnet_connect_uri (vnet_connect_args_t * a);
218
219 int vnet_application_attach (vnet_app_attach_args_t * a);
220 int vnet_application_detach (vnet_app_detach_args_t * a);
221 int vnet_listen (vnet_listen_args_t * a);
222 int vnet_connect (vnet_connect_args_t * a);
223 int vnet_unlisten (vnet_unlisten_args_t * a);
224 int vnet_disconnect_session (vnet_disconnect_args_t * a);
225
226 clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
227 clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
228
229 typedef struct app_session_transport_
230 {
231   ip46_address_t rmt_ip;        /**< remote ip */
232   ip46_address_t lcl_ip;        /**< local ip */
233   u16 rmt_port;                 /**< remote port (network order) */
234   u16 lcl_port;                 /**< local port (network order) */
235   u8 is_ip4;                    /**< set if uses ip4 networking */
236 } app_session_transport_t;
237
238 #define foreach_app_session_field                                       \
239   _(svm_fifo_t, *rx_fifo)               /**< rx fifo */                 \
240   _(svm_fifo_t, *tx_fifo)               /**< tx fifo */                 \
241   _(session_type_t, session_type)       /**< session type */            \
242   _(volatile u8, session_state)         /**< session state */           \
243   _(u32, session_index)                 /**< index in owning pool */    \
244   _(app_session_transport_t, transport) /**< transport info */          \
245   _(svm_msg_q_t, *vpp_evt_q)            /**< vpp event queue  */        \
246   _(u8, is_dgram)                       /**< flag for dgram mode */     \
247
248 typedef struct
249 {
250 #define _(type, name) type name;
251   foreach_app_session_field
252 #undef _
253 } app_session_t;
254
255 typedef struct session_bound_msg_
256 {
257   u32 context;
258   u64 handle;
259   i32 retval;
260   u8 lcl_is_ip4;
261   u8 lcl_ip[16];
262   u16 lcl_port;
263   uword rx_fifo;
264   uword tx_fifo;
265   uword vpp_evt_q;
266   u32 segment_size;
267   u8 segment_name_length;
268   u8 segment_name[128];
269 } __clib_packed session_bound_msg_t;
270
271 typedef struct session_unlisten_reply_msg_
272 {
273   u32 context;
274   u64 handle;
275   i32 retval;
276 } __clib_packed session_unlisten_reply_msg_t;
277
278 typedef struct session_accepted_msg_
279 {
280   u32 context;
281   u64 listener_handle;
282   u64 handle;
283   uword server_rx_fifo;
284   uword server_tx_fifo;
285   u64 segment_handle;
286   uword vpp_event_queue_address;
287   transport_endpoint_t rmt;
288 } __clib_packed session_accepted_msg_t;
289
290 typedef struct session_accepted_reply_msg_
291 {
292   u32 context;
293   i32 retval;
294   u64 handle;
295 } __clib_packed session_accepted_reply_msg_t;
296
297 /* Make sure this is not too large, otherwise it won't fit when dequeued in
298  * the session queue node */
299 STATIC_ASSERT (sizeof (session_accepted_reply_msg_t) <= 16, "accept reply");
300
301 typedef struct session_connected_msg_
302 {
303   u32 context;
304   i32 retval;
305   u64 handle;
306   uword server_rx_fifo;
307   uword server_tx_fifo;
308   u64 segment_handle;
309   uword ct_rx_fifo;
310   uword ct_tx_fifo;
311   u64 ct_segment_handle;
312   uword vpp_event_queue_address;
313   u32 segment_size;
314   u8 segment_name_length;
315   u8 segment_name[64];
316   transport_endpoint_t lcl;
317 } __clib_packed session_connected_msg_t;
318
319 typedef struct session_disconnected_msg_
320 {
321   u32 client_index;
322   u32 context;
323   u64 handle;
324 } __clib_packed session_disconnected_msg_t;
325
326 typedef struct session_disconnected_reply_msg_
327 {
328   u32 context;
329   i32 retval;
330   u64 handle;
331 } __clib_packed session_disconnected_reply_msg_t;
332
333 typedef struct session_reset_msg_
334 {
335   u32 client_index;
336   u32 context;
337   u64 handle;
338 } __clib_packed session_reset_msg_t;
339
340 typedef struct session_reset_reply_msg_
341 {
342   u32 context;
343   i32 retval;
344   u64 handle;
345 } __clib_packed session_reset_reply_msg_t;
346
347 typedef struct session_req_worker_update_msg_
348 {
349   u64 session_handle;
350 } __clib_packed session_req_worker_update_msg_t;
351
352 /* NOTE: using u16 for wrk indices because message needs to fit in 18B */
353 typedef struct session_worker_update_msg_
354 {
355   u32 client_index;
356   u16 wrk_index;
357   u16 req_wrk_index;
358   u64 handle;
359 } __clib_packed session_worker_update_msg_t;
360
361 typedef struct session_worker_update_reply_msg_
362 {
363   u64 handle;
364   uword rx_fifo;
365   uword tx_fifo;
366   u64 segment_handle;
367 } __clib_packed session_worker_update_reply_msg_t;
368
369 typedef struct app_session_event_
370 {
371   svm_msg_q_msg_t msg;
372   session_event_t *evt;
373 } __clib_packed app_session_evt_t;
374
375 static inline void
376 app_alloc_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt,
377                            u8 evt_type)
378 {
379   svm_msg_q_lock_and_alloc_msg_w_ring (mq,
380                                        SESSION_MQ_CTRL_EVT_RING,
381                                        SVM_Q_WAIT, &app_evt->msg);
382   svm_msg_q_unlock (mq);
383   app_evt->evt = svm_msg_q_msg_data (mq, &app_evt->msg);
384   clib_memset (app_evt->evt, 0, sizeof (*app_evt->evt));
385   app_evt->evt->event_type = evt_type;
386 }
387
388 static inline void
389 app_send_ctrl_evt_to_vpp (svm_msg_q_t * mq, app_session_evt_t * app_evt)
390 {
391   svm_msg_q_add (mq, &app_evt->msg, SVM_Q_WAIT);
392 }
393
394 /**
395  * Send fifo io event to vpp worker thread
396  *
397  * Because there may be multiple writers to one of vpp's queues, this
398  * protects message allocation and enqueueing.
399  *
400  * @param mq            vpp message queue
401  * @param f             fifo for which the event is sent
402  * @param evt_type      type of event
403  * @param noblock       flag to indicate is request is blocking or not
404  * @return              0 if success, negative integer otherwise
405  */
406 static inline int
407 app_send_io_evt_to_vpp (svm_msg_q_t * mq, u32 session_index, u8 evt_type,
408                         u8 noblock)
409 {
410   session_event_t *evt;
411   svm_msg_q_msg_t msg;
412
413   if (noblock)
414     {
415       if (svm_msg_q_try_lock (mq))
416         return -1;
417       if (PREDICT_FALSE (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING)))
418         {
419           svm_msg_q_unlock (mq);
420           return -2;
421         }
422       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
423       if (PREDICT_FALSE (svm_msg_q_msg_is_invalid (&msg)))
424         {
425           svm_msg_q_unlock (mq);
426           return -2;
427         }
428       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
429       evt->session_index = session_index;
430       evt->event_type = evt_type;
431       svm_msg_q_add_and_unlock (mq, &msg);
432       return 0;
433     }
434   else
435     {
436       svm_msg_q_lock (mq);
437       while (svm_msg_q_ring_is_full (mq, SESSION_MQ_IO_EVT_RING))
438         svm_msg_q_wait (mq);
439       msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
440       evt = (session_event_t *) svm_msg_q_msg_data (mq, &msg);
441       evt->session_index = session_index;
442       evt->event_type = evt_type;
443       if (svm_msg_q_is_full (mq))
444         svm_msg_q_wait (mq);
445       svm_msg_q_add_and_unlock (mq, &msg);
446       return 0;
447     }
448 }
449
450 always_inline int
451 app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
452                     svm_msg_q_t * vpp_evt_q, u8 * data, u32 len, u8 evt_type,
453                     u8 do_evt, u8 noblock)
454 {
455   u32 max_enqueue, actual_write;
456   session_dgram_hdr_t hdr;
457   int rv;
458
459   max_enqueue = svm_fifo_max_enqueue_prod (f);
460   if (max_enqueue <= sizeof (session_dgram_hdr_t))
461     return 0;
462
463   max_enqueue -= sizeof (session_dgram_hdr_t);
464   actual_write = clib_min (len, max_enqueue);
465   hdr.data_length = actual_write;
466   hdr.data_offset = 0;
467   clib_memcpy_fast (&hdr.rmt_ip, &at->rmt_ip, sizeof (ip46_address_t));
468   hdr.is_ip4 = at->is_ip4;
469   hdr.rmt_port = at->rmt_port;
470   clib_memcpy_fast (&hdr.lcl_ip, &at->lcl_ip, sizeof (ip46_address_t));
471   hdr.lcl_port = at->lcl_port;
472   rv = svm_fifo_enqueue_nowait (f, sizeof (hdr), (u8 *) & hdr);
473   ASSERT (rv == sizeof (hdr));
474
475   rv = svm_fifo_enqueue_nowait (f, actual_write, data);
476   if (do_evt)
477     {
478       if (rv > 0 && svm_fifo_set_event (f))
479         app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
480                                 noblock);
481     }
482   ASSERT (rv);
483   return rv;
484 }
485
486 always_inline int
487 app_send_dgram (app_session_t * s, u8 * data, u32 len, u8 noblock)
488 {
489   return app_send_dgram_raw (s->tx_fifo, &s->transport, s->vpp_evt_q, data,
490                              len, SESSION_IO_EVT_TX, 1 /* do_evt */ ,
491                              noblock);
492 }
493
494 always_inline int
495 app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
496                      u32 len, u8 evt_type, u8 do_evt, u8 noblock)
497 {
498   int rv;
499
500   rv = svm_fifo_enqueue_nowait (f, len, data);
501   if (do_evt)
502     {
503       if (rv > 0 && svm_fifo_set_event (f))
504         app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
505                                 noblock);
506     }
507   return rv;
508 }
509
510 always_inline int
511 app_send_stream (app_session_t * s, u8 * data, u32 len, u8 noblock)
512 {
513   return app_send_stream_raw (s->tx_fifo, s->vpp_evt_q, data, len,
514                               SESSION_IO_EVT_TX, 1 /* do_evt */ , noblock);
515 }
516
517 always_inline int
518 app_send (app_session_t * s, u8 * data, u32 len, u8 noblock)
519 {
520   if (s->is_dgram)
521     return app_send_dgram (s, data, len, noblock);
522   return app_send_stream (s, data, len, noblock);
523 }
524
525 always_inline int
526 app_recv_dgram_raw (svm_fifo_t * f, u8 * buf, u32 len,
527                     app_session_transport_t * at, u8 clear_evt, u8 peek)
528 {
529   session_dgram_pre_hdr_t ph;
530   u32 max_deq;
531   int rv;
532
533   max_deq = svm_fifo_max_dequeue_cons (f);
534   if (max_deq < sizeof (session_dgram_hdr_t))
535     {
536       if (clear_evt)
537         svm_fifo_unset_event (f);
538       return 0;
539     }
540
541   if (clear_evt)
542     svm_fifo_unset_event (f);
543
544   svm_fifo_peek (f, 0, sizeof (ph), (u8 *) & ph);
545   ASSERT (ph.data_length >= ph.data_offset);
546   if (!ph.data_offset)
547     svm_fifo_peek (f, sizeof (ph), sizeof (*at), (u8 *) at);
548   len = clib_min (len, ph.data_length - ph.data_offset);
549   rv = svm_fifo_peek (f, ph.data_offset + SESSION_CONN_HDR_LEN, len, buf);
550   if (peek)
551     return rv;
552   ph.data_offset += rv;
553   if (ph.data_offset == ph.data_length)
554     svm_fifo_dequeue_drop (f, ph.data_length + SESSION_CONN_HDR_LEN);
555   else
556     svm_fifo_overwrite_head (f, (u8 *) & ph, sizeof (ph));
557   return rv;
558 }
559
560 always_inline int
561 app_recv_dgram (app_session_t * s, u8 * buf, u32 len)
562 {
563   return app_recv_dgram_raw (s->rx_fifo, buf, len, &s->transport, 1, 0);
564 }
565
566 always_inline int
567 app_recv_stream_raw (svm_fifo_t * f, u8 * buf, u32 len, u8 clear_evt, u8 peek)
568 {
569   if (clear_evt)
570     svm_fifo_unset_event (f);
571
572   if (peek)
573     return svm_fifo_peek (f, 0, len, buf);
574
575   return svm_fifo_dequeue_nowait (f, len, buf);
576 }
577
578 always_inline int
579 app_recv_stream (app_session_t * s, u8 * buf, u32 len)
580 {
581   return app_recv_stream_raw (s->rx_fifo, buf, len, 1, 0);
582 }
583
584 always_inline int
585 app_recv (app_session_t * s, u8 * data, u32 len)
586 {
587   if (s->is_dgram)
588     return app_recv_dgram (s, data, len);
589   return app_recv_stream (s, data, len);
590 }
591
592 #endif /* __included_uri_h__ */
593
594 /*
595  * fd.io coding-style-patch-verification: ON
596  *
597  * Local Variables:
598  * eval: (c-set-style "gnu")
599  * End:
600  */