blob: 313b2d0e63d070dad6c79a045946c9030b9d49c8 [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
Florin Coras61ae0562020-09-02 19:10:28 -070016#include <vppinfra/socket.h>
Florin Corascea194d2017-10-02 00:18:51 -070017#include <vnet/vnet.h>
Florin Coras1c710452017-10-17 00:03:13 -070018#include <vnet/session/session_table.h>
Florin Corascea194d2017-10-02 00:18:51 -070019
20#ifndef SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_
21#define SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_
22
23typedef struct _app_namespace
24{
25 /**
26 * Local sw_if_index that supports transport connections for this namespace
27 */
28 u32 sw_if_index;
29
30 /**
31 * Network namespace (e.g., fib_index associated to the sw_if_index)
32 * wherein connections are to be established. Since v4 and v6 fibs are
33 * separate, we actually need to keep pointers to both.
34 */
35 u32 ip4_fib_index;
36 u32 ip6_fib_index;
37
38 /**
39 * Local session table associated to ns
40 */
41 u32 local_table_index;
42
43 /**
44 * Secret apps need to provide to authorize attachment to the namespace
45 */
46 u64 ns_secret;
47
48 /**
49 * Application namespace id
50 */
51 u8 *ns_id;
Florin Coras61ae0562020-09-02 19:10:28 -070052
53 /**
Florin Coras7cb471a2021-07-23 08:39:26 -070054 * Linux netns if one was provided
55 */
56 u8 *netns;
57
58 /**
Florin Coras61ae0562020-09-02 19:10:28 -070059 * Name of socket applications can use to attach to session layer
60 */
61 u8 *sock_name;
62
63 /**
64 * Pool of active application sockets
65 */
66 clib_socket_t *app_sockets;
Florin Corascea194d2017-10-02 00:18:51 -070067} app_namespace_t;
68
69typedef struct _vnet_app_namespace_add_del_args
70{
71 u8 *ns_id;
Florin Coras7cb471a2021-07-23 08:39:26 -070072 u8 *netns;
Florin Corascea194d2017-10-02 00:18:51 -070073 u64 secret;
74 u32 sw_if_index;
75 u32 ip4_fib_id;
76 u32 ip6_fib_id;
77 u8 is_add;
78} vnet_app_namespace_add_del_args_t;
79
80#define APP_NAMESPACE_INVALID_INDEX ((u32)~0)
81
82app_namespace_t *app_namespace_alloc (u8 * ns_id);
83app_namespace_t *app_namespace_get (u32 index);
84app_namespace_t *app_namespace_get_from_id (const u8 * ns_id);
85u32 app_namespace_index (app_namespace_t * app_ns);
86const u8 *app_namespace_id (app_namespace_t * app_ns);
87const u8 *app_namespace_id_from_index (u32 index);
88u32 app_namespace_index_from_id (const u8 * ns_id);
89void app_namespaces_init (void);
Florin Corasc1a42652019-02-08 18:27:29 -080090int vnet_app_namespace_add_del (vnet_app_namespace_add_del_args_t * a);
Florin Coras1c710452017-10-17 00:03:13 -070091u32 app_namespace_get_fib_index (app_namespace_t * app_ns, u8 fib_proto);
92session_table_t *app_namespace_get_local_table (app_namespace_t * app_ns);
93
94always_inline app_namespace_t *
95app_namespace_get_default (void)
96{
97 return app_namespace_get (0);
98}
Florin Corascea194d2017-10-02 00:18:51 -070099
Florin Coras61ae0562020-09-02 19:10:28 -0700100typedef struct app_ns_api_handle_
101{
102 union
103 {
104 struct
105 {
106 /** app_ns index for files and app_index for sockets */
107 u32 l_index;
108 /** socket index for files and clib file index for sockets */
109 u32 u_index;
110 };
Florin Coras6b6c10b2020-09-24 11:58:28 -0700111 u64 as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -0700112 };
113#define aah_app_ns_index l_index
114#define aah_app_wrk_index l_index
115#define aah_sock_index u_index
116#define aah_file_index u_index
Florin Coras6b6c10b2020-09-24 11:58:28 -0700117} __attribute__ ((aligned (sizeof (u64)))) app_ns_api_handle_t;
Florin Coras61ae0562020-09-02 19:10:28 -0700118
Florin Coras6b6c10b2020-09-24 11:58:28 -0700119STATIC_ASSERT (sizeof (app_ns_api_handle_t) == sizeof (u64), "not u64");
Florin Coras61ae0562020-09-02 19:10:28 -0700120
121static inline clib_socket_t *
122appns_sapi_alloc_socket (app_namespace_t * app_ns)
123{
124 clib_socket_t *cs;
125 pool_get_zero (app_ns->app_sockets, cs);
126 return cs;
127}
128
129static inline clib_socket_t *
130appns_sapi_get_socket (app_namespace_t * app_ns, u32 sock_index)
131{
132 if (pool_is_free_index (app_ns->app_sockets, sock_index))
133 return 0;
134 return pool_elt_at_index (app_ns->app_sockets, sock_index);
135}
136
137static inline void
138appns_sapi_free_socket (app_namespace_t * app_ns, clib_socket_t * cs)
139{
140 pool_put (app_ns->app_sockets, cs);
141}
142
143static inline u32
144appns_sapi_socket_index (app_namespace_t * app_ns, clib_socket_t * cs)
145{
146 return (cs - app_ns->app_sockets);
147}
148
149static inline u32
150appns_sapi_socket_handle (app_namespace_t * app_ns, clib_socket_t * cs)
151{
152 return app_namespace_index (app_ns) << 16 | (cs - app_ns->app_sockets);
153}
154
155static inline u32
156appns_sapi_handle_sock_index (u32 sapi_sock_handle)
157{
158 return sapi_sock_handle & 0xffff;
159}
160
161int appns_sapi_add_ns_socket (app_namespace_t * app_ns);
162u8 appns_sapi_enabled (void);
163void appns_sapi_enable (void);
164
Florin Corascea194d2017-10-02 00:18:51 -0700165#endif /* SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_ */
166
167/*
168 * fd.io coding-style-patch-verification: ON
169 *
170 * Local Variables:
171 * eval: (c-set-style "gnu")
172 * End:
173 */