blob: a6d1a029f1336a5b4bcc814f6415926ba7807a82 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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>
Florin Corasc1a42652019-02-08 18:27:29 -080016#include <vnet/session/application.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050017#include <vnet/session/session.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050018
19/** @file
20 VPP's application/session API bind/unbind/connect/disconnect calls
21*/
22
Dave Barach68b0fb02017-02-28 15:15:56 -050023/**
24 * unformat a vnet URI
25 *
Florin Coras8f89dd02018-03-05 16:53:07 -080026 * transport-proto://[hostname]ip46-addr:port
27 * eg. tcp://ip46-addr:port
28 * tls://[testtsl.fd.io]ip46-addr:port
Dave Barach68b0fb02017-02-28 15:15:56 -050029 *
30 * u8 ip46_address[16];
31 * u16 port_in_host_byte_order;
32 * stream_session_type_t sst;
33 * u8 *fifo_name;
34 *
35 * if (unformat (input, "%U", unformat_vnet_uri, &ip46_address,
36 * &sst, &port, &fifo_name))
37 * etc...
38 *
39 */
40uword
41unformat_vnet_uri (unformat_input_t * input, va_list * args)
42{
Florin Coras5665ced2018-10-25 18:03:45 -070043 session_endpoint_cfg_t *sep = va_arg (*args, session_endpoint_cfg_t *);
Florin Coras371ca502018-02-21 12:07:41 -080044 u32 transport_proto = 0, port;
45
Florin Coras8f89dd02018-03-05 16:53:07 -080046 if (unformat (input, "%U://%U/%d", unformat_transport_proto,
47 &transport_proto, unformat_ip4_address, &sep->ip.ip4, &port))
48 {
49 sep->transport_proto = transport_proto;
50 sep->port = clib_host_to_net_u16 (port);
51 sep->is_ip4 = 1;
52 return 1;
53 }
54 else if (unformat (input, "%U://[%s]%U/%d", unformat_transport_proto,
55 &transport_proto, &sep->hostname, unformat_ip4_address,
56 &sep->ip.ip4, &port))
Dave Barach68b0fb02017-02-28 15:15:56 -050057 {
Florin Coras4399c2e2018-01-25 06:34:42 -080058 sep->transport_proto = transport_proto;
Florin Coras371ca502018-02-21 12:07:41 -080059 sep->port = clib_host_to_net_u16 (port);
Florin Corascea194d2017-10-02 00:18:51 -070060 sep->is_ip4 = 1;
Dave Barach68b0fb02017-02-28 15:15:56 -050061 return 1;
62 }
Florin Coras371ca502018-02-21 12:07:41 -080063 else if (unformat (input, "%U://%U/%d", unformat_transport_proto,
64 &transport_proto, unformat_ip6_address, &sep->ip.ip6,
65 &port))
Dave Barach68b0fb02017-02-28 15:15:56 -050066 {
Florin Coras4399c2e2018-01-25 06:34:42 -080067 sep->transport_proto = transport_proto;
Florin Coras371ca502018-02-21 12:07:41 -080068 sep->port = clib_host_to_net_u16 (port);
Marco Varlese191a5942017-10-30 18:17:21 +010069 sep->is_ip4 = 0;
70 return 1;
71 }
Florin Coras8f89dd02018-03-05 16:53:07 -080072 else if (unformat (input, "%U://[%s]%U/%d", unformat_transport_proto,
73 &transport_proto, &sep->hostname, unformat_ip6_address,
74 &sep->ip.ip6, &port))
75 {
76 sep->transport_proto = transport_proto;
77 sep->port = clib_host_to_net_u16 (port);
78 sep->is_ip4 = 0;
79 return 1;
80 }
Aloys Augustinba123e12019-05-14 14:13:51 +020081 else if (unformat (input, "%U://session/%lu", unformat_transport_proto,
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +020082 &transport_proto, &sep->parent_handle))
Aloys Augustin502785b2019-04-09 11:40:57 +020083 {
84 sep->transport_proto = transport_proto;
Aloys Augustin502785b2019-04-09 11:40:57 +020085 sep->ip.ip4.as_u32 = 1; /* ip need to be non zero in vnet */
86 return 1;
87 }
Dave Barach68b0fb02017-02-28 15:15:56 -050088 return 0;
89}
90
Dave Barachb7f1faa2017-08-29 11:43:37 -040091static u8 *cache_uri;
Florin Coras5665ced2018-10-25 18:03:45 -070092static session_endpoint_cfg_t *cache_sep;
Dave Barachb7f1faa2017-08-29 11:43:37 -040093
Dave Barach68b0fb02017-02-28 15:15:56 -050094int
Florin Coras5665ced2018-10-25 18:03:45 -070095parse_uri (char *uri, session_endpoint_cfg_t * sep)
Dave Barach68b0fb02017-02-28 15:15:56 -050096{
97 unformat_input_t _input, *input = &_input;
98
Dave Barachb7f1faa2017-08-29 11:43:37 -040099 if (cache_uri && !strncmp (uri, (char *) cache_uri, vec_len (cache_uri)))
100 {
Florin Corascea194d2017-10-02 00:18:51 -0700101 *sep = *cache_sep;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400102 return 0;
103 }
104
Dave Barach68b0fb02017-02-28 15:15:56 -0500105 /* Make sure */
106 uri = (char *) format (0, "%s%c", uri, 0);
107
108 /* Parse uri */
109 unformat_init_string (input, uri, strlen (uri));
Florin Corascea194d2017-10-02 00:18:51 -0700110 if (!unformat (input, "%U", unformat_vnet_uri, sep))
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 {
112 unformat_free (input);
113 return VNET_API_ERROR_INVALID_VALUE;
114 }
115 unformat_free (input);
116
Dave Barachb7f1faa2017-08-29 11:43:37 -0400117 vec_free (cache_uri);
118 cache_uri = (u8 *) uri;
Florin Corascea194d2017-10-02 00:18:51 -0700119 if (cache_sep)
120 clib_mem_free (cache_sep);
121 cache_sep = clib_mem_alloc (sizeof (*sep));
122 *cache_sep = *sep;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400123
Dave Barach68b0fb02017-02-28 15:15:56 -0500124 return 0;
125}
126
Dave Barach68b0fb02017-02-28 15:15:56 -0500127int
Florin Corasc9940fc2019-02-05 20:55:11 -0800128vnet_bind_uri (vnet_listen_args_t * a)
Dave Barach68b0fb02017-02-28 15:15:56 -0500129{
Florin Coras5665ced2018-10-25 18:03:45 -0700130 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Dave Barach68b0fb02017-02-28 15:15:56 -0500131 int rv;
132
Florin Corascea194d2017-10-02 00:18:51 -0700133 rv = parse_uri (a->uri, &sep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500134 if (rv)
135 return rv;
Florin Coras41c9e042018-09-11 00:10:41 -0700136 sep.app_wrk_index = 0;
Florin Corasc3638fe2018-08-24 13:58:49 -0700137 clib_memcpy (&a->sep_ext, &sep, sizeof (sep));
Florin Corasc1a42652019-02-08 18:27:29 -0800138 return vnet_listen (a);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700139}
140
141int
Florin Corasc1a42652019-02-08 18:27:29 -0800142vnet_unbind_uri (vnet_unlisten_args_t * a)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700143{
Florin Coras5665ced2018-10-25 18:03:45 -0700144 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Nathan Skrzypczak61ad5502019-07-05 11:58:22 +0200145 application_t *app;
Florin Coras288eaab2019-02-03 15:26:14 -0800146 session_t *listener;
Florin Coras36ec1f52018-05-29 21:15:38 -0700147 u32 table_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700148 int rv;
149
Florin Corasc1a42652019-02-08 18:27:29 -0800150 if ((rv = parse_uri (a->uri, &sep)))
Florin Coras6cf30ad2017-04-04 23:08:23 -0700151 return rv;
152
Nathan Skrzypczak61ad5502019-07-05 11:58:22 +0200153 app = application_get (a->app_index);
154 if (!app)
155 return VNET_API_ERROR_INVALID_VALUE;
156
157 table_index = application_session_table (app, fib_ip_proto (!sep.is_ip4));
Florin Coras36ec1f52018-05-29 21:15:38 -0700158 listener = session_lookup_listener (table_index,
159 (session_endpoint_t *) & sep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500160 if (!listener)
161 return VNET_API_ERROR_ADDRESS_NOT_IN_USE;
Florin Corasab2f6db2018-08-31 14:31:41 -0700162 a->handle = listen_session_get_handle (listener);
Florin Corasc1a42652019-02-08 18:27:29 -0800163 return vnet_unlisten (a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500164}
165
Florin Corasc1a42652019-02-08 18:27:29 -0800166int
Dave Barach68b0fb02017-02-28 15:15:56 -0500167vnet_connect_uri (vnet_connect_args_t * a)
168{
Florin Coras5665ced2018-10-25 18:03:45 -0700169 session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL;
Dave Barach68b0fb02017-02-28 15:15:56 -0500170 int rv;
171
Florin Corasc1a42652019-02-08 18:27:29 -0800172 if ((rv = parse_uri (a->uri, &sep)))
173 return rv;
Florin Coras371ca502018-02-21 12:07:41 -0800174
Florin Corasc3638fe2018-08-24 13:58:49 -0700175 clib_memcpy (&a->sep_ext, &sep, sizeof (sep));
Florin Corasc1a42652019-02-08 18:27:29 -0800176 if ((rv = vnet_connect (a)))
177 return rv;
Florin Corascea194d2017-10-02 00:18:51 -0700178 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500179}
180
Dave Barach68b0fb02017-02-28 15:15:56 -0500181/*
182 * fd.io coding-style-patch-verification: ON
183 *
184 * Local Variables:
185 * eval: (c-set-style "gnu")
186 * End:
187 */