Simplify API to add LISP adjacencies
[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   /* Lookup vrf by vni */
100   uword * table_id_by_vni;
101
102   /* Lookup vni by vrf */
103   uword * vni_by_table_id;
104
105   /* Number of src prefixes in a vni that use an interface */
106   uword * dp_intf_by_vni;
107
108   /* Proxy ETR map index */
109   u32 pitr_map_index;
110
111   /* LISP PITR mode */
112   u8 lisp_pitr;
113
114   /* commodity */
115   ip4_main_t * im4;
116   ip6_main_t * im6;
117   vlib_main_t * vlib_main;
118   vnet_main_t * vnet_main;
119 } lisp_cp_main_t;
120
121 /* lisp-gpe control plane */
122 lisp_cp_main_t lisp_control_main;
123
124 extern vlib_node_registration_t lisp_cp_input_node;
125 extern vlib_node_registration_t lisp_cp_lookup_node;
126
127 clib_error_t *
128 lisp_cp_init ();
129
130 always_inline lisp_cp_main_t *
131 vnet_lisp_cp_get_main() {
132   return &lisp_control_main;
133 }
134
135 typedef struct
136 {
137   u8 is_add;
138   union
139   {
140     u8 * name;
141     u32 index;
142   };
143   locator_t * locators;
144   u8 local;
145 } vnet_lisp_add_del_locator_set_args_t;
146
147 int
148 vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
149                                u32 * ls_index);
150 int
151 vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
152                            locator_set_t * ls, u32 * ls_index);
153
154 typedef struct
155 {
156   u8 is_add;
157   gid_address_t eid;
158   u32 locator_set_index;
159
160   u32 ttl;
161   u8 action;
162   u8 authoritative;
163
164   u8 local;
165 } vnet_lisp_add_del_mapping_args_t;
166
167 int
168 vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t *a,
169                            u32 * map_index);
170 int
171 vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
172                                  u32 * map_index_result);
173
174 int
175 vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action,
176                            u8 authoritative, u32 ttl, u8 is_add,
177                            u32 * res_map_index);
178
179 typedef struct
180 {
181   gid_address_t deid;
182   gid_address_t seid;
183   u8 is_add;
184 } vnet_lisp_add_del_adjacency_args_t;
185
186 int
187 vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a);
188
189 typedef struct
190 {
191   u8 is_add;
192   ip_address_t address;
193 } vnet_lisp_add_del_map_resolver_args_t;
194
195 int
196 vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
197
198 clib_error_t *
199 vnet_lisp_enable_disable (u8 is_enabled);
200 u8
201 vnet_lisp_enable_disable_status (void);
202
203 int
204 vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
205
206 typedef struct
207 {
208   u8 is_add;
209   u8 * locator_set_name;
210 } vnet_lisp_add_del_mreq_itr_rloc_args_t;
211
212 int
213 vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a);
214
215 int
216 vnet_lisp_clear_all_remote_adjacencies (void);
217
218 int
219 vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_add);
220
221 #endif /* VNET_CONTROL_H_ */