blob: fad90e6ec68d4526831cd781a4667411618b4f03 [file] [log] [blame]
Florin Corase127a7e2016-02-18 22:20:01 +01001/*
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
23typedef struct
24{
25 gid_address_t src;
26 gid_address_t dst;
27 u32 src_mapping_index;
28} pending_map_request_t;
29
30typedef 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
38typedef enum
39{
40 IP4_MISS_PACKET,
41 IP6_MISS_PACKET
42} miss_packet_type_t;
43
44typedef struct
45{
46 /* headers */
47 u8 data[100];
48 u32 length;
49 miss_packet_type_t type;
50} miss_packet_t;
51
52typedef struct
53{
Filip Tehlar46d4e362016-05-09 09:39:26 +020054 /* LISP feature status */
55 u8 is_enabled;
56
Florin Corase127a7e2016-02-18 22:20:01 +010057 /* 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
Florin Coras577c3552016-04-21 00:45:40 +020097 /* 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
Florin Corase127a7e2016-02-18 22:20:01 +0100103 /* commodity */
104 ip4_main_t * im4;
105 ip6_main_t * im6;
106 vlib_main_t * vlib_main;
107 vnet_main_t * vnet_main;
108} lisp_cp_main_t;
109
110/* lisp-gpe control plane */
111lisp_cp_main_t lisp_control_main;
112
113extern vlib_node_registration_t lisp_cp_input_node;
114extern vlib_node_registration_t lisp_cp_lookup_node;
115
116clib_error_t *
117lisp_cp_init ();
118
119typedef struct
120{
121 u8 is_add;
122 union
123 {
124 u8 * name;
125 u32 index;
126 };
127 locator_t * locators;
128 u8 local;
129} vnet_lisp_add_del_locator_set_args_t;
130
131int
132vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
133 u32 * ls_index);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +0200134int
135vnet_lisp_add_del_locator_set_name (vnet_lisp_add_del_locator_set_args_t * a,
136 u32 * ls_index);
137int
138vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
139 u32 * ls_index);
140
Florin Corase127a7e2016-02-18 22:20:01 +0100141typedef struct
142{
143 u8 is_add;
144 gid_address_t deid;
145 u32 locator_set_index;
146
147 u32 ttl;
148 u8 action;
149 u8 authoritative;
150
151 u8 local;
152} vnet_lisp_add_del_mapping_args_t;
153
154int
155vnet_lisp_add_del_mapping (vnet_lisp_add_del_mapping_args_t *a,
156 u32 * map_index);
Florin Coras577c3552016-04-21 00:45:40 +0200157int
158vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
159 u32 * map_index_result);
Florin Corase127a7e2016-02-18 22:20:01 +0100160
161typedef struct
162{
163 u8 is_add;
164 ip_address_t address;
165} vnet_lisp_add_del_map_resolver_args_t;
166
167int
168vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a);
169
170always_inline lisp_cp_main_t *
171vnet_lisp_cp_get_main() {
172 return &lisp_control_main;
173}
174
Filip Tehlar46d4e362016-05-09 09:39:26 +0200175clib_error_t * vnet_lisp_enable_disable (u8 is_enabled);
176u8 vnet_lisp_enable_disable_status (void);
177
Florin Corase127a7e2016-02-18 22:20:01 +0100178#endif /* VNET_CONTROL_H_ */