Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 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 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 16 | #include <vppinfra/socket.h> |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 17 | #include <vnet/vnet.h> |
Steven Luong | c4b5d10 | 2024-07-30 13:44:01 -0700 | [diff] [blame] | 18 | #include <vnet/session/session_types.h> |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 19 | #include <vnet/session/session_table.h> |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 20 | |
| 21 | #ifndef SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_ |
| 22 | #define SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_ |
| 23 | |
| 24 | typedef struct _app_namespace |
| 25 | { |
| 26 | /** |
| 27 | * Local sw_if_index that supports transport connections for this namespace |
| 28 | */ |
| 29 | u32 sw_if_index; |
| 30 | |
| 31 | /** |
| 32 | * Network namespace (e.g., fib_index associated to the sw_if_index) |
| 33 | * wherein connections are to be established. Since v4 and v6 fibs are |
| 34 | * separate, we actually need to keep pointers to both. |
| 35 | */ |
| 36 | u32 ip4_fib_index; |
| 37 | u32 ip6_fib_index; |
| 38 | |
| 39 | /** |
| 40 | * Local session table associated to ns |
| 41 | */ |
| 42 | u32 local_table_index; |
| 43 | |
| 44 | /** |
| 45 | * Secret apps need to provide to authorize attachment to the namespace |
| 46 | */ |
| 47 | u64 ns_secret; |
| 48 | |
| 49 | /** |
| 50 | * Application namespace id |
| 51 | */ |
| 52 | u8 *ns_id; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 53 | |
| 54 | /** |
| 55 | * Name of socket applications can use to attach to session layer |
| 56 | */ |
| 57 | u8 *sock_name; |
| 58 | |
| 59 | /** |
| 60 | * Pool of active application sockets |
| 61 | */ |
| 62 | clib_socket_t *app_sockets; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 63 | } app_namespace_t; |
| 64 | |
| 65 | typedef struct _vnet_app_namespace_add_del_args |
| 66 | { |
| 67 | u8 *ns_id; |
Nathan Skrzypczak | 1a9e2f9 | 2021-07-28 19:35:08 +0200 | [diff] [blame] | 68 | u8 *sock_name; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 69 | u64 secret; |
| 70 | u32 sw_if_index; |
| 71 | u32 ip4_fib_id; |
| 72 | u32 ip6_fib_id; |
| 73 | u8 is_add; |
| 74 | } vnet_app_namespace_add_del_args_t; |
| 75 | |
| 76 | #define APP_NAMESPACE_INVALID_INDEX ((u32)~0) |
| 77 | |
Nathan Skrzypczak | 1a9e2f9 | 2021-07-28 19:35:08 +0200 | [diff] [blame] | 78 | app_namespace_t *app_namespace_alloc (const u8 *ns_id); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 79 | app_namespace_t *app_namespace_get (u32 index); |
Steven Luong | e38d947 | 2024-11-06 13:47:26 -0800 | [diff] [blame] | 80 | app_namespace_t *app_namespace_get_if_valid (u32 index); |
Nathan Skrzypczak | 1a9e2f9 | 2021-07-28 19:35:08 +0200 | [diff] [blame] | 81 | app_namespace_t *app_namespace_get_from_id (const u8 *ns_id); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 82 | u32 app_namespace_index (app_namespace_t * app_ns); |
| 83 | const u8 *app_namespace_id (app_namespace_t * app_ns); |
| 84 | const u8 *app_namespace_id_from_index (u32 index); |
Nathan Skrzypczak | 1a9e2f9 | 2021-07-28 19:35:08 +0200 | [diff] [blame] | 85 | u32 app_namespace_index_from_id (const u8 *ns_id); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 86 | void app_namespaces_init (void); |
Filip Tehlar | 0028e6f | 2023-06-28 10:47:32 +0200 | [diff] [blame] | 87 | session_error_t |
| 88 | vnet_app_namespace_add_del (vnet_app_namespace_add_del_args_t *a); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 89 | u32 app_namespace_get_fib_index (app_namespace_t * app_ns, u8 fib_proto); |
| 90 | session_table_t *app_namespace_get_local_table (app_namespace_t * app_ns); |
| 91 | |
Steven Luong | c4b5d10 | 2024-07-30 13:44:01 -0700 | [diff] [blame] | 92 | typedef void (*app_namespace_walk_fn_t) (app_namespace_t *app_ns, void *ctx); |
| 93 | extern void app_namespace_walk (app_namespace_walk_fn_t fn, void *ctx); |
| 94 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 95 | always_inline app_namespace_t * |
| 96 | app_namespace_get_default (void) |
| 97 | { |
| 98 | return app_namespace_get (0); |
| 99 | } |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 100 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 101 | typedef struct app_ns_api_handle_ |
| 102 | { |
| 103 | union |
| 104 | { |
| 105 | struct |
| 106 | { |
| 107 | /** app_ns index for files and app_index for sockets */ |
| 108 | u32 l_index; |
| 109 | /** socket index for files and clib file index for sockets */ |
| 110 | u32 u_index; |
| 111 | }; |
Florin Coras | 6b6c10b | 2020-09-24 11:58:28 -0700 | [diff] [blame] | 112 | u64 as_u64; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 113 | }; |
| 114 | #define aah_app_ns_index l_index |
| 115 | #define aah_app_wrk_index l_index |
| 116 | #define aah_sock_index u_index |
| 117 | #define aah_file_index u_index |
Florin Coras | 6b6c10b | 2020-09-24 11:58:28 -0700 | [diff] [blame] | 118 | } __attribute__ ((aligned (sizeof (u64)))) app_ns_api_handle_t; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 119 | |
Florin Coras | 6b6c10b | 2020-09-24 11:58:28 -0700 | [diff] [blame] | 120 | STATIC_ASSERT (sizeof (app_ns_api_handle_t) == sizeof (u64), "not u64"); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 121 | |
| 122 | static inline clib_socket_t * |
| 123 | appns_sapi_alloc_socket (app_namespace_t * app_ns) |
| 124 | { |
| 125 | clib_socket_t *cs; |
| 126 | pool_get_zero (app_ns->app_sockets, cs); |
| 127 | return cs; |
| 128 | } |
| 129 | |
| 130 | static inline clib_socket_t * |
| 131 | appns_sapi_get_socket (app_namespace_t * app_ns, u32 sock_index) |
| 132 | { |
| 133 | if (pool_is_free_index (app_ns->app_sockets, sock_index)) |
| 134 | return 0; |
| 135 | return pool_elt_at_index (app_ns->app_sockets, sock_index); |
| 136 | } |
| 137 | |
| 138 | static inline void |
| 139 | appns_sapi_free_socket (app_namespace_t * app_ns, clib_socket_t * cs) |
| 140 | { |
| 141 | pool_put (app_ns->app_sockets, cs); |
| 142 | } |
| 143 | |
| 144 | static inline u32 |
| 145 | appns_sapi_socket_index (app_namespace_t * app_ns, clib_socket_t * cs) |
| 146 | { |
| 147 | return (cs - app_ns->app_sockets); |
| 148 | } |
| 149 | |
| 150 | static inline u32 |
| 151 | appns_sapi_socket_handle (app_namespace_t * app_ns, clib_socket_t * cs) |
| 152 | { |
| 153 | return app_namespace_index (app_ns) << 16 | (cs - app_ns->app_sockets); |
| 154 | } |
| 155 | |
| 156 | static inline u32 |
| 157 | appns_sapi_handle_sock_index (u32 sapi_sock_handle) |
| 158 | { |
| 159 | return sapi_sock_handle & 0xffff; |
| 160 | } |
| 161 | |
| 162 | int appns_sapi_add_ns_socket (app_namespace_t * app_ns); |
Nathan Skrzypczak | b3ea73e | 2021-08-05 10:22:52 +0200 | [diff] [blame] | 163 | void appns_sapi_del_ns_socket (app_namespace_t *app_ns); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 164 | u8 appns_sapi_enabled (void); |
Nathan Skrzypczak | 7b3a3df | 2021-07-28 14:09:50 +0200 | [diff] [blame] | 165 | int appns_sapi_enable_disable (int is_enable); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 166 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 167 | #endif /* SRC_VNET_SESSION_APPLICATION_NAMESPACE_H_ */ |
| 168 | |
| 169 | /* |
| 170 | * fd.io coding-style-patch-verification: ON |
| 171 | * |
| 172 | * Local Variables: |
| 173 | * eval: (c-set-style "gnu") |
| 174 | * End: |
| 175 | */ |