Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 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> |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 22 | #include <vppinfra/timing_wheel.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 23 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 24 | #define NUMBER_OF_RETRIES 1 |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 25 | #define PENDING_MREQ_EXPIRATION_TIME 3.0 /* seconds */ |
Florin Coras | f4691cd | 2016-08-15 19:16:32 +0200 | [diff] [blame] | 26 | #define PENDING_MREQ_QUEUE_LEN 5 |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 27 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 28 | #define PENDING_MREG_EXPIRATION_TIME 3.0 /* seconds */ |
| 29 | #define RLOC_PROBING_INTERVAL 60.0 |
| 30 | |
| 31 | /* when map-registration is enabled "quick registration" takes place first. |
| 32 | In this mode ETR sends map-register messages at an increased frequency |
| 33 | until specified message count is reached */ |
| 34 | #define QUICK_MAP_REGISTER_MSG_COUNT 3 |
| 35 | #define QUICK_MAP_REGISTER_INTERVAL 3.0 |
| 36 | |
| 37 | /* normal map-register period */ |
| 38 | #define MAP_REGISTER_INTERVAL 60.0 |
| 39 | |
Florin Coras | cdc7427 | 2017-06-21 16:27:01 -0700 | [diff] [blame] | 40 | /* 24 hours */ |
| 41 | #define MAP_REGISTER_DEFAULT_TTL 86400 |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 42 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 43 | typedef struct |
| 44 | { |
| 45 | gid_address_t src; |
| 46 | gid_address_t dst; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 47 | u32 retries_num; |
| 48 | f64 time_to_expire; |
| 49 | u8 is_smr_invoked; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 50 | u64 *nonces; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 51 | u8 to_be_removed; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 52 | } pending_map_request_t; |
| 53 | |
| 54 | typedef struct |
| 55 | { |
Filip Tehlar | 2fdaece | 2016-09-28 14:27:59 +0200 | [diff] [blame] | 56 | gid_address_t leid; |
| 57 | gid_address_t reid; |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 58 | u8 is_src_dst; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 59 | locator_pair_t *locator_pairs; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 60 | } fwd_entry_t; |
| 61 | |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 62 | typedef struct |
| 63 | { |
| 64 | gid_address_t leid; |
| 65 | gid_address_t reid; |
| 66 | } lisp_adjacency_t; |
| 67 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 68 | typedef enum |
| 69 | { |
| 70 | IP4_MISS_PACKET, |
| 71 | IP6_MISS_PACKET |
| 72 | } miss_packet_type_t; |
| 73 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 74 | /* map-server/map-resolver structure */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 75 | typedef struct |
| 76 | { |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 77 | u8 is_down; |
| 78 | f64 last_update; |
| 79 | ip_address_t address; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 80 | char *key; |
| 81 | } lisp_msmr_t; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 82 | |
| 83 | typedef struct |
| 84 | { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 85 | /* headers */ |
| 86 | u8 data[100]; |
| 87 | u32 length; |
| 88 | miss_packet_type_t type; |
| 89 | } miss_packet_t; |
| 90 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 91 | typedef struct |
| 92 | { |
| 93 | u8 mac[6]; |
| 94 | u32 ip4; |
| 95 | } lisp_api_l2_arp_entry_t; |
| 96 | |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 97 | typedef enum |
| 98 | { |
| 99 | MR_MODE_DST_ONLY = 0, |
| 100 | MR_MODE_SRC_DST, |
| 101 | _MR_MODE_MAX |
| 102 | } map_request_mode_t; |
| 103 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 104 | #define foreach_lisp_flag_bit \ |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 105 | _(USE_PETR, "Use Proxy-ETR") \ |
| 106 | _(STATS_ENABLED, "Statistics enabled") |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 107 | |
| 108 | typedef enum lisp_flag_bits |
| 109 | { |
| 110 | #define _(sym, str) LISP_FLAG_BIT_##sym, |
| 111 | foreach_lisp_flag_bit |
| 112 | #undef _ |
| 113 | } lisp_flag_bits_e; |
| 114 | |
| 115 | typedef enum lisp_flags |
| 116 | { |
| 117 | #define _(sym, str) LISP_FLAG_##sym = 1 << LISP_FLAG_BIT_##sym, |
| 118 | foreach_lisp_flag_bit |
| 119 | #undef _ |
| 120 | } lisp_flags_e; |
| 121 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 122 | typedef struct |
| 123 | { |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 124 | ip_address_t addr; |
| 125 | u32 bd; |
| 126 | } lisp_l2_arp_key_t; |
| 127 | |
| 128 | typedef struct |
| 129 | { |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 130 | u64 nonce; |
| 131 | u8 is_rloc_probe; |
| 132 | mapping_t *mappings; |
| 133 | volatile u8 is_free; |
| 134 | } map_records_arg_t; |
| 135 | |
| 136 | typedef struct |
| 137 | { |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 138 | u32 flags; |
| 139 | |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 140 | /* LISP feature status */ |
| 141 | u8 is_enabled; |
| 142 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 143 | /* eid table */ |
| 144 | gid_dictionary_t mapping_index_by_gid; |
| 145 | |
| 146 | /* pool of mappings */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 147 | mapping_t *mapping_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 148 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 149 | /* hash map of secret keys by mapping index */ |
| 150 | u8 *key_by_mapping_index; |
| 151 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 152 | /* pool of locators */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 153 | locator_t *locator_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 154 | |
| 155 | /* pool of locator-sets */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 156 | locator_set_t *locator_set_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 157 | |
| 158 | /* vector of locator-set vectors composed of and indexed by locator index */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 159 | u32 **locator_to_locator_sets; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 160 | |
| 161 | /* hash map of locators by name */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 162 | uword *locator_set_index_by_name; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 163 | |
| 164 | /* vector of eid index vectors supported and indexed by locator-set index */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 165 | u32 **locator_set_to_eids; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 166 | |
| 167 | /* vectors of indexes for local locator-sets and mappings */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 168 | u32 *local_mappings_indexes; |
| 169 | u32 *local_locator_set_indexes; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 170 | |
| 171 | /* hash map of forwarding entries by mapping index */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 172 | u32 *fwd_entry_by_mapping_index; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 173 | |
| 174 | /* forwarding entries pool */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 175 | fwd_entry_t *fwd_entry_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 176 | |
| 177 | /* hash map keyed by nonce of pending map-requests */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 178 | uword *pending_map_requests_by_nonce; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 179 | |
| 180 | /* pool of pending map requests */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 181 | pending_map_request_t *pending_map_requests_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 182 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 183 | /* hash map of sent map register messages */ |
| 184 | uword *map_register_messages_by_nonce; |
| 185 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 186 | /* vector of map-resolvers */ |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 187 | lisp_msmr_t *map_resolvers; |
| 188 | |
| 189 | /* vector of map-servers */ |
| 190 | lisp_msmr_t *map_servers; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 191 | |
| 192 | /* map resolver address currently being used for sending requests. |
| 193 | * This has to be an actual address and not an index to map_resolvers vector |
| 194 | * since the vector may be modified during request resend/retry procedure |
| 195 | * and break things :-) */ |
| 196 | ip_address_t active_map_resolver; |
| 197 | |
| 198 | u8 do_map_resolver_election; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 199 | |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 200 | /* map-request locator set index */ |
| 201 | u32 mreq_itr_rlocs; |
| 202 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 203 | /* vni to vrf hash tables */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 204 | uword *table_id_by_vni; |
| 205 | uword *vni_by_table_id; |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 206 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 207 | /* vni to bd-index hash tables */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 208 | uword *bd_id_by_vni; |
| 209 | uword *vni_by_bd_id; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 210 | |
| 211 | /* track l2 and l3 interfaces that have been created for vni */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 212 | uword *l2_dp_intf_by_vni; |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 213 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 214 | /* Proxy ITR map index */ |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 215 | u32 pitr_map_index; |
| 216 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 217 | /** Proxy ETR map index */ |
| 218 | u32 petr_map_index; |
| 219 | |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 220 | /* LISP PITR mode */ |
| 221 | u8 lisp_pitr; |
| 222 | |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 223 | /* mapping index for NSH */ |
| 224 | u32 nsh_map_index; |
| 225 | |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 226 | /* map request mode */ |
| 227 | u8 map_request_mode; |
| 228 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 229 | /* enable/disable map registering */ |
| 230 | u8 map_registering; |
| 231 | |
| 232 | /* enable/disable rloc-probing */ |
| 233 | u8 rloc_probing; |
| 234 | |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 235 | /* timing wheel for mappping timeouts */ |
| 236 | timing_wheel_t wheel; |
| 237 | |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 238 | /** Per thread pool of records shared with thread0 */ |
| 239 | map_records_arg_t **map_records_args_pool; |
| 240 | |
Filip Tehlar | 1e553a0 | 2017-08-02 12:45:07 +0200 | [diff] [blame^] | 241 | /* TTL used for all mappings when registering */ |
| 242 | u32 map_register_ttl; |
| 243 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 244 | /* commodity */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 245 | ip4_main_t *im4; |
| 246 | ip6_main_t *im6; |
| 247 | vlib_main_t *vlib_main; |
| 248 | vnet_main_t *vnet_main; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 249 | } lisp_cp_main_t; |
| 250 | |
| 251 | /* lisp-gpe control plane */ |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 252 | extern lisp_cp_main_t lisp_control_main; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 253 | |
| 254 | extern vlib_node_registration_t lisp_cp_input_node; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 255 | extern vlib_node_registration_t lisp_cp_lookup_ip4_node; |
| 256 | extern vlib_node_registration_t lisp_cp_lookup_ip6_node; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 257 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 258 | clib_error_t *lisp_cp_init (); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 259 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 260 | always_inline lisp_cp_main_t * |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 261 | vnet_lisp_cp_get_main () |
| 262 | { |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 263 | return &lisp_control_main; |
| 264 | } |
| 265 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 266 | void |
| 267 | get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b, |
| 268 | gid_address_t * src, gid_address_t * dst, |
| 269 | u16 type); |
| 270 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 271 | typedef struct |
| 272 | { |
| 273 | u8 is_add; |
| 274 | union |
| 275 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 276 | u8 *name; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 277 | u32 index; |
| 278 | }; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 279 | locator_t *locators; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 280 | u8 local; |
| 281 | } vnet_lisp_add_del_locator_set_args_t; |
| 282 | |
| 283 | int |
| 284 | vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a, |
| 285 | u32 * ls_index); |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 286 | int |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 287 | vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 288 | locator_set_t * ls, u32 * ls_index); |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 289 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 290 | typedef struct |
| 291 | { |
| 292 | u8 is_add; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 293 | gid_address_t eid; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 294 | u32 locator_set_index; |
| 295 | |
| 296 | u32 ttl; |
| 297 | u8 action; |
| 298 | u8 authoritative; |
| 299 | |
| 300 | u8 local; |
Filip Tehlar | 3cd9e73 | 2016-08-23 10:52:44 +0200 | [diff] [blame] | 301 | u8 is_static; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 302 | u8 *key; |
| 303 | u8 key_id; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 304 | } vnet_lisp_add_del_mapping_args_t; |
| 305 | |
| 306 | int |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 307 | vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a, |
| 308 | u32 * map_index); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 309 | int |
| 310 | vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 311 | u32 * map_index_result); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 312 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 313 | int |
| 314 | vnet_lisp_add_del_mapping (gid_address_t * deid, locator_t * dlocs, u8 action, |
Filip Tehlar | 3cd9e73 | 2016-08-23 10:52:44 +0200 | [diff] [blame] | 315 | u8 authoritative, u32 ttl, u8 is_add, u8 is_static, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 316 | u32 * res_map_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 317 | |
| 318 | typedef struct |
| 319 | { |
Filip Tehlar | 2fdaece | 2016-09-28 14:27:59 +0200 | [diff] [blame] | 320 | gid_address_t reid; |
| 321 | gid_address_t leid; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 322 | u8 is_add; |
| 323 | } vnet_lisp_add_del_adjacency_args_t; |
| 324 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 325 | int vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 326 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 327 | typedef struct |
| 328 | { |
| 329 | u8 is_add; |
| 330 | ip_address_t address; |
| 331 | } vnet_lisp_add_del_map_resolver_args_t; |
| 332 | |
| 333 | int |
| 334 | vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 335 | int vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 336 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 337 | clib_error_t *vnet_lisp_enable_disable (u8 is_enabled); |
| 338 | u8 vnet_lisp_enable_disable_status (void); |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 339 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 340 | int vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add); |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 341 | int vnet_lisp_use_petr (ip_address_t * ip, u8 is_add); |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 342 | |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 343 | typedef struct |
| 344 | { |
| 345 | u8 is_add; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 346 | u8 *locator_set_name; |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 347 | } vnet_lisp_add_del_mreq_itr_rloc_args_t; |
| 348 | |
| 349 | int |
| 350 | vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a); |
| 351 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 352 | int vnet_lisp_clear_all_remote_adjacencies (void); |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 353 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 354 | int vnet_lisp_eid_table_map (u32 vni, u32 vrf, u8 is_l2, u8 is_add); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 355 | int vnet_lisp_add_del_map_table_key (gid_address_t * eid, char *key, |
| 356 | u8 is_add); |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 357 | int vnet_lisp_set_map_request_mode (u8 mode); |
| 358 | u8 vnet_lisp_get_map_request_mode (void); |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 359 | lisp_adjacency_t *vnet_lisp_adjacencies_get_by_vni (u32 vni); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 360 | int vnet_lisp_rloc_probe_enable_disable (u8 is_enable); |
| 361 | int vnet_lisp_map_register_enable_disable (u8 is_enable); |
| 362 | u8 vnet_lisp_map_register_state_get (void); |
| 363 | u8 vnet_lisp_rloc_probe_state_get (void); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 364 | int vnet_lisp_add_del_l2_arp_entry (gid_address_t * key, u8 * mac, u8 is_add); |
| 365 | u32 *vnet_lisp_l2_arp_bds_get (void); |
| 366 | lisp_api_l2_arp_entry_t *vnet_lisp_l2_arp_entries_get_by_bd (u32 bd); |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 367 | int vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add); |
Filip Tehlar | 1e553a0 | 2017-08-02 12:45:07 +0200 | [diff] [blame^] | 368 | int vnet_lisp_map_register_set_ttl (u32 ttl); |
| 369 | u32 vnet_lisp_map_register_get_ttl (void); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 370 | |
Filip Tehlar | 816f437 | 2017-04-26 16:09:06 +0200 | [diff] [blame] | 371 | map_records_arg_t *parse_map_reply (vlib_buffer_t * b); |
| 372 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 373 | always_inline mapping_t * |
| 374 | lisp_get_petr_mapping (lisp_cp_main_t * lcm) |
| 375 | { |
| 376 | return pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index); |
| 377 | } |
| 378 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 379 | #endif /* VNET_CONTROL_H_ */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 380 | |
| 381 | /* |
| 382 | * fd.io coding-style-patch-verification: ON |
| 383 | * |
| 384 | * Local Variables: |
| 385 | * eval: (c-set-style "gnu") |
| 386 | * End: |
| 387 | */ |