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 | |
| 16 | #include <vnet/session/session_table.h> |
| 17 | #include <vnet/session/session.h> |
| 18 | |
| 19 | /** |
| 20 | * Pool of session tables |
| 21 | */ |
| 22 | static session_table_t *lookup_tables; |
| 23 | |
| 24 | session_table_t * |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 25 | _get_session_tables (void) |
| 26 | { |
| 27 | return lookup_tables; |
| 28 | } |
| 29 | |
| 30 | session_table_t * |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 31 | session_table_alloc (void) |
| 32 | { |
| 33 | session_table_t *slt; |
| 34 | pool_get_aligned (lookup_tables, slt, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 35 | clib_memset (slt, 0, sizeof (*slt)); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 36 | return slt; |
| 37 | } |
| 38 | |
| 39 | u32 |
| 40 | session_table_index (session_table_t * slt) |
| 41 | { |
| 42 | return (slt - lookup_tables); |
| 43 | } |
| 44 | |
| 45 | session_table_t * |
| 46 | session_table_get (u32 table_index) |
| 47 | { |
Florin Coras | 7ce3d13 | 2018-05-29 01:03:16 -0700 | [diff] [blame] | 48 | if (pool_is_free_index (lookup_tables, table_index)) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 49 | return 0; |
Florin Coras | 7ce3d13 | 2018-05-29 01:03:16 -0700 | [diff] [blame] | 50 | return pool_elt_at_index (lookup_tables, table_index); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | #define foreach_hash_table_parameter \ |
| 54 | _(v4,session,buckets,20000) \ |
| 55 | _(v4,session,memory,(64<<20)) \ |
| 56 | _(v6,session,buckets,20000) \ |
| 57 | _(v6,session,memory,(64<<20)) \ |
| 58 | _(v4,halfopen,buckets,20000) \ |
| 59 | _(v4,halfopen,memory,(64<<20)) \ |
| 60 | _(v6,halfopen,buckets,20000) \ |
| 61 | _(v6,halfopen,memory,(64<<20)) |
| 62 | |
| 63 | /** |
| 64 | * Initialize session table hash tables |
| 65 | * |
| 66 | * If vpp configured with set of table parameters it uses them, |
| 67 | * otherwise it uses defaults above. |
| 68 | */ |
| 69 | void |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 70 | session_table_init (session_table_t * slt, u8 fib_proto) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 71 | { |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 72 | u8 all = fib_proto > FIB_PROTOCOL_IP6 ? 1 : 0; |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 73 | int i; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 74 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 75 | #define _(af,table,parm,value) \ |
| 76 | u32 configured_##af##_##table##_table_##parm = value; |
| 77 | foreach_hash_table_parameter; |
| 78 | #undef _ |
| 79 | |
| 80 | #define _(af,table,parm,value) \ |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 81 | if (session_main.configured_##af##_##table##_table_##parm) \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 82 | configured_##af##_##table##_table_##parm = \ |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 83 | session_main.configured_##af##_##table##_table_##parm; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 84 | foreach_hash_table_parameter; |
| 85 | #undef _ |
| 86 | |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 87 | if (fib_proto == FIB_PROTOCOL_IP4 || all) |
| 88 | { |
Florin Coras | 27eeb87 | 2019-09-03 13:06:11 -0700 | [diff] [blame] | 89 | clib_bihash_init2_args_16_8_t _a, *a = &_a; |
| 90 | |
| 91 | memset (a, 0, sizeof (*a)); |
| 92 | a->h = &slt->v4_session_hash; |
| 93 | a->name = "v4 session table"; |
| 94 | a->nbuckets = configured_v4_session_table_buckets; |
| 95 | a->memory_size = configured_v4_session_table_memory; |
| 96 | a->dont_add_to_all_bihash_list = 1; |
| 97 | a->instantiate_immediately = 1; |
| 98 | clib_bihash_init2_16_8 (a); |
| 99 | |
| 100 | memset (a, 0, sizeof (*a)); |
| 101 | a->h = &slt->v4_half_open_hash; |
| 102 | a->name = "v4 half-open table"; |
| 103 | a->nbuckets = configured_v4_halfopen_table_buckets; |
| 104 | a->memory_size = configured_v4_halfopen_table_memory; |
| 105 | a->dont_add_to_all_bihash_list = 1; |
| 106 | a->instantiate_immediately = 1; |
| 107 | clib_bihash_init2_16_8 (a); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 108 | } |
| 109 | if (fib_proto == FIB_PROTOCOL_IP6 || all) |
| 110 | { |
Florin Coras | 27eeb87 | 2019-09-03 13:06:11 -0700 | [diff] [blame] | 111 | clib_bihash_init2_args_48_8_t _a, *a = &_a; |
| 112 | |
| 113 | memset (a, 0, sizeof (*a)); |
| 114 | a->h = &slt->v6_session_hash; |
| 115 | a->name = "v6 session table"; |
| 116 | a->nbuckets = configured_v6_session_table_buckets; |
| 117 | a->memory_size = configured_v6_session_table_memory; |
| 118 | a->dont_add_to_all_bihash_list = 1; |
| 119 | a->instantiate_immediately = 1; |
| 120 | clib_bihash_init2_48_8 (a); |
| 121 | |
| 122 | memset (a, 0, sizeof (*a)); |
| 123 | a->h = &slt->v6_half_open_hash; |
| 124 | a->name = "v6 half-open table"; |
| 125 | a->nbuckets = configured_v6_halfopen_table_buckets; |
| 126 | a->memory_size = configured_v6_halfopen_table_memory; |
| 127 | a->dont_add_to_all_bihash_list = 1; |
| 128 | a->instantiate_immediately = 1; |
| 129 | clib_bihash_init2_48_8 (a); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 130 | } |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 131 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 132 | vec_validate (slt->session_rules, TRANSPORT_N_PROTOS - 1); |
| 133 | for (i = 0; i < TRANSPORT_N_PROTOS; i++) |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 134 | session_rules_table_init (&slt->session_rules[i]); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | typedef struct _ip4_session_table_walk_ctx_t |
| 138 | { |
| 139 | ip4_session_table_walk_fn_t fn; |
| 140 | void *ctx; |
| 141 | } ip4_session_table_walk_ctx_t; |
| 142 | |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 143 | static int |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 144 | ip4_session_table_walk_cb (clib_bihash_kv_16_8_t * kvp, void *arg) |
| 145 | { |
| 146 | ip4_session_table_walk_ctx_t *ctx = arg; |
| 147 | ctx->fn (kvp, ctx->ctx); |
Neale Ranns | f50bac1 | 2019-12-06 05:53:17 +0000 | [diff] [blame] | 148 | return (BIHASH_WALK_CONTINUE); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | void |
| 152 | ip4_session_table_walk (clib_bihash_16_8_t * hash, |
| 153 | ip4_session_table_walk_fn_t fn, void *arg) |
| 154 | { |
| 155 | ip4_session_table_walk_ctx_t ctx = { |
| 156 | .fn = fn, |
| 157 | .ctx = arg, |
| 158 | }; |
| 159 | clib_bihash_foreach_key_value_pair_16_8 (hash, ip4_session_table_walk_cb, |
| 160 | &ctx); |
| 161 | } |
| 162 | |
| 163 | /* *INDENT-ON* */ |
| 164 | /* |
| 165 | * fd.io coding-style-patch-verification: ON |
| 166 | * |
| 167 | * Local Variables: |
| 168 | * eval: (c-set-style "gnu") |
| 169 | * End: |
| 170 | */ |