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