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