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