326b0c0146f7cd9dd8e87e1931ccc7d69938710a
[vpp.git] / src / vnet / session / application_namespace.c
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 #include <vnet/session/application_namespace.h>
17 #include <vnet/session/session_table.h>
18 #include <vnet/session/session.h>
19 #include <vnet/fib/fib_table.h>
20
21 /**
22  * Hash table of application namespaces by app ns ids
23  */
24 uword *app_namespace_lookup_table;
25
26 /**
27  * Pool of application namespaces
28  */
29 static app_namespace_t *app_namespace_pool;
30
31 app_namespace_t *
32 app_namespace_get (u32 index)
33 {
34   return pool_elt_at_index (app_namespace_pool, index);
35 }
36
37 app_namespace_t *
38 app_namespace_get_from_id (const u8 * ns_id)
39 {
40   u32 index = app_namespace_index_from_id (ns_id);
41   if (index == APP_NAMESPACE_INVALID_INDEX)
42     return 0;
43   return app_namespace_get (index);
44 }
45
46 u32
47 app_namespace_index (app_namespace_t * app_ns)
48 {
49   return (app_ns - app_namespace_pool);
50 }
51
52 app_namespace_t *
53 app_namespace_alloc (u8 * ns_id)
54 {
55   app_namespace_t *app_ns;
56   pool_get (app_namespace_pool, app_ns);
57   memset (app_ns, 0, sizeof (*app_ns));
58   app_ns->ns_id = vec_dup (ns_id);
59   hash_set_mem (app_namespace_lookup_table, app_ns->ns_id,
60                 app_ns - app_namespace_pool);
61   return app_ns;
62 }
63
64 clib_error_t *
65 vnet_app_namespace_add_del (vnet_app_namespace_add_del_args_t * a)
66 {
67   app_namespace_t *app_ns;
68   session_table_t *st;
69
70   if (a->is_add)
71     {
72       if (a->sw_if_index != APP_NAMESPACE_INVALID_INDEX
73           && !vnet_get_sw_interface_safe (vnet_get_main (), a->sw_if_index))
74         return clib_error_return_code (0, VNET_API_ERROR_INVALID_SW_IF_INDEX,
75                                        0, "sw_if_index %u doesn't exist",
76                                        a->sw_if_index);
77
78       if (a->sw_if_index != APP_NAMESPACE_INVALID_INDEX)
79         {
80           a->ip4_fib_id =
81             fib_table_get_table_id_for_sw_if_index (FIB_PROTOCOL_IP4,
82                                                     a->sw_if_index);
83           a->ip6_fib_id =
84             fib_table_get_table_id_for_sw_if_index (FIB_PROTOCOL_IP4,
85                                                     a->sw_if_index);
86         }
87       if (a->sw_if_index == APP_NAMESPACE_INVALID_INDEX
88           && a->ip4_fib_id == APP_NAMESPACE_INVALID_INDEX)
89         return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
90                                        "sw_if_index or fib_id must be "
91                                        "configured");
92       app_ns = app_namespace_get_from_id (a->ns_id);
93       if (!app_ns)
94         {
95           app_ns = app_namespace_alloc (a->ns_id);
96           st = session_table_alloc ();
97           session_table_init (st);
98           app_ns->local_table_index = session_table_index (st);
99         }
100       app_ns->ns_secret = a->secret;
101       app_ns->sw_if_index = a->sw_if_index;
102       app_ns->ip4_fib_index =
103         fib_table_find (FIB_PROTOCOL_IP4, a->ip4_fib_id);
104       app_ns->ip6_fib_index =
105         fib_table_find (FIB_PROTOCOL_IP6, a->ip6_fib_id);
106     }
107   else
108     {
109       return clib_error_return_code (0, VNET_API_ERROR_UNIMPLEMENTED, 0,
110                                      "namespace deletion not supported");
111     }
112   return 0;
113 }
114
115 const u8 *
116 app_namespace_id (app_namespace_t * app_ns)
117 {
118   return app_ns->ns_id;
119 }
120
121 u32
122 app_namespace_index_from_id (const u8 * ns_id)
123 {
124   uword *indexp;
125   indexp = hash_get_mem (app_namespace_lookup_table, ns_id);
126   if (!indexp)
127     return APP_NAMESPACE_INVALID_INDEX;
128   return *indexp;
129 }
130
131 const u8 *
132 app_namespace_id_from_index (u32 index)
133 {
134   app_namespace_t *app_ns;
135
136   app_ns = app_namespace_get (index);
137   return app_namespace_id (app_ns);
138 }
139
140 u32
141 app_namespace_get_fib_index (app_namespace_t * app_ns, u8 fib_proto)
142 {
143   return fib_proto == FIB_PROTOCOL_IP4 ?
144     app_ns->ip4_fib_index : app_ns->ip6_fib_index;
145 }
146
147 session_table_t *
148 app_namespace_get_local_table (app_namespace_t * app_ns)
149 {
150   return session_table_get (app_ns->local_table_index);
151 }
152
153 void
154 app_namespaces_init (void)
155 {
156   u8 *ns_id = format (0, "default");
157
158   if (!app_namespace_lookup_table)
159     app_namespace_lookup_table =
160       hash_create_vec (0, sizeof (u8), sizeof (uword));
161
162   /*
163    * Allocate default namespace
164    */
165   vnet_app_namespace_add_del_args_t a = {
166     .ns_id = ns_id,
167     .secret = 0,
168     .sw_if_index = APP_NAMESPACE_INVALID_INDEX,
169     .is_add = 1
170   };
171   vnet_app_namespace_add_del (&a);
172   vec_free (ns_id);
173 }
174
175 static clib_error_t *
176 app_ns_fn (vlib_main_t * vm, unformat_input_t * input,
177            vlib_cli_command_t * cmd)
178 {
179   unformat_input_t _line_input, *line_input = &_line_input;
180   u8 is_add = 0, *ns_id = 0, secret_set = 0, sw_if_index_set = 0;
181   u32 sw_if_index, fib_id = APP_NAMESPACE_INVALID_INDEX;
182   u64 secret;
183   clib_error_t *error = 0;
184
185   session_cli_return_if_not_enabled ();
186
187   if (!unformat_user (input, unformat_line_input, line_input))
188     return 0;
189
190   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
191     {
192       if (unformat (line_input, "add"))
193         is_add = 1;
194       else if (unformat (line_input, "id %_%v%_", &ns_id))
195         ;
196       else if (unformat (line_input, "secret %lu", &secret))
197         secret_set = 1;
198       else if (unformat (line_input, "sw_if_index %u", &sw_if_index))
199         sw_if_index_set = 1;
200       else if (unformat (line_input, "fib_id", &fib_id))
201         ;
202       else
203         {
204           error = clib_error_return (0, "unknown input `%U'",
205                                      format_unformat_error, line_input);
206           unformat_free (line_input);
207           return error;
208         }
209     }
210   unformat_free (line_input);
211
212   if (!ns_id || !secret_set || !sw_if_index_set)
213     {
214       vlib_cli_output (vm, "namespace-id, secret and sw_if_index must be "
215                        "provided");
216       return 0;
217     }
218
219   if (is_add)
220     {
221       vnet_app_namespace_add_del_args_t args = {
222         .ns_id = ns_id,
223         .secret = secret,
224         .sw_if_index = sw_if_index,
225         .ip4_fib_id = fib_id,
226         .is_add = 1
227       };
228       error = vnet_app_namespace_add_del (&args);
229     }
230
231   return error;
232 }
233
234 /* *INDENT-OFF* */
235 VLIB_CLI_COMMAND (app_ns_command, static) =
236 {
237   .path = "app ns",
238   .short_help = "app ns [add] id <namespace-id> secret <secret> "
239       "sw_if_index <sw_if_index>",
240   .function = app_ns_fn,
241 };
242 /* *INDENT-ON* */
243
244 u8 *
245 format_app_namespace (u8 * s, va_list * args)
246 {
247   app_namespace_t *app_ns = va_arg (*args, app_namespace_t *);
248   s = format (s, "%-20v%-20lu%-20u", app_ns->ns_id, app_ns->ns_secret,
249               app_ns->sw_if_index);
250   return s;
251 }
252
253 static clib_error_t *
254 show_app_ns_fn (vlib_main_t * vm, unformat_input_t * input,
255                 vlib_cli_command_t * cmd)
256 {
257   app_namespace_t *app_ns;
258   session_table_t *st;
259   u8 *ns_id, do_table = 0;
260
261   session_cli_return_if_not_enabled ();
262
263   if (unformat_peek_input (input) != UNFORMAT_END_OF_INPUT)
264     {
265       if (unformat (input, "table %_%v%_", &ns_id))
266         do_table = 1;
267       else
268         {
269           vlib_cli_output (vm, "unknown input [%U]",
270                            format_unformat_error, input);
271           return clib_error_return (0, "unknown input `%U'",
272                                     format_unformat_error, input);
273         }
274     }
275
276   if (do_table)
277     {
278       app_ns = app_namespace_get_from_id (ns_id);
279       if (!app_ns)
280         {
281           vlib_cli_output (vm, "ns %v not found", ns_id);
282           return 0;
283         }
284       st = session_table_get (app_ns->local_table_index);
285       if (!st)
286         {
287           vlib_cli_output (vm, "table for ns %v could not be found", ns_id);
288           return 0;
289         }
290       session_lookup_show_table_entries (vm, st, 0, 1);
291       vec_free (ns_id);
292       return 0;
293     }
294
295   vlib_cli_output (vm, "%-20s%-20s%-20s", "Namespace", "Secret",
296                    "sw_if_index");
297
298   /* *INDENT-OFF* */
299   pool_foreach (app_ns, app_namespace_pool, ({
300     vlib_cli_output (vm, "%U", format_app_namespace, app_ns);
301   }));
302   /* *INDENT-ON* */
303
304   return 0;
305 }
306
307 /* *INDENT-OFF* */
308 VLIB_CLI_COMMAND (show_app_ns_command, static) =
309 {
310   .path = "show app ns",
311   .short_help = "show app ns",
312   .function = show_app_ns_fn,
313 };
314 /* *INDENT-ON* */
315
316 /*
317  * fd.io coding-style-patch-verification: ON
318  *
319  * Local Variables:
320  * eval: (c-set-style "gnu")
321  * End:
322  */