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