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 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 16 | #include <vlibmemory/api.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 17 | #include <vnet/lisp-cp/control.h> |
| 18 | #include <vnet/lisp-cp/packets.h> |
| 19 | #include <vnet/lisp-cp/lisp_msg_serdes.h> |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 20 | #include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h> |
| 21 | #include <vnet/lisp-gpe/lisp_gpe_tenant.h> |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 22 | #include <vnet/lisp-gpe/lisp_gpe_tunnel.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 23 | #include <vnet/fib/fib_entry.h> |
| 24 | #include <vnet/fib/fib_table.h> |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 25 | #include <vnet/ethernet/arp_packet.h> |
| 26 | #include <vnet/ethernet/packet.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 27 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 28 | #include <openssl/evp.h> |
| 29 | #include <openssl/hmac.h> |
| 30 | |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 31 | #define MAX_VALUE_U24 0xffffff |
| 32 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 33 | /* mapping timer control constants (in seconds) */ |
| 34 | #define TIME_UNTIL_REFETCH_OR_DELETE 20 |
| 35 | #define MAPPING_TIMEOUT (((m->ttl) * 60) - TIME_UNTIL_REFETCH_OR_DELETE) |
| 36 | |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 37 | lisp_cp_main_t lisp_control_main; |
| 38 | |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 39 | u8 *format_lisp_cp_input_trace (u8 * s, va_list * args); |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 40 | static void *send_map_request_thread_fn (void *arg); |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 41 | |
| 42 | typedef enum |
| 43 | { |
| 44 | LISP_CP_INPUT_NEXT_DROP, |
| 45 | LISP_CP_INPUT_N_NEXT, |
| 46 | } lisp_cp_input_next_t; |
| 47 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 48 | typedef struct |
| 49 | { |
| 50 | u8 is_resend; |
| 51 | gid_address_t seid; |
| 52 | gid_address_t deid; |
| 53 | u8 smr_invoked; |
| 54 | } map_request_args_t; |
| 55 | |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 56 | u8 |
| 57 | vnet_lisp_get_map_request_mode (void) |
| 58 | { |
| 59 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 60 | return lcm->map_request_mode; |
| 61 | } |
| 62 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 63 | static u16 |
| 64 | auth_data_len_by_key_id (lisp_key_type_t key_id) |
| 65 | { |
| 66 | switch (key_id) |
| 67 | { |
| 68 | case HMAC_SHA_1_96: |
| 69 | return SHA1_AUTH_DATA_LEN; |
| 70 | case HMAC_SHA_256_128: |
| 71 | return SHA256_AUTH_DATA_LEN; |
| 72 | default: |
| 73 | clib_warning ("unsupported key type: %d!", key_id); |
| 74 | return (u16) ~ 0; |
| 75 | } |
| 76 | return (u16) ~ 0; |
| 77 | } |
| 78 | |
| 79 | static const EVP_MD * |
| 80 | get_encrypt_fcn (lisp_key_type_t key_id) |
| 81 | { |
| 82 | switch (key_id) |
| 83 | { |
| 84 | case HMAC_SHA_1_96: |
| 85 | return EVP_sha1 (); |
| 86 | case HMAC_SHA_256_128: |
| 87 | return EVP_sha256 (); |
| 88 | default: |
| 89 | clib_warning ("unsupported encryption key type: %d!", key_id); |
| 90 | break; |
| 91 | } |
| 92 | return 0; |
| 93 | } |
| 94 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 95 | static int |
| 96 | queue_map_request (gid_address_t * seid, gid_address_t * deid, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 97 | u8 smr_invoked, u8 is_resend); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 98 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 99 | ip_interface_address_t * |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 100 | ip_interface_get_first_interface_address (ip_lookup_main_t * lm, |
| 101 | u32 sw_if_index, u8 loop) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 102 | { |
| 103 | vnet_main_t *vnm = vnet_get_main (); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 104 | vnet_sw_interface_t *swif = vnet_get_sw_interface (vnm, sw_if_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 105 | if (loop && swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED) |
| 106 | sw_if_index = swif->unnumbered_sw_if_index; |
| 107 | u32 ia = |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 108 | (vec_len ((lm)->if_address_pool_index_by_sw_if_index) > (sw_if_index)) ? |
| 109 | vec_elt ((lm)->if_address_pool_index_by_sw_if_index, (sw_if_index)) : |
| 110 | (u32) ~ 0; |
| 111 | return pool_elt_at_index ((lm)->if_address_pool, ia); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 112 | } |
Filip Tehlar | 215104e | 2016-05-10 16:58:29 +0200 | [diff] [blame] | 113 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 114 | void * |
| 115 | ip_interface_get_first_address (ip_lookup_main_t * lm, u32 sw_if_index, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 116 | u8 version) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 117 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 118 | ip_interface_address_t *ia; |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 119 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 120 | ia = ip_interface_get_first_interface_address (lm, sw_if_index, 1); |
| 121 | if (!ia) |
| 122 | return 0; |
| 123 | return ip_interface_address_get_address (lm, ia); |
| 124 | } |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 125 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 126 | int |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 127 | ip_interface_get_first_ip_address (lisp_cp_main_t * lcm, u32 sw_if_index, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 128 | u8 version, ip_address_t * result) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 129 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 130 | ip_lookup_main_t *lm; |
| 131 | void *addr; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 132 | |
| 133 | lm = (version == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main; |
| 134 | addr = ip_interface_get_first_address (lm, sw_if_index, version); |
| 135 | if (!addr) |
| 136 | return 0; |
| 137 | |
| 138 | ip_address_set (result, addr, version); |
| 139 | return 1; |
| 140 | } |
| 141 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 142 | /** |
| 143 | * convert from a LISP address to a FIB prefix |
| 144 | */ |
| 145 | void |
| 146 | ip_address_to_fib_prefix (const ip_address_t * addr, fib_prefix_t * prefix) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 147 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 148 | if (addr->version == IP4) |
| 149 | { |
| 150 | prefix->fp_len = 32; |
| 151 | prefix->fp_proto = FIB_PROTOCOL_IP4; |
| 152 | memset (&prefix->fp_addr.pad, 0, sizeof (prefix->fp_addr.pad)); |
| 153 | memcpy (&prefix->fp_addr.ip4, &addr->ip, sizeof (prefix->fp_addr.ip4)); |
| 154 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 155 | else |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 156 | { |
| 157 | prefix->fp_len = 128; |
| 158 | prefix->fp_proto = FIB_PROTOCOL_IP6; |
| 159 | memcpy (&prefix->fp_addr.ip6, &addr->ip, sizeof (prefix->fp_addr.ip6)); |
| 160 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 161 | } |
| 162 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 163 | /** |
| 164 | * convert from a LISP to a FIB prefix |
| 165 | */ |
| 166 | void |
| 167 | ip_prefix_to_fib_prefix (const ip_prefix_t * ip_prefix, |
| 168 | fib_prefix_t * fib_prefix) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 169 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 170 | ip_address_to_fib_prefix (&ip_prefix->addr, fib_prefix); |
| 171 | fib_prefix->fp_len = ip_prefix->len; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Find the sw_if_index of the interface that would be used to egress towards |
| 176 | * dst. |
| 177 | */ |
| 178 | u32 |
| 179 | ip_fib_get_egress_iface_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst) |
| 180 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 181 | fib_node_index_t fei; |
| 182 | fib_prefix_t prefix; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 183 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 184 | ip_address_to_fib_prefix (dst, &prefix); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 185 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 186 | fei = fib_table_lookup (0, &prefix); |
| 187 | |
| 188 | return (fib_entry_get_resolving_interface (fei)); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Find first IP of the interface that would be used to egress towards dst. |
| 193 | * Returns 1 if the address is found 0 otherwise. |
| 194 | */ |
| 195 | int |
| 196 | ip_fib_get_first_egress_ip_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 197 | ip_address_t * result) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 198 | { |
| 199 | u32 si; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 200 | ip_lookup_main_t *lm; |
| 201 | void *addr = 0; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 202 | u8 ipver; |
| 203 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 204 | ASSERT (result != 0); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 205 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 206 | ipver = ip_addr_version (dst); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 207 | |
| 208 | lm = (ipver == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 209 | si = ip_fib_get_egress_iface_for_dst (lcm, dst); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 210 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 211 | if ((u32) ~ 0 == si) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 212 | return 0; |
| 213 | |
| 214 | /* find the first ip address */ |
| 215 | addr = ip_interface_get_first_address (lm, si, ipver); |
| 216 | if (0 == addr) |
| 217 | return 0; |
| 218 | |
| 219 | ip_address_set (result, addr, ipver); |
| 220 | return 1; |
| 221 | } |
| 222 | |
| 223 | static int |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 224 | dp_add_del_iface (lisp_cp_main_t * lcm, u32 vni, u8 is_l2, u8 is_add) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 225 | { |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 226 | uword *dp_table; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 227 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 228 | if (!is_l2) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 229 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 230 | dp_table = hash_get (lcm->table_id_by_vni, vni); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 231 | |
| 232 | if (!dp_table) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 233 | { |
| 234 | clib_warning ("vni %d not associated to a vrf!", vni); |
| 235 | return VNET_API_ERROR_INVALID_VALUE; |
| 236 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 237 | } |
| 238 | else |
| 239 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 240 | dp_table = hash_get (lcm->bd_id_by_vni, vni); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 241 | if (!dp_table) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 242 | { |
| 243 | clib_warning ("vni %d not associated to a bridge domain!", vni); |
| 244 | return VNET_API_ERROR_INVALID_VALUE; |
| 245 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 246 | } |
| 247 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 248 | /* enable/disable data-plane interface */ |
| 249 | if (is_add) |
| 250 | { |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 251 | if (is_l2) |
| 252 | lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table[0]); |
| 253 | else |
| 254 | lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table[0]); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 255 | } |
| 256 | else |
| 257 | { |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 258 | if (is_l2) |
| 259 | lisp_gpe_tenant_l2_iface_unlock (vni); |
| 260 | else |
| 261 | lisp_gpe_tenant_l3_iface_unlock (vni); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | static void |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 268 | dp_del_fwd_entry (lisp_cp_main_t * lcm, u32 dst_map_index) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 269 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 270 | vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a; |
| 271 | fwd_entry_t *fe = 0; |
| 272 | uword *feip = 0; |
| 273 | memset (a, 0, sizeof (*a)); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 274 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 275 | feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 276 | if (!feip) |
| 277 | return; |
| 278 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 279 | fe = pool_elt_at_index (lcm->fwd_entry_pool, feip[0]); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 280 | |
| 281 | /* delete dp fwd entry */ |
| 282 | u32 sw_if_index; |
| 283 | a->is_add = 0; |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 284 | a->locator_pairs = fe->locator_pairs; |
Filip Tehlar | 2fdaece | 2016-09-28 14:27:59 +0200 | [diff] [blame] | 285 | a->vni = gid_address_vni (&fe->reid); |
| 286 | gid_address_copy (&a->rmt_eid, &fe->reid); |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 287 | if (fe->is_src_dst) |
| 288 | gid_address_copy (&a->lcl_eid, &fe->leid); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 289 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 290 | vnet_lisp_gpe_del_fwd_counters (a, feip[0]); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 291 | vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index); |
| 292 | |
| 293 | /* delete entry in fwd table */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 294 | hash_unset (lcm->fwd_entry_by_mapping_index, dst_map_index); |
| 295 | vec_free (fe->locator_pairs); |
| 296 | pool_put (lcm->fwd_entry_pool, fe); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | /** |
| 300 | * Finds first remote locator with best (lowest) priority that has a local |
| 301 | * peer locator with an underlying route to it. |
| 302 | * |
| 303 | */ |
| 304 | static u32 |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 305 | get_locator_pairs (lisp_cp_main_t * lcm, mapping_t * lcl_map, |
| 306 | mapping_t * rmt_map, locator_pair_t ** locator_pairs) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 307 | { |
Florin Coras | 3590ac5 | 2016-08-08 16:04:26 +0200 | [diff] [blame] | 308 | u32 i, limitp = 0, li, found = 0, esi; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 309 | locator_set_t *rmt_ls, *lcl_ls; |
| 310 | ip_address_t _lcl_addr, *lcl_addr = &_lcl_addr; |
| 311 | locator_t *lp, *rmt = 0; |
| 312 | uword *checked = 0; |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 313 | locator_pair_t pair; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 314 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 315 | rmt_ls = |
| 316 | pool_elt_at_index (lcm->locator_set_pool, rmt_map->locator_set_index); |
| 317 | lcl_ls = |
| 318 | pool_elt_at_index (lcm->locator_set_pool, lcl_map->locator_set_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 319 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 320 | if (!rmt_ls || vec_len (rmt_ls->locator_indices) == 0) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 321 | return 0; |
| 322 | |
Florin Coras | 3590ac5 | 2016-08-08 16:04:26 +0200 | [diff] [blame] | 323 | while (1) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 324 | { |
| 325 | rmt = 0; |
| 326 | |
| 327 | /* find unvisited remote locator with best priority */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 328 | for (i = 0; i < vec_len (rmt_ls->locator_indices); i++) |
| 329 | { |
| 330 | if (0 != hash_get (checked, i)) |
| 331 | continue; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 332 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 333 | li = vec_elt (rmt_ls->locator_indices, i); |
| 334 | lp = pool_elt_at_index (lcm->locator_pool, li); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 335 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 336 | /* we don't support non-IP locators for now */ |
| 337 | if (gid_address_type (&lp->address) != GID_ADDR_IP_PREFIX) |
| 338 | continue; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 339 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 340 | if ((found && lp->priority == limitp) |
| 341 | || (!found && lp->priority >= limitp)) |
| 342 | { |
| 343 | rmt = lp; |
Florin Coras | 3590ac5 | 2016-08-08 16:04:26 +0200 | [diff] [blame] | 344 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 345 | /* don't search for locators with lower priority and don't |
| 346 | * check this locator again*/ |
| 347 | limitp = lp->priority; |
| 348 | hash_set (checked, i, 1); |
| 349 | break; |
| 350 | } |
| 351 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 352 | /* check if a local locator with a route to remote locator exists */ |
| 353 | if (rmt != 0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 354 | { |
| 355 | /* find egress sw_if_index for rmt locator */ |
| 356 | esi = |
| 357 | ip_fib_get_egress_iface_for_dst (lcm, |
| 358 | &gid_address_ip (&rmt->address)); |
| 359 | if ((u32) ~ 0 == esi) |
| 360 | continue; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 361 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 362 | for (i = 0; i < vec_len (lcl_ls->locator_indices); i++) |
| 363 | { |
| 364 | li = vec_elt (lcl_ls->locator_indices, i); |
| 365 | locator_t *sl = pool_elt_at_index (lcm->locator_pool, li); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 366 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 367 | /* found local locator with the needed sw_if_index */ |
| 368 | if (sl->sw_if_index == esi) |
| 369 | { |
| 370 | /* and it has an address */ |
| 371 | if (0 == ip_interface_get_first_ip_address (lcm, |
| 372 | sl->sw_if_index, |
| 373 | gid_address_ip_version |
| 374 | (&rmt->address), |
| 375 | lcl_addr)) |
| 376 | continue; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 377 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 378 | memset (&pair, 0, sizeof (pair)); |
| 379 | ip_address_copy (&pair.rmt_loc, |
| 380 | &gid_address_ip (&rmt->address)); |
| 381 | ip_address_copy (&pair.lcl_loc, lcl_addr); |
| 382 | pair.weight = rmt->weight; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 383 | pair.priority = rmt->priority; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 384 | vec_add1 (locator_pairs[0], pair); |
| 385 | found = 1; |
| 386 | } |
| 387 | } |
| 388 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 389 | else |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 390 | break; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 391 | } |
Florin Coras | 3590ac5 | 2016-08-08 16:04:26 +0200 | [diff] [blame] | 392 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 393 | hash_free (checked); |
Florin Coras | 3590ac5 | 2016-08-08 16:04:26 +0200 | [diff] [blame] | 394 | return found; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | static void |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 398 | gid_address_sd_to_flat (gid_address_t * dst, gid_address_t * src, |
| 399 | fid_address_t * fid) |
| 400 | { |
| 401 | ASSERT (GID_ADDR_SRC_DST == gid_address_type (src)); |
| 402 | |
| 403 | dst[0] = src[0]; |
| 404 | |
| 405 | switch (fid_addr_type (fid)) |
| 406 | { |
| 407 | case FID_ADDR_IP_PREF: |
| 408 | gid_address_type (dst) = GID_ADDR_IP_PREFIX; |
| 409 | gid_address_ippref (dst) = fid_addr_ippref (fid); |
| 410 | break; |
| 411 | case FID_ADDR_MAC: |
| 412 | gid_address_type (dst) = GID_ADDR_MAC; |
| 413 | mac_copy (gid_address_mac (dst), fid_addr_mac (fid)); |
| 414 | break; |
| 415 | default: |
| 416 | clib_warning ("Unsupported fid type %d!", fid_addr_type (fid)); |
| 417 | break; |
| 418 | } |
| 419 | } |
| 420 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 421 | u8 |
| 422 | vnet_lisp_map_register_state_get (void) |
| 423 | { |
| 424 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 425 | return lcm->map_registering; |
| 426 | } |
| 427 | |
| 428 | u8 |
| 429 | vnet_lisp_rloc_probe_state_get (void) |
| 430 | { |
| 431 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 432 | return lcm->rloc_probing; |
| 433 | } |
| 434 | |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 435 | static void |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 436 | dp_add_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 437 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 438 | vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a; |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 439 | gid_address_t *rmt_eid, *lcl_eid; |
| 440 | mapping_t *lcl_map, *rmt_map; |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 441 | u32 sw_if_index, **rmts, rmts_idx; |
| 442 | uword *feip = 0, *dpid, *rmts_stored_idxp = 0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 443 | fwd_entry_t *fe; |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 444 | u8 type, is_src_dst = 0; |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 445 | int rv; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 446 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 447 | memset (a, 0, sizeof (*a)); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 448 | |
| 449 | /* remove entry if it already exists */ |
| 450 | feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index); |
| 451 | if (feip) |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 452 | dp_del_fwd_entry (lcm, dst_map_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 453 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 454 | /* |
| 455 | * Determine local mapping and eid |
| 456 | */ |
Filip Tehlar | f3e3fd3 | 2016-09-30 12:47:59 +0200 | [diff] [blame] | 457 | if (lcm->lisp_pitr) |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 458 | lcl_map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index); |
Filip Tehlar | f3e3fd3 | 2016-09-30 12:47:59 +0200 | [diff] [blame] | 459 | else |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 460 | lcl_map = pool_elt_at_index (lcm->mapping_pool, src_map_index); |
| 461 | lcl_eid = &lcl_map->eid; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 462 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 463 | /* |
| 464 | * Determine remote mapping and eid |
| 465 | */ |
| 466 | rmt_map = pool_elt_at_index (lcm->mapping_pool, dst_map_index); |
| 467 | rmt_eid = &rmt_map->eid; |
| 468 | |
| 469 | /* |
| 470 | * Build and insert data plane forwarding entry |
| 471 | */ |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 472 | a->is_add = 1; |
| 473 | |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 474 | if (MR_MODE_SRC_DST == lcm->map_request_mode) |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 475 | { |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 476 | if (GID_ADDR_SRC_DST == gid_address_type (rmt_eid)) |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 477 | { |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 478 | gid_address_sd_to_flat (&a->rmt_eid, rmt_eid, |
| 479 | &gid_address_sd_dst (rmt_eid)); |
| 480 | gid_address_sd_to_flat (&a->lcl_eid, rmt_eid, |
| 481 | &gid_address_sd_src (rmt_eid)); |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 482 | } |
| 483 | else |
| 484 | { |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 485 | gid_address_copy (&a->rmt_eid, rmt_eid); |
| 486 | gid_address_copy (&a->lcl_eid, lcl_eid); |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 487 | } |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 488 | is_src_dst = 1; |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 489 | } |
| 490 | else |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 491 | gid_address_copy (&a->rmt_eid, rmt_eid); |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 492 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 493 | a->vni = gid_address_vni (&a->rmt_eid); |
Filip Tehlar | ed6b52b | 2017-03-22 09:02:33 +0100 | [diff] [blame] | 494 | a->is_src_dst = is_src_dst; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 495 | |
| 496 | /* get vrf or bd_index associated to vni */ |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 497 | type = gid_address_type (&a->rmt_eid); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 498 | if (GID_ADDR_IP_PREFIX == type) |
| 499 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 500 | dpid = hash_get (lcm->table_id_by_vni, a->vni); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 501 | if (!dpid) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 502 | { |
| 503 | clib_warning ("vni %d not associated to a vrf!", a->vni); |
| 504 | return; |
| 505 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 506 | a->table_id = dpid[0]; |
| 507 | } |
| 508 | else if (GID_ADDR_MAC == type) |
| 509 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 510 | dpid = hash_get (lcm->bd_id_by_vni, a->vni); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 511 | if (!dpid) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 512 | { |
| 513 | clib_warning ("vni %d not associated to a bridge domain !", a->vni); |
| 514 | return; |
| 515 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 516 | a->bd_id = dpid[0]; |
| 517 | } |
| 518 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 519 | /* find best locator pair that 1) verifies LISP policy 2) are connected */ |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 520 | rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs); |
| 521 | |
| 522 | /* Either rmt mapping is negative or we can't find underlay path. |
| 523 | * Try again with petr if configured */ |
| 524 | if (rv == 0 && (lcm->flags & LISP_FLAG_USE_PETR)) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 525 | { |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 526 | rmt_map = lisp_get_petr_mapping (lcm); |
| 527 | rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 528 | } |
| 529 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 530 | /* negative entry */ |
| 531 | if (rv == 0) |
| 532 | { |
| 533 | a->is_negative = 1; |
| 534 | a->action = rmt_map->action; |
| 535 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 536 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 537 | rv = vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index); |
| 538 | if (rv) |
| 539 | { |
| 540 | if (a->locator_pairs) |
| 541 | vec_free (a->locator_pairs); |
| 542 | return; |
| 543 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 544 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 545 | /* add tunnel to fwd entry table */ |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 546 | pool_get (lcm->fwd_entry_pool, fe); |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 547 | vnet_lisp_gpe_add_fwd_counters (a, fe - lcm->fwd_entry_pool); |
| 548 | |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 549 | fe->locator_pairs = a->locator_pairs; |
Filip Tehlar | 2fdaece | 2016-09-28 14:27:59 +0200 | [diff] [blame] | 550 | gid_address_copy (&fe->reid, &a->rmt_eid); |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 551 | |
| 552 | if (is_src_dst) |
| 553 | gid_address_copy (&fe->leid, &a->lcl_eid); |
| 554 | else |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 555 | gid_address_copy (&fe->leid, lcl_eid); |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 556 | |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 557 | fe->is_src_dst = is_src_dst; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 558 | hash_set (lcm->fwd_entry_by_mapping_index, dst_map_index, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 559 | fe - lcm->fwd_entry_pool); |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 560 | |
| 561 | /* Add rmt mapping to the vector of adjacent mappings to lcl mapping */ |
| 562 | rmts_stored_idxp = |
| 563 | hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index); |
| 564 | if (!rmts_stored_idxp) |
| 565 | { |
| 566 | pool_get (lcm->lcl_to_rmt_adjacencies, rmts); |
| 567 | memset (rmts, 0, sizeof (*rmts)); |
| 568 | rmts_idx = rmts - lcm->lcl_to_rmt_adjacencies; |
| 569 | hash_set (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index, rmts_idx); |
| 570 | } |
| 571 | else |
| 572 | { |
| 573 | rmts_idx = (u32) (*rmts_stored_idxp); |
| 574 | rmts = pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idx); |
| 575 | } |
| 576 | vec_add1 (rmts[0], dst_map_index); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 577 | } |
| 578 | |
Filip Tehlar | ce1aae4 | 2017-01-04 10:42:25 +0100 | [diff] [blame] | 579 | typedef struct |
| 580 | { |
| 581 | u32 si; |
| 582 | u32 di; |
| 583 | } fwd_entry_mt_arg_t; |
| 584 | |
| 585 | static void * |
| 586 | dp_add_fwd_entry_thread_fn (void *arg) |
| 587 | { |
| 588 | fwd_entry_mt_arg_t *a = arg; |
| 589 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 590 | dp_add_fwd_entry (lcm, a->si, a->di); |
| 591 | return 0; |
| 592 | } |
| 593 | |
| 594 | static int |
| 595 | dp_add_fwd_entry_from_mt (u32 si, u32 di) |
| 596 | { |
| 597 | fwd_entry_mt_arg_t a; |
| 598 | |
| 599 | memset (&a, 0, sizeof (a)); |
| 600 | a.si = si; |
| 601 | a.di = di; |
| 602 | |
| 603 | vl_api_rpc_call_main_thread (dp_add_fwd_entry_thread_fn, |
| 604 | (u8 *) & a, sizeof (a)); |
| 605 | return 0; |
| 606 | } |
| 607 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 608 | /** |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 609 | * Returns vector of adjacencies. |
| 610 | * |
| 611 | * The caller must free the vector returned by this function. |
| 612 | * |
| 613 | * @param vni virtual network identifier |
| 614 | * @return vector of adjacencies |
| 615 | */ |
| 616 | lisp_adjacency_t * |
| 617 | vnet_lisp_adjacencies_get_by_vni (u32 vni) |
| 618 | { |
| 619 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 620 | fwd_entry_t *fwd; |
| 621 | lisp_adjacency_t *adjs = 0, adj; |
| 622 | |
| 623 | /* *INDENT-OFF* */ |
| 624 | pool_foreach(fwd, lcm->fwd_entry_pool, |
| 625 | ({ |
| 626 | if (gid_address_vni (&fwd->reid) != vni) |
| 627 | continue; |
| 628 | |
| 629 | gid_address_copy (&adj.reid, &fwd->reid); |
| 630 | gid_address_copy (&adj.leid, &fwd->leid); |
| 631 | vec_add1 (adjs, adj); |
| 632 | })); |
| 633 | /* *INDENT-ON* */ |
| 634 | |
| 635 | return adjs; |
| 636 | } |
| 637 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 638 | static lisp_msmr_t * |
| 639 | get_map_server (ip_address_t * a) |
| 640 | { |
| 641 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 642 | lisp_msmr_t *m; |
| 643 | |
| 644 | vec_foreach (m, lcm->map_servers) |
| 645 | { |
| 646 | if (!ip_address_cmp (&m->address, a)) |
| 647 | { |
| 648 | return m; |
| 649 | } |
| 650 | } |
| 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | static lisp_msmr_t * |
| 655 | get_map_resolver (ip_address_t * a) |
| 656 | { |
| 657 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 658 | lisp_msmr_t *m; |
| 659 | |
| 660 | vec_foreach (m, lcm->map_resolvers) |
| 661 | { |
| 662 | if (!ip_address_cmp (&m->address, a)) |
| 663 | { |
| 664 | return m; |
| 665 | } |
| 666 | } |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | int |
| 671 | vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add) |
| 672 | { |
| 673 | u32 i; |
| 674 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 675 | lisp_msmr_t _ms, *ms = &_ms; |
| 676 | |
| 677 | if (vnet_lisp_enable_disable_status () == 0) |
| 678 | { |
| 679 | clib_warning ("LISP is disabled!"); |
| 680 | return VNET_API_ERROR_LISP_DISABLED; |
| 681 | } |
| 682 | |
| 683 | if (is_add) |
| 684 | { |
| 685 | if (get_map_server (addr)) |
| 686 | { |
| 687 | clib_warning ("map-server %U already exists!", format_ip_address, |
| 688 | addr); |
| 689 | return -1; |
| 690 | } |
| 691 | |
| 692 | memset (ms, 0, sizeof (*ms)); |
| 693 | ip_address_copy (&ms->address, addr); |
| 694 | vec_add1 (lcm->map_servers, ms[0]); |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 695 | |
| 696 | if (vec_len (lcm->map_servers) == 1) |
| 697 | lcm->do_map_server_election = 1; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 698 | } |
| 699 | else |
| 700 | { |
| 701 | for (i = 0; i < vec_len (lcm->map_servers); i++) |
| 702 | { |
| 703 | ms = vec_elt_at_index (lcm->map_servers, i); |
| 704 | if (!ip_address_cmp (&ms->address, addr)) |
| 705 | { |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 706 | if (!ip_address_cmp (&ms->address, &lcm->active_map_server)) |
| 707 | lcm->do_map_server_election = 1; |
| 708 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 709 | vec_del1 (lcm->map_servers, i); |
| 710 | break; |
| 711 | } |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | return 0; |
| 716 | } |
| 717 | |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 718 | /** |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 719 | * Add/remove mapping to/from map-cache. Overwriting not allowed. |
| 720 | */ |
| 721 | int |
| 722 | vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 723 | u32 * map_index_result) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 724 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 725 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 726 | u32 mi, *map_indexp, map_index, i; |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 727 | u32 **rmts = 0, *remote_idxp, rmts_itr, remote_idx; |
| 728 | uword *rmts_idxp; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 729 | mapping_t *m, *old_map; |
| 730 | u32 **eid_indexes; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 731 | |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 732 | if (gid_address_type (&a->eid) == GID_ADDR_NSH) |
| 733 | { |
| 734 | if (gid_address_vni (&a->eid) != 0) |
| 735 | { |
| 736 | clib_warning ("Supported only default VNI for NSH!"); |
| 737 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 738 | } |
| 739 | if (gid_address_nsh_spi (&a->eid) > MAX_VALUE_U24) |
| 740 | { |
| 741 | clib_warning ("SPI is greater than 24bit!"); |
| 742 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 743 | } |
| 744 | } |
| 745 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 746 | mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->eid); |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 747 | old_map = mi != ~0 ? pool_elt_at_index (lcm->mapping_pool, mi) : 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 748 | if (a->is_add) |
| 749 | { |
| 750 | /* TODO check if overwriting and take appropriate actions */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 751 | if (mi != GID_LOOKUP_MISS && !gid_address_cmp (&old_map->eid, &a->eid)) |
| 752 | { |
| 753 | clib_warning ("eid %U found in the eid-table", format_gid_address, |
| 754 | &a->eid); |
| 755 | return VNET_API_ERROR_VALUE_EXIST; |
| 756 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 757 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 758 | pool_get (lcm->mapping_pool, m); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 759 | gid_address_copy (&m->eid, &a->eid); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 760 | m->locator_set_index = a->locator_set_index; |
| 761 | m->ttl = a->ttl; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 762 | m->action = a->action; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 763 | m->local = a->local; |
Filip Tehlar | 3cd9e73 | 2016-08-23 10:52:44 +0200 | [diff] [blame] | 764 | m->is_static = a->is_static; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 765 | m->key = vec_dup (a->key); |
| 766 | m->key_id = a->key_id; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 767 | |
| 768 | map_index = m - lcm->mapping_pool; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 769 | gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, map_index, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 770 | 1); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 771 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 772 | if (pool_is_free_index (lcm->locator_set_pool, a->locator_set_index)) |
| 773 | { |
| 774 | clib_warning ("Locator set with index %d doesn't exist", |
| 775 | a->locator_set_index); |
| 776 | return VNET_API_ERROR_INVALID_VALUE; |
| 777 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 778 | |
| 779 | /* add eid to list of eids supported by locator-set */ |
| 780 | vec_validate (lcm->locator_set_to_eids, a->locator_set_index); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 781 | eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, |
| 782 | a->locator_set_index); |
| 783 | vec_add1 (eid_indexes[0], map_index); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 784 | |
| 785 | if (a->local) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 786 | { |
| 787 | /* mark as local */ |
| 788 | vec_add1 (lcm->local_mappings_indexes, map_index); |
| 789 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 790 | map_index_result[0] = map_index; |
| 791 | } |
| 792 | else |
| 793 | { |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 794 | if (mi == GID_LOOKUP_MISS) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 795 | { |
| 796 | clib_warning ("eid %U not found in the eid-table", |
| 797 | format_gid_address, &a->eid); |
| 798 | return VNET_API_ERROR_INVALID_VALUE; |
| 799 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 800 | |
| 801 | /* clear locator-set to eids binding */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 802 | eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, |
| 803 | a->locator_set_index); |
| 804 | for (i = 0; i < vec_len (eid_indexes[0]); i++) |
| 805 | { |
| 806 | map_indexp = vec_elt_at_index (eid_indexes[0], i); |
| 807 | if (map_indexp[0] == mi) |
| 808 | break; |
| 809 | } |
| 810 | vec_del1 (eid_indexes[0], i); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 811 | |
| 812 | /* remove local mark if needed */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 813 | m = pool_elt_at_index (lcm->mapping_pool, mi); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 814 | if (m->local) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 815 | { |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 816 | /* Remove adjacencies associated with the local mapping */ |
| 817 | rmts_idxp = hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, mi); |
| 818 | if (rmts_idxp) |
| 819 | { |
| 820 | rmts = |
| 821 | pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idxp[0]); |
| 822 | vec_foreach (remote_idxp, rmts[0]) |
| 823 | { |
| 824 | dp_del_fwd_entry (lcm, remote_idxp[0]); |
| 825 | } |
| 826 | vec_free (rmts[0]); |
| 827 | pool_put (lcm->lcl_to_rmt_adjacencies, rmts); |
| 828 | hash_unset (lcm->lcl_to_rmt_adjs_by_lcl_idx, mi); |
| 829 | } |
| 830 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 831 | u32 k, *lm_indexp; |
| 832 | for (k = 0; k < vec_len (lcm->local_mappings_indexes); k++) |
| 833 | { |
| 834 | lm_indexp = vec_elt_at_index (lcm->local_mappings_indexes, k); |
| 835 | if (lm_indexp[0] == mi) |
| 836 | break; |
| 837 | } |
| 838 | vec_del1 (lcm->local_mappings_indexes, k); |
| 839 | } |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 840 | else |
| 841 | { |
| 842 | /* Remove remote (if present) from the vectors of lcl-to-rmts |
| 843 | * TODO: Address this in a more efficient way. |
| 844 | */ |
| 845 | /* *INDENT-OFF* */ |
| 846 | pool_foreach (rmts, lcm->lcl_to_rmt_adjacencies, |
| 847 | ({ |
| 848 | vec_foreach_index (rmts_itr, rmts[0]) |
| 849 | { |
| 850 | remote_idx = vec_elt (rmts[0], rmts_itr); |
| 851 | if (mi == remote_idx) |
| 852 | { |
| 853 | vec_del1 (rmts[0], rmts_itr); |
| 854 | break; |
| 855 | } |
| 856 | } |
| 857 | })); |
| 858 | /* *INDENT-ON* */ |
| 859 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 860 | |
| 861 | /* remove mapping from dictionary */ |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 862 | gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, 0, 0); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 863 | gid_address_free (&m->eid); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 864 | pool_put_index (lcm->mapping_pool, mi); |
| 865 | } |
| 866 | |
| 867 | return 0; |
| 868 | } |
| 869 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 870 | /** |
| 871 | * Add/update/delete mapping to/in/from map-cache. |
| 872 | */ |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 873 | int |
| 874 | 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] | 875 | u32 * map_index_result) |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 876 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 877 | uword *dp_table = 0; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 878 | u32 vni; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 879 | u8 type; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 880 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 881 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 882 | |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 883 | if (vnet_lisp_enable_disable_status () == 0) |
| 884 | { |
| 885 | clib_warning ("LISP is disabled!"); |
| 886 | return VNET_API_ERROR_LISP_DISABLED; |
| 887 | } |
| 888 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 889 | vni = gid_address_vni (&a->eid); |
| 890 | type = gid_address_type (&a->eid); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 891 | if (GID_ADDR_IP_PREFIX == type) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 892 | dp_table = hash_get (lcm->table_id_by_vni, vni); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 893 | else if (GID_ADDR_MAC == type) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 894 | dp_table = hash_get (lcm->bd_id_by_vni, vni); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 895 | |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 896 | if (!dp_table && GID_ADDR_NSH != type) |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 897 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 898 | clib_warning ("vni %d not associated to a %s!", vni, |
| 899 | GID_ADDR_IP_PREFIX == type ? "vrf" : "bd"); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 900 | return VNET_API_ERROR_INVALID_VALUE; |
| 901 | } |
| 902 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 903 | /* store/remove mapping from map-cache */ |
| 904 | return vnet_lisp_map_cache_add_del (a, map_index_result); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 905 | } |
| 906 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 907 | static void |
| 908 | add_l2_arp_bd (BVT (clib_bihash_kv) * kvp, void *arg) |
| 909 | { |
| 910 | u32 **ht = arg; |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 911 | u32 version = (u32) kvp->key[0]; |
| 912 | if (IP6 == version) |
| 913 | return; |
| 914 | |
| 915 | u32 bd = (u32) (kvp->key[0] >> 32); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 916 | hash_set (ht[0], bd, 0); |
| 917 | } |
| 918 | |
| 919 | u32 * |
| 920 | vnet_lisp_l2_arp_bds_get (void) |
| 921 | { |
| 922 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 923 | u32 *bds = 0; |
| 924 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 925 | gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid, |
| 926 | add_l2_arp_bd, &bds); |
| 927 | return bds; |
| 928 | } |
| 929 | |
| 930 | static void |
| 931 | add_ndp_bd (BVT (clib_bihash_kv) * kvp, void *arg) |
| 932 | { |
| 933 | u32 **ht = arg; |
| 934 | u32 version = (u32) kvp->key[0]; |
| 935 | if (IP4 == version) |
| 936 | return; |
| 937 | |
| 938 | u32 bd = (u32) (kvp->key[0] >> 32); |
| 939 | hash_set (ht[0], bd, 0); |
| 940 | } |
| 941 | |
| 942 | u32 * |
| 943 | vnet_lisp_ndp_bds_get (void) |
| 944 | { |
| 945 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 946 | u32 *bds = 0; |
| 947 | |
| 948 | gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid, |
| 949 | add_ndp_bd, &bds); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 950 | return bds; |
| 951 | } |
| 952 | |
| 953 | typedef struct |
| 954 | { |
| 955 | void *vector; |
| 956 | u32 bd; |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 957 | } lisp_add_l2_arp_ndp_args_t; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 958 | |
| 959 | static void |
| 960 | add_l2_arp_entry (BVT (clib_bihash_kv) * kvp, void *arg) |
| 961 | { |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 962 | lisp_add_l2_arp_ndp_args_t *a = arg; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 963 | lisp_api_l2_arp_entry_t **vector = a->vector, e; |
| 964 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 965 | u32 version = (u32) kvp->key[0]; |
| 966 | if (IP6 == version) |
| 967 | return; |
| 968 | |
| 969 | u32 bd = (u32) (kvp->key[0] >> 32); |
| 970 | |
| 971 | if (bd == a->bd) |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 972 | { |
| 973 | mac_copy (e.mac, (void *) &kvp->value); |
| 974 | e.ip4 = (u32) kvp->key[1]; |
| 975 | vec_add1 (vector[0], e); |
| 976 | } |
| 977 | } |
| 978 | |
| 979 | lisp_api_l2_arp_entry_t * |
| 980 | vnet_lisp_l2_arp_entries_get_by_bd (u32 bd) |
| 981 | { |
| 982 | lisp_api_l2_arp_entry_t *entries = 0; |
| 983 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 984 | lisp_add_l2_arp_ndp_args_t a; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 985 | |
| 986 | a.vector = &entries; |
| 987 | a.bd = bd; |
| 988 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 989 | gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid, |
| 990 | add_l2_arp_entry, &a); |
| 991 | return entries; |
| 992 | } |
| 993 | |
| 994 | static void |
| 995 | add_ndp_entry (BVT (clib_bihash_kv) * kvp, void *arg) |
| 996 | { |
| 997 | lisp_add_l2_arp_ndp_args_t *a = arg; |
| 998 | lisp_api_ndp_entry_t **vector = a->vector, e; |
| 999 | |
| 1000 | u32 version = (u32) kvp->key[0]; |
| 1001 | if (IP4 == version) |
| 1002 | return; |
| 1003 | |
| 1004 | u32 bd = (u32) (kvp->key[0] >> 32); |
| 1005 | |
| 1006 | if (bd == a->bd) |
| 1007 | { |
| 1008 | mac_copy (e.mac, (void *) &kvp->value); |
| 1009 | clib_memcpy (e.ip6, &kvp->key[1], 16); |
| 1010 | vec_add1 (vector[0], e); |
| 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | lisp_api_ndp_entry_t * |
| 1015 | vnet_lisp_ndp_entries_get_by_bd (u32 bd) |
| 1016 | { |
| 1017 | lisp_api_ndp_entry_t *entries = 0; |
| 1018 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1019 | lisp_add_l2_arp_ndp_args_t a; |
| 1020 | |
| 1021 | a.vector = &entries; |
| 1022 | a.bd = bd; |
| 1023 | |
| 1024 | gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid, |
| 1025 | add_ndp_entry, &a); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 1026 | return entries; |
| 1027 | } |
| 1028 | |
| 1029 | int |
Filip Tehlar | 6492964 | 2017-09-20 08:41:23 +0200 | [diff] [blame] | 1030 | vnet_lisp_add_del_l2_arp_ndp_entry (gid_address_t * key, u8 * mac, u8 is_add) |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 1031 | { |
| 1032 | if (vnet_lisp_enable_disable_status () == 0) |
| 1033 | { |
| 1034 | clib_warning ("LISP is disabled!"); |
| 1035 | return VNET_API_ERROR_LISP_DISABLED; |
| 1036 | } |
| 1037 | |
| 1038 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1039 | int rc = 0; |
| 1040 | |
| 1041 | u64 res = gid_dictionary_lookup (&lcm->mapping_index_by_gid, key); |
| 1042 | if (is_add) |
| 1043 | { |
| 1044 | if (res != GID_LOOKUP_MISS_L2) |
| 1045 | { |
| 1046 | clib_warning ("Entry %U exists in DB!", format_gid_address, key); |
| 1047 | return VNET_API_ERROR_ENTRY_ALREADY_EXISTS; |
| 1048 | } |
| 1049 | u64 val = mac_to_u64 (mac); |
| 1050 | gid_dictionary_add_del (&lcm->mapping_index_by_gid, key, val, |
| 1051 | 1 /* is_add */ ); |
| 1052 | } |
| 1053 | else |
| 1054 | { |
| 1055 | if (res == GID_LOOKUP_MISS_L2) |
| 1056 | { |
Filip Tehlar | 6492964 | 2017-09-20 08:41:23 +0200 | [diff] [blame] | 1057 | clib_warning ("ONE entry %U not found - cannot delete!", |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 1058 | format_gid_address, key); |
| 1059 | return -1; |
| 1060 | } |
| 1061 | gid_dictionary_add_del (&lcm->mapping_index_by_gid, key, 0, |
| 1062 | 0 /* is_add */ ); |
| 1063 | } |
| 1064 | |
| 1065 | return rc; |
| 1066 | } |
| 1067 | |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1068 | int |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1069 | vnet_lisp_eid_table_map (u32 vni, u32 dp_id, u8 is_l2, u8 is_add) |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1070 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1071 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1072 | uword *dp_idp, *vnip, **dp_table_by_vni, **vni_by_dp_table; |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1073 | |
| 1074 | if (vnet_lisp_enable_disable_status () == 0) |
| 1075 | { |
| 1076 | clib_warning ("LISP is disabled!"); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 1077 | return VNET_API_ERROR_LISP_DISABLED; |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1078 | } |
| 1079 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1080 | dp_table_by_vni = is_l2 ? &lcm->bd_id_by_vni : &lcm->table_id_by_vni; |
| 1081 | vni_by_dp_table = is_l2 ? &lcm->vni_by_bd_id : &lcm->vni_by_table_id; |
| 1082 | |
| 1083 | if (!is_l2 && (vni == 0 || dp_id == 0)) |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1084 | { |
| 1085 | clib_warning ("can't add/del default vni-vrf mapping!"); |
| 1086 | return -1; |
| 1087 | } |
| 1088 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1089 | dp_idp = hash_get (dp_table_by_vni[0], vni); |
| 1090 | vnip = hash_get (vni_by_dp_table[0], dp_id); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1091 | |
| 1092 | if (is_add) |
| 1093 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1094 | if (dp_idp || vnip) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1095 | { |
| 1096 | clib_warning ("vni %d or vrf %d already used in vrf/vni " |
| 1097 | "mapping!", vni, dp_id); |
| 1098 | return -1; |
| 1099 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1100 | hash_set (dp_table_by_vni[0], vni, dp_id); |
| 1101 | hash_set (vni_by_dp_table[0], dp_id, vni); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1102 | |
| 1103 | /* create dp iface */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1104 | dp_add_del_iface (lcm, vni, is_l2, 1); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1105 | } |
| 1106 | else |
| 1107 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1108 | if (!dp_idp || !vnip) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1109 | { |
| 1110 | clib_warning ("vni %d or vrf %d not used in any vrf/vni! " |
| 1111 | "mapping!", vni, dp_id); |
| 1112 | return -1; |
| 1113 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1114 | /* remove dp iface */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1115 | dp_add_del_iface (lcm, vni, is_l2, 0); |
Filip Tehlar | fc56841 | 2017-04-05 10:06:03 +0200 | [diff] [blame] | 1116 | |
| 1117 | hash_unset (dp_table_by_vni[0], vni); |
| 1118 | hash_unset (vni_by_dp_table[0], dp_id); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1119 | } |
| 1120 | return 0; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 1121 | |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 1122 | } |
| 1123 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1124 | /* return 0 if the two locator sets are identical 1 otherwise */ |
| 1125 | static u8 |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1126 | compare_locators (lisp_cp_main_t * lcm, u32 * old_ls_indexes, |
| 1127 | locator_t * new_locators) |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1128 | { |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1129 | u32 i, old_li; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1130 | locator_t *old_loc, *new_loc; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1131 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1132 | if (vec_len (old_ls_indexes) != vec_len (new_locators)) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1133 | return 1; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1134 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1135 | for (i = 0; i < vec_len (new_locators); i++) |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1136 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1137 | old_li = vec_elt (old_ls_indexes, i); |
| 1138 | old_loc = pool_elt_at_index (lcm->locator_pool, old_li); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1139 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1140 | new_loc = vec_elt_at_index (new_locators, i); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1141 | |
| 1142 | if (locator_cmp (old_loc, new_loc)) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1143 | return 1; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1144 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1145 | return 0; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1146 | } |
| 1147 | |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 1148 | typedef struct |
| 1149 | { |
| 1150 | u8 is_negative; |
| 1151 | void *lcm; |
| 1152 | gid_address_t *eids_to_be_deleted; |
| 1153 | } remove_mapping_args_t; |
| 1154 | |
| 1155 | /** |
| 1156 | * Callback invoked when a sub-prefix is found |
| 1157 | */ |
| 1158 | static void |
| 1159 | remove_mapping_if_needed (u32 mi, void *arg) |
| 1160 | { |
| 1161 | u8 delete = 0; |
| 1162 | remove_mapping_args_t *a = arg; |
| 1163 | lisp_cp_main_t *lcm = a->lcm; |
| 1164 | mapping_t *m; |
| 1165 | locator_set_t *ls; |
| 1166 | |
| 1167 | m = pool_elt_at_index (lcm->mapping_pool, mi); |
| 1168 | if (!m) |
| 1169 | return; |
| 1170 | |
| 1171 | ls = pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index); |
| 1172 | |
| 1173 | if (a->is_negative) |
| 1174 | { |
| 1175 | if (0 != vec_len (ls->locator_indices)) |
| 1176 | delete = 1; |
| 1177 | } |
| 1178 | else |
| 1179 | { |
| 1180 | if (0 == vec_len (ls->locator_indices)) |
| 1181 | delete = 1; |
| 1182 | } |
| 1183 | |
| 1184 | if (delete) |
| 1185 | vec_add1 (a->eids_to_be_deleted, m->eid); |
| 1186 | } |
| 1187 | |
| 1188 | /** |
| 1189 | * This function searches map cache and looks for IP prefixes that are subset |
| 1190 | * of the provided one. If such prefix is found depending on 'is_negative' |
| 1191 | * it does follows: |
| 1192 | * |
| 1193 | * 1) if is_negative is true and found prefix points to positive mapping, |
| 1194 | * then the mapping is removed |
| 1195 | * 2) if is_negative is false and found prefix points to negative mapping, |
| 1196 | * then the mapping is removed |
| 1197 | */ |
| 1198 | static void |
| 1199 | remove_overlapping_sub_prefixes (lisp_cp_main_t * lcm, gid_address_t * eid, |
| 1200 | u8 is_negative) |
| 1201 | { |
| 1202 | gid_address_t *e; |
| 1203 | remove_mapping_args_t a; |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1204 | |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 1205 | memset (&a, 0, sizeof (a)); |
| 1206 | |
| 1207 | /* do this only in src/dst mode ... */ |
| 1208 | if (MR_MODE_SRC_DST != lcm->map_request_mode) |
| 1209 | return; |
| 1210 | |
| 1211 | /* ... and only for IP prefix */ |
| 1212 | if (GID_ADDR_SRC_DST != gid_address_type (eid) |
| 1213 | || (FID_ADDR_IP_PREF != gid_address_sd_dst_type (eid))) |
| 1214 | return; |
| 1215 | |
| 1216 | a.is_negative = is_negative; |
| 1217 | a.lcm = lcm; |
| 1218 | |
| 1219 | gid_dict_foreach_subprefix (&lcm->mapping_index_by_gid, eid, |
| 1220 | remove_mapping_if_needed, &a); |
| 1221 | |
| 1222 | vec_foreach (e, a.eids_to_be_deleted) |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 1223 | { |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1224 | vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args; |
| 1225 | |
| 1226 | memset (adj_args, 0, sizeof (adj_args[0])); |
| 1227 | gid_address_copy (&adj_args->reid, e); |
| 1228 | adj_args->is_add = 0; |
| 1229 | if (vnet_lisp_add_del_adjacency (adj_args)) |
| 1230 | clib_warning ("failed to del adjacency!"); |
| 1231 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1232 | vnet_lisp_del_mapping (e, NULL); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 1233 | } |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 1234 | |
| 1235 | vec_free (a.eids_to_be_deleted); |
| 1236 | } |
| 1237 | |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 1238 | static void |
| 1239 | mapping_delete_timer (lisp_cp_main_t * lcm, u32 mi) |
| 1240 | { |
| 1241 | timing_wheel_delete (&lcm->wheel, mi); |
| 1242 | } |
| 1243 | |
Filip Tehlar | a6bce49 | 2017-02-03 10:17:49 +0100 | [diff] [blame] | 1244 | static int |
| 1245 | is_local_ip (lisp_cp_main_t * lcm, ip_address_t * addr) |
| 1246 | { |
| 1247 | fib_node_index_t fei; |
| 1248 | fib_prefix_t prefix; |
| 1249 | fib_entry_flag_t flags; |
| 1250 | |
| 1251 | ip_address_to_fib_prefix (addr, &prefix); |
| 1252 | |
| 1253 | fei = fib_table_lookup (0, &prefix); |
| 1254 | flags = fib_entry_get_flags (fei); |
| 1255 | return (FIB_ENTRY_FLAG_LOCAL & flags); |
| 1256 | } |
| 1257 | |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1258 | /** |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1259 | * Adds/updates mapping. Does not program forwarding. |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1260 | * |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1261 | * @param a parameters of the new mapping |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1262 | * @param rlocs vector of remote locators |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1263 | * @param res_map_index index of the newly created mapping |
| 1264 | * @param locators_changed indicator if locators were updated in the mapping |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1265 | * @return return code |
| 1266 | */ |
| 1267 | int |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1268 | vnet_lisp_add_mapping (vnet_lisp_add_del_mapping_args_t * a, |
| 1269 | locator_t * rlocs, |
| 1270 | u32 * res_map_index, u8 * is_updated) |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1271 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1272 | vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args; |
| 1273 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1274 | u32 mi, ls_index = 0, dst_map_index; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1275 | mapping_t *old_map; |
Filip Tehlar | a6bce49 | 2017-02-03 10:17:49 +0100 | [diff] [blame] | 1276 | locator_t *loc; |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1277 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1278 | if (vnet_lisp_enable_disable_status () == 0) |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 1279 | { |
| 1280 | clib_warning ("LISP is disabled!"); |
| 1281 | return VNET_API_ERROR_LISP_DISABLED; |
| 1282 | } |
| 1283 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1284 | if (res_map_index) |
| 1285 | res_map_index[0] = ~0; |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1286 | if (is_updated) |
| 1287 | is_updated[0] = 0; |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1288 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1289 | memset (ls_args, 0, sizeof (ls_args[0])); |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1290 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1291 | ls_args->locators = rlocs; |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1292 | mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->eid); |
| 1293 | old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0; |
| 1294 | |
| 1295 | /* check if none of the locators match localy configured address */ |
| 1296 | vec_foreach (loc, rlocs) |
| 1297 | { |
| 1298 | ip_prefix_t *p = &gid_address_ippref (&loc->address); |
| 1299 | if (is_local_ip (lcm, &ip_prefix_addr (p))) |
| 1300 | { |
| 1301 | clib_warning ("RLOC %U matches a local address!", |
| 1302 | format_gid_address, &loc->address); |
| 1303 | return VNET_API_ERROR_LISP_RLOC_LOCAL; |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | /* overwrite: if mapping already exists, decide if locators should be |
| 1308 | * updated and be done */ |
| 1309 | if (old_map && gid_address_cmp (&old_map->eid, &a->eid) == 0) |
| 1310 | { |
| 1311 | if (!a->is_static && (old_map->is_static || old_map->local)) |
| 1312 | { |
| 1313 | /* do not overwrite local or static remote mappings */ |
| 1314 | clib_warning ("mapping %U rejected due to collision with local " |
| 1315 | "or static remote mapping!", format_gid_address, |
| 1316 | &a->eid); |
| 1317 | return 0; |
| 1318 | } |
| 1319 | |
| 1320 | locator_set_t *old_ls; |
| 1321 | |
| 1322 | /* update mapping attributes */ |
| 1323 | old_map->action = a->action; |
| 1324 | if (old_map->action != a->action && NULL != is_updated) |
| 1325 | is_updated[0] = 1; |
| 1326 | |
| 1327 | old_map->authoritative = a->authoritative; |
| 1328 | old_map->ttl = a->ttl; |
| 1329 | |
| 1330 | old_ls = pool_elt_at_index (lcm->locator_set_pool, |
| 1331 | old_map->locator_set_index); |
| 1332 | if (compare_locators (lcm, old_ls->locator_indices, ls_args->locators)) |
| 1333 | { |
| 1334 | /* set locator-set index to overwrite */ |
| 1335 | ls_args->is_add = 1; |
| 1336 | ls_args->index = old_map->locator_set_index; |
| 1337 | vnet_lisp_add_del_locator_set (ls_args, 0); |
| 1338 | if (is_updated) |
| 1339 | is_updated[0] = 1; |
| 1340 | } |
| 1341 | if (res_map_index) |
| 1342 | res_map_index[0] = mi; |
| 1343 | } |
| 1344 | /* new mapping */ |
| 1345 | else |
| 1346 | { |
| 1347 | remove_overlapping_sub_prefixes (lcm, &a->eid, 0 == ls_args->locators); |
| 1348 | |
| 1349 | ls_args->is_add = 1; |
| 1350 | ls_args->index = ~0; |
| 1351 | |
| 1352 | vnet_lisp_add_del_locator_set (ls_args, &ls_index); |
| 1353 | |
| 1354 | /* add mapping */ |
| 1355 | a->is_add = 1; |
| 1356 | a->locator_set_index = ls_index; |
| 1357 | vnet_lisp_map_cache_add_del (a, &dst_map_index); |
| 1358 | |
| 1359 | if (res_map_index) |
| 1360 | res_map_index[0] = dst_map_index; |
| 1361 | } |
| 1362 | |
| 1363 | /* success */ |
| 1364 | return 0; |
| 1365 | } |
| 1366 | |
| 1367 | /** |
| 1368 | * Removes a mapping. Does not program forwarding. |
| 1369 | * |
| 1370 | * @param eid end-host indetifier |
| 1371 | * @param res_map_index index of the removed mapping |
| 1372 | * @return return code |
| 1373 | */ |
| 1374 | int |
| 1375 | vnet_lisp_del_mapping (gid_address_t * eid, u32 * res_map_index) |
| 1376 | { |
| 1377 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1378 | vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args; |
| 1379 | vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args; |
| 1380 | mapping_t *old_map; |
| 1381 | u32 mi; |
| 1382 | |
| 1383 | memset (m_args, 0, sizeof (m_args[0])); |
| 1384 | if (res_map_index) |
| 1385 | res_map_index[0] = ~0; |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1386 | |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1387 | mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1388 | old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1389 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1390 | if (old_map == 0 || gid_address_cmp (&old_map->eid, eid) != 0) |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1391 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1392 | clib_warning ("cannot delete mapping for eid %U", |
| 1393 | format_gid_address, eid); |
| 1394 | return -1; |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1395 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1396 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1397 | m_args->is_add = 0; |
| 1398 | gid_address_copy (&m_args->eid, eid); |
| 1399 | m_args->locator_set_index = old_map->locator_set_index; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1400 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1401 | /* delete mapping associated from map-cache */ |
| 1402 | vnet_lisp_map_cache_add_del (m_args, 0); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1403 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1404 | ls_args->is_add = 0; |
| 1405 | ls_args->index = old_map->locator_set_index; |
Filip Tehlar | b93222f | 2016-07-07 09:58:08 +0200 | [diff] [blame] | 1406 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1407 | /* delete locator set */ |
| 1408 | vnet_lisp_add_del_locator_set (ls_args, 0); |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 1409 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 1410 | /* delete timer associated to the mapping if any */ |
| 1411 | if (old_map->timer_set) |
| 1412 | mapping_delete_timer (lcm, mi); |
| 1413 | |
| 1414 | /* return old mapping index */ |
| 1415 | if (res_map_index) |
| 1416 | res_map_index[0] = mi; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1417 | |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1418 | /* success */ |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1419 | return 0; |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1420 | } |
| 1421 | |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1422 | int |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1423 | vnet_lisp_clear_all_remote_adjacencies (void) |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1424 | { |
| 1425 | int rv = 0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1426 | u32 mi, *map_indices = 0, *map_indexp; |
| 1427 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1428 | vnet_lisp_add_del_mapping_args_t _dm_args, *dm_args = &_dm_args; |
| 1429 | vnet_lisp_add_del_locator_set_args_t _ls, *ls = &_ls; |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1430 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1431 | /* *INDENT-OFF* */ |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1432 | pool_foreach_index (mi, lcm->mapping_pool, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1433 | ({ |
| 1434 | vec_add1 (map_indices, mi); |
| 1435 | })); |
| 1436 | /* *INDENT-ON* */ |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1437 | |
| 1438 | vec_foreach (map_indexp, map_indices) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1439 | { |
| 1440 | mapping_t *map = pool_elt_at_index (lcm->mapping_pool, map_indexp[0]); |
| 1441 | if (!map->local) |
| 1442 | { |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 1443 | dp_del_fwd_entry (lcm, map_indexp[0]); |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1444 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1445 | dm_args->is_add = 0; |
| 1446 | gid_address_copy (&dm_args->eid, &map->eid); |
| 1447 | dm_args->locator_set_index = map->locator_set_index; |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1448 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1449 | /* delete mapping associated to fwd entry */ |
| 1450 | vnet_lisp_map_cache_add_del (dm_args, 0); |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1451 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1452 | ls->is_add = 0; |
| 1453 | ls->local = 0; |
| 1454 | ls->index = map->locator_set_index; |
| 1455 | /* delete locator set */ |
| 1456 | rv = vnet_lisp_add_del_locator_set (ls, 0); |
| 1457 | if (rv != 0) |
| 1458 | goto cleanup; |
| 1459 | } |
| 1460 | } |
Filip Tehlar | 58f886a | 2016-05-30 15:57:40 +0200 | [diff] [blame] | 1461 | |
| 1462 | cleanup: |
| 1463 | if (map_indices) |
| 1464 | vec_free (map_indices); |
| 1465 | return rv; |
| 1466 | } |
| 1467 | |
Filip Tehlar | 195bcee | 2016-05-13 17:37:35 +0200 | [diff] [blame] | 1468 | /** |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1469 | * Adds adjacency or removes forwarding entry associated to remote mapping. |
| 1470 | * Note that adjacencies are not stored, they only result in forwarding entries |
| 1471 | * being created. |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1472 | */ |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1473 | int |
| 1474 | 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] | 1475 | { |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1476 | lisp_cp_main_t *lcm = &lisp_control_main; |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1477 | u32 local_mi, remote_mi = ~0; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1478 | |
| 1479 | if (vnet_lisp_enable_disable_status () == 0) |
| 1480 | { |
| 1481 | clib_warning ("LISP is disabled!"); |
| 1482 | return VNET_API_ERROR_LISP_DISABLED; |
| 1483 | } |
| 1484 | |
Filip Tehlar | 69a9b76 | 2016-09-23 10:00:52 +0200 | [diff] [blame] | 1485 | remote_mi = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid, |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1486 | &a->reid, &a->leid); |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1487 | if (GID_LOOKUP_MISS == remote_mi) |
| 1488 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1489 | clib_warning ("Remote eid %U not found. Cannot add adjacency!", |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1490 | format_gid_address, &a->reid); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1491 | |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1492 | return -1; |
| 1493 | } |
| 1494 | |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1495 | if (a->is_add) |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1496 | { |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1497 | /* check if source eid has an associated mapping. If pitr mode is on, |
| 1498 | * just use the pitr's mapping */ |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 1499 | if (lcm->lisp_pitr) |
| 1500 | local_mi = lcm->pitr_map_index; |
| 1501 | else |
| 1502 | { |
| 1503 | if (gid_address_type (&a->reid) == GID_ADDR_NSH) |
| 1504 | { |
| 1505 | if (lcm->nsh_map_index == ~0) |
| 1506 | local_mi = GID_LOOKUP_MISS; |
| 1507 | else |
| 1508 | local_mi = lcm->nsh_map_index; |
| 1509 | } |
| 1510 | else |
| 1511 | { |
| 1512 | local_mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, |
| 1513 | &a->leid); |
| 1514 | } |
| 1515 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1516 | |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1517 | if (GID_LOOKUP_MISS == local_mi) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1518 | { |
| 1519 | clib_warning ("Local eid %U not found. Cannot add adjacency!", |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 1520 | format_gid_address, &a->leid); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1521 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1522 | return -1; |
| 1523 | } |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1524 | |
Florin Coras | 71893ac | 2016-07-10 20:09:32 +0200 | [diff] [blame] | 1525 | /* update forwarding */ |
| 1526 | dp_add_fwd_entry (lcm, local_mi, remote_mi); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1527 | } |
| 1528 | else |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 1529 | dp_del_fwd_entry (lcm, remote_mi); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1530 | |
| 1531 | return 0; |
| 1532 | } |
| 1533 | |
| 1534 | int |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 1535 | vnet_lisp_set_map_request_mode (u8 mode) |
| 1536 | { |
| 1537 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1538 | |
| 1539 | if (vnet_lisp_enable_disable_status () == 0) |
| 1540 | { |
| 1541 | clib_warning ("LISP is disabled!"); |
| 1542 | return VNET_API_ERROR_LISP_DISABLED; |
| 1543 | } |
| 1544 | |
| 1545 | if (mode >= _MR_MODE_MAX) |
| 1546 | { |
| 1547 | clib_warning ("Invalid LISP map request mode %d!", mode); |
| 1548 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 1549 | } |
| 1550 | |
| 1551 | lcm->map_request_mode = mode; |
| 1552 | return 0; |
| 1553 | } |
| 1554 | |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1555 | int |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 1556 | vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add) |
| 1557 | { |
| 1558 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1559 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 1560 | u32 locator_set_index = ~0; |
| 1561 | mapping_t *m; |
| 1562 | uword *p; |
| 1563 | |
| 1564 | if (vnet_lisp_enable_disable_status () == 0) |
| 1565 | { |
| 1566 | clib_warning ("LISP is disabled!"); |
| 1567 | return VNET_API_ERROR_LISP_DISABLED; |
| 1568 | } |
| 1569 | |
| 1570 | if (is_add) |
| 1571 | { |
| 1572 | if (lcm->nsh_map_index == (u32) ~ 0) |
| 1573 | { |
| 1574 | p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name); |
| 1575 | if (!p) |
| 1576 | { |
| 1577 | clib_warning ("locator-set %v doesn't exist", locator_set_name); |
| 1578 | return -1; |
| 1579 | } |
| 1580 | locator_set_index = p[0]; |
| 1581 | |
| 1582 | pool_get (lcm->mapping_pool, m); |
| 1583 | memset (m, 0, sizeof *m); |
| 1584 | m->locator_set_index = locator_set_index; |
| 1585 | m->local = 1; |
| 1586 | m->nsh_set = 1; |
| 1587 | lcm->nsh_map_index = m - lcm->mapping_pool; |
| 1588 | |
| 1589 | if (~0 == vnet_lisp_gpe_add_nsh_iface (lgm)) |
| 1590 | return -1; |
| 1591 | } |
| 1592 | } |
| 1593 | else |
| 1594 | { |
| 1595 | if (lcm->nsh_map_index != (u32) ~ 0) |
| 1596 | { |
| 1597 | /* remove NSH mapping */ |
| 1598 | pool_put_index (lcm->mapping_pool, lcm->nsh_map_index); |
| 1599 | lcm->nsh_map_index = ~0; |
| 1600 | vnet_lisp_gpe_del_nsh_iface (lgm); |
| 1601 | } |
| 1602 | } |
| 1603 | return 0; |
| 1604 | } |
| 1605 | |
| 1606 | int |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1607 | vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add) |
| 1608 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1609 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1610 | u32 locator_set_index = ~0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1611 | mapping_t *m; |
| 1612 | uword *p; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1613 | |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 1614 | if (vnet_lisp_enable_disable_status () == 0) |
| 1615 | { |
| 1616 | clib_warning ("LISP is disabled!"); |
| 1617 | return VNET_API_ERROR_LISP_DISABLED; |
| 1618 | } |
| 1619 | |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1620 | p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name); |
| 1621 | if (!p) |
| 1622 | { |
| 1623 | clib_warning ("locator-set %v doesn't exist", locator_set_name); |
| 1624 | return -1; |
| 1625 | } |
| 1626 | locator_set_index = p[0]; |
| 1627 | |
| 1628 | if (is_add) |
| 1629 | { |
| 1630 | pool_get (lcm->mapping_pool, m); |
| 1631 | m->locator_set_index = locator_set_index; |
| 1632 | m->local = 1; |
Filip Tehlar | 38206ee | 2017-02-20 17:31:57 +0100 | [diff] [blame] | 1633 | m->pitr_set = 1; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 1634 | lcm->pitr_map_index = m - lcm->mapping_pool; |
| 1635 | |
| 1636 | /* enable pitr mode */ |
| 1637 | lcm->lisp_pitr = 1; |
| 1638 | } |
| 1639 | else |
| 1640 | { |
| 1641 | /* remove pitr mapping */ |
| 1642 | pool_put_index (lcm->mapping_pool, lcm->pitr_map_index); |
| 1643 | |
| 1644 | /* disable pitr mode */ |
| 1645 | lcm->lisp_pitr = 0; |
| 1646 | } |
| 1647 | return 0; |
| 1648 | } |
| 1649 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 1650 | int |
| 1651 | vnet_lisp_map_register_fallback_threshold_set (u32 value) |
| 1652 | { |
| 1653 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1654 | if (0 == value) |
| 1655 | { |
| 1656 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 1657 | } |
| 1658 | |
| 1659 | lcm->max_expired_map_registers = value; |
| 1660 | return 0; |
| 1661 | } |
| 1662 | |
| 1663 | u32 |
| 1664 | vnet_lisp_map_register_fallback_threshold_get (void) |
| 1665 | { |
| 1666 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1667 | return lcm->max_expired_map_registers; |
| 1668 | } |
| 1669 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 1670 | /** |
| 1671 | * Configure Proxy-ETR |
| 1672 | * |
| 1673 | * @param ip PETR's IP address |
| 1674 | * @param is_add Flag that indicates if this is an addition or removal |
| 1675 | * |
| 1676 | * return 0 on success |
| 1677 | */ |
| 1678 | int |
| 1679 | vnet_lisp_use_petr (ip_address_t * ip, u8 is_add) |
| 1680 | { |
| 1681 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1682 | u32 ls_index = ~0; |
| 1683 | mapping_t *m; |
| 1684 | vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args; |
| 1685 | locator_t loc; |
| 1686 | |
| 1687 | if (vnet_lisp_enable_disable_status () == 0) |
| 1688 | { |
| 1689 | clib_warning ("LISP is disabled!"); |
| 1690 | return VNET_API_ERROR_LISP_DISABLED; |
| 1691 | } |
| 1692 | |
| 1693 | memset (ls_args, 0, sizeof (*ls_args)); |
| 1694 | |
| 1695 | if (is_add) |
| 1696 | { |
| 1697 | /* Create dummy petr locator-set */ |
Florin Coras | b69259a | 2017-03-09 14:39:54 -0800 | [diff] [blame] | 1698 | memset (&loc, 0, sizeof (loc)); |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 1699 | gid_address_from_ip (&loc.address, ip); |
| 1700 | loc.priority = 1; |
| 1701 | loc.state = loc.weight = 1; |
Florin Coras | 2743cc4 | 2017-01-29 16:42:20 -0800 | [diff] [blame] | 1702 | loc.local = 0; |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 1703 | |
| 1704 | ls_args->is_add = 1; |
| 1705 | ls_args->index = ~0; |
| 1706 | vec_add1 (ls_args->locators, loc); |
| 1707 | vnet_lisp_add_del_locator_set (ls_args, &ls_index); |
| 1708 | |
| 1709 | /* Add petr mapping */ |
| 1710 | pool_get (lcm->mapping_pool, m); |
| 1711 | m->locator_set_index = ls_index; |
| 1712 | lcm->petr_map_index = m - lcm->mapping_pool; |
| 1713 | |
| 1714 | /* Enable use-petr */ |
| 1715 | lcm->flags |= LISP_FLAG_USE_PETR; |
| 1716 | } |
| 1717 | else |
| 1718 | { |
| 1719 | m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index); |
| 1720 | |
| 1721 | /* Remove petr locator */ |
| 1722 | ls_args->is_add = 0; |
| 1723 | ls_args->index = m->locator_set_index; |
| 1724 | vnet_lisp_add_del_locator_set (ls_args, 0); |
| 1725 | |
| 1726 | /* Remove petr mapping */ |
| 1727 | pool_put_index (lcm->mapping_pool, lcm->petr_map_index); |
| 1728 | |
| 1729 | /* Disable use-petr */ |
| 1730 | lcm->flags &= ~LISP_FLAG_USE_PETR; |
| 1731 | } |
| 1732 | return 0; |
| 1733 | } |
| 1734 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1735 | /* cleans locator to locator-set data and removes locators not part of |
| 1736 | * any locator-set */ |
| 1737 | static void |
| 1738 | clean_locator_to_locator_set (lisp_cp_main_t * lcm, u32 lsi) |
| 1739 | { |
Filip Tehlar | d1c5cc3 | 2016-05-30 10:39:20 +0200 | [diff] [blame] | 1740 | u32 i, j, *loc_indexp, *ls_indexp, **ls_indexes, *to_be_deleted = 0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1741 | locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool, lsi); |
| 1742 | for (i = 0; i < vec_len (ls->locator_indices); i++) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1743 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1744 | loc_indexp = vec_elt_at_index (ls->locator_indices, i); |
| 1745 | ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, |
| 1746 | loc_indexp[0]); |
| 1747 | for (j = 0; j < vec_len (ls_indexes[0]); j++) |
| 1748 | { |
| 1749 | ls_indexp = vec_elt_at_index (ls_indexes[0], j); |
| 1750 | if (ls_indexp[0] == lsi) |
| 1751 | break; |
| 1752 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1753 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1754 | /* delete index for removed locator-set */ |
| 1755 | vec_del1 (ls_indexes[0], j); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1756 | |
| 1757 | /* delete locator if it's part of no locator-set */ |
| 1758 | if (vec_len (ls_indexes[0]) == 0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1759 | { |
| 1760 | pool_put_index (lcm->locator_pool, loc_indexp[0]); |
| 1761 | vec_add1 (to_be_deleted, i); |
| 1762 | } |
Filip Tehlar | d1c5cc3 | 2016-05-30 10:39:20 +0200 | [diff] [blame] | 1763 | } |
| 1764 | |
| 1765 | if (to_be_deleted) |
| 1766 | { |
| 1767 | for (i = 0; i < vec_len (to_be_deleted); i++) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1768 | { |
| 1769 | loc_indexp = vec_elt_at_index (to_be_deleted, i); |
| 1770 | vec_del1 (ls->locator_indices, loc_indexp[0]); |
| 1771 | } |
Filip Tehlar | d1c5cc3 | 2016-05-30 10:39:20 +0200 | [diff] [blame] | 1772 | vec_free (to_be_deleted); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1773 | } |
| 1774 | } |
Filip Tehlar | d1c5cc3 | 2016-05-30 10:39:20 +0200 | [diff] [blame] | 1775 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1776 | static inline uword * |
| 1777 | get_locator_set_index (vnet_lisp_add_del_locator_set_args_t * a, uword * p) |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1778 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1779 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1780 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1781 | ASSERT (a != NULL); |
| 1782 | ASSERT (p != NULL); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1783 | |
| 1784 | /* find locator-set */ |
| 1785 | if (a->local) |
| 1786 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1787 | p = hash_get_mem (lcm->locator_set_index_by_name, a->name); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1788 | } |
| 1789 | else |
| 1790 | { |
| 1791 | *p = a->index; |
| 1792 | } |
| 1793 | |
| 1794 | return p; |
| 1795 | } |
| 1796 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1797 | static inline int |
| 1798 | is_locator_in_locator_set (lisp_cp_main_t * lcm, locator_set_t * ls, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1799 | locator_t * loc) |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1800 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1801 | locator_t *itloc; |
| 1802 | u32 *locit; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1803 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1804 | ASSERT (ls != NULL); |
| 1805 | ASSERT (loc != NULL); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1806 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1807 | vec_foreach (locit, ls->locator_indices) |
| 1808 | { |
| 1809 | itloc = pool_elt_at_index (lcm->locator_pool, locit[0]); |
| 1810 | if ((ls->local && itloc->sw_if_index == loc->sw_if_index) || |
| 1811 | (!ls->local && !gid_address_cmp (&itloc->address, &loc->address))) |
| 1812 | { |
| 1813 | clib_warning ("Duplicate locator"); |
| 1814 | return VNET_API_ERROR_VALUE_EXIST; |
| 1815 | } |
| 1816 | } |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1817 | |
| 1818 | return 0; |
| 1819 | } |
| 1820 | |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1821 | static void |
| 1822 | update_adjacencies_by_map_index (lisp_cp_main_t * lcm, u8 is_local, |
| 1823 | u32 mapping_index, u8 remove_only) |
| 1824 | { |
| 1825 | fwd_entry_t *fwd; |
| 1826 | mapping_t *map; |
| 1827 | vnet_lisp_add_del_adjacency_args_t _a, *a = &_a; |
| 1828 | |
| 1829 | map = pool_elt_at_index (lcm->mapping_pool, mapping_index); |
| 1830 | |
| 1831 | /* *INDENT-OFF* */ |
| 1832 | pool_foreach(fwd, lcm->fwd_entry_pool, |
| 1833 | ({ |
| 1834 | if ((is_local && 0 == gid_address_cmp (&map->eid, &fwd->leid)) || |
| 1835 | (!is_local && 0 == gid_address_cmp (&map->eid, &fwd->reid))) |
| 1836 | { |
| 1837 | a->is_add = 0; |
| 1838 | gid_address_copy (&a->leid, &fwd->leid); |
| 1839 | gid_address_copy (&a->reid, &fwd->reid); |
| 1840 | |
| 1841 | vnet_lisp_add_del_adjacency (a); |
| 1842 | |
| 1843 | if (!remove_only) |
| 1844 | { |
| 1845 | a->is_add = 1; |
| 1846 | vnet_lisp_add_del_adjacency (a); |
| 1847 | } |
| 1848 | } |
| 1849 | })); |
| 1850 | /* *INDENT-ON* */ |
| 1851 | } |
| 1852 | |
| 1853 | static void |
| 1854 | update_fwd_entries_by_locator_set (lisp_cp_main_t * lcm, u8 is_local, |
| 1855 | u32 ls_index, u8 remove_only) |
| 1856 | { |
| 1857 | u32 i, *map_indexp; |
| 1858 | u32 **eid_indexes; |
Filip Tehlar | facee28 | 2017-04-27 14:29:27 +0200 | [diff] [blame] | 1859 | |
| 1860 | if (vec_len (lcm->locator_set_to_eids) <= ls_index) |
| 1861 | return; |
| 1862 | |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1863 | eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, ls_index); |
| 1864 | |
| 1865 | for (i = 0; i < vec_len (eid_indexes[0]); i++) |
| 1866 | { |
| 1867 | map_indexp = vec_elt_at_index (eid_indexes[0], i); |
| 1868 | update_adjacencies_by_map_index (lcm, is_local, map_indexp[0], |
| 1869 | remove_only); |
| 1870 | } |
| 1871 | } |
| 1872 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 1873 | static inline void |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1874 | remove_locator_from_locator_set (locator_set_t * ls, u32 * locit, |
| 1875 | u32 ls_index, u32 loc_id) |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1876 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1877 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1878 | u32 **ls_indexes = NULL; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1879 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1880 | ASSERT (ls != NULL); |
| 1881 | ASSERT (locit != NULL); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1882 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1883 | ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, locit[0]); |
| 1884 | pool_put_index (lcm->locator_pool, locit[0]); |
| 1885 | vec_del1 (ls->locator_indices, loc_id); |
| 1886 | vec_del1 (ls_indexes[0], ls_index); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | int |
| 1890 | 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] | 1891 | locator_set_t * ls, u32 * ls_result) |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1892 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1893 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1894 | locator_t *loc = NULL, *itloc = NULL; |
| 1895 | uword _p = (u32) ~ 0, *p = &_p; |
| 1896 | u32 loc_index = ~0, ls_index = ~0, *locit = NULL, **ls_indexes = NULL; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1897 | u32 loc_id = ~0; |
| 1898 | int ret = 0; |
| 1899 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1900 | ASSERT (a != NULL); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1901 | |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 1902 | if (vnet_lisp_enable_disable_status () == 0) |
| 1903 | { |
| 1904 | clib_warning ("LISP is disabled!"); |
| 1905 | return VNET_API_ERROR_LISP_DISABLED; |
| 1906 | } |
| 1907 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1908 | p = get_locator_set_index (a, p); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1909 | if (!p) |
| 1910 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1911 | clib_warning ("locator-set %v doesn't exist", a->name); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1912 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 1913 | } |
| 1914 | |
| 1915 | if (ls == 0) |
| 1916 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1917 | ls = pool_elt_at_index (lcm->locator_set_pool, p[0]); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1918 | if (!ls) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1919 | { |
| 1920 | clib_warning ("locator-set %d to be overwritten doesn't exist!", |
| 1921 | p[0]); |
| 1922 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 1923 | } |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1924 | } |
| 1925 | |
| 1926 | if (a->is_add) |
| 1927 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1928 | if (ls_result) |
| 1929 | ls_result[0] = p[0]; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1930 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1931 | /* allocate locators */ |
| 1932 | vec_foreach (itloc, a->locators) |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1933 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1934 | ret = is_locator_in_locator_set (lcm, ls, itloc); |
| 1935 | if (0 != ret) |
| 1936 | { |
| 1937 | return ret; |
| 1938 | } |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1939 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1940 | pool_get (lcm->locator_pool, loc); |
| 1941 | loc[0] = itloc[0]; |
| 1942 | loc_index = loc - lcm->locator_pool; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1943 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1944 | vec_add1 (ls->locator_indices, loc_index); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1945 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1946 | vec_validate (lcm->locator_to_locator_sets, loc_index); |
| 1947 | ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, |
| 1948 | loc_index); |
Filip Tehlar | c5bb0d6 | 2016-09-02 12:14:31 +0200 | [diff] [blame] | 1949 | vec_add1 (ls_indexes[0], p[0]); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1950 | } |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1951 | } |
| 1952 | else |
| 1953 | { |
| 1954 | ls_index = p[0]; |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1955 | u8 removed; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1956 | |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1957 | vec_foreach (itloc, a->locators) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1958 | { |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1959 | removed = 0; |
| 1960 | loc_id = 0; |
| 1961 | vec_foreach (locit, ls->locator_indices) |
| 1962 | { |
| 1963 | loc = pool_elt_at_index (lcm->locator_pool, locit[0]); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1964 | |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1965 | if (loc->local && loc->sw_if_index == itloc->sw_if_index) |
| 1966 | { |
| 1967 | removed = 1; |
| 1968 | remove_locator_from_locator_set (ls, locit, ls_index, loc_id); |
| 1969 | } |
| 1970 | if (0 == loc->local && |
| 1971 | !gid_address_cmp (&loc->address, &itloc->address)) |
| 1972 | { |
| 1973 | removed = 1; |
| 1974 | remove_locator_from_locator_set (ls, locit, ls_index, loc_id); |
| 1975 | } |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1976 | |
Filip Tehlar | 68d2e24 | 2017-04-21 12:05:58 +0200 | [diff] [blame] | 1977 | if (removed) |
| 1978 | { |
| 1979 | /* update fwd entries using this locator in DP */ |
| 1980 | update_fwd_entries_by_locator_set (lcm, loc->local, ls_index, |
| 1981 | vec_len (ls->locator_indices) |
| 1982 | == 0); |
| 1983 | } |
| 1984 | |
| 1985 | loc_id++; |
| 1986 | } |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1987 | } |
| 1988 | } |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 1989 | |
| 1990 | return 0; |
| 1991 | } |
| 1992 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1993 | int |
| 1994 | vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1995 | u32 * ls_result) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1996 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 1997 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 1998 | locator_set_t *ls; |
| 1999 | uword _p = (u32) ~ 0, *p = &_p; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 2000 | u32 ls_index; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2001 | u32 **eid_indexes; |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 2002 | int ret = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2003 | |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 2004 | if (vnet_lisp_enable_disable_status () == 0) |
| 2005 | { |
| 2006 | clib_warning ("LISP is disabled!"); |
| 2007 | return VNET_API_ERROR_LISP_DISABLED; |
| 2008 | } |
| 2009 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2010 | if (a->is_add) |
| 2011 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2012 | p = get_locator_set_index (a, p); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2013 | |
| 2014 | /* overwrite */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2015 | if (p && p[0] != (u32) ~ 0) |
| 2016 | { |
| 2017 | ls = pool_elt_at_index (lcm->locator_set_pool, p[0]); |
| 2018 | if (!ls) |
| 2019 | { |
| 2020 | clib_warning ("locator-set %d to be overwritten doesn't exist!", |
| 2021 | p[0]); |
| 2022 | return -1; |
| 2023 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2024 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2025 | /* clean locator to locator-set vectors and remove locators if |
| 2026 | * they're not part of another locator-set */ |
| 2027 | clean_locator_to_locator_set (lcm, p[0]); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2028 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2029 | /* remove locator indices from locator set */ |
| 2030 | vec_free (ls->locator_indices); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2031 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2032 | ls_index = p[0]; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2033 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2034 | if (ls_result) |
| 2035 | ls_result[0] = p[0]; |
| 2036 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2037 | /* new locator-set */ |
| 2038 | else |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2039 | { |
| 2040 | pool_get (lcm->locator_set_pool, ls); |
| 2041 | memset (ls, 0, sizeof (*ls)); |
| 2042 | ls_index = ls - lcm->locator_set_pool; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2043 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2044 | if (a->local) |
| 2045 | { |
| 2046 | ls->name = vec_dup (a->name); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2047 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2048 | if (!lcm->locator_set_index_by_name) |
| 2049 | lcm->locator_set_index_by_name = hash_create_vec ( |
| 2050 | /* size */ |
| 2051 | 0, |
| 2052 | sizeof |
| 2053 | (ls->name |
| 2054 | [0]), |
| 2055 | sizeof |
| 2056 | (uword)); |
| 2057 | hash_set_mem (lcm->locator_set_index_by_name, ls->name, |
| 2058 | ls_index); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2059 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2060 | /* mark as local locator-set */ |
| 2061 | vec_add1 (lcm->local_locator_set_indexes, ls_index); |
| 2062 | } |
| 2063 | ls->local = a->local; |
| 2064 | if (ls_result) |
| 2065 | ls_result[0] = ls_index; |
| 2066 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2067 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2068 | ret = vnet_lisp_add_del_locator (a, ls, NULL); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 2069 | if (0 != ret) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2070 | { |
| 2071 | return ret; |
| 2072 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2073 | } |
| 2074 | else |
| 2075 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2076 | p = get_locator_set_index (a, p); |
Andrej Kozemcak | 6a2e439 | 2016-05-26 12:20:08 +0200 | [diff] [blame] | 2077 | if (!p) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2078 | { |
| 2079 | clib_warning ("locator-set %v doesn't exists", a->name); |
| 2080 | return -1; |
| 2081 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2082 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2083 | ls = pool_elt_at_index (lcm->locator_set_pool, p[0]); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2084 | if (!ls) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2085 | { |
| 2086 | clib_warning ("locator-set with index %d doesn't exists", p[0]); |
| 2087 | return -1; |
| 2088 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2089 | |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2090 | if (lcm->mreq_itr_rlocs == p[0]) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2091 | { |
| 2092 | clib_warning ("Can't delete the locator-set used to constrain " |
| 2093 | "the itr-rlocs in map-requests!"); |
| 2094 | return -1; |
| 2095 | } |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2096 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2097 | if (vec_len (lcm->locator_set_to_eids) != 0) |
| 2098 | { |
| 2099 | eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, p[0]); |
| 2100 | if (vec_len (eid_indexes[0]) != 0) |
| 2101 | { |
| 2102 | clib_warning |
| 2103 | ("Can't delete a locator that supports a mapping!"); |
| 2104 | return -1; |
| 2105 | } |
| 2106 | } |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 2107 | |
| 2108 | /* clean locator to locator-sets data */ |
| 2109 | clean_locator_to_locator_set (lcm, p[0]); |
| 2110 | |
| 2111 | if (ls->local) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2112 | { |
| 2113 | u32 it, lsi; |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 2114 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2115 | vec_foreach_index (it, lcm->local_locator_set_indexes) |
| 2116 | { |
| 2117 | lsi = vec_elt (lcm->local_locator_set_indexes, it); |
| 2118 | if (lsi == p[0]) |
| 2119 | { |
| 2120 | vec_del1 (lcm->local_locator_set_indexes, it); |
| 2121 | break; |
| 2122 | } |
| 2123 | } |
| 2124 | hash_unset_mem (lcm->locator_set_index_by_name, ls->name); |
| 2125 | } |
| 2126 | vec_free (ls->name); |
| 2127 | vec_free (ls->locator_indices); |
| 2128 | pool_put (lcm->locator_set_pool, ls); |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 2129 | } |
| 2130 | return 0; |
| 2131 | } |
| 2132 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2133 | int |
| 2134 | vnet_lisp_rloc_probe_enable_disable (u8 is_enable) |
| 2135 | { |
| 2136 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2137 | |
| 2138 | lcm->rloc_probing = is_enable; |
| 2139 | return 0; |
| 2140 | } |
| 2141 | |
| 2142 | int |
| 2143 | vnet_lisp_map_register_enable_disable (u8 is_enable) |
| 2144 | { |
| 2145 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2146 | |
| 2147 | lcm->map_registering = is_enable; |
| 2148 | return 0; |
| 2149 | } |
| 2150 | |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2151 | clib_error_t * |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2152 | vnet_lisp_enable_disable (u8 is_enable) |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2153 | { |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 2154 | u32 vni, dp_table, **rmts; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2155 | clib_error_t *error = 0; |
| 2156 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2157 | vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a; |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2158 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2159 | a->is_en = is_enable; |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2160 | error = vnet_lisp_gpe_enable_disable (a); |
| 2161 | if (error) |
| 2162 | { |
| 2163 | return clib_error_return (0, "failed to %s data-plane!", |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2164 | a->is_en ? "enable" : "disable"); |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2165 | } |
| 2166 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2167 | if (is_enable) |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2168 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 2169 | /* enable all l2 and l3 ifaces */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2170 | |
| 2171 | /* *INDENT-OFF* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 2172 | hash_foreach(vni, dp_table, lcm->table_id_by_vni, ({ |
| 2173 | dp_add_del_iface(lcm, vni, 0, 1); |
| 2174 | })); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 2175 | hash_foreach(vni, dp_table, lcm->bd_id_by_vni, ({ |
| 2176 | dp_add_del_iface(lcm, vni, /* is_l2 */ 1, 1); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2177 | })); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2178 | /* *INDENT-ON* */ |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2179 | } |
| 2180 | else |
| 2181 | { |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2182 | /* clear interface table */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2183 | hash_free (lcm->fwd_entry_by_mapping_index); |
| 2184 | pool_free (lcm->fwd_entry_pool); |
Alberto Rodriguez-Natal | 8d66f9d | 2017-09-09 14:15:15 -0700 | [diff] [blame] | 2185 | /* Clear state tracking rmt-lcl fwd entries */ |
| 2186 | /* *INDENT-OFF* */ |
| 2187 | pool_foreach(rmts, lcm->lcl_to_rmt_adjacencies, |
| 2188 | { |
| 2189 | vec_free(rmts[0]); |
| 2190 | }); |
| 2191 | /* *INDENT-ON* */ |
| 2192 | hash_free (lcm->lcl_to_rmt_adjs_by_lcl_idx); |
| 2193 | pool_free (lcm->lcl_to_rmt_adjacencies); |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2194 | } |
| 2195 | |
| 2196 | /* update global flag */ |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2197 | lcm->is_enabled = is_enable; |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2198 | |
| 2199 | return 0; |
| 2200 | } |
| 2201 | |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2202 | u8 |
| 2203 | vnet_lisp_enable_disable_status (void) |
| 2204 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2205 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 2206 | return lcm->is_enabled; |
| 2207 | } |
| 2208 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2209 | int |
| 2210 | vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a) |
| 2211 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2212 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2213 | u32 i; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2214 | lisp_msmr_t _mr, *mr = &_mr; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2215 | |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 2216 | if (vnet_lisp_enable_disable_status () == 0) |
| 2217 | { |
| 2218 | clib_warning ("LISP is disabled!"); |
| 2219 | return VNET_API_ERROR_LISP_DISABLED; |
| 2220 | } |
| 2221 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2222 | if (a->is_add) |
| 2223 | { |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2224 | |
| 2225 | if (get_map_resolver (&a->address)) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2226 | { |
| 2227 | clib_warning ("map-resolver %U already exists!", format_ip_address, |
| 2228 | &a->address); |
| 2229 | return -1; |
| 2230 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2231 | |
| 2232 | memset (mr, 0, sizeof (*mr)); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2233 | ip_address_copy (&mr->address, &a->address); |
| 2234 | vec_add1 (lcm->map_resolvers, *mr); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2235 | |
| 2236 | if (vec_len (lcm->map_resolvers) == 1) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2237 | lcm->do_map_resolver_election = 1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2238 | } |
| 2239 | else |
| 2240 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2241 | for (i = 0; i < vec_len (lcm->map_resolvers); i++) |
| 2242 | { |
| 2243 | mr = vec_elt_at_index (lcm->map_resolvers, i); |
| 2244 | if (!ip_address_cmp (&mr->address, &a->address)) |
| 2245 | { |
| 2246 | if (!ip_address_cmp (&mr->address, &lcm->active_map_resolver)) |
| 2247 | lcm->do_map_resolver_election = 1; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2248 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2249 | vec_del1 (lcm->map_resolvers, i); |
| 2250 | break; |
| 2251 | } |
| 2252 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2253 | } |
| 2254 | return 0; |
| 2255 | } |
| 2256 | |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2257 | int |
Filip Tehlar | 1e553a0 | 2017-08-02 12:45:07 +0200 | [diff] [blame] | 2258 | vnet_lisp_map_register_set_ttl (u32 ttl) |
| 2259 | { |
| 2260 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2261 | lcm->map_register_ttl = ttl; |
| 2262 | return 0; |
| 2263 | } |
| 2264 | |
| 2265 | u32 |
| 2266 | vnet_lisp_map_register_get_ttl (void) |
| 2267 | { |
| 2268 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2269 | return lcm->map_register_ttl; |
| 2270 | } |
| 2271 | |
| 2272 | int |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2273 | vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a) |
| 2274 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2275 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 2276 | uword *p = 0; |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2277 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2278 | if (vnet_lisp_enable_disable_status () == 0) |
| 2279 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2280 | clib_warning ("LISP is disabled!"); |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 2281 | return VNET_API_ERROR_LISP_DISABLED; |
| 2282 | } |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2283 | |
| 2284 | if (a->is_add) |
| 2285 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2286 | p = hash_get_mem (lcm->locator_set_index_by_name, a->locator_set_name); |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2287 | if (!p) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2288 | { |
| 2289 | clib_warning ("locator-set %v doesn't exist", a->locator_set_name); |
| 2290 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 2291 | } |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2292 | |
| 2293 | lcm->mreq_itr_rlocs = p[0]; |
| 2294 | } |
| 2295 | else |
| 2296 | { |
| 2297 | lcm->mreq_itr_rlocs = ~0; |
| 2298 | } |
| 2299 | |
| 2300 | return 0; |
| 2301 | } |
| 2302 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2303 | /* Statistics (not really errors) */ |
| 2304 | #define foreach_lisp_cp_lookup_error \ |
| 2305 | _(DROP, "drop") \ |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 2306 | _(MAP_REQUESTS_SENT, "map-request sent") \ |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 2307 | _(ARP_REPLY_TX, "ARP replies sent") \ |
| 2308 | _(NDP_NEIGHBOR_ADVERTISEMENT_TX, \ |
| 2309 | "neighbor advertisement sent") |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2310 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2311 | static char *lisp_cp_lookup_error_strings[] = { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2312 | #define _(sym,string) string, |
| 2313 | foreach_lisp_cp_lookup_error |
| 2314 | #undef _ |
| 2315 | }; |
| 2316 | |
| 2317 | typedef enum |
| 2318 | { |
| 2319 | #define _(sym,str) LISP_CP_LOOKUP_ERROR_##sym, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2320 | foreach_lisp_cp_lookup_error |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2321 | #undef _ |
| 2322 | LISP_CP_LOOKUP_N_ERROR, |
| 2323 | } lisp_cp_lookup_error_t; |
| 2324 | |
| 2325 | typedef enum |
| 2326 | { |
| 2327 | LISP_CP_LOOKUP_NEXT_DROP, |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 2328 | LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX, |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2329 | LISP_CP_LOOKUP_N_NEXT, |
| 2330 | } lisp_cp_lookup_next_t; |
| 2331 | |
| 2332 | typedef struct |
| 2333 | { |
| 2334 | gid_address_t dst_eid; |
Andrej Kozemcak | 94e3476 | 2016-05-25 12:43:21 +0200 | [diff] [blame] | 2335 | ip_address_t map_resolver_ip; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2336 | } lisp_cp_lookup_trace_t; |
| 2337 | |
| 2338 | u8 * |
| 2339 | format_lisp_cp_lookup_trace (u8 * s, va_list * args) |
| 2340 | { |
| 2341 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 2342 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2343 | lisp_cp_lookup_trace_t *t = va_arg (*args, lisp_cp_lookup_trace_t *); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2344 | |
| 2345 | s = format (s, "LISP-CP-LOOKUP: map-resolver: %U destination eid %U", |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2346 | format_ip_address, &t->map_resolver_ip, format_gid_address, |
| 2347 | &t->dst_eid); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2348 | return s; |
| 2349 | } |
| 2350 | |
Florin Coras | 1c49484 | 2016-06-16 21:08:56 +0200 | [diff] [blame] | 2351 | int |
| 2352 | get_mr_and_local_iface_ip (lisp_cp_main_t * lcm, ip_address_t * mr_ip, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2353 | ip_address_t * sloc) |
Florin Coras | c2c9008 | 2016-06-13 18:37:15 +0200 | [diff] [blame] | 2354 | { |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2355 | lisp_msmr_t *mrit; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2356 | ip_address_t *a; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2357 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2358 | if (vec_len (lcm->map_resolvers) == 0) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2359 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2360 | clib_warning ("No map-resolver configured"); |
Florin Coras | 1c49484 | 2016-06-16 21:08:56 +0200 | [diff] [blame] | 2361 | return 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2362 | } |
| 2363 | |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2364 | /* find the first mr ip we have a route to and the ip of the |
| 2365 | * iface that has a route to it */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2366 | vec_foreach (mrit, lcm->map_resolvers) |
| 2367 | { |
| 2368 | a = &mrit->address; |
| 2369 | if (0 != ip_fib_get_first_egress_ip_for_dst (lcm, a, sloc)) |
| 2370 | { |
| 2371 | ip_address_copy (mr_ip, a); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2372 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2373 | /* also update globals */ |
| 2374 | return 1; |
| 2375 | } |
| 2376 | } |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2377 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2378 | clib_warning ("Can't find map-resolver and local interface ip!"); |
Florin Coras | 1c49484 | 2016-06-16 21:08:56 +0200 | [diff] [blame] | 2379 | return 0; |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2380 | } |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2381 | |
Filip Tehlar | beceab9 | 2016-04-20 17:21:55 +0200 | [diff] [blame] | 2382 | static gid_address_t * |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2383 | build_itr_rloc_list (lisp_cp_main_t * lcm, locator_set_t * loc_set) |
| 2384 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2385 | void *addr; |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2386 | u32 i; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2387 | locator_t *loc; |
| 2388 | u32 *loc_indexp; |
| 2389 | ip_interface_address_t *ia = 0; |
| 2390 | gid_address_t gid_data, *gid = &gid_data; |
| 2391 | gid_address_t *rlocs = 0; |
| 2392 | ip_prefix_t *ippref = &gid_address_ippref (gid); |
| 2393 | ip_address_t *rloc = &ip_prefix_addr (ippref); |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2394 | |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 2395 | memset (gid, 0, sizeof (gid[0])); |
Filip Tehlar | beceab9 | 2016-04-20 17:21:55 +0200 | [diff] [blame] | 2396 | gid_address_type (gid) = GID_ADDR_IP_PREFIX; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2397 | for (i = 0; i < vec_len (loc_set->locator_indices); i++) |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2398 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2399 | loc_indexp = vec_elt_at_index (loc_set->locator_indices, i); |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2400 | loc = pool_elt_at_index (lcm->locator_pool, loc_indexp[0]); |
| 2401 | |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2402 | /* Add ipv4 locators first TODO sort them */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2403 | |
| 2404 | /* *INDENT-OFF* */ |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2405 | foreach_ip_interface_address (&lcm->im4->lookup_main, ia, |
| 2406 | loc->sw_if_index, 1 /* unnumbered */, |
| 2407 | ({ |
Florin Coras | 1c49484 | 2016-06-16 21:08:56 +0200 | [diff] [blame] | 2408 | addr = ip_interface_address_get_address (&lcm->im4->lookup_main, ia); |
| 2409 | ip_address_set (rloc, addr, IP4); |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2410 | ip_prefix_len (ippref) = 32; |
Andrej Kozemcak | 438109d | 2016-07-22 12:54:12 +0200 | [diff] [blame] | 2411 | ip_prefix_normalize (ippref); |
Filip Tehlar | beceab9 | 2016-04-20 17:21:55 +0200 | [diff] [blame] | 2412 | vec_add1 (rlocs, gid[0]); |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2413 | })); |
| 2414 | |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2415 | /* Add ipv6 locators */ |
| 2416 | foreach_ip_interface_address (&lcm->im6->lookup_main, ia, |
| 2417 | loc->sw_if_index, 1 /* unnumbered */, |
| 2418 | ({ |
Florin Coras | 1c49484 | 2016-06-16 21:08:56 +0200 | [diff] [blame] | 2419 | addr = ip_interface_address_get_address (&lcm->im6->lookup_main, ia); |
| 2420 | ip_address_set (rloc, addr, IP6); |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2421 | ip_prefix_len (ippref) = 128; |
Andrej Kozemcak | 438109d | 2016-07-22 12:54:12 +0200 | [diff] [blame] | 2422 | ip_prefix_normalize (ippref); |
Filip Tehlar | beceab9 | 2016-04-20 17:21:55 +0200 | [diff] [blame] | 2423 | vec_add1 (rlocs, gid[0]); |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2424 | })); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2425 | /* *INDENT-ON* */ |
| 2426 | |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2427 | } |
| 2428 | return rlocs; |
| 2429 | } |
| 2430 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2431 | static vlib_buffer_t * |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2432 | build_map_request (lisp_cp_main_t * lcm, gid_address_t * deid, |
| 2433 | ip_address_t * sloc, ip_address_t * rloc, |
| 2434 | gid_address_t * itr_rlocs, u64 * nonce_res, u32 * bi_res) |
| 2435 | { |
| 2436 | vlib_buffer_t *b; |
| 2437 | u32 bi; |
| 2438 | vlib_main_t *vm = lcm->vlib_main; |
| 2439 | |
| 2440 | if (vlib_buffer_alloc (vm, &bi, 1) != 1) |
| 2441 | { |
| 2442 | clib_warning ("Can't allocate buffer for Map-Request!"); |
| 2443 | return 0; |
| 2444 | } |
| 2445 | |
| 2446 | b = vlib_get_buffer (vm, bi); |
| 2447 | |
| 2448 | /* leave some space for the encap headers */ |
| 2449 | vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN); |
| 2450 | |
| 2451 | /* put lisp msg */ |
| 2452 | lisp_msg_put_mreq (lcm, b, NULL, deid, itr_rlocs, 0 /* smr invoked */ , |
| 2453 | 1 /* rloc probe */ , nonce_res); |
| 2454 | |
| 2455 | /* push outer ip header */ |
| 2456 | pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 2457 | rloc, 1); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2458 | |
| 2459 | bi_res[0] = bi; |
| 2460 | |
| 2461 | return b; |
| 2462 | } |
| 2463 | |
| 2464 | static vlib_buffer_t * |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2465 | build_encapsulated_map_request (lisp_cp_main_t * lcm, |
| 2466 | gid_address_t * seid, gid_address_t * deid, |
| 2467 | locator_set_t * loc_set, ip_address_t * mr_ip, |
| 2468 | ip_address_t * sloc, u8 is_smr_invoked, |
| 2469 | u64 * nonce_res, u32 * bi_res) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2470 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2471 | vlib_buffer_t *b; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2472 | u32 bi; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2473 | gid_address_t *rlocs = 0; |
| 2474 | vlib_main_t *vm = lcm->vlib_main; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2475 | |
| 2476 | if (vlib_buffer_alloc (vm, &bi, 1) != 1) |
| 2477 | { |
| 2478 | clib_warning ("Can't allocate buffer for Map-Request!"); |
| 2479 | return 0; |
| 2480 | } |
| 2481 | |
| 2482 | b = vlib_get_buffer (vm, bi); |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 2483 | b->flags = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2484 | |
| 2485 | /* leave some space for the encap headers */ |
| 2486 | vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN); |
| 2487 | |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2488 | /* get rlocs */ |
| 2489 | rlocs = build_itr_rloc_list (lcm, loc_set); |
| 2490 | |
Filip Tehlar | d5fcc46 | 2016-10-17 16:20:18 +0200 | [diff] [blame] | 2491 | if (MR_MODE_SRC_DST == lcm->map_request_mode |
| 2492 | && GID_ADDR_SRC_DST != gid_address_type (deid)) |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 2493 | { |
| 2494 | gid_address_t sd; |
| 2495 | memset (&sd, 0, sizeof (sd)); |
| 2496 | build_src_dst (&sd, seid, deid); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2497 | lisp_msg_put_mreq (lcm, b, seid, &sd, rlocs, is_smr_invoked, |
| 2498 | 0 /* rloc probe */ , nonce_res); |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 2499 | } |
| 2500 | else |
| 2501 | { |
| 2502 | /* put lisp msg */ |
| 2503 | lisp_msg_put_mreq (lcm, b, seid, deid, rlocs, is_smr_invoked, |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2504 | 0 /* rloc probe */ , nonce_res); |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 2505 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2506 | |
| 2507 | /* push ecm: udp-ip-lisp */ |
| 2508 | lisp_msg_push_ecm (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, seid, deid); |
| 2509 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2510 | /* push outer ip header */ |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 2511 | pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 2512 | mr_ip, 1); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2513 | |
| 2514 | bi_res[0] = bi; |
Filip Tehlar | 254b036 | 2016-04-07 10:04:34 +0200 | [diff] [blame] | 2515 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2516 | vec_free (rlocs); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2517 | return b; |
| 2518 | } |
| 2519 | |
| 2520 | static void |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2521 | reset_pending_mr_counters (pending_map_request_t * r) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2522 | { |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2523 | r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME; |
| 2524 | r->retries_num = 0; |
| 2525 | } |
| 2526 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2527 | #define foreach_msmr \ |
| 2528 | _(server) \ |
| 2529 | _(resolver) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2530 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2531 | #define _(name) \ |
| 2532 | static int \ |
| 2533 | elect_map_ ## name (lisp_cp_main_t * lcm) \ |
| 2534 | { \ |
| 2535 | lisp_msmr_t *mr; \ |
| 2536 | vec_foreach (mr, lcm->map_ ## name ## s) \ |
| 2537 | { \ |
| 2538 | if (!mr->is_down) \ |
| 2539 | { \ |
| 2540 | ip_address_copy (&lcm->active_map_ ##name, &mr->address); \ |
| 2541 | lcm->do_map_ ## name ## _election = 0; \ |
| 2542 | return 1; \ |
| 2543 | } \ |
| 2544 | } \ |
| 2545 | return 0; \ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2546 | } |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2547 | foreach_msmr |
| 2548 | #undef _ |
| 2549 | static void |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2550 | free_map_register_records (mapping_t * maps) |
| 2551 | { |
| 2552 | mapping_t *map; |
| 2553 | vec_foreach (map, maps) vec_free (map->locators); |
| 2554 | |
| 2555 | vec_free (maps); |
| 2556 | } |
| 2557 | |
| 2558 | static void |
| 2559 | add_locators (lisp_cp_main_t * lcm, mapping_t * m, u32 locator_set_index, |
| 2560 | ip_address_t * probed_loc) |
| 2561 | { |
| 2562 | u32 *li; |
| 2563 | locator_t *loc, new; |
| 2564 | ip_interface_address_t *ia = 0; |
| 2565 | void *addr; |
| 2566 | ip_address_t *new_ip = &gid_address_ip (&new.address); |
| 2567 | |
| 2568 | m->locators = 0; |
| 2569 | locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool, |
| 2570 | locator_set_index); |
| 2571 | vec_foreach (li, ls->locator_indices) |
| 2572 | { |
| 2573 | loc = pool_elt_at_index (lcm->locator_pool, li[0]); |
| 2574 | new = loc[0]; |
| 2575 | if (loc->local) |
| 2576 | { |
| 2577 | /* *INDENT-OFF* */ |
| 2578 | foreach_ip_interface_address (&lcm->im4->lookup_main, ia, |
| 2579 | loc->sw_if_index, 1 /* unnumbered */, |
| 2580 | ({ |
| 2581 | addr = ip_interface_address_get_address (&lcm->im4->lookup_main, |
| 2582 | ia); |
| 2583 | ip_address_set (new_ip, addr, IP4); |
| 2584 | })); |
| 2585 | |
| 2586 | /* Add ipv6 locators */ |
| 2587 | foreach_ip_interface_address (&lcm->im6->lookup_main, ia, |
| 2588 | loc->sw_if_index, 1 /* unnumbered */, |
| 2589 | ({ |
| 2590 | addr = ip_interface_address_get_address (&lcm->im6->lookup_main, |
| 2591 | ia); |
| 2592 | ip_address_set (new_ip, addr, IP6); |
| 2593 | })); |
| 2594 | /* *INDENT-ON* */ |
| 2595 | |
| 2596 | if (probed_loc && ip_address_cmp (probed_loc, new_ip) == 0) |
| 2597 | new.probed = 1; |
| 2598 | } |
| 2599 | vec_add1 (m->locators, new); |
| 2600 | } |
| 2601 | } |
| 2602 | |
| 2603 | static mapping_t * |
| 2604 | build_map_register_record_list (lisp_cp_main_t * lcm) |
| 2605 | { |
| 2606 | mapping_t *recs = 0, rec, *m; |
| 2607 | |
| 2608 | /* *INDENT-OFF* */ |
| 2609 | pool_foreach(m, lcm->mapping_pool, |
| 2610 | { |
| 2611 | /* for now build only local mappings */ |
| 2612 | if (!m->local) |
| 2613 | continue; |
| 2614 | |
| 2615 | rec = m[0]; |
| 2616 | add_locators (lcm, &rec, m->locator_set_index, NULL); |
| 2617 | vec_add1 (recs, rec); |
| 2618 | }); |
| 2619 | /* *INDENT-ON* */ |
| 2620 | |
| 2621 | return recs; |
| 2622 | } |
| 2623 | |
| 2624 | static int |
| 2625 | update_map_register_auth_data (map_register_hdr_t * map_reg_hdr, |
| 2626 | lisp_key_type_t key_id, u8 * key, |
| 2627 | u16 auth_data_len, u32 msg_len) |
| 2628 | { |
| 2629 | MREG_KEY_ID (map_reg_hdr) = clib_host_to_net_u16 (key_id); |
| 2630 | MREG_AUTH_DATA_LEN (map_reg_hdr) = clib_host_to_net_u16 (auth_data_len); |
| 2631 | |
| 2632 | unsigned char *result = HMAC (get_encrypt_fcn (key_id), key, vec_len (key), |
| 2633 | (unsigned char *) map_reg_hdr, msg_len, NULL, |
| 2634 | NULL); |
| 2635 | clib_memcpy (MREG_DATA (map_reg_hdr), result, auth_data_len); |
| 2636 | |
| 2637 | return 0; |
| 2638 | } |
| 2639 | |
| 2640 | static vlib_buffer_t * |
| 2641 | build_map_register (lisp_cp_main_t * lcm, ip_address_t * sloc, |
| 2642 | ip_address_t * ms_ip, u64 * nonce_res, u8 want_map_notif, |
| 2643 | mapping_t * records, lisp_key_type_t key_id, u8 * key, |
| 2644 | u32 * bi_res) |
| 2645 | { |
| 2646 | void *map_reg_hdr; |
| 2647 | vlib_buffer_t *b; |
| 2648 | u32 bi, auth_data_len = 0, msg_len = 0; |
| 2649 | vlib_main_t *vm = lcm->vlib_main; |
| 2650 | |
| 2651 | if (vlib_buffer_alloc (vm, &bi, 1) != 1) |
| 2652 | { |
| 2653 | clib_warning ("Can't allocate buffer for Map-Register!"); |
| 2654 | return 0; |
| 2655 | } |
| 2656 | |
| 2657 | b = vlib_get_buffer (vm, bi); |
| 2658 | |
| 2659 | /* leave some space for the encap headers */ |
| 2660 | vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN); |
| 2661 | |
| 2662 | auth_data_len = auth_data_len_by_key_id (key_id); |
| 2663 | map_reg_hdr = lisp_msg_put_map_register (b, records, want_map_notif, |
| 2664 | auth_data_len, nonce_res, |
| 2665 | &msg_len); |
| 2666 | |
| 2667 | update_map_register_auth_data (map_reg_hdr, key_id, key, auth_data_len, |
| 2668 | msg_len); |
| 2669 | |
| 2670 | /* push outer ip header */ |
| 2671 | pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc, |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 2672 | ms_ip, 1); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2673 | |
| 2674 | bi_res[0] = bi; |
| 2675 | return b; |
| 2676 | } |
| 2677 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2678 | #define _(name) \ |
| 2679 | static int \ |
| 2680 | get_egress_map_ ##name## _ip (lisp_cp_main_t * lcm, ip_address_t * ip) \ |
| 2681 | { \ |
| 2682 | lisp_msmr_t *mr; \ |
| 2683 | while (lcm->do_map_ ## name ## _election \ |
| 2684 | | (0 == ip_fib_get_first_egress_ip_for_dst \ |
| 2685 | (lcm, &lcm->active_map_ ##name, ip))) \ |
| 2686 | { \ |
| 2687 | if (0 == elect_map_ ## name (lcm)) \ |
| 2688 | /* all map resolvers/servers are down */ \ |
| 2689 | { \ |
| 2690 | /* restart MR/MS checking by marking all of them up */ \ |
| 2691 | vec_foreach (mr, lcm->map_ ## name ## s) mr->is_down = 0; \ |
| 2692 | return -1; \ |
| 2693 | } \ |
| 2694 | } \ |
| 2695 | return 0; \ |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2696 | } |
| 2697 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2698 | foreach_msmr |
| 2699 | #undef _ |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2700 | /* CP output statistics */ |
| 2701 | #define foreach_lisp_cp_output_error \ |
| 2702 | _(MAP_REGISTERS_SENT, "map-registers sent") \ |
| 2703 | _(RLOC_PROBES_SENT, "rloc-probes sent") |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2704 | static char *lisp_cp_output_error_strings[] = { |
| 2705 | #define _(sym,string) string, |
| 2706 | foreach_lisp_cp_output_error |
| 2707 | #undef _ |
| 2708 | }; |
| 2709 | |
| 2710 | typedef enum |
| 2711 | { |
| 2712 | #define _(sym,str) LISP_CP_OUTPUT_ERROR_##sym, |
| 2713 | foreach_lisp_cp_output_error |
| 2714 | #undef _ |
| 2715 | LISP_CP_OUTPUT_N_ERROR, |
| 2716 | } lisp_cp_output_error_t; |
| 2717 | |
| 2718 | static uword |
| 2719 | lisp_cp_output (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2720 | vlib_frame_t * from_frame) |
| 2721 | { |
| 2722 | return 0; |
| 2723 | } |
| 2724 | |
| 2725 | /* dummy node used only for statistics */ |
| 2726 | /* *INDENT-OFF* */ |
| 2727 | VLIB_REGISTER_NODE (lisp_cp_output_node) = { |
| 2728 | .function = lisp_cp_output, |
| 2729 | .name = "lisp-cp-output", |
| 2730 | .vector_size = sizeof (u32), |
| 2731 | .format_trace = format_lisp_cp_input_trace, |
| 2732 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 2733 | |
| 2734 | .n_errors = LISP_CP_OUTPUT_N_ERROR, |
| 2735 | .error_strings = lisp_cp_output_error_strings, |
| 2736 | |
| 2737 | .n_next_nodes = LISP_CP_INPUT_N_NEXT, |
| 2738 | |
| 2739 | .next_nodes = { |
| 2740 | [LISP_CP_INPUT_NEXT_DROP] = "error-drop", |
| 2741 | }, |
| 2742 | }; |
| 2743 | /* *INDENT-ON* */ |
| 2744 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2745 | static int |
| 2746 | send_rloc_probe (lisp_cp_main_t * lcm, gid_address_t * deid, |
| 2747 | u32 local_locator_set_index, ip_address_t * sloc, |
| 2748 | ip_address_t * rloc) |
| 2749 | { |
| 2750 | locator_set_t *ls; |
| 2751 | u32 bi; |
| 2752 | vlib_buffer_t *b; |
| 2753 | vlib_frame_t *f; |
| 2754 | u64 nonce = 0; |
| 2755 | u32 next_index, *to_next; |
| 2756 | gid_address_t *itr_rlocs; |
| 2757 | |
| 2758 | ls = pool_elt_at_index (lcm->locator_set_pool, local_locator_set_index); |
| 2759 | itr_rlocs = build_itr_rloc_list (lcm, ls); |
| 2760 | |
| 2761 | b = build_map_request (lcm, deid, sloc, rloc, itr_rlocs, &nonce, &bi); |
| 2762 | vec_free (itr_rlocs); |
| 2763 | if (!b) |
| 2764 | return -1; |
| 2765 | |
| 2766 | vnet_buffer (b)->sw_if_index[VLIB_TX] = 0; |
| 2767 | |
Filip Tehlar | 272c69e | 2017-02-15 16:40:35 +0100 | [diff] [blame] | 2768 | next_index = (ip_addr_version (rloc) == IP4) ? |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2769 | ip4_lookup_node.index : ip6_lookup_node.index; |
| 2770 | |
| 2771 | f = vlib_get_frame_to_node (lcm->vlib_main, next_index); |
| 2772 | |
| 2773 | /* Enqueue the packet */ |
| 2774 | to_next = vlib_frame_vector_args (f); |
| 2775 | to_next[0] = bi; |
| 2776 | f->n_vectors = 1; |
| 2777 | vlib_put_frame_to_node (lcm->vlib_main, next_index, f); |
| 2778 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2779 | return 0; |
| 2780 | } |
| 2781 | |
| 2782 | static int |
| 2783 | send_rloc_probes (lisp_cp_main_t * lcm) |
| 2784 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2785 | u8 lprio = 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2786 | mapping_t *lm; |
| 2787 | fwd_entry_t *e; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2788 | locator_pair_t *lp; |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2789 | u32 si, rloc_probes_sent = 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2790 | |
| 2791 | /* *INDENT-OFF* */ |
| 2792 | pool_foreach (e, lcm->fwd_entry_pool, |
| 2793 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2794 | if (vec_len (e->locator_pairs) == 0) |
| 2795 | continue; |
| 2796 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2797 | si = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &e->leid); |
| 2798 | if (~0 == si) |
| 2799 | { |
| 2800 | clib_warning ("internal error: cannot find local eid %U in " |
| 2801 | "map-cache!", format_gid_address, &e->leid); |
| 2802 | continue; |
| 2803 | } |
| 2804 | lm = pool_elt_at_index (lcm->mapping_pool, si); |
| 2805 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2806 | /* get the best (lowest) priority */ |
| 2807 | lprio = e->locator_pairs[0].priority; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2808 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2809 | /* send rloc-probe for pair(s) with the best remote locator priority */ |
| 2810 | vec_foreach (lp, e->locator_pairs) |
| 2811 | { |
| 2812 | if (lp->priority != lprio) |
| 2813 | break; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2814 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2815 | /* get first remote locator */ |
| 2816 | send_rloc_probe (lcm, &e->reid, lm->locator_set_index, &lp->lcl_loc, |
| 2817 | &lp->rmt_loc); |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2818 | rloc_probes_sent++; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2819 | } |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2820 | }); |
| 2821 | /* *INDENT-ON* */ |
| 2822 | |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2823 | vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index, |
| 2824 | LISP_CP_OUTPUT_ERROR_RLOC_PROBES_SENT, |
| 2825 | rloc_probes_sent); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2826 | return 0; |
| 2827 | } |
| 2828 | |
| 2829 | static int |
| 2830 | send_map_register (lisp_cp_main_t * lcm, u8 want_map_notif) |
| 2831 | { |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2832 | pending_map_register_t *pmr; |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2833 | u32 bi, map_registers_sent = 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2834 | vlib_buffer_t *b; |
| 2835 | ip_address_t sloc; |
| 2836 | vlib_frame_t *f; |
| 2837 | u64 nonce = 0; |
| 2838 | u32 next_index, *to_next; |
Filip Tehlar | cf121c8 | 2017-05-03 10:12:44 +0200 | [diff] [blame] | 2839 | mapping_t *records, *r, *group, *k; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2840 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2841 | if (get_egress_map_server_ip (lcm, &sloc) < 0) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2842 | return -1; |
| 2843 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2844 | records = build_map_register_record_list (lcm); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2845 | if (!records) |
| 2846 | return -1; |
| 2847 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2848 | vec_foreach (r, records) |
| 2849 | { |
| 2850 | u8 *key = r->key; |
| 2851 | u8 key_id = r->key_id; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2852 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2853 | if (!key) |
| 2854 | continue; /* no secret key -> map-register cannot be sent */ |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2855 | |
Filip Tehlar | cf121c8 | 2017-05-03 10:12:44 +0200 | [diff] [blame] | 2856 | group = 0; |
| 2857 | vec_add1 (group, r[0]); |
| 2858 | |
| 2859 | /* group mappings that share common key */ |
| 2860 | for (k = r + 1; k < vec_end (records); k++) |
| 2861 | { |
| 2862 | if (k->key_id != r->key_id) |
| 2863 | continue; |
| 2864 | |
| 2865 | if (vec_is_equal (k->key, r->key)) |
| 2866 | { |
| 2867 | vec_add1 (group, k[0]); |
| 2868 | k->key = 0; /* don't process this mapping again */ |
| 2869 | } |
| 2870 | } |
| 2871 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2872 | b = build_map_register (lcm, &sloc, &lcm->active_map_server, &nonce, |
| 2873 | want_map_notif, group, key_id, key, &bi); |
Filip Tehlar | cf121c8 | 2017-05-03 10:12:44 +0200 | [diff] [blame] | 2874 | vec_free (group); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2875 | if (!b) |
| 2876 | continue; |
| 2877 | |
| 2878 | vnet_buffer (b)->sw_if_index[VLIB_TX] = 0; |
| 2879 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2880 | next_index = (ip_addr_version (&lcm->active_map_server) == IP4) ? |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2881 | ip4_lookup_node.index : ip6_lookup_node.index; |
| 2882 | |
| 2883 | f = vlib_get_frame_to_node (lcm->vlib_main, next_index); |
| 2884 | |
| 2885 | /* Enqueue the packet */ |
| 2886 | to_next = vlib_frame_vector_args (f); |
| 2887 | to_next[0] = bi; |
| 2888 | f->n_vectors = 1; |
| 2889 | vlib_put_frame_to_node (lcm->vlib_main, next_index, f); |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2890 | map_registers_sent++; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2891 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 2892 | pool_get (lcm->pending_map_registers_pool, pmr); |
| 2893 | memset (pmr, 0, sizeof (*pmr)); |
| 2894 | pmr->time_to_expire = PENDING_MREG_EXPIRATION_TIME; |
| 2895 | hash_set (lcm->map_register_messages_by_nonce, nonce, |
| 2896 | pmr - lcm->pending_map_registers_pool); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 2897 | } |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2898 | free_map_register_records (records); |
| 2899 | |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 2900 | vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index, |
| 2901 | LISP_CP_OUTPUT_ERROR_MAP_REGISTERS_SENT, |
| 2902 | map_registers_sent); |
| 2903 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 2904 | return 0; |
| 2905 | } |
| 2906 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2907 | #define send_encapsulated_map_request(lcm, seid, deid, smr) \ |
| 2908 | _send_encapsulated_map_request(lcm, seid, deid, smr, 0) |
| 2909 | |
| 2910 | #define resend_encapsulated_map_request(lcm, seid, deid, smr) \ |
| 2911 | _send_encapsulated_map_request(lcm, seid, deid, smr, 1) |
| 2912 | |
| 2913 | static int |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2914 | _send_encapsulated_map_request (lisp_cp_main_t * lcm, |
| 2915 | gid_address_t * seid, gid_address_t * deid, |
| 2916 | u8 is_smr_invoked, u8 is_resend) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2917 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2918 | u32 next_index, bi = 0, *to_next, map_index; |
| 2919 | vlib_buffer_t *b; |
| 2920 | vlib_frame_t *f; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2921 | u64 nonce = 0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2922 | locator_set_t *loc_set; |
| 2923 | mapping_t *map; |
| 2924 | pending_map_request_t *pmr, *duplicate_pmr = 0; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2925 | ip_address_t sloc; |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2926 | u32 ls_index; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2927 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2928 | /* if there is already a pending request remember it */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2929 | |
| 2930 | /* *INDENT-OFF* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2931 | pool_foreach(pmr, lcm->pending_map_requests_pool, |
| 2932 | ({ |
| 2933 | if (!gid_address_cmp (&pmr->src, seid) |
| 2934 | && !gid_address_cmp (&pmr->dst, deid)) |
| 2935 | { |
| 2936 | duplicate_pmr = pmr; |
| 2937 | break; |
| 2938 | } |
| 2939 | })); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2940 | /* *INDENT-ON* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 2941 | |
| 2942 | if (!is_resend && duplicate_pmr) |
| 2943 | { |
| 2944 | /* don't send the request if there is a pending map request already */ |
| 2945 | return 0; |
| 2946 | } |
| 2947 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2948 | /* get locator-set for seid */ |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 2949 | if (!lcm->lisp_pitr && gid_address_type (deid) != GID_ADDR_NSH) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2950 | { |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 2951 | map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid); |
| 2952 | if (map_index == ~0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2953 | { |
| 2954 | clib_warning ("No local mapping found in eid-table for %U!", |
| 2955 | format_gid_address, seid); |
| 2956 | return -1; |
| 2957 | } |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 2958 | |
| 2959 | map = pool_elt_at_index (lcm->mapping_pool, map_index); |
| 2960 | |
| 2961 | if (!map->local) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 2962 | { |
| 2963 | clib_warning |
| 2964 | ("Mapping found for src eid %U is not marked as local!", |
| 2965 | format_gid_address, seid); |
| 2966 | return -1; |
| 2967 | } |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2968 | ls_index = map->locator_set_index; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 2969 | } |
| 2970 | else |
| 2971 | { |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 2972 | if (lcm->lisp_pitr) |
| 2973 | { |
| 2974 | map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index); |
| 2975 | ls_index = map->locator_set_index; |
| 2976 | } |
| 2977 | else |
| 2978 | { |
| 2979 | if (lcm->nsh_map_index == (u32) ~ 0) |
| 2980 | { |
| 2981 | clib_warning ("No locator-set defined for NSH!"); |
| 2982 | return -1; |
| 2983 | } |
| 2984 | else |
| 2985 | { |
| 2986 | map = pool_elt_at_index (lcm->mapping_pool, lcm->nsh_map_index); |
| 2987 | ls_index = map->locator_set_index; |
| 2988 | } |
| 2989 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2990 | } |
| 2991 | |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 2992 | /* overwrite locator set if map-request itr-rlocs configured */ |
| 2993 | if (~0 != lcm->mreq_itr_rlocs) |
| 2994 | { |
| 2995 | ls_index = lcm->mreq_itr_rlocs; |
| 2996 | } |
| 2997 | |
| 2998 | loc_set = pool_elt_at_index (lcm->locator_set_pool, ls_index); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2999 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3000 | if (get_egress_map_resolver_ip (lcm, &sloc) < 0) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3001 | { |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3002 | if (duplicate_pmr) |
| 3003 | duplicate_pmr->to_be_removed = 1; |
| 3004 | return -1; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3005 | } |
Florin Coras | ddfafb8 | 2016-05-13 18:09:56 +0200 | [diff] [blame] | 3006 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3007 | /* build the encapsulated map request */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3008 | b = build_encapsulated_map_request (lcm, seid, deid, loc_set, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3009 | &lcm->active_map_resolver, |
| 3010 | &sloc, is_smr_invoked, &nonce, &bi); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3011 | |
| 3012 | if (!b) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3013 | return -1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3014 | |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 3015 | /* set fib index to default and lookup node */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3016 | vnet_buffer (b)->sw_if_index[VLIB_TX] = 0; |
| 3017 | next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ? |
| 3018 | ip4_lookup_node.index : ip6_lookup_node.index; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3019 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3020 | f = vlib_get_frame_to_node (lcm->vlib_main, next_index); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3021 | |
| 3022 | /* Enqueue the packet */ |
| 3023 | to_next = vlib_frame_vector_args (f); |
| 3024 | to_next[0] = bi; |
| 3025 | f->n_vectors = 1; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3026 | vlib_put_frame_to_node (lcm->vlib_main, next_index, f); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3027 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3028 | if (duplicate_pmr) |
| 3029 | /* if there is a pending request already update it */ |
| 3030 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3031 | if (clib_fifo_elts (duplicate_pmr->nonces) >= PENDING_MREQ_QUEUE_LEN) |
| 3032 | { |
| 3033 | /* remove the oldest nonce */ |
| 3034 | u64 CLIB_UNUSED (tmp), *nonce_del; |
| 3035 | nonce_del = clib_fifo_head (duplicate_pmr->nonces); |
| 3036 | hash_unset (lcm->pending_map_requests_by_nonce, nonce_del[0]); |
| 3037 | clib_fifo_sub1 (duplicate_pmr->nonces, tmp); |
| 3038 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3039 | |
Florin Coras | f4691cd | 2016-08-15 19:16:32 +0200 | [diff] [blame] | 3040 | clib_fifo_add1 (duplicate_pmr->nonces, nonce); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3041 | hash_set (lcm->pending_map_requests_by_nonce, nonce, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3042 | duplicate_pmr - lcm->pending_map_requests_pool); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3043 | } |
| 3044 | else |
| 3045 | { |
| 3046 | /* add map-request to pending requests table */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3047 | pool_get (lcm->pending_map_requests_pool, pmr); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3048 | memset (pmr, 0, sizeof (*pmr)); |
| 3049 | gid_address_copy (&pmr->src, seid); |
| 3050 | gid_address_copy (&pmr->dst, deid); |
Florin Coras | f4691cd | 2016-08-15 19:16:32 +0200 | [diff] [blame] | 3051 | clib_fifo_add1 (pmr->nonces, nonce); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3052 | pmr->is_smr_invoked = is_smr_invoked; |
| 3053 | reset_pending_mr_counters (pmr); |
| 3054 | hash_set (lcm->pending_map_requests_by_nonce, nonce, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3055 | pmr - lcm->pending_map_requests_pool); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3056 | } |
| 3057 | |
| 3058 | return 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3059 | } |
| 3060 | |
| 3061 | static void |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3062 | get_src_and_dst_ip (void *hdr, ip_address_t * src, ip_address_t * dst) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3063 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3064 | ip4_header_t *ip4 = hdr; |
| 3065 | ip6_header_t *ip6; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3066 | |
| 3067 | if ((ip4->ip_version_and_header_length & 0xF0) == 0x40) |
| 3068 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3069 | ip_address_set (src, &ip4->src_address, IP4); |
| 3070 | ip_address_set (dst, &ip4->dst_address, IP4); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3071 | } |
| 3072 | else |
| 3073 | { |
| 3074 | ip6 = hdr; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3075 | ip_address_set (src, &ip6->src_address, IP6); |
| 3076 | ip_address_set (dst, &ip6->dst_address, IP6); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3077 | } |
| 3078 | } |
| 3079 | |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 3080 | static u32 |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3081 | lisp_get_vni_from_buffer_ip (lisp_cp_main_t * lcm, vlib_buffer_t * b, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3082 | u8 version) |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 3083 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3084 | uword *vnip; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 3085 | u32 vni = ~0, table_id = ~0; |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 3086 | |
Florin Coras | 87e4069 | 2016-09-22 18:02:17 +0200 | [diff] [blame] | 3087 | table_id = fib_table_get_table_id_for_sw_if_index ((version == |
| 3088 | IP4 ? FIB_PROTOCOL_IP4 : |
| 3089 | FIB_PROTOCOL_IP6), |
| 3090 | vnet_buffer |
| 3091 | (b)->sw_if_index |
| 3092 | [VLIB_RX]); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 3093 | |
| 3094 | vnip = hash_get (lcm->vni_by_table_id, table_id); |
| 3095 | if (vnip) |
| 3096 | vni = vnip[0]; |
| 3097 | else |
| 3098 | clib_warning ("vrf %d is not mapped to any vni!", table_id); |
| 3099 | |
| 3100 | return vni; |
| 3101 | } |
| 3102 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3103 | always_inline u32 |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3104 | lisp_get_bd_from_buffer_eth (vlib_buffer_t * b) |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3105 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3106 | u32 sw_if_index0; |
| 3107 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3108 | l2input_main_t *l2im = &l2input_main; |
| 3109 | l2_input_config_t *config; |
| 3110 | l2_bridge_domain_t *bd_config; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3111 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3112 | sw_if_index0 = vnet_buffer (b)->sw_if_index[VLIB_RX]; |
| 3113 | config = vec_elt_at_index (l2im->configs, sw_if_index0); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3114 | bd_config = vec_elt_at_index (l2im->bd_configs, config->bd_index); |
| 3115 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3116 | return bd_config->bd_id; |
| 3117 | } |
| 3118 | |
| 3119 | always_inline u32 |
| 3120 | lisp_get_vni_from_buffer_eth (lisp_cp_main_t * lcm, vlib_buffer_t * b) |
| 3121 | { |
| 3122 | uword *vnip; |
| 3123 | u32 vni = ~0; |
| 3124 | u32 bd = lisp_get_bd_from_buffer_eth (b); |
| 3125 | |
| 3126 | vnip = hash_get (lcm->vni_by_bd_id, bd); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3127 | if (vnip) |
| 3128 | vni = vnip[0]; |
| 3129 | else |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3130 | clib_warning ("bridge domain %d is not mapped to any vni!", bd); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3131 | |
| 3132 | return vni; |
| 3133 | } |
| 3134 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 3135 | void |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3136 | get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b, |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 3137 | gid_address_t * src, gid_address_t * dst, |
| 3138 | u16 type) |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3139 | { |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 3140 | ethernet_header_t *eh; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3141 | u32 vni = 0; |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3142 | icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3143 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3144 | memset (src, 0, sizeof (*src)); |
| 3145 | memset (dst, 0, sizeof (*dst)); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3146 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3147 | gid_address_type (dst) = GID_ADDR_NO_ADDRESS; |
| 3148 | gid_address_type (src) = GID_ADDR_NO_ADDRESS; |
| 3149 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3150 | if (LISP_AFI_IP == type || LISP_AFI_IP6 == type) |
| 3151 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3152 | ip4_header_t *ip; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3153 | u8 version, preflen; |
| 3154 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3155 | gid_address_type (src) = GID_ADDR_IP_PREFIX; |
| 3156 | gid_address_type (dst) = GID_ADDR_IP_PREFIX; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3157 | |
| 3158 | ip = vlib_buffer_get_current (b); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3159 | get_src_and_dst_ip (ip, &gid_address_ip (src), &gid_address_ip (dst)); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3160 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3161 | version = gid_address_ip_version (src); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3162 | preflen = ip_address_max_len (version); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3163 | gid_address_ippref_len (src) = preflen; |
| 3164 | gid_address_ippref_len (dst) = preflen; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3165 | |
| 3166 | vni = lisp_get_vni_from_buffer_ip (lcm, b, version); |
| 3167 | gid_address_vni (dst) = vni; |
| 3168 | gid_address_vni (src) = vni; |
| 3169 | } |
| 3170 | else if (LISP_AFI_MAC == type) |
| 3171 | { |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3172 | ethernet_arp_header_t *ah; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3173 | |
| 3174 | eh = vlib_buffer_get_current (b); |
| 3175 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3176 | if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_ARP) |
| 3177 | { |
| 3178 | ah = (ethernet_arp_header_t *) (((u8 *) eh) + sizeof (*eh)); |
| 3179 | if (clib_net_to_host_u16 (ah->opcode) |
| 3180 | != ETHERNET_ARP_OPCODE_request) |
| 3181 | return; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3182 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3183 | gid_address_type (dst) = GID_ADDR_ARP; |
| 3184 | gid_address_arp_bd (dst) = lisp_get_bd_from_buffer_eth (b); |
| 3185 | clib_memcpy (&gid_address_arp_ip4 (dst), |
| 3186 | &ah->ip4_over_ethernet[1].ip4, 4); |
| 3187 | } |
| 3188 | else |
| 3189 | { |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3190 | if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_IP6) |
| 3191 | { |
| 3192 | ip6_header_t *ip; |
| 3193 | ip = (ip6_header_t *) (eh + 1); |
| 3194 | |
| 3195 | if (IP_PROTOCOL_ICMP6 == ip->protocol) |
| 3196 | { |
| 3197 | icmp6_neighbor_solicitation_or_advertisement_header_t *ndh; |
| 3198 | ndh = ip6_next_header (ip); |
| 3199 | if (ndh->icmp.type == ICMP6_neighbor_solicitation) |
| 3200 | { |
| 3201 | opt = (void *) (ndh + 1); |
| 3202 | if ((opt->header.type != |
| 3203 | ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address) |
| 3204 | || (opt->header.n_data_u64s != 1)) |
| 3205 | return; /* source link layer address option not present */ |
| 3206 | |
| 3207 | gid_address_type (dst) = GID_ADDR_NDP; |
| 3208 | gid_address_ndp_bd (dst) = |
| 3209 | lisp_get_bd_from_buffer_eth (b); |
| 3210 | ip_address_set (&gid_address_arp_ndp_ip (dst), |
| 3211 | &ndh->target_address, IP6); |
| 3212 | return; |
| 3213 | } |
| 3214 | } |
| 3215 | } |
| 3216 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3217 | gid_address_type (src) = GID_ADDR_MAC; |
| 3218 | gid_address_type (dst) = GID_ADDR_MAC; |
| 3219 | mac_copy (&gid_address_mac (src), eh->src_address); |
| 3220 | mac_copy (&gid_address_mac (dst), eh->dst_address); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3221 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3222 | /* get vni */ |
| 3223 | vni = lisp_get_vni_from_buffer_eth (lcm, b); |
| 3224 | |
| 3225 | gid_address_vni (dst) = vni; |
| 3226 | gid_address_vni (src) = vni; |
| 3227 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3228 | } |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 3229 | else if (LISP_AFI_LCAF == type) |
| 3230 | { |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 3231 | lisp_nsh_hdr_t *nh; |
| 3232 | eh = vlib_buffer_get_current (b); |
| 3233 | |
| 3234 | if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_NSH) |
| 3235 | { |
| 3236 | nh = (lisp_nsh_hdr_t *) (((u8 *) eh) + sizeof (*eh)); |
| 3237 | u32 spi = clib_net_to_host_u32 (nh->spi_si << 8); |
| 3238 | u8 si = (u8) clib_net_to_host_u32 (nh->spi_si); |
| 3239 | gid_address_nsh_spi (dst) = spi; |
| 3240 | gid_address_nsh_si (dst) = si; |
| 3241 | |
| 3242 | gid_address_type (dst) = GID_ADDR_NSH; |
| 3243 | } |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 3244 | } |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 3245 | } |
| 3246 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3247 | static uword |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 3248 | lisp_cp_lookup_inline (vlib_main_t * vm, |
| 3249 | vlib_node_runtime_t * node, |
| 3250 | vlib_frame_t * from_frame, int overlay) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3251 | { |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3252 | icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3253 | u32 *from, *to_next, di, si; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3254 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3255 | u32 pkts_mapped = 0, next_index; |
| 3256 | uword n_left_from, n_left_to_next; |
| 3257 | vnet_main_t *vnm = vnet_get_main (); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3258 | |
| 3259 | from = vlib_frame_vector_args (from_frame); |
| 3260 | n_left_from = from_frame->n_vectors; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3261 | next_index = node->cached_next_index; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3262 | |
| 3263 | while (n_left_from > 0) |
| 3264 | { |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3265 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3266 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3267 | while (n_left_from > 0 && n_left_to_next > 0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3268 | { |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3269 | u32 pi0, sw_if_index0, next0; |
| 3270 | u64 mac0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3271 | vlib_buffer_t *b0; |
| 3272 | gid_address_t src, dst; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3273 | ethernet_arp_header_t *arp0; |
| 3274 | ethernet_header_t *eth0; |
| 3275 | vnet_hw_interface_t *hw_if0; |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3276 | ethernet_header_t *eh0; |
| 3277 | icmp6_neighbor_solicitation_or_advertisement_header_t *ndh; |
| 3278 | ip6_header_t *ip0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3279 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3280 | pi0 = from[0]; |
| 3281 | from += 1; |
| 3282 | n_left_from -= 1; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3283 | to_next[0] = pi0; |
| 3284 | to_next += 1; |
| 3285 | n_left_to_next -= 1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3286 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3287 | b0 = vlib_get_buffer (vm, pi0); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3288 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3289 | /* src/dst eid pair */ |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 3290 | get_src_and_dst_eids_from_buffer (lcm, b0, &src, &dst, overlay); |
Filip Tehlar | 324112f | 2016-06-02 16:07:38 +0200 | [diff] [blame] | 3291 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3292 | if (gid_address_type (&dst) == GID_ADDR_ARP) |
| 3293 | { |
| 3294 | mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst); |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3295 | if (GID_LOOKUP_MISS_L2 == mac0) |
| 3296 | goto drop; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3297 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3298 | /* send ARP reply */ |
| 3299 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 3300 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3301 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3302 | hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3303 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3304 | eth0 = vlib_buffer_get_current (b0); |
| 3305 | arp0 = (ethernet_arp_header_t *) (((u8 *) eth0) |
| 3306 | + sizeof (*eth0)); |
| 3307 | arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply); |
| 3308 | arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0]; |
| 3309 | clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, |
| 3310 | (u8 *) & mac0, 6); |
| 3311 | clib_memcpy (&arp0->ip4_over_ethernet[0].ip4, |
| 3312 | &gid_address_arp_ip4 (&dst), 4); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3313 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3314 | /* Hardware must be ethernet-like. */ |
| 3315 | ASSERT (vec_len (hw_if0->hw_address) == 6); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3316 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3317 | clib_memcpy (eth0->dst_address, eth0->src_address, 6); |
| 3318 | clib_memcpy (eth0->src_address, hw_if0->hw_address, 6); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3319 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3320 | b0->error = node->errors[LISP_CP_LOOKUP_ERROR_ARP_REPLY_TX]; |
| 3321 | next0 = LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX; |
| 3322 | goto enqueue; |
| 3323 | } |
| 3324 | else if (gid_address_type (&dst) == GID_ADDR_NDP) |
| 3325 | { |
| 3326 | mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst); |
| 3327 | if (GID_LOOKUP_MISS_L2 == mac0) |
| 3328 | goto drop; |
| 3329 | |
| 3330 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 3331 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0; |
| 3332 | |
| 3333 | eh0 = vlib_buffer_get_current (b0); |
| 3334 | ip0 = (ip6_header_t *) (eh0 + 1); |
| 3335 | ndh = ip6_next_header (ip0); |
| 3336 | int bogus_length; |
| 3337 | ip0->dst_address = ip0->src_address; |
| 3338 | ip0->src_address = ndh->target_address; |
| 3339 | ip0->hop_limit = 255; |
| 3340 | opt = (void *) (ndh + 1); |
| 3341 | opt->header.type = |
| 3342 | ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address; |
| 3343 | clib_memcpy (opt->ethernet_address, (u8 *) & mac0, 6); |
| 3344 | ndh->icmp.type = ICMP6_neighbor_advertisement; |
| 3345 | ndh->advertisement_flags = clib_host_to_net_u32 |
| 3346 | (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED | |
| 3347 | ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE); |
| 3348 | ndh->icmp.checksum = 0; |
| 3349 | ndh->icmp.checksum = |
| 3350 | ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, |
| 3351 | &bogus_length); |
| 3352 | clib_memcpy (eh0->dst_address, eh0->src_address, 6); |
| 3353 | clib_memcpy (eh0->src_address, (u8 *) & mac0, 6); |
| 3354 | b0->error = |
| 3355 | node->errors |
| 3356 | [LISP_CP_LOOKUP_ERROR_NDP_NEIGHBOR_ADVERTISEMENT_TX]; |
| 3357 | next0 = LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX; |
| 3358 | goto enqueue; |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3359 | } |
| 3360 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3361 | /* if we have remote mapping for destination already in map-chache |
| 3362 | add forwarding tunnel directly. If not send a map-request */ |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 3363 | di = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid, &dst, |
| 3364 | &src); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3365 | if (~0 != di) |
| 3366 | { |
| 3367 | mapping_t *m = vec_elt_at_index (lcm->mapping_pool, di); |
| 3368 | /* send a map-request also in case of negative mapping entry |
| 3369 | with corresponding action */ |
| 3370 | if (m->action == LISP_SEND_MAP_REQUEST) |
| 3371 | { |
| 3372 | /* send map-request */ |
| 3373 | queue_map_request (&src, &dst, 0 /* smr_invoked */ , |
| 3374 | 0 /* is_resend */ ); |
| 3375 | pkts_mapped++; |
| 3376 | } |
| 3377 | else |
| 3378 | { |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 3379 | if (GID_ADDR_NSH != gid_address_type (&dst)) |
| 3380 | { |
| 3381 | si = gid_dictionary_lookup (&lcm->mapping_index_by_gid, |
| 3382 | &src); |
| 3383 | } |
| 3384 | else |
| 3385 | si = lcm->nsh_map_index; |
| 3386 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3387 | if (~0 != si) |
| 3388 | { |
Filip Tehlar | ce1aae4 | 2017-01-04 10:42:25 +0100 | [diff] [blame] | 3389 | dp_add_fwd_entry_from_mt (si, di); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3390 | } |
| 3391 | } |
| 3392 | } |
| 3393 | else |
| 3394 | { |
| 3395 | /* send map-request */ |
| 3396 | queue_map_request (&src, &dst, 0 /* smr_invoked */ , |
| 3397 | 0 /* is_resend */ ); |
| 3398 | pkts_mapped++; |
| 3399 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3400 | |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3401 | drop: |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3402 | b0->error = node->errors[LISP_CP_LOOKUP_ERROR_DROP]; |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3403 | next0 = LISP_CP_LOOKUP_NEXT_DROP; |
| 3404 | enqueue: |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3405 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 3406 | { |
| 3407 | lisp_cp_lookup_trace_t *tr = vlib_add_trace (vm, node, b0, |
| 3408 | sizeof (*tr)); |
Andrej Kozemcak | 94e3476 | 2016-05-25 12:43:21 +0200 | [diff] [blame] | 3409 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3410 | memset (tr, 0, sizeof (*tr)); |
| 3411 | gid_address_copy (&tr->dst_eid, &dst); |
Florin Coras | 5a1c11b | 2016-09-06 16:29:34 +0200 | [diff] [blame] | 3412 | ip_address_copy (&tr->map_resolver_ip, |
| 3413 | &lcm->active_map_resolver); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3414 | } |
| 3415 | gid_address_free (&dst); |
| 3416 | gid_address_free (&src); |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3417 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 3418 | to_next, |
| 3419 | n_left_to_next, pi0, next0); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3420 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3421 | |
Filip Tehlar | d5a65db | 2017-05-17 17:21:10 +0200 | [diff] [blame] | 3422 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3423 | } |
| 3424 | vlib_node_increment_counter (vm, node->node_index, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3425 | LISP_CP_LOOKUP_ERROR_MAP_REQUESTS_SENT, |
| 3426 | pkts_mapped); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3427 | return from_frame->n_vectors; |
| 3428 | } |
| 3429 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 3430 | static uword |
| 3431 | lisp_cp_lookup_ip4 (vlib_main_t * vm, |
| 3432 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 3433 | { |
| 3434 | return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP)); |
| 3435 | } |
| 3436 | |
| 3437 | static uword |
| 3438 | lisp_cp_lookup_ip6 (vlib_main_t * vm, |
| 3439 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 3440 | { |
| 3441 | return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP6)); |
| 3442 | } |
| 3443 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 3444 | static uword |
| 3445 | lisp_cp_lookup_l2 (vlib_main_t * vm, |
| 3446 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 3447 | { |
| 3448 | return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_MAC)); |
| 3449 | } |
| 3450 | |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 3451 | static uword |
| 3452 | lisp_cp_lookup_nsh (vlib_main_t * vm, |
| 3453 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 3454 | { |
| 3455 | /* TODO decide if NSH should be propagated as LCAF or not */ |
| 3456 | return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_LCAF)); |
| 3457 | } |
| 3458 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3459 | /* *INDENT-OFF* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 3460 | VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node) = { |
| 3461 | .function = lisp_cp_lookup_ip4, |
| 3462 | .name = "lisp-cp-lookup-ip4", |
| 3463 | .vector_size = sizeof (u32), |
| 3464 | .format_trace = format_lisp_cp_lookup_trace, |
| 3465 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 3466 | |
| 3467 | .n_errors = LISP_CP_LOOKUP_N_ERROR, |
| 3468 | .error_strings = lisp_cp_lookup_error_strings, |
| 3469 | |
| 3470 | .n_next_nodes = LISP_CP_LOOKUP_N_NEXT, |
| 3471 | |
| 3472 | .next_nodes = { |
| 3473 | [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop", |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3474 | [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 3475 | }, |
| 3476 | }; |
| 3477 | /* *INDENT-ON* */ |
| 3478 | |
| 3479 | /* *INDENT-OFF* */ |
| 3480 | VLIB_REGISTER_NODE (lisp_cp_lookup_ip6_node) = { |
| 3481 | .function = lisp_cp_lookup_ip6, |
| 3482 | .name = "lisp-cp-lookup-ip6", |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3483 | .vector_size = sizeof (u32), |
| 3484 | .format_trace = format_lisp_cp_lookup_trace, |
| 3485 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 3486 | |
| 3487 | .n_errors = LISP_CP_LOOKUP_N_ERROR, |
| 3488 | .error_strings = lisp_cp_lookup_error_strings, |
| 3489 | |
| 3490 | .n_next_nodes = LISP_CP_LOOKUP_N_NEXT, |
| 3491 | |
| 3492 | .next_nodes = { |
| 3493 | [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop", |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3494 | [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output", |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 3495 | }, |
| 3496 | }; |
| 3497 | /* *INDENT-ON* */ |
| 3498 | |
| 3499 | /* *INDENT-OFF* */ |
| 3500 | VLIB_REGISTER_NODE (lisp_cp_lookup_l2_node) = { |
| 3501 | .function = lisp_cp_lookup_l2, |
| 3502 | .name = "lisp-cp-lookup-l2", |
| 3503 | .vector_size = sizeof (u32), |
| 3504 | .format_trace = format_lisp_cp_lookup_trace, |
| 3505 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 3506 | |
| 3507 | .n_errors = LISP_CP_LOOKUP_N_ERROR, |
| 3508 | .error_strings = lisp_cp_lookup_error_strings, |
| 3509 | |
| 3510 | .n_next_nodes = LISP_CP_LOOKUP_N_NEXT, |
| 3511 | |
| 3512 | .next_nodes = { |
| 3513 | [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop", |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3514 | [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output", |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3515 | }, |
| 3516 | }; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3517 | /* *INDENT-ON* */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3518 | |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 3519 | /* *INDENT-OFF* */ |
| 3520 | VLIB_REGISTER_NODE (lisp_cp_lookup_nsh_node) = { |
| 3521 | .function = lisp_cp_lookup_nsh, |
| 3522 | .name = "lisp-cp-lookup-nsh", |
| 3523 | .vector_size = sizeof (u32), |
| 3524 | .format_trace = format_lisp_cp_lookup_trace, |
| 3525 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 3526 | |
| 3527 | .n_errors = LISP_CP_LOOKUP_N_ERROR, |
| 3528 | .error_strings = lisp_cp_lookup_error_strings, |
| 3529 | |
| 3530 | .n_next_nodes = LISP_CP_LOOKUP_N_NEXT, |
| 3531 | |
| 3532 | .next_nodes = { |
| 3533 | [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop", |
Filip Tehlar | 0587999 | 2017-09-05 15:46:09 +0200 | [diff] [blame] | 3534 | [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output", |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 3535 | }, |
| 3536 | }; |
| 3537 | /* *INDENT-ON* */ |
| 3538 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3539 | /* lisp_cp_input statistics */ |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 3540 | #define foreach_lisp_cp_input_error \ |
| 3541 | _(DROP, "drop") \ |
| 3542 | _(RLOC_PROBE_REQ_RECEIVED, "rloc-probe requests received") \ |
| 3543 | _(RLOC_PROBE_REP_RECEIVED, "rloc-probe replies received") \ |
| 3544 | _(MAP_NOTIFIES_RECEIVED, "map-notifies received") \ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3545 | _(MAP_REPLIES_RECEIVED, "map-replies received") |
| 3546 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3547 | static char *lisp_cp_input_error_strings[] = { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3548 | #define _(sym,string) string, |
| 3549 | foreach_lisp_cp_input_error |
| 3550 | #undef _ |
| 3551 | }; |
| 3552 | |
| 3553 | typedef enum |
| 3554 | { |
| 3555 | #define _(sym,str) LISP_CP_INPUT_ERROR_##sym, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3556 | foreach_lisp_cp_input_error |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3557 | #undef _ |
| 3558 | LISP_CP_INPUT_N_ERROR, |
| 3559 | } lisp_cp_input_error_t; |
| 3560 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3561 | typedef struct |
| 3562 | { |
| 3563 | gid_address_t dst_eid; |
| 3564 | ip4_address_t map_resolver_ip; |
| 3565 | } lisp_cp_input_trace_t; |
| 3566 | |
| 3567 | u8 * |
| 3568 | format_lisp_cp_input_trace (u8 * s, va_list * args) |
| 3569 | { |
| 3570 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 3571 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3572 | CLIB_UNUSED (lisp_cp_input_trace_t * t) = |
| 3573 | va_arg (*args, lisp_cp_input_trace_t *); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3574 | |
| 3575 | s = format (s, "LISP-CP-INPUT: TODO"); |
| 3576 | return s; |
| 3577 | } |
| 3578 | |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 3579 | static void |
| 3580 | remove_expired_mapping (lisp_cp_main_t * lcm, u32 mi) |
| 3581 | { |
| 3582 | mapping_t *m; |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 3583 | vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args; |
| 3584 | memset (adj_args, 0, sizeof (adj_args[0])); |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 3585 | |
| 3586 | m = pool_elt_at_index (lcm->mapping_pool, mi); |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 3587 | |
| 3588 | gid_address_copy (&adj_args->reid, &m->eid); |
| 3589 | adj_args->is_add = 0; |
| 3590 | if (vnet_lisp_add_del_adjacency (adj_args)) |
| 3591 | clib_warning ("failed to del adjacency!"); |
| 3592 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3593 | vnet_lisp_del_mapping (&m->eid, NULL); |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 3594 | mapping_delete_timer (lcm, mi); |
| 3595 | } |
| 3596 | |
| 3597 | static void |
| 3598 | mapping_start_expiration_timer (lisp_cp_main_t * lcm, u32 mi, |
| 3599 | f64 expiration_time) |
| 3600 | { |
| 3601 | mapping_t *m; |
| 3602 | u64 now = clib_cpu_time_now (); |
| 3603 | u64 cpu_cps = lcm->vlib_main->clib_time.clocks_per_second; |
| 3604 | u64 exp_clock_time = now + expiration_time * cpu_cps; |
| 3605 | |
| 3606 | m = pool_elt_at_index (lcm->mapping_pool, mi); |
| 3607 | |
| 3608 | m->timer_set = 1; |
| 3609 | timing_wheel_insert (&lcm->wheel, exp_clock_time, mi); |
| 3610 | } |
| 3611 | |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3612 | static void |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3613 | process_expired_mapping (lisp_cp_main_t * lcm, u32 mi) |
| 3614 | { |
| 3615 | int rv; |
| 3616 | vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a; |
| 3617 | mapping_t *m = pool_elt_at_index (lcm->mapping_pool, mi); |
| 3618 | uword *fei; |
| 3619 | fwd_entry_t *fe; |
| 3620 | vlib_counter_t c; |
| 3621 | u8 have_stats = 0; |
| 3622 | |
| 3623 | if (m->delete_after_expiration) |
| 3624 | { |
| 3625 | remove_expired_mapping (lcm, mi); |
| 3626 | return; |
| 3627 | } |
| 3628 | |
| 3629 | fei = hash_get (lcm->fwd_entry_by_mapping_index, mi); |
| 3630 | if (!fei) |
| 3631 | return; |
| 3632 | |
| 3633 | fe = pool_elt_at_index (lcm->fwd_entry_pool, fei[0]); |
| 3634 | |
| 3635 | memset (a, 0, sizeof (*a)); |
| 3636 | a->rmt_eid = fe->reid; |
| 3637 | if (fe->is_src_dst) |
| 3638 | a->lcl_eid = fe->leid; |
| 3639 | a->vni = gid_address_vni (&fe->reid); |
| 3640 | |
| 3641 | rv = vnet_lisp_gpe_get_fwd_stats (a, &c); |
| 3642 | if (0 == rv) |
| 3643 | have_stats = 1; |
| 3644 | |
| 3645 | if (m->almost_expired) |
| 3646 | { |
| 3647 | m->almost_expired = 0; /* reset flag */ |
| 3648 | if (have_stats) |
| 3649 | { |
| 3650 | if (m->packets != c.packets) |
| 3651 | { |
| 3652 | /* mapping is in use, re-fetch */ |
| 3653 | map_request_args_t mr_args; |
| 3654 | memset (&mr_args, 0, sizeof (mr_args)); |
| 3655 | mr_args.seid = fe->leid; |
| 3656 | mr_args.deid = fe->reid; |
| 3657 | |
| 3658 | send_map_request_thread_fn (&mr_args); |
| 3659 | } |
| 3660 | else |
| 3661 | remove_expired_mapping (lcm, mi); |
| 3662 | } |
| 3663 | else |
| 3664 | remove_expired_mapping (lcm, mi); |
| 3665 | } |
| 3666 | else |
| 3667 | { |
| 3668 | m->almost_expired = 1; |
| 3669 | mapping_start_expiration_timer (lcm, mi, TIME_UNTIL_REFETCH_OR_DELETE); |
| 3670 | |
| 3671 | if (have_stats) |
| 3672 | /* save counter */ |
| 3673 | m->packets = c.packets; |
| 3674 | else |
| 3675 | m->delete_after_expiration = 1; |
| 3676 | } |
| 3677 | } |
| 3678 | |
| 3679 | static void |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3680 | map_records_arg_free (map_records_arg_t * a) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3681 | { |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3682 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3683 | mapping_t *m; |
| 3684 | vec_foreach (m, a->mappings) |
| 3685 | { |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3686 | vec_free (m->locators); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3687 | gid_address_free (&m->eid); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3688 | } |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3689 | pool_put (lcm->map_records_args_pool[vlib_get_thread_index ()], a); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3690 | } |
| 3691 | |
| 3692 | void * |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3693 | process_map_reply (map_records_arg_t * a) |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3694 | { |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3695 | mapping_t *m; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3696 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 3697 | u32 dst_map_index = 0; |
| 3698 | pending_map_request_t *pmr; |
| 3699 | u64 *noncep; |
| 3700 | uword *pmr_index; |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3701 | u8 is_changed = 0; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3702 | |
| 3703 | if (a->is_rloc_probe) |
| 3704 | goto done; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3705 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3706 | /* Check pending requests table and nonce */ |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3707 | pmr_index = hash_get (lcm->pending_map_requests_by_nonce, a->nonce); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3708 | if (!pmr_index) |
| 3709 | { |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3710 | clib_warning ("No pending map-request entry with nonce %lu!", a->nonce); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3711 | goto done; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3712 | } |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3713 | pmr = pool_elt_at_index (lcm->pending_map_requests_pool, pmr_index[0]); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3714 | |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3715 | vec_foreach (m, a->mappings) |
| 3716 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3717 | vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args; |
| 3718 | memset (m_args, 0, sizeof (m_args[0])); |
| 3719 | gid_address_copy (&m_args->eid, &m->eid); |
| 3720 | m_args->action = m->action; |
| 3721 | m_args->authoritative = m->authoritative; |
| 3722 | m_args->ttl = m->ttl; |
| 3723 | m_args->is_static = 0; |
| 3724 | |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3725 | /* insert/update mappings cache */ |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3726 | vnet_lisp_add_mapping (m_args, m->locators, &dst_map_index, &is_changed); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3727 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 3728 | if (dst_map_index == (u32) ~ 0) |
| 3729 | continue; |
| 3730 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3731 | if (is_changed) |
| 3732 | { |
| 3733 | /* try to program forwarding only if mapping saved or updated */ |
| 3734 | vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args; |
| 3735 | memset (adj_args, 0, sizeof (adj_args[0])); |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 3736 | |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3737 | gid_address_copy (&adj_args->leid, &pmr->src); |
| 3738 | gid_address_copy (&adj_args->reid, &m->eid); |
| 3739 | adj_args->is_add = 1; |
| 3740 | |
| 3741 | if (vnet_lisp_add_del_adjacency (adj_args)) |
| 3742 | clib_warning ("failed to add adjacency!"); |
| 3743 | } |
Florin Coras | f3dc11a | 2017-01-24 03:13:43 -0800 | [diff] [blame] | 3744 | |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 3745 | if ((u32) ~ 0 != m->ttl) |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 3746 | mapping_start_expiration_timer (lcm, dst_map_index, MAPPING_TIMEOUT); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 3747 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3748 | |
| 3749 | /* remove pending map request entry */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3750 | |
| 3751 | /* *INDENT-OFF* */ |
Florin Coras | f4691cd | 2016-08-15 19:16:32 +0200 | [diff] [blame] | 3752 | clib_fifo_foreach (noncep, pmr->nonces, ({ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3753 | hash_unset(lcm->pending_map_requests_by_nonce, noncep[0]); |
Florin Coras | f4691cd | 2016-08-15 19:16:32 +0200 | [diff] [blame] | 3754 | })); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 3755 | /* *INDENT-ON* */ |
| 3756 | |
| 3757 | clib_fifo_free (pmr->nonces); |
| 3758 | pool_put (lcm->pending_map_requests_pool, pmr); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3759 | |
| 3760 | done: |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3761 | a->is_free = 1; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 3762 | return 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 3763 | } |
| 3764 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3765 | static int |
| 3766 | is_auth_data_valid (map_notify_hdr_t * h, u32 msg_len, |
| 3767 | lisp_key_type_t key_id, u8 * key) |
| 3768 | { |
| 3769 | u8 *auth_data = 0; |
| 3770 | u16 auth_data_len; |
| 3771 | int result; |
| 3772 | |
| 3773 | auth_data_len = auth_data_len_by_key_id (key_id); |
| 3774 | if ((u16) ~ 0 == auth_data_len) |
| 3775 | { |
| 3776 | clib_warning ("invalid length for key_id %d!", key_id); |
| 3777 | return 0; |
| 3778 | } |
| 3779 | |
| 3780 | /* save auth data */ |
| 3781 | vec_validate (auth_data, auth_data_len - 1); |
| 3782 | clib_memcpy (auth_data, MNOTIFY_DATA (h), auth_data_len); |
| 3783 | |
| 3784 | /* clear auth data */ |
| 3785 | memset (MNOTIFY_DATA (h), 0, auth_data_len); |
| 3786 | |
| 3787 | /* get hash of the message */ |
| 3788 | unsigned char *code = HMAC (get_encrypt_fcn (key_id), key, vec_len (key), |
| 3789 | (unsigned char *) h, msg_len, NULL, NULL); |
| 3790 | |
| 3791 | result = memcmp (code, auth_data, auth_data_len); |
| 3792 | |
| 3793 | vec_free (auth_data); |
| 3794 | |
| 3795 | return !result; |
| 3796 | } |
| 3797 | |
| 3798 | static void |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3799 | process_map_notify (map_records_arg_t * a) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3800 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3801 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3802 | uword *pmr_index; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3803 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3804 | pmr_index = hash_get (lcm->map_register_messages_by_nonce, a->nonce); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3805 | if (!pmr_index) |
| 3806 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3807 | clib_warning ("No pending map-register entry with nonce %lu!", |
| 3808 | a->nonce); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3809 | return; |
| 3810 | } |
| 3811 | |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3812 | a->is_free = 1; |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 3813 | pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3814 | hash_unset (lcm->map_register_messages_by_nonce, a->nonce); |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 3815 | |
| 3816 | /* reset map-notify counter */ |
| 3817 | lcm->expired_map_registers = 0; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3818 | } |
| 3819 | |
| 3820 | static mapping_t * |
| 3821 | get_mapping (lisp_cp_main_t * lcm, gid_address_t * e) |
| 3822 | { |
| 3823 | u32 mi; |
| 3824 | |
| 3825 | mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, e); |
| 3826 | if (~0 == mi) |
| 3827 | { |
| 3828 | clib_warning ("eid %U not found in map-cache!", unformat_gid_address, |
| 3829 | e); |
| 3830 | return 0; |
| 3831 | } |
| 3832 | return pool_elt_at_index (lcm->mapping_pool, mi); |
| 3833 | } |
| 3834 | |
| 3835 | /** |
| 3836 | * When map-notify is received it is necessary that all EIDs in the record |
| 3837 | * list share common key. The key is then used to verify authentication |
| 3838 | * data in map-notify message. |
| 3839 | */ |
| 3840 | static int |
| 3841 | map_record_integrity_check (lisp_cp_main_t * lcm, mapping_t * maps, |
| 3842 | u32 key_id, u8 ** key_out) |
| 3843 | { |
| 3844 | u32 i, len = vec_len (maps); |
| 3845 | mapping_t *m; |
| 3846 | |
| 3847 | /* get key of the first mapping */ |
| 3848 | m = get_mapping (lcm, &maps[0].eid); |
| 3849 | if (!m || !m->key) |
| 3850 | return -1; |
| 3851 | |
| 3852 | key_out[0] = m->key; |
| 3853 | |
| 3854 | for (i = 1; i < len; i++) |
| 3855 | { |
| 3856 | m = get_mapping (lcm, &maps[i].eid); |
| 3857 | if (!m || !m->key) |
| 3858 | return -1; |
| 3859 | |
| 3860 | if (key_id != m->key_id || vec_cmp (m->key, key_out[0])) |
| 3861 | { |
| 3862 | clib_warning ("keys does not match! %v, %v", key_out[0], m->key); |
| 3863 | return -1; |
| 3864 | } |
| 3865 | } |
| 3866 | return 0; |
| 3867 | } |
| 3868 | |
| 3869 | static int |
| 3870 | parse_map_records (vlib_buffer_t * b, map_records_arg_t * a, u8 count) |
| 3871 | { |
| 3872 | locator_t *locators = 0; |
| 3873 | u32 i, len; |
| 3874 | gid_address_t deid; |
| 3875 | mapping_t m; |
| 3876 | locator_t *loc; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3877 | |
Filip Tehlar | 68c74fc | 2017-05-04 14:52:42 +0200 | [diff] [blame] | 3878 | memset (&m, 0, sizeof (m)); |
| 3879 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3880 | /* parse record eid */ |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3881 | for (i = 0; i < count; i++) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3882 | { |
Florin Coras | e68de8c | 2017-06-05 15:38:50 -0700 | [diff] [blame] | 3883 | locators = 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3884 | len = lisp_msg_parse_mapping_record (b, &deid, &locators, NULL); |
| 3885 | if (len == ~0) |
| 3886 | { |
| 3887 | clib_warning ("Failed to parse mapping record!"); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3888 | vec_foreach (loc, locators) locator_free (loc); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3889 | vec_free (locators); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3890 | return -1; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3891 | } |
| 3892 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3893 | m.locators = locators; |
| 3894 | gid_address_copy (&m.eid, &deid); |
| 3895 | vec_add1 (a->mappings, m); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3896 | } |
| 3897 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3898 | return 0; |
| 3899 | } |
| 3900 | |
| 3901 | static map_records_arg_t * |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3902 | map_record_args_get () |
| 3903 | { |
| 3904 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 3905 | map_records_arg_t *rec; |
| 3906 | |
| 3907 | /* Cleanup first */ |
| 3908 | /* *INDENT-OFF* */ |
| 3909 | pool_foreach (rec, lcm->map_records_args_pool[vlib_get_thread_index()], ({ |
| 3910 | if (rec->is_free) |
| 3911 | map_records_arg_free (rec); |
| 3912 | })); |
| 3913 | /* *INDENT-ON* */ |
| 3914 | |
| 3915 | pool_get (lcm->map_records_args_pool[vlib_get_thread_index ()], rec); |
| 3916 | return rec; |
| 3917 | } |
| 3918 | |
| 3919 | static map_records_arg_t * |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3920 | parse_map_notify (vlib_buffer_t * b) |
| 3921 | { |
| 3922 | int rc = 0; |
| 3923 | map_notify_hdr_t *mnotif_hdr; |
| 3924 | lisp_key_type_t key_id; |
| 3925 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 3926 | u8 *key = 0; |
| 3927 | gid_address_t deid; |
| 3928 | u16 auth_data_len = 0; |
| 3929 | u8 record_count; |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3930 | map_records_arg_t *a; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3931 | |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 3932 | a = map_record_args_get (); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3933 | memset (a, 0, sizeof (*a)); |
| 3934 | mnotif_hdr = vlib_buffer_get_current (b); |
| 3935 | vlib_buffer_pull (b, sizeof (*mnotif_hdr)); |
| 3936 | memset (&deid, 0, sizeof (deid)); |
| 3937 | |
| 3938 | a->nonce = MNOTIFY_NONCE (mnotif_hdr); |
| 3939 | key_id = clib_net_to_host_u16 (MNOTIFY_KEY_ID (mnotif_hdr)); |
| 3940 | auth_data_len = auth_data_len_by_key_id (key_id); |
| 3941 | |
| 3942 | /* advance buffer by authentication data */ |
| 3943 | vlib_buffer_pull (b, auth_data_len); |
| 3944 | |
| 3945 | record_count = MNOTIFY_REC_COUNT (mnotif_hdr); |
| 3946 | rc = parse_map_records (b, a, record_count); |
| 3947 | if (rc != 0) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3948 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3949 | map_records_arg_free (a); |
| 3950 | return 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3951 | } |
| 3952 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3953 | rc = map_record_integrity_check (lcm, a->mappings, key_id, &key); |
| 3954 | if (rc != 0) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3955 | { |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3956 | map_records_arg_free (a); |
| 3957 | return 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3958 | } |
| 3959 | |
| 3960 | /* verify authentication data */ |
| 3961 | if (!is_auth_data_valid (mnotif_hdr, vlib_buffer_get_tail (b) |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3962 | - (u8 *) mnotif_hdr, key_id, key)) |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3963 | { |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 3964 | clib_warning ("Map-notify auth data verification failed for nonce " |
| 3965 | "0x%lx!", a->nonce); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3966 | map_records_arg_free (a); |
| 3967 | return 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3968 | } |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 3969 | return a; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3970 | } |
| 3971 | |
| 3972 | static vlib_buffer_t * |
| 3973 | build_map_reply (lisp_cp_main_t * lcm, ip_address_t * sloc, |
| 3974 | ip_address_t * dst, u64 nonce, u8 probe_bit, |
| 3975 | mapping_t * records, u16 dst_port, u32 * bi_res) |
| 3976 | { |
| 3977 | vlib_buffer_t *b; |
| 3978 | u32 bi; |
| 3979 | vlib_main_t *vm = lcm->vlib_main; |
| 3980 | |
| 3981 | if (vlib_buffer_alloc (vm, &bi, 1) != 1) |
| 3982 | { |
| 3983 | clib_warning ("Can't allocate buffer for Map-Register!"); |
| 3984 | return 0; |
| 3985 | } |
| 3986 | |
| 3987 | b = vlib_get_buffer (vm, bi); |
| 3988 | |
| 3989 | /* leave some space for the encap headers */ |
| 3990 | vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN); |
| 3991 | |
| 3992 | lisp_msg_put_map_reply (b, records, nonce, probe_bit); |
| 3993 | |
| 3994 | /* push outer ip header */ |
Florin Coras | fdbc382 | 2017-07-27 00:34:12 -0700 | [diff] [blame] | 3995 | pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, dst_port, sloc, dst, 1); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 3996 | |
| 3997 | bi_res[0] = bi; |
| 3998 | return b; |
| 3999 | } |
| 4000 | |
| 4001 | static int |
| 4002 | send_map_reply (lisp_cp_main_t * lcm, u32 mi, ip_address_t * dst, |
| 4003 | u8 probe_bit, u64 nonce, u16 dst_port, |
| 4004 | ip_address_t * probed_loc) |
| 4005 | { |
| 4006 | ip_address_t src; |
| 4007 | u32 bi; |
| 4008 | vlib_buffer_t *b; |
| 4009 | vlib_frame_t *f; |
| 4010 | u32 next_index, *to_next; |
| 4011 | mapping_t *records = 0, *m; |
| 4012 | |
| 4013 | m = pool_elt_at_index (lcm->mapping_pool, mi); |
| 4014 | if (!m) |
| 4015 | return -1; |
| 4016 | |
| 4017 | vec_add1 (records, m[0]); |
| 4018 | add_locators (lcm, &records[0], m->locator_set_index, probed_loc); |
| 4019 | memset (&src, 0, sizeof (src)); |
| 4020 | |
| 4021 | if (!ip_fib_get_first_egress_ip_for_dst (lcm, dst, &src)) |
| 4022 | { |
| 4023 | clib_warning ("can't find inteface address for %U", format_ip_address, |
| 4024 | dst); |
| 4025 | return -1; |
| 4026 | } |
| 4027 | |
| 4028 | b = build_map_reply (lcm, &src, dst, nonce, probe_bit, records, dst_port, |
| 4029 | &bi); |
| 4030 | if (!b) |
| 4031 | return -1; |
| 4032 | free_map_register_records (records); |
| 4033 | |
| 4034 | vnet_buffer (b)->sw_if_index[VLIB_TX] = 0; |
| 4035 | next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ? |
| 4036 | ip4_lookup_node.index : ip6_lookup_node.index; |
| 4037 | |
| 4038 | f = vlib_get_frame_to_node (lcm->vlib_main, next_index); |
| 4039 | |
| 4040 | /* Enqueue the packet */ |
| 4041 | to_next = vlib_frame_vector_args (f); |
| 4042 | to_next[0] = bi; |
| 4043 | f->n_vectors = 1; |
| 4044 | vlib_put_frame_to_node (lcm->vlib_main, next_index, f); |
| 4045 | return 0; |
| 4046 | } |
| 4047 | |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4048 | static void |
| 4049 | find_ip_header (vlib_buffer_t * b, u8 ** ip_hdr) |
| 4050 | { |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 4051 | const i32 start = vnet_buffer (b)->l3_hdr_offset; |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4052 | if (start < 0 && start < -sizeof (b->pre_data)) |
| 4053 | { |
| 4054 | *ip_hdr = 0; |
| 4055 | return; |
| 4056 | } |
| 4057 | |
| 4058 | *ip_hdr = b->data + start; |
| 4059 | if ((u8 *) * ip_hdr > (u8 *) vlib_buffer_get_current (b)) |
| 4060 | *ip_hdr = 0; |
| 4061 | } |
| 4062 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4063 | void |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4064 | process_map_request (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 4065 | lisp_cp_main_t * lcm, vlib_buffer_t * b) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4066 | { |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4067 | u8 *ip_hdr = 0; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4068 | ip_address_t *dst_loc = 0, probed_loc, src_loc; |
| 4069 | mapping_t m; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4070 | map_request_hdr_t *mreq_hdr; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4071 | gid_address_t src, dst; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4072 | u64 nonce; |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4073 | u32 i, len = 0, rloc_probe_recv = 0; |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4074 | gid_address_t *itr_rlocs = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4075 | |
| 4076 | mreq_hdr = vlib_buffer_get_current (b); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4077 | if (!MREQ_SMR (mreq_hdr) && !MREQ_RLOC_PROBE (mreq_hdr)) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4078 | { |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4079 | clib_warning |
| 4080 | ("Only SMR Map-Requests and RLOC probe supported for now!"); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4081 | return; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4082 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4083 | |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4084 | vlib_buffer_pull (b, sizeof (*mreq_hdr)); |
| 4085 | nonce = MREQ_NONCE (mreq_hdr); |
| 4086 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4087 | /* parse src eid */ |
| 4088 | len = lisp_msg_parse_addr (b, &src); |
| 4089 | if (len == ~0) |
| 4090 | return; |
| 4091 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4092 | len = lisp_msg_parse_itr_rlocs (b, &itr_rlocs, |
| 4093 | MREQ_ITR_RLOC_COUNT (mreq_hdr) + 1); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4094 | if (len == ~0) |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4095 | goto done; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4096 | |
| 4097 | /* parse eid records and send SMR-invoked map-requests */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4098 | for (i = 0; i < MREQ_REC_COUNT (mreq_hdr); i++) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4099 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4100 | memset (&dst, 0, sizeof (dst)); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4101 | len = lisp_msg_parse_eid_rec (b, &dst); |
| 4102 | if (len == ~0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4103 | { |
| 4104 | clib_warning ("Can't parse map-request EID-record"); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4105 | goto done; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4106 | } |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4107 | |
| 4108 | if (MREQ_SMR (mreq_hdr)) |
| 4109 | { |
| 4110 | /* send SMR-invoked map-requests */ |
| 4111 | queue_map_request (&dst, &src, 1 /* invoked */ , 0 /* resend */ ); |
| 4112 | } |
| 4113 | else if (MREQ_RLOC_PROBE (mreq_hdr)) |
| 4114 | { |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4115 | find_ip_header (b, &ip_hdr); |
| 4116 | if (!ip_hdr) |
| 4117 | { |
| 4118 | clib_warning ("Cannot find the IP header!"); |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4119 | goto done; |
Filip Tehlar | b601f22 | 2017-01-02 10:22:56 +0100 | [diff] [blame] | 4120 | } |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4121 | rloc_probe_recv++; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4122 | memset (&m, 0, sizeof (m)); |
| 4123 | u32 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst); |
| 4124 | |
| 4125 | // TODO: select best locator; for now use the first one |
| 4126 | dst_loc = &gid_address_ip (&itr_rlocs[0]); |
| 4127 | |
| 4128 | /* get src/dst IP addresses */ |
| 4129 | get_src_and_dst_ip (ip_hdr, &src_loc, &probed_loc); |
| 4130 | |
| 4131 | // TODO get source port from buffer |
| 4132 | u16 src_port = LISP_CONTROL_PORT; |
| 4133 | |
| 4134 | send_map_reply (lcm, mi, dst_loc, 1 /* probe-bit */ , nonce, |
| 4135 | src_port, &probed_loc); |
| 4136 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4137 | } |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4138 | |
| 4139 | done: |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4140 | vlib_node_increment_counter (vm, node->node_index, |
| 4141 | LISP_CP_INPUT_ERROR_RLOC_PROBE_REQ_RECEIVED, |
| 4142 | rloc_probe_recv); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4143 | vec_free (itr_rlocs); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4144 | } |
| 4145 | |
Filip Tehlar | 816f437 | 2017-04-26 16:09:06 +0200 | [diff] [blame] | 4146 | map_records_arg_t * |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4147 | parse_map_reply (vlib_buffer_t * b) |
| 4148 | { |
| 4149 | locator_t probed; |
| 4150 | gid_address_t deid; |
| 4151 | void *h; |
| 4152 | u32 i, len = 0; |
| 4153 | mapping_t m; |
| 4154 | map_reply_hdr_t *mrep_hdr; |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 4155 | map_records_arg_t *a; |
| 4156 | |
| 4157 | a = map_record_args_get (); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4158 | memset (a, 0, sizeof (*a)); |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 4159 | |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4160 | locator_t *locators; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4161 | |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4162 | mrep_hdr = vlib_buffer_get_current (b); |
| 4163 | a->nonce = MREP_NONCE (mrep_hdr); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4164 | a->is_rloc_probe = MREP_RLOC_PROBE (mrep_hdr); |
Filip Tehlar | 816f437 | 2017-04-26 16:09:06 +0200 | [diff] [blame] | 4165 | if (!vlib_buffer_has_space (b, sizeof (*mrep_hdr))) |
| 4166 | { |
| 4167 | clib_mem_free (a); |
| 4168 | return 0; |
| 4169 | } |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4170 | vlib_buffer_pull (b, sizeof (*mrep_hdr)); |
| 4171 | |
| 4172 | for (i = 0; i < MREP_REC_COUNT (mrep_hdr); i++) |
| 4173 | { |
| 4174 | memset (&m, 0, sizeof (m)); |
| 4175 | locators = 0; |
| 4176 | h = vlib_buffer_get_current (b); |
| 4177 | |
| 4178 | m.ttl = clib_net_to_host_u32 (MAP_REC_TTL (h)); |
| 4179 | m.action = MAP_REC_ACTION (h); |
| 4180 | m.authoritative = MAP_REC_AUTH (h); |
| 4181 | |
| 4182 | len = lisp_msg_parse_mapping_record (b, &deid, &locators, &probed); |
| 4183 | if (len == ~0) |
| 4184 | { |
| 4185 | clib_warning ("Failed to parse mapping record!"); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4186 | map_records_arg_free (a); |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4187 | return 0; |
| 4188 | } |
| 4189 | |
| 4190 | m.locators = locators; |
| 4191 | gid_address_copy (&m.eid, &deid); |
| 4192 | vec_add1 (a->mappings, m); |
| 4193 | } |
| 4194 | return a; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4195 | } |
| 4196 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4197 | static void |
| 4198 | queue_map_reply_for_processing (map_records_arg_t * a) |
| 4199 | { |
Florin Coras | 655fcc4 | 2017-01-10 08:57:54 -0800 | [diff] [blame] | 4200 | vl_api_rpc_call_main_thread (process_map_reply, (u8 *) a, sizeof (*a)); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4201 | } |
| 4202 | |
| 4203 | static void |
| 4204 | queue_map_notify_for_processing (map_records_arg_t * a) |
| 4205 | { |
| 4206 | vl_api_rpc_call_main_thread (process_map_notify, (u8 *) a, sizeof (a[0])); |
| 4207 | } |
| 4208 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4209 | static uword |
| 4210 | lisp_cp_input (vlib_main_t * vm, vlib_node_runtime_t * node, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4211 | vlib_frame_t * from_frame) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4212 | { |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4213 | u32 n_left_from, *from, *to_next_drop, rloc_probe_rep_recv = 0, |
| 4214 | map_notifies_recv = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4215 | lisp_msg_type_e type; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4216 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4217 | map_records_arg_t *a; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4218 | |
| 4219 | from = vlib_frame_vector_args (from_frame); |
| 4220 | n_left_from = from_frame->n_vectors; |
| 4221 | |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4222 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4223 | while (n_left_from > 0) |
| 4224 | { |
| 4225 | u32 n_left_to_next_drop; |
| 4226 | |
| 4227 | vlib_get_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4228 | to_next_drop, n_left_to_next_drop); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4229 | while (n_left_from > 0 && n_left_to_next_drop > 0) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4230 | { |
| 4231 | u32 bi0; |
| 4232 | vlib_buffer_t *b0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4233 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4234 | bi0 = from[0]; |
| 4235 | from += 1; |
| 4236 | n_left_from -= 1; |
| 4237 | to_next_drop[0] = bi0; |
| 4238 | to_next_drop += 1; |
| 4239 | n_left_to_next_drop -= 1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4240 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4241 | b0 = vlib_get_buffer (vm, bi0); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4242 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4243 | type = lisp_msg_type (vlib_buffer_get_current (b0)); |
| 4244 | switch (type) |
| 4245 | { |
| 4246 | case LISP_MAP_REPLY: |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4247 | a = parse_map_reply (b0); |
| 4248 | if (a) |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4249 | { |
| 4250 | if (a->is_rloc_probe) |
| 4251 | rloc_probe_rep_recv++; |
| 4252 | queue_map_reply_for_processing (a); |
| 4253 | } |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4254 | break; |
| 4255 | case LISP_MAP_REQUEST: |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4256 | process_map_request (vm, node, lcm, b0); |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4257 | break; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4258 | case LISP_MAP_NOTIFY: |
Filip Tehlar | fb9931f | 2016-12-09 13:52:38 +0100 | [diff] [blame] | 4259 | a = parse_map_notify (b0); |
| 4260 | if (a) |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4261 | { |
| 4262 | map_notifies_recv++; |
| 4263 | queue_map_notify_for_processing (a); |
| 4264 | } |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4265 | break; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4266 | default: |
| 4267 | clib_warning ("Unsupported LISP message type %d", type); |
| 4268 | break; |
| 4269 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4270 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4271 | b0->error = node->errors[LISP_CP_INPUT_ERROR_DROP]; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4272 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4273 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 4274 | { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4275 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4276 | } |
| 4277 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4278 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4279 | vlib_put_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP, |
| 4280 | n_left_to_next_drop); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4281 | } |
Filip Tehlar | cda7066 | 2017-01-16 10:30:03 +0100 | [diff] [blame] | 4282 | vlib_node_increment_counter (vm, node->node_index, |
| 4283 | LISP_CP_INPUT_ERROR_RLOC_PROBE_REP_RECEIVED, |
| 4284 | rloc_probe_rep_recv); |
| 4285 | vlib_node_increment_counter (vm, node->node_index, |
| 4286 | LISP_CP_INPUT_ERROR_MAP_NOTIFIES_RECEIVED, |
| 4287 | map_notifies_recv); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4288 | return from_frame->n_vectors; |
| 4289 | } |
| 4290 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4291 | /* *INDENT-OFF* */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4292 | VLIB_REGISTER_NODE (lisp_cp_input_node) = { |
| 4293 | .function = lisp_cp_input, |
| 4294 | .name = "lisp-cp-input", |
| 4295 | .vector_size = sizeof (u32), |
| 4296 | .format_trace = format_lisp_cp_input_trace, |
| 4297 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 4298 | |
| 4299 | .n_errors = LISP_CP_INPUT_N_ERROR, |
| 4300 | .error_strings = lisp_cp_input_error_strings, |
| 4301 | |
| 4302 | .n_next_nodes = LISP_CP_INPUT_N_NEXT, |
| 4303 | |
| 4304 | .next_nodes = { |
| 4305 | [LISP_CP_INPUT_NEXT_DROP] = "error-drop", |
| 4306 | }, |
| 4307 | }; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4308 | /* *INDENT-ON* */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4309 | |
| 4310 | clib_error_t * |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4311 | lisp_cp_init (vlib_main_t * vm) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4312 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4313 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 4314 | clib_error_t *error = 0; |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 4315 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
| 4316 | u32 num_threads; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4317 | |
| 4318 | if ((error = vlib_call_init_function (vm, lisp_gpe_init))) |
| 4319 | return error; |
| 4320 | |
| 4321 | lcm->im4 = &ip4_main; |
| 4322 | lcm->im6 = &ip6_main; |
| 4323 | lcm->vlib_main = vm; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4324 | lcm->vnet_main = vnet_get_main (); |
Andrej Kozemcak | b6e4d39 | 2016-06-14 13:55:57 +0200 | [diff] [blame] | 4325 | lcm->mreq_itr_rlocs = ~0; |
Florin Coras | f727db9 | 2016-06-23 15:01:58 +0200 | [diff] [blame] | 4326 | lcm->lisp_pitr = 0; |
Florin Coras | ba888e4 | 2017-01-24 11:38:18 -0800 | [diff] [blame] | 4327 | lcm->flags = 0; |
Florin Coras | 5a1c11b | 2016-09-06 16:29:34 +0200 | [diff] [blame] | 4328 | memset (&lcm->active_map_resolver, 0, sizeof (lcm->active_map_resolver)); |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4329 | memset (&lcm->active_map_server, 0, sizeof (lcm->active_map_server)); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4330 | |
| 4331 | gid_dictionary_init (&lcm->mapping_index_by_gid); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4332 | lcm->do_map_resolver_election = 1; |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4333 | lcm->do_map_server_election = 1; |
Florin Coras | dca8804 | 2016-09-14 16:01:38 +0200 | [diff] [blame] | 4334 | lcm->map_request_mode = MR_MODE_DST_ONLY; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4335 | |
Florin Coras | acd4c63 | 2017-06-15 14:33:48 -0700 | [diff] [blame] | 4336 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 4337 | vec_validate (lcm->map_records_args_pool, num_threads - 1); |
| 4338 | |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 4339 | /* default vrf mapped to vni 0 */ |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4340 | hash_set (lcm->table_id_by_vni, 0, 0); |
| 4341 | hash_set (lcm->vni_by_table_id, 0, 0); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 4342 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4343 | udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4344 | lisp_cp_input_node.index, 1 /* is_ip4 */ ); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4345 | udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp6, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4346 | lisp_cp_input_node.index, 0 /* is_ip4 */ ); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4347 | |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 4348 | u64 now = clib_cpu_time_now (); |
| 4349 | timing_wheel_init (&lcm->wheel, now, vm->clib_time.clocks_per_second); |
Filip Tehlar | ef2a5bf | 2017-05-30 07:14:46 +0200 | [diff] [blame] | 4350 | lcm->nsh_map_index = ~0; |
Filip Tehlar | 1e553a0 | 2017-08-02 12:45:07 +0200 | [diff] [blame] | 4351 | lcm->map_register_ttl = MAP_REGISTER_DEFAULT_TTL; |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4352 | lcm->max_expired_map_registers = MAX_EXPIRED_MAP_REGISTERS_DEFAULT; |
| 4353 | lcm->expired_map_registers = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 4354 | return 0; |
| 4355 | } |
| 4356 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 4357 | static int |
| 4358 | lisp_stats_api_fill (lisp_cp_main_t * lcm, lisp_gpe_main_t * lgm, |
| 4359 | lisp_api_stats_t * stat, lisp_stats_key_t * key, |
| 4360 | u32 stats_index) |
| 4361 | { |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 4362 | vlib_counter_t v; |
| 4363 | vlib_combined_counter_main_t *cm = &lgm->counters; |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 4364 | lisp_gpe_fwd_entry_key_t fwd_key; |
| 4365 | const lisp_gpe_tunnel_t *lgt; |
| 4366 | fwd_entry_t *fe; |
| 4367 | |
| 4368 | memset (stat, 0, sizeof (*stat)); |
| 4369 | memset (&fwd_key, 0, sizeof (fwd_key)); |
| 4370 | |
| 4371 | fe = pool_elt_at_index (lcm->fwd_entry_pool, key->fwd_entry_index); |
| 4372 | ASSERT (fe != 0); |
| 4373 | |
| 4374 | gid_to_dp_address (&fe->reid, &stat->deid); |
| 4375 | gid_to_dp_address (&fe->leid, &stat->seid); |
| 4376 | stat->vni = gid_address_vni (&fe->reid); |
| 4377 | |
| 4378 | lgt = lisp_gpe_tunnel_get (key->tunnel_index); |
| 4379 | stat->loc_rloc = lgt->key->lcl; |
| 4380 | stat->rmt_rloc = lgt->key->rmt; |
| 4381 | |
Filip Tehlar | 2151191 | 2017-04-07 10:41:42 +0200 | [diff] [blame] | 4382 | vlib_get_combined_counter (cm, stats_index, &v); |
| 4383 | stat->counters = v; |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 4384 | return 1; |
| 4385 | } |
| 4386 | |
| 4387 | lisp_api_stats_t * |
| 4388 | vnet_lisp_get_stats (void) |
| 4389 | { |
| 4390 | lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main (); |
| 4391 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 4392 | lisp_api_stats_t *stats = 0, stat; |
| 4393 | lisp_stats_key_t *key; |
| 4394 | u32 index; |
| 4395 | |
| 4396 | /* *INDENT-OFF* */ |
| 4397 | hash_foreach_mem (key, index, lgm->lisp_stats_index_by_key, |
| 4398 | { |
| 4399 | if (lisp_stats_api_fill (lcm, lgm, &stat, key, index)) |
| 4400 | vec_add1 (stats, stat); |
| 4401 | }); |
| 4402 | /* *INDENT-ON* */ |
| 4403 | |
| 4404 | return stats; |
| 4405 | } |
| 4406 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4407 | static void * |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4408 | send_map_request_thread_fn (void *arg) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4409 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4410 | map_request_args_t *a = arg; |
| 4411 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4412 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4413 | if (a->is_resend) |
| 4414 | resend_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked); |
| 4415 | else |
Filip Tehlar | cdab4bd | 2016-12-06 10:31:57 +0100 | [diff] [blame] | 4416 | send_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4417 | |
| 4418 | return 0; |
| 4419 | } |
| 4420 | |
| 4421 | static int |
| 4422 | queue_map_request (gid_address_t * seid, gid_address_t * deid, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4423 | u8 smr_invoked, u8 is_resend) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4424 | { |
| 4425 | map_request_args_t a; |
| 4426 | |
| 4427 | a.is_resend = is_resend; |
| 4428 | gid_address_copy (&a.seid, seid); |
| 4429 | gid_address_copy (&a.deid, deid); |
| 4430 | a.smr_invoked = smr_invoked; |
| 4431 | |
| 4432 | vl_api_rpc_call_main_thread (send_map_request_thread_fn, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4433 | (u8 *) & a, sizeof (a)); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4434 | return 0; |
| 4435 | } |
| 4436 | |
| 4437 | /** |
| 4438 | * Take an action with a pending map request depending on expiration time |
| 4439 | * and re-try counters. |
| 4440 | */ |
| 4441 | static void |
| 4442 | update_pending_request (pending_map_request_t * r, f64 dt) |
| 4443 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4444 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4445 | lisp_msmr_t *mr; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4446 | |
| 4447 | if (r->time_to_expire - dt < 0) |
| 4448 | /* it's time to decide what to do with this pending request */ |
| 4449 | { |
| 4450 | if (r->retries_num >= NUMBER_OF_RETRIES) |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4451 | /* too many retries -> assume current map resolver is not available */ |
| 4452 | { |
| 4453 | mr = get_map_resolver (&lcm->active_map_resolver); |
| 4454 | if (!mr) |
| 4455 | { |
| 4456 | clib_warning ("Map resolver %U not found - probably deleted " |
| 4457 | "by the user recently.", format_ip_address, |
| 4458 | &lcm->active_map_resolver); |
| 4459 | } |
| 4460 | else |
| 4461 | { |
| 4462 | clib_warning ("map resolver %U is unreachable, ignoring", |
| 4463 | format_ip_address, &lcm->active_map_resolver); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4464 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4465 | /* mark current map resolver unavailable so it won't be |
| 4466 | * selected next time */ |
| 4467 | mr->is_down = 1; |
| 4468 | mr->last_update = vlib_time_now (lcm->vlib_main); |
| 4469 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4470 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4471 | reset_pending_mr_counters (r); |
| 4472 | elect_map_resolver (lcm); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4473 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4474 | /* try to find a next eligible map resolver and re-send */ |
| 4475 | queue_map_request (&r->src, &r->dst, r->is_smr_invoked, |
| 4476 | 1 /* resend */ ); |
| 4477 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4478 | else |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4479 | { |
| 4480 | /* try again */ |
| 4481 | queue_map_request (&r->src, &r->dst, r->is_smr_invoked, |
| 4482 | 1 /* resend */ ); |
| 4483 | r->retries_num++; |
| 4484 | r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME; |
| 4485 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4486 | } |
| 4487 | else |
| 4488 | r->time_to_expire -= dt; |
| 4489 | } |
| 4490 | |
| 4491 | static void |
| 4492 | remove_dead_pending_map_requests (lisp_cp_main_t * lcm) |
| 4493 | { |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4494 | u64 *nonce; |
| 4495 | pending_map_request_t *pmr; |
| 4496 | u32 *to_be_removed = 0, *pmr_index; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4497 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4498 | /* *INDENT-OFF* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4499 | pool_foreach (pmr, lcm->pending_map_requests_pool, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4500 | ({ |
| 4501 | if (pmr->to_be_removed) |
| 4502 | { |
| 4503 | clib_fifo_foreach (nonce, pmr->nonces, ({ |
| 4504 | hash_unset (lcm->pending_map_requests_by_nonce, nonce[0]); |
| 4505 | })); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4506 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4507 | vec_add1 (to_be_removed, pmr - lcm->pending_map_requests_pool); |
| 4508 | } |
| 4509 | })); |
| 4510 | /* *INDENT-ON* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4511 | |
| 4512 | vec_foreach (pmr_index, to_be_removed) |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4513 | pool_put_index (lcm->pending_map_requests_pool, pmr_index[0]); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4514 | |
| 4515 | vec_free (to_be_removed); |
| 4516 | } |
| 4517 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4518 | static void |
| 4519 | update_rloc_probing (lisp_cp_main_t * lcm, f64 dt) |
| 4520 | { |
| 4521 | static f64 time_left = RLOC_PROBING_INTERVAL; |
| 4522 | |
| 4523 | if (!lcm->is_enabled || !lcm->rloc_probing) |
| 4524 | return; |
| 4525 | |
| 4526 | time_left -= dt; |
| 4527 | if (time_left <= 0) |
| 4528 | { |
| 4529 | time_left = RLOC_PROBING_INTERVAL; |
| 4530 | send_rloc_probes (lcm); |
| 4531 | } |
| 4532 | } |
| 4533 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4534 | static int |
| 4535 | update_pending_map_register (pending_map_register_t * r, f64 dt, u8 * del_all) |
| 4536 | { |
| 4537 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 4538 | lisp_msmr_t *ms; |
| 4539 | del_all[0] = 0; |
| 4540 | |
| 4541 | r->time_to_expire -= dt; |
| 4542 | |
| 4543 | if (r->time_to_expire < 0) |
| 4544 | { |
| 4545 | lcm->expired_map_registers++; |
| 4546 | |
| 4547 | if (lcm->expired_map_registers >= lcm->max_expired_map_registers) |
| 4548 | { |
| 4549 | ms = get_map_server (&lcm->active_map_server); |
| 4550 | if (!ms) |
| 4551 | { |
| 4552 | clib_warning ("Map server %U not found - probably deleted " |
| 4553 | "by the user recently.", format_ip_address, |
| 4554 | &lcm->active_map_server); |
| 4555 | } |
| 4556 | else |
| 4557 | { |
| 4558 | clib_warning ("map server %U is unreachable, ignoring", |
| 4559 | format_ip_address, &lcm->active_map_server); |
| 4560 | |
| 4561 | /* mark current map server unavailable so it won't be |
| 4562 | * elected next time */ |
| 4563 | ms->is_down = 1; |
| 4564 | ms->last_update = vlib_time_now (lcm->vlib_main); |
| 4565 | } |
| 4566 | |
| 4567 | elect_map_server (lcm); |
| 4568 | |
| 4569 | /* indication for deleting all pending map registers */ |
| 4570 | del_all[0] = 1; |
| 4571 | lcm->expired_map_registers = 0; |
| 4572 | return 0; |
| 4573 | } |
| 4574 | else |
| 4575 | { |
| 4576 | /* delete pending map register */ |
| 4577 | return 0; |
| 4578 | } |
| 4579 | } |
| 4580 | return 1; |
| 4581 | } |
| 4582 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4583 | static void |
| 4584 | update_map_register (lisp_cp_main_t * lcm, f64 dt) |
| 4585 | { |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4586 | u32 *to_be_removed = 0, *pmr_index; |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4587 | static f64 time_left = QUICK_MAP_REGISTER_INTERVAL; |
| 4588 | static u64 mreg_sent_counter = 0; |
| 4589 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4590 | pending_map_register_t *pmr; |
| 4591 | u8 del_all = 0; |
| 4592 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4593 | if (!lcm->is_enabled || !lcm->map_registering) |
| 4594 | return; |
| 4595 | |
Filip Tehlar | 7048ff1 | 2017-07-27 08:09:14 +0200 | [diff] [blame] | 4596 | /* *INDENT-OFF* */ |
| 4597 | pool_foreach (pmr, lcm->pending_map_registers_pool, |
| 4598 | ({ |
| 4599 | if (!update_pending_map_register (pmr, dt, &del_all)) |
| 4600 | { |
| 4601 | if (del_all) |
| 4602 | break; |
| 4603 | vec_add1 (to_be_removed, pmr - lcm->pending_map_registers_pool); |
| 4604 | } |
| 4605 | })); |
| 4606 | /* *INDENT-ON* */ |
| 4607 | |
| 4608 | if (del_all) |
| 4609 | { |
| 4610 | /* delete all pending map register messages so they won't |
| 4611 | * trigger another map server election.. */ |
| 4612 | pool_free (lcm->pending_map_registers_pool); |
| 4613 | hash_free (lcm->map_register_messages_by_nonce); |
| 4614 | |
| 4615 | /* ..and trigger registration against next map server (if any) */ |
| 4616 | time_left = 0; |
| 4617 | } |
| 4618 | else |
| 4619 | { |
| 4620 | vec_foreach (pmr_index, to_be_removed) |
| 4621 | pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]); |
| 4622 | } |
| 4623 | |
| 4624 | vec_free (to_be_removed); |
| 4625 | |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4626 | time_left -= dt; |
| 4627 | if (time_left <= 0) |
| 4628 | { |
| 4629 | if (mreg_sent_counter >= QUICK_MAP_REGISTER_MSG_COUNT) |
| 4630 | time_left = MAP_REGISTER_INTERVAL; |
| 4631 | else |
| 4632 | { |
| 4633 | mreg_sent_counter++; |
| 4634 | time_left = QUICK_MAP_REGISTER_INTERVAL; |
| 4635 | } |
| 4636 | send_map_register (lcm, 1 /* want map notify */ ); |
| 4637 | } |
| 4638 | } |
| 4639 | |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4640 | static uword |
| 4641 | send_map_resolver_service (vlib_main_t * vm, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4642 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4643 | { |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 4644 | u32 *expired = 0; |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4645 | f64 period = 2.0; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4646 | pending_map_request_t *pmr; |
| 4647 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4648 | |
| 4649 | while (1) |
| 4650 | { |
| 4651 | vlib_process_wait_for_event_or_clock (vm, period); |
| 4652 | |
| 4653 | /* currently no signals are expected - just wait for clock */ |
| 4654 | (void) vlib_process_get_events (vm, 0); |
| 4655 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4656 | /* *INDENT-OFF* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4657 | pool_foreach (pmr, lcm->pending_map_requests_pool, |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4658 | ({ |
| 4659 | if (!pmr->to_be_removed) |
| 4660 | update_pending_request (pmr, period); |
| 4661 | })); |
| 4662 | /* *INDENT-ON* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4663 | |
| 4664 | remove_dead_pending_map_requests (lcm); |
Filip Tehlar | 397fd7d | 2016-10-26 14:31:24 +0200 | [diff] [blame] | 4665 | |
| 4666 | update_map_register (lcm, period); |
| 4667 | update_rloc_probing (lcm, period); |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 4668 | |
| 4669 | u64 now = clib_cpu_time_now (); |
| 4670 | |
| 4671 | expired = timing_wheel_advance (&lcm->wheel, now, expired, 0); |
| 4672 | if (vec_len (expired) > 0) |
| 4673 | { |
| 4674 | u32 *mi = 0; |
| 4675 | vec_foreach (mi, expired) |
| 4676 | { |
Filip Tehlar | 809bc74 | 2017-08-14 19:15:36 +0200 | [diff] [blame] | 4677 | process_expired_mapping (lcm, mi[0]); |
Filip Tehlar | 9677a94 | 2016-11-28 10:23:31 +0100 | [diff] [blame] | 4678 | } |
| 4679 | _vec_len (expired) = 0; |
| 4680 | } |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4681 | } |
| 4682 | |
| 4683 | /* unreachable */ |
| 4684 | return 0; |
| 4685 | } |
| 4686 | |
Filip Tehlar | 7eaf0e5 | 2017-03-08 08:46:51 +0100 | [diff] [blame] | 4687 | vnet_api_error_t |
| 4688 | vnet_lisp_stats_enable_disable (u8 enable) |
| 4689 | { |
| 4690 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 4691 | |
| 4692 | if (vnet_lisp_enable_disable_status () == 0) |
| 4693 | return VNET_API_ERROR_LISP_DISABLED; |
| 4694 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 4695 | if (enable) |
| 4696 | lcm->flags |= LISP_FLAG_STATS_ENABLED; |
| 4697 | else |
| 4698 | lcm->flags &= ~LISP_FLAG_STATS_ENABLED; |
| 4699 | |
Filip Tehlar | 7eaf0e5 | 2017-03-08 08:46:51 +0100 | [diff] [blame] | 4700 | return 0; |
| 4701 | } |
| 4702 | |
| 4703 | u8 |
| 4704 | vnet_lisp_stats_enable_disable_state (void) |
| 4705 | { |
| 4706 | lisp_cp_main_t *lcm = vnet_lisp_cp_get_main (); |
| 4707 | |
| 4708 | if (vnet_lisp_enable_disable_status () == 0) |
| 4709 | return VNET_API_ERROR_LISP_DISABLED; |
| 4710 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 4711 | return lcm->flags & LISP_FLAG_STATS_ENABLED; |
Filip Tehlar | 7eaf0e5 | 2017-03-08 08:46:51 +0100 | [diff] [blame] | 4712 | } |
| 4713 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4714 | /* *INDENT-OFF* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4715 | VLIB_REGISTER_NODE (lisp_retry_service_node,static) = { |
| 4716 | .function = send_map_resolver_service, |
| 4717 | .type = VLIB_NODE_TYPE_PROCESS, |
| 4718 | .name = "lisp-retry-service", |
| 4719 | .process_log2_n_stack_bytes = 16, |
| 4720 | }; |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4721 | /* *INDENT-ON* */ |
Filip Tehlar | a5abdeb | 2016-07-18 17:35:40 +0200 | [diff] [blame] | 4722 | |
Florin Coras | a2157cf | 2016-08-16 21:09:14 +0200 | [diff] [blame] | 4723 | VLIB_INIT_FUNCTION (lisp_cp_init); |
| 4724 | |
| 4725 | /* |
| 4726 | * fd.io coding-style-patch-verification: ON |
| 4727 | * |
| 4728 | * Local Variables: |
| 4729 | * eval: (c-set-style "gnu") |
| 4730 | * End: |
| 4731 | */ |