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