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/ip4_forward.c: IP v4 forwarding |
| 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 | |
| 40 | #include <vnet/vnet.h> |
| 41 | #include <vnet/ip/ip.h> |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 42 | #include <vnet/ip/ip_frag.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 43 | #include <vnet/ethernet/ethernet.h> /* for ethernet_header_t */ |
| 44 | #include <vnet/ethernet/arp_packet.h> /* for ethernet_arp_header_t */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | #include <vnet/ppp/ppp.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 46 | #include <vnet/srp/srp.h> /* for srp_hw_interface_class */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 47 | #include <vnet/api_errno.h> /* for API error numbers */ |
| 48 | #include <vnet/fib/fib_table.h> /* for FIB table and entry creation */ |
| 49 | #include <vnet/fib/fib_entry.h> /* for FIB table and entry creation */ |
| 50 | #include <vnet/fib/fib_urpf_list.h> /* for FIB uRPF check */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 51 | #include <vnet/fib/ip4_fib.h> |
| 52 | #include <vnet/dpo/load_balance.h> |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 53 | #include <vnet/dpo/load_balance_map.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 54 | #include <vnet/dpo/classify_dpo.h> |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 55 | #include <vnet/mfib/mfib_table.h> /* for mFIB table and entry creation */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
Vijayabhaskar Katamreddy | acbde66 | 2018-01-23 13:39:40 -0800 | [diff] [blame] | 57 | #include <vnet/ip/ip4_forward.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | |
Chris Luke | 8e5b041 | 2016-07-26 13:06:10 -0400 | [diff] [blame] | 59 | /** @brief IPv4 lookup node. |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 60 | @node ip4-lookup |
| 61 | |
| 62 | This is the main IPv4 lookup dispatch node. |
| 63 | |
| 64 | @param vm vlib_main_t corresponding to the current thread |
| 65 | @param node vlib_node_runtime_t |
| 66 | @param frame vlib_frame_t whose contents should be dispatched |
| 67 | |
| 68 | @par Graph mechanics: buffer metadata, next index usage |
| 69 | |
| 70 | @em Uses: |
| 71 | - <code>vnet_buffer(b)->sw_if_index[VLIB_RX]</code> |
| 72 | - Indicates the @c sw_if_index value of the interface that the |
| 73 | packet was received on. |
| 74 | - <code>vnet_buffer(b)->sw_if_index[VLIB_TX]</code> |
| 75 | - When the value is @c ~0 then the node performs a longest prefix |
| 76 | match (LPM) for the packet destination address in the FIB attached |
| 77 | to the receive interface. |
| 78 | - Otherwise perform LPM for the packet destination address in the |
| 79 | indicated FIB. In this case <code>[VLIB_TX]</code> is a FIB index |
| 80 | value (0, 1, ...) and not a VRF id. |
| 81 | |
| 82 | @em Sets: |
| 83 | - <code>vnet_buffer(b)->ip.adj_index[VLIB_TX]</code> |
| 84 | - The lookup result adjacency index. |
| 85 | |
| 86 | <em>Next Index:</em> |
| 87 | - Dispatches the packet to the node index found in |
| 88 | ip_adjacency_t @c adj->lookup_next_index |
| 89 | (where @c adj is the lookup result adjacency). |
| 90 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | static uword |
| 92 | ip4_lookup (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 93 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | { |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 95 | return ip4_lookup_inline (vm, node, frame, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 96 | /* lookup_for_responses_to_locally_received_packets */ |
| 97 | 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 98 | |
| 99 | } |
| 100 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 101 | static u8 *format_ip4_lookup_trace (u8 * s, va_list * args); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 102 | |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 103 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 104 | VLIB_REGISTER_NODE (ip4_lookup_node) = |
| 105 | { |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 106 | .function = ip4_lookup, |
| 107 | .name = "ip4-lookup", |
| 108 | .vector_size = sizeof (u32), |
| 109 | .format_trace = format_ip4_lookup_trace, |
| 110 | .n_next_nodes = IP_LOOKUP_N_NEXT, |
| 111 | .next_nodes = IP4_LOOKUP_NEXT_NODES, |
| 112 | }; |
| 113 | /* *INDENT-ON* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 114 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 115 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_lookup_node, ip4_lookup); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 116 | |
Damjan Marion | 2574d9f | 2018-06-26 14:45:49 +0200 | [diff] [blame] | 117 | static uword |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 118 | ip4_load_balance (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 119 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 121 | vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters; |
| 122 | u32 n_left_from, n_left_to_next, *from, *to_next; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 123 | ip_lookup_next_t next; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 124 | u32 thread_index = vm->thread_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 126 | from = vlib_frame_vector_args (frame); |
| 127 | n_left_from = frame->n_vectors; |
| 128 | next = node->cached_next_index; |
| 129 | |
| 130 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 131 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 132 | |
| 133 | while (n_left_from > 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 135 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 136 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 137 | |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 138 | while (n_left_from >= 4 && n_left_to_next >= 2) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 139 | { |
| 140 | ip_lookup_next_t next0, next1; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 141 | const load_balance_t *lb0, *lb1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 142 | vlib_buffer_t *p0, *p1; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 143 | u32 pi0, lbi0, hc0, pi1, lbi1, hc1; |
| 144 | const ip4_header_t *ip0, *ip1; |
| 145 | const dpo_id_t *dpo0, *dpo1; |
| 146 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 147 | /* Prefetch next iteration. */ |
| 148 | { |
| 149 | vlib_buffer_t *p2, *p3; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 150 | |
| 151 | p2 = vlib_get_buffer (vm, from[2]); |
| 152 | p3 = vlib_get_buffer (vm, from[3]); |
| 153 | |
| 154 | vlib_prefetch_buffer_header (p2, STORE); |
| 155 | vlib_prefetch_buffer_header (p3, STORE); |
| 156 | |
| 157 | CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE); |
| 158 | CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 159 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 160 | |
| 161 | pi0 = to_next[0] = from[0]; |
| 162 | pi1 = to_next[1] = from[1]; |
| 163 | |
| 164 | from += 2; |
| 165 | n_left_from -= 2; |
| 166 | to_next += 2; |
| 167 | n_left_to_next -= 2; |
| 168 | |
| 169 | p0 = vlib_get_buffer (vm, pi0); |
| 170 | p1 = vlib_get_buffer (vm, pi1); |
| 171 | |
| 172 | ip0 = vlib_buffer_get_current (p0); |
| 173 | ip1 = vlib_buffer_get_current (p1); |
| 174 | lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 175 | lbi1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX]; |
| 176 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 177 | lb0 = load_balance_get (lbi0); |
| 178 | lb1 = load_balance_get (lbi1); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 179 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 180 | /* |
| 181 | * this node is for via FIBs we can re-use the hash value from the |
| 182 | * to node if present. |
| 183 | * We don't want to use the same hash value at each level in the recursion |
| 184 | * graph as that would lead to polarisation |
| 185 | */ |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 186 | hc0 = hc1 = 0; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 187 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 188 | if (PREDICT_FALSE (lb0->lb_n_buckets > 1)) |
| 189 | { |
| 190 | if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash)) |
| 191 | { |
| 192 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
| 193 | vnet_buffer (p0)->ip.flow_hash >> 1; |
| 194 | } |
| 195 | else |
| 196 | { |
| 197 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 198 | ip4_compute_flow_hash (ip0, lb0->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 199 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 200 | dpo0 = load_balance_get_fwd_bucket |
| 201 | (lb0, (hc0 & (lb0->lb_n_buckets_minus_1))); |
| 202 | } |
| 203 | else |
| 204 | { |
| 205 | dpo0 = load_balance_get_bucket_i (lb0, 0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 206 | } |
| 207 | if (PREDICT_FALSE (lb1->lb_n_buckets > 1)) |
| 208 | { |
| 209 | if (PREDICT_TRUE (vnet_buffer (p1)->ip.flow_hash)) |
| 210 | { |
| 211 | hc1 = vnet_buffer (p1)->ip.flow_hash = |
| 212 | vnet_buffer (p1)->ip.flow_hash >> 1; |
| 213 | } |
| 214 | else |
| 215 | { |
| 216 | hc1 = vnet_buffer (p1)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 217 | ip4_compute_flow_hash (ip1, lb1->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 218 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 219 | dpo1 = load_balance_get_fwd_bucket |
| 220 | (lb1, (hc1 & (lb1->lb_n_buckets_minus_1))); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 221 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 222 | else |
| 223 | { |
| 224 | dpo1 = load_balance_get_bucket_i (lb1, 0); |
| 225 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 226 | |
| 227 | next0 = dpo0->dpoi_next_node; |
| 228 | next1 = dpo1->dpoi_next_node; |
| 229 | |
| 230 | vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index; |
| 231 | vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index; |
| 232 | |
| 233 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 234 | (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0)); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 235 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 236 | (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, p1)); |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 237 | |
| 238 | vlib_validate_buffer_enqueue_x2 (vm, node, next, |
| 239 | to_next, n_left_to_next, |
| 240 | pi0, pi1, next0, next1); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 241 | } |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 242 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 243 | while (n_left_from > 0 && n_left_to_next > 0) |
| 244 | { |
| 245 | ip_lookup_next_t next0; |
| 246 | const load_balance_t *lb0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 247 | vlib_buffer_t *p0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 248 | u32 pi0, lbi0, hc0; |
| 249 | const ip4_header_t *ip0; |
| 250 | const dpo_id_t *dpo0; |
| 251 | |
| 252 | pi0 = from[0]; |
| 253 | to_next[0] = pi0; |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 254 | from += 1; |
| 255 | to_next += 1; |
| 256 | n_left_to_next -= 1; |
| 257 | n_left_from -= 1; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 258 | |
| 259 | p0 = vlib_get_buffer (vm, pi0); |
| 260 | |
| 261 | ip0 = vlib_buffer_get_current (p0); |
| 262 | lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 263 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 264 | lb0 = load_balance_get (lbi0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 265 | |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 266 | hc0 = 0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 267 | if (PREDICT_FALSE (lb0->lb_n_buckets > 1)) |
| 268 | { |
| 269 | if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash)) |
| 270 | { |
| 271 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
| 272 | vnet_buffer (p0)->ip.flow_hash >> 1; |
| 273 | } |
| 274 | else |
| 275 | { |
| 276 | hc0 = vnet_buffer (p0)->ip.flow_hash = |
AkshayaNadahalli | 153b871 | 2017-03-06 18:22:29 +0000 | [diff] [blame] | 277 | ip4_compute_flow_hash (ip0, lb0->lb_hash_config); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 278 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 279 | dpo0 = load_balance_get_fwd_bucket |
| 280 | (lb0, (hc0 & (lb0->lb_n_buckets_minus_1))); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 281 | } |
Neale Ranns | f12a83f | 2017-04-18 09:09:40 -0700 | [diff] [blame] | 282 | else |
| 283 | { |
| 284 | dpo0 = load_balance_get_bucket_i (lb0, 0); |
| 285 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 286 | |
| 287 | next0 = dpo0->dpoi_next_node; |
| 288 | vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index; |
| 289 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 290 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 291 | (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 292 | |
Neale Ranns | 2be95c1 | 2016-11-19 13:50:04 +0000 | [diff] [blame] | 293 | vlib_validate_buffer_enqueue_x1 (vm, node, next, |
| 294 | to_next, n_left_to_next, |
| 295 | pi0, next0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | vlib_put_next_frame (vm, node, next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | } |
| 300 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 301 | return frame->n_vectors; |
| 302 | } |
| 303 | |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 304 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 305 | VLIB_REGISTER_NODE (ip4_load_balance_node) = |
| 306 | { |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 307 | .function = ip4_load_balance, |
| 308 | .name = "ip4-load-balance", |
| 309 | .vector_size = sizeof (u32), |
| 310 | .sibling_of = "ip4-lookup", |
| 311 | .format_trace = |
| 312 | format_ip4_lookup_trace, |
| 313 | }; |
| 314 | /* *INDENT-ON* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 315 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 316 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_load_balance_node, ip4_load_balance); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 317 | |
| 318 | /* get first interface address */ |
| 319 | ip4_address_t * |
| 320 | ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 321 | ip_interface_address_t ** result_ia) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 322 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 323 | ip_lookup_main_t *lm = &im->lookup_main; |
| 324 | ip_interface_address_t *ia = 0; |
| 325 | ip4_address_t *result = 0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 326 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 327 | /* *INDENT-OFF* */ |
| 328 | foreach_ip_interface_address |
| 329 | (lm, ia, sw_if_index, |
| 330 | 1 /* honor unnumbered */ , |
| 331 | ({ |
| 332 | ip4_address_t * a = |
| 333 | ip_interface_address_get_address (lm, ia); |
| 334 | result = a; |
| 335 | break; |
| 336 | })); |
| 337 | /* *INDENT-OFF* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 338 | if (result_ia) |
| 339 | *result_ia = result ? ia : 0; |
| 340 | return result; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | static void |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 344 | ip4_add_subnet_bcast_route (u32 fib_index, |
| 345 | fib_prefix_t *pfx, |
| 346 | u32 sw_if_index) |
| 347 | { |
| 348 | vnet_sw_interface_flags_t iflags; |
| 349 | |
| 350 | iflags = vnet_sw_interface_get_flags(vnet_get_main(), sw_if_index); |
| 351 | |
| 352 | fib_table_entry_special_remove(fib_index, |
| 353 | pfx, |
| 354 | FIB_SOURCE_INTERFACE); |
| 355 | |
| 356 | if (iflags & VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST) |
| 357 | { |
| 358 | fib_table_entry_update_one_path (fib_index, pfx, |
| 359 | FIB_SOURCE_INTERFACE, |
| 360 | FIB_ENTRY_FLAG_NONE, |
| 361 | DPO_PROTO_IP4, |
| 362 | /* No next-hop address */ |
| 363 | &ADJ_BCAST_ADDR, |
| 364 | sw_if_index, |
| 365 | // invalid FIB index |
| 366 | ~0, |
| 367 | 1, |
| 368 | // no out-label stack |
| 369 | NULL, |
| 370 | FIB_ROUTE_PATH_FLAG_NONE); |
| 371 | } |
| 372 | else |
| 373 | { |
| 374 | fib_table_entry_special_add(fib_index, |
| 375 | pfx, |
| 376 | FIB_SOURCE_INTERFACE, |
| 377 | (FIB_ENTRY_FLAG_DROP | |
| 378 | FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT)); |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | static void |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | ip4_add_interface_routes (u32 sw_if_index, |
| 384 | ip4_main_t * im, u32 fib_index, |
| 385 | ip_interface_address_t * a) |
| 386 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 387 | ip_lookup_main_t *lm = &im->lookup_main; |
| 388 | ip4_address_t *address = ip_interface_address_get_address (lm, a); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 389 | fib_prefix_t pfx = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 390 | .fp_len = a->address_length, |
| 391 | .fp_proto = FIB_PROTOCOL_IP4, |
| 392 | .fp_addr.ip4 = *address, |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 393 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 394 | |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 395 | if (pfx.fp_len <= 30) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 396 | { |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 397 | /* a /30 or shorter - add a glean for the network address */ |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 398 | fib_table_entry_update_one_path (fib_index, &pfx, |
| 399 | FIB_SOURCE_INTERFACE, |
| 400 | (FIB_ENTRY_FLAG_CONNECTED | |
| 401 | FIB_ENTRY_FLAG_ATTACHED), |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 402 | DPO_PROTO_IP4, |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 403 | /* No next-hop address */ |
| 404 | NULL, |
| 405 | sw_if_index, |
| 406 | // invalid FIB index |
| 407 | ~0, |
| 408 | 1, |
| 409 | // no out-label stack |
| 410 | NULL, |
| 411 | FIB_ROUTE_PATH_FLAG_NONE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 412 | |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 413 | /* Add the two broadcast addresses as drop */ |
| 414 | fib_prefix_t net_pfx = { |
| 415 | .fp_len = 32, |
| 416 | .fp_proto = FIB_PROTOCOL_IP4, |
| 417 | .fp_addr.ip4.as_u32 = address->as_u32 & im->fib_masks[pfx.fp_len], |
| 418 | }; |
| 419 | if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32) |
| 420 | fib_table_entry_special_add(fib_index, |
| 421 | &net_pfx, |
| 422 | FIB_SOURCE_INTERFACE, |
| 423 | (FIB_ENTRY_FLAG_DROP | |
Neale Ranns | a055830 | 2017-04-13 00:44:52 -0700 | [diff] [blame] | 424 | FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT)); |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 425 | net_pfx.fp_addr.ip4.as_u32 |= ~im->fib_masks[pfx.fp_len]; |
| 426 | if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32) |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 427 | ip4_add_subnet_bcast_route(fib_index, &net_pfx, sw_if_index); |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 428 | } |
| 429 | else if (pfx.fp_len == 31) |
| 430 | { |
| 431 | u32 mask = clib_host_to_net_u32(1); |
| 432 | fib_prefix_t net_pfx = pfx; |
| 433 | |
| 434 | net_pfx.fp_len = 32; |
| 435 | net_pfx.fp_addr.ip4.as_u32 ^= mask; |
| 436 | |
| 437 | /* a /31 - add the other end as an attached host */ |
| 438 | fib_table_entry_update_one_path (fib_index, &net_pfx, |
| 439 | FIB_SOURCE_INTERFACE, |
| 440 | (FIB_ENTRY_FLAG_ATTACHED), |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 441 | DPO_PROTO_IP4, |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 442 | &net_pfx.fp_addr, |
| 443 | sw_if_index, |
| 444 | // invalid FIB index |
| 445 | ~0, |
| 446 | 1, |
| 447 | NULL, |
| 448 | FIB_ROUTE_PATH_FLAG_NONE); |
| 449 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 450 | pfx.fp_len = 32; |
| 451 | |
| 452 | if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 453 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 454 | u32 classify_table_index = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 455 | lm->classify_table_index_by_sw_if_index[sw_if_index]; |
| 456 | if (classify_table_index != (u32) ~ 0) |
| 457 | { |
| 458 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 459 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 460 | dpo_set (&dpo, |
| 461 | DPO_CLASSIFY, |
| 462 | DPO_PROTO_IP4, |
| 463 | classify_dpo_create (DPO_PROTO_IP4, classify_table_index)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 464 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 465 | fib_table_entry_special_dpo_add (fib_index, |
| 466 | &pfx, |
| 467 | FIB_SOURCE_CLASSIFY, |
| 468 | FIB_ENTRY_FLAG_NONE, &dpo); |
| 469 | dpo_reset (&dpo); |
| 470 | } |
| 471 | } |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 472 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 473 | fib_table_entry_update_one_path (fib_index, &pfx, |
| 474 | FIB_SOURCE_INTERFACE, |
| 475 | (FIB_ENTRY_FLAG_CONNECTED | |
| 476 | FIB_ENTRY_FLAG_LOCAL), |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 477 | DPO_PROTO_IP4, |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 478 | &pfx.fp_addr, |
| 479 | sw_if_index, |
| 480 | // invalid FIB index |
| 481 | ~0, |
| 482 | 1, NULL, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 483 | FIB_ROUTE_PATH_FLAG_NONE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | static void |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 487 | ip4_del_interface_routes (ip4_main_t * im, |
| 488 | u32 fib_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 489 | ip4_address_t * address, u32 address_length) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 490 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 491 | fib_prefix_t pfx = { |
| 492 | .fp_len = address_length, |
| 493 | .fp_proto = FIB_PROTOCOL_IP4, |
| 494 | .fp_addr.ip4 = *address, |
| 495 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 497 | if (pfx.fp_len <= 30) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 498 | { |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 499 | fib_prefix_t net_pfx = { |
| 500 | .fp_len = 32, |
| 501 | .fp_proto = FIB_PROTOCOL_IP4, |
| 502 | .fp_addr.ip4.as_u32 = address->as_u32 & im->fib_masks[pfx.fp_len], |
| 503 | }; |
| 504 | if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32) |
| 505 | fib_table_entry_special_remove(fib_index, |
| 506 | &net_pfx, |
| 507 | FIB_SOURCE_INTERFACE); |
| 508 | net_pfx.fp_addr.ip4.as_u32 |= ~im->fib_masks[pfx.fp_len]; |
| 509 | if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32) |
| 510 | fib_table_entry_special_remove(fib_index, |
| 511 | &net_pfx, |
| 512 | FIB_SOURCE_INTERFACE); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 513 | fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 514 | } |
Neale Ranns | 9a69a60 | 2017-03-26 10:56:33 -0700 | [diff] [blame] | 515 | else if (pfx.fp_len == 31) |
| 516 | { |
| 517 | u32 mask = clib_host_to_net_u32(1); |
| 518 | fib_prefix_t net_pfx = pfx; |
| 519 | |
| 520 | net_pfx.fp_len = 32; |
| 521 | net_pfx.fp_addr.ip4.as_u32 ^= mask; |
| 522 | |
| 523 | fib_table_entry_delete (fib_index, &net_pfx, FIB_SOURCE_INTERFACE); |
| 524 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 525 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 526 | pfx.fp_len = 32; |
| 527 | fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 530 | void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 531 | ip4_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 532 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 533 | ip4_main_t *im = &ip4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 534 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 535 | vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0); |
| 536 | |
| 537 | /* |
| 538 | * enable/disable only on the 1<->0 transition |
| 539 | */ |
| 540 | if (is_enable) |
| 541 | { |
| 542 | if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index]) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 543 | return; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 544 | } |
| 545 | else |
| 546 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 547 | ASSERT (im->ip_enabled_by_sw_if_index[sw_if_index] > 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 548 | if (0 != --im->ip_enabled_by_sw_if_index[sw_if_index]) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 549 | return; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 550 | } |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 551 | vnet_feature_enable_disable ("ip4-unicast", "ip4-not-enabled", sw_if_index, |
Damjan Marion | 4d48993 | 2016-12-09 03:21:27 -0800 | [diff] [blame] | 552 | !is_enable, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 553 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 554 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 555 | vnet_feature_enable_disable ("ip4-multicast", "ip4-not-enabled", |
Neale Ranns | 180279b | 2017-03-16 15:49:09 -0400 | [diff] [blame] | 556 | sw_if_index, !is_enable, 0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 557 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 558 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 559 | static clib_error_t * |
| 560 | ip4_add_del_interface_address_internal (vlib_main_t * vm, |
| 561 | u32 sw_if_index, |
| 562 | ip4_address_t * address, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 563 | u32 address_length, u32 is_del) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 564 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 565 | vnet_main_t *vnm = vnet_get_main (); |
| 566 | ip4_main_t *im = &ip4_main; |
| 567 | ip_lookup_main_t *lm = &im->lookup_main; |
| 568 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 569 | u32 if_address_index, elts_before; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 570 | ip4_address_fib_t ip4_af, *addr_fib = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 571 | |
Pavel Kotucek | 5780898 | 2017-08-02 08:20:19 +0200 | [diff] [blame] | 572 | /* local0 interface doesn't support IP addressing */ |
| 573 | if (sw_if_index == 0) |
| 574 | { |
| 575 | return |
| 576 | clib_error_create ("local0 interface doesn't support IP addressing"); |
| 577 | } |
| 578 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | vec_validate (im->fib_index_by_sw_if_index, sw_if_index); |
| 580 | ip4_addr_fib_init (&ip4_af, address, |
| 581 | vec_elt (im->fib_index_by_sw_if_index, sw_if_index)); |
| 582 | vec_add1 (addr_fib, ip4_af); |
| 583 | |
Neale Ranns | 744902e | 2017-08-14 10:35:44 -0700 | [diff] [blame] | 584 | /* |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 585 | * there is no support for adj-fib handling in the presence of overlapping |
| 586 | * subnets on interfaces. Easy fix - disallow overlapping subnets, like |
| 587 | * most routers do. |
| 588 | */ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 589 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 590 | if (!is_del) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 591 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 592 | /* When adding an address check that it does not conflict |
Neale Ranns | 744902e | 2017-08-14 10:35:44 -0700 | [diff] [blame] | 593 | with an existing address on any interface in this table. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 594 | ip_interface_address_t *ia; |
Neale Ranns | 744902e | 2017-08-14 10:35:44 -0700 | [diff] [blame] | 595 | vnet_sw_interface_t *sif; |
| 596 | |
| 597 | pool_foreach(sif, vnm->interface_main.sw_interfaces, |
| 598 | ({ |
| 599 | if (im->fib_index_by_sw_if_index[sw_if_index] == |
| 600 | im->fib_index_by_sw_if_index[sif->sw_if_index]) |
| 601 | { |
| 602 | foreach_ip_interface_address |
| 603 | (&im->lookup_main, ia, sif->sw_if_index, |
| 604 | 0 /* honor unnumbered */ , |
| 605 | ({ |
| 606 | ip4_address_t * x = |
| 607 | ip_interface_address_get_address |
| 608 | (&im->lookup_main, ia); |
| 609 | if (ip4_destination_matches_route |
| 610 | (im, address, x, ia->address_length) || |
| 611 | ip4_destination_matches_route (im, |
| 612 | x, |
| 613 | address, |
| 614 | address_length)) |
| 615 | { |
| 616 | vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS; |
| 617 | |
| 618 | return |
| 619 | clib_error_create |
| 620 | ("failed to add %U which conflicts with %U for interface %U", |
| 621 | format_ip4_address_and_length, address, |
| 622 | address_length, |
| 623 | format_ip4_address_and_length, x, |
| 624 | ia->address_length, |
| 625 | format_vnet_sw_if_index_name, vnm, |
| 626 | sif->sw_if_index); |
| 627 | } |
| 628 | })); |
| 629 | } |
| 630 | })); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 631 | } |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 632 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 633 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 634 | elts_before = pool_elts (lm->if_address_pool); |
| 635 | |
| 636 | error = ip_interface_address_add_del |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 637 | (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 638 | if (error) |
| 639 | goto done; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 640 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 641 | ip4_sw_interface_enable_disable (sw_if_index, !is_del); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 642 | |
| 643 | if (is_del) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 644 | ip4_del_interface_routes (im, ip4_af.fib_index, address, address_length); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 645 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 646 | ip4_add_interface_routes (sw_if_index, |
| 647 | im, ip4_af.fib_index, |
| 648 | pool_elt_at_index |
| 649 | (lm->if_address_pool, if_address_index)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 650 | |
| 651 | /* If pool did not grow/shrink: add duplicate address. */ |
| 652 | if (elts_before != pool_elts (lm->if_address_pool)) |
| 653 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 654 | ip4_add_del_interface_address_callback_t *cb; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 655 | vec_foreach (cb, im->add_del_interface_address_callbacks) |
| 656 | cb->function (im, cb->function_opaque, sw_if_index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 657 | address, address_length, if_address_index, is_del); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 658 | } |
| 659 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 660 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 661 | vec_free (addr_fib); |
| 662 | return error; |
| 663 | } |
| 664 | |
| 665 | clib_error_t * |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 666 | ip4_add_del_interface_address (vlib_main_t * vm, |
| 667 | u32 sw_if_index, |
| 668 | ip4_address_t * address, |
| 669 | u32 address_length, u32 is_del) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 670 | { |
| 671 | return ip4_add_del_interface_address_internal |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 672 | (vm, sw_if_index, address, address_length, is_del); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 673 | } |
| 674 | |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 675 | void |
| 676 | ip4_directed_broadcast (u32 sw_if_index, u8 enable) |
| 677 | { |
| 678 | ip_interface_address_t *ia; |
| 679 | ip4_main_t *im; |
| 680 | |
| 681 | im = &ip4_main; |
| 682 | |
| 683 | /* |
| 684 | * when directed broadcast is enabled, the subnet braodcast route will forward |
| 685 | * packets using an adjacency with a broadcast MAC. otherwise it drops |
| 686 | */ |
| 687 | /* *INDENT-OFF* */ |
| 688 | foreach_ip_interface_address(&im->lookup_main, ia, |
| 689 | sw_if_index, 0, |
| 690 | ({ |
| 691 | if (ia->address_length <= 30) |
| 692 | { |
| 693 | ip4_address_t *ipa; |
| 694 | |
| 695 | ipa = ip_interface_address_get_address (&im->lookup_main, ia); |
| 696 | |
| 697 | fib_prefix_t pfx = { |
| 698 | .fp_len = 32, |
| 699 | .fp_proto = FIB_PROTOCOL_IP4, |
| 700 | .fp_addr = { |
| 701 | .ip4.as_u32 = (ipa->as_u32 | ~im->fib_masks[ia->address_length]), |
| 702 | }, |
| 703 | }; |
| 704 | |
| 705 | ip4_add_subnet_bcast_route |
| 706 | (fib_table_get_index_for_sw_if_index(FIB_PROTOCOL_IP4, |
| 707 | sw_if_index), |
| 708 | &pfx, sw_if_index); |
| 709 | } |
| 710 | })); |
| 711 | /* *INDENT-ON* */ |
| 712 | } |
| 713 | |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 714 | /* Built-in ip4 unicast rx feature path definition */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 715 | /* *INDENT-OFF* */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 716 | VNET_FEATURE_ARC_INIT (ip4_unicast, static) = |
| 717 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 718 | .arc_name = "ip4-unicast", |
Damjan Marion | 892e076 | 2016-12-09 18:52:05 +0100 | [diff] [blame] | 719 | .start_nodes = VNET_FEATURES ("ip4-input", "ip4-input-no-checksum"), |
| 720 | .arc_index_ptr = &ip4_main.lookup_main.ucast_feature_arc_index, |
| 721 | }; |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 722 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 723 | VNET_FEATURE_INIT (ip4_flow_classify, static) = |
| 724 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 725 | .arc_name = "ip4-unicast", |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 726 | .node_name = "ip4-flow-classify", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 727 | .runs_before = VNET_FEATURES ("ip4-inacl"), |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 728 | }; |
| 729 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 730 | VNET_FEATURE_INIT (ip4_inacl, static) = |
| 731 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 732 | .arc_name = "ip4-unicast", |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 733 | .node_name = "ip4-inacl", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 734 | .runs_before = VNET_FEATURES ("ip4-source-check-via-rx"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 735 | }; |
| 736 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 737 | VNET_FEATURE_INIT (ip4_source_check_1, static) = |
| 738 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 739 | .arc_name = "ip4-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 740 | .node_name = "ip4-source-check-via-rx", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 741 | .runs_before = VNET_FEATURES ("ip4-source-check-via-any"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 742 | }; |
| 743 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 744 | VNET_FEATURE_INIT (ip4_source_check_2, static) = |
| 745 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 746 | .arc_name = "ip4-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 747 | .node_name = "ip4-source-check-via-any", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 748 | .runs_before = VNET_FEATURES ("ip4-policer-classify"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 749 | }; |
| 750 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 751 | VNET_FEATURE_INIT (ip4_source_and_port_range_check_rx, static) = |
| 752 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 753 | .arc_name = "ip4-unicast", |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 754 | .node_name = "ip4-source-and-port-range-check-rx", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 755 | .runs_before = VNET_FEATURES ("ip4-policer-classify"), |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 756 | }; |
| 757 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 758 | VNET_FEATURE_INIT (ip4_policer_classify, static) = |
| 759 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 760 | .arc_name = "ip4-unicast", |
Matus Fabian | 70e6a8d | 2016-06-20 08:10:42 -0700 | [diff] [blame] | 761 | .node_name = "ip4-policer-classify", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 762 | .runs_before = VNET_FEATURES ("ipsec-input-ip4"), |
Matus Fabian | 70e6a8d | 2016-06-20 08:10:42 -0700 | [diff] [blame] | 763 | }; |
| 764 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 765 | VNET_FEATURE_INIT (ip4_ipsec, static) = |
| 766 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 767 | .arc_name = "ip4-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 768 | .node_name = "ipsec-input-ip4", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 769 | .runs_before = VNET_FEATURES ("vpath-input-ip4"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 770 | }; |
| 771 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 772 | VNET_FEATURE_INIT (ip4_vpath, static) = |
| 773 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 774 | .arc_name = "ip4-unicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 775 | .node_name = "vpath-input-ip4", |
John Lo | 37682e1 | 2016-11-30 12:51:39 -0500 | [diff] [blame] | 776 | .runs_before = VNET_FEATURES ("ip4-vxlan-bypass"), |
| 777 | }; |
| 778 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 779 | VNET_FEATURE_INIT (ip4_vxlan_bypass, static) = |
| 780 | { |
John Lo | 37682e1 | 2016-11-30 12:51:39 -0500 | [diff] [blame] | 781 | .arc_name = "ip4-unicast", |
| 782 | .node_name = "ip4-vxlan-bypass", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 783 | .runs_before = VNET_FEATURES ("ip4-lookup"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 784 | }; |
| 785 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 786 | VNET_FEATURE_INIT (ip4_not_enabled, static) = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 787 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 788 | .arc_name = "ip4-unicast", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 789 | .node_name = "ip4-not-enabled", |
Neale Ranns | 180279b | 2017-03-16 15:49:09 -0400 | [diff] [blame] | 790 | .runs_before = VNET_FEATURES ("ip4-lookup"), |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 791 | }; |
| 792 | |
Neale Ranns | 180279b | 2017-03-16 15:49:09 -0400 | [diff] [blame] | 793 | VNET_FEATURE_INIT (ip4_lookup, static) = |
| 794 | { |
| 795 | .arc_name = "ip4-unicast", |
| 796 | .node_name = "ip4-lookup", |
| 797 | .runs_before = 0, /* not before any other features */ |
| 798 | }; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 799 | |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 800 | /* Built-in ip4 multicast rx feature path definition */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 801 | VNET_FEATURE_ARC_INIT (ip4_multicast, static) = |
| 802 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 803 | .arc_name = "ip4-multicast", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 804 | .start_nodes = VNET_FEATURES ("ip4-input", "ip4-input-no-checksum"), |
| 805 | .arc_index_ptr = &ip4_main.lookup_main.mcast_feature_arc_index, |
| 806 | }; |
| 807 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 808 | VNET_FEATURE_INIT (ip4_vpath_mc, static) = |
| 809 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 810 | .arc_name = "ip4-multicast", |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 811 | .node_name = "vpath-input-ip4", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 812 | .runs_before = VNET_FEATURES ("ip4-mfib-forward-lookup"), |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 813 | }; |
| 814 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 815 | VNET_FEATURE_INIT (ip4_mc_not_enabled, static) = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 816 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 817 | .arc_name = "ip4-multicast", |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 818 | .node_name = "ip4-not-enabled", |
Neale Ranns | 180279b | 2017-03-16 15:49:09 -0400 | [diff] [blame] | 819 | .runs_before = VNET_FEATURES ("ip4-mfib-forward-lookup"), |
| 820 | }; |
| 821 | |
| 822 | VNET_FEATURE_INIT (ip4_lookup_mc, static) = |
| 823 | { |
| 824 | .arc_name = "ip4-multicast", |
| 825 | .node_name = "ip4-mfib-forward-lookup", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 826 | .runs_before = 0, /* last feature */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 827 | }; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 828 | |
| 829 | /* Source and port-range check ip4 tx feature path definition */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 830 | VNET_FEATURE_ARC_INIT (ip4_output, static) = |
| 831 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 832 | .arc_name = "ip4-output", |
Neale Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 833 | .start_nodes = VNET_FEATURES ("ip4-rewrite", "ip4-midchain", "ip4-dvr-dpo"), |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 834 | .arc_index_ptr = &ip4_main.lookup_main.output_feature_arc_index, |
| 835 | }; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 836 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 837 | VNET_FEATURE_INIT (ip4_source_and_port_range_check_tx, static) = |
| 838 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 839 | .arc_name = "ip4-output", |
| 840 | .node_name = "ip4-source-and-port-range-check-tx", |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 841 | .runs_before = VNET_FEATURES ("ip4-outacl"), |
| 842 | }; |
| 843 | |
| 844 | VNET_FEATURE_INIT (ip4_outacl, static) = |
| 845 | { |
| 846 | .arc_name = "ip4-output", |
| 847 | .node_name = "ip4-outacl", |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 848 | .runs_before = VNET_FEATURES ("ipsec-output-ip4"), |
| 849 | }; |
| 850 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 851 | VNET_FEATURE_INIT (ip4_ipsec_output, static) = |
| 852 | { |
Matus Fabian | 08a6f01 | 2016-11-15 06:08:51 -0800 | [diff] [blame] | 853 | .arc_name = "ip4-output", |
| 854 | .node_name = "ipsec-output-ip4", |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 855 | .runs_before = VNET_FEATURES ("interface-output"), |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 856 | }; |
| 857 | |
| 858 | /* Built-in ip4 tx feature path definition */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 859 | VNET_FEATURE_INIT (ip4_interface_output, static) = |
| 860 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 861 | .arc_name = "ip4-output", |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 862 | .node_name = "interface-output", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 863 | .runs_before = 0, /* not before any other features */ |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 864 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 865 | /* *INDENT-ON* */ |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 866 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 867 | static clib_error_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 868 | ip4_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 869 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 870 | ip4_main_t *im = &ip4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 871 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 872 | /* Fill in lookup tables with default table (0). */ |
| 873 | vec_validate (im->fib_index_by_sw_if_index, sw_if_index); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 874 | vec_validate (im->mfib_index_by_sw_if_index, sw_if_index); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 875 | |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 876 | if (!is_add) |
| 877 | { |
| 878 | ip4_main_t *im4 = &ip4_main; |
| 879 | ip_lookup_main_t *lm4 = &im4->lookup_main; |
| 880 | ip_interface_address_t *ia = 0; |
| 881 | ip4_address_t *address; |
| 882 | vlib_main_t *vm = vlib_get_main (); |
| 883 | |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 884 | vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0); |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 885 | /* *INDENT-OFF* */ |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 886 | foreach_ip_interface_address (lm4, ia, sw_if_index, 0, |
Pavel Kotucek | 9f5a2b6 | 2017-06-14 13:56:55 +0200 | [diff] [blame] | 887 | ({ |
| 888 | address = ip_interface_address_get_address (lm4, ia); |
| 889 | ip4_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1); |
| 890 | })); |
| 891 | /* *INDENT-ON* */ |
| 892 | } |
| 893 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 894 | vnet_feature_enable_disable ("ip4-unicast", "ip4-not-enabled", sw_if_index, |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 895 | is_add, 0, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 896 | |
Neale Ranns | 8269d3d | 2018-01-30 09:02:20 -0800 | [diff] [blame] | 897 | vnet_feature_enable_disable ("ip4-multicast", "ip4-not-enabled", |
| 898 | sw_if_index, is_add, 0, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 899 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 900 | return /* no error */ 0; |
| 901 | } |
| 902 | |
| 903 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip4_sw_interface_add_del); |
| 904 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 905 | /* Global IP4 main. */ |
| 906 | ip4_main_t ip4_main; |
| 907 | |
| 908 | clib_error_t * |
| 909 | ip4_lookup_init (vlib_main_t * vm) |
| 910 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 911 | ip4_main_t *im = &ip4_main; |
| 912 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 913 | uword i; |
| 914 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 915 | if ((error = vlib_call_init_function (vm, vnet_feature_init))) |
| 916 | return error; |
Neale Ranns | 1ec3652 | 2017-11-29 05:20:37 -0800 | [diff] [blame] | 917 | if ((error = vlib_call_init_function (vm, ip4_mtrie_module_init))) |
| 918 | return (error); |
| 919 | if ((error = vlib_call_init_function (vm, fib_module_init))) |
| 920 | return error; |
| 921 | if ((error = vlib_call_init_function (vm, mfib_module_init))) |
| 922 | return error; |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 923 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 924 | for (i = 0; i < ARRAY_LEN (im->fib_masks); i++) |
| 925 | { |
| 926 | u32 m; |
| 927 | |
| 928 | if (i < 32) |
| 929 | m = pow2_mask (i) << (32 - i); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 930 | else |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 931 | m = ~0; |
| 932 | im->fib_masks[i] = clib_host_to_net_u32 (m); |
| 933 | } |
| 934 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 935 | ip_lookup_init (&im->lookup_main, /* is_ip6 */ 0); |
| 936 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 937 | /* Create FIB with index 0 and table id of 0. */ |
Neale Ranns | 1500254 | 2017-09-10 04:39:11 -0700 | [diff] [blame] | 938 | fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, 0, |
| 939 | FIB_SOURCE_DEFAULT_ROUTE); |
| 940 | mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, 0, |
| 941 | MFIB_SOURCE_DEFAULT_ROUTE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 942 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 943 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 944 | pg_node_t *pn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 945 | pn = pg_get_node (ip4_lookup_node.index); |
| 946 | pn->unformat_edit = unformat_pg_ip4_header; |
| 947 | } |
| 948 | |
| 949 | { |
| 950 | ethernet_arp_header_t h; |
| 951 | |
| 952 | memset (&h, 0, sizeof (h)); |
| 953 | |
| 954 | /* Set target ethernet address to all zeros. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 955 | memset (h.ip4_over_ethernet[1].ethernet, 0, |
| 956 | sizeof (h.ip4_over_ethernet[1].ethernet)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 957 | |
| 958 | #define _16(f,v) h.f = clib_host_to_net_u16 (v); |
| 959 | #define _8(f,v) h.f = v; |
| 960 | _16 (l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet); |
| 961 | _16 (l3_type, ETHERNET_TYPE_IP4); |
| 962 | _8 (n_l2_address_bytes, 6); |
| 963 | _8 (n_l3_address_bytes, 4); |
| 964 | _16 (opcode, ETHERNET_ARP_OPCODE_request); |
| 965 | #undef _16 |
| 966 | #undef _8 |
| 967 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 968 | vlib_packet_template_init (vm, &im->ip4_arp_request_packet_template, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 969 | /* data */ &h, |
| 970 | sizeof (h), |
| 971 | /* alloc chunk size */ 8, |
| 972 | "ip4 arp"); |
| 973 | } |
| 974 | |
Dave Barach | 203c632 | 2016-06-26 10:29:03 -0400 | [diff] [blame] | 975 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | VLIB_INIT_FUNCTION (ip4_lookup_init); |
| 979 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 980 | typedef struct |
| 981 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 982 | /* Adjacency taken. */ |
Vengada Govindan | f154448 | 2016-09-28 02:45:57 -0700 | [diff] [blame] | 983 | u32 dpo_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 984 | u32 flow_hash; |
| 985 | u32 fib_index; |
| 986 | |
| 987 | /* Packet data, possibly *after* rewrite. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 988 | u8 packet_data[64 - 1 * sizeof (u32)]; |
| 989 | } |
| 990 | ip4_forward_next_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 991 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 992 | u8 * |
| 993 | format_ip4_forward_next_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 994 | { |
| 995 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 996 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 997 | ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 998 | u32 indent = format_get_indent (s); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 999 | s = format (s, "%U%U", |
John Lo | ac8146c | 2016-09-27 17:44:02 -0400 | [diff] [blame] | 1000 | format_white_space, indent, |
| 1001 | format_ip4_header, t->packet_data, sizeof (t->packet_data)); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1002 | return s; |
| 1003 | } |
| 1004 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1005 | static u8 * |
| 1006 | format_ip4_lookup_trace (u8 * s, va_list * args) |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1007 | { |
| 1008 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1009 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1010 | ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 1011 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1012 | |
John Lo | ac8146c | 2016-09-27 17:44:02 -0400 | [diff] [blame] | 1013 | s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1014 | t->fib_index, t->dpo_index, t->flow_hash); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1015 | s = format (s, "\n%U%U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1016 | format_white_space, indent, |
| 1017 | format_ip4_header, t->packet_data, sizeof (t->packet_data)); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1018 | return s; |
| 1019 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1020 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1021 | static u8 * |
| 1022 | format_ip4_rewrite_trace (u8 * s, va_list * args) |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1023 | { |
| 1024 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1025 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1026 | ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 1027 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1028 | |
Vengada Govindan | f154448 | 2016-09-28 02:45:57 -0700 | [diff] [blame] | 1029 | s = format (s, "tx_sw_if_index %d dpo-idx %d : %U flow hash: 0x%08x", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1030 | t->fib_index, t->dpo_index, format_ip_adjacency, |
| 1031 | t->dpo_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash); |
Pierre Pfister | a38c3df | 2016-06-13 10:28:09 +0100 | [diff] [blame] | 1032 | s = format (s, "\n%U%U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1033 | format_white_space, indent, |
| 1034 | format_ip_adjacency_packet_data, |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 1035 | t->dpo_index, t->packet_data, sizeof (t->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1036 | return s; |
| 1037 | } |
| 1038 | |
| 1039 | /* Common trace function for all ip4-forward next nodes. */ |
| 1040 | void |
| 1041 | ip4_forward_next_trace (vlib_main_t * vm, |
| 1042 | vlib_node_runtime_t * node, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1043 | vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1044 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1045 | u32 *from, n_left; |
| 1046 | ip4_main_t *im = &ip4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1047 | |
| 1048 | n_left = frame->n_vectors; |
| 1049 | from = vlib_frame_vector_args (frame); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1050 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1051 | while (n_left >= 4) |
| 1052 | { |
| 1053 | u32 bi0, bi1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1054 | vlib_buffer_t *b0, *b1; |
| 1055 | ip4_forward_next_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1056 | |
| 1057 | /* Prefetch next iteration. */ |
| 1058 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 1059 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 1060 | |
| 1061 | bi0 = from[0]; |
| 1062 | bi1 = from[1]; |
| 1063 | |
| 1064 | b0 = vlib_get_buffer (vm, bi0); |
| 1065 | b1 = vlib_get_buffer (vm, bi1); |
| 1066 | |
| 1067 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 1068 | { |
| 1069 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
Vengada Govindan | f154448 | 2016-09-28 02:45:57 -0700 | [diff] [blame] | 1070 | t0->dpo_index = vnet_buffer (b0)->ip.adj_index[which_adj_index]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1071 | t0->flow_hash = vnet_buffer (b0)->ip.flow_hash; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1072 | t0->fib_index = |
| 1073 | (vnet_buffer (b0)->sw_if_index[VLIB_TX] != |
| 1074 | (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] : |
| 1075 | vec_elt (im->fib_index_by_sw_if_index, |
| 1076 | vnet_buffer (b0)->sw_if_index[VLIB_RX]); |
Pierre Pfister | 0febaf1 | 2016-06-08 12:23:21 +0100 | [diff] [blame] | 1077 | |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 1078 | clib_memcpy (t0->packet_data, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1079 | vlib_buffer_get_current (b0), |
| 1080 | sizeof (t0->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1081 | } |
| 1082 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 1083 | { |
| 1084 | t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0])); |
Vengada Govindan | f154448 | 2016-09-28 02:45:57 -0700 | [diff] [blame] | 1085 | t1->dpo_index = vnet_buffer (b1)->ip.adj_index[which_adj_index]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1086 | t1->flow_hash = vnet_buffer (b1)->ip.flow_hash; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1087 | t1->fib_index = |
| 1088 | (vnet_buffer (b1)->sw_if_index[VLIB_TX] != |
| 1089 | (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] : |
| 1090 | vec_elt (im->fib_index_by_sw_if_index, |
| 1091 | vnet_buffer (b1)->sw_if_index[VLIB_RX]); |
| 1092 | clib_memcpy (t1->packet_data, vlib_buffer_get_current (b1), |
| 1093 | sizeof (t1->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1094 | } |
| 1095 | from += 2; |
| 1096 | n_left -= 2; |
| 1097 | } |
| 1098 | |
| 1099 | while (n_left >= 1) |
| 1100 | { |
| 1101 | u32 bi0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1102 | vlib_buffer_t *b0; |
| 1103 | ip4_forward_next_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1104 | |
| 1105 | bi0 = from[0]; |
| 1106 | |
| 1107 | b0 = vlib_get_buffer (vm, bi0); |
| 1108 | |
| 1109 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 1110 | { |
| 1111 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
Vengada Govindan | f154448 | 2016-09-28 02:45:57 -0700 | [diff] [blame] | 1112 | t0->dpo_index = vnet_buffer (b0)->ip.adj_index[which_adj_index]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1113 | t0->flow_hash = vnet_buffer (b0)->ip.flow_hash; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1114 | t0->fib_index = |
| 1115 | (vnet_buffer (b0)->sw_if_index[VLIB_TX] != |
| 1116 | (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] : |
| 1117 | vec_elt (im->fib_index_by_sw_if_index, |
| 1118 | vnet_buffer (b0)->sw_if_index[VLIB_RX]); |
| 1119 | clib_memcpy (t0->packet_data, vlib_buffer_get_current (b0), |
| 1120 | sizeof (t0->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1121 | } |
| 1122 | from += 1; |
| 1123 | n_left -= 1; |
| 1124 | } |
| 1125 | } |
| 1126 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1127 | /* Compute TCP/UDP/ICMP4 checksum in software. */ |
| 1128 | u16 |
| 1129 | ip4_tcp_udp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0, |
| 1130 | ip4_header_t * ip0) |
| 1131 | { |
| 1132 | ip_csum_t sum0; |
| 1133 | u32 ip_header_length, payload_length_host_byte_order; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1134 | u32 n_this_buffer, n_bytes_left, n_ip_bytes_this_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1135 | u16 sum16; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1136 | void *data_this_buffer; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1137 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1138 | /* Initialize checksum with ip header. */ |
| 1139 | ip_header_length = ip4_header_bytes (ip0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1140 | payload_length_host_byte_order = |
| 1141 | clib_net_to_host_u16 (ip0->length) - ip_header_length; |
| 1142 | sum0 = |
| 1143 | clib_host_to_net_u32 (payload_length_host_byte_order + |
| 1144 | (ip0->protocol << 16)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1145 | |
| 1146 | if (BITS (uword) == 32) |
| 1147 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1148 | sum0 = |
| 1149 | ip_csum_with_carry (sum0, |
| 1150 | clib_mem_unaligned (&ip0->src_address, u32)); |
| 1151 | sum0 = |
| 1152 | ip_csum_with_carry (sum0, |
| 1153 | clib_mem_unaligned (&ip0->dst_address, u32)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1154 | } |
| 1155 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1156 | sum0 = |
| 1157 | ip_csum_with_carry (sum0, clib_mem_unaligned (&ip0->src_address, u64)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1158 | |
| 1159 | n_bytes_left = n_this_buffer = payload_length_host_byte_order; |
| 1160 | data_this_buffer = (void *) ip0 + ip_header_length; |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1161 | n_ip_bytes_this_buffer = |
| 1162 | p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1163 | if (n_this_buffer + ip_header_length > n_ip_bytes_this_buffer) |
| 1164 | { |
| 1165 | n_this_buffer = n_ip_bytes_this_buffer > ip_header_length ? |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1166 | n_ip_bytes_this_buffer - ip_header_length : 0; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1167 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1168 | while (1) |
| 1169 | { |
| 1170 | sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer); |
| 1171 | n_bytes_left -= n_this_buffer; |
| 1172 | if (n_bytes_left == 0) |
| 1173 | break; |
| 1174 | |
| 1175 | ASSERT (p0->flags & VLIB_BUFFER_NEXT_PRESENT); |
| 1176 | p0 = vlib_get_buffer (vm, p0->next_buffer); |
| 1177 | data_this_buffer = vlib_buffer_get_current (p0); |
| 1178 | n_this_buffer = p0->current_length; |
| 1179 | } |
| 1180 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1181 | sum16 = ~ip_csum_fold (sum0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1182 | |
| 1183 | return sum16; |
| 1184 | } |
| 1185 | |
John Lo | 37682e1 | 2016-11-30 12:51:39 -0500 | [diff] [blame] | 1186 | u32 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1187 | ip4_tcp_udp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0) |
| 1188 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1189 | ip4_header_t *ip0 = vlib_buffer_get_current (p0); |
| 1190 | udp_header_t *udp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1191 | u16 sum16; |
| 1192 | |
| 1193 | ASSERT (ip0->protocol == IP_PROTOCOL_TCP |
| 1194 | || ip0->protocol == IP_PROTOCOL_UDP); |
| 1195 | |
| 1196 | udp0 = (void *) (ip0 + 1); |
| 1197 | if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0) |
| 1198 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1199 | p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
| 1200 | | VNET_BUFFER_F_L4_CHECKSUM_CORRECT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1201 | return p0->flags; |
| 1202 | } |
| 1203 | |
| 1204 | sum16 = ip4_tcp_udp_compute_checksum (vm, p0, ip0); |
| 1205 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 1206 | p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
| 1207 | | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1208 | |
| 1209 | return p0->flags; |
| 1210 | } |
| 1211 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1212 | /* *INDENT-OFF* */ |
| 1213 | VNET_FEATURE_ARC_INIT (ip4_local) = |
| 1214 | { |
| 1215 | .arc_name = "ip4-local", |
| 1216 | .start_nodes = VNET_FEATURES ("ip4-local"), |
| 1217 | }; |
| 1218 | /* *INDENT-ON* */ |
| 1219 | |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1220 | static inline void |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1221 | ip4_local_l4_csum_validate (vlib_main_t * vm, vlib_buffer_t * p, |
| 1222 | ip4_header_t * ip, u8 is_udp, u8 * error, |
| 1223 | u8 * good_tcp_udp) |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1224 | { |
| 1225 | u32 flags0; |
| 1226 | flags0 = ip4_tcp_udp_validate_checksum (vm, p); |
| 1227 | *good_tcp_udp = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 1228 | if (is_udp) |
| 1229 | { |
| 1230 | udp_header_t *udp; |
| 1231 | u32 ip_len, udp_len; |
| 1232 | i32 len_diff; |
| 1233 | udp = ip4_next_header (ip); |
| 1234 | /* Verify UDP length. */ |
| 1235 | ip_len = clib_net_to_host_u16 (ip->length); |
| 1236 | udp_len = clib_net_to_host_u16 (udp->length); |
| 1237 | |
| 1238 | len_diff = ip_len - udp_len; |
| 1239 | *good_tcp_udp &= len_diff >= 0; |
| 1240 | *error = len_diff < 0 ? IP4_ERROR_UDP_LENGTH : *error; |
| 1241 | } |
| 1242 | } |
| 1243 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1244 | #define ip4_local_csum_is_offloaded(_b) \ |
| 1245 | _b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM \ |
| 1246 | || _b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
| 1247 | |
| 1248 | #define ip4_local_need_csum_check(is_tcp_udp, _b) \ |
| 1249 | (is_tcp_udp && !(_b->flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED \ |
| 1250 | || ip4_local_csum_is_offloaded (_b))) |
| 1251 | |
| 1252 | #define ip4_local_csum_is_valid(_b) \ |
| 1253 | (_b->flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT \ |
| 1254 | || (ip4_local_csum_is_offloaded (_b))) != 0 |
| 1255 | |
| 1256 | static inline void |
| 1257 | ip4_local_check_l4_csum (vlib_main_t * vm, vlib_buffer_t * b, |
| 1258 | ip4_header_t * ih, u8 * error) |
| 1259 | { |
| 1260 | u8 is_udp, is_tcp_udp, good_tcp_udp; |
| 1261 | |
| 1262 | is_udp = ih->protocol == IP_PROTOCOL_UDP; |
| 1263 | is_tcp_udp = is_udp || ih->protocol == IP_PROTOCOL_TCP; |
| 1264 | |
| 1265 | if (PREDICT_FALSE (ip4_local_need_csum_check (is_tcp_udp, b))) |
| 1266 | ip4_local_l4_csum_validate (vm, b, ih, is_udp, error, &good_tcp_udp); |
| 1267 | else |
| 1268 | good_tcp_udp = ip4_local_csum_is_valid (b); |
| 1269 | |
| 1270 | ASSERT (IP4_ERROR_TCP_CHECKSUM + 1 == IP4_ERROR_UDP_CHECKSUM); |
| 1271 | *error = (is_tcp_udp && !good_tcp_udp |
| 1272 | ? IP4_ERROR_TCP_CHECKSUM + is_udp : *error); |
| 1273 | } |
| 1274 | |
| 1275 | static inline void |
| 1276 | ip4_local_check_l4_csum_x2 (vlib_main_t * vm, vlib_buffer_t ** b, |
| 1277 | ip4_header_t ** ih, u8 * error) |
| 1278 | { |
| 1279 | u8 is_udp[2], is_tcp_udp[2], good_tcp_udp[2]; |
| 1280 | |
| 1281 | is_udp[0] = ih[0]->protocol == IP_PROTOCOL_UDP; |
| 1282 | is_udp[1] = ih[1]->protocol == IP_PROTOCOL_UDP; |
| 1283 | |
| 1284 | is_tcp_udp[0] = is_udp[0] || ih[0]->protocol == IP_PROTOCOL_TCP; |
| 1285 | is_tcp_udp[1] = is_udp[1] || ih[1]->protocol == IP_PROTOCOL_TCP; |
| 1286 | |
| 1287 | good_tcp_udp[0] = ip4_local_csum_is_valid (b[0]); |
| 1288 | good_tcp_udp[1] = ip4_local_csum_is_valid (b[1]); |
| 1289 | |
| 1290 | if (PREDICT_FALSE (ip4_local_need_csum_check (is_tcp_udp[0], b[0]) |
| 1291 | || ip4_local_need_csum_check (is_tcp_udp[1], b[1]))) |
| 1292 | { |
| 1293 | if (is_tcp_udp[0]) |
| 1294 | ip4_local_l4_csum_validate (vm, b[0], ih[0], is_udp[0], &error[0], |
| 1295 | &good_tcp_udp[0]); |
| 1296 | if (is_tcp_udp[1]) |
| 1297 | ip4_local_l4_csum_validate (vm, b[1], ih[1], is_udp[1], &error[1], |
| 1298 | &good_tcp_udp[1]); |
| 1299 | } |
| 1300 | |
| 1301 | error[0] = (is_tcp_udp[0] && !good_tcp_udp[0] ? |
| 1302 | IP4_ERROR_TCP_CHECKSUM + is_udp[0] : error[0]); |
| 1303 | error[1] = (is_tcp_udp[1] && !good_tcp_udp[1] ? |
| 1304 | IP4_ERROR_TCP_CHECKSUM + is_udp[1] : error[1]); |
| 1305 | } |
| 1306 | |
| 1307 | static inline void |
| 1308 | ip4_local_set_next_and_error (vlib_node_runtime_t * error_node, |
| 1309 | vlib_buffer_t * b, u16 * next, u8 error, |
| 1310 | u8 head_of_feature_arc) |
| 1311 | { |
| 1312 | u8 arc_index = vnet_feat_arc_ip4_local.feature_arc_index; |
| 1313 | u32 next_index; |
| 1314 | |
| 1315 | *next = error != IP4_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : *next; |
| 1316 | b->error = error ? error_node->errors[error] : 0; |
| 1317 | if (head_of_feature_arc) |
| 1318 | { |
| 1319 | next_index = *next; |
| 1320 | if (PREDICT_TRUE (error == (u8) IP4_ERROR_UNKNOWN_PROTOCOL)) |
| 1321 | { |
| 1322 | vnet_feature_arc_start (arc_index, |
| 1323 | vnet_buffer (b)->sw_if_index[VLIB_RX], |
| 1324 | &next_index, b); |
| 1325 | *next = next_index; |
| 1326 | } |
| 1327 | } |
| 1328 | } |
| 1329 | |
| 1330 | typedef struct |
| 1331 | { |
| 1332 | ip4_address_t src; |
| 1333 | u32 lbi; |
| 1334 | u8 error; |
| 1335 | } ip4_local_last_check_t; |
| 1336 | |
| 1337 | static inline void |
| 1338 | ip4_local_check_src (vlib_buffer_t * b, ip4_header_t * ip0, |
| 1339 | ip4_local_last_check_t * last_check, u8 * error0) |
| 1340 | { |
| 1341 | ip4_fib_mtrie_leaf_t leaf0; |
| 1342 | ip4_fib_mtrie_t *mtrie0; |
| 1343 | const dpo_id_t *dpo0; |
| 1344 | load_balance_t *lb0; |
| 1345 | u32 lbi0; |
| 1346 | |
| 1347 | vnet_buffer (b)->ip.fib_index = |
| 1348 | vnet_buffer (b)->sw_if_index[VLIB_TX] != ~0 ? |
| 1349 | vnet_buffer (b)->sw_if_index[VLIB_TX] : vnet_buffer (b)->ip.fib_index; |
| 1350 | |
| 1351 | if (PREDICT_FALSE (last_check->src.as_u32 != ip0->src_address.as_u32)) |
| 1352 | { |
| 1353 | mtrie0 = &ip4_fib_get (vnet_buffer (b)->ip.fib_index)->mtrie; |
| 1354 | leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, &ip0->src_address); |
| 1355 | leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 2); |
| 1356 | leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 3); |
| 1357 | lbi0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0); |
| 1358 | |
| 1359 | vnet_buffer (b)->ip.adj_index[VLIB_TX] = lbi0; |
| 1360 | vnet_buffer (b)->ip.adj_index[VLIB_RX] = lbi0; |
| 1361 | |
| 1362 | lb0 = load_balance_get (lbi0); |
| 1363 | dpo0 = load_balance_get_bucket_i (lb0, 0); |
| 1364 | |
| 1365 | /* |
| 1366 | * Must have a route to source otherwise we drop the packet. |
| 1367 | * ip4 broadcasts are accepted, e.g. to make dhcp client work |
| 1368 | * |
| 1369 | * The checks are: |
| 1370 | * - the source is a recieve => it's from us => bogus, do this |
| 1371 | * first since it sets a different error code. |
| 1372 | * - uRPF check for any route to source - accept if passes. |
| 1373 | * - allow packets destined to the broadcast address from unknown sources |
| 1374 | */ |
| 1375 | |
| 1376 | *error0 = ((*error0 == IP4_ERROR_UNKNOWN_PROTOCOL |
| 1377 | && dpo0->dpoi_type == DPO_RECEIVE) ? |
| 1378 | IP4_ERROR_SPOOFED_LOCAL_PACKETS : *error0); |
| 1379 | *error0 = ((*error0 == IP4_ERROR_UNKNOWN_PROTOCOL |
| 1380 | && !fib_urpf_check_size (lb0->lb_urpf) |
| 1381 | && ip0->dst_address.as_u32 != 0xFFFFFFFF) ? |
| 1382 | IP4_ERROR_SRC_LOOKUP_MISS : *error0); |
| 1383 | |
| 1384 | last_check->src.as_u32 = ip0->src_address.as_u32; |
| 1385 | last_check->lbi = lbi0; |
| 1386 | last_check->error = *error0; |
| 1387 | } |
| 1388 | else |
| 1389 | { |
| 1390 | vnet_buffer (b)->ip.adj_index[VLIB_TX] = last_check->lbi; |
| 1391 | vnet_buffer (b)->ip.adj_index[VLIB_RX] = last_check->lbi; |
| 1392 | *error0 = last_check->error; |
| 1393 | } |
| 1394 | } |
| 1395 | |
| 1396 | static inline void |
| 1397 | ip4_local_check_src_x2 (vlib_buffer_t ** b, ip4_header_t ** ip, |
| 1398 | ip4_local_last_check_t * last_check, u8 * error) |
| 1399 | { |
| 1400 | ip4_fib_mtrie_leaf_t leaf[2]; |
| 1401 | ip4_fib_mtrie_t *mtrie[2]; |
| 1402 | const dpo_id_t *dpo[2]; |
| 1403 | load_balance_t *lb[2]; |
| 1404 | u32 not_last_hit = 0; |
| 1405 | u32 lbi[2]; |
| 1406 | |
| 1407 | not_last_hit |= ip[0]->src_address.as_u32 ^ last_check->src.as_u32; |
| 1408 | not_last_hit |= ip[1]->src_address.as_u32 ^ last_check->src.as_u32; |
| 1409 | |
| 1410 | vnet_buffer (b[0])->ip.fib_index = |
| 1411 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ? |
| 1412 | vnet_buffer (b[0])->sw_if_index[VLIB_TX] : |
| 1413 | vnet_buffer (b[0])->ip.fib_index; |
| 1414 | |
| 1415 | vnet_buffer (b[1])->ip.fib_index = |
| 1416 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] != ~0 ? |
| 1417 | vnet_buffer (b[1])->sw_if_index[VLIB_TX] : |
| 1418 | vnet_buffer (b[1])->ip.fib_index; |
| 1419 | |
| 1420 | if (PREDICT_FALSE (not_last_hit)) |
| 1421 | { |
| 1422 | mtrie[0] = &ip4_fib_get (vnet_buffer (b[0])->ip.fib_index)->mtrie; |
| 1423 | mtrie[1] = &ip4_fib_get (vnet_buffer (b[1])->ip.fib_index)->mtrie; |
| 1424 | |
| 1425 | leaf[0] = ip4_fib_mtrie_lookup_step_one (mtrie[0], &ip[0]->src_address); |
| 1426 | leaf[1] = ip4_fib_mtrie_lookup_step_one (mtrie[1], &ip[1]->src_address); |
| 1427 | |
| 1428 | leaf[0] = ip4_fib_mtrie_lookup_step (mtrie[0], leaf[0], |
| 1429 | &ip[0]->src_address, 2); |
| 1430 | leaf[1] = ip4_fib_mtrie_lookup_step (mtrie[1], leaf[1], |
| 1431 | &ip[1]->src_address, 2); |
| 1432 | |
| 1433 | leaf[0] = ip4_fib_mtrie_lookup_step (mtrie[0], leaf[0], |
| 1434 | &ip[0]->src_address, 3); |
| 1435 | leaf[1] = ip4_fib_mtrie_lookup_step (mtrie[1], leaf[1], |
| 1436 | &ip[1]->src_address, 3); |
| 1437 | |
| 1438 | lbi[0] = ip4_fib_mtrie_leaf_get_adj_index (leaf[0]); |
| 1439 | lbi[1] = ip4_fib_mtrie_leaf_get_adj_index (leaf[1]); |
| 1440 | |
| 1441 | vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = lbi[0]; |
| 1442 | vnet_buffer (b[0])->ip.adj_index[VLIB_RX] = lbi[0]; |
| 1443 | |
| 1444 | vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = lbi[1]; |
| 1445 | vnet_buffer (b[1])->ip.adj_index[VLIB_RX] = lbi[1]; |
| 1446 | |
| 1447 | lb[0] = load_balance_get (lbi[0]); |
| 1448 | lb[1] = load_balance_get (lbi[1]); |
| 1449 | |
| 1450 | dpo[0] = load_balance_get_bucket_i (lb[0], 0); |
| 1451 | dpo[1] = load_balance_get_bucket_i (lb[1], 0); |
| 1452 | |
| 1453 | error[0] = ((error[0] == IP4_ERROR_UNKNOWN_PROTOCOL && |
| 1454 | dpo[0]->dpoi_type == DPO_RECEIVE) ? |
| 1455 | IP4_ERROR_SPOOFED_LOCAL_PACKETS : error[0]); |
| 1456 | error[0] = ((error[0] == IP4_ERROR_UNKNOWN_PROTOCOL && |
| 1457 | !fib_urpf_check_size (lb[0]->lb_urpf) && |
| 1458 | ip[0]->dst_address.as_u32 != 0xFFFFFFFF) |
| 1459 | ? IP4_ERROR_SRC_LOOKUP_MISS : error[0]); |
| 1460 | |
| 1461 | error[1] = ((error[1] == IP4_ERROR_UNKNOWN_PROTOCOL && |
| 1462 | dpo[1]->dpoi_type == DPO_RECEIVE) ? |
| 1463 | IP4_ERROR_SPOOFED_LOCAL_PACKETS : error[1]); |
| 1464 | error[1] = ((error[1] == IP4_ERROR_UNKNOWN_PROTOCOL && |
| 1465 | !fib_urpf_check_size (lb[1]->lb_urpf) && |
| 1466 | ip[1]->dst_address.as_u32 != 0xFFFFFFFF) |
| 1467 | ? IP4_ERROR_SRC_LOOKUP_MISS : error[1]); |
| 1468 | |
| 1469 | last_check->src.as_u32 = ip[1]->src_address.as_u32; |
| 1470 | last_check->lbi = lbi[1]; |
| 1471 | last_check->error = error[1]; |
| 1472 | } |
| 1473 | else |
| 1474 | { |
| 1475 | vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = last_check->lbi; |
| 1476 | vnet_buffer (b[0])->ip.adj_index[VLIB_RX] = last_check->lbi; |
| 1477 | |
| 1478 | vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = last_check->lbi; |
| 1479 | vnet_buffer (b[1])->ip.adj_index[VLIB_RX] = last_check->lbi; |
| 1480 | |
| 1481 | error[0] = last_check->error; |
| 1482 | error[1] = last_check->error; |
| 1483 | } |
| 1484 | } |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1485 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1486 | static inline uword |
| 1487 | ip4_local_inline (vlib_main_t * vm, |
| 1488 | vlib_node_runtime_t * node, |
| 1489 | vlib_frame_t * frame, int head_of_feature_arc) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1490 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1491 | ip4_main_t *im = &ip4_main; |
| 1492 | ip_lookup_main_t *lm = &im->lookup_main; |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1493 | u32 *from, n_left_from; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1494 | vlib_node_runtime_t *error_node = |
| 1495 | vlib_node_get_runtime (vm, ip4_input_node.index); |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1496 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 1497 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 1498 | ip4_header_t *ip[2]; |
| 1499 | u8 error[2]; |
| 1500 | |
| 1501 | ip4_local_last_check_t last_check = { |
| 1502 | .src = {.as_u32 = 0}, |
| 1503 | .lbi = ~0, |
| 1504 | .error = IP4_ERROR_UNKNOWN_PROTOCOL |
| 1505 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1506 | |
| 1507 | from = vlib_frame_vector_args (frame); |
| 1508 | n_left_from = frame->n_vectors; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1509 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1510 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 1511 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 1512 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1513 | vlib_get_buffers (vm, from, bufs, n_left_from); |
| 1514 | b = bufs; |
| 1515 | next = nexts; |
| 1516 | |
| 1517 | while (n_left_from >= 6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1518 | { |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1519 | u32 is_nat, not_batch = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1520 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1521 | /* Prefetch next iteration. */ |
| 1522 | { |
| 1523 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 1524 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 1525 | |
| 1526 | CLIB_PREFETCH (b[4]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 1527 | CLIB_PREFETCH (b[5]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 1528 | } |
| 1529 | |
| 1530 | error[0] = error[1] = IP4_ERROR_UNKNOWN_PROTOCOL; |
| 1531 | |
| 1532 | ip[0] = vlib_buffer_get_current (b[0]); |
| 1533 | ip[1] = vlib_buffer_get_current (b[1]); |
| 1534 | |
| 1535 | vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data; |
| 1536 | vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data; |
| 1537 | |
| 1538 | is_nat = b[0]->flags & VNET_BUFFER_F_IS_NATED; |
| 1539 | not_batch |= is_nat ^ (b[1]->flags & VNET_BUFFER_F_IS_NATED); |
| 1540 | |
| 1541 | if (head_of_feature_arc == 0 || (is_nat && not_batch == 0)) |
| 1542 | goto skip_checks; |
| 1543 | |
| 1544 | if (PREDICT_TRUE (not_batch == 0)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1545 | { |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1546 | ip4_local_check_l4_csum_x2 (vm, b, ip, error); |
| 1547 | ip4_local_check_src_x2 (b, ip, &last_check, error); |
| 1548 | } |
| 1549 | else |
| 1550 | { |
| 1551 | if (!(b[0]->flags & VNET_BUFFER_F_IS_NATED)) |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1552 | { |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1553 | ip4_local_check_l4_csum (vm, b[0], ip[0], &error[0]); |
| 1554 | ip4_local_check_src (b[0], ip[0], &last_check, &error[0]); |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1555 | } |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1556 | if (!(b[1]->flags & VNET_BUFFER_F_IS_NATED)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1557 | { |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1558 | ip4_local_check_l4_csum (vm, b[1], ip[1], &error[1]); |
| 1559 | ip4_local_check_src (b[1], ip[1], &last_check, &error[1]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1560 | } |
| 1561 | } |
| 1562 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1563 | skip_checks: |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1564 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1565 | next[0] = lm->local_next_by_ip_protocol[ip[0]->protocol]; |
| 1566 | next[1] = lm->local_next_by_ip_protocol[ip[1]->protocol]; |
| 1567 | ip4_local_set_next_and_error (error_node, b[0], &next[0], error[0], |
| 1568 | head_of_feature_arc); |
| 1569 | ip4_local_set_next_and_error (error_node, b[1], &next[1], error[1], |
| 1570 | head_of_feature_arc); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1571 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1572 | b += 2; |
| 1573 | next += 2; |
| 1574 | n_left_from -= 2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
Florin Coras | 1b25552 | 2018-06-01 12:22:23 -0700 | [diff] [blame] | 1577 | while (n_left_from > 0) |
| 1578 | { |
| 1579 | error[0] = IP4_ERROR_UNKNOWN_PROTOCOL; |
| 1580 | |
| 1581 | ip[0] = vlib_buffer_get_current (b[0]); |
| 1582 | vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data; |
| 1583 | |
| 1584 | if (head_of_feature_arc == 0 || (b[0]->flags & VNET_BUFFER_F_IS_NATED)) |
| 1585 | goto skip_check; |
| 1586 | |
| 1587 | ip4_local_check_l4_csum (vm, b[0], ip[0], &error[0]); |
| 1588 | ip4_local_check_src (b[0], ip[0], &last_check, &error[0]); |
| 1589 | |
| 1590 | skip_check: |
| 1591 | |
| 1592 | next[0] = lm->local_next_by_ip_protocol[ip[0]->protocol]; |
| 1593 | ip4_local_set_next_and_error (error_node, b[0], &next[0], error[0], |
| 1594 | head_of_feature_arc); |
| 1595 | |
| 1596 | b += 1; |
| 1597 | next += 1; |
| 1598 | n_left_from -= 1; |
| 1599 | } |
| 1600 | |
| 1601 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1602 | return frame->n_vectors; |
| 1603 | } |
| 1604 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1605 | static uword |
| 1606 | ip4_local (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1607 | { |
| 1608 | return ip4_local_inline (vm, node, frame, 1 /* head of feature arc */ ); |
| 1609 | } |
| 1610 | |
| 1611 | /* *INDENT-OFF* */ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1612 | VLIB_REGISTER_NODE (ip4_local_node) = |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1613 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1614 | .function = ip4_local, |
| 1615 | .name = "ip4-local", |
| 1616 | .vector_size = sizeof (u32), |
| 1617 | .format_trace = format_ip4_forward_next_trace, |
| 1618 | .n_next_nodes = IP_LOCAL_N_NEXT, |
| 1619 | .next_nodes = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1620 | { |
Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1621 | [IP_LOCAL_NEXT_DROP] = "ip4-drop", |
| 1622 | [IP_LOCAL_NEXT_PUNT] = "ip4-punt", |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1623 | [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip4-udp-lookup", |
Florin Coras | 20a14b9 | 2017-08-15 22:47:22 -0700 | [diff] [blame] | 1624 | [IP_LOCAL_NEXT_ICMP] = "ip4-icmp-input", |
| 1625 | }, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1626 | }; |
| 1627 | /* *INDENT-ON* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1628 | |
| 1629 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_local_node, ip4_local); |
| 1630 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1631 | static uword |
| 1632 | ip4_local_end_of_arc (vlib_main_t * vm, |
| 1633 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1634 | { |
| 1635 | return ip4_local_inline (vm, node, frame, 0 /* head of feature arc */ ); |
| 1636 | } |
| 1637 | |
| 1638 | /* *INDENT-OFF* */ |
| 1639 | VLIB_REGISTER_NODE (ip4_local_end_of_arc_node,static) = { |
| 1640 | .function = ip4_local_end_of_arc, |
| 1641 | .name = "ip4-local-end-of-arc", |
| 1642 | .vector_size = sizeof (u32), |
| 1643 | |
| 1644 | .format_trace = format_ip4_forward_next_trace, |
| 1645 | .sibling_of = "ip4-local", |
| 1646 | }; |
| 1647 | |
| 1648 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_local_end_of_arc_node, ip4_local_end_of_arc) |
| 1649 | |
| 1650 | VNET_FEATURE_INIT (ip4_local_end_of_arc, static) = { |
| 1651 | .arc_name = "ip4-local", |
| 1652 | .node_name = "ip4-local-end-of-arc", |
| 1653 | .runs_before = 0, /* not before any other features */ |
| 1654 | }; |
| 1655 | /* *INDENT-ON* */ |
| 1656 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1657 | void |
| 1658 | ip4_register_protocol (u32 protocol, u32 node_index) |
| 1659 | { |
| 1660 | vlib_main_t *vm = vlib_get_main (); |
| 1661 | ip4_main_t *im = &ip4_main; |
| 1662 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1663 | |
| 1664 | ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol)); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1665 | lm->local_next_by_ip_protocol[protocol] = |
| 1666 | vlib_node_add_next (vm, ip4_local_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1667 | } |
| 1668 | |
| 1669 | static clib_error_t * |
| 1670 | show_ip_local_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1671 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1672 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1673 | ip4_main_t *im = &ip4_main; |
| 1674 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1675 | int i; |
| 1676 | |
| 1677 | vlib_cli_output (vm, "Protocols handled by ip4_local"); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1678 | for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1679 | { |
| 1680 | if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT) |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 1681 | { |
| 1682 | u32 node_index = vlib_get_node (vm, |
| 1683 | ip4_local_node.index)-> |
| 1684 | next_nodes[lm->local_next_by_ip_protocol[i]]; |
| 1685 | vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm, |
| 1686 | node_index); |
| 1687 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1688 | } |
| 1689 | return 0; |
| 1690 | } |
| 1691 | |
| 1692 | |
| 1693 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1694 | /*? |
| 1695 | * Display the set of protocols handled by the local IPv4 stack. |
| 1696 | * |
| 1697 | * @cliexpar |
| 1698 | * Example of how to display local protocol table: |
| 1699 | * @cliexstart{show ip local} |
| 1700 | * Protocols handled by ip4_local |
| 1701 | * 1 |
| 1702 | * 17 |
| 1703 | * 47 |
| 1704 | * @cliexend |
| 1705 | ?*/ |
| 1706 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1707 | VLIB_CLI_COMMAND (show_ip_local, static) = |
| 1708 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1709 | .path = "show ip local", |
| 1710 | .function = show_ip_local_command_fn, |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1711 | .short_help = "show ip local", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1712 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 1713 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1714 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1715 | always_inline uword |
| 1716 | ip4_arp_inline (vlib_main_t * vm, |
| 1717 | vlib_node_runtime_t * node, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1718 | vlib_frame_t * frame, int is_glean) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1719 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1720 | vnet_main_t *vnm = vnet_get_main (); |
| 1721 | ip4_main_t *im = &ip4_main; |
| 1722 | ip_lookup_main_t *lm = &im->lookup_main; |
| 1723 | u32 *from, *to_next_drop; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1724 | uword n_left_from, n_left_to_next_drop, next_index; |
| 1725 | static f64 time_last_seed_change = -1e100; |
| 1726 | static u32 hash_seeds[3]; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 1727 | static uword hash_bitmap[256 / BITS (uword)]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1728 | f64 time_now; |
| 1729 | |
| 1730 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 1731 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 1732 | |
| 1733 | time_now = vlib_time_now (vm); |
| 1734 | if (time_now - time_last_seed_change > 1e-3) |
| 1735 | { |
| 1736 | uword i; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1737 | u32 *r = clib_random_buffer_get_data (&vm->random_buffer, |
| 1738 | sizeof (hash_seeds)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1739 | for (i = 0; i < ARRAY_LEN (hash_seeds); i++) |
| 1740 | hash_seeds[i] = r[i]; |
| 1741 | |
| 1742 | /* Mark all hash keys as been no-seen before. */ |
| 1743 | for (i = 0; i < ARRAY_LEN (hash_bitmap); i++) |
| 1744 | hash_bitmap[i] = 0; |
| 1745 | |
| 1746 | time_last_seed_change = time_now; |
| 1747 | } |
| 1748 | |
| 1749 | from = vlib_frame_vector_args (frame); |
| 1750 | n_left_from = frame->n_vectors; |
| 1751 | next_index = node->cached_next_index; |
| 1752 | if (next_index == IP4_ARP_NEXT_DROP) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1753 | next_index = IP4_ARP_N_NEXT; /* point to first interface */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1754 | |
| 1755 | while (n_left_from > 0) |
| 1756 | { |
| 1757 | vlib_get_next_frame (vm, node, IP4_ARP_NEXT_DROP, |
| 1758 | to_next_drop, n_left_to_next_drop); |
| 1759 | |
| 1760 | while (n_left_from > 0 && n_left_to_next_drop > 0) |
| 1761 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1762 | u32 pi0, adj_index0, a0, b0, c0, m0, sw_if_index0, drop0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1763 | ip_adjacency_t *adj0; |
| 1764 | vlib_buffer_t *p0; |
| 1765 | ip4_header_t *ip0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1766 | uword bm0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1767 | |
| 1768 | pi0 = from[0]; |
| 1769 | |
| 1770 | p0 = vlib_get_buffer (vm, pi0); |
| 1771 | |
| 1772 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 1773 | adj0 = adj_get (adj_index0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1774 | ip0 = vlib_buffer_get_current (p0); |
| 1775 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1776 | a0 = hash_seeds[0]; |
| 1777 | b0 = hash_seeds[1]; |
| 1778 | c0 = hash_seeds[2]; |
| 1779 | |
| 1780 | sw_if_index0 = adj0->rewrite_header.sw_if_index; |
| 1781 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0; |
| 1782 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1783 | if (is_glean) |
| 1784 | { |
Neale Ranns | 948e00f | 2016-10-20 13:39:34 +0100 | [diff] [blame] | 1785 | /* |
| 1786 | * this is the Glean case, so we are ARPing for the |
| 1787 | * packet's destination |
| 1788 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1789 | a0 ^= ip0->dst_address.data_u32; |
| 1790 | } |
| 1791 | else |
| 1792 | { |
| 1793 | a0 ^= adj0->sub_type.nbr.next_hop.ip4.data_u32; |
| 1794 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1795 | b0 ^= sw_if_index0; |
| 1796 | |
Florin Coras | 2d3dbc4 | 2017-09-08 16:22:38 -0400 | [diff] [blame] | 1797 | hash_v3_mix32 (a0, b0, c0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1798 | hash_v3_finalize32 (a0, b0, c0); |
| 1799 | |
| 1800 | c0 &= BITS (hash_bitmap) - 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1801 | m0 = (uword) 1 << (c0 % BITS (uword)); |
Florin Coras | 2d3dbc4 | 2017-09-08 16:22:38 -0400 | [diff] [blame] | 1802 | c0 = c0 / BITS (uword); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1803 | |
| 1804 | bm0 = hash_bitmap[c0]; |
| 1805 | drop0 = (bm0 & m0) != 0; |
| 1806 | |
| 1807 | /* Mark it as seen. */ |
| 1808 | hash_bitmap[c0] = bm0 | m0; |
| 1809 | |
| 1810 | from += 1; |
| 1811 | n_left_from -= 1; |
| 1812 | to_next_drop[0] = pi0; |
| 1813 | to_next_drop += 1; |
| 1814 | n_left_to_next_drop -= 1; |
| 1815 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1816 | p0->error = |
| 1817 | node->errors[drop0 ? IP4_ARP_ERROR_DROP : |
| 1818 | IP4_ARP_ERROR_REQUEST_SENT]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1819 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1820 | /* |
| 1821 | * the adj has been updated to a rewrite but the node the DPO that got |
| 1822 | * us here hasn't - yet. no big deal. we'll drop while we wait. |
| 1823 | */ |
| 1824 | if (IP_LOOKUP_NEXT_REWRITE == adj0->lookup_next_index) |
| 1825 | continue; |
| 1826 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1827 | if (drop0) |
| 1828 | continue; |
| 1829 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1830 | /* |
| 1831 | * Can happen if the control-plane is programming tables |
| 1832 | * with traffic flowing; at least that's today's lame excuse. |
| 1833 | */ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 1834 | if ((is_glean && adj0->lookup_next_index != IP_LOOKUP_NEXT_GLEAN) |
| 1835 | || (!is_glean && adj0->lookup_next_index != IP_LOOKUP_NEXT_ARP)) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1836 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1837 | p0->error = node->errors[IP4_ARP_ERROR_NON_ARP_ADJ]; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1838 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1839 | else |
| 1840 | /* Send ARP request. */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1841 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1842 | u32 bi0 = 0; |
| 1843 | vlib_buffer_t *b0; |
| 1844 | ethernet_arp_header_t *h0; |
| 1845 | vnet_hw_interface_t *hw_if0; |
| 1846 | |
| 1847 | h0 = |
| 1848 | vlib_packet_template_get_packet (vm, |
| 1849 | &im->ip4_arp_request_packet_template, |
| 1850 | &bi0); |
| 1851 | |
Florin Coras | d172a62 | 2017-10-14 11:02:37 -0700 | [diff] [blame] | 1852 | /* Seems we're out of buffers */ |
| 1853 | if (PREDICT_FALSE (!h0)) |
| 1854 | continue; |
| 1855 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1856 | /* Add rewrite/encap string for ARP packet. */ |
| 1857 | vnet_rewrite_one_header (adj0[0], h0, |
| 1858 | sizeof (ethernet_header_t)); |
| 1859 | |
| 1860 | hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
| 1861 | |
| 1862 | /* Src ethernet address in ARP header. */ |
| 1863 | clib_memcpy (h0->ip4_over_ethernet[0].ethernet, |
| 1864 | hw_if0->hw_address, |
| 1865 | sizeof (h0->ip4_over_ethernet[0].ethernet)); |
| 1866 | |
| 1867 | if (is_glean) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1868 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1869 | /* The interface's source address is stashed in the Glean Adj */ |
| 1870 | h0->ip4_over_ethernet[0].ip4 = |
| 1871 | adj0->sub_type.glean.receive_addr.ip4; |
| 1872 | |
| 1873 | /* Copy in destination address we are requesting. This is the |
| 1874 | * glean case, so it's the packet's destination.*/ |
| 1875 | h0->ip4_over_ethernet[1].ip4.data_u32 = |
| 1876 | ip0->dst_address.data_u32; |
| 1877 | } |
| 1878 | else |
| 1879 | { |
| 1880 | /* Src IP address in ARP header. */ |
| 1881 | if (ip4_src_address_for_packet (lm, sw_if_index0, |
| 1882 | &h0-> |
| 1883 | ip4_over_ethernet[0].ip4)) |
| 1884 | { |
| 1885 | /* No source address available */ |
| 1886 | p0->error = |
| 1887 | node->errors[IP4_ARP_ERROR_NO_SOURCE_ADDRESS]; |
| 1888 | vlib_buffer_free (vm, &bi0, 1); |
| 1889 | continue; |
| 1890 | } |
| 1891 | |
| 1892 | /* Copy in destination address we are requesting from the |
| 1893 | incomplete adj */ |
| 1894 | h0->ip4_over_ethernet[1].ip4.data_u32 = |
| 1895 | adj0->sub_type.nbr.next_hop.ip4.as_u32; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1896 | } |
| 1897 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1898 | vlib_buffer_copy_trace_flag (vm, p0, bi0); |
| 1899 | b0 = vlib_get_buffer (vm, bi0); |
Florin Coras | 2f9b0c0 | 2017-09-11 20:54:15 -0400 | [diff] [blame] | 1900 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1901 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0; |
| 1902 | |
| 1903 | vlib_buffer_advance (b0, -adj0->rewrite_header.data_bytes); |
| 1904 | |
| 1905 | vlib_set_next_frame_buffer (vm, node, |
| 1906 | adj0->rewrite_header.next_index, |
| 1907 | bi0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1908 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1909 | } |
| 1910 | |
| 1911 | vlib_put_next_frame (vm, node, IP4_ARP_NEXT_DROP, n_left_to_next_drop); |
| 1912 | } |
| 1913 | |
| 1914 | return frame->n_vectors; |
| 1915 | } |
| 1916 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1917 | static uword |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1918 | ip4_arp (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1919 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1920 | return (ip4_arp_inline (vm, node, frame, 0)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1921 | } |
| 1922 | |
| 1923 | static uword |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1924 | ip4_glean (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1925 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1926 | return (ip4_arp_inline (vm, node, frame, 1)); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1927 | } |
| 1928 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1929 | static char *ip4_arp_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1930 | [IP4_ARP_ERROR_DROP] = "address overflow drops", |
| 1931 | [IP4_ARP_ERROR_REQUEST_SENT] = "ARP requests sent", |
| 1932 | [IP4_ARP_ERROR_NON_ARP_ADJ] = "ARPs to non-ARP adjacencies", |
| 1933 | [IP4_ARP_ERROR_REPLICATE_DROP] = "ARP replication completed", |
| 1934 | [IP4_ARP_ERROR_REPLICATE_FAIL] = "ARP replication failed", |
Pierre Pfister | d076f19 | 2016-06-22 12:58:30 +0100 | [diff] [blame] | 1935 | [IP4_ARP_ERROR_NO_SOURCE_ADDRESS] = "no source address for ARP request", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1936 | }; |
| 1937 | |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 1938 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1939 | VLIB_REGISTER_NODE (ip4_arp_node) = |
| 1940 | { |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 1941 | .function = ip4_arp, |
| 1942 | .name = "ip4-arp", |
| 1943 | .vector_size = sizeof (u32), |
| 1944 | .format_trace = format_ip4_forward_next_trace, |
| 1945 | .n_errors = ARRAY_LEN (ip4_arp_error_strings), |
| 1946 | .error_strings = ip4_arp_error_strings, |
| 1947 | .n_next_nodes = IP4_ARP_N_NEXT, |
| 1948 | .next_nodes = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1949 | { |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 1950 | [IP4_ARP_NEXT_DROP] = "error-drop", |
| 1951 | }, |
| 1952 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1953 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1954 | VLIB_REGISTER_NODE (ip4_glean_node) = |
| 1955 | { |
Neale Ranns | f868632 | 2017-11-29 02:39:53 -0800 | [diff] [blame] | 1956 | .function = ip4_glean, |
| 1957 | .name = "ip4-glean", |
| 1958 | .vector_size = sizeof (u32), |
| 1959 | .format_trace = format_ip4_forward_next_trace, |
| 1960 | .n_errors = ARRAY_LEN (ip4_arp_error_strings), |
| 1961 | .error_strings = ip4_arp_error_strings, |
| 1962 | .n_next_nodes = IP4_ARP_N_NEXT, |
| 1963 | .next_nodes = { |
| 1964 | [IP4_ARP_NEXT_DROP] = "error-drop", |
| 1965 | }, |
| 1966 | }; |
| 1967 | /* *INDENT-ON* */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1968 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1969 | #define foreach_notrace_ip4_arp_error \ |
| 1970 | _(DROP) \ |
| 1971 | _(REQUEST_SENT) \ |
| 1972 | _(REPLICATE_DROP) \ |
| 1973 | _(REPLICATE_FAIL) |
| 1974 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1975 | clib_error_t * |
| 1976 | arp_notrace_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1977 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1978 | vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, ip4_arp_node.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1979 | |
| 1980 | /* don't trace ARP request packets */ |
| 1981 | #define _(a) \ |
| 1982 | vnet_pcap_drop_trace_filter_add_del \ |
| 1983 | (rt->errors[IP4_ARP_ERROR_##a], \ |
| 1984 | 1 /* is_add */); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1985 | foreach_notrace_ip4_arp_error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1986 | #undef _ |
| 1987 | return 0; |
| 1988 | } |
| 1989 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1990 | VLIB_INIT_FUNCTION (arp_notrace_init); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1991 | |
| 1992 | |
| 1993 | /* Send an ARP request to see if given destination is reachable on given interface. */ |
| 1994 | clib_error_t * |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 1995 | ip4_probe_neighbor (vlib_main_t * vm, ip4_address_t * dst, u32 sw_if_index, |
| 1996 | u8 refresh) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1997 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 1998 | vnet_main_t *vnm = vnet_get_main (); |
| 1999 | ip4_main_t *im = &ip4_main; |
| 2000 | ethernet_arp_header_t *h; |
| 2001 | ip4_address_t *src; |
| 2002 | ip_interface_address_t *ia; |
| 2003 | ip_adjacency_t *adj; |
| 2004 | vnet_hw_interface_t *hi; |
| 2005 | vnet_sw_interface_t *si; |
| 2006 | vlib_buffer_t *b; |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 2007 | adj_index_t ai; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2008 | u32 bi = 0; |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 2009 | u8 unicast_rewrite = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2010 | |
| 2011 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 2012 | |
| 2013 | if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)) |
| 2014 | { |
| 2015 | return clib_error_return (0, "%U: interface %U down", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2016 | format_ip4_address, dst, |
| 2017 | format_vnet_sw_if_index_name, vnm, |
| 2018 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2021 | src = |
| 2022 | ip4_interface_address_matching_destination (im, dst, sw_if_index, &ia); |
| 2023 | if (!src) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2024 | { |
| 2025 | vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2026 | return clib_error_return |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2027 | (0, |
| 2028 | "no matching interface address for destination %U (interface %U)", |
| 2029 | format_ip4_address, dst, format_vnet_sw_if_index_name, vnm, |
| 2030 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2031 | } |
| 2032 | |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 2033 | h = vlib_packet_template_get_packet (vm, |
| 2034 | &im->ip4_arp_request_packet_template, |
| 2035 | &bi); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2036 | |
John Lo | 084606b | 2018-06-19 15:27:48 -0400 | [diff] [blame] | 2037 | if (!h) |
| 2038 | return clib_error_return (0, "ARP request packet allocation failed"); |
| 2039 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2040 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
Pavel Kotucek | 5780898 | 2017-08-02 08:20:19 +0200 | [diff] [blame] | 2041 | if (PREDICT_FALSE (!hi->hw_address)) |
| 2042 | { |
| 2043 | return clib_error_return (0, "%U: interface %U do not support ip probe", |
| 2044 | format_ip4_address, dst, |
| 2045 | format_vnet_sw_if_index_name, vnm, |
| 2046 | sw_if_index); |
| 2047 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2048 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2049 | clib_memcpy (h->ip4_over_ethernet[0].ethernet, hi->hw_address, |
| 2050 | sizeof (h->ip4_over_ethernet[0].ethernet)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2051 | |
| 2052 | h->ip4_over_ethernet[0].ip4 = src[0]; |
| 2053 | h->ip4_over_ethernet[1].ip4 = dst[0]; |
| 2054 | |
| 2055 | b = vlib_get_buffer (vm, bi); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2056 | vnet_buffer (b)->sw_if_index[VLIB_RX] = |
| 2057 | vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2058 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 2059 | ip46_address_t nh = { |
| 2060 | .ip4 = *dst, |
| 2061 | }; |
| 2062 | |
| 2063 | ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP4, |
| 2064 | VNET_LINK_IP4, &nh, sw_if_index); |
| 2065 | adj = adj_get (ai); |
| 2066 | |
| 2067 | /* Peer has been previously resolved, retrieve glean adj instead */ |
| 2068 | if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE) |
| 2069 | { |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 2070 | if (refresh) |
| 2071 | unicast_rewrite = 1; |
| 2072 | else |
| 2073 | { |
| 2074 | adj_unlock (ai); |
| 2075 | ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP4, |
| 2076 | VNET_LINK_IP4, sw_if_index, &nh); |
| 2077 | adj = adj_get (ai); |
| 2078 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 2079 | } |
| 2080 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2081 | /* Add encapsulation string for software interface (e.g. ethernet header). */ |
| 2082 | vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t)); |
John Lo | 8637634 | 2018-06-11 20:14:49 -0400 | [diff] [blame] | 2083 | if (unicast_rewrite) |
| 2084 | { |
| 2085 | u16 *etype = vlib_buffer_get_current (b) - 2; |
| 2086 | etype[0] = clib_host_to_net_u16 (ETHERNET_TYPE_ARP); |
| 2087 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2088 | vlib_buffer_advance (b, -adj->rewrite_header.data_bytes); |
| 2089 | |
| 2090 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2091 | vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index); |
| 2092 | u32 *to_next = vlib_frame_vector_args (f); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2093 | to_next[0] = bi; |
| 2094 | f->n_vectors = 1; |
| 2095 | vlib_put_frame_to_node (vm, hi->output_node_index, f); |
| 2096 | } |
| 2097 | |
Neale Ranns | 7a27274 | 2017-05-30 02:08:14 -0700 | [diff] [blame] | 2098 | adj_unlock (ai); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2099 | return /* no error */ 0; |
| 2100 | } |
| 2101 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2102 | typedef enum |
| 2103 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2104 | IP4_REWRITE_NEXT_DROP, |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 2105 | IP4_REWRITE_NEXT_ICMP_ERROR, |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2106 | IP4_REWRITE_NEXT_FRAGMENT, |
| 2107 | IP4_REWRITE_N_NEXT /* Last */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2108 | } ip4_rewrite_next_t; |
| 2109 | |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 2110 | /** |
| 2111 | * This bits of an IPv4 address to mask to construct a multicast |
| 2112 | * MAC address |
| 2113 | */ |
| 2114 | #if CLIB_ARCH_IS_BIG_ENDIAN |
| 2115 | #define IP4_MCAST_ADDR_MASK 0x007fffff |
| 2116 | #else |
| 2117 | #define IP4_MCAST_ADDR_MASK 0xffff7f00 |
| 2118 | #endif |
| 2119 | |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 2120 | always_inline void |
| 2121 | ip4_mtu_check (vlib_buffer_t * b, u16 packet_len, |
| 2122 | u16 adj_packet_bytes, bool df, u32 * next, u32 * error) |
| 2123 | { |
| 2124 | if (packet_len > adj_packet_bytes) |
| 2125 | { |
| 2126 | *error = IP4_ERROR_MTU_EXCEEDED; |
| 2127 | if (df) |
| 2128 | { |
| 2129 | icmp4_error_set_vnet_buffer |
| 2130 | (b, ICMP4_destination_unreachable, |
| 2131 | ICMP4_destination_unreachable_fragmentation_needed_and_dont_fragment_set, |
| 2132 | adj_packet_bytes); |
| 2133 | *next = IP4_REWRITE_NEXT_ICMP_ERROR; |
| 2134 | } |
| 2135 | else |
| 2136 | { |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2137 | /* IP fragmentation */ |
| 2138 | ip_frag_set_vnet_buffer (b, 0, adj_packet_bytes, |
| 2139 | IP4_FRAG_NEXT_IP4_LOOKUP, 0); |
| 2140 | *next = IP4_REWRITE_NEXT_FRAGMENT; |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 2141 | } |
| 2142 | } |
| 2143 | } |
| 2144 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2145 | always_inline uword |
| 2146 | ip4_rewrite_inline (vlib_main_t * vm, |
| 2147 | vlib_node_runtime_t * node, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2148 | vlib_frame_t * frame, |
| 2149 | int do_counters, int is_midchain, int is_mcast) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2150 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2151 | ip_lookup_main_t *lm = &ip4_main.lookup_main; |
| 2152 | u32 *from = vlib_frame_vector_args (frame); |
| 2153 | u32 n_left_from, n_left_to_next, *to_next, next_index; |
| 2154 | vlib_node_runtime_t *error_node = |
| 2155 | vlib_node_get_runtime (vm, ip4_input_node.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2156 | |
| 2157 | n_left_from = frame->n_vectors; |
| 2158 | next_index = node->cached_next_index; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 2159 | u32 thread_index = vm->thread_index; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2160 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2161 | while (n_left_from > 0) |
| 2162 | { |
| 2163 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2164 | |
| 2165 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 2166 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2167 | ip_adjacency_t *adj0, *adj1; |
| 2168 | vlib_buffer_t *p0, *p1; |
| 2169 | ip4_header_t *ip0, *ip1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2170 | u32 pi0, rw_len0, next0, error0, checksum0, adj_index0; |
| 2171 | u32 pi1, rw_len1, next1, error1, checksum1, adj_index1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2172 | u32 tx_sw_if_index0, tx_sw_if_index1; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2173 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2174 | /* Prefetch next iteration. */ |
| 2175 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2176 | vlib_buffer_t *p2, *p3; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2177 | |
| 2178 | p2 = vlib_get_buffer (vm, from[2]); |
| 2179 | p3 = vlib_get_buffer (vm, from[3]); |
| 2180 | |
| 2181 | vlib_prefetch_buffer_header (p2, STORE); |
| 2182 | vlib_prefetch_buffer_header (p3, STORE); |
| 2183 | |
| 2184 | CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE); |
| 2185 | CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE); |
| 2186 | } |
| 2187 | |
| 2188 | pi0 = to_next[0] = from[0]; |
| 2189 | pi1 = to_next[1] = from[1]; |
| 2190 | |
| 2191 | from += 2; |
| 2192 | n_left_from -= 2; |
| 2193 | to_next += 2; |
| 2194 | n_left_to_next -= 2; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2195 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2196 | p0 = vlib_get_buffer (vm, pi0); |
| 2197 | p1 = vlib_get_buffer (vm, pi1); |
| 2198 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2199 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
| 2200 | adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2201 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2202 | /* |
| 2203 | * pre-fetch the per-adjacency counters |
| 2204 | */ |
| 2205 | if (do_counters) |
| 2206 | { |
| 2207 | vlib_prefetch_combined_counter (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2208 | thread_index, adj_index0); |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2209 | vlib_prefetch_combined_counter (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2210 | thread_index, adj_index1); |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2211 | } |
| 2212 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2213 | ip0 = vlib_buffer_get_current (p0); |
| 2214 | ip1 = vlib_buffer_get_current (p1); |
| 2215 | |
| 2216 | error0 = error1 = IP4_ERROR_NONE; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2217 | next0 = next1 = IP4_REWRITE_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2218 | |
| 2219 | /* Decrement TTL & update checksum. |
| 2220 | Works either endian, so no need for byte swap. */ |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2221 | if (PREDICT_TRUE (!(p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2222 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2223 | i32 ttl0 = ip0->ttl; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2224 | |
| 2225 | /* Input node should have reject packets with ttl 0. */ |
| 2226 | ASSERT (ip0->ttl > 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2227 | |
| 2228 | checksum0 = ip0->checksum + clib_host_to_net_u16 (0x0100); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2229 | checksum0 += checksum0 >= 0xffff; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2230 | |
| 2231 | ip0->checksum = checksum0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2232 | ttl0 -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2233 | ip0->ttl = ttl0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2234 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2235 | /* |
| 2236 | * If the ttl drops below 1 when forwarding, generate |
| 2237 | * an ICMP response. |
| 2238 | */ |
| 2239 | if (PREDICT_FALSE (ttl0 <= 0)) |
| 2240 | { |
| 2241 | error0 = IP4_ERROR_TIME_EXPIRED; |
| 2242 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 2243 | icmp4_error_set_vnet_buffer (p0, ICMP4_time_exceeded, |
| 2244 | ICMP4_time_exceeded_ttl_exceeded_in_transit, |
| 2245 | 0); |
| 2246 | next0 = IP4_REWRITE_NEXT_ICMP_ERROR; |
| 2247 | } |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2248 | |
| 2249 | /* Verify checksum. */ |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 2250 | ASSERT ((ip0->checksum == ip4_header_checksum (ip0)) || |
Damjan Marion | fb3288f | 2017-07-19 15:07:10 +0200 | [diff] [blame] | 2251 | (p0->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)); |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2252 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2253 | else |
| 2254 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2255 | p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2256 | } |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2257 | if (PREDICT_TRUE (!(p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED))) |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2258 | { |
| 2259 | i32 ttl1 = ip1->ttl; |
| 2260 | |
| 2261 | /* Input node should have reject packets with ttl 0. */ |
| 2262 | ASSERT (ip1->ttl > 0); |
| 2263 | |
| 2264 | checksum1 = ip1->checksum + clib_host_to_net_u16 (0x0100); |
| 2265 | checksum1 += checksum1 >= 0xffff; |
| 2266 | |
| 2267 | ip1->checksum = checksum1; |
| 2268 | ttl1 -= 1; |
| 2269 | ip1->ttl = ttl1; |
| 2270 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2271 | /* |
| 2272 | * If the ttl drops below 1 when forwarding, generate |
| 2273 | * an ICMP response. |
| 2274 | */ |
| 2275 | if (PREDICT_FALSE (ttl1 <= 0)) |
| 2276 | { |
| 2277 | error1 = IP4_ERROR_TIME_EXPIRED; |
| 2278 | vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 2279 | icmp4_error_set_vnet_buffer (p1, ICMP4_time_exceeded, |
| 2280 | ICMP4_time_exceeded_ttl_exceeded_in_transit, |
| 2281 | 0); |
| 2282 | next1 = IP4_REWRITE_NEXT_ICMP_ERROR; |
| 2283 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2284 | |
| 2285 | /* Verify checksum. */ |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 2286 | ASSERT ((ip1->checksum == ip4_header_checksum (ip1)) || |
Damjan Marion | fb3288f | 2017-07-19 15:07:10 +0200 | [diff] [blame] | 2287 | (p1->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2288 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2289 | else |
| 2290 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2291 | p1->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2292 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2293 | |
| 2294 | /* Rewrite packet header and updates lengths. */ |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2295 | adj0 = adj_get (adj_index0); |
| 2296 | adj1 = adj_get (adj_index1); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2297 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2298 | /* Worth pipelining. No guarantee that adj0,1 are hot... */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2299 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
| 2300 | rw_len1 = adj1[0].rewrite_header.data_bytes; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2301 | vnet_buffer (p0)->ip.save_rewrite_length = rw_len0; |
| 2302 | vnet_buffer (p1)->ip.save_rewrite_length = rw_len1; |
Chris Luke | f2868fc | 2016-06-14 16:26:22 -0400 | [diff] [blame] | 2303 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2304 | /* Check MTU of outgoing interface. */ |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 2305 | ip4_mtu_check (p0, clib_net_to_host_u16 (ip0->length), |
| 2306 | adj0[0].rewrite_header.max_l3_packet_bytes, |
| 2307 | ip0->flags_and_fragment_offset & |
| 2308 | clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT), |
| 2309 | &next0, &error0); |
| 2310 | ip4_mtu_check (p1, clib_net_to_host_u16 (ip1->length), |
| 2311 | adj1[0].rewrite_header.max_l3_packet_bytes, |
| 2312 | ip1->flags_and_fragment_offset & |
| 2313 | clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT), |
| 2314 | &next1, &error1); |
Chris Luke | f2868fc | 2016-06-14 16:26:22 -0400 | [diff] [blame] | 2315 | |
Neale Ranns | cf3561b | 2017-12-13 01:44:25 -0800 | [diff] [blame] | 2316 | if (is_mcast) |
| 2317 | { |
| 2318 | error0 = ((adj0[0].rewrite_header.sw_if_index == |
| 2319 | vnet_buffer (p0)->sw_if_index[VLIB_RX]) ? |
| 2320 | IP4_ERROR_SAME_INTERFACE : error0); |
| 2321 | error1 = ((adj1[0].rewrite_header.sw_if_index == |
| 2322 | vnet_buffer (p1)->sw_if_index[VLIB_RX]) ? |
| 2323 | IP4_ERROR_SAME_INTERFACE : error1); |
| 2324 | } |
| 2325 | |
Chun Li | ef56fae | 2018-02-07 09:58:28 +0800 | [diff] [blame] | 2326 | p0->error = error_node->errors[error0]; |
| 2327 | p1->error = error_node->errors[error1]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2328 | /* Don't adjust the buffer for ttl issue; icmp-error node wants |
| 2329 | * to see the IP headerr */ |
| 2330 | if (PREDICT_TRUE (error0 == IP4_ERROR_NONE)) |
| 2331 | { |
Damjan Marion | 892e076 | 2016-12-09 18:52:05 +0100 | [diff] [blame] | 2332 | next0 = adj0[0].rewrite_header.next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2333 | p0->current_data -= rw_len0; |
| 2334 | p0->current_length += rw_len0; |
| 2335 | tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index; |
| 2336 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 2337 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 2338 | if (PREDICT_FALSE |
| 2339 | (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 2340 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 2341 | tx_sw_if_index0, &next0, p0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2342 | } |
| 2343 | if (PREDICT_TRUE (error1 == IP4_ERROR_NONE)) |
| 2344 | { |
Damjan Marion | 892e076 | 2016-12-09 18:52:05 +0100 | [diff] [blame] | 2345 | next1 = adj1[0].rewrite_header.next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2346 | p1->current_data -= rw_len1; |
| 2347 | p1->current_length += rw_len1; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 2348 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2349 | tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index; |
| 2350 | vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 2351 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 2352 | if (PREDICT_FALSE |
| 2353 | (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 2354 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 2355 | tx_sw_if_index1, &next1, p1); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2356 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2357 | |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 2358 | /* Guess we are only writing on simple Ethernet header. */ |
| 2359 | vnet_rewrite_two_headers (adj0[0], adj1[0], |
| 2360 | ip0, ip1, sizeof (ethernet_header_t)); |
| 2361 | |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 2362 | /* |
| 2363 | * Bump the per-adjacency counters |
| 2364 | */ |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2365 | if (do_counters) |
| 2366 | { |
| 2367 | vlib_increment_combined_counter |
| 2368 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2369 | thread_index, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2370 | adj_index0, 1, |
| 2371 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 2372 | |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2373 | vlib_increment_combined_counter |
| 2374 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2375 | thread_index, |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2376 | adj_index1, 1, |
| 2377 | vlib_buffer_length_in_chain (vm, p1) + rw_len1); |
| 2378 | } |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 2379 | |
Damjan Marion | fe7d4a2 | 2018-04-13 19:43:39 +0200 | [diff] [blame] | 2380 | if (is_midchain) |
| 2381 | { |
| 2382 | adj0->sub_type.midchain.fixup_func |
| 2383 | (vm, adj0, p0, adj0->sub_type.midchain.fixup_data); |
| 2384 | adj1->sub_type.midchain.fixup_func |
| 2385 | (vm, adj1, p1, adj0->sub_type.midchain.fixup_data); |
| 2386 | } |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2387 | if (is_mcast) |
| 2388 | { |
| 2389 | /* |
| 2390 | * copy bytes from the IP address into the MAC rewrite |
| 2391 | */ |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 2392 | vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK, |
| 2393 | adj0-> |
| 2394 | rewrite_header.dst_mcast_offset, |
| 2395 | &ip0->dst_address.as_u32, |
| 2396 | (u8 *) ip0); |
| 2397 | vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK, |
| 2398 | adj0-> |
| 2399 | rewrite_header.dst_mcast_offset, |
| 2400 | &ip1->dst_address.as_u32, |
| 2401 | (u8 *) ip1); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2402 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2403 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2404 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 2405 | to_next, n_left_to_next, |
| 2406 | pi0, pi1, next0, next1); |
| 2407 | } |
| 2408 | |
| 2409 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2410 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2411 | ip_adjacency_t *adj0; |
| 2412 | vlib_buffer_t *p0; |
| 2413 | ip4_header_t *ip0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2414 | u32 pi0, rw_len0, adj_index0, next0, error0, checksum0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2415 | u32 tx_sw_if_index0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2416 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2417 | pi0 = to_next[0] = from[0]; |
| 2418 | |
| 2419 | p0 = vlib_get_buffer (vm, pi0); |
| 2420 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2421 | adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2422 | |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2423 | adj0 = adj_get (adj_index0); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2424 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2425 | ip0 = vlib_buffer_get_current (p0); |
| 2426 | |
| 2427 | error0 = IP4_ERROR_NONE; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2428 | next0 = IP4_REWRITE_NEXT_DROP; /* drop on error */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2429 | |
| 2430 | /* Decrement TTL & update checksum. */ |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2431 | if (PREDICT_TRUE (!(p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2432 | { |
| 2433 | i32 ttl0 = ip0->ttl; |
| 2434 | |
| 2435 | checksum0 = ip0->checksum + clib_host_to_net_u16 (0x0100); |
| 2436 | |
| 2437 | checksum0 += checksum0 >= 0xffff; |
| 2438 | |
| 2439 | ip0->checksum = checksum0; |
| 2440 | |
| 2441 | ASSERT (ip0->ttl > 0); |
| 2442 | |
| 2443 | ttl0 -= 1; |
| 2444 | |
| 2445 | ip0->ttl = ttl0; |
| 2446 | |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 2447 | ASSERT ((ip0->checksum == ip4_header_checksum (ip0)) || |
Damjan Marion | fb3288f | 2017-07-19 15:07:10 +0200 | [diff] [blame] | 2448 | (p0->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2449 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2450 | if (PREDICT_FALSE (ttl0 <= 0)) |
| 2451 | { |
| 2452 | /* |
| 2453 | * If the ttl drops below 1 when forwarding, generate |
| 2454 | * an ICMP response. |
| 2455 | */ |
| 2456 | error0 = IP4_ERROR_TIME_EXPIRED; |
| 2457 | next0 = IP4_REWRITE_NEXT_ICMP_ERROR; |
| 2458 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 2459 | icmp4_error_set_vnet_buffer (p0, ICMP4_time_exceeded, |
| 2460 | ICMP4_time_exceeded_ttl_exceeded_in_transit, |
| 2461 | 0); |
| 2462 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2463 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2464 | else |
| 2465 | { |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 2466 | p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2467 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2468 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2469 | if (do_counters) |
| 2470 | vlib_prefetch_combined_counter (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2471 | thread_index, adj_index0); |
Neale Ranns | 044183f | 2017-01-24 01:34:25 -0800 | [diff] [blame] | 2472 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2473 | /* Guess we are only writing on simple Ethernet header. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2474 | vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t)); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2475 | if (is_mcast) |
| 2476 | { |
| 2477 | /* |
| 2478 | * copy bytes from the IP address into the MAC rewrite |
| 2479 | */ |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 2480 | vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK, |
| 2481 | adj0-> |
| 2482 | rewrite_header.dst_mcast_offset, |
| 2483 | &ip0->dst_address.as_u32, |
| 2484 | (u8 *) ip0); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2485 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2486 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2487 | /* Update packet buffer attributes/set output interface. */ |
| 2488 | rw_len0 = adj0[0].rewrite_header.data_bytes; |
| 2489 | vnet_buffer (p0)->ip.save_rewrite_length = rw_len0; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2490 | |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2491 | if (do_counters) |
| 2492 | vlib_increment_combined_counter |
| 2493 | (&adjacency_counters, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2494 | thread_index, adj_index0, 1, |
Neale Ranns | 1bd0109 | 2017-03-15 15:41:17 -0400 | [diff] [blame] | 2495 | vlib_buffer_length_in_chain (vm, p0) + rw_len0); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2496 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2497 | /* Check MTU of outgoing interface. */ |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 2498 | ip4_mtu_check (p0, clib_net_to_host_u16 (ip0->length), |
| 2499 | adj0[0].rewrite_header.max_l3_packet_bytes, |
| 2500 | ip0->flags_and_fragment_offset & |
| 2501 | clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT), |
| 2502 | &next0, &error0); |
| 2503 | |
Neale Ranns | cf3561b | 2017-12-13 01:44:25 -0800 | [diff] [blame] | 2504 | if (is_mcast) |
| 2505 | { |
| 2506 | error0 = ((adj0[0].rewrite_header.sw_if_index == |
| 2507 | vnet_buffer (p0)->sw_if_index[VLIB_RX]) ? |
| 2508 | IP4_ERROR_SAME_INTERFACE : error0); |
| 2509 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2510 | p0->error = error_node->errors[error0]; |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 2511 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2512 | /* Don't adjust the buffer for ttl issue; icmp-error node wants |
| 2513 | * to see the IP headerr */ |
| 2514 | if (PREDICT_TRUE (error0 == IP4_ERROR_NONE)) |
| 2515 | { |
| 2516 | p0->current_data -= rw_len0; |
| 2517 | p0->current_length += rw_len0; |
| 2518 | tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index; |
Chris Luke | 816f3e1 | 2016-06-14 16:24:47 -0400 | [diff] [blame] | 2519 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2520 | vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0; |
| 2521 | next0 = adj0[0].rewrite_header.next_index; |
Dave Barach | 5331c72 | 2016-08-17 11:54:30 -0400 | [diff] [blame] | 2522 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 2523 | if (is_midchain) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2524 | { |
Neale Ranns | db14f5a | 2018-01-29 10:43:33 -0800 | [diff] [blame] | 2525 | adj0->sub_type.midchain.fixup_func |
| 2526 | (vm, adj0, p0, adj0->sub_type.midchain.fixup_data); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 2527 | } |
| 2528 | |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 2529 | if (PREDICT_FALSE |
| 2530 | (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)) |
| 2531 | vnet_feature_arc_start (lm->output_feature_arc_index, |
| 2532 | tx_sw_if_index0, &next0, p0); |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 2533 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2534 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2535 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2536 | from += 1; |
| 2537 | n_left_from -= 1; |
| 2538 | to_next += 1; |
| 2539 | n_left_to_next -= 1; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2540 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2541 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 2542 | to_next, n_left_to_next, |
| 2543 | pi0, next0); |
| 2544 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2545 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2546 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2547 | } |
| 2548 | |
| 2549 | /* Need to do trace after rewrites to pick up new packet data. */ |
| 2550 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2551 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2552 | |
| 2553 | return frame->n_vectors; |
| 2554 | } |
| 2555 | |
Dave Barach | 132d51d | 2016-07-07 10:10:17 -0400 | [diff] [blame] | 2556 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2557 | /** @brief IPv4 rewrite node. |
| 2558 | @node ip4-rewrite |
Dave Barach | 132d51d | 2016-07-07 10:10:17 -0400 | [diff] [blame] | 2559 | |
| 2560 | This is the IPv4 transit-rewrite node: decrement TTL, fix the ipv4 |
| 2561 | header checksum, fetch the ip adjacency, check the outbound mtu, |
| 2562 | apply the adjacency rewrite, and send pkts to the adjacency |
| 2563 | rewrite header's rewrite_next_index. |
| 2564 | |
| 2565 | @param vm vlib_main_t corresponding to the current thread |
| 2566 | @param node vlib_node_runtime_t |
| 2567 | @param frame vlib_frame_t whose contents should be dispatched |
| 2568 | |
| 2569 | @par Graph mechanics: buffer metadata, next index usage |
| 2570 | |
| 2571 | @em Uses: |
| 2572 | - <code>vnet_buffer(b)->ip.adj_index[VLIB_TX]</code> |
| 2573 | - the rewrite adjacency index |
| 2574 | - <code>adj->lookup_next_index</code> |
| 2575 | - Must be IP_LOOKUP_NEXT_REWRITE or IP_LOOKUP_NEXT_ARP, otherwise |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2576 | the packet will be dropped. |
Dave Barach | 132d51d | 2016-07-07 10:10:17 -0400 | [diff] [blame] | 2577 | - <code>adj->rewrite_header</code> |
| 2578 | - Rewrite string length, rewrite string, next_index |
| 2579 | |
| 2580 | @em Sets: |
| 2581 | - <code>b->current_data, b->current_length</code> |
| 2582 | - Updated net of applying the rewrite string |
| 2583 | |
| 2584 | <em>Next Indices:</em> |
| 2585 | - <code> adj->rewrite_header.next_index </code> |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 2586 | or @c ip4-drop |
Dave Barach | 132d51d | 2016-07-07 10:10:17 -0400 | [diff] [blame] | 2587 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2588 | static uword |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 2589 | ip4_rewrite (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2590 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2591 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2592 | if (adj_are_counters_enabled ()) |
| 2593 | return ip4_rewrite_inline (vm, node, frame, 1, 0, 0); |
| 2594 | else |
| 2595 | return ip4_rewrite_inline (vm, node, frame, 0, 0, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2596 | } |
| 2597 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2598 | static uword |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2599 | ip4_rewrite_bcast (vlib_main_t * vm, |
| 2600 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 2601 | { |
| 2602 | if (adj_are_counters_enabled ()) |
| 2603 | return ip4_rewrite_inline (vm, node, frame, 1, 0, 0); |
| 2604 | else |
| 2605 | return ip4_rewrite_inline (vm, node, frame, 0, 0, 0); |
| 2606 | } |
| 2607 | |
| 2608 | static uword |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2609 | ip4_midchain (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2610 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2611 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2612 | if (adj_are_counters_enabled ()) |
| 2613 | return ip4_rewrite_inline (vm, node, frame, 1, 1, 0); |
| 2614 | else |
| 2615 | return ip4_rewrite_inline (vm, node, frame, 0, 1, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2616 | } |
| 2617 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2618 | static uword |
| 2619 | ip4_rewrite_mcast (vlib_main_t * vm, |
| 2620 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2621 | { |
Neale Ranns | 9c6a613 | 2017-02-21 05:33:14 -0800 | [diff] [blame] | 2622 | if (adj_are_counters_enabled ()) |
| 2623 | return ip4_rewrite_inline (vm, node, frame, 1, 0, 1); |
| 2624 | else |
| 2625 | return ip4_rewrite_inline (vm, node, frame, 0, 0, 1); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2626 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2627 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2628 | static uword |
| 2629 | ip4_mcast_midchain (vlib_main_t * vm, |
| 2630 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 2631 | { |
| 2632 | if (adj_are_counters_enabled ()) |
| 2633 | return ip4_rewrite_inline (vm, node, frame, 1, 1, 1); |
| 2634 | else |
| 2635 | return ip4_rewrite_inline (vm, node, frame, 0, 1, 1); |
| 2636 | } |
| 2637 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2638 | /* *INDENT-OFF* */ |
| 2639 | VLIB_REGISTER_NODE (ip4_rewrite_node) = { |
| 2640 | .function = ip4_rewrite, |
| 2641 | .name = "ip4-rewrite", |
| 2642 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2643 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2644 | .format_trace = format_ip4_rewrite_trace, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2645 | |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2646 | .n_next_nodes = IP4_REWRITE_N_NEXT, |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2647 | .next_nodes = { |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 2648 | [IP4_REWRITE_NEXT_DROP] = "ip4-drop", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2649 | [IP4_REWRITE_NEXT_ICMP_ERROR] = "ip4-icmp-error", |
Ole Troan | 313f7e2 | 2018-04-10 16:02:51 +0200 | [diff] [blame] | 2650 | [IP4_REWRITE_NEXT_FRAGMENT] = "ip4-frag", |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2651 | }, |
| 2652 | }; |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2653 | |
| 2654 | VLIB_REGISTER_NODE (ip4_rewrite_bcast_node) = { |
Matthew Smith | e375067 | 2018-07-20 11:52:05 -0500 | [diff] [blame] | 2655 | .function = ip4_rewrite_bcast, |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 2656 | .name = "ip4-rewrite-bcast", |
| 2657 | .vector_size = sizeof (u32), |
| 2658 | |
| 2659 | .format_trace = format_ip4_rewrite_trace, |
| 2660 | .sibling_of = "ip4-rewrite", |
| 2661 | }; |
| 2662 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_rewrite_bcast_node, ip4_rewrite_bcast) |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2663 | |
| 2664 | VLIB_REGISTER_NODE (ip4_rewrite_mcast_node) = { |
| 2665 | .function = ip4_rewrite_mcast, |
| 2666 | .name = "ip4-rewrite-mcast", |
| 2667 | .vector_size = sizeof (u32), |
| 2668 | |
| 2669 | .format_trace = format_ip4_rewrite_trace, |
| 2670 | .sibling_of = "ip4-rewrite", |
| 2671 | }; |
| 2672 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_rewrite_mcast_node, ip4_rewrite_mcast) |
| 2673 | |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2674 | VLIB_REGISTER_NODE (ip4_mcast_midchain_node, static) = { |
| 2675 | .function = ip4_mcast_midchain, |
| 2676 | .name = "ip4-mcast-midchain", |
| 2677 | .vector_size = sizeof (u32), |
| 2678 | |
| 2679 | .format_trace = format_ip4_rewrite_trace, |
| 2680 | .sibling_of = "ip4-rewrite", |
| 2681 | }; |
| 2682 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_mcast_midchain_node, ip4_mcast_midchain) |
| 2683 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2684 | VLIB_REGISTER_NODE (ip4_midchain_node) = { |
| 2685 | .function = ip4_midchain, |
| 2686 | .name = "ip4-midchain", |
| 2687 | .vector_size = sizeof (u32), |
| 2688 | .format_trace = format_ip4_forward_next_trace, |
| 2689 | .sibling_of = "ip4-rewrite", |
| 2690 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2691 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_midchain_node, ip4_midchain); |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 2692 | /* *INDENT-ON */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 2693 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2694 | int |
| 2695 | ip4_lookup_validate (ip4_address_t * a, u32 fib_index0) |
| 2696 | { |
| 2697 | ip4_fib_mtrie_t *mtrie0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2698 | ip4_fib_mtrie_leaf_t leaf0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2699 | u32 lbi0; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2700 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2701 | mtrie0 = &ip4_fib_get (fib_index0)->mtrie; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2702 | |
Neale Ranns | 04a75e3 | 2017-03-23 06:46:01 -0700 | [diff] [blame] | 2703 | leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2704 | leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, a, 2); |
| 2705 | leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, a, 3); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2706 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 2707 | lbi0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2708 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2709 | return lbi0 == ip4_fib_table_lookup_lb (ip4_fib_get (fib_index0), a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2710 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2711 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2712 | static clib_error_t * |
| 2713 | test_lookup_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2714 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2715 | { |
Billy McFall | 309fe06 | 2016-10-14 07:37:33 -0400 | [diff] [blame] | 2716 | ip4_fib_t *fib; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2717 | u32 table_id = 0; |
| 2718 | f64 count = 1; |
| 2719 | u32 n; |
| 2720 | int i; |
| 2721 | ip4_address_t ip4_base_address; |
| 2722 | u64 errors = 0; |
| 2723 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2724 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2725 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2726 | if (unformat (input, "table %d", &table_id)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2727 | { |
| 2728 | /* Make sure the entry exists. */ |
| 2729 | fib = ip4_fib_get (table_id); |
| 2730 | if ((fib) && (fib->index != table_id)) |
| 2731 | return clib_error_return (0, "<fib-index> %d does not exist", |
| 2732 | table_id); |
| 2733 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2734 | else if (unformat (input, "count %f", &count)) |
| 2735 | ; |
| 2736 | |
| 2737 | else if (unformat (input, "%U", |
| 2738 | unformat_ip4_address, &ip4_base_address)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2739 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2740 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2741 | return clib_error_return (0, "unknown input `%U'", |
| 2742 | format_unformat_error, input); |
| 2743 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2744 | |
| 2745 | n = count; |
| 2746 | |
| 2747 | for (i = 0; i < n; i++) |
| 2748 | { |
| 2749 | if (!ip4_lookup_validate (&ip4_base_address, table_id)) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2750 | errors++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2751 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2752 | ip4_base_address.as_u32 = |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2753 | clib_host_to_net_u32 (1 + |
| 2754 | clib_net_to_host_u32 (ip4_base_address.as_u32)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2755 | } |
| 2756 | |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2757 | if (errors) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2758 | vlib_cli_output (vm, "%llu errors out of %d lookups\n", errors, n); |
| 2759 | else |
| 2760 | vlib_cli_output (vm, "No errors in %d lookups\n", n); |
| 2761 | |
| 2762 | return 0; |
| 2763 | } |
| 2764 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2765 | /*? |
| 2766 | * Perform a lookup of an IPv4 Address (or range of addresses) in the |
| 2767 | * given FIB table to determine if there is a conflict with the |
| 2768 | * adjacency table. The fib-id can be determined by using the |
| 2769 | * '<em>show ip fib</em>' command. If fib-id is not entered, default value |
| 2770 | * of 0 is used. |
| 2771 | * |
| 2772 | * @todo This command uses fib-id, other commands use table-id (not |
| 2773 | * just a name, they are different indexes). Would like to change this |
| 2774 | * to table-id for consistency. |
| 2775 | * |
| 2776 | * @cliexpar |
| 2777 | * Example of how to run the test lookup command: |
| 2778 | * @cliexstart{test lookup 172.16.1.1 table 1 count 2} |
| 2779 | * No errors in 2 lookups |
| 2780 | * @cliexend |
| 2781 | ?*/ |
| 2782 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2783 | VLIB_CLI_COMMAND (lookup_test_command, static) = |
| 2784 | { |
| 2785 | .path = "test lookup", |
| 2786 | .short_help = "test lookup <ipv4-addr> [table <fib-id>] [count <nn>]", |
| 2787 | .function = test_lookup_command_fn, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2788 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2789 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2790 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2791 | int |
| 2792 | vnet_set_ip4_flow_hash (u32 table_id, u32 flow_hash_config) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2793 | { |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2794 | u32 fib_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2795 | |
Neale Ranns | 107e7d4 | 2017-04-11 09:55:19 -0700 | [diff] [blame] | 2796 | fib_index = fib_table_find (FIB_PROTOCOL_IP4, table_id); |
| 2797 | |
| 2798 | if (~0 == fib_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2799 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 2800 | |
Neale Ranns | 227038a | 2017-04-21 01:07:59 -0700 | [diff] [blame] | 2801 | fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP4, |
| 2802 | flow_hash_config); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2803 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2804 | return 0; |
| 2805 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2806 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2807 | static clib_error_t * |
| 2808 | set_ip_flow_hash_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2809 | unformat_input_t * input, |
| 2810 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2811 | { |
| 2812 | int matched = 0; |
| 2813 | u32 table_id = 0; |
| 2814 | u32 flow_hash_config = 0; |
| 2815 | int rv; |
| 2816 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2817 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 2818 | { |
| 2819 | if (unformat (input, "table %d", &table_id)) |
| 2820 | matched = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2821 | #define _(a,v) \ |
| 2822 | else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;} |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2823 | foreach_flow_hash_bit |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2824 | #undef _ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2825 | else |
| 2826 | break; |
| 2827 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2828 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2829 | if (matched == 0) |
| 2830 | return clib_error_return (0, "unknown input `%U'", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2831 | format_unformat_error, input); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2832 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2833 | rv = vnet_set_ip4_flow_hash (table_id, flow_hash_config); |
| 2834 | switch (rv) |
| 2835 | { |
| 2836 | case 0: |
| 2837 | break; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2838 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2839 | case VNET_API_ERROR_NO_SUCH_FIB: |
| 2840 | return clib_error_return (0, "no such FIB table %d", table_id); |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2841 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2842 | default: |
| 2843 | clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config); |
| 2844 | break; |
| 2845 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2846 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2847 | return 0; |
| 2848 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2849 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2850 | /*? |
| 2851 | * Configure the set of IPv4 fields used by the flow hash. |
| 2852 | * |
| 2853 | * @cliexpar |
| 2854 | * Example of how to set the flow hash on a given table: |
| 2855 | * @cliexcmd{set ip flow-hash table 7 dst sport dport proto} |
| 2856 | * Example of display the configured flow hash: |
| 2857 | * @cliexstart{show ip fib} |
Billy McFall | ebb9a6a | 2016-10-17 11:35:32 -0400 | [diff] [blame] | 2858 | * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto |
| 2859 | * 0.0.0.0/0 |
| 2860 | * unicast-ip4-chain |
| 2861 | * [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]] |
| 2862 | * [0] [@0]: dpo-drop ip6 |
| 2863 | * 0.0.0.0/32 |
| 2864 | * unicast-ip4-chain |
| 2865 | * [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]] |
| 2866 | * [0] [@0]: dpo-drop ip6 |
| 2867 | * 224.0.0.0/8 |
| 2868 | * unicast-ip4-chain |
| 2869 | * [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]] |
| 2870 | * [0] [@0]: dpo-drop ip6 |
| 2871 | * 6.0.1.2/32 |
| 2872 | * unicast-ip4-chain |
| 2873 | * [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]] |
| 2874 | * [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0 |
| 2875 | * 7.0.0.1/32 |
| 2876 | * unicast-ip4-chain |
| 2877 | * [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]] |
| 2878 | * [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0 |
| 2879 | * [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0 |
| 2880 | * [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0 |
| 2881 | * [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0 |
| 2882 | * 240.0.0.0/8 |
| 2883 | * unicast-ip4-chain |
| 2884 | * [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]] |
| 2885 | * [0] [@0]: dpo-drop ip6 |
| 2886 | * 255.255.255.255/32 |
| 2887 | * unicast-ip4-chain |
| 2888 | * [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]] |
| 2889 | * [0] [@0]: dpo-drop ip6 |
| 2890 | * ipv4-VRF:7, fib_index 1, flow hash: dst sport dport proto |
| 2891 | * 0.0.0.0/0 |
| 2892 | * unicast-ip4-chain |
| 2893 | * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]] |
| 2894 | * [0] [@0]: dpo-drop ip6 |
| 2895 | * 0.0.0.0/32 |
| 2896 | * unicast-ip4-chain |
| 2897 | * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]] |
| 2898 | * [0] [@0]: dpo-drop ip6 |
| 2899 | * 172.16.1.0/24 |
| 2900 | * unicast-ip4-chain |
| 2901 | * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]] |
| 2902 | * [0] [@4]: ipv4-glean: af_packet0 |
| 2903 | * 172.16.1.1/32 |
| 2904 | * unicast-ip4-chain |
| 2905 | * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]] |
| 2906 | * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0 |
| 2907 | * 172.16.1.2/32 |
| 2908 | * unicast-ip4-chain |
| 2909 | * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]] |
| 2910 | * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36 |
| 2911 | * 172.16.2.0/24 |
| 2912 | * unicast-ip4-chain |
| 2913 | * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]] |
| 2914 | * [0] [@4]: ipv4-glean: af_packet1 |
| 2915 | * 172.16.2.1/32 |
| 2916 | * unicast-ip4-chain |
| 2917 | * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]] |
| 2918 | * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1 |
| 2919 | * 224.0.0.0/8 |
| 2920 | * unicast-ip4-chain |
| 2921 | * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]] |
| 2922 | * [0] [@0]: dpo-drop ip6 |
| 2923 | * 240.0.0.0/8 |
| 2924 | * unicast-ip4-chain |
| 2925 | * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]] |
| 2926 | * [0] [@0]: dpo-drop ip6 |
| 2927 | * 255.255.255.255/32 |
| 2928 | * unicast-ip4-chain |
| 2929 | * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]] |
| 2930 | * [0] [@0]: dpo-drop ip6 |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2931 | * @cliexend |
| 2932 | ?*/ |
| 2933 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2934 | VLIB_CLI_COMMAND (set_ip_flow_hash_command, static) = |
| 2935 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2936 | .path = "set ip flow-hash", |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2937 | .short_help = |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2938 | "set ip flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2939 | .function = set_ip_flow_hash_command_fn, |
| 2940 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 2941 | /* *INDENT-ON* */ |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 2942 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2943 | int |
| 2944 | vnet_set_ip4_classify_intfc (vlib_main_t * vm, u32 sw_if_index, |
| 2945 | u32 table_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2946 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2947 | vnet_main_t *vnm = vnet_get_main (); |
| 2948 | vnet_interface_main_t *im = &vnm->interface_main; |
| 2949 | ip4_main_t *ipm = &ip4_main; |
| 2950 | ip_lookup_main_t *lm = &ipm->lookup_main; |
| 2951 | vnet_classify_main_t *cm = &vnet_classify_main; |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2952 | ip4_address_t *if_addr; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2953 | |
| 2954 | if (pool_is_free_index (im->sw_interfaces, sw_if_index)) |
| 2955 | return VNET_API_ERROR_NO_MATCHING_INTERFACE; |
| 2956 | |
| 2957 | if (table_index != ~0 && pool_is_free_index (cm->tables, table_index)) |
| 2958 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
| 2959 | |
| 2960 | vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2961 | lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2962 | |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2963 | if_addr = ip4_interface_first_address (ipm, sw_if_index, NULL); |
| 2964 | |
| 2965 | if (NULL != if_addr) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2966 | { |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2967 | fib_prefix_t pfx = { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2968 | .fp_len = 32, |
| 2969 | .fp_proto = FIB_PROTOCOL_IP4, |
| 2970 | .fp_addr.ip4 = *if_addr, |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2971 | }; |
| 2972 | u32 fib_index; |
| 2973 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2974 | fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4, |
| 2975 | sw_if_index); |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2976 | |
| 2977 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2978 | if (table_index != (u32) ~ 0) |
| 2979 | { |
| 2980 | dpo_id_t dpo = DPO_INVALID; |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2981 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2982 | dpo_set (&dpo, |
| 2983 | DPO_CLASSIFY, |
| 2984 | DPO_PROTO_IP4, |
| 2985 | classify_dpo_create (DPO_PROTO_IP4, table_index)); |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2986 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2987 | fib_table_entry_special_dpo_add (fib_index, |
| 2988 | &pfx, |
| 2989 | FIB_SOURCE_CLASSIFY, |
| 2990 | FIB_ENTRY_FLAG_NONE, &dpo); |
| 2991 | dpo_reset (&dpo); |
| 2992 | } |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2993 | else |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 2994 | { |
| 2995 | fib_table_entry_special_remove (fib_index, |
| 2996 | &pfx, FIB_SOURCE_CLASSIFY); |
| 2997 | } |
| 2998 | } |
Neale Ranns | df089a8 | 2016-10-02 16:39:06 +0100 | [diff] [blame] | 2999 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3000 | return 0; |
| 3001 | } |
| 3002 | |
| 3003 | static clib_error_t * |
| 3004 | set_ip_classify_command_fn (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3005 | unformat_input_t * input, |
| 3006 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3007 | { |
| 3008 | u32 table_index = ~0; |
| 3009 | int table_index_set = 0; |
| 3010 | u32 sw_if_index = ~0; |
| 3011 | int rv; |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3012 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3013 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3014 | { |
| 3015 | if (unformat (input, "table-index %d", &table_index)) |
| 3016 | table_index_set = 1; |
| 3017 | else if (unformat (input, "intfc %U", unformat_vnet_sw_interface, |
| 3018 | vnet_get_main (), &sw_if_index)) |
| 3019 | ; |
| 3020 | else |
| 3021 | break; |
| 3022 | } |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3023 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3024 | if (table_index_set == 0) |
| 3025 | return clib_error_return (0, "classify table-index must be specified"); |
| 3026 | |
| 3027 | if (sw_if_index == ~0) |
| 3028 | return clib_error_return (0, "interface / subif must be specified"); |
| 3029 | |
| 3030 | rv = vnet_set_ip4_classify_intfc (vm, sw_if_index, table_index); |
| 3031 | |
| 3032 | switch (rv) |
| 3033 | { |
| 3034 | case 0: |
| 3035 | break; |
| 3036 | |
| 3037 | case VNET_API_ERROR_NO_MATCHING_INTERFACE: |
| 3038 | return clib_error_return (0, "No such interface"); |
| 3039 | |
| 3040 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 3041 | return clib_error_return (0, "No such classifier table"); |
| 3042 | } |
| 3043 | return 0; |
| 3044 | } |
| 3045 | |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 3046 | /*? |
| 3047 | * Assign a classification table to an interface. The classification |
| 3048 | * table is created using the '<em>classify table</em>' and '<em>classify session</em>' |
| 3049 | * commands. Once the table is create, use this command to filter packets |
| 3050 | * on an interface. |
| 3051 | * |
| 3052 | * @cliexpar |
| 3053 | * Example of how to assign a classification table to an interface: |
| 3054 | * @cliexcmd{set ip classify intfc GigabitEthernet2/0/0 table-index 1} |
| 3055 | ?*/ |
| 3056 | /* *INDENT-OFF* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3057 | VLIB_CLI_COMMAND (set_ip_classify_command, static) = |
| 3058 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3059 | .path = "set ip classify", |
Dave Barach | 75fc854 | 2016-10-11 16:16:02 -0400 | [diff] [blame] | 3060 | .short_help = |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 3061 | "set ip classify intfc <interface> table-index <classify-idx>", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3062 | .function = set_ip_classify_command_fn, |
| 3063 | }; |
Billy McFall | 0683c9c | 2016-10-13 08:27:31 -0400 | [diff] [blame] | 3064 | /* *INDENT-ON* */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3065 | |
Neale Ranns | 1ec3652 | 2017-11-29 05:20:37 -0800 | [diff] [blame] | 3066 | static clib_error_t * |
| 3067 | ip4_config (vlib_main_t * vm, unformat_input_t * input) |
| 3068 | { |
| 3069 | ip4_main_t *im = &ip4_main; |
| 3070 | uword heapsize = 0; |
| 3071 | |
| 3072 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3073 | { |
| 3074 | if (unformat (input, "heap-size %U", unformat_memory_size, &heapsize)) |
| 3075 | ; |
| 3076 | else |
| 3077 | return clib_error_return (0, |
| 3078 | "invalid heap-size parameter `%U'", |
| 3079 | format_unformat_error, input); |
| 3080 | } |
| 3081 | |
| 3082 | im->mtrie_heap_size = heapsize; |
| 3083 | |
| 3084 | return 0; |
| 3085 | } |
| 3086 | |
| 3087 | VLIB_EARLY_CONFIG_FUNCTION (ip4_config, "ip"); |
| 3088 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 3089 | /* |
| 3090 | * fd.io coding-style-patch-verification: ON |
| 3091 | * |
| 3092 | * Local Variables: |
| 3093 | * eval: (c-set-style "gnu") |
| 3094 | * End: |
| 3095 | */ |