blob: 566a52d798469d980be4b790a4cb17651fc9feb6 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 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#include <vnet/session/application_interface.h>
16
17#include <vnet/session/session.h>
18#include <vlibmemory/api.h>
19#include <vnet/dpo/load_balance.h>
20#include <vnet/fib/ip4_fib.h>
21
22/** @file
23 VPP's application/session API bind/unbind/connect/disconnect calls
24*/
25
26static u8
27ip_is_zero (ip46_address_t * ip46_address, u8 is_ip4)
28{
29 if (is_ip4)
30 return (ip46_address->ip4.as_u32 == 0);
31 else
32 return (ip46_address->as_u64[0] == 0 && ip46_address->as_u64[1] == 0);
33}
34
35static u8
36ip_is_local (ip46_address_t * ip46_address, u8 is_ip4)
37{
38 fib_node_index_t fei;
39 fib_entry_flag_t flags;
40 fib_prefix_t prefix;
41
42 /* Check if requester is local */
43 if (is_ip4)
44 {
45 prefix.fp_len = 32;
46 prefix.fp_proto = FIB_PROTOCOL_IP4;
47 }
48 else
49 {
50 prefix.fp_len = 128;
51 prefix.fp_proto = FIB_PROTOCOL_IP6;
52 }
53
Florin Corase04c2992017-03-01 08:17:34 -080054 clib_memcpy (&prefix.fp_addr, ip46_address, sizeof (ip46_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -050055 fei = fib_table_lookup (0, &prefix);
56 flags = fib_entry_get_flags (fei);
57
58 return (flags & FIB_ENTRY_FLAG_LOCAL);
59}
60
61int
62api_parse_session_handle (u64 handle, u32 * session_index, u32 * thread_index)
63{
64 session_manager_main_t *smm = vnet_get_session_manager_main ();
65 stream_session_t *pool;
66
67 *thread_index = handle & 0xFFFFFFFF;
68 *session_index = handle >> 32;
69
70 if (*thread_index >= vec_len (smm->sessions))
71 return VNET_API_ERROR_INVALID_VALUE;
72
73 pool = smm->sessions[*thread_index];
74
75 if (pool_is_free_index (pool, *session_index))
76 return VNET_API_ERROR_INVALID_VALUE_2;
77
78 return 0;
79}
80
81int
Florin Coras6cf30ad2017-04-04 23:08:23 -070082vnet_bind_i (u32 app_index, session_type_t sst,
83 transport_endpoint_t * tep, u64 * handle)
Dave Barach68b0fb02017-02-28 15:15:56 -050084{
Florin Coras6cf30ad2017-04-04 23:08:23 -070085 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -050086 stream_session_t *listener;
Dave Barach68b0fb02017-02-28 15:15:56 -050087
Florin Coras6cf30ad2017-04-04 23:08:23 -070088 app = application_get_if_valid (app_index);
89 if (!app)
90 {
91 clib_warning ("app not attached");
92 return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
93 }
Dave Barach68b0fb02017-02-28 15:15:56 -050094
Florin Coras6cf30ad2017-04-04 23:08:23 -070095 listener = stream_session_lookup_listener (&tep->ip,
96 clib_host_to_net_u16 (tep->port),
97 sst);
Dave Barach68b0fb02017-02-28 15:15:56 -050098 if (listener)
99 return VNET_API_ERROR_ADDRESS_IN_USE;
100
Florin Coras6cf30ad2017-04-04 23:08:23 -0700101 if (!ip_is_zero (&tep->ip, tep->is_ip4)
102 && !ip_is_local (&tep->ip, tep->is_ip4))
Dave Barach68b0fb02017-02-28 15:15:56 -0500103 return VNET_API_ERROR_INVALID_VALUE_2;
104
Florin Coras6cf30ad2017-04-04 23:08:23 -0700105 /* Setup listen path down to transport */
106 return application_start_listen (app, sst, tep, handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500107}
108
109int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700110vnet_unbind_i (u32 app_index, u64 handle)
111{
112 application_t *app = application_get_if_valid (app_index);
113
114 if (!app)
115 {
Dave Wallace7b749fe2017-07-05 14:30:46 -0400116 clib_warning ("app (%d) not attached", app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700117 return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
118 }
119
120 /* Clear the listener */
121 return application_stop_listen (app, handle);
122}
123
124int
125vnet_connect_i (u32 app_index, u32 api_context, session_type_t sst,
126 transport_endpoint_t * tep, void *mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500127{
128 stream_session_t *listener;
129 application_t *server, *app;
130
131 /*
132 * Figure out if connecting to a local server
133 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700134 listener = stream_session_lookup_listener (&tep->ip,
135 clib_host_to_net_u16 (tep->port),
Dave Barach68b0fb02017-02-28 15:15:56 -0500136 sst);
137 if (listener)
138 {
139 server = application_get (listener->app_index);
140
141 /*
142 * Server is willing to have a direct fifo connection created
143 * instead of going through the state machine, etc.
144 */
Florin Corasa5464812017-04-19 13:00:05 -0700145 if (server->flags & APP_OPTIONS_FLAGS_USE_FIFO)
Dave Barach68b0fb02017-02-28 15:15:56 -0500146 return server->cb_fns.
147 redirect_connect_callback (server->api_client_index, mp);
148 }
149
Dave Barach68b0fb02017-02-28 15:15:56 -0500150 /*
151 * Not connecting to a local server. Create regular session
152 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700153 app = application_get (app_index);
154 return application_open_session (app, sst, tep, api_context);
Dave Barach68b0fb02017-02-28 15:15:56 -0500155}
156
157/**
158 * unformat a vnet URI
159 *
160 * fifo://name
161 * tcp://ip46-addr:port
162 * udp://ip46-addr:port
163 *
164 * u8 ip46_address[16];
165 * u16 port_in_host_byte_order;
166 * stream_session_type_t sst;
167 * u8 *fifo_name;
168 *
169 * if (unformat (input, "%U", unformat_vnet_uri, &ip46_address,
170 * &sst, &port, &fifo_name))
171 * etc...
172 *
173 */
174uword
175unformat_vnet_uri (unformat_input_t * input, va_list * args)
176{
Dave Barach68b0fb02017-02-28 15:15:56 -0500177 session_type_t *sst = va_arg (*args, session_type_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700178 transport_endpoint_t *tep = va_arg (*args, transport_endpoint_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -0500179
Florin Coras6cf30ad2017-04-04 23:08:23 -0700180 if (unformat (input, "tcp://%U/%d", unformat_ip4_address, &tep->ip.ip4,
181 &tep->port))
Dave Barach68b0fb02017-02-28 15:15:56 -0500182 {
183 *sst = SESSION_TYPE_IP4_TCP;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700184 tep->is_ip4 = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500185 return 1;
186 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700187 if (unformat (input, "udp://%U/%d", unformat_ip4_address, &tep->ip.ip4,
188 &tep->port))
Dave Barach68b0fb02017-02-28 15:15:56 -0500189 {
190 *sst = SESSION_TYPE_IP4_UDP;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700191 tep->is_ip4 = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500192 return 1;
193 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700194 if (unformat (input, "udp://%U/%d", unformat_ip6_address, &tep->ip.ip6,
195 &tep->port))
Dave Barach68b0fb02017-02-28 15:15:56 -0500196 {
197 *sst = SESSION_TYPE_IP6_UDP;
198 return 1;
199 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700200 if (unformat (input, "tcp://%U/%d", unformat_ip6_address, &tep->ip.ip6,
201 &tep->port))
Dave Barach68b0fb02017-02-28 15:15:56 -0500202 {
203 *sst = SESSION_TYPE_IP6_TCP;
204 return 1;
205 }
206
207 return 0;
208}
209
210int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700211parse_uri (char *uri, session_type_t * sst, transport_endpoint_t * tep)
Dave Barach68b0fb02017-02-28 15:15:56 -0500212{
213 unformat_input_t _input, *input = &_input;
214
215 /* Make sure */
216 uri = (char *) format (0, "%s%c", uri, 0);
217
218 /* Parse uri */
219 unformat_init_string (input, uri, strlen (uri));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700220 if (!unformat (input, "%U", unformat_vnet_uri, sst, tep))
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 {
222 unformat_free (input);
223 return VNET_API_ERROR_INVALID_VALUE;
224 }
225 unformat_free (input);
226
227 return 0;
228}
229
Florin Coras6cf30ad2017-04-04 23:08:23 -0700230/**
231 * Attaches application.
232 *
233 * Allocates a vpp app, i.e., a structure that keeps back pointers
234 * to external app and a segment manager for shared memory fifo based
235 * communication with the external app.
236 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500237int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700238vnet_application_attach (vnet_app_attach_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500239{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700240 application_t *app = 0;
241 segment_manager_t *sm;
242 u8 *seg_name;
Dave Barach68b0fb02017-02-28 15:15:56 -0500243 int rv;
244
Florin Coras6cf30ad2017-04-04 23:08:23 -0700245 app = application_new ();
246 if ((rv = application_init (app, a->api_client_index, a->options,
247 a->session_cb_vft)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500248 return rv;
249
Damjan Marion7bee80c2017-04-26 15:32:12 +0200250 a->app_event_queue_address = pointer_to_uword (app->event_queue);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700251 sm = segment_manager_get (app->first_segment_manager);
252 segment_manager_get_segment_info (sm->segment_indices[0],
253 &seg_name, &a->segment_size);
Dave Barach68b0fb02017-02-28 15:15:56 -0500254
Florin Coras6cf30ad2017-04-04 23:08:23 -0700255 a->segment_name_length = vec_len (seg_name);
256 a->segment_name = seg_name;
257 ASSERT (vec_len (a->segment_name) <= 128);
258 a->app_index = app->index;
259 return 0;
260}
261
262int
263vnet_application_detach (vnet_app_detach_args_t * a)
264{
265 application_t *app;
266 app = application_get_if_valid (a->app_index);
267
268 if (!app)
269 {
270 clib_warning ("app not attached");
271 return VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
272 }
273
274 application_del (app);
Dave Barach68b0fb02017-02-28 15:15:56 -0500275 return 0;
276}
277
Dave Barach68b0fb02017-02-28 15:15:56 -0500278int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700279vnet_bind_uri (vnet_bind_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500280{
Dave Barach68b0fb02017-02-28 15:15:56 -0500281 session_type_t sst = SESSION_N_TYPES;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700282 transport_endpoint_t tep;
Dave Barach68b0fb02017-02-28 15:15:56 -0500283 int rv;
284
Florin Coras6cf30ad2017-04-04 23:08:23 -0700285 memset (&tep, 0, sizeof (tep));
286 rv = parse_uri (a->uri, &sst, &tep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500287 if (rv)
288 return rv;
289
Florin Coras6cf30ad2017-04-04 23:08:23 -0700290 if ((rv = vnet_bind_i (a->app_index, sst, &tep, &a->handle)))
291 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500292
Florin Coras6cf30ad2017-04-04 23:08:23 -0700293 return 0;
294}
295
296int
297vnet_unbind_uri (vnet_unbind_args_t * a)
298{
299 session_type_t sst = SESSION_N_TYPES;
300 stream_session_t *listener;
301 transport_endpoint_t tep;
302 int rv;
303
304 rv = parse_uri (a->uri, &sst, &tep);
305 if (rv)
306 return rv;
307
308 listener = stream_session_lookup_listener (&tep.ip,
309 clib_host_to_net_u16 (tep.port),
310 sst);
Dave Barach68b0fb02017-02-28 15:15:56 -0500311 if (!listener)
312 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
313
Florin Coras6cf30ad2017-04-04 23:08:23 -0700314 return vnet_unbind_i (a->app_index, listen_session_get_handle (listener));
Dave Barach68b0fb02017-02-28 15:15:56 -0500315}
316
317int
318vnet_connect_uri (vnet_connect_args_t * a)
319{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700320 transport_endpoint_t tep;
Dave Barach68b0fb02017-02-28 15:15:56 -0500321 session_type_t sst;
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 int rv;
323
Dave Barach68b0fb02017-02-28 15:15:56 -0500324 /* Parse uri */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700325 memset (&tep, 0, sizeof (tep));
326 rv = parse_uri (a->uri, &sst, &tep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500327 if (rv)
328 return rv;
329
Florin Coras6cf30ad2017-04-04 23:08:23 -0700330 return vnet_connect_i (a->app_index, a->api_context, sst, &tep, a->mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500331}
332
333int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700334vnet_disconnect_session (vnet_disconnect_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500335{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700336 u32 index, thread_index;
337 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500338
Florin Coras6cf30ad2017-04-04 23:08:23 -0700339 stream_session_parse_handle (a->handle, &index, &thread_index);
340 s = stream_session_get_if_valid (index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500341
Florin Coras6cf30ad2017-04-04 23:08:23 -0700342 if (!s || s->app_index != a->app_index)
343 return VNET_API_ERROR_INVALID_VALUE;
344
Florin Corasa5464812017-04-19 13:00:05 -0700345 /* We're peeking into another's thread pool. Make sure */
346 ASSERT (s->session_index == index);
347
348 session_send_session_evt_to_thread (a->handle, FIFO_EVENT_DISCONNECT,
349 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500350 return 0;
351}
352
Dave Barach68b0fb02017-02-28 15:15:56 -0500353int
354vnet_bind (vnet_bind_args_t * a)
355{
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 session_type_t sst = SESSION_N_TYPES;
357 int rv;
358
359 sst = session_type_from_proto_and_ip (a->proto, a->tep.is_ip4);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700360 if ((rv = vnet_bind_i (a->app_index, sst, &a->tep, &a->handle)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 return rv;
362
Dave Barach68b0fb02017-02-28 15:15:56 -0500363 return 0;
364}
365
366int
367vnet_unbind (vnet_unbind_args_t * a)
368{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700369 return vnet_unbind_i (a->app_index, a->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500370}
371
372int
373vnet_connect (vnet_connect_args_t * a)
374{
375 session_type_t sst;
Dave Barach68b0fb02017-02-28 15:15:56 -0500376
377 sst = session_type_from_proto_and_ip (a->proto, a->tep.is_ip4);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700378 return vnet_connect_i (a->app_index, a->api_context, sst, &a->tep, a->mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500379}
380
Dave Barach68b0fb02017-02-28 15:15:56 -0500381/*
382 * fd.io coding-style-patch-verification: ON
383 *
384 * Local Variables:
385 * eval: (c-set-style "gnu")
386 * End:
387 */