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