FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
application.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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 #ifndef SRC_VNET_SESSION_APPLICATION_H_
17 #define SRC_VNET_SESSION_APPLICATION_H_
18 
19 #include <vnet/vnet.h>
20 #include <vnet/session/session.h>
22 
23 typedef enum
24 {
29 
30 typedef struct _stream_session_cb_vft
31 {
32  /** Notify server of new segment */
33  int (*add_segment_callback) (u32 api_client_index, const u8 * seg_name,
34  u32 seg_size);
35 
36  /** Notify server of newly accepted session */
37  int (*session_accept_callback) (stream_session_t * new_session);
38 
39  /* Connection request callback */
40  int (*session_connected_callback) (u32 app_index, u32 api_context,
41  stream_session_t * s, u8 code);
42 
43  /** Notify app that session is closing */
44  void (*session_disconnect_callback) (stream_session_t * s);
45 
46  /** Notify app that session was reset */
47  void (*session_reset_callback) (stream_session_t * s);
48 
49  /* Direct RX callback, for built-in servers */
51 
52  /* Redirect connection to local server */
53  int (*redirect_connect_callback) (u32 api_client_index, void *mp);
55 
56 typedef struct _application
57 {
58  /** Index in server pool */
59  u32 index;
60 
61  /** Flags */
62  u32 flags;
63 
64  /*
65  * Binary API interface to external app
66  */
67 
68  /** Binary API connection index, ~0 if internal */
69  u32 api_client_index;
70 
71  /** Application listens for events on this svm queue */
72  unix_shared_memory_queue_t *event_queue;
73 
74  /*
75  * Callbacks: shoulder-taps for the server/client
76  */
77 
78  session_cb_vft_t cb_fns;
79 
80  /*
81  * svm segment management
82  */
83  u32 connects_seg_manager;
84 
85  /* Lookup tables for listeners. Value is segment manager index */
86  uword *listeners_table;
87 
88  u32 first_segment_manager;
89 
90  /** Segment manager properties. Shared by all segment managers */
91  segment_manager_properties_t sm_properties;
93 
95 int
96 application_init (application_t * app, u32 api_client_index, u64 * options,
97  session_cb_vft_t * cb_fns);
98 void application_del (application_t * app);
101 application_t *application_lookup (u32 api_client_index);
103 
104 int
106  transport_endpoint_t * tep, u64 * handle);
107 int application_stop_listen (application_t * srv, u64 handle);
108 int
110  transport_endpoint_t * tep, u32 api_context);
112 
114  app,
116  s);
118  app);
119 
120 #endif /* SRC_VNET_SESSION_APPLICATION_H_ */
121 
122 /*
123  * fd.io coding-style-patch-verification: ON
124  *
125  * Local Variables:
126  * eval: (c-set-style "gnu")
127  * End:
128  */
segment_manager_t * application_get_listen_segment_manager(application_t *app, stream_session_t *s)
Definition: application.c:332
struct _segment_manager_properties segment_manager_properties_t
application_t * application_get_if_valid(u32 index)
Definition: application.c:195
application_t * application_lookup(u32 api_client_index)
Definition: application.c:66
struct _stream_session_t stream_session_t
application_type_t
Definition: application.h:23
struct _stream_session_cb_vft session_cb_vft_t
unsigned long u64
Definition: types.h:89
application_t * application_new()
Definition: application.c:77
session_type_t
Definition: session.h:75
segment_manager_t * application_get_connect_segment_manager(application_t *app)
Definition: application.c:325
u32 application_get_index(application_t *app)
Definition: application.c:204
static int redirect_connect_callback(u32 server_api_client_index, void *mp_arg)
Redirect a connect_uri message to the indicated server.
Definition: session_api.c:203
struct _application application_t
int application_init(application_t *app, u32 api_client_index, u64 *options, session_cb_vft_t *cb_fns)
Definition: application.c:144
unsigned int u32
Definition: types.h:88
application_t * application_get(u32 index)
Definition: application.c:189
int builtin_server_rx_callback(stream_session_t *s)
u64 uword
Definition: types.h:112
unsigned char u8
Definition: types.h:56
struct _transport_endpoint transport_endpoint_t
struct _segment_manager segment_manager_t
int application_api_queue_is_full(application_t *app)
Definition: application.c:36
int application_start_listen(application_t *app, session_type_t session_type, transport_endpoint_t *tep, u64 *handle)
Start listening local transport endpoint for requested transport.
Definition: application.c:235
int application_open_session(application_t *app, session_type_t sst, transport_endpoint_t *tep, u32 api_context)
Definition: application.c:298
u32 flags
Definition: vhost-user.h:76
void application_del(application_t *app)
Definition: application.c:88
int application_stop_listen(application_t *srv, u64 handle)
Stop listening on session associated to handle.
Definition: application.c:271
struct _unix_shared_memory_queue unix_shared_memory_queue_t