FD.io VPP  v16.06
Vector Packet Processing
gid_dictionary.h
Go to the documentation of this file.
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>
21 #include <vppinfra/bihash_24_8.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 typedef struct
35 {
36  BVT(clib_bihash) ip4_lookup_table;
37 
38  /* bitmap/vector of mask widths to search */
41  ip4_address_t ip4_fib_masks[33];
42  u32 ip4_prefix_len_refcount[33];
43 
44  /* ip4 lookup table config parameters */
47 
48  BVT(clib_bihash) ip6_lookup_table;
49 
50  /* bitmap/vector of mask widths to search */
51  uword * ip6_non_empty_dst_address_length_bitmap;
52  u8 * ip6_prefix_lengths_in_search_order;
53  ip6_address_t ip6_fib_masks[129];
54  u64 ip6_prefix_len_refcount[129];
55 
56  /* ip6 lookup table config parameters */
57  u32 ip6_lookup_table_nbuckets;
58  uword ip6_lookup_table_size;
59 
61 
62 u32
64  u8 is_add);
65 
66 u32
68 
69 void
71 
72 #endif /* VNET_LISP_GPE_GID_DICTIONARY_H_ */
void gid_dictionary_init(gid_dictionary_t *db)
uword ip4_lookup_table_size
unsigned long u64
Definition: types.h:89
u32 gid_dictionary_lookup(gid_dictionary_t *db, gid_address_t *key)
u32 gid_dictionary_add_del(gid_dictionary_t *db, gid_address_t *key, u32 value, u8 is_add)
u8 * ip4_prefix_lengths_in_search_order
struct _gid_address_t gid_address_t
unsigned int u32
Definition: types.h:88
u64 uword
Definition: types.h:112
#define BVT(a)
unsigned char u8
Definition: types.h:56
uword * ip4_non_empty_dst_address_length_bitmap