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