6544cca1b184c313b54eb7c1098cb49271598ef5
[vpp.git] / vnet / vnet / lisp-cp / gid_dictionary.h
1 /*
2  * Copyright (c) 2016 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 VNET_LISP_GPE_GID_DICTIONARY_H_
17 #define VNET_LISP_GPE_GID_DICTIONARY_H_
18
19 #include <vnet/vnet.h>
20 #include <vnet/lisp-cp/lisp_types.h>
21 #include <vppinfra/bihash_24_8.h>
22 #include <vppinfra/bihash_template.h>
23
24 #define GID_LOOKUP_MISS ((u32)~0)
25
26 /* Default size of the ip4 hash table */
27 #define IP4_LOOKUP_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
28 #define IP4_LOOKUP_DEFAULT_HASH_MEMORY_SIZE (32<<20)
29
30 /* Default size of the ip6 hash table */
31 #define IP6_LOOKUP_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
32 #define IP6_LOOKUP_DEFAULT_HASH_MEMORY_SIZE (32<<20)
33
34 /* Default size of the MAC hash table */
35 #define MAC_LOOKUP_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
36 #define MAC_LOOKUP_DEFAULT_HASH_MEMORY_SIZE (32<<20)
37
38 typedef struct
39 {
40   BVT (clib_bihash) ip4_lookup_table;
41
42   /* bitmap/vector of mask widths to search */
43   uword *ip4_non_empty_dst_address_length_bitmap;
44   u8 *ip4_prefix_lengths_in_search_order;
45   ip4_address_t ip4_fib_masks[33];
46   u32 ip4_prefix_len_refcount[33];
47
48   /* ip4 lookup table config parameters */
49   u32 ip4_lookup_table_nbuckets;
50   uword ip4_lookup_table_size;
51 } gid_ip4_table_t;
52
53 typedef struct
54 {
55   BVT (clib_bihash) ip6_lookup_table;
56
57   /* bitmap/vector of mask widths to search */
58   uword *ip6_non_empty_dst_address_length_bitmap;
59   u8 *ip6_prefix_lengths_in_search_order;
60   ip6_address_t ip6_fib_masks[129];
61   u64 ip6_prefix_len_refcount[129];
62
63   /* ip6 lookup table config parameters */
64   u32 ip6_lookup_table_nbuckets;
65   uword ip6_lookup_table_size;
66 } gid_ip6_table_t;
67
68 typedef struct gid_mac_table
69 {
70   BVT (clib_bihash) mac_lookup_table;
71
72   /* mac lookup table config parameters */
73   u32 mac_lookup_table_nbuckets;
74   uword mac_lookup_table_size;
75 } gid_mac_table_t;
76
77 typedef struct
78 {
79   /** destination IP LPM ip4 lookup table */
80   gid_ip4_table_t dst_ip4_table;
81
82   /** pool of source IP LPM ip4 lookup tables */
83   gid_ip4_table_t *src_ip4_table_pool;
84
85   /** destination IP LPM ip6 lookup table */
86   gid_ip6_table_t dst_ip6_table;
87
88   /** pool of source IP LPM ip6 lookup tables */
89   gid_ip6_table_t *src_ip6_table_pool;
90
91   /** flat source/dest mac lookup table */
92   gid_mac_table_t sd_mac_table;
93
94 } gid_dictionary_t;
95
96 u32
97 gid_dictionary_add_del (gid_dictionary_t * db, gid_address_t * key, u32 value,
98                         u8 is_add);
99
100 u32 gid_dictionary_lookup (gid_dictionary_t * db, gid_address_t * key);
101 u32 gid_dictionary_sd_lookup (gid_dictionary_t * db, gid_address_t * dst,
102                               gid_address_t * src);
103
104 void gid_dictionary_init (gid_dictionary_t * db);
105
106 #endif /* VNET_LISP_GPE_GID_DICTIONARY_H_ */
107
108 /*
109  * fd.io coding-style-patch-verification: ON
110  *
111  * Local Variables:
112  * eval: (c-set-style "gnu")
113  * End:
114  */