Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | #include <vnet/ip/ip.h> |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 41 | #include <vnet/adj/adj.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 42 | #include <vnet/fib/fib_table.h> |
| 43 | #include <vnet/fib/ip4_fib.h> |
| 44 | #include <vnet/fib/ip6_fib.h> |
| 45 | #include <vnet/mpls/mpls.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 46 | #include <vnet/mfib/mfib_table.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 47 | #include <vnet/dpo/drop_dpo.h> |
| 48 | #include <vnet/dpo/classify_dpo.h> |
| 49 | #include <vnet/dpo/punt_dpo.h> |
| 50 | #include <vnet/dpo/receive_dpo.h> |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 51 | #include <vnet/dpo/ip_null_dpo.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 53 | /** |
| 54 | * @file |
| 55 | * @brief IPv4 and IPv6 adjacency and lookup table managment. |
| 56 | * |
| 57 | */ |
| 58 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | clib_error_t * |
| 60 | ip_interface_address_add_del (ip_lookup_main_t * lm, |
| 61 | u32 sw_if_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 62 | void *addr_fib, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 63 | u32 address_length, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 64 | u32 is_del, u32 * result_if_address_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 66 | vnet_main_t *vnm = vnet_get_main (); |
| 67 | ip_interface_address_t *a, *prev, *next; |
| 68 | uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 70 | vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index, |
| 71 | sw_if_index, ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0; |
| 73 | |
| 74 | /* Verify given length. */ |
| 75 | if ((a && (address_length != a->address_length)) || (address_length == 0)) |
| 76 | { |
| 77 | vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 78 | return clib_error_create |
| 79 | ("%U wrong length (expected %d) for interface %U", |
| 80 | lm->format_address_and_length, addr_fib, |
| 81 | address_length, a ? a->address_length : -1, |
| 82 | format_vnet_sw_if_index_name, vnm, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | if (is_del) |
| 86 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 87 | if (!a) |
| 88 | { |
| 89 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 90 | vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE; |
| 91 | return clib_error_create ("%U not found for interface %U", |
| 92 | lm->format_address_and_length, |
| 93 | addr_fib, address_length, |
| 94 | format_vnet_sw_interface_name, vnm, si); |
| 95 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | |
| 97 | if (a->prev_this_sw_interface != ~0) |
| 98 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 99 | prev = |
| 100 | pool_elt_at_index (lm->if_address_pool, |
| 101 | a->prev_this_sw_interface); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | prev->next_this_sw_interface = a->next_this_sw_interface; |
| 103 | } |
| 104 | if (a->next_this_sw_interface != ~0) |
| 105 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 106 | next = |
| 107 | pool_elt_at_index (lm->if_address_pool, |
| 108 | a->next_this_sw_interface); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | next->prev_this_sw_interface = a->prev_this_sw_interface; |
| 110 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 111 | if (a->prev_this_sw_interface == ~0) |
| 112 | lm->if_address_pool_index_by_sw_if_index[sw_if_index] = |
| 113 | a->next_this_sw_interface; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 116 | if ((a->next_this_sw_interface == ~0) |
| 117 | && (a->prev_this_sw_interface == ~0)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0; |
| 119 | |
| 120 | mhash_unset (&lm->address_to_if_address_index, addr_fib, |
| 121 | /* old_value */ 0); |
| 122 | pool_put (lm->if_address_pool, a); |
| 123 | |
| 124 | if (result_if_address_index) |
| 125 | *result_if_address_index = ~0; |
| 126 | } |
| 127 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 128 | else if (!a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 130 | u32 pi; /* previous index */ |
| 131 | u32 ai; |
| 132 | u32 hi; /* head index */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 133 | |
| 134 | pool_get (lm->if_address_pool, a); |
| 135 | memset (a, ~0, sizeof (a[0])); |
| 136 | ai = a - lm->if_address_pool; |
| 137 | |
| 138 | hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index]; |
| 139 | prev = 0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 140 | while (pi != (u32) ~ 0) |
| 141 | { |
| 142 | prev = pool_elt_at_index (lm->if_address_pool, pi); |
| 143 | pi = prev->next_this_sw_interface; |
| 144 | } |
| 145 | pi = prev ? prev - lm->if_address_pool : (u32) ~ 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | |
| 147 | a->address_key = mhash_set (&lm->address_to_if_address_index, |
| 148 | addr_fib, ai, /* old_value */ 0); |
| 149 | a->address_length = address_length; |
| 150 | a->sw_if_index = sw_if_index; |
| 151 | a->flags = 0; |
| 152 | a->prev_this_sw_interface = pi; |
| 153 | a->next_this_sw_interface = ~0; |
| 154 | if (prev) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 155 | prev->next_this_sw_interface = ai; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 157 | lm->if_address_pool_index_by_sw_if_index[sw_if_index] = |
| 158 | (hi != ~0) ? hi : ai; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | if (result_if_address_index) |
| 160 | *result_if_address_index = ai; |
| 161 | } |
| 162 | else |
| 163 | { |
| 164 | if (result_if_address_index) |
| 165 | *result_if_address_index = a - lm->if_address_pool; |
| 166 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 167 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | |
| 169 | return /* no error */ 0; |
| 170 | } |
| 171 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 172 | void |
| 173 | ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | { |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 175 | /* ensure that adjacency is cacheline aligned and sized */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 176 | STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline0) == 0, |
| 177 | "Cache line marker must be 1st element in struct"); |
| 178 | STATIC_ASSERT (STRUCT_OFFSET_OF (ip_adjacency_t, cacheline1) == |
| 179 | CLIB_CACHE_LINE_BYTES, |
| 180 | "Data in cache line 0 is bigger than cache line size"); |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 181 | |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 182 | /* Preallocate three "special" adjacencies */ |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 183 | lm->adjacency_heap = adj_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 185 | if (!lm->fib_result_n_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | lm->fib_result_n_bytes = sizeof (uword); |
| 187 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | lm->is_ip6 = is_ip6; |
| 189 | if (is_ip6) |
| 190 | { |
| 191 | lm->format_address_and_length = format_ip6_address_and_length; |
| 192 | mhash_init (&lm->address_to_if_address_index, sizeof (uword), |
| 193 | sizeof (ip6_address_fib_t)); |
| 194 | } |
| 195 | else |
| 196 | { |
| 197 | lm->format_address_and_length = format_ip4_address_and_length; |
| 198 | mhash_init (&lm->address_to_if_address_index, sizeof (uword), |
| 199 | sizeof (ip4_address_fib_t)); |
| 200 | } |
| 201 | |
| 202 | { |
| 203 | int i; |
| 204 | |
| 205 | /* Setup all IP protocols to be punted and builtin-unknown. */ |
| 206 | for (i = 0; i < 256; i++) |
| 207 | { |
| 208 | lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT; |
| 209 | lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN; |
| 210 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | |
| 212 | lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 213 | lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 : |
| 214 | IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP; |
| 215 | lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] = |
| 216 | IP_BUILTIN_PROTOCOL_UDP; |
| 217 | lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 : |
| 218 | IP_PROTOCOL_ICMP] = |
| 219 | IP_BUILTIN_PROTOCOL_ICMP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 220 | } |
| 221 | } |
| 222 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 223 | u8 * |
| 224 | format_ip_flow_hash_config (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 225 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 226 | flow_hash_config_t flow_hash_config = va_arg (*args, u32); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 227 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 228 | #define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n); |
| 229 | foreach_flow_hash_bit; |
| 230 | #undef _ |
| 231 | |
| 232 | return s; |
| 233 | } |
| 234 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 235 | u8 * |
| 236 | format_ip_lookup_next (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 238 | ip_lookup_next_t n = va_arg (*args, ip_lookup_next_t); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 239 | char *t = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 240 | |
| 241 | switch (n) |
| 242 | { |
| 243 | default: |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 244 | s = format (s, "unknown %d", n); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 245 | return s; |
| 246 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 247 | case IP_LOOKUP_NEXT_DROP: |
| 248 | t = "drop"; |
| 249 | break; |
| 250 | case IP_LOOKUP_NEXT_PUNT: |
| 251 | t = "punt"; |
| 252 | break; |
| 253 | case IP_LOOKUP_NEXT_ARP: |
| 254 | t = "arp"; |
| 255 | break; |
| 256 | case IP_LOOKUP_NEXT_MIDCHAIN: |
| 257 | t = "midchain"; |
| 258 | break; |
| 259 | case IP_LOOKUP_NEXT_GLEAN: |
| 260 | t = "glean"; |
| 261 | break; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 262 | case IP_LOOKUP_NEXT_MCAST: |
| 263 | t = "mcast"; |
| 264 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | case IP_LOOKUP_NEXT_REWRITE: |
| 266 | break; |
| 267 | } |
| 268 | |
| 269 | if (t) |
| 270 | vec_add (s, t, strlen (t)); |
| 271 | |
| 272 | return s; |
| 273 | } |
| 274 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 275 | u8 * |
| 276 | format_ip_adjacency_packet_data (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 277 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 278 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | u32 adj_index = va_arg (*args, u32); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 280 | u8 *packet_data = va_arg (*args, u8 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | u32 n_packet_data_bytes = va_arg (*args, u32); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 282 | ip_adjacency_t *adj = adj_get (adj_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 283 | |
| 284 | switch (adj->lookup_next_index) |
| 285 | { |
| 286 | case IP_LOOKUP_NEXT_REWRITE: |
| 287 | s = format (s, "%U", |
| 288 | format_vnet_rewrite_header, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 289 | vnm->vlib_main, &adj->rewrite_header, packet_data, |
| 290 | n_packet_data_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 291 | break; |
| 292 | |
| 293 | default: |
| 294 | break; |
| 295 | } |
| 296 | |
| 297 | return s; |
| 298 | } |
| 299 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 300 | static uword |
| 301 | unformat_dpo (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 303 | dpo_id_t *dpo = va_arg (*args, dpo_id_t *); |
| 304 | fib_protocol_t fp = va_arg (*args, int); |
| 305 | dpo_proto_t proto; |
| 306 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 307 | proto = fib_proto_to_dpo (fp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
| 309 | if (unformat (input, "drop")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 310 | dpo_copy (dpo, drop_dpo_get (proto)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 311 | else if (unformat (input, "punt")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 312 | dpo_copy (dpo, punt_dpo_get (proto)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 313 | else if (unformat (input, "local")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 314 | receive_dpo_add_or_lock (proto, ~0, NULL, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 315 | else if (unformat (input, "null-send-unreach")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 316 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 317 | else if (unformat (input, "null-send-prohibit")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 318 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo); |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 319 | else if (unformat (input, "null")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 320 | ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 321 | else if (unformat (input, "classify")) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 322 | { |
| 323 | u32 classify_table_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 325 | if (!unformat (input, "%d", &classify_table_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 326 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 327 | clib_warning ("classify adj must specify table index"); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 328 | return 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 329 | } |
| 330 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 331 | dpo_set (dpo, DPO_CLASSIFY, proto, |
| 332 | classify_dpo_create (proto, classify_table_index)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 333 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 334 | else |
| 335 | return 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 336 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | return 1; |
| 338 | } |
| 339 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 340 | const ip46_address_t zero_addr = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 341 | .as_u64 = { |
| 342 | 0, 0}, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 343 | }; |
| 344 | |
| 345 | u32 |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 346 | fib_table_id_find_fib_index (fib_protocol_t proto, u32 table_id) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 347 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 348 | ip4_main_t *im4 = &ip4_main; |
| 349 | ip6_main_t *im6 = &ip6_main; |
| 350 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 352 | switch (proto) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 353 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 354 | case FIB_PROTOCOL_IP4: |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 355 | p = hash_get (im4->fib_index_by_table_id, table_id); |
| 356 | break; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 357 | case FIB_PROTOCOL_IP6: |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 358 | p = hash_get (im6->fib_index_by_table_id, table_id); |
| 359 | break; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 360 | default: |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 361 | p = NULL; |
| 362 | break; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 364 | if (NULL != p) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 366 | return (p[0]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 368 | return (~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | clib_error_t * |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 372 | vnet_ip_route_cmd (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 373 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 375 | unformat_input_t _line_input, *line_input = &_line_input; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 376 | fib_route_path_t *rpaths = NULL, rpath; |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 377 | dpo_id_t dpo = DPO_INVALID, *dpos = NULL; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 378 | fib_prefix_t *prefixs = NULL, pfx; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 379 | mpls_label_t out_label, via_label; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 380 | clib_error_t *error = NULL; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 381 | u32 table_id, is_del; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 382 | vnet_main_t *vnm; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 383 | u32 fib_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 384 | f64 count; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 385 | int i; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 386 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 387 | vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 388 | is_del = 0; |
| 389 | table_id = 0; |
| 390 | count = 1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 391 | memset (&pfx, 0, sizeof (pfx)); |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 392 | out_label = via_label = MPLS_LABEL_INVALID; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 393 | |
| 394 | /* Get a line of input. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 395 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 396 | return 0; |
| 397 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 398 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 399 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 400 | memset (&rpath, 0, sizeof (rpath)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 401 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 402 | if (unformat (line_input, "table %d", &table_id)) |
| 403 | ; |
| 404 | else if (unformat (line_input, "del")) |
| 405 | is_del = 1; |
| 406 | else if (unformat (line_input, "add")) |
| 407 | is_del = 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 408 | else if (unformat (line_input, "resolve-via-host")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 409 | { |
| 410 | if (vec_len (rpaths) == 0) |
| 411 | { |
| 412 | error = clib_error_return (0, "Paths then flags"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 413 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 414 | } |
| 415 | rpaths[vec_len (rpaths) - 1].frp_flags |= |
| 416 | FIB_ROUTE_PATH_RESOLVE_VIA_HOST; |
| 417 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 418 | else if (unformat (line_input, "resolve-via-attached")) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 419 | { |
| 420 | if (vec_len (rpaths) == 0) |
| 421 | { |
| 422 | error = clib_error_return (0, "Paths then flags"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 423 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 424 | } |
| 425 | rpaths[vec_len (rpaths) - 1].frp_flags |= |
| 426 | FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED; |
| 427 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 428 | else if (unformat (line_input, "out-label %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 429 | unformat_mpls_unicast_label, &out_label)) |
| 430 | { |
| 431 | if (vec_len (rpaths) == 0) |
| 432 | { |
| 433 | error = clib_error_return (0, "Paths then labels"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 434 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 435 | } |
| 436 | vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label); |
| 437 | } |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 438 | else if (unformat (line_input, "via-label %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 439 | unformat_mpls_unicast_label, &rpath.frp_local_label)) |
| 440 | { |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 441 | rpath.frp_weight = 1; |
| 442 | rpath.frp_proto = FIB_PROTOCOL_MPLS; |
| 443 | rpath.frp_sw_if_index = ~0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 444 | vec_add1 (rpaths, rpath); |
| 445 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | else if (unformat (line_input, "count %f", &count)) |
| 447 | ; |
| 448 | |
| 449 | else if (unformat (line_input, "%U/%d", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 450 | unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len)) |
| 451 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 452 | pfx.fp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 453 | vec_add1 (prefixs, pfx); |
| 454 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 455 | else if (unformat (line_input, "%U/%d", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 456 | unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len)) |
| 457 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 458 | pfx.fp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 459 | vec_add1 (prefixs, pfx); |
| 460 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 461 | else if (unformat (line_input, "via %U %U weight %u", |
| 462 | unformat_ip4_address, |
| 463 | &rpath.frp_addr.ip4, |
| 464 | unformat_vnet_sw_interface, vnm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 465 | &rpath.frp_sw_if_index, &rpath.frp_weight)) |
| 466 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 467 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 468 | vec_add1 (rpaths, rpath); |
| 469 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 470 | |
| 471 | else if (unformat (line_input, "via %U %U weight %u", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 472 | unformat_ip6_address, |
| 473 | &rpath.frp_addr.ip6, |
| 474 | unformat_vnet_sw_interface, vnm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 475 | &rpath.frp_sw_if_index, &rpath.frp_weight)) |
| 476 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 477 | rpath.frp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 478 | vec_add1 (rpaths, rpath); |
| 479 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 480 | |
| 481 | else if (unformat (line_input, "via %U %U", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 482 | unformat_ip4_address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 483 | &rpath.frp_addr.ip4, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 484 | unformat_vnet_sw_interface, vnm, |
| 485 | &rpath.frp_sw_if_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 486 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 487 | rpath.frp_weight = 1; |
| 488 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 489 | vec_add1 (rpaths, rpath); |
| 490 | } |
| 491 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 492 | else if (unformat (line_input, "via %U %U", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 493 | unformat_ip6_address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 494 | &rpath.frp_addr.ip6, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 495 | unformat_vnet_sw_interface, vnm, |
| 496 | &rpath.frp_sw_if_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 497 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 498 | rpath.frp_weight = 1; |
| 499 | rpath.frp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 500 | vec_add1 (rpaths, rpath); |
| 501 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 502 | else if (unformat (line_input, "via %U next-hop-table %d", |
| 503 | unformat_ip4_address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 504 | &rpath.frp_addr.ip4, &rpath.frp_fib_index)) |
| 505 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 506 | rpath.frp_weight = 1; |
| 507 | rpath.frp_sw_if_index = ~0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 508 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 509 | vec_add1 (rpaths, rpath); |
| 510 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 511 | else if (unformat (line_input, "via %U next-hop-table %d", |
| 512 | unformat_ip6_address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 513 | &rpath.frp_addr.ip6, &rpath.frp_fib_index)) |
| 514 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 515 | rpath.frp_weight = 1; |
| 516 | rpath.frp_sw_if_index = ~0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 517 | rpath.frp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 518 | vec_add1 (rpaths, rpath); |
| 519 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 520 | else if (unformat (line_input, "via %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 521 | unformat_ip4_address, &rpath.frp_addr.ip4)) |
| 522 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 523 | /* |
| 524 | * the recursive next-hops are by default in the same table |
| 525 | * as the prefix |
| 526 | */ |
| 527 | rpath.frp_fib_index = table_id; |
| 528 | rpath.frp_weight = 1; |
| 529 | rpath.frp_sw_if_index = ~0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 530 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 531 | vec_add1 (rpaths, rpath); |
| 532 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 533 | else if (unformat (line_input, "via %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 534 | unformat_ip6_address, &rpath.frp_addr.ip6)) |
| 535 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 536 | rpath.frp_fib_index = table_id; |
| 537 | rpath.frp_weight = 1; |
| 538 | rpath.frp_sw_if_index = ~0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 539 | rpath.frp_proto = FIB_PROTOCOL_IP6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 540 | vec_add1 (rpaths, rpath); |
| 541 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 542 | else if (unformat (line_input, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 543 | "lookup in table %d", &rpath.frp_fib_index)) |
| 544 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 545 | rpath.frp_proto = pfx.fp_proto; |
Neale Ranns | 6c3ebcc | 2016-10-02 21:20:15 +0100 | [diff] [blame] | 546 | rpath.frp_sw_if_index = ~0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 547 | vec_add1 (rpaths, rpath); |
| 548 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 549 | else if (vec_len (prefixs) > 0 && |
| 550 | unformat (line_input, "via %U", |
Neale Ranns | 8c2f05c | 2016-12-12 19:35:58 +0000 | [diff] [blame] | 551 | unformat_vnet_sw_interface, vnm, |
| 552 | &rpath.frp_sw_if_index)) |
| 553 | { |
| 554 | rpath.frp_weight = 1; |
| 555 | rpath.frp_proto = prefixs[0].fp_proto; |
| 556 | vec_add1 (rpaths, rpath); |
| 557 | } |
| 558 | else if (vec_len (prefixs) > 0 && |
| 559 | unformat (line_input, "via %U", |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 560 | unformat_dpo, &dpo, prefixs[0].fp_proto)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 561 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 562 | vec_add1 (dpos, dpo); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 563 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 564 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 565 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 566 | error = unformat_parse_error (line_input); |
| 567 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 568 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 569 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 570 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 571 | if (vec_len (prefixs) == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 572 | { |
| 573 | error = |
| 574 | clib_error_return (0, "expected ip4/ip6 destination address/length."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 575 | goto done; |
| 576 | } |
| 577 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 578 | if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 580 | error = clib_error_return (0, "expected paths."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 581 | goto done; |
| 582 | } |
| 583 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 584 | if (~0 == table_id) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 585 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 586 | /* |
| 587 | * if no table_id is passed we will manipulate the default |
| 588 | */ |
| 589 | fib_index = 0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 590 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 591 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 592 | { |
| 593 | fib_index = fib_table_id_find_fib_index (prefixs[0].fp_proto, table_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 594 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 595 | if (~0 == fib_index) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 596 | { |
| 597 | error = clib_error_return (0, "Nonexistent table id %d", table_id); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 598 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 599 | } |
| 600 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 601 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 602 | for (i = 0; i < vec_len (prefixs); i++) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 603 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 604 | if (is_del && 0 == vec_len (rpaths)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 605 | { |
| 606 | fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI); |
| 607 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 608 | else if (!is_del && 1 == vec_len (dpos)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 609 | { |
| 610 | fib_table_entry_special_dpo_add (fib_index, |
| 611 | &prefixs[i], |
| 612 | FIB_SOURCE_CLI, |
| 613 | FIB_ENTRY_FLAG_EXCLUSIVE, |
| 614 | &dpos[0]); |
| 615 | dpo_reset (&dpos[0]); |
| 616 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 617 | else if (vec_len (dpos) > 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 618 | { |
| 619 | error = |
| 620 | clib_error_return (0, |
| 621 | "Load-balancing over multiple special adjacencies is unsupported"); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 622 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 623 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 624 | else if (0 < vec_len (rpaths)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 625 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 626 | u32 k, j, n, incr; |
| 627 | ip46_address_t dst = prefixs[i].fp_addr; |
| 628 | f64 t[2]; |
| 629 | n = count; |
| 630 | t[0] = vlib_time_now (vm); |
| 631 | incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) - |
| 632 | prefixs[i].fp_len); |
| 633 | |
| 634 | for (k = 0; k < n; k++) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 635 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 636 | for (j = 0; j < vec_len (rpaths); j++) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 637 | { |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 638 | u32 fi; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 639 | /* |
| 640 | * the CLI parsing stored table Ids, swap to FIB indicies |
| 641 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 642 | fi = fib_table_id_find_fib_index (prefixs[i].fp_proto, |
| 643 | rpaths[i].frp_fib_index); |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 644 | |
| 645 | if (~0 == fi) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 646 | { |
| 647 | error = |
| 648 | clib_error_return (0, "Via table %d does not exist", |
| 649 | rpaths[i].frp_fib_index); |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 650 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 651 | } |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 652 | rpaths[i].frp_fib_index = fi; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 653 | |
| 654 | fib_prefix_t rpfx = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 655 | .fp_len = prefixs[i].fp_len, |
| 656 | .fp_proto = prefixs[i].fp_proto, |
| 657 | .fp_addr = dst, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 658 | }; |
| 659 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 660 | if (is_del) |
| 661 | fib_table_entry_path_remove2 (fib_index, |
| 662 | &rpfx, |
| 663 | FIB_SOURCE_CLI, &rpaths[j]); |
| 664 | else |
| 665 | fib_table_entry_path_add2 (fib_index, |
| 666 | &rpfx, |
| 667 | FIB_SOURCE_CLI, |
| 668 | FIB_ENTRY_FLAG_NONE, |
| 669 | &rpaths[j]); |
| 670 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 671 | |
| 672 | if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 673 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 674 | dst.ip4.as_u32 = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 675 | clib_host_to_net_u32 (incr + |
| 676 | clib_net_to_host_u32 (dst. |
| 677 | ip4.as_u32)); |
| 678 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 679 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 680 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 681 | int bucket = (incr < 64 ? 0 : 1); |
| 682 | dst.ip6.as_u64[bucket] = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 683 | clib_host_to_net_u64 (incr + |
| 684 | clib_net_to_host_u64 (dst.ip6.as_u64 |
| 685 | [bucket])); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 686 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 687 | } |
| 688 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 689 | t[1] = vlib_time_now (vm); |
| 690 | if (count > 1) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 691 | vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0])); |
| 692 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 693 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 694 | { |
| 695 | error = clib_error_return (0, "Don't understand what you want..."); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 696 | goto done; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 697 | } |
| 698 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 699 | |
| 700 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 701 | done: |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 702 | vec_free (dpos); |
| 703 | vec_free (prefixs); |
| 704 | vec_free (rpaths); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 705 | unformat_free (line_input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 706 | return error; |
| 707 | } |
| 708 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 709 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 710 | VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = { |
| 711 | .path = "ip", |
| 712 | .short_help = "Internet protocol (IP) commands", |
| 713 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 714 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 715 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 716 | /* *INDENT-OFF* */ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 717 | VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = { |
| 718 | .path = "ip6", |
| 719 | .short_help = "Internet protocol version 6 (IPv6) commands", |
| 720 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 721 | /* *INDENT-ON* */ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 722 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 723 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 724 | VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = { |
| 725 | .path = "show ip", |
| 726 | .short_help = "Internet protocol (IP) show commands", |
| 727 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 728 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 729 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 730 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 731 | VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = { |
| 732 | .path = "show ip6", |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 733 | .short_help = "Internet protocol version 6 (IPv6) show commands", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 734 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 735 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 736 | |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 737 | /*? |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 738 | * This command is used to add or delete IPv4 or IPv6 routes. All |
| 739 | * IP Addresses ('<em><dst-ip-addr>/<width></em>', |
| 740 | * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>') |
| 741 | * can be IPv4 or IPv6, but all must be of the same form in a single |
| 742 | * command. To display the current set of routes, use the commands |
| 743 | * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'. |
| 744 | * |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 745 | * @cliexpar |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 746 | * Example of how to add a straight forward static route: |
| 747 | * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0} |
| 748 | * Example of how to delete a straight forward static route: |
| 749 | * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 750 | * Mainly for route add/del performance testing, one can add or delete |
| 751 | * multiple routes by adding 'count N' to the previous item: |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 752 | * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 753 | * Add multiple routes for the same destination to create equal-cost multipath: |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 754 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0} |
| 755 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0} |
| 756 | * For unequal-cost multipath, specify the desired weights. This |
| 757 | * combination of weights results in 3/4 of the traffic following the |
| 758 | * second path, 1/4 following the first path: |
| 759 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1} |
| 760 | * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3} |
| 761 | * To add a route to a particular FIB table (VRF), use: |
| 762 | * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0} |
Keith Burns (alagalah) | 6ef7bb9 | 2016-09-10 14:55:04 -0700 | [diff] [blame] | 763 | ?*/ |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 764 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 765 | VLIB_CLI_COMMAND (ip_route_command, static) = { |
| 766 | .path = "ip route", |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 767 | .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>] [weight <weight>]] | [via arp <interface> <adj-hop-ip-addr>] | [via drop|punt|local<id>|arp|classify <classify-idx>] [lookup in table <out-table-id>]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 768 | .function = vnet_ip_route_cmd, |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 769 | .is_mp_safe = 1, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 770 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 771 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 772 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 773 | clib_error_t * |
| 774 | vnet_ip_mroute_cmd (vlib_main_t * vm, |
| 775 | unformat_input_t * main_input, vlib_cli_command_t * cmd) |
| 776 | { |
| 777 | unformat_input_t _line_input, *line_input = &_line_input; |
| 778 | clib_error_t *error = NULL; |
| 779 | fib_route_path_t rpath; |
| 780 | u32 table_id, is_del; |
| 781 | vnet_main_t *vnm; |
| 782 | mfib_prefix_t pfx; |
| 783 | u32 fib_index; |
| 784 | mfib_itf_flags_t iflags = 0; |
| 785 | mfib_entry_flags_t eflags = 0; |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 786 | u32 gcount, scount, ss, gg, incr; |
| 787 | f64 timet[2]; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 788 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 789 | gcount = scount = 1; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 790 | vnm = vnet_get_main (); |
| 791 | is_del = 0; |
| 792 | table_id = 0; |
| 793 | memset (&pfx, 0, sizeof (pfx)); |
| 794 | memset (&rpath, 0, sizeof (rpath)); |
| 795 | rpath.frp_sw_if_index = ~0; |
| 796 | |
| 797 | /* Get a line of input. */ |
| 798 | if (!unformat_user (main_input, unformat_line_input, line_input)) |
| 799 | return 0; |
| 800 | |
| 801 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 802 | { |
| 803 | if (unformat (line_input, "table %d", &table_id)) |
| 804 | ; |
| 805 | else if (unformat (line_input, "del")) |
| 806 | is_del = 1; |
| 807 | else if (unformat (line_input, "add")) |
| 808 | is_del = 0; |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 809 | else if (unformat (line_input, "scount %d", &scount)) |
| 810 | ; |
| 811 | else if (unformat (line_input, "gcount %d", &gcount)) |
| 812 | ; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 813 | else if (unformat (line_input, "%U %U", |
| 814 | unformat_ip4_address, |
| 815 | &pfx.fp_src_addr.ip4, |
| 816 | unformat_ip4_address, &pfx.fp_grp_addr.ip4)) |
| 817 | { |
| 818 | pfx.fp_proto = FIB_PROTOCOL_IP4; |
| 819 | pfx.fp_len = 64; |
| 820 | } |
| 821 | else if (unformat (line_input, "%U %U", |
| 822 | unformat_ip6_address, |
| 823 | &pfx.fp_src_addr.ip6, |
| 824 | unformat_ip6_address, &pfx.fp_grp_addr.ip6)) |
| 825 | { |
| 826 | pfx.fp_proto = FIB_PROTOCOL_IP6; |
| 827 | pfx.fp_len = 256; |
| 828 | } |
| 829 | else if (unformat (line_input, "%U/%d", |
| 830 | unformat_ip4_address, |
| 831 | &pfx.fp_grp_addr.ip4, &pfx.fp_len)) |
| 832 | { |
| 833 | pfx.fp_proto = FIB_PROTOCOL_IP4; |
| 834 | } |
| 835 | else if (unformat (line_input, "%U/%d", |
| 836 | unformat_ip6_address, |
| 837 | &pfx.fp_grp_addr.ip6, &pfx.fp_len)) |
| 838 | { |
| 839 | pfx.fp_proto = FIB_PROTOCOL_IP6; |
| 840 | } |
| 841 | else if (unformat (line_input, "%U", |
| 842 | unformat_ip4_address, &pfx.fp_grp_addr.ip4)) |
| 843 | { |
| 844 | memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4)); |
| 845 | pfx.fp_proto = FIB_PROTOCOL_IP4; |
| 846 | pfx.fp_len = 32; |
| 847 | } |
| 848 | else if (unformat (line_input, "%U", |
| 849 | unformat_ip6_address, &pfx.fp_grp_addr.ip6)) |
| 850 | { |
| 851 | memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6)); |
| 852 | pfx.fp_proto = FIB_PROTOCOL_IP6; |
| 853 | pfx.fp_len = 128; |
| 854 | } |
| 855 | else if (unformat (line_input, "via %U", |
| 856 | unformat_vnet_sw_interface, vnm, |
| 857 | &rpath.frp_sw_if_index)) |
| 858 | { |
| 859 | rpath.frp_weight = 1; |
| 860 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
| 861 | } |
| 862 | else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags)) |
| 863 | ; |
| 864 | else if (unformat (line_input, "%U", |
| 865 | unformat_mfib_entry_flags, &eflags)) |
| 866 | ; |
| 867 | else |
| 868 | { |
| 869 | error = unformat_parse_error (line_input); |
| 870 | goto done; |
| 871 | } |
| 872 | } |
| 873 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 874 | if (~0 == table_id) |
| 875 | { |
| 876 | /* |
| 877 | * if no table_id is passed we will manipulate the default |
| 878 | */ |
| 879 | fib_index = 0; |
| 880 | } |
| 881 | else |
| 882 | { |
| 883 | fib_index = mfib_table_find (pfx.fp_proto, table_id); |
| 884 | |
| 885 | if (~0 == fib_index) |
| 886 | { |
| 887 | error = clib_error_return (0, "Nonexistent table id %d", table_id); |
| 888 | goto done; |
| 889 | } |
| 890 | } |
| 891 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 892 | timet[0] = vlib_time_now (vm); |
| 893 | |
| 894 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 895 | { |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 896 | incr = 1 << (32 - (pfx.fp_len % 32)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 897 | } |
| 898 | else |
| 899 | { |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 900 | incr = 1 << (128 - (pfx.fp_len % 128)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 901 | } |
| 902 | |
Neale Ranns | 52456fc | 2017-02-15 00:38:27 -0800 | [diff] [blame] | 903 | for (ss = 0; ss < scount; ss++) |
| 904 | { |
| 905 | for (gg = 0; gg < gcount; gg++) |
| 906 | { |
| 907 | if (is_del && 0 == rpath.frp_weight) |
| 908 | { |
| 909 | /* no path provided => route delete */ |
| 910 | mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI); |
| 911 | } |
| 912 | else if (eflags) |
| 913 | { |
| 914 | mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI, |
| 915 | eflags); |
| 916 | } |
| 917 | else |
| 918 | { |
| 919 | if (is_del) |
| 920 | mfib_table_entry_path_remove (fib_index, |
| 921 | &pfx, MFIB_SOURCE_CLI, &rpath); |
| 922 | else |
| 923 | mfib_table_entry_path_update (fib_index, |
| 924 | &pfx, MFIB_SOURCE_CLI, &rpath, |
| 925 | iflags); |
| 926 | } |
| 927 | |
| 928 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
| 929 | { |
| 930 | pfx.fp_grp_addr.ip4.as_u32 = |
| 931 | clib_host_to_net_u32 (incr + |
| 932 | clib_net_to_host_u32 (pfx. |
| 933 | fp_grp_addr.ip4. |
| 934 | as_u32)); |
| 935 | } |
| 936 | else |
| 937 | { |
| 938 | int bucket = (incr < 64 ? 0 : 1); |
| 939 | pfx.fp_grp_addr.ip6.as_u64[bucket] = |
| 940 | clib_host_to_net_u64 (incr + |
| 941 | clib_net_to_host_u64 (pfx. |
| 942 | fp_grp_addr.ip6.as_u64 |
| 943 | [bucket])); |
| 944 | |
| 945 | } |
| 946 | } |
| 947 | if (FIB_PROTOCOL_IP4 == pfx.fp_proto) |
| 948 | { |
| 949 | pfx.fp_src_addr.ip4.as_u32 = |
| 950 | clib_host_to_net_u32 (1 + |
| 951 | clib_net_to_host_u32 (pfx.fp_src_addr. |
| 952 | ip4.as_u32)); |
| 953 | } |
| 954 | else |
| 955 | { |
| 956 | pfx.fp_src_addr.ip6.as_u64[1] = |
| 957 | clib_host_to_net_u64 (1 + |
| 958 | clib_net_to_host_u64 (pfx.fp_src_addr. |
| 959 | ip6.as_u64[1])); |
| 960 | } |
| 961 | } |
| 962 | |
| 963 | timet[1] = vlib_time_now (vm); |
| 964 | |
| 965 | if (scount > 1 || gcount > 1) |
| 966 | vlib_cli_output (vm, "%.6e routes/sec", |
| 967 | (scount * gcount) / (timet[1] - timet[0])); |
| 968 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 969 | done: |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 970 | unformat_free (line_input); |
| 971 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 972 | return error; |
| 973 | } |
| 974 | |
| 975 | /*? |
| 976 | * This command is used to add or delete IPv4 or IPv6 multicastroutes. All |
| 977 | * IP Addresses ('<em><dst-ip-addr>/<width></em>', |
| 978 | * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>') |
| 979 | * can be IPv4 or IPv6, but all must be of the same form in a single |
| 980 | * command. To display the current set of routes, use the commands |
| 981 | * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'. |
| 982 | * The full set of support flags for interfaces and route is shown via; |
| 983 | * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>' |
| 984 | * respectively. |
| 985 | * @cliexpar |
| 986 | * Example of how to add a forwarding interface to a route (and create the |
| 987 | * route if it does not exist) |
| 988 | * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward} |
| 989 | * Example of how to add an accepting interface to a route (and create the |
| 990 | * route if it does not exist) |
| 991 | * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept} |
| 992 | * Example of changing the route's flags to send signals via the API |
| 993 | * @cliexcmd{ip mroute add 232.1.1.1 Signal} |
| 994 | |
| 995 | ?*/ |
| 996 | /* *INDENT-OFF* */ |
| 997 | VLIB_CLI_COMMAND (ip_mroute_command, static) = |
| 998 | { |
| 999 | .path = "ip mroute", |
| 1000 | .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],", |
| 1001 | .function = vnet_ip_mroute_cmd, |
| 1002 | .is_mp_safe = 1, |
| 1003 | }; |
| 1004 | /* *INDENT-ON* */ |
| 1005 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1006 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1007 | * The next two routines address a longstanding script hemorrhoid. |
| 1008 | * Probing a v4 or v6 neighbor needs to appear to be synchronous, |
| 1009 | * or dependent route-adds will simply fail. |
| 1010 | */ |
| 1011 | static clib_error_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1012 | ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1013 | int retry_count) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1014 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1015 | vnet_main_t *vnm = vnet_get_main (); |
| 1016 | clib_error_t *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1017 | int i; |
| 1018 | int resolved = 0; |
| 1019 | uword event_type; |
| 1020 | uword *event_data = 0; |
| 1021 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1022 | ASSERT (vlib_in_process_context (vm)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1023 | |
| 1024 | if (retry_count > 0) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1025 | vnet_register_ip6_neighbor_resolution_event |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1026 | (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1027 | 1 /* event */ , 0 /* data */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1028 | |
| 1029 | for (i = 0; i < retry_count; i++) |
| 1030 | { |
| 1031 | /* The interface may be down, etc. */ |
| 1032 | e = ip6_probe_neighbor (vm, a, sw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1033 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1034 | if (e) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1035 | return e; |
| 1036 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1037 | vlib_process_wait_for_event_or_clock (vm, 1.0); |
| 1038 | event_type = vlib_process_get_events (vm, &event_data); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1039 | switch (event_type) |
| 1040 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1041 | case 1: /* resolved... */ |
| 1042 | vlib_cli_output (vm, "Resolved %U", format_ip6_address, a); |
| 1043 | resolved = 1; |
| 1044 | goto done; |
| 1045 | |
| 1046 | case ~0: /* timeout */ |
| 1047 | break; |
| 1048 | |
| 1049 | default: |
| 1050 | clib_warning ("unknown event_type %d", event_type); |
| 1051 | } |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 1052 | vec_reset_length (event_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1053 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1054 | |
| 1055 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1056 | |
| 1057 | if (!resolved) |
| 1058 | return clib_error_return (0, "Resolution failed for %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1059 | format_ip6_address, a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1060 | return 0; |
| 1061 | } |
| 1062 | |
| 1063 | static clib_error_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1064 | ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index, |
| 1065 | int retry_count) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1066 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1067 | vnet_main_t *vnm = vnet_get_main (); |
| 1068 | clib_error_t *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1069 | int i; |
| 1070 | int resolved = 0; |
| 1071 | uword event_type; |
| 1072 | uword *event_data = 0; |
| 1073 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1074 | ASSERT (vlib_in_process_context (vm)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1075 | |
| 1076 | if (retry_count > 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1077 | vnet_register_ip4_arp_resolution_event |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1078 | (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1079 | 1 /* event */ , 0 /* data */ ); |
| 1080 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1081 | for (i = 0; i < retry_count; i++) |
| 1082 | { |
| 1083 | /* The interface may be down, etc. */ |
| 1084 | e = ip4_probe_neighbor (vm, a, sw_if_index); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1085 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1086 | if (e) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1087 | return e; |
| 1088 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1089 | vlib_process_wait_for_event_or_clock (vm, 1.0); |
| 1090 | event_type = vlib_process_get_events (vm, &event_data); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1091 | switch (event_type) |
| 1092 | { |
| 1093 | case 1: /* resolved... */ |
| 1094 | vlib_cli_output (vm, "Resolved %U", format_ip4_address, a); |
| 1095 | resolved = 1; |
| 1096 | goto done; |
| 1097 | |
| 1098 | case ~0: /* timeout */ |
| 1099 | break; |
| 1100 | |
| 1101 | default: |
| 1102 | clib_warning ("unknown event_type %d", event_type); |
| 1103 | } |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 1104 | vec_reset_length (event_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1105 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1106 | |
| 1107 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1108 | |
| 1109 | vec_reset_length (event_data); |
| 1110 | |
| 1111 | if (!resolved) |
| 1112 | return clib_error_return (0, "Resolution failed for %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1113 | format_ip4_address, a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1114 | return 0; |
| 1115 | } |
| 1116 | |
| 1117 | static clib_error_t * |
| 1118 | probe_neighbor_address (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1119 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1120 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1121 | vnet_main_t *vnm = vnet_get_main (); |
| 1122 | unformat_input_t _line_input, *line_input = &_line_input; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1123 | ip4_address_t a4; |
| 1124 | ip6_address_t a6; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1125 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1126 | u32 sw_if_index = ~0; |
| 1127 | int retry_count = 3; |
| 1128 | int is_ip4 = 1; |
| 1129 | int address_set = 0; |
| 1130 | |
| 1131 | /* Get a line of input. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1132 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1133 | return 0; |
| 1134 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1135 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1136 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1137 | if (unformat_user (line_input, unformat_vnet_sw_interface, vnm, |
| 1138 | &sw_if_index)) |
| 1139 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1140 | else if (unformat (line_input, "retry %d", &retry_count)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1141 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1142 | |
| 1143 | else if (unformat (line_input, "%U", unformat_ip4_address, &a4)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1144 | address_set++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1145 | else if (unformat (line_input, "%U", unformat_ip6_address, &a6)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1146 | { |
| 1147 | address_set++; |
| 1148 | is_ip4 = 0; |
| 1149 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1150 | else |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 1151 | { |
| 1152 | error = clib_error_return (0, "unknown input '%U'", |
| 1153 | format_unformat_error, line_input); |
| 1154 | goto done; |
| 1155 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1156 | } |
| 1157 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1158 | if (sw_if_index == ~0) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 1159 | { |
| 1160 | error = clib_error_return (0, "Interface required, not set."); |
| 1161 | goto done; |
| 1162 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1163 | if (address_set == 0) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 1164 | { |
| 1165 | error = clib_error_return (0, "ip address required, not set."); |
| 1166 | goto done; |
| 1167 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1168 | if (address_set > 1) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 1169 | { |
| 1170 | error = clib_error_return (0, "Multiple ip addresses not supported."); |
| 1171 | goto done; |
| 1172 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1173 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1174 | if (is_ip4) |
| 1175 | error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1176 | else |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1177 | error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count); |
| 1178 | |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame^] | 1179 | done: |
| 1180 | unformat_free (line_input); |
| 1181 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1182 | return error; |
| 1183 | } |
| 1184 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1185 | /*? |
| 1186 | * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or |
| 1187 | * attempts IPv6 neighbor discovery depending on the supplied IP address |
| 1188 | * format. |
| 1189 | * |
| 1190 | * @note This command will not immediately affect the indicated FIB; it |
| 1191 | * is not suitable for use in establishing a FIB entry prior to adding |
| 1192 | * recursive FIB entries. As in: don't use it in a script to probe a |
| 1193 | * gateway prior to adding a default route. It won't work. Instead, |
| 1194 | * configure a static ARP cache entry [see '<em>set ip arp</em>'], or |
| 1195 | * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>']. |
| 1196 | * |
| 1197 | * @cliexpar |
| 1198 | * Example of probe for an IPv4 address: |
| 1199 | * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2} |
| 1200 | ?*/ |
| 1201 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1202 | VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = { |
| 1203 | .path = "ip probe-neighbor", |
| 1204 | .function = probe_neighbor_address, |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1205 | .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]", |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 1206 | .is_mp_safe = 1, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1207 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1208 | /* *INDENT-ON* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1209 | |
| 1210 | /* |
| 1211 | * fd.io coding-style-patch-verification: ON |
| 1212 | * |
| 1213 | * Local Variables: |
| 1214 | * eval: (c-set-style "gnu") |
| 1215 | * End: |
| 1216 | */ |