ff722feb8f4f9e64e51f7d4cbbb7c84023dd40b4
[vpp.git] / vnet / vnet / lisp-cp / control.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_CONTROL_H_
17 #define VNET_CONTROL_H_
18
19 #include <vnet/vnet.h>
20 #include <vnet/lisp-cp/gid_dictionary.h>
21 #include <vnet/lisp-cp/lisp_types.h>
22
23 typedef struct
24 {
25   gid_address_t src;
26   gid_address_t dst;
27 } pending_map_request_t;
28
29 typedef struct
30 {
31   gid_address_t seid;
32   gid_address_t deid;
33   locator_pair_t * locator_pairs;
34 } fwd_entry_t;
35
36 typedef enum
37 {
38   IP4_MISS_PACKET,
39   IP6_MISS_PACKET
40 } miss_packet_type_t;
41
42 typedef struct
43 {
44   /* headers */
45   u8 data[100];
46   u32 length;
47   miss_packet_type_t type;
48 } miss_packet_t;
49
50 typedef struct
51 {
52   /* LISP feature status */
53   u8 is_enabled;
54
55   /* eid table */
56   gid_dictionary_t mapping_index_by_gid;
57
58   /* pool of mappings */
59   mapping_t * mapping_pool;
60
61   /* pool of locators */
62   locator_t * locator_pool;
63
64   /* pool of locator-sets */
65   locator_set_t * locator_set_pool;
66
67   /* vector of locator-set vectors composed of and indexed by locator index */
68   u32 ** locator_to_locator_sets;
69
70   /* hash map of locators by name */
71   uword * locator_set_index_by_name;
72
73   /* vector of eid index vectors supported and indexed by locator-set index */
74   u32 ** locator_set_to_eids;
75
76   /* vectors of indexes for local locator-sets and mappings */
77   u32 * local_mappings_indexes;
78   u32 * local_locator_set_indexes;
79
80   /* hash map of forwarding entries by mapping index */
81   u32 * fwd_entry_by_mapping_index;
82
83   /* forwarding entries pool */
84   fwd_entry_t * fwd_entry_pool;
85
86   /* hash map keyed by nonce of pending map-requests */
87   uword * pending_map_requests_by_nonce;
88
89   /* pool of pending map requests */
90   pending_map_request_t * pending_map_requests_pool;
91
92   /* vector of map-resolver addresses */
93   ip_address_t * map_resolvers;
94
95   /* map-request  locator set index */
96   u32 mreq_itr_rlocs;
97
98   /* vni to vrf hash tables */
99   uword * table_id_by_vni;
100   uword * vni_by_table_id;
101
102   /* vni to bd-index hash tables */
103   uword * bd_id_by_vni;
104   uword * vni_by_bd_id;
105
106   /* track l2 and l3 interfaces that have been created for vni */
107   uword * dp_intf_by_vni;
108   uword * l2_dp_intf_by_vni;
109
110   /* Proxy ETR map index */
111   u32 pitr_map_index;
112
113   /* LISP PITR mode */
114   u8 lisp_pitr;
115
116   /* commodity */
117   ip4_main_t * im4;
118   ip6_main_t * im6;
119   vlib_main_t * vlib_main;
120   vnet_main_t * vnet_main;
121 } lisp_cp_main_t;
122
123 /* lisp-gpe control plane */
124 lisp_cp_main_t lisp_control_main;
125
126 extern vlib_node_registration_t lisp_cp_input_node;
127 extern vlib_node_registration_t lisp_cp_lookup_node;
128
129 clib_error_t *
130 lisp_cp_init ();
131
132 always_inline lisp_cp_main_t *
133 vnet_lisp_cp_get_main() {
134   return &lisp_control_main;
135 }
136
137 typedef struct
138 {
139   u8 is_add;
140   union
141   {
142     u8 * name;
143     u32 index;
144   };
145   locator_t * locators;
146   u8 local;
147 } vnet_lisp_add_del_locator_set_args_t;
148
149 int
150 vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
151                                u32 * ls_index);
152 int
153 vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
154                            locator_set_t * ls, u32 * ls_index);
155
156 typedef struct
157 {
158   u8 is_add;
159   gid_address_t eid;
160   u32 locator_set_index;
161
162   u32 ttl;
163   u8 action;
164   u8 authoritative;
165
166   u8 local;
167 } vnet_lisp_add_del_mapping_args_t;
168
169 int
170 vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t *a,
171                            u32 * map_index);
172 int
173 vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
174                                  u32 * map_index_result);
175
176 int
177 vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
178                            u8 authoritative, u32 ttl, u8 is_add,
179                            u32 * res_map_index);
180
181 typedef struct
182 {
183   gid_address_t deid;
184   gid_address_t seid;
185   u8 is_add;
186 } vnet_lisp_add_del_adjacency_args_t;
187
188 int
189 vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a);
190
191 typedef struct
192 {
193   u8 is_add;
194   ip_address_t address;
195 } vnet_lisp_add_del_map_resolver_args_t;
196
197 int
198 vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
199
200 clib_error_t *
201 vnet_lisp_enable_disable (u8 is_enabled);
202 u8
203 vnet_lisp_enable_disable_status (void);
204
205 int
206 vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
207
208 typedef struct
209 {
210   u8 is_add;
211   u8 * locator_set_name;
212 } vnet_lisp_add_del_mreq_itr_rloc_args_t;
213
214 int
215 vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a);
216
217 int
218 vnet_lisp_clear_all_remote_adjacencies (void);
219
220 int
221 vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add);
222
223 #endif /* VNET_CONTROL_H_ */