ONE-15: Fix duplicate locator, refactoring locator
[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   /* Lookup vrf by vni */
98   uword * table_id_by_vni;
99
100   /* Number of src prefixes in a vni that use an interface */
101   uword * dp_if_refcount_by_vni;
102
103   /* Proxy ETR map index */
104   u32 pitr_map_index;
105
106   /* LISP PITR mode */
107   u8 lisp_pitr;
108
109   /* commodity */
110   ip4_main_t * im4;
111   ip6_main_t * im6;
112   vlib_main_t * vlib_main;
113   vnet_main_t * vnet_main;
114 } lisp_cp_main_t;
115
116 /* lisp-gpe control plane */
117 lisp_cp_main_t lisp_control_main;
118
119 extern vlib_node_registration_t lisp_cp_input_node;
120 extern vlib_node_registration_t lisp_cp_lookup_node;
121
122 clib_error_t *
123 lisp_cp_init ();
124
125 typedef struct
126 {
127   u8 is_add;
128   union
129   {
130     u8 * name;
131     u32 index;
132   };
133   locator_t * locators;
134   u8 local;
135 } vnet_lisp_add_del_locator_set_args_t;
136
137 int
138 vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
139                                u32 * ls_index);
140 int
141 vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
142                            locator_set_t * ls, u32 * ls_index);
143
144 typedef struct
145 {
146   u8 is_add;
147   gid_address_t deid;
148   u32 locator_set_index;
149
150   u32 ttl;
151   u8 action;
152   u8 authoritative;
153
154   u8 local;
155 } vnet_lisp_add_del_mapping_args_t;
156
157 int
158 vnet_lisp_add_del_mapping (vnet_lisp_add_del_mapping_args_t *a,
159                            u32 * map_index);
160 int
161 vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
162                                  u32 * map_index_result);
163
164 typedef struct
165 {
166   u8 is_add;
167   ip_address_t address;
168 } vnet_lisp_add_del_map_resolver_args_t;
169
170 int
171 vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
172
173 always_inline lisp_cp_main_t *
174 vnet_lisp_cp_get_main() {
175   return &lisp_control_main;
176 }
177
178 clib_error_t * vnet_lisp_enable_disable (u8 is_enabled);
179 u8 vnet_lisp_enable_disable_status (void);
180
181 int
182 vnet_lisp_add_del_remote_mapping (gid_address_t * deid, gid_address_t * seid,
183                                   ip_address_t * dlocs, u8 action, u8 is_add);
184
185 int
186 vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add);
187
188 #endif /* VNET_CONTROL_H_ */