blob: b9674bed94ab80cbd0b8317cd8cb80f49b438be7 [file] [log] [blame]
Florin Corascea194d2017-10-02 00:18:51 -07001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Florin Corascea194d2017-10-02 00:18:51 -07003 * 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/session/application_namespace.h>
Florin Coras61ae0562020-09-02 19:10:28 -070017#include <vnet/session/application.h>
Florin Corascea194d2017-10-02 00:18:51 -070018#include <vnet/session/session_table.h>
19#include <vnet/session/session.h>
20#include <vnet/fib/fib_table.h>
Florin Coras61ae0562020-09-02 19:10:28 -070021#include <vppinfra/file.h>
22#include <vlib/unix/unix.h>
Florin Corascea194d2017-10-02 00:18:51 -070023
24/**
25 * Hash table of application namespaces by app ns ids
26 */
27uword *app_namespace_lookup_table;
28
29/**
30 * Pool of application namespaces
31 */
32static app_namespace_t *app_namespace_pool;
33
Florin Coras61ae0562020-09-02 19:10:28 -070034static u8 app_sapi_enabled;
35
Florin Corascea194d2017-10-02 00:18:51 -070036app_namespace_t *
37app_namespace_get (u32 index)
38{
39 return pool_elt_at_index (app_namespace_pool, index);
40}
41
42app_namespace_t *
43app_namespace_get_from_id (const u8 * ns_id)
44{
45 u32 index = app_namespace_index_from_id (ns_id);
46 if (index == APP_NAMESPACE_INVALID_INDEX)
47 return 0;
48 return app_namespace_get (index);
49}
50
51u32
52app_namespace_index (app_namespace_t * app_ns)
53{
54 return (app_ns - app_namespace_pool);
55}
56
57app_namespace_t *
58app_namespace_alloc (u8 * ns_id)
59{
60 app_namespace_t *app_ns;
61 pool_get (app_namespace_pool, app_ns);
Dave Barachb7b92992018-10-17 10:38:51 -040062 clib_memset (app_ns, 0, sizeof (*app_ns));
Florin Corascea194d2017-10-02 00:18:51 -070063 app_ns->ns_id = vec_dup (ns_id);
64 hash_set_mem (app_namespace_lookup_table, app_ns->ns_id,
65 app_ns - app_namespace_pool);
66 return app_ns;
67}
68
Florin Corasc1a42652019-02-08 18:27:29 -080069int
Florin Corascea194d2017-10-02 00:18:51 -070070vnet_app_namespace_add_del (vnet_app_namespace_add_del_args_t * a)
71{
72 app_namespace_t *app_ns;
73 session_table_t *st;
74
75 if (a->is_add)
76 {
77 if (a->sw_if_index != APP_NAMESPACE_INVALID_INDEX
Dave Barach3940de32019-07-23 16:28:36 -040078 && !vnet_get_sw_interface_or_null (vnet_get_main (),
79 a->sw_if_index))
Florin Corasc1a42652019-02-08 18:27:29 -080080 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
81
Florin Corascea194d2017-10-02 00:18:51 -070082
83 if (a->sw_if_index != APP_NAMESPACE_INVALID_INDEX)
84 {
85 a->ip4_fib_id =
86 fib_table_get_table_id_for_sw_if_index (FIB_PROTOCOL_IP4,
87 a->sw_if_index);
88 a->ip6_fib_id =
Florin Coras56b39f62018-03-27 17:29:32 -070089 fib_table_get_table_id_for_sw_if_index (FIB_PROTOCOL_IP6,
Florin Corascea194d2017-10-02 00:18:51 -070090 a->sw_if_index);
91 }
92 if (a->sw_if_index == APP_NAMESPACE_INVALID_INDEX
93 && a->ip4_fib_id == APP_NAMESPACE_INVALID_INDEX)
Florin Corasc1a42652019-02-08 18:27:29 -080094 return VNET_API_ERROR_INVALID_VALUE;
95
Florin Corascea194d2017-10-02 00:18:51 -070096 app_ns = app_namespace_get_from_id (a->ns_id);
97 if (!app_ns)
Florin Corasfc1c6122017-10-26 14:25:12 -070098 {
99 app_ns = app_namespace_alloc (a->ns_id);
100 st = session_table_alloc ();
Florin Coras6c36f532017-11-03 18:32:34 -0700101 session_table_init (st, FIB_PROTOCOL_MAX);
102 st->is_local = 1;
103 st->appns_index = app_namespace_index (app_ns);
Florin Corasfc1c6122017-10-26 14:25:12 -0700104 app_ns->local_table_index = session_table_index (st);
105 }
Florin Corascea194d2017-10-02 00:18:51 -0700106 app_ns->ns_secret = a->secret;
107 app_ns->sw_if_index = a->sw_if_index;
Florin Corascea194d2017-10-02 00:18:51 -0700108 app_ns->ip4_fib_index =
109 fib_table_find (FIB_PROTOCOL_IP4, a->ip4_fib_id);
110 app_ns->ip6_fib_index =
111 fib_table_find (FIB_PROTOCOL_IP6, a->ip6_fib_id);
Florin Coras6c36f532017-11-03 18:32:34 -0700112 session_lookup_set_tables_appns (app_ns);
Florin Coras61ae0562020-09-02 19:10:28 -0700113
114 /* Add socket for namespace */
115 if (app_sapi_enabled)
116 appns_sapi_add_ns_socket (app_ns);
Florin Corascea194d2017-10-02 00:18:51 -0700117 }
118 else
119 {
Florin Corasc1a42652019-02-08 18:27:29 -0800120 return VNET_API_ERROR_UNIMPLEMENTED;
Florin Corascea194d2017-10-02 00:18:51 -0700121 }
122 return 0;
123}
124
125const u8 *
126app_namespace_id (app_namespace_t * app_ns)
127{
128 return app_ns->ns_id;
129}
130
131u32
132app_namespace_index_from_id (const u8 * ns_id)
133{
134 uword *indexp;
135 indexp = hash_get_mem (app_namespace_lookup_table, ns_id);
136 if (!indexp)
137 return APP_NAMESPACE_INVALID_INDEX;
138 return *indexp;
139}
140
141const u8 *
142app_namespace_id_from_index (u32 index)
143{
144 app_namespace_t *app_ns;
145
146 app_ns = app_namespace_get (index);
147 return app_namespace_id (app_ns);
148}
149
Florin Coras1c710452017-10-17 00:03:13 -0700150u32
151app_namespace_get_fib_index (app_namespace_t * app_ns, u8 fib_proto)
152{
153 return fib_proto == FIB_PROTOCOL_IP4 ?
154 app_ns->ip4_fib_index : app_ns->ip6_fib_index;
155}
156
157session_table_t *
158app_namespace_get_local_table (app_namespace_t * app_ns)
159{
160 return session_table_get (app_ns->local_table_index);
161}
162
Florin Corascea194d2017-10-02 00:18:51 -0700163void
Florin Coras61ae0562020-09-02 19:10:28 -0700164appns_sapi_enable (void)
165{
166 app_sapi_enabled = 1;
167}
168
169u8
170appns_sapi_enabled (void)
171{
172 return app_sapi_enabled;
173}
174
175void
Florin Corascea194d2017-10-02 00:18:51 -0700176app_namespaces_init (void)
177{
178 u8 *ns_id = format (0, "default");
Florin Corasfc1c6122017-10-26 14:25:12 -0700179
180 if (!app_namespace_lookup_table)
181 app_namespace_lookup_table =
182 hash_create_vec (0, sizeof (u8), sizeof (uword));
Florin Corascea194d2017-10-02 00:18:51 -0700183
184 /*
185 * Allocate default namespace
186 */
187 vnet_app_namespace_add_del_args_t a = {
188 .ns_id = ns_id,
189 .secret = 0,
190 .sw_if_index = APP_NAMESPACE_INVALID_INDEX,
191 .is_add = 1
192 };
193 vnet_app_namespace_add_del (&a);
194 vec_free (ns_id);
195}
196
197static clib_error_t *
198app_ns_fn (vlib_main_t * vm, unformat_input_t * input,
199 vlib_cli_command_t * cmd)
200{
Dave Wallace8af20542017-10-26 03:29:30 -0400201 unformat_input_t _line_input, *line_input = &_line_input;
Florin Corascea194d2017-10-02 00:18:51 -0700202 u8 is_add = 0, *ns_id = 0, secret_set = 0, sw_if_index_set = 0;
203 u32 sw_if_index, fib_id = APP_NAMESPACE_INVALID_INDEX;
204 u64 secret;
205 clib_error_t *error = 0;
Florin Corasc1a42652019-02-08 18:27:29 -0800206 int rv;
Florin Corascea194d2017-10-02 00:18:51 -0700207
208 session_cli_return_if_not_enabled ();
209
Dave Wallace8af20542017-10-26 03:29:30 -0400210 if (!unformat_user (input, unformat_line_input, line_input))
211 return 0;
212
213 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Corascea194d2017-10-02 00:18:51 -0700214 {
Dave Wallace8af20542017-10-26 03:29:30 -0400215 if (unformat (line_input, "add"))
Florin Corascea194d2017-10-02 00:18:51 -0700216 is_add = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400217 else if (unformat (line_input, "id %_%v%_", &ns_id))
Florin Corascea194d2017-10-02 00:18:51 -0700218 ;
Dave Wallace8af20542017-10-26 03:29:30 -0400219 else if (unformat (line_input, "secret %lu", &secret))
Florin Corascea194d2017-10-02 00:18:51 -0700220 secret_set = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400221 else if (unformat (line_input, "sw_if_index %u", &sw_if_index))
Florin Corascea194d2017-10-02 00:18:51 -0700222 sw_if_index_set = 1;
Dave Wallace8af20542017-10-26 03:29:30 -0400223 else if (unformat (line_input, "fib_id", &fib_id))
Florin Corascea194d2017-10-02 00:18:51 -0700224 ;
225 else
Dave Wallace8af20542017-10-26 03:29:30 -0400226 {
227 error = clib_error_return (0, "unknown input `%U'",
228 format_unformat_error, line_input);
229 unformat_free (line_input);
230 return error;
231 }
Florin Corascea194d2017-10-02 00:18:51 -0700232 }
Dave Wallace8af20542017-10-26 03:29:30 -0400233 unformat_free (line_input);
Florin Corascea194d2017-10-02 00:18:51 -0700234
235 if (!ns_id || !secret_set || !sw_if_index_set)
236 {
237 vlib_cli_output (vm, "namespace-id, secret and sw_if_index must be "
238 "provided");
239 return 0;
240 }
241
242 if (is_add)
243 {
244 vnet_app_namespace_add_del_args_t args = {
245 .ns_id = ns_id,
246 .secret = secret,
247 .sw_if_index = sw_if_index,
248 .ip4_fib_id = fib_id,
249 .is_add = 1
250 };
Florin Corasc1a42652019-02-08 18:27:29 -0800251 if ((rv = vnet_app_namespace_add_del (&args)))
252 return clib_error_return (0, "app namespace add del returned %d", rv);
Florin Corascea194d2017-10-02 00:18:51 -0700253 }
254
255 return error;
256}
257
258/* *INDENT-OFF* */
259VLIB_CLI_COMMAND (app_ns_command, static) =
260{
261 .path = "app ns",
262 .short_help = "app ns [add] id <namespace-id> secret <secret> "
263 "sw_if_index <sw_if_index>",
264 .function = app_ns_fn,
265};
266/* *INDENT-ON* */
267
268u8 *
269format_app_namespace (u8 * s, va_list * args)
270{
271 app_namespace_t *app_ns = va_arg (*args, app_namespace_t *);
Florin Coras8f107b32017-11-21 22:13:03 -0800272 s = format (s, "%-10u%-20lu%-20u%-50v", app_namespace_index (app_ns),
273 app_ns->ns_secret, app_ns->sw_if_index, app_ns->ns_id);
Florin Corascea194d2017-10-02 00:18:51 -0700274 return s;
275}
276
Florin Coras61ae0562020-09-02 19:10:28 -0700277static void
278app_namespace_show_api (vlib_main_t * vm, app_namespace_t * app_ns)
279{
280 app_ns_api_handle_t *handle;
281 app_worker_t *app_wrk;
282 clib_socket_t *cs;
283 clib_file_t *cf;
284
285 if (!app_sapi_enabled)
286 {
287 vlib_cli_output (vm, "app socket api not enabled!");
288 return;
289 }
290
291 vlib_cli_output (vm, "socket: %v\n", app_ns->sock_name);
292
293 if (!pool_elts (app_ns->app_sockets))
294 return;
295
296 vlib_cli_output (vm, "%12s%12s%5s", "app index", "wrk index", "fd");
297
298
299 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100300 pool_foreach (cs, app_ns->app_sockets) {
Florin Coras61ae0562020-09-02 19:10:28 -0700301 handle = (app_ns_api_handle_t *) &cs->private_data;
302 cf = clib_file_get (&file_main, handle->aah_file_index);
303 if (handle->aah_app_wrk_index == APP_INVALID_INDEX)
304 {
305 vlib_cli_output (vm, "%12d%12d%5u", -1, -1, cf->file_descriptor);
306 continue;
307 }
308 app_wrk = app_worker_get (handle->aah_app_wrk_index);
309 vlib_cli_output (vm, "%12d%12d%5u", app_wrk->app_index,
310 app_wrk->wrk_map_index, cf->file_descriptor);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100311 }
Florin Coras61ae0562020-09-02 19:10:28 -0700312 /* *INDENT-ON* */
313}
314
Florin Corascea194d2017-10-02 00:18:51 -0700315static clib_error_t *
Florin Corasdcdff6e2017-11-07 22:36:02 -0800316show_app_ns_fn (vlib_main_t * vm, unformat_input_t * main_input,
Florin Corascea194d2017-10-02 00:18:51 -0700317 vlib_cli_command_t * cmd)
318{
Florin Corasdcdff6e2017-11-07 22:36:02 -0800319 unformat_input_t _line_input, *line_input = &_line_input;
Florin Coras61ae0562020-09-02 19:10:28 -0700320 u8 *ns_id, do_table = 0, had_input = 1, do_api = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700321 app_namespace_t *app_ns;
322 session_table_t *st;
Florin Corascea194d2017-10-02 00:18:51 -0700323
324 session_cli_return_if_not_enabled ();
325
Florin Corasdcdff6e2017-11-07 22:36:02 -0800326 if (!unformat_user (main_input, unformat_line_input, line_input))
Florin Coras26408082017-11-09 02:06:07 -0800327 {
328 had_input = 0;
329 goto do_ns_list;
330 }
Florin Corasdcdff6e2017-11-07 22:36:02 -0800331
332 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Florin Corascea194d2017-10-02 00:18:51 -0700333 {
Florin Corasdcdff6e2017-11-07 22:36:02 -0800334 if (unformat (line_input, "table %_%v%_", &ns_id))
Florin Corascea194d2017-10-02 00:18:51 -0700335 do_table = 1;
Florin Coras61ae0562020-09-02 19:10:28 -0700336 else if (unformat (line_input, "api-clients"))
337 do_api = 1;
Florin Corascea194d2017-10-02 00:18:51 -0700338 else
Dave Wallace8af20542017-10-26 03:29:30 -0400339 {
Florin Corasdcdff6e2017-11-07 22:36:02 -0800340 vlib_cli_output (vm, "unknown input [%U]", format_unformat_error,
341 line_input);
342 goto done;
Dave Wallace8af20542017-10-26 03:29:30 -0400343 }
Florin Corascea194d2017-10-02 00:18:51 -0700344 }
345
Florin Coras61ae0562020-09-02 19:10:28 -0700346 if (do_api)
347 {
348 if (!do_table)
349 {
350 vlib_cli_output (vm, "must specify a table for api");
351 goto done;
352 }
353 app_ns = app_namespace_get_from_id (ns_id);
354 app_namespace_show_api (vm, app_ns);
355 goto done;
356 }
Florin Corascea194d2017-10-02 00:18:51 -0700357 if (do_table)
358 {
359 app_ns = app_namespace_get_from_id (ns_id);
360 if (!app_ns)
361 {
362 vlib_cli_output (vm, "ns %v not found", ns_id);
Florin Corasdcdff6e2017-11-07 22:36:02 -0800363 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700364 }
365 st = session_table_get (app_ns->local_table_index);
366 if (!st)
367 {
368 vlib_cli_output (vm, "table for ns %v could not be found", ns_id);
Florin Corasdcdff6e2017-11-07 22:36:02 -0800369 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700370 }
371 session_lookup_show_table_entries (vm, st, 0, 1);
372 vec_free (ns_id);
Florin Corasdcdff6e2017-11-07 22:36:02 -0800373 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700374 }
375
Florin Coras26408082017-11-09 02:06:07 -0800376do_ns_list:
Florin Coras8f107b32017-11-21 22:13:03 -0800377 vlib_cli_output (vm, "%-10s%-20s%-20s%-50s", "Index", "Secret",
378 "sw_if_index", "Name");
Florin Corasdff48db2017-11-19 18:06:58 -0800379
Florin Corascea194d2017-10-02 00:18:51 -0700380 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100381 pool_foreach (app_ns, app_namespace_pool) {
Florin Corascea194d2017-10-02 00:18:51 -0700382 vlib_cli_output (vm, "%U", format_app_namespace, app_ns);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100383 }
Florin Corascea194d2017-10-02 00:18:51 -0700384 /* *INDENT-ON* */
385
Florin Corasdcdff6e2017-11-07 22:36:02 -0800386done:
Florin Coras26408082017-11-09 02:06:07 -0800387 if (had_input)
388 unformat_free (line_input);
Florin Corascea194d2017-10-02 00:18:51 -0700389 return 0;
390}
391
392/* *INDENT-OFF* */
393VLIB_CLI_COMMAND (show_app_ns_command, static) =
394{
395 .path = "show app ns",
Florin Coras61ae0562020-09-02 19:10:28 -0700396 .short_help = "show app ns [table <id> [api-clients]]",
Florin Corascea194d2017-10-02 00:18:51 -0700397 .function = show_app_ns_fn,
398};
399/* *INDENT-ON* */
400
401/*
402 * fd.io coding-style-patch-verification: ON
403 *
404 * Local Variables:
405 * eval: (c-set-style "gnu")
406 * End:
407 */