session: add support for application namespacing
[vpp.git] / src / vnet / session / session_table.h
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 #ifndef SRC_VNET_SESSION_SESSION_TABLE_H_
17 #define SRC_VNET_SESSION_SESSION_TABLE_H_
18
19 #include <vppinfra/bihash_16_8.h>
20 #include <vppinfra/bihash_48_8.h>
21
22 typedef struct _session_lookup_table
23 {
24   /**
25    * Lookup tables for established sessions and listeners
26    */
27   clib_bihash_16_8_t v4_session_hash;
28   clib_bihash_48_8_t v6_session_hash;
29
30   /**
31    * Lookup tables for half-open sessions
32    */
33   clib_bihash_16_8_t v4_half_open_hash;
34   clib_bihash_48_8_t v6_half_open_hash;
35 } session_table_t;
36
37 #define SESSION_TABLE_INVALID_INDEX ((u32)~0)
38 #define SESSION_LOCAL_TABLE_PREFIX ((u32)~0)
39 #define SESSION_INVALID_INDEX ((u32)~0)
40
41 typedef int (*ip4_session_table_walk_fn_t) (clib_bihash_kv_16_8_t * kvp,
42                                             void *ctx);
43
44 void ip4_session_table_walk_cb (clib_bihash_kv_16_8_t * kvp, void *arg);
45 void ip4_session_table_walk (clib_bihash_16_8_t * hash,
46                              ip4_session_table_walk_fn_t fn, void *arg);
47
48 session_table_t *session_table_alloc (void);
49 session_table_t *session_table_get (u32 table_index);
50 u32 session_table_index (session_table_t * slt);
51 void session_table_init (session_table_t * slt);
52
53 #endif /* SRC_VNET_SESSION_SESSION_TABLE_H_ */
54 /* *INDENT-ON* */
55 /*
56  * fd.io coding-style-patch-verification: ON
57  *
58  * Local Variables:
59  * eval: (c-set-style "gnu")
60  * End:
61  */