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