blob: 43213fe8ace6d58b5bd23269529406f5e212d750 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ip/ip4_forward.c: IP v4 forwarding
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vnet/vnet.h>
41#include <vnet/ip/ip.h>
Ole Troan313f7e22018-04-10 16:02:51 +020042#include <vnet/ip/ip_frag.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010043#include <vnet/ethernet/ethernet.h> /* for ethernet_header_t */
44#include <vnet/ethernet/arp_packet.h> /* for ethernet_arp_header_t */
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#include <vnet/ppp/ppp.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010046#include <vnet/srp/srp.h> /* for srp_hw_interface_class */
Dave Barachd7cb1b52016-12-09 09:52:16 -050047#include <vnet/api_errno.h> /* for API error numbers */
48#include <vnet/fib/fib_table.h> /* for FIB table and entry creation */
49#include <vnet/fib/fib_entry.h> /* for FIB table and entry creation */
50#include <vnet/fib/fib_urpf_list.h> /* for FIB uRPF check */
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051#include <vnet/fib/ip4_fib.h>
52#include <vnet/dpo/load_balance.h>
Neale Rannsf12a83f2017-04-18 09:09:40 -070053#include <vnet/dpo/load_balance_map.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010054#include <vnet/dpo/classify_dpo.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000055#include <vnet/mfib/mfib_table.h> /* for mFIB table and entry creation */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Vijayabhaskar Katamreddyacbde662018-01-23 13:39:40 -080057#include <vnet/ip/ip4_forward.h>
Neale Ranns25edf142019-03-22 08:12:48 +000058#include <vnet/interface_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
Chris Luke8e5b0412016-07-26 13:06:10 -040060/** @brief IPv4 lookup node.
Dave Barach9770e202016-07-06 10:29:27 -040061 @node ip4-lookup
62
63 This is the main IPv4 lookup dispatch node.
64
65 @param vm vlib_main_t corresponding to the current thread
66 @param node vlib_node_runtime_t
67 @param frame vlib_frame_t whose contents should be dispatched
68
69 @par Graph mechanics: buffer metadata, next index usage
70
71 @em Uses:
72 - <code>vnet_buffer(b)->sw_if_index[VLIB_RX]</code>
73 - Indicates the @c sw_if_index value of the interface that the
74 packet was received on.
75 - <code>vnet_buffer(b)->sw_if_index[VLIB_TX]</code>
76 - When the value is @c ~0 then the node performs a longest prefix
77 match (LPM) for the packet destination address in the FIB attached
78 to the receive interface.
79 - Otherwise perform LPM for the packet destination address in the
80 indicated FIB. In this case <code>[VLIB_TX]</code> is a FIB index
81 value (0, 1, ...) and not a VRF id.
82
83 @em Sets:
84 - <code>vnet_buffer(b)->ip.adj_index[VLIB_TX]</code>
85 - The lookup result adjacency index.
86
87 <em>Next Index:</em>
88 - Dispatches the packet to the node index found in
89 ip_adjacency_t @c adj->lookup_next_index
90 (where @c adj is the lookup result adjacency).
91*/
Damjan Marionc9dad5d2018-08-11 22:10:29 +020092VLIB_NODE_FN (ip4_lookup_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
93 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -070094{
Damjan Marionaca64c92016-04-13 09:48:56 +020095 return ip4_lookup_inline (vm, node, frame,
Dave Barachd7cb1b52016-12-09 09:52:16 -050096 /* lookup_for_responses_to_locally_received_packets */
97 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99}
100
Dave Barachd7cb1b52016-12-09 09:52:16 -0500101static u8 *format_ip4_lookup_trace (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100102
Neale Rannsf8686322017-11-29 02:39:53 -0800103/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500104VLIB_REGISTER_NODE (ip4_lookup_node) =
105{
Neale Rannsf8686322017-11-29 02:39:53 -0800106 .name = "ip4-lookup",
107 .vector_size = sizeof (u32),
108 .format_trace = format_ip4_lookup_trace,
109 .n_next_nodes = IP_LOOKUP_N_NEXT,
110 .next_nodes = IP4_LOOKUP_NEXT_NODES,
111};
112/* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100113
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200114VLIB_NODE_FN (ip4_load_balance_node) (vlib_main_t * vm,
115 vlib_node_runtime_t * node,
116 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500118 vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters;
Neale Ranns3ce72b22019-05-27 08:21:32 -0400119 u32 n_left, *from;
Damjan Marion067cd622018-07-11 12:47:43 +0200120 u32 thread_index = vm->thread_index;
Zhiyong Yang6fec8ea2019-05-05 22:52:43 +0800121 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Neale Ranns3ce72b22019-05-27 08:21:32 -0400122 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100124 from = vlib_frame_vector_args (frame);
Neale Ranns3ce72b22019-05-27 08:21:32 -0400125 n_left = frame->n_vectors;
126 next = nexts;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100127
Neale Ranns3ce72b22019-05-27 08:21:32 -0400128 vlib_get_buffers (vm, from, bufs, n_left);
129
130 while (n_left >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400132 const load_balance_t *lb0, *lb1;
133 const ip4_header_t *ip0, *ip1;
134 u32 lbi0, hc0, lbi1, hc1;
135 const dpo_id_t *dpo0, *dpo1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100136
Neale Ranns3ce72b22019-05-27 08:21:32 -0400137 /* Prefetch next iteration. */
138 {
139 vlib_prefetch_buffer_header (b[2], LOAD);
140 vlib_prefetch_buffer_header (b[3], LOAD);
141
142 CLIB_PREFETCH (b[2]->data, sizeof (ip0[0]), LOAD);
143 CLIB_PREFETCH (b[3]->data, sizeof (ip0[0]), LOAD);
144 }
145
146 ip0 = vlib_buffer_get_current (b[0]);
147 ip1 = vlib_buffer_get_current (b[1]);
148 lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
149 lbi1 = vnet_buffer (b[1])->ip.adj_index[VLIB_TX];
150
151 lb0 = load_balance_get (lbi0);
152 lb1 = load_balance_get (lbi1);
153
154 /*
155 * this node is for via FIBs we can re-use the hash value from the
156 * to node if present.
157 * We don't want to use the same hash value at each level in the recursion
158 * graph as that would lead to polarisation
159 */
160 hc0 = hc1 = 0;
161
162 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500163 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400164 if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500165 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400166 hc0 = vnet_buffer (b[0])->ip.flow_hash =
167 vnet_buffer (b[0])->ip.flow_hash >> 1;
Neale Rannsf12a83f2017-04-18 09:09:40 -0700168 }
169 else
170 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400171 hc0 = vnet_buffer (b[0])->ip.flow_hash =
172 ip4_compute_flow_hash (ip0, lb0->lb_hash_config);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173 }
Neale Ranns3ce72b22019-05-27 08:21:32 -0400174 dpo0 = load_balance_get_fwd_bucket
175 (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
176 }
177 else
178 {
179 dpo0 = load_balance_get_bucket_i (lb0, 0);
180 }
181 if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
182 {
183 if (PREDICT_TRUE (vnet_buffer (b[1])->ip.flow_hash))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400185 hc1 = vnet_buffer (b[1])->ip.flow_hash =
186 vnet_buffer (b[1])->ip.flow_hash >> 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500187 }
Neale Rannsf12a83f2017-04-18 09:09:40 -0700188 else
189 {
Neale Ranns3ce72b22019-05-27 08:21:32 -0400190 hc1 = vnet_buffer (b[1])->ip.flow_hash =
191 ip4_compute_flow_hash (ip1, lb1->lb_hash_config);
Neale Rannsf12a83f2017-04-18 09:09:40 -0700192 }
Neale Ranns3ce72b22019-05-27 08:21:32 -0400193 dpo1 = load_balance_get_fwd_bucket
194 (lb1, (hc1 & (lb1->lb_n_buckets_minus_1)));
195 }
196 else
197 {
198 dpo1 = load_balance_get_bucket_i (lb1, 0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500199 }
Neale Ranns2be95c12016-11-19 13:50:04 +0000200
Neale Ranns3ce72b22019-05-27 08:21:32 -0400201 next[0] = dpo0->dpoi_next_node;
202 next[1] = dpo1->dpoi_next_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100203
Neale Ranns3ce72b22019-05-27 08:21:32 -0400204 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
205 vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100206
Neale Ranns3ce72b22019-05-27 08:21:32 -0400207 vlib_increment_combined_counter
208 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
209 vlib_increment_combined_counter
210 (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, b[1]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100211
Neale Ranns3ce72b22019-05-27 08:21:32 -0400212 b += 2;
213 next += 2;
214 n_left -= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 }
216
Neale Ranns3ce72b22019-05-27 08:21:32 -0400217 while (n_left > 0)
218 {
219 const load_balance_t *lb0;
220 const ip4_header_t *ip0;
221 const dpo_id_t *dpo0;
222 u32 lbi0, hc0;
223
224 ip0 = vlib_buffer_get_current (b[0]);
225 lbi0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
226
227 lb0 = load_balance_get (lbi0);
228
229 hc0 = 0;
230 if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
231 {
232 if (PREDICT_TRUE (vnet_buffer (b[0])->ip.flow_hash))
233 {
234 hc0 = vnet_buffer (b[0])->ip.flow_hash =
235 vnet_buffer (b[0])->ip.flow_hash >> 1;
236 }
237 else
238 {
239 hc0 = vnet_buffer (b[0])->ip.flow_hash =
240 ip4_compute_flow_hash (ip0, lb0->lb_hash_config);
241 }
242 dpo0 = load_balance_get_fwd_bucket
243 (lb0, (hc0 & (lb0->lb_n_buckets_minus_1)));
244 }
245 else
246 {
247 dpo0 = load_balance_get_bucket_i (lb0, 0);
248 }
249
250 next[0] = dpo0->dpoi_next_node;
251 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
252
253 vlib_increment_combined_counter
254 (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, b[0]));
255
256 b += 1;
257 next += 1;
258 n_left -= 1;
259 }
260
261 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Neale Rannsa71844f2018-11-08 07:31:36 -0800262 if (node->flags & VLIB_NODE_FLAG_TRACE)
263 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
264
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100265 return frame->n_vectors;
266}
267
Neale Rannsf8686322017-11-29 02:39:53 -0800268/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269VLIB_REGISTER_NODE (ip4_load_balance_node) =
270{
Neale Rannsf8686322017-11-29 02:39:53 -0800271 .name = "ip4-load-balance",
272 .vector_size = sizeof (u32),
273 .sibling_of = "ip4-lookup",
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200274 .format_trace = format_ip4_lookup_trace,
Neale Rannsf8686322017-11-29 02:39:53 -0800275};
276/* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100277
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200278#ifndef CLIB_MARCH_VARIANT
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100279/* get first interface address */
280ip4_address_t *
281ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 ip_interface_address_t ** result_ia)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100283{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500284 ip_lookup_main_t *lm = &im->lookup_main;
285 ip_interface_address_t *ia = 0;
286 ip4_address_t *result = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100287
Neale Ranns32e1c012016-11-22 17:07:28 +0000288 /* *INDENT-OFF* */
289 foreach_ip_interface_address
290 (lm, ia, sw_if_index,
291 1 /* honor unnumbered */ ,
292 ({
293 ip4_address_t * a =
294 ip_interface_address_get_address (lm, ia);
295 result = a;
296 break;
297 }));
298 /* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100299 if (result_ia)
300 *result_ia = result ? ia : 0;
301 return result;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302}
303
304static void
Neale Ranns1855b8e2018-07-11 10:31:26 -0700305ip4_add_subnet_bcast_route (u32 fib_index,
306 fib_prefix_t *pfx,
307 u32 sw_if_index)
308{
309 vnet_sw_interface_flags_t iflags;
310
311 iflags = vnet_sw_interface_get_flags(vnet_get_main(), sw_if_index);
312
313 fib_table_entry_special_remove(fib_index,
314 pfx,
315 FIB_SOURCE_INTERFACE);
316
317 if (iflags & VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST)
318 {
319 fib_table_entry_update_one_path (fib_index, pfx,
320 FIB_SOURCE_INTERFACE,
321 FIB_ENTRY_FLAG_NONE,
322 DPO_PROTO_IP4,
323 /* No next-hop address */
324 &ADJ_BCAST_ADDR,
325 sw_if_index,
326 // invalid FIB index
327 ~0,
328 1,
329 // no out-label stack
330 NULL,
331 FIB_ROUTE_PATH_FLAG_NONE);
332 }
333 else
334 {
335 fib_table_entry_special_add(fib_index,
336 pfx,
337 FIB_SOURCE_INTERFACE,
338 (FIB_ENTRY_FLAG_DROP |
339 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT));
340 }
341}
342
343static void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344ip4_add_interface_routes (u32 sw_if_index,
345 ip4_main_t * im, u32 fib_index,
346 ip_interface_address_t * a)
347{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 ip_lookup_main_t *lm = &im->lookup_main;
349 ip4_address_t *address = ip_interface_address_get_address (lm, a);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100350 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 .fp_len = a->address_length,
352 .fp_proto = FIB_PROTOCOL_IP4,
353 .fp_addr.ip4 = *address,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100354 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355
Neale Ranns9a69a602017-03-26 10:56:33 -0700356 if (pfx.fp_len <= 30)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 {
Neale Ranns9a69a602017-03-26 10:56:33 -0700358 /* a /30 or shorter - add a glean for the network address */
Neale Ranns7a272742017-05-30 02:08:14 -0700359 fib_table_entry_update_one_path (fib_index, &pfx,
360 FIB_SOURCE_INTERFACE,
361 (FIB_ENTRY_FLAG_CONNECTED |
362 FIB_ENTRY_FLAG_ATTACHED),
Neale Rannsda78f952017-05-24 09:15:43 -0700363 DPO_PROTO_IP4,
Neale Ranns7a272742017-05-30 02:08:14 -0700364 /* No next-hop address */
365 NULL,
366 sw_if_index,
367 // invalid FIB index
368 ~0,
369 1,
370 // no out-label stack
371 NULL,
372 FIB_ROUTE_PATH_FLAG_NONE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373
Neale Ranns9a69a602017-03-26 10:56:33 -0700374 /* Add the two broadcast addresses as drop */
375 fib_prefix_t net_pfx = {
376 .fp_len = 32,
377 .fp_proto = FIB_PROTOCOL_IP4,
378 .fp_addr.ip4.as_u32 = address->as_u32 & im->fib_masks[pfx.fp_len],
379 };
380 if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32)
381 fib_table_entry_special_add(fib_index,
382 &net_pfx,
383 FIB_SOURCE_INTERFACE,
384 (FIB_ENTRY_FLAG_DROP |
Neale Rannsa0558302017-04-13 00:44:52 -0700385 FIB_ENTRY_FLAG_LOOSE_URPF_EXEMPT));
Neale Ranns9a69a602017-03-26 10:56:33 -0700386 net_pfx.fp_addr.ip4.as_u32 |= ~im->fib_masks[pfx.fp_len];
387 if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32)
Neale Ranns1855b8e2018-07-11 10:31:26 -0700388 ip4_add_subnet_bcast_route(fib_index, &net_pfx, sw_if_index);
Neale Ranns9a69a602017-03-26 10:56:33 -0700389 }
390 else if (pfx.fp_len == 31)
391 {
392 u32 mask = clib_host_to_net_u32(1);
393 fib_prefix_t net_pfx = pfx;
394
395 net_pfx.fp_len = 32;
396 net_pfx.fp_addr.ip4.as_u32 ^= mask;
397
398 /* a /31 - add the other end as an attached host */
399 fib_table_entry_update_one_path (fib_index, &net_pfx,
400 FIB_SOURCE_INTERFACE,
401 (FIB_ENTRY_FLAG_ATTACHED),
Neale Rannsda78f952017-05-24 09:15:43 -0700402 DPO_PROTO_IP4,
Neale Ranns9a69a602017-03-26 10:56:33 -0700403 &net_pfx.fp_addr,
404 sw_if_index,
405 // invalid FIB index
406 ~0,
407 1,
408 NULL,
409 FIB_ROUTE_PATH_FLAG_NONE);
410 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100411 pfx.fp_len = 32;
412
413 if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500414 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100415 u32 classify_table_index =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500416 lm->classify_table_index_by_sw_if_index[sw_if_index];
417 if (classify_table_index != (u32) ~ 0)
418 {
419 dpo_id_t dpo = DPO_INVALID;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100420
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421 dpo_set (&dpo,
422 DPO_CLASSIFY,
423 DPO_PROTO_IP4,
424 classify_dpo_create (DPO_PROTO_IP4, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100425
Dave Barachd7cb1b52016-12-09 09:52:16 -0500426 fib_table_entry_special_dpo_add (fib_index,
427 &pfx,
428 FIB_SOURCE_CLASSIFY,
429 FIB_ENTRY_FLAG_NONE, &dpo);
430 dpo_reset (&dpo);
431 }
432 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100433
Neale Ranns32e1c012016-11-22 17:07:28 +0000434 fib_table_entry_update_one_path (fib_index, &pfx,
435 FIB_SOURCE_INTERFACE,
436 (FIB_ENTRY_FLAG_CONNECTED |
437 FIB_ENTRY_FLAG_LOCAL),
Neale Rannsda78f952017-05-24 09:15:43 -0700438 DPO_PROTO_IP4,
Neale Ranns32e1c012016-11-22 17:07:28 +0000439 &pfx.fp_addr,
440 sw_if_index,
441 // invalid FIB index
442 ~0,
443 1, NULL,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 FIB_ROUTE_PATH_FLAG_NONE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445}
446
447static void
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100448ip4_del_interface_routes (ip4_main_t * im,
449 u32 fib_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 ip4_address_t * address, u32 address_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500452 fib_prefix_t pfx = {
453 .fp_len = address_length,
454 .fp_proto = FIB_PROTOCOL_IP4,
455 .fp_addr.ip4 = *address,
456 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
Neale Ranns9a69a602017-03-26 10:56:33 -0700458 if (pfx.fp_len <= 30)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100459 {
Neale Ranns9a69a602017-03-26 10:56:33 -0700460 fib_prefix_t net_pfx = {
461 .fp_len = 32,
462 .fp_proto = FIB_PROTOCOL_IP4,
463 .fp_addr.ip4.as_u32 = address->as_u32 & im->fib_masks[pfx.fp_len],
464 };
465 if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32)
466 fib_table_entry_special_remove(fib_index,
467 &net_pfx,
468 FIB_SOURCE_INTERFACE);
469 net_pfx.fp_addr.ip4.as_u32 |= ~im->fib_masks[pfx.fp_len];
470 if (net_pfx.fp_addr.ip4.as_u32 != pfx.fp_addr.ip4.as_u32)
471 fib_table_entry_special_remove(fib_index,
472 &net_pfx,
473 FIB_SOURCE_INTERFACE);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100475 }
Neale Ranns9a69a602017-03-26 10:56:33 -0700476 else if (pfx.fp_len == 31)
477 {
478 u32 mask = clib_host_to_net_u32(1);
479 fib_prefix_t net_pfx = pfx;
480
481 net_pfx.fp_len = 32;
482 net_pfx.fp_addr.ip4.as_u32 ^= mask;
483
484 fib_table_entry_delete (fib_index, &net_pfx, FIB_SOURCE_INTERFACE);
485 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 pfx.fp_len = 32;
488 fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489}
490
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100491void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492ip4_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100493{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500494 ip4_main_t *im = &ip4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100496 vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
497
498 /*
499 * enable/disable only on the 1<->0 transition
500 */
501 if (is_enable)
502 {
503 if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100505 }
506 else
507 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500508 ASSERT (im->ip_enabled_by_sw_if_index[sw_if_index] > 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100509 if (0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
Dave Barachd7cb1b52016-12-09 09:52:16 -0500510 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100511 }
Neale Ranns8269d3d2018-01-30 09:02:20 -0800512 vnet_feature_enable_disable ("ip4-unicast", "ip4-not-enabled", sw_if_index,
Damjan Marion4d489932016-12-09 03:21:27 -0800513 !is_enable, 0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100514
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100515
Neale Ranns8269d3d2018-01-30 09:02:20 -0800516 vnet_feature_enable_disable ("ip4-multicast", "ip4-not-enabled",
Neale Ranns180279b2017-03-16 15:49:09 -0400517 sw_if_index, !is_enable, 0, 0);
Neale Ranns57e53bb2019-05-29 13:58:43 +0000518
519 {
520 ip4_enable_disable_interface_callback_t *cb;
521 vec_foreach (cb, im->enable_disable_interface_callbacks)
522 cb->function (im, cb->function_opaque, sw_if_index, is_enable);
523 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100524}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526static clib_error_t *
527ip4_add_del_interface_address_internal (vlib_main_t * vm,
528 u32 sw_if_index,
529 ip4_address_t * address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500530 u32 address_length, u32 is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500532 vnet_main_t *vnm = vnet_get_main ();
533 ip4_main_t *im = &ip4_main;
534 ip_lookup_main_t *lm = &im->lookup_main;
535 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 u32 if_address_index, elts_before;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500537 ip4_address_fib_t ip4_af, *addr_fib = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
Pavel Kotucek57808982017-08-02 08:20:19 +0200539 /* local0 interface doesn't support IP addressing */
540 if (sw_if_index == 0)
541 {
542 return
543 clib_error_create ("local0 interface doesn't support IP addressing");
544 }
545
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
547 ip4_addr_fib_init (&ip4_af, address,
548 vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
549 vec_add1 (addr_fib, ip4_af);
550
Neale Ranns744902e2017-08-14 10:35:44 -0700551 /*
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100552 * there is no support for adj-fib handling in the presence of overlapping
553 * subnets on interfaces. Easy fix - disallow overlapping subnets, like
554 * most routers do.
555 */
Neale Ranns32e1c012016-11-22 17:07:28 +0000556 /* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500557 if (!is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100559 /* When adding an address check that it does not conflict
Neale Ranns744902e2017-08-14 10:35:44 -0700560 with an existing address on any interface in this table. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500561 ip_interface_address_t *ia;
Neale Ranns744902e2017-08-14 10:35:44 -0700562 vnet_sw_interface_t *sif;
563
564 pool_foreach(sif, vnm->interface_main.sw_interfaces,
565 ({
566 if (im->fib_index_by_sw_if_index[sw_if_index] ==
567 im->fib_index_by_sw_if_index[sif->sw_if_index])
568 {
569 foreach_ip_interface_address
570 (&im->lookup_main, ia, sif->sw_if_index,
571 0 /* honor unnumbered */ ,
572 ({
573 ip4_address_t * x =
574 ip_interface_address_get_address
575 (&im->lookup_main, ia);
576 if (ip4_destination_matches_route
577 (im, address, x, ia->address_length) ||
578 ip4_destination_matches_route (im,
579 x,
580 address,
581 address_length))
582 {
583 vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
584
585 return
586 clib_error_create
587 ("failed to add %U which conflicts with %U for interface %U",
588 format_ip4_address_and_length, address,
589 address_length,
590 format_ip4_address_and_length, x,
591 ia->address_length,
592 format_vnet_sw_if_index_name, vnm,
593 sif->sw_if_index);
594 }
595 }));
596 }
597 }));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598 }
Neale Ranns32e1c012016-11-22 17:07:28 +0000599 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 elts_before = pool_elts (lm->if_address_pool);
602
603 error = ip_interface_address_add_del
Dave Barachd7cb1b52016-12-09 09:52:16 -0500604 (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 if (error)
606 goto done;
Dave Barach75fc8542016-10-11 16:16:02 -0400607
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608 ip4_sw_interface_enable_disable (sw_if_index, !is_del);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609
610 if (is_del)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500611 ip4_del_interface_routes (im, ip4_af.fib_index, address, address_length);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100612 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500613 ip4_add_interface_routes (sw_if_index,
614 im, ip4_af.fib_index,
615 pool_elt_at_index
616 (lm->if_address_pool, if_address_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617
618 /* If pool did not grow/shrink: add duplicate address. */
619 if (elts_before != pool_elts (lm->if_address_pool))
620 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500621 ip4_add_del_interface_address_callback_t *cb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 vec_foreach (cb, im->add_del_interface_address_callbacks)
623 cb->function (im, cb->function_opaque, sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500624 address, address_length, if_address_index, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 }
626
Dave Barachd7cb1b52016-12-09 09:52:16 -0500627done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628 vec_free (addr_fib);
629 return error;
630}
631
632clib_error_t *
Neale Ranns32e1c012016-11-22 17:07:28 +0000633ip4_add_del_interface_address (vlib_main_t * vm,
634 u32 sw_if_index,
635 ip4_address_t * address,
636 u32 address_length, u32 is_del)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637{
638 return ip4_add_del_interface_address_internal
Dave Barachd7cb1b52016-12-09 09:52:16 -0500639 (vm, sw_if_index, address, address_length, is_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640}
641
Neale Ranns1855b8e2018-07-11 10:31:26 -0700642void
643ip4_directed_broadcast (u32 sw_if_index, u8 enable)
644{
645 ip_interface_address_t *ia;
646 ip4_main_t *im;
647
648 im = &ip4_main;
649
650 /*
651 * when directed broadcast is enabled, the subnet braodcast route will forward
652 * packets using an adjacency with a broadcast MAC. otherwise it drops
653 */
654 /* *INDENT-OFF* */
655 foreach_ip_interface_address(&im->lookup_main, ia,
656 sw_if_index, 0,
657 ({
658 if (ia->address_length <= 30)
659 {
660 ip4_address_t *ipa;
661
662 ipa = ip_interface_address_get_address (&im->lookup_main, ia);
663
664 fib_prefix_t pfx = {
665 .fp_len = 32,
666 .fp_proto = FIB_PROTOCOL_IP4,
667 .fp_addr = {
668 .ip4.as_u32 = (ipa->as_u32 | ~im->fib_masks[ia->address_length]),
669 },
670 };
671
672 ip4_add_subnet_bcast_route
673 (fib_table_get_index_for_sw_if_index(FIB_PROTOCOL_IP4,
674 sw_if_index),
675 &pfx, sw_if_index);
676 }
677 }));
678 /* *INDENT-ON* */
679}
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200680#endif
Neale Ranns1855b8e2018-07-11 10:31:26 -0700681
Dave Barachd6534602016-06-14 18:38:02 -0400682/* Built-in ip4 unicast rx feature path definition */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500683/* *INDENT-OFF* */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100684VNET_FEATURE_ARC_INIT (ip4_unicast, static) =
685{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500686 .arc_name = "ip4-unicast",
Damjan Marion892e0762016-12-09 18:52:05 +0100687 .start_nodes = VNET_FEATURES ("ip4-input", "ip4-input-no-checksum"),
Dave Baracha25def72018-11-26 11:04:45 -0500688 .last_in_arc = "ip4-lookup",
Damjan Marion892e0762016-12-09 18:52:05 +0100689 .arc_index_ptr = &ip4_main.lookup_main.ucast_feature_arc_index,
690};
Damjan Marion8b3191e2016-11-09 19:54:20 +0100691
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692VNET_FEATURE_INIT (ip4_flow_classify, static) =
693{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100694 .arc_name = "ip4-unicast",
Juraj Sloboda506b2452016-08-07 23:45:24 -0700695 .node_name = "ip4-flow-classify",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100696 .runs_before = VNET_FEATURES ("ip4-inacl"),
Juraj Sloboda506b2452016-08-07 23:45:24 -0700697};
698
Dave Barachd7cb1b52016-12-09 09:52:16 -0500699VNET_FEATURE_INIT (ip4_inacl, static) =
700{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100701 .arc_name = "ip4-unicast",
Dave Barach75fc8542016-10-11 16:16:02 -0400702 .node_name = "ip4-inacl",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100703 .runs_before = VNET_FEATURES ("ip4-source-check-via-rx"),
Dave Barachd6534602016-06-14 18:38:02 -0400704};
705
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706VNET_FEATURE_INIT (ip4_source_check_1, static) =
707{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100708 .arc_name = "ip4-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400709 .node_name = "ip4-source-check-via-rx",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100710 .runs_before = VNET_FEATURES ("ip4-source-check-via-any"),
Dave Barachd6534602016-06-14 18:38:02 -0400711};
712
Dave Barachd7cb1b52016-12-09 09:52:16 -0500713VNET_FEATURE_INIT (ip4_source_check_2, static) =
714{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100715 .arc_name = "ip4-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400716 .node_name = "ip4-source-check-via-any",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100717 .runs_before = VNET_FEATURES ("ip4-policer-classify"),
Dave Barachd6534602016-06-14 18:38:02 -0400718};
719
Dave Barachd7cb1b52016-12-09 09:52:16 -0500720VNET_FEATURE_INIT (ip4_source_and_port_range_check_rx, static) =
721{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100722 .arc_name = "ip4-unicast",
Dave Barach5331c722016-08-17 11:54:30 -0400723 .node_name = "ip4-source-and-port-range-check-rx",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100724 .runs_before = VNET_FEATURES ("ip4-policer-classify"),
Dave Barach6f9bca22016-04-30 10:25:32 -0400725};
726
Dave Barachd7cb1b52016-12-09 09:52:16 -0500727VNET_FEATURE_INIT (ip4_policer_classify, static) =
728{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100729 .arc_name = "ip4-unicast",
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700730 .node_name = "ip4-policer-classify",
Pierre Pfister057b3562018-12-10 17:01:01 +0100731 .runs_before = VNET_FEATURES ("ipsec4-input-feature"),
Matus Fabian70e6a8d2016-06-20 08:10:42 -0700732};
733
Dave Barachd7cb1b52016-12-09 09:52:16 -0500734VNET_FEATURE_INIT (ip4_ipsec, static) =
735{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100736 .arc_name = "ip4-unicast",
Pierre Pfister057b3562018-12-10 17:01:01 +0100737 .node_name = "ipsec4-input-feature",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100738 .runs_before = VNET_FEATURES ("vpath-input-ip4"),
Dave Barachd6534602016-06-14 18:38:02 -0400739};
740
Dave Barachd7cb1b52016-12-09 09:52:16 -0500741VNET_FEATURE_INIT (ip4_vpath, static) =
742{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100743 .arc_name = "ip4-unicast",
Dave Barachd6534602016-06-14 18:38:02 -0400744 .node_name = "vpath-input-ip4",
John Lo37682e12016-11-30 12:51:39 -0500745 .runs_before = VNET_FEATURES ("ip4-vxlan-bypass"),
746};
747
Dave Barachd7cb1b52016-12-09 09:52:16 -0500748VNET_FEATURE_INIT (ip4_vxlan_bypass, static) =
749{
John Lo37682e12016-11-30 12:51:39 -0500750 .arc_name = "ip4-unicast",
751 .node_name = "ip4-vxlan-bypass",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100752 .runs_before = VNET_FEATURES ("ip4-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400753};
754
Neale Ranns8269d3d2018-01-30 09:02:20 -0800755VNET_FEATURE_INIT (ip4_not_enabled, static) =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500756{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100757 .arc_name = "ip4-unicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800758 .node_name = "ip4-not-enabled",
Neale Ranns180279b2017-03-16 15:49:09 -0400759 .runs_before = VNET_FEATURES ("ip4-lookup"),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100760};
761
Neale Ranns180279b2017-03-16 15:49:09 -0400762VNET_FEATURE_INIT (ip4_lookup, static) =
763{
764 .arc_name = "ip4-unicast",
765 .node_name = "ip4-lookup",
766 .runs_before = 0, /* not before any other features */
767};
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100768
Dave Barachd6534602016-06-14 18:38:02 -0400769/* Built-in ip4 multicast rx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100770VNET_FEATURE_ARC_INIT (ip4_multicast, static) =
771{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500772 .arc_name = "ip4-multicast",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100773 .start_nodes = VNET_FEATURES ("ip4-input", "ip4-input-no-checksum"),
Dave Baracha25def72018-11-26 11:04:45 -0500774 .last_in_arc = "ip4-mfib-forward-lookup",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100775 .arc_index_ptr = &ip4_main.lookup_main.mcast_feature_arc_index,
776};
777
Dave Barachd7cb1b52016-12-09 09:52:16 -0500778VNET_FEATURE_INIT (ip4_vpath_mc, static) =
779{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100780 .arc_name = "ip4-multicast",
Dave Barachd6534602016-06-14 18:38:02 -0400781 .node_name = "vpath-input-ip4",
Neale Ranns32e1c012016-11-22 17:07:28 +0000782 .runs_before = VNET_FEATURES ("ip4-mfib-forward-lookup"),
Dave Barachd6534602016-06-14 18:38:02 -0400783};
784
Neale Ranns8269d3d2018-01-30 09:02:20 -0800785VNET_FEATURE_INIT (ip4_mc_not_enabled, static) =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500786{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100787 .arc_name = "ip4-multicast",
Neale Ranns8269d3d2018-01-30 09:02:20 -0800788 .node_name = "ip4-not-enabled",
Neale Ranns180279b2017-03-16 15:49:09 -0400789 .runs_before = VNET_FEATURES ("ip4-mfib-forward-lookup"),
790};
791
792VNET_FEATURE_INIT (ip4_lookup_mc, static) =
793{
794 .arc_name = "ip4-multicast",
795 .node_name = "ip4-mfib-forward-lookup",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500796 .runs_before = 0, /* last feature */
Neale Ranns5e575b12016-10-03 09:40:25 +0100797};
Dave Barach5331c722016-08-17 11:54:30 -0400798
799/* Source and port-range check ip4 tx feature path definition */
Damjan Marion8b3191e2016-11-09 19:54:20 +0100800VNET_FEATURE_ARC_INIT (ip4_output, static) =
801{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500802 .arc_name = "ip4-output",
Neale Rannsf068c3e2018-01-03 04:18:48 -0800803 .start_nodes = VNET_FEATURES ("ip4-rewrite", "ip4-midchain", "ip4-dvr-dpo"),
Dave Baracha25def72018-11-26 11:04:45 -0500804 .last_in_arc = "interface-output",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100805 .arc_index_ptr = &ip4_main.lookup_main.output_feature_arc_index,
806};
Dave Barach5331c722016-08-17 11:54:30 -0400807
Dave Barachd7cb1b52016-12-09 09:52:16 -0500808VNET_FEATURE_INIT (ip4_source_and_port_range_check_tx, static) =
809{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100810 .arc_name = "ip4-output",
811 .node_name = "ip4-source-and-port-range-check-tx",
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +0100812 .runs_before = VNET_FEATURES ("ip4-outacl"),
813};
814
815VNET_FEATURE_INIT (ip4_outacl, static) =
816{
817 .arc_name = "ip4-output",
818 .node_name = "ip4-outacl",
Pierre Pfister057b3562018-12-10 17:01:01 +0100819 .runs_before = VNET_FEATURES ("ipsec4-output-feature"),
Matus Fabian08a6f012016-11-15 06:08:51 -0800820};
821
Dave Barachd7cb1b52016-12-09 09:52:16 -0500822VNET_FEATURE_INIT (ip4_ipsec_output, static) =
823{
Matus Fabian08a6f012016-11-15 06:08:51 -0800824 .arc_name = "ip4-output",
Pierre Pfister057b3562018-12-10 17:01:01 +0100825 .node_name = "ipsec4-output-feature",
Damjan Marion8b3191e2016-11-09 19:54:20 +0100826 .runs_before = VNET_FEATURES ("interface-output"),
Dave Barach5331c722016-08-17 11:54:30 -0400827};
828
829/* Built-in ip4 tx feature path definition */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500830VNET_FEATURE_INIT (ip4_interface_output, static) =
831{
Damjan Marion8b3191e2016-11-09 19:54:20 +0100832 .arc_name = "ip4-output",
Dave Barach5331c722016-08-17 11:54:30 -0400833 .node_name = "interface-output",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500834 .runs_before = 0, /* not before any other features */
Dave Barach5331c722016-08-17 11:54:30 -0400835};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500836/* *INDENT-ON* */
Dave Barachd6534602016-06-14 18:38:02 -0400837
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500839ip4_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500841 ip4_main_t *im = &ip4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100843 /* Fill in lookup tables with default table (0). */
844 vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
Neale Ranns32e1c012016-11-22 17:07:28 +0000845 vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100846
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200847 if (!is_add)
848 {
849 ip4_main_t *im4 = &ip4_main;
850 ip_lookup_main_t *lm4 = &im4->lookup_main;
851 ip_interface_address_t *ia = 0;
852 ip4_address_t *address;
853 vlib_main_t *vm = vlib_get_main ();
854
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700855 vnet_sw_interface_update_unnumbered (sw_if_index, ~0, 0);
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200856 /* *INDENT-OFF* */
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700857 foreach_ip_interface_address (lm4, ia, sw_if_index, 0,
Pavel Kotucek9f5a2b62017-06-14 13:56:55 +0200858 ({
859 address = ip_interface_address_get_address (lm4, ia);
860 ip4_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1);
861 }));
862 /* *INDENT-ON* */
863 }
864
Neale Ranns8269d3d2018-01-30 09:02:20 -0800865 vnet_feature_enable_disable ("ip4-unicast", "ip4-not-enabled", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +0100866 is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867
Neale Ranns8269d3d2018-01-30 09:02:20 -0800868 vnet_feature_enable_disable ("ip4-multicast", "ip4-not-enabled",
869 sw_if_index, is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 return /* no error */ 0;
872}
873
874VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip4_sw_interface_add_del);
875
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876/* Global IP4 main. */
Benoît Ganne47727c02019-02-12 13:35:08 +0100877#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878ip4_main_t ip4_main;
Benoît Ganne47727c02019-02-12 13:35:08 +0100879#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200881static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882ip4_lookup_init (vlib_main_t * vm)
883{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500884 ip4_main_t *im = &ip4_main;
885 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886 uword i;
887
Damjan Marion8b3191e2016-11-09 19:54:20 +0100888 if ((error = vlib_call_init_function (vm, vnet_feature_init)))
889 return error;
Neale Ranns1ec36522017-11-29 05:20:37 -0800890 if ((error = vlib_call_init_function (vm, ip4_mtrie_module_init)))
891 return (error);
892 if ((error = vlib_call_init_function (vm, fib_module_init)))
893 return error;
894 if ((error = vlib_call_init_function (vm, mfib_module_init)))
895 return error;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100896
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
898 {
899 u32 m;
900
901 if (i < 32)
902 m = pow2_mask (i) << (32 - i);
Dave Barach75fc8542016-10-11 16:16:02 -0400903 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 m = ~0;
905 im->fib_masks[i] = clib_host_to_net_u32 (m);
906 }
907
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 ip_lookup_init (&im->lookup_main, /* is_ip6 */ 0);
909
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100910 /* Create FIB with index 0 and table id of 0. */
Neale Ranns15002542017-09-10 04:39:11 -0700911 fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, 0,
912 FIB_SOURCE_DEFAULT_ROUTE);
913 mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP4, 0,
914 MFIB_SOURCE_DEFAULT_ROUTE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100915
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500917 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 pn = pg_get_node (ip4_lookup_node.index);
919 pn->unformat_edit = unformat_pg_ip4_header;
920 }
921
922 {
923 ethernet_arp_header_t h;
924
Dave Barachb7b92992018-10-17 10:38:51 -0400925 clib_memset (&h, 0, sizeof (h));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927#define _16(f,v) h.f = clib_host_to_net_u16 (v);
928#define _8(f,v) h.f = v;
929 _16 (l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
930 _16 (l3_type, ETHERNET_TYPE_IP4);
931 _8 (n_l2_address_bytes, 6);
932 _8 (n_l3_address_bytes, 4);
933 _16 (opcode, ETHERNET_ARP_OPCODE_request);
934#undef _16
935#undef _8
936
Dave Barachd7cb1b52016-12-09 09:52:16 -0500937 vlib_packet_template_init (vm, &im->ip4_arp_request_packet_template,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938 /* data */ &h,
939 sizeof (h),
940 /* alloc chunk size */ 8,
941 "ip4 arp");
942 }
943
Dave Barach203c6322016-06-26 10:29:03 -0400944 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945}
946
947VLIB_INIT_FUNCTION (ip4_lookup_init);
948
Dave Barachd7cb1b52016-12-09 09:52:16 -0500949typedef struct
950{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 /* Adjacency taken. */
Vengada Govindanf1544482016-09-28 02:45:57 -0700952 u32 dpo_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 u32 flow_hash;
954 u32 fib_index;
955
956 /* Packet data, possibly *after* rewrite. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500957 u8 packet_data[64 - 1 * sizeof (u32)];
958}
959ip4_forward_next_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200961#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -0500962u8 *
963format_ip4_forward_next_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964{
965 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
966 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500967 ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200968 u32 indent = format_get_indent (s);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100969 s = format (s, "%U%U",
John Loac8146c2016-09-27 17:44:02 -0400970 format_white_space, indent,
971 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100972 return s;
973}
Damjan Marionc9dad5d2018-08-11 22:10:29 +0200974#endif
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100975
Dave Barachd7cb1b52016-12-09 09:52:16 -0500976static u8 *
977format_ip4_lookup_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100978{
979 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
980 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500981 ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200982 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983
John Loac8146c2016-09-27 17:44:02 -0400984 s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500985 t->fib_index, t->dpo_index, t->flow_hash);
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100986 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500987 format_white_space, indent,
988 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100989 return s;
990}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991
Dave Barachd7cb1b52016-12-09 09:52:16 -0500992static u8 *
993format_ip4_rewrite_trace (u8 * s, va_list * args)
Pierre Pfistera38c3df2016-06-13 10:28:09 +0100994{
995 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
996 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500997 ip4_forward_next_trace_t *t = va_arg (*args, ip4_forward_next_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200998 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999
Vengada Govindanf1544482016-09-28 02:45:57 -07001000 s = format (s, "tx_sw_if_index %d dpo-idx %d : %U flow hash: 0x%08x",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001001 t->fib_index, t->dpo_index, format_ip_adjacency,
1002 t->dpo_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash);
Pierre Pfistera38c3df2016-06-13 10:28:09 +01001003 s = format (s, "\n%U%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001004 format_white_space, indent,
1005 format_ip_adjacency_packet_data,
Neale Rannsb069a692017-03-15 12:34:25 -04001006 t->dpo_index, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 return s;
1008}
1009
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001010#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011/* Common trace function for all ip4-forward next nodes. */
1012void
1013ip4_forward_next_trace (vlib_main_t * vm,
1014 vlib_node_runtime_t * node,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001015 vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001017 u32 *from, n_left;
1018 ip4_main_t *im = &ip4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019
1020 n_left = frame->n_vectors;
1021 from = vlib_frame_vector_args (frame);
Dave Barach75fc8542016-10-11 16:16:02 -04001022
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 while (n_left >= 4)
1024 {
1025 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001026 vlib_buffer_t *b0, *b1;
1027 ip4_forward_next_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
1029 /* Prefetch next iteration. */
1030 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
1031 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
1032
1033 bi0 = from[0];
1034 bi1 = from[1];
1035
1036 b0 = vlib_get_buffer (vm, bi0);
1037 b1 = vlib_get_buffer (vm, bi1);
1038
1039 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1040 {
1041 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Vengada Govindanf1544482016-09-28 02:45:57 -07001042 t0->dpo_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001044 t0->fib_index =
1045 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1046 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1047 vec_elt (im->fib_index_by_sw_if_index,
1048 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Pierre Pfister0febaf12016-06-08 12:23:21 +01001049
Dave Barach178cf492018-11-13 16:34:13 -05001050 clib_memcpy_fast (t0->packet_data,
1051 vlib_buffer_get_current (b0),
1052 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053 }
1054 if (b1->flags & VLIB_BUFFER_IS_TRACED)
1055 {
1056 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
Vengada Govindanf1544482016-09-28 02:45:57 -07001057 t1->dpo_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058 t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001059 t1->fib_index =
1060 (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
1061 (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
1062 vec_elt (im->fib_index_by_sw_if_index,
1063 vnet_buffer (b1)->sw_if_index[VLIB_RX]);
Dave Barach178cf492018-11-13 16:34:13 -05001064 clib_memcpy_fast (t1->packet_data, vlib_buffer_get_current (b1),
1065 sizeof (t1->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066 }
1067 from += 2;
1068 n_left -= 2;
1069 }
1070
1071 while (n_left >= 1)
1072 {
1073 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001074 vlib_buffer_t *b0;
1075 ip4_forward_next_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076
1077 bi0 = from[0];
1078
1079 b0 = vlib_get_buffer (vm, bi0);
1080
1081 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1082 {
1083 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Vengada Govindanf1544482016-09-28 02:45:57 -07001084 t0->dpo_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085 t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001086 t0->fib_index =
1087 (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
1088 (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
1089 vec_elt (im->fib_index_by_sw_if_index,
1090 vnet_buffer (b0)->sw_if_index[VLIB_RX]);
Dave Barach178cf492018-11-13 16:34:13 -05001091 clib_memcpy_fast (t0->packet_data, vlib_buffer_get_current (b0),
1092 sizeof (t0->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001093 }
1094 from += 1;
1095 n_left -= 1;
1096 }
1097}
1098
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099/* Compute TCP/UDP/ICMP4 checksum in software. */
1100u16
1101ip4_tcp_udp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
1102 ip4_header_t * ip0)
1103{
1104 ip_csum_t sum0;
1105 u32 ip_header_length, payload_length_host_byte_order;
Florin Corasb2215d62017-08-01 16:56:58 -07001106 u32 n_this_buffer, n_bytes_left, n_ip_bytes_this_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107 u16 sum16;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001108 void *data_this_buffer;
Dave Barach75fc8542016-10-11 16:16:02 -04001109
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110 /* Initialize checksum with ip header. */
1111 ip_header_length = ip4_header_bytes (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001112 payload_length_host_byte_order =
1113 clib_net_to_host_u16 (ip0->length) - ip_header_length;
1114 sum0 =
1115 clib_host_to_net_u32 (payload_length_host_byte_order +
1116 (ip0->protocol << 16));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117
1118 if (BITS (uword) == 32)
1119 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001120 sum0 =
1121 ip_csum_with_carry (sum0,
1122 clib_mem_unaligned (&ip0->src_address, u32));
1123 sum0 =
1124 ip_csum_with_carry (sum0,
1125 clib_mem_unaligned (&ip0->dst_address, u32));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 }
1127 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05001128 sum0 =
1129 ip_csum_with_carry (sum0, clib_mem_unaligned (&ip0->src_address, u64));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130
1131 n_bytes_left = n_this_buffer = payload_length_host_byte_order;
1132 data_this_buffer = (void *) ip0 + ip_header_length;
Neale Rannsd91c1db2017-07-31 02:30:50 -07001133 n_ip_bytes_this_buffer =
1134 p0->current_length - (((u8 *) ip0 - p0->data) - p0->current_data);
Florin Corasb2215d62017-08-01 16:56:58 -07001135 if (n_this_buffer + ip_header_length > n_ip_bytes_this_buffer)
1136 {
1137 n_this_buffer = n_ip_bytes_this_buffer > ip_header_length ?
Neale Rannsd91c1db2017-07-31 02:30:50 -07001138 n_ip_bytes_this_buffer - ip_header_length : 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001139 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140 while (1)
1141 {
1142 sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer);
1143 n_bytes_left -= n_this_buffer;
1144 if (n_bytes_left == 0)
1145 break;
1146
1147 ASSERT (p0->flags & VLIB_BUFFER_NEXT_PRESENT);
1148 p0 = vlib_get_buffer (vm, p0->next_buffer);
1149 data_this_buffer = vlib_buffer_get_current (p0);
John Lo1cf00072019-04-09 10:23:56 -04001150 n_this_buffer = clib_min (p0->current_length, n_bytes_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 }
1152
Dave Barachd7cb1b52016-12-09 09:52:16 -05001153 sum16 = ~ip_csum_fold (sum0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001154
1155 return sum16;
1156}
1157
John Lo37682e12016-11-30 12:51:39 -05001158u32
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159ip4_tcp_udp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0)
1160{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001161 ip4_header_t *ip0 = vlib_buffer_get_current (p0);
1162 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 u16 sum16;
1164
1165 ASSERT (ip0->protocol == IP_PROTOCOL_TCP
1166 || ip0->protocol == IP_PROTOCOL_UDP);
1167
1168 udp0 = (void *) (ip0 + 1);
1169 if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
1170 {
Damjan Marion213b5aa2017-07-13 21:19:27 +02001171 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1172 | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173 return p0->flags;
1174 }
1175
1176 sum16 = ip4_tcp_udp_compute_checksum (vm, p0, ip0);
1177
Damjan Marion213b5aa2017-07-13 21:19:27 +02001178 p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
1179 | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180
1181 return p0->flags;
1182}
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001183#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184
Dave Barach68b0fb02017-02-28 15:15:56 -05001185/* *INDENT-OFF* */
1186VNET_FEATURE_ARC_INIT (ip4_local) =
1187{
1188 .arc_name = "ip4-local",
1189 .start_nodes = VNET_FEATURES ("ip4-local"),
Dave Baracha25def72018-11-26 11:04:45 -05001190 .last_in_arc = "ip4-local-end-of-arc",
Dave Barach68b0fb02017-02-28 15:15:56 -05001191};
1192/* *INDENT-ON* */
1193
Florin Coras20a14b92017-08-15 22:47:22 -07001194static inline void
Florin Coras1b255522018-06-01 12:22:23 -07001195ip4_local_l4_csum_validate (vlib_main_t * vm, vlib_buffer_t * p,
1196 ip4_header_t * ip, u8 is_udp, u8 * error,
1197 u8 * good_tcp_udp)
Florin Coras20a14b92017-08-15 22:47:22 -07001198{
1199 u32 flags0;
1200 flags0 = ip4_tcp_udp_validate_checksum (vm, p);
1201 *good_tcp_udp = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
1202 if (is_udp)
1203 {
1204 udp_header_t *udp;
1205 u32 ip_len, udp_len;
1206 i32 len_diff;
1207 udp = ip4_next_header (ip);
1208 /* Verify UDP length. */
1209 ip_len = clib_net_to_host_u16 (ip->length);
1210 udp_len = clib_net_to_host_u16 (udp->length);
1211
1212 len_diff = ip_len - udp_len;
1213 *good_tcp_udp &= len_diff >= 0;
1214 *error = len_diff < 0 ? IP4_ERROR_UDP_LENGTH : *error;
1215 }
1216}
1217
Florin Coras1b255522018-06-01 12:22:23 -07001218#define ip4_local_csum_is_offloaded(_b) \
1219 _b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM \
1220 || _b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM
1221
1222#define ip4_local_need_csum_check(is_tcp_udp, _b) \
1223 (is_tcp_udp && !(_b->flags & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED \
1224 || ip4_local_csum_is_offloaded (_b)))
1225
1226#define ip4_local_csum_is_valid(_b) \
1227 (_b->flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT \
1228 || (ip4_local_csum_is_offloaded (_b))) != 0
1229
1230static inline void
1231ip4_local_check_l4_csum (vlib_main_t * vm, vlib_buffer_t * b,
1232 ip4_header_t * ih, u8 * error)
1233{
1234 u8 is_udp, is_tcp_udp, good_tcp_udp;
1235
1236 is_udp = ih->protocol == IP_PROTOCOL_UDP;
1237 is_tcp_udp = is_udp || ih->protocol == IP_PROTOCOL_TCP;
1238
1239 if (PREDICT_FALSE (ip4_local_need_csum_check (is_tcp_udp, b)))
1240 ip4_local_l4_csum_validate (vm, b, ih, is_udp, error, &good_tcp_udp);
1241 else
1242 good_tcp_udp = ip4_local_csum_is_valid (b);
1243
1244 ASSERT (IP4_ERROR_TCP_CHECKSUM + 1 == IP4_ERROR_UDP_CHECKSUM);
1245 *error = (is_tcp_udp && !good_tcp_udp
1246 ? IP4_ERROR_TCP_CHECKSUM + is_udp : *error);
1247}
1248
1249static inline void
1250ip4_local_check_l4_csum_x2 (vlib_main_t * vm, vlib_buffer_t ** b,
1251 ip4_header_t ** ih, u8 * error)
1252{
1253 u8 is_udp[2], is_tcp_udp[2], good_tcp_udp[2];
1254
1255 is_udp[0] = ih[0]->protocol == IP_PROTOCOL_UDP;
1256 is_udp[1] = ih[1]->protocol == IP_PROTOCOL_UDP;
1257
1258 is_tcp_udp[0] = is_udp[0] || ih[0]->protocol == IP_PROTOCOL_TCP;
1259 is_tcp_udp[1] = is_udp[1] || ih[1]->protocol == IP_PROTOCOL_TCP;
1260
1261 good_tcp_udp[0] = ip4_local_csum_is_valid (b[0]);
1262 good_tcp_udp[1] = ip4_local_csum_is_valid (b[1]);
1263
1264 if (PREDICT_FALSE (ip4_local_need_csum_check (is_tcp_udp[0], b[0])
1265 || ip4_local_need_csum_check (is_tcp_udp[1], b[1])))
1266 {
1267 if (is_tcp_udp[0])
1268 ip4_local_l4_csum_validate (vm, b[0], ih[0], is_udp[0], &error[0],
1269 &good_tcp_udp[0]);
1270 if (is_tcp_udp[1])
1271 ip4_local_l4_csum_validate (vm, b[1], ih[1], is_udp[1], &error[1],
1272 &good_tcp_udp[1]);
1273 }
1274
1275 error[0] = (is_tcp_udp[0] && !good_tcp_udp[0] ?
1276 IP4_ERROR_TCP_CHECKSUM + is_udp[0] : error[0]);
1277 error[1] = (is_tcp_udp[1] && !good_tcp_udp[1] ?
1278 IP4_ERROR_TCP_CHECKSUM + is_udp[1] : error[1]);
1279}
1280
1281static inline void
1282ip4_local_set_next_and_error (vlib_node_runtime_t * error_node,
1283 vlib_buffer_t * b, u16 * next, u8 error,
1284 u8 head_of_feature_arc)
1285{
1286 u8 arc_index = vnet_feat_arc_ip4_local.feature_arc_index;
1287 u32 next_index;
1288
1289 *next = error != IP4_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : *next;
1290 b->error = error ? error_node->errors[error] : 0;
1291 if (head_of_feature_arc)
1292 {
1293 next_index = *next;
1294 if (PREDICT_TRUE (error == (u8) IP4_ERROR_UNKNOWN_PROTOCOL))
1295 {
1296 vnet_feature_arc_start (arc_index,
1297 vnet_buffer (b)->sw_if_index[VLIB_RX],
1298 &next_index, b);
1299 *next = next_index;
1300 }
1301 }
1302}
1303
1304typedef struct
1305{
1306 ip4_address_t src;
1307 u32 lbi;
1308 u8 error;
Neale Rannsbe2286b2018-12-09 12:54:51 -08001309 u8 first;
Florin Coras1b255522018-06-01 12:22:23 -07001310} ip4_local_last_check_t;
1311
1312static inline void
1313ip4_local_check_src (vlib_buffer_t * b, ip4_header_t * ip0,
1314 ip4_local_last_check_t * last_check, u8 * error0)
1315{
1316 ip4_fib_mtrie_leaf_t leaf0;
1317 ip4_fib_mtrie_t *mtrie0;
1318 const dpo_id_t *dpo0;
1319 load_balance_t *lb0;
1320 u32 lbi0;
1321
1322 vnet_buffer (b)->ip.fib_index =
1323 vnet_buffer (b)->sw_if_index[VLIB_TX] != ~0 ?
1324 vnet_buffer (b)->sw_if_index[VLIB_TX] : vnet_buffer (b)->ip.fib_index;
1325
Neale Rannsbe2286b2018-12-09 12:54:51 -08001326 if (PREDICT_FALSE (last_check->first ||
1327 (last_check->src.as_u32 != ip0->src_address.as_u32)))
Florin Coras1b255522018-06-01 12:22:23 -07001328 {
1329 mtrie0 = &ip4_fib_get (vnet_buffer (b)->ip.fib_index)->mtrie;
1330 leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, &ip0->src_address);
1331 leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 2);
1332 leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 3);
1333 lbi0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
1334
1335 vnet_buffer (b)->ip.adj_index[VLIB_TX] = lbi0;
1336 vnet_buffer (b)->ip.adj_index[VLIB_RX] = lbi0;
1337
1338 lb0 = load_balance_get (lbi0);
1339 dpo0 = load_balance_get_bucket_i (lb0, 0);
1340
1341 /*
1342 * Must have a route to source otherwise we drop the packet.
1343 * ip4 broadcasts are accepted, e.g. to make dhcp client work
1344 *
1345 * The checks are:
1346 * - the source is a recieve => it's from us => bogus, do this
1347 * first since it sets a different error code.
1348 * - uRPF check for any route to source - accept if passes.
1349 * - allow packets destined to the broadcast address from unknown sources
1350 */
1351
1352 *error0 = ((*error0 == IP4_ERROR_UNKNOWN_PROTOCOL
1353 && dpo0->dpoi_type == DPO_RECEIVE) ?
1354 IP4_ERROR_SPOOFED_LOCAL_PACKETS : *error0);
1355 *error0 = ((*error0 == IP4_ERROR_UNKNOWN_PROTOCOL
1356 && !fib_urpf_check_size (lb0->lb_urpf)
1357 && ip0->dst_address.as_u32 != 0xFFFFFFFF) ?
1358 IP4_ERROR_SRC_LOOKUP_MISS : *error0);
1359
1360 last_check->src.as_u32 = ip0->src_address.as_u32;
1361 last_check->lbi = lbi0;
1362 last_check->error = *error0;
1363 }
1364 else
1365 {
1366 vnet_buffer (b)->ip.adj_index[VLIB_TX] = last_check->lbi;
1367 vnet_buffer (b)->ip.adj_index[VLIB_RX] = last_check->lbi;
1368 *error0 = last_check->error;
Neale Rannsbe2286b2018-12-09 12:54:51 -08001369 last_check->first = 0;
Florin Coras1b255522018-06-01 12:22:23 -07001370 }
1371}
1372
1373static inline void
1374ip4_local_check_src_x2 (vlib_buffer_t ** b, ip4_header_t ** ip,
1375 ip4_local_last_check_t * last_check, u8 * error)
1376{
1377 ip4_fib_mtrie_leaf_t leaf[2];
1378 ip4_fib_mtrie_t *mtrie[2];
1379 const dpo_id_t *dpo[2];
1380 load_balance_t *lb[2];
Neale Rannsbe2286b2018-12-09 12:54:51 -08001381 u32 not_last_hit;
Florin Coras1b255522018-06-01 12:22:23 -07001382 u32 lbi[2];
1383
Neale Rannsbe2286b2018-12-09 12:54:51 -08001384 not_last_hit = last_check->first;
Florin Coras1b255522018-06-01 12:22:23 -07001385 not_last_hit |= ip[0]->src_address.as_u32 ^ last_check->src.as_u32;
1386 not_last_hit |= ip[1]->src_address.as_u32 ^ last_check->src.as_u32;
1387
1388 vnet_buffer (b[0])->ip.fib_index =
1389 vnet_buffer (b[0])->sw_if_index[VLIB_TX] != ~0 ?
1390 vnet_buffer (b[0])->sw_if_index[VLIB_TX] :
1391 vnet_buffer (b[0])->ip.fib_index;
1392
1393 vnet_buffer (b[1])->ip.fib_index =
1394 vnet_buffer (b[1])->sw_if_index[VLIB_TX] != ~0 ?
1395 vnet_buffer (b[1])->sw_if_index[VLIB_TX] :
1396 vnet_buffer (b[1])->ip.fib_index;
1397
1398 if (PREDICT_FALSE (not_last_hit))
1399 {
1400 mtrie[0] = &ip4_fib_get (vnet_buffer (b[0])->ip.fib_index)->mtrie;
1401 mtrie[1] = &ip4_fib_get (vnet_buffer (b[1])->ip.fib_index)->mtrie;
1402
1403 leaf[0] = ip4_fib_mtrie_lookup_step_one (mtrie[0], &ip[0]->src_address);
1404 leaf[1] = ip4_fib_mtrie_lookup_step_one (mtrie[1], &ip[1]->src_address);
1405
1406 leaf[0] = ip4_fib_mtrie_lookup_step (mtrie[0], leaf[0],
1407 &ip[0]->src_address, 2);
1408 leaf[1] = ip4_fib_mtrie_lookup_step (mtrie[1], leaf[1],
1409 &ip[1]->src_address, 2);
1410
1411 leaf[0] = ip4_fib_mtrie_lookup_step (mtrie[0], leaf[0],
1412 &ip[0]->src_address, 3);
1413 leaf[1] = ip4_fib_mtrie_lookup_step (mtrie[1], leaf[1],
1414 &ip[1]->src_address, 3);
1415
1416 lbi[0] = ip4_fib_mtrie_leaf_get_adj_index (leaf[0]);
1417 lbi[1] = ip4_fib_mtrie_leaf_get_adj_index (leaf[1]);
1418
1419 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = lbi[0];
1420 vnet_buffer (b[0])->ip.adj_index[VLIB_RX] = lbi[0];
1421
1422 vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = lbi[1];
1423 vnet_buffer (b[1])->ip.adj_index[VLIB_RX] = lbi[1];
1424
1425 lb[0] = load_balance_get (lbi[0]);
1426 lb[1] = load_balance_get (lbi[1]);
1427
1428 dpo[0] = load_balance_get_bucket_i (lb[0], 0);
1429 dpo[1] = load_balance_get_bucket_i (lb[1], 0);
1430
1431 error[0] = ((error[0] == IP4_ERROR_UNKNOWN_PROTOCOL &&
1432 dpo[0]->dpoi_type == DPO_RECEIVE) ?
1433 IP4_ERROR_SPOOFED_LOCAL_PACKETS : error[0]);
1434 error[0] = ((error[0] == IP4_ERROR_UNKNOWN_PROTOCOL &&
1435 !fib_urpf_check_size (lb[0]->lb_urpf) &&
1436 ip[0]->dst_address.as_u32 != 0xFFFFFFFF)
1437 ? IP4_ERROR_SRC_LOOKUP_MISS : error[0]);
1438
1439 error[1] = ((error[1] == IP4_ERROR_UNKNOWN_PROTOCOL &&
1440 dpo[1]->dpoi_type == DPO_RECEIVE) ?
1441 IP4_ERROR_SPOOFED_LOCAL_PACKETS : error[1]);
1442 error[1] = ((error[1] == IP4_ERROR_UNKNOWN_PROTOCOL &&
1443 !fib_urpf_check_size (lb[1]->lb_urpf) &&
1444 ip[1]->dst_address.as_u32 != 0xFFFFFFFF)
1445 ? IP4_ERROR_SRC_LOOKUP_MISS : error[1]);
1446
1447 last_check->src.as_u32 = ip[1]->src_address.as_u32;
1448 last_check->lbi = lbi[1];
1449 last_check->error = error[1];
1450 }
1451 else
1452 {
1453 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = last_check->lbi;
1454 vnet_buffer (b[0])->ip.adj_index[VLIB_RX] = last_check->lbi;
1455
1456 vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = last_check->lbi;
1457 vnet_buffer (b[1])->ip.adj_index[VLIB_RX] = last_check->lbi;
1458
1459 error[0] = last_check->error;
1460 error[1] = last_check->error;
Neale Rannsbe2286b2018-12-09 12:54:51 -08001461 last_check->first = 0;
Florin Coras1b255522018-06-01 12:22:23 -07001462 }
1463}
Florin Coras20a14b92017-08-15 22:47:22 -07001464
Florin Corasc67cfd22018-10-01 21:59:18 -07001465enum ip_local_packet_type_e
1466{
1467 IP_LOCAL_PACKET_TYPE_L4,
1468 IP_LOCAL_PACKET_TYPE_NAT,
Juraj Sloboda3048b632018-10-02 11:13:53 +02001469 IP_LOCAL_PACKET_TYPE_FRAG,
Florin Corasc67cfd22018-10-01 21:59:18 -07001470};
1471
1472/**
1473 * Determine packet type and next node.
1474 *
1475 * The expectation is that all packets that are not L4 will skip
1476 * checksums and source checks.
1477 */
1478always_inline u8
1479ip4_local_classify (vlib_buffer_t * b, ip4_header_t * ip, u16 * next)
1480{
1481 ip_lookup_main_t *lm = &ip4_main.lookup_main;
1482
Juraj Sloboda3048b632018-10-02 11:13:53 +02001483 if (PREDICT_FALSE (ip4_is_fragment (ip)))
1484 {
1485 *next = IP_LOCAL_NEXT_REASSEMBLY;
1486 return IP_LOCAL_PACKET_TYPE_FRAG;
1487 }
Florin Corasc67cfd22018-10-01 21:59:18 -07001488 if (PREDICT_FALSE (b->flags & VNET_BUFFER_F_IS_NATED))
1489 {
1490 *next = lm->local_next_by_ip_protocol[ip->protocol];
1491 return IP_LOCAL_PACKET_TYPE_NAT;
1492 }
1493
1494 *next = lm->local_next_by_ip_protocol[ip->protocol];
1495 return IP_LOCAL_PACKET_TYPE_L4;
1496}
1497
Dave Barach68b0fb02017-02-28 15:15:56 -05001498static inline uword
1499ip4_local_inline (vlib_main_t * vm,
1500 vlib_node_runtime_t * node,
1501 vlib_frame_t * frame, int head_of_feature_arc)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001502{
Florin Coras1b255522018-06-01 12:22:23 -07001503 u32 *from, n_left_from;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001504 vlib_node_runtime_t *error_node =
1505 vlib_node_get_runtime (vm, ip4_input_node.index);
Florin Coras1b255522018-06-01 12:22:23 -07001506 u16 nexts[VLIB_FRAME_SIZE], *next;
1507 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
1508 ip4_header_t *ip[2];
Florin Corasc67cfd22018-10-01 21:59:18 -07001509 u8 error[2], pt[2];
Florin Coras1b255522018-06-01 12:22:23 -07001510
1511 ip4_local_last_check_t last_check = {
Neale Rannsbe2286b2018-12-09 12:54:51 -08001512 /*
1513 * 0.0.0.0 can appear as the source address of an IP packet,
1514 * as can any other address, hence the need to use the 'first'
1515 * member to make sure the .lbi is initialised for the first
1516 * packet.
1517 */
Florin Coras1b255522018-06-01 12:22:23 -07001518 .src = {.as_u32 = 0},
1519 .lbi = ~0,
Neale Rannsbe2286b2018-12-09 12:54:51 -08001520 .error = IP4_ERROR_UNKNOWN_PROTOCOL,
1521 .first = 1,
Florin Coras1b255522018-06-01 12:22:23 -07001522 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523
1524 from = vlib_frame_vector_args (frame);
1525 n_left_from = frame->n_vectors;
Dave Barach75fc8542016-10-11 16:16:02 -04001526
Ed Warnickecb9cada2015-12-08 15:45:58 -07001527 if (node->flags & VLIB_NODE_FLAG_TRACE)
1528 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
1529
Florin Coras1b255522018-06-01 12:22:23 -07001530 vlib_get_buffers (vm, from, bufs, n_left_from);
1531 b = bufs;
1532 next = nexts;
1533
1534 while (n_left_from >= 6)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001535 {
Florin Corasc67cfd22018-10-01 21:59:18 -07001536 u8 not_batch = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537
Florin Coras1b255522018-06-01 12:22:23 -07001538 /* Prefetch next iteration. */
1539 {
1540 vlib_prefetch_buffer_header (b[4], LOAD);
1541 vlib_prefetch_buffer_header (b[5], LOAD);
1542
1543 CLIB_PREFETCH (b[4]->data, CLIB_CACHE_LINE_BYTES, LOAD);
1544 CLIB_PREFETCH (b[5]->data, CLIB_CACHE_LINE_BYTES, LOAD);
1545 }
1546
1547 error[0] = error[1] = IP4_ERROR_UNKNOWN_PROTOCOL;
1548
1549 ip[0] = vlib_buffer_get_current (b[0]);
1550 ip[1] = vlib_buffer_get_current (b[1]);
1551
1552 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
1553 vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data;
1554
Florin Corasc67cfd22018-10-01 21:59:18 -07001555 pt[0] = ip4_local_classify (b[0], ip[0], &next[0]);
1556 pt[1] = ip4_local_classify (b[1], ip[1], &next[1]);
Florin Coras1b255522018-06-01 12:22:23 -07001557
Florin Corasc67cfd22018-10-01 21:59:18 -07001558 not_batch = pt[0] ^ pt[1];
1559
1560 if (head_of_feature_arc == 0 || (pt[0] && not_batch == 0))
Florin Coras1b255522018-06-01 12:22:23 -07001561 goto skip_checks;
1562
1563 if (PREDICT_TRUE (not_batch == 0))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001564 {
Florin Coras1b255522018-06-01 12:22:23 -07001565 ip4_local_check_l4_csum_x2 (vm, b, ip, error);
1566 ip4_local_check_src_x2 (b, ip, &last_check, error);
1567 }
1568 else
1569 {
Florin Corasc67cfd22018-10-01 21:59:18 -07001570 if (!pt[0])
Florin Coras20a14b92017-08-15 22:47:22 -07001571 {
Florin Coras1b255522018-06-01 12:22:23 -07001572 ip4_local_check_l4_csum (vm, b[0], ip[0], &error[0]);
1573 ip4_local_check_src (b[0], ip[0], &last_check, &error[0]);
Florin Coras20a14b92017-08-15 22:47:22 -07001574 }
Florin Corasc67cfd22018-10-01 21:59:18 -07001575 if (!pt[1])
Ed Warnickecb9cada2015-12-08 15:45:58 -07001576 {
Florin Coras1b255522018-06-01 12:22:23 -07001577 ip4_local_check_l4_csum (vm, b[1], ip[1], &error[1]);
1578 ip4_local_check_src (b[1], ip[1], &last_check, &error[1]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001579 }
1580 }
1581
Florin Coras1b255522018-06-01 12:22:23 -07001582 skip_checks:
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001583
Florin Coras1b255522018-06-01 12:22:23 -07001584 ip4_local_set_next_and_error (error_node, b[0], &next[0], error[0],
1585 head_of_feature_arc);
1586 ip4_local_set_next_and_error (error_node, b[1], &next[1], error[1],
1587 head_of_feature_arc);
Dave Barach75fc8542016-10-11 16:16:02 -04001588
Florin Coras1b255522018-06-01 12:22:23 -07001589 b += 2;
1590 next += 2;
1591 n_left_from -= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592 }
1593
Florin Coras1b255522018-06-01 12:22:23 -07001594 while (n_left_from > 0)
1595 {
1596 error[0] = IP4_ERROR_UNKNOWN_PROTOCOL;
1597
1598 ip[0] = vlib_buffer_get_current (b[0]);
1599 vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data;
Florin Corasc67cfd22018-10-01 21:59:18 -07001600 pt[0] = ip4_local_classify (b[0], ip[0], &next[0]);
Florin Coras1b255522018-06-01 12:22:23 -07001601
Florin Corasc67cfd22018-10-01 21:59:18 -07001602 if (head_of_feature_arc == 0 || pt[0])
Florin Coras1b255522018-06-01 12:22:23 -07001603 goto skip_check;
1604
1605 ip4_local_check_l4_csum (vm, b[0], ip[0], &error[0]);
1606 ip4_local_check_src (b[0], ip[0], &last_check, &error[0]);
1607
1608 skip_check:
1609
Florin Coras1b255522018-06-01 12:22:23 -07001610 ip4_local_set_next_and_error (error_node, b[0], &next[0], error[0],
1611 head_of_feature_arc);
1612
1613 b += 1;
1614 next += 1;
1615 n_left_from -= 1;
1616 }
1617
1618 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619 return frame->n_vectors;
1620}
1621
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001622VLIB_NODE_FN (ip4_local_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
1623 vlib_frame_t * frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05001624{
1625 return ip4_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1626}
1627
1628/* *INDENT-OFF* */
Neale Ranns32e1c012016-11-22 17:07:28 +00001629VLIB_REGISTER_NODE (ip4_local_node) =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001630{
Dave Barach68b0fb02017-02-28 15:15:56 -05001631 .name = "ip4-local",
1632 .vector_size = sizeof (u32),
1633 .format_trace = format_ip4_forward_next_trace,
1634 .n_next_nodes = IP_LOCAL_N_NEXT,
1635 .next_nodes =
Dave Barachd7cb1b52016-12-09 09:52:16 -05001636 {
Neale Rannsd91c1db2017-07-31 02:30:50 -07001637 [IP_LOCAL_NEXT_DROP] = "ip4-drop",
1638 [IP_LOCAL_NEXT_PUNT] = "ip4-punt",
Dave Barach68b0fb02017-02-28 15:15:56 -05001639 [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip4-udp-lookup",
Florin Coras20a14b92017-08-15 22:47:22 -07001640 [IP_LOCAL_NEXT_ICMP] = "ip4-icmp-input",
Juraj Sloboda3048b632018-10-02 11:13:53 +02001641 [IP_LOCAL_NEXT_REASSEMBLY] = "ip4-reassembly",
Florin Coras20a14b92017-08-15 22:47:22 -07001642 },
Dave Barach68b0fb02017-02-28 15:15:56 -05001643};
1644/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001645
Dave Barachd7cb1b52016-12-09 09:52:16 -05001646
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001647VLIB_NODE_FN (ip4_local_end_of_arc_node) (vlib_main_t * vm,
1648 vlib_node_runtime_t * node,
1649 vlib_frame_t * frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05001650{
1651 return ip4_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1652}
1653
1654/* *INDENT-OFF* */
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001655VLIB_REGISTER_NODE (ip4_local_end_of_arc_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001656 .name = "ip4-local-end-of-arc",
1657 .vector_size = sizeof (u32),
1658
1659 .format_trace = format_ip4_forward_next_trace,
1660 .sibling_of = "ip4-local",
1661};
1662
Dave Barach68b0fb02017-02-28 15:15:56 -05001663VNET_FEATURE_INIT (ip4_local_end_of_arc, static) = {
1664 .arc_name = "ip4-local",
1665 .node_name = "ip4-local-end-of-arc",
1666 .runs_before = 0, /* not before any other features */
1667};
1668/* *INDENT-ON* */
1669
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001670#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05001671void
1672ip4_register_protocol (u32 protocol, u32 node_index)
1673{
1674 vlib_main_t *vm = vlib_get_main ();
1675 ip4_main_t *im = &ip4_main;
1676 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001677
1678 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
Dave Barachd7cb1b52016-12-09 09:52:16 -05001679 lm->local_next_by_ip_protocol[protocol] =
1680 vlib_node_add_next (vm, ip4_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001681}
Neale Rannsb538dd82019-05-21 06:54:54 -07001682
1683void
1684ip4_unregister_protocol (u32 protocol)
1685{
1686 ip4_main_t *im = &ip4_main;
1687 ip_lookup_main_t *lm = &im->lookup_main;
1688
1689 ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
1690 lm->local_next_by_ip_protocol[protocol] = IP_LOCAL_NEXT_PUNT;
1691}
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001692#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693
1694static clib_error_t *
1695show_ip_local_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001696 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001697{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001698 ip4_main_t *im = &ip4_main;
1699 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001700 int i;
1701
1702 vlib_cli_output (vm, "Protocols handled by ip4_local");
Dave Barachd7cb1b52016-12-09 09:52:16 -05001703 for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001704 {
1705 if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT)
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001706 {
1707 u32 node_index = vlib_get_node (vm,
1708 ip4_local_node.index)->
1709 next_nodes[lm->local_next_by_ip_protocol[i]];
Neale Rannsb538dd82019-05-21 06:54:54 -07001710 vlib_cli_output (vm, "%U: %U", format_ip_protocol, i,
1711 format_vlib_node_name, vm, node_index);
Pierre Pfister1bfd3722017-09-18 11:40:32 +02001712 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713 }
1714 return 0;
1715}
1716
1717
1718
Billy McFall0683c9c2016-10-13 08:27:31 -04001719/*?
1720 * Display the set of protocols handled by the local IPv4 stack.
1721 *
1722 * @cliexpar
1723 * Example of how to display local protocol table:
1724 * @cliexstart{show ip local}
1725 * Protocols handled by ip4_local
1726 * 1
1727 * 17
1728 * 47
1729 * @cliexend
1730?*/
1731/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001732VLIB_CLI_COMMAND (show_ip_local, static) =
1733{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001734 .path = "show ip local",
1735 .function = show_ip_local_command_fn,
Billy McFall0683c9c2016-10-13 08:27:31 -04001736 .short_help = "show ip local",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737};
Billy McFall0683c9c2016-10-13 08:27:31 -04001738/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001739
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001740always_inline uword
1741ip4_arp_inline (vlib_main_t * vm,
1742 vlib_node_runtime_t * node,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001743 vlib_frame_t * frame, int is_glean)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001744{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001745 vnet_main_t *vnm = vnet_get_main ();
1746 ip4_main_t *im = &ip4_main;
1747 ip_lookup_main_t *lm = &im->lookup_main;
1748 u32 *from, *to_next_drop;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001749 uword n_left_from, n_left_to_next_drop, next_index;
Dave Barach49433ad2018-08-08 17:59:03 -04001750 u32 thread_index = vm->thread_index;
Neale Rannscd35e532018-08-31 02:51:45 -07001751 u64 seed;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001752
1753 if (node->flags & VLIB_NODE_FLAG_TRACE)
1754 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
1755
Neale Rannsc8352bc2018-08-29 10:23:58 -07001756 seed = throttle_seed (&im->arp_throttle, thread_index, vlib_time_now (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001757
1758 from = vlib_frame_vector_args (frame);
1759 n_left_from = frame->n_vectors;
1760 next_index = node->cached_next_index;
1761 if (next_index == IP4_ARP_NEXT_DROP)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001762 next_index = IP4_ARP_N_NEXT; /* point to first interface */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763
1764 while (n_left_from > 0)
1765 {
1766 vlib_get_next_frame (vm, node, IP4_ARP_NEXT_DROP,
1767 to_next_drop, n_left_to_next_drop);
1768
1769 while (n_left_from > 0 && n_left_to_next_drop > 0)
1770 {
Eyal Baribf9f02c2018-10-31 13:19:11 +02001771 u32 pi0, bi0, adj_index0, sw_if_index0;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001772 ip_adjacency_t *adj0;
Eyal Baribf9f02c2018-10-31 13:19:11 +02001773 vlib_buffer_t *p0, *b0;
1774 ip4_address_t resolve0;
1775 ethernet_arp_header_t *h0;
1776 vnet_hw_interface_t *hw_if0;
Neale Rannscd35e532018-08-31 02:51:45 -07001777 u64 r0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001778
1779 pi0 = from[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001780 p0 = vlib_get_buffer (vm, pi0);
1781
Ed Warnickecb9cada2015-12-08 15:45:58 -07001782 from += 1;
1783 n_left_from -= 1;
1784 to_next_drop[0] = pi0;
1785 to_next_drop += 1;
1786 n_left_to_next_drop -= 1;
1787
Eyal Baribf9f02c2018-10-31 13:19:11 +02001788 adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1789 adj0 = adj_get (adj_index0);
1790
1791 if (is_glean)
1792 {
1793 /* resolve the packet's destination */
1794 ip4_header_t *ip0 = vlib_buffer_get_current (p0);
1795 resolve0 = ip0->dst_address;
1796 }
1797 else
1798 {
1799 /* resolve the incomplete adj */
1800 resolve0 = adj0->sub_type.nbr.next_hop.ip4;
1801 }
1802
1803 /* combine the address and interface for the hash key */
1804 sw_if_index0 = adj0->rewrite_header.sw_if_index;
1805 r0 = (u64) resolve0.data_u32 << 32;
1806 r0 |= sw_if_index0;
1807
1808 if (throttle_check (&im->arp_throttle, thread_index, r0, seed))
1809 {
1810 p0->error = node->errors[IP4_ARP_ERROR_THROTTLED];
1811 continue;
1812 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001813
Neale Rannsb80c5362016-10-08 13:03:40 +01001814 /*
1815 * the adj has been updated to a rewrite but the node the DPO that got
1816 * us here hasn't - yet. no big deal. we'll drop while we wait.
1817 */
1818 if (IP_LOOKUP_NEXT_REWRITE == adj0->lookup_next_index)
Eyal Baribf9f02c2018-10-31 13:19:11 +02001819 {
1820 p0->error = node->errors[IP4_ARP_ERROR_RESOLVED];
1821 continue;
1822 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001823
Dave Barachd7cb1b52016-12-09 09:52:16 -05001824 /*
1825 * Can happen if the control-plane is programming tables
1826 * with traffic flowing; at least that's today's lame excuse.
1827 */
Neale Ranns32e1c012016-11-22 17:07:28 +00001828 if ((is_glean && adj0->lookup_next_index != IP_LOOKUP_NEXT_GLEAN)
1829 || (!is_glean && adj0->lookup_next_index != IP_LOOKUP_NEXT_ARP))
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001830 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001831 p0->error = node->errors[IP4_ARP_ERROR_NON_ARP_ADJ];
Eyal Baribf9f02c2018-10-31 13:19:11 +02001832 continue;
1833 }
1834 /* Send ARP request. */
1835 h0 =
1836 vlib_packet_template_get_packet (vm,
1837 &im->ip4_arp_request_packet_template,
1838 &bi0);
Eyal Baribf9f02c2018-10-31 13:19:11 +02001839 /* Seems we're out of buffers */
1840 if (PREDICT_FALSE (!h0))
1841 {
1842 p0->error = node->errors[IP4_ARP_ERROR_NO_BUFFERS];
1843 continue;
1844 }
1845
Dave Barachb19bf8d2019-05-31 08:41:34 -04001846 b0 = vlib_get_buffer (vm, bi0);
1847
1848 /* copy the persistent fields from the original */
1849 clib_memcpy_fast (b0->opaque2, p0->opaque2, sizeof (p0->opaque2));
1850
Eyal Baribf9f02c2018-10-31 13:19:11 +02001851 /* Add rewrite/encap string for ARP packet. */
1852 vnet_rewrite_one_header (adj0[0], h0, sizeof (ethernet_header_t));
1853
1854 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1855
1856 /* Src ethernet address in ARP header. */
Neale Ranns37029302018-08-10 05:30:06 -07001857 mac_address_from_bytes (&h0->ip4_over_ethernet[0].mac,
1858 hw_if0->hw_address);
Eyal Baribf9f02c2018-10-31 13:19:11 +02001859 if (is_glean)
1860 {
1861 /* The interface's source address is stashed in the Glean Adj */
1862 h0->ip4_over_ethernet[0].ip4 =
1863 adj0->sub_type.glean.receive_addr.ip4;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001864 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001865 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001866 {
Eyal Baribf9f02c2018-10-31 13:19:11 +02001867 /* Src IP address in ARP header. */
1868 if (ip4_src_address_for_packet (lm, sw_if_index0,
1869 &h0->ip4_over_ethernet[0].ip4))
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001870 {
Eyal Baribf9f02c2018-10-31 13:19:11 +02001871 /* No source address available */
1872 p0->error = node->errors[IP4_ARP_ERROR_NO_SOURCE_ADDRESS];
1873 vlib_buffer_free (vm, &bi0, 1);
1874 continue;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001875 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001876 }
Eyal Baribf9f02c2018-10-31 13:19:11 +02001877 h0->ip4_over_ethernet[1].ip4 = resolve0;
1878
1879 p0->error = node->errors[IP4_ARP_ERROR_REQUEST_SENT];
1880
1881 vlib_buffer_copy_trace_flag (vm, p0, bi0);
Eyal Baribf9f02c2018-10-31 13:19:11 +02001882 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1883 vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
1884
1885 vlib_buffer_advance (b0, -adj0->rewrite_header.data_bytes);
1886
1887 vlib_set_next_frame_buffer (vm, node,
1888 adj0->rewrite_header.next_index, bi0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001889 }
1890
1891 vlib_put_next_frame (vm, node, IP4_ARP_NEXT_DROP, n_left_to_next_drop);
1892 }
1893
1894 return frame->n_vectors;
1895}
1896
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001897VLIB_NODE_FN (ip4_arp_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
1898 vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001899{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001900 return (ip4_arp_inline (vm, node, frame, 0));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001901}
1902
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001903VLIB_NODE_FN (ip4_glean_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
1904 vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001905{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001906 return (ip4_arp_inline (vm, node, frame, 1));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001907}
1908
Dave Barachd7cb1b52016-12-09 09:52:16 -05001909static char *ip4_arp_error_strings[] = {
Eyal Baribf9f02c2018-10-31 13:19:11 +02001910 [IP4_ARP_ERROR_THROTTLED] = "ARP requests throttled",
1911 [IP4_ARP_ERROR_RESOLVED] = "ARP requests resolved",
1912 [IP4_ARP_ERROR_NO_BUFFERS] = "ARP requests out of buffer",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913 [IP4_ARP_ERROR_REQUEST_SENT] = "ARP requests sent",
1914 [IP4_ARP_ERROR_NON_ARP_ADJ] = "ARPs to non-ARP adjacencies",
Pierre Pfisterd076f192016-06-22 12:58:30 +01001915 [IP4_ARP_ERROR_NO_SOURCE_ADDRESS] = "no source address for ARP request",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001916};
1917
Neale Rannsf8686322017-11-29 02:39:53 -08001918/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001919VLIB_REGISTER_NODE (ip4_arp_node) =
1920{
Neale Rannsf8686322017-11-29 02:39:53 -08001921 .name = "ip4-arp",
1922 .vector_size = sizeof (u32),
1923 .format_trace = format_ip4_forward_next_trace,
1924 .n_errors = ARRAY_LEN (ip4_arp_error_strings),
1925 .error_strings = ip4_arp_error_strings,
1926 .n_next_nodes = IP4_ARP_N_NEXT,
1927 .next_nodes =
Dave Barachd7cb1b52016-12-09 09:52:16 -05001928 {
Neale Rannsf8686322017-11-29 02:39:53 -08001929 [IP4_ARP_NEXT_DROP] = "error-drop",
1930 },
1931};
Ed Warnickecb9cada2015-12-08 15:45:58 -07001932
Dave Barachd7cb1b52016-12-09 09:52:16 -05001933VLIB_REGISTER_NODE (ip4_glean_node) =
1934{
Neale Rannsf8686322017-11-29 02:39:53 -08001935 .name = "ip4-glean",
1936 .vector_size = sizeof (u32),
1937 .format_trace = format_ip4_forward_next_trace,
1938 .n_errors = ARRAY_LEN (ip4_arp_error_strings),
1939 .error_strings = ip4_arp_error_strings,
1940 .n_next_nodes = IP4_ARP_N_NEXT,
1941 .next_nodes = {
1942 [IP4_ARP_NEXT_DROP] = "error-drop",
1943 },
1944};
1945/* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001946
Ed Warnickecb9cada2015-12-08 15:45:58 -07001947#define foreach_notrace_ip4_arp_error \
Eyal Baribf9f02c2018-10-31 13:19:11 +02001948_(THROTTLED) \
1949_(RESOLVED) \
1950_(NO_BUFFERS) \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001951_(REQUEST_SENT) \
Eyal Baribf9f02c2018-10-31 13:19:11 +02001952_(NON_ARP_ADJ) \
1953_(NO_SOURCE_ADDRESS)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001954
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001955static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001956arp_notrace_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001957{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001958 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, ip4_arp_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959
1960 /* don't trace ARP request packets */
1961#define _(a) \
1962 vnet_pcap_drop_trace_filter_add_del \
1963 (rt->errors[IP4_ARP_ERROR_##a], \
1964 1 /* is_add */);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001965 foreach_notrace_ip4_arp_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001966#undef _
1967 return 0;
1968}
1969
Dave Barachd7cb1b52016-12-09 09:52:16 -05001970VLIB_INIT_FUNCTION (arp_notrace_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001971
1972
Damjan Marionc9dad5d2018-08-11 22:10:29 +02001973#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001974/* Send an ARP request to see if given destination is reachable on given interface. */
1975clib_error_t *
John Lo86376342018-06-11 20:14:49 -04001976ip4_probe_neighbor (vlib_main_t * vm, ip4_address_t * dst, u32 sw_if_index,
1977 u8 refresh)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001978{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001979 vnet_main_t *vnm = vnet_get_main ();
1980 ip4_main_t *im = &ip4_main;
1981 ethernet_arp_header_t *h;
1982 ip4_address_t *src;
1983 ip_interface_address_t *ia;
1984 ip_adjacency_t *adj;
1985 vnet_hw_interface_t *hi;
1986 vnet_sw_interface_t *si;
1987 vlib_buffer_t *b;
Neale Ranns7a272742017-05-30 02:08:14 -07001988 adj_index_t ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001989 u32 bi = 0;
John Lo86376342018-06-11 20:14:49 -04001990 u8 unicast_rewrite = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001991
1992 si = vnet_get_sw_interface (vnm, sw_if_index);
1993
1994 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
1995 {
1996 return clib_error_return (0, "%U: interface %U down",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001997 format_ip4_address, dst,
1998 format_vnet_sw_if_index_name, vnm,
1999 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002000 }
2001
Dave Barachd7cb1b52016-12-09 09:52:16 -05002002 src =
2003 ip4_interface_address_matching_destination (im, dst, sw_if_index, &ia);
2004 if (!src)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002005 {
2006 vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE;
Dave Barach75fc8542016-10-11 16:16:02 -04002007 return clib_error_return
Neale Ranns32e1c012016-11-22 17:07:28 +00002008 (0,
2009 "no matching interface address for destination %U (interface %U)",
2010 format_ip4_address, dst, format_vnet_sw_if_index_name, vnm,
2011 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002012 }
2013
Neale Ranns7a272742017-05-30 02:08:14 -07002014 h = vlib_packet_template_get_packet (vm,
2015 &im->ip4_arp_request_packet_template,
2016 &bi);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002017
John Lo084606b2018-06-19 15:27:48 -04002018 if (!h)
2019 return clib_error_return (0, "ARP request packet allocation failed");
2020
Ed Warnickecb9cada2015-12-08 15:45:58 -07002021 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Pavel Kotucek57808982017-08-02 08:20:19 +02002022 if (PREDICT_FALSE (!hi->hw_address))
2023 {
2024 return clib_error_return (0, "%U: interface %U do not support ip probe",
2025 format_ip4_address, dst,
2026 format_vnet_sw_if_index_name, vnm,
2027 sw_if_index);
2028 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002029
Neale Ranns37029302018-08-10 05:30:06 -07002030 mac_address_from_bytes (&h->ip4_over_ethernet[0].mac, hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002031
2032 h->ip4_over_ethernet[0].ip4 = src[0];
2033 h->ip4_over_ethernet[1].ip4 = dst[0];
2034
2035 b = vlib_get_buffer (vm, bi);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002036 vnet_buffer (b)->sw_if_index[VLIB_RX] =
2037 vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002038
Dave Barach59b25652017-09-10 15:04:27 -04002039 ip46_address_t nh = {
2040 .ip4 = *dst,
2041 };
2042
2043 ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP4,
2044 VNET_LINK_IP4, &nh, sw_if_index);
2045 adj = adj_get (ai);
2046
2047 /* Peer has been previously resolved, retrieve glean adj instead */
2048 if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE)
2049 {
John Lo86376342018-06-11 20:14:49 -04002050 if (refresh)
2051 unicast_rewrite = 1;
2052 else
2053 {
2054 adj_unlock (ai);
2055 ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP4,
2056 VNET_LINK_IP4, sw_if_index, &nh);
2057 adj = adj_get (ai);
2058 }
Dave Barach59b25652017-09-10 15:04:27 -04002059 }
2060
Ed Warnickecb9cada2015-12-08 15:45:58 -07002061 /* Add encapsulation string for software interface (e.g. ethernet header). */
2062 vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
John Lo86376342018-06-11 20:14:49 -04002063 if (unicast_rewrite)
2064 {
2065 u16 *etype = vlib_buffer_get_current (b) - 2;
2066 etype[0] = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
2067 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002068 vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
2069
2070 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002071 vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
2072 u32 *to_next = vlib_frame_vector_args (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002073 to_next[0] = bi;
2074 f->n_vectors = 1;
2075 vlib_put_frame_to_node (vm, hi->output_node_index, f);
2076 }
2077
Neale Ranns7a272742017-05-30 02:08:14 -07002078 adj_unlock (ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002079 return /* no error */ 0;
2080}
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002081#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07002082
Dave Barachd7cb1b52016-12-09 09:52:16 -05002083typedef enum
2084{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002085 IP4_REWRITE_NEXT_DROP,
Chris Luke816f3e12016-06-14 16:24:47 -04002086 IP4_REWRITE_NEXT_ICMP_ERROR,
Ole Troan313f7e22018-04-10 16:02:51 +02002087 IP4_REWRITE_NEXT_FRAGMENT,
2088 IP4_REWRITE_N_NEXT /* Last */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089} ip4_rewrite_next_t;
2090
Neale Ranns889fe942017-06-01 05:43:19 -04002091/**
2092 * This bits of an IPv4 address to mask to construct a multicast
2093 * MAC address
2094 */
2095#if CLIB_ARCH_IS_BIG_ENDIAN
2096#define IP4_MCAST_ADDR_MASK 0x007fffff
2097#else
2098#define IP4_MCAST_ADDR_MASK 0xffff7f00
2099#endif
2100
Ole Troan8a9c8f12018-05-18 11:01:31 +02002101always_inline void
2102ip4_mtu_check (vlib_buffer_t * b, u16 packet_len,
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002103 u16 adj_packet_bytes, bool df, u16 * next, u32 * error)
Ole Troan8a9c8f12018-05-18 11:01:31 +02002104{
2105 if (packet_len > adj_packet_bytes)
2106 {
2107 *error = IP4_ERROR_MTU_EXCEEDED;
2108 if (df)
2109 {
2110 icmp4_error_set_vnet_buffer
2111 (b, ICMP4_destination_unreachable,
2112 ICMP4_destination_unreachable_fragmentation_needed_and_dont_fragment_set,
2113 adj_packet_bytes);
2114 *next = IP4_REWRITE_NEXT_ICMP_ERROR;
2115 }
2116 else
2117 {
Ole Troan313f7e22018-04-10 16:02:51 +02002118 /* IP fragmentation */
Ole Troan282093f2018-09-19 12:38:51 +02002119 ip_frag_set_vnet_buffer (b, adj_packet_bytes,
Ole Troanb3655e52018-08-16 22:08:49 +02002120 IP4_FRAG_NEXT_IP4_REWRITE, 0);
Ole Troan313f7e22018-04-10 16:02:51 +02002121 *next = IP4_REWRITE_NEXT_FRAGMENT;
Ole Troan8a9c8f12018-05-18 11:01:31 +02002122 }
2123 }
2124}
2125
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002126/* Decrement TTL & update checksum.
2127 Works either endian, so no need for byte swap. */
2128static_always_inline void
2129ip4_ttl_and_checksum_check (vlib_buffer_t * b, ip4_header_t * ip, u16 * next,
2130 u32 * error)
2131{
2132 i32 ttl;
2133 u32 checksum;
2134 if (PREDICT_FALSE (b->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED))
2135 {
2136 b->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
2137 return;
2138 }
2139
2140 ttl = ip->ttl;
2141
2142 /* Input node should have reject packets with ttl 0. */
2143 ASSERT (ip->ttl > 0);
2144
2145 checksum = ip->checksum + clib_host_to_net_u16 (0x0100);
2146 checksum += checksum >= 0xffff;
2147
2148 ip->checksum = checksum;
2149 ttl -= 1;
2150 ip->ttl = ttl;
2151
2152 /*
2153 * If the ttl drops below 1 when forwarding, generate
2154 * an ICMP response.
2155 */
2156 if (PREDICT_FALSE (ttl <= 0))
2157 {
2158 *error = IP4_ERROR_TIME_EXPIRED;
2159 vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
2160 icmp4_error_set_vnet_buffer (b, ICMP4_time_exceeded,
2161 ICMP4_time_exceeded_ttl_exceeded_in_transit,
2162 0);
2163 *next = IP4_REWRITE_NEXT_ICMP_ERROR;
2164 }
2165
2166 /* Verify checksum. */
2167 ASSERT ((ip->checksum == ip4_header_checksum (ip)) ||
2168 (b->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM));
2169}
2170
2171
Ed Warnickecb9cada2015-12-08 15:45:58 -07002172always_inline uword
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002173ip4_rewrite_inline_with_gso (vlib_main_t * vm,
2174 vlib_node_runtime_t * node,
2175 vlib_frame_t * frame,
2176 int do_counters, int is_midchain, int is_mcast,
2177 int do_gso)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002178{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002179 ip_lookup_main_t *lm = &ip4_main.lookup_main;
2180 u32 *from = vlib_frame_vector_args (frame);
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002181 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2182 u16 nexts[VLIB_FRAME_SIZE], *next;
2183 u32 n_left_from;
Dave Barachd7cb1b52016-12-09 09:52:16 -05002184 vlib_node_runtime_t *error_node =
2185 vlib_node_get_runtime (vm, ip4_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002186
2187 n_left_from = frame->n_vectors;
Damjan Marion067cd622018-07-11 12:47:43 +02002188 u32 thread_index = vm->thread_index;
Dave Barach75fc8542016-10-11 16:16:02 -04002189
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002190 vlib_get_buffers (vm, from, bufs, n_left_from);
2191 clib_memset_u16 (nexts, IP4_REWRITE_NEXT_DROP, n_left_from);
2192
2193 if (n_left_from >= 6)
2194 {
2195 int i;
Simon Zhang5a5a8692018-11-26 17:15:24 +08002196 for (i = 2; i < 6; i++)
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002197 vlib_prefetch_buffer_header (bufs[i], LOAD);
2198 }
2199
2200 next = nexts;
2201 b = bufs;
2202 while (n_left_from >= 8)
2203 {
2204 ip_adjacency_t *adj0, *adj1;
2205 ip4_header_t *ip0, *ip1;
2206 u32 rw_len0, error0, adj_index0;
2207 u32 rw_len1, error1, adj_index1;
2208 u32 tx_sw_if_index0, tx_sw_if_index1;
2209 u8 *p;
2210
2211 vlib_prefetch_buffer_header (b[6], LOAD);
2212 vlib_prefetch_buffer_header (b[7], LOAD);
2213
2214 adj_index0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
2215 adj_index1 = vnet_buffer (b[1])->ip.adj_index[VLIB_TX];
2216
2217 /*
2218 * pre-fetch the per-adjacency counters
2219 */
2220 if (do_counters)
2221 {
2222 vlib_prefetch_combined_counter (&adjacency_counters,
2223 thread_index, adj_index0);
2224 vlib_prefetch_combined_counter (&adjacency_counters,
2225 thread_index, adj_index1);
2226 }
2227
2228 ip0 = vlib_buffer_get_current (b[0]);
2229 ip1 = vlib_buffer_get_current (b[1]);
2230
2231 error0 = error1 = IP4_ERROR_NONE;
2232
2233 ip4_ttl_and_checksum_check (b[0], ip0, next + 0, &error0);
2234 ip4_ttl_and_checksum_check (b[1], ip1, next + 1, &error1);
2235
2236 /* Rewrite packet header and updates lengths. */
2237 adj0 = adj_get (adj_index0);
2238 adj1 = adj_get (adj_index1);
2239
2240 /* Worth pipelining. No guarantee that adj0,1 are hot... */
2241 rw_len0 = adj0[0].rewrite_header.data_bytes;
2242 rw_len1 = adj1[0].rewrite_header.data_bytes;
2243 vnet_buffer (b[0])->ip.save_rewrite_length = rw_len0;
2244 vnet_buffer (b[1])->ip.save_rewrite_length = rw_len1;
2245
2246 p = vlib_buffer_get_current (b[2]);
2247 CLIB_PREFETCH (p - CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES, STORE);
2248 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
2249
2250 p = vlib_buffer_get_current (b[3]);
2251 CLIB_PREFETCH (p - CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES, STORE);
2252 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
2253
2254 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002255 u16 ip0_len = clib_net_to_host_u16 (ip0->length);
2256 u16 ip1_len = clib_net_to_host_u16 (ip1->length);
2257
2258 if (do_gso && (b[0]->flags & VNET_BUFFER_F_GSO))
2259 ip0_len = gso_mtu_sz (b[0]);
2260 if (do_gso && (b[1]->flags & VNET_BUFFER_F_GSO))
2261 ip1_len = gso_mtu_sz (b[1]);
2262
2263 ip4_mtu_check (b[0], ip0_len,
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002264 adj0[0].rewrite_header.max_l3_packet_bytes,
2265 ip0->flags_and_fragment_offset &
2266 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT),
2267 next + 0, &error0);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002268 ip4_mtu_check (b[1], ip1_len,
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002269 adj1[0].rewrite_header.max_l3_packet_bytes,
2270 ip1->flags_and_fragment_offset &
2271 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT),
2272 next + 1, &error1);
2273
2274 if (is_mcast)
2275 {
2276 error0 = ((adj0[0].rewrite_header.sw_if_index ==
2277 vnet_buffer (b[0])->sw_if_index[VLIB_RX]) ?
2278 IP4_ERROR_SAME_INTERFACE : error0);
2279 error1 = ((adj1[0].rewrite_header.sw_if_index ==
2280 vnet_buffer (b[1])->sw_if_index[VLIB_RX]) ?
2281 IP4_ERROR_SAME_INTERFACE : error1);
2282 }
2283
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002284 /* Don't adjust the buffer for ttl issue; icmp-error node wants
Jim Thompsonf324dec2019-04-08 03:22:21 -05002285 * to see the IP header */
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002286 if (PREDICT_TRUE (error0 == IP4_ERROR_NONE))
2287 {
2288 u32 next_index = adj0[0].rewrite_header.next_index;
2289 b[0]->current_data -= rw_len0;
2290 b[0]->current_length += rw_len0;
2291 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
2292 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = tx_sw_if_index0;
2293
2294 if (PREDICT_FALSE
2295 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
2296 vnet_feature_arc_start (lm->output_feature_arc_index,
2297 tx_sw_if_index0, &next_index, b[0]);
2298 next[0] = next_index;
2299 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04002300 else
2301 {
2302 b[0]->error = error_node->errors[error0];
2303 }
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002304 if (PREDICT_TRUE (error1 == IP4_ERROR_NONE))
2305 {
2306 u32 next_index = adj1[0].rewrite_header.next_index;
2307 b[1]->current_data -= rw_len1;
2308 b[1]->current_length += rw_len1;
2309
2310 tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
2311 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = tx_sw_if_index1;
2312
2313 if (PREDICT_FALSE
2314 (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
2315 vnet_feature_arc_start (lm->output_feature_arc_index,
2316 tx_sw_if_index1, &next_index, b[1]);
2317 next[1] = next_index;
2318 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04002319 else
2320 {
2321 b[1]->error = error_node->errors[error1];
2322 }
Neale Ranns25edf142019-03-22 08:12:48 +00002323 if (is_midchain)
2324 {
2325 calc_checksums (vm, b[0]);
2326 calc_checksums (vm, b[1]);
2327 }
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002328 /* Guess we are only writing on simple Ethernet header. */
2329 vnet_rewrite_two_headers (adj0[0], adj1[0],
2330 ip0, ip1, sizeof (ethernet_header_t));
2331
2332 /*
2333 * Bump the per-adjacency counters
2334 */
2335 if (do_counters)
2336 {
2337 vlib_increment_combined_counter
2338 (&adjacency_counters,
2339 thread_index,
2340 adj_index0, 1, vlib_buffer_length_in_chain (vm, b[0]) + rw_len0);
2341
2342 vlib_increment_combined_counter
2343 (&adjacency_counters,
2344 thread_index,
2345 adj_index1, 1, vlib_buffer_length_in_chain (vm, b[1]) + rw_len1);
2346 }
2347
2348 if (is_midchain)
2349 {
Neale Ranns25edf142019-03-22 08:12:48 +00002350 if (adj0->sub_type.midchain.fixup_func)
2351 adj0->sub_type.midchain.fixup_func
2352 (vm, adj0, b[0], adj0->sub_type.midchain.fixup_data);
2353 if (adj1->sub_type.midchain.fixup_func)
2354 adj1->sub_type.midchain.fixup_func
2355 (vm, adj1, b[1], adj1->sub_type.midchain.fixup_data);
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002356 }
2357
2358 if (is_mcast)
2359 {
2360 /*
2361 * copy bytes from the IP address into the MAC rewrite
2362 */
2363 vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK,
2364 adj0->rewrite_header.dst_mcast_offset,
2365 &ip0->dst_address.as_u32, (u8 *) ip0);
2366 vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK,
Zhiyong Yangb2ecc5d2018-12-13 14:09:40 +08002367 adj1->rewrite_header.dst_mcast_offset,
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002368 &ip1->dst_address.as_u32, (u8 *) ip1);
2369 }
2370
2371 next += 2;
2372 b += 2;
2373 n_left_from -= 2;
2374 }
2375
Ed Warnickecb9cada2015-12-08 15:45:58 -07002376 while (n_left_from > 0)
2377 {
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002378 ip_adjacency_t *adj0;
2379 ip4_header_t *ip0;
2380 u32 rw_len0, adj_index0, error0;
2381 u32 tx_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002382
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002383 adj_index0 = vnet_buffer (b[0])->ip.adj_index[VLIB_TX];
2384
2385 adj0 = adj_get (adj_index0);
2386
2387 if (do_counters)
2388 vlib_prefetch_combined_counter (&adjacency_counters,
2389 thread_index, adj_index0);
2390
2391 ip0 = vlib_buffer_get_current (b[0]);
2392
2393 error0 = IP4_ERROR_NONE;
2394
2395 ip4_ttl_and_checksum_check (b[0], ip0, next + 0, &error0);
2396
2397
2398 /* Update packet buffer attributes/set output interface. */
2399 rw_len0 = adj0[0].rewrite_header.data_bytes;
2400 vnet_buffer (b[0])->ip.save_rewrite_length = rw_len0;
2401
2402 /* Check MTU of outgoing interface. */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002403 u16 ip0_len = clib_net_to_host_u16 (ip0->length);
2404 if (do_gso && (b[0]->flags & VNET_BUFFER_F_GSO))
2405 ip0_len = gso_mtu_sz (b[0]);
2406
2407 ip4_mtu_check (b[0], ip0_len,
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002408 adj0[0].rewrite_header.max_l3_packet_bytes,
2409 ip0->flags_and_fragment_offset &
2410 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT),
2411 next + 0, &error0);
2412
2413 if (is_mcast)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002414 {
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002415 error0 = ((adj0[0].rewrite_header.sw_if_index ==
2416 vnet_buffer (b[0])->sw_if_index[VLIB_RX]) ?
2417 IP4_ERROR_SAME_INTERFACE : error0);
2418 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002419
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002420 /* Don't adjust the buffer for ttl issue; icmp-error node wants
Jim Thompsonf324dec2019-04-08 03:22:21 -05002421 * to see the IP header */
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002422 if (PREDICT_TRUE (error0 == IP4_ERROR_NONE))
2423 {
2424 u32 next_index = adj0[0].rewrite_header.next_index;
2425 b[0]->current_data -= rw_len0;
2426 b[0]->current_length += rw_len0;
2427 tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
2428 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = tx_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002429
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002430 if (PREDICT_FALSE
2431 (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
2432 vnet_feature_arc_start (lm->output_feature_arc_index,
2433 tx_sw_if_index0, &next_index, b[0]);
2434 next[0] = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002435 }
Kingwel Xiecb36a1d2019-03-20 03:45:47 -04002436 else
2437 {
2438 b[0]->error = error_node->errors[error0];
2439 }
Neale Ranns25edf142019-03-22 08:12:48 +00002440 if (is_midchain)
2441 {
2442 calc_checksums (vm, b[0]);
2443 }
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002444 /* Guess we are only writing on simple Ethernet header. */
2445 vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t));
2446
2447 if (do_counters)
2448 vlib_increment_combined_counter
2449 (&adjacency_counters,
2450 thread_index, adj_index0, 1,
2451 vlib_buffer_length_in_chain (vm, b[0]) + rw_len0);
2452
2453 if (is_midchain)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002454 {
Neale Ranns25edf142019-03-22 08:12:48 +00002455 if (adj0->sub_type.midchain.fixup_func)
2456 adj0->sub_type.midchain.fixup_func
2457 (vm, adj0, b[0], adj0->sub_type.midchain.fixup_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002458 }
Dave Barach75fc8542016-10-11 16:16:02 -04002459
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002460 if (is_mcast)
2461 {
2462 /*
2463 * copy bytes from the IP address into the MAC rewrite
2464 */
2465 vnet_ip_mcast_fixup_header (IP4_MCAST_ADDR_MASK,
2466 adj0->rewrite_header.dst_mcast_offset,
2467 &ip0->dst_address.as_u32, (u8 *) ip0);
2468 }
2469
2470 next += 1;
2471 b += 1;
2472 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002473 }
2474
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002475
Ed Warnickecb9cada2015-12-08 15:45:58 -07002476 /* Need to do trace after rewrites to pick up new packet data. */
2477 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Rannsf06aea52016-11-29 06:51:37 -08002478 ip4_forward_next_trace (vm, node, frame, VLIB_TX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002479
Damjan Marionca3ff1a2018-08-23 09:49:46 +02002480 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002481 return frame->n_vectors;
2482}
2483
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02002484always_inline uword
2485ip4_rewrite_inline (vlib_main_t * vm,
2486 vlib_node_runtime_t * node,
2487 vlib_frame_t * frame,
2488 int do_counters, int is_midchain, int is_mcast)
2489{
2490 vnet_main_t *vnm = vnet_get_main ();
2491 if (PREDICT_FALSE (vnm->interface_main.gso_interface_count > 0))
2492 return ip4_rewrite_inline_with_gso (vm, node, frame, do_counters,
2493 is_midchain, is_mcast,
2494 1 /* do_gso */ );
2495 else
2496 return ip4_rewrite_inline_with_gso (vm, node, frame, do_counters,
2497 is_midchain, is_mcast,
2498 0 /* no do_gso */ );
2499}
2500
Dave Barach132d51d2016-07-07 10:10:17 -04002501
Neale Rannsf06aea52016-11-29 06:51:37 -08002502/** @brief IPv4 rewrite node.
2503 @node ip4-rewrite
Dave Barach132d51d2016-07-07 10:10:17 -04002504
2505 This is the IPv4 transit-rewrite node: decrement TTL, fix the ipv4
2506 header checksum, fetch the ip adjacency, check the outbound mtu,
2507 apply the adjacency rewrite, and send pkts to the adjacency
2508 rewrite header's rewrite_next_index.
2509
2510 @param vm vlib_main_t corresponding to the current thread
2511 @param node vlib_node_runtime_t
2512 @param frame vlib_frame_t whose contents should be dispatched
2513
2514 @par Graph mechanics: buffer metadata, next index usage
2515
2516 @em Uses:
2517 - <code>vnet_buffer(b)->ip.adj_index[VLIB_TX]</code>
2518 - the rewrite adjacency index
2519 - <code>adj->lookup_next_index</code>
2520 - Must be IP_LOOKUP_NEXT_REWRITE or IP_LOOKUP_NEXT_ARP, otherwise
Dave Barach75fc8542016-10-11 16:16:02 -04002521 the packet will be dropped.
Dave Barach132d51d2016-07-07 10:10:17 -04002522 - <code>adj->rewrite_header</code>
2523 - Rewrite string length, rewrite string, next_index
2524
2525 @em Sets:
2526 - <code>b->current_data, b->current_length</code>
2527 - Updated net of applying the rewrite string
2528
2529 <em>Next Indices:</em>
2530 - <code> adj->rewrite_header.next_index </code>
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002531 or @c ip4-drop
Dave Barach132d51d2016-07-07 10:10:17 -04002532*/
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002533
2534VLIB_NODE_FN (ip4_rewrite_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2535 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002536{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002537 if (adj_are_counters_enabled ())
2538 return ip4_rewrite_inline (vm, node, frame, 1, 0, 0);
2539 else
2540 return ip4_rewrite_inline (vm, node, frame, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002541}
2542
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002543VLIB_NODE_FN (ip4_rewrite_bcast_node) (vlib_main_t * vm,
2544 vlib_node_runtime_t * node,
2545 vlib_frame_t * frame)
Neale Ranns1855b8e2018-07-11 10:31:26 -07002546{
2547 if (adj_are_counters_enabled ())
2548 return ip4_rewrite_inline (vm, node, frame, 1, 0, 0);
2549 else
2550 return ip4_rewrite_inline (vm, node, frame, 0, 0, 0);
2551}
2552
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002553VLIB_NODE_FN (ip4_midchain_node) (vlib_main_t * vm,
2554 vlib_node_runtime_t * node,
2555 vlib_frame_t * frame)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002556{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002557 if (adj_are_counters_enabled ())
2558 return ip4_rewrite_inline (vm, node, frame, 1, 1, 0);
2559 else
2560 return ip4_rewrite_inline (vm, node, frame, 0, 1, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002561}
2562
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002563VLIB_NODE_FN (ip4_rewrite_mcast_node) (vlib_main_t * vm,
2564 vlib_node_runtime_t * node,
2565 vlib_frame_t * frame)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002566{
Neale Ranns9c6a6132017-02-21 05:33:14 -08002567 if (adj_are_counters_enabled ())
2568 return ip4_rewrite_inline (vm, node, frame, 1, 0, 1);
2569 else
2570 return ip4_rewrite_inline (vm, node, frame, 0, 0, 1);
Neale Ranns32e1c012016-11-22 17:07:28 +00002571}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002572
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002573VLIB_NODE_FN (ip4_mcast_midchain_node) (vlib_main_t * vm,
2574 vlib_node_runtime_t * node,
2575 vlib_frame_t * frame)
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002576{
2577 if (adj_are_counters_enabled ())
2578 return ip4_rewrite_inline (vm, node, frame, 1, 1, 1);
2579 else
2580 return ip4_rewrite_inline (vm, node, frame, 0, 1, 1);
2581}
2582
Neale Ranns32e1c012016-11-22 17:07:28 +00002583/* *INDENT-OFF* */
2584VLIB_REGISTER_NODE (ip4_rewrite_node) = {
Neale Ranns32e1c012016-11-22 17:07:28 +00002585 .name = "ip4-rewrite",
2586 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07002587
Neale Ranns32e1c012016-11-22 17:07:28 +00002588 .format_trace = format_ip4_rewrite_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002589
Ole Troan313f7e22018-04-10 16:02:51 +02002590 .n_next_nodes = IP4_REWRITE_N_NEXT,
Neale Ranns32e1c012016-11-22 17:07:28 +00002591 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002592 [IP4_REWRITE_NEXT_DROP] = "ip4-drop",
Neale Ranns32e1c012016-11-22 17:07:28 +00002593 [IP4_REWRITE_NEXT_ICMP_ERROR] = "ip4-icmp-error",
Ole Troan313f7e22018-04-10 16:02:51 +02002594 [IP4_REWRITE_NEXT_FRAGMENT] = "ip4-frag",
Neale Ranns32e1c012016-11-22 17:07:28 +00002595 },
2596};
Neale Ranns1855b8e2018-07-11 10:31:26 -07002597
2598VLIB_REGISTER_NODE (ip4_rewrite_bcast_node) = {
Neale Ranns1855b8e2018-07-11 10:31:26 -07002599 .name = "ip4-rewrite-bcast",
2600 .vector_size = sizeof (u32),
2601
2602 .format_trace = format_ip4_rewrite_trace,
2603 .sibling_of = "ip4-rewrite",
2604};
Neale Ranns32e1c012016-11-22 17:07:28 +00002605
2606VLIB_REGISTER_NODE (ip4_rewrite_mcast_node) = {
Neale Ranns32e1c012016-11-22 17:07:28 +00002607 .name = "ip4-rewrite-mcast",
2608 .vector_size = sizeof (u32),
2609
2610 .format_trace = format_ip4_rewrite_trace,
2611 .sibling_of = "ip4-rewrite",
2612};
Neale Ranns32e1c012016-11-22 17:07:28 +00002613
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002614VLIB_REGISTER_NODE (ip4_mcast_midchain_node) = {
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002615 .name = "ip4-mcast-midchain",
2616 .vector_size = sizeof (u32),
2617
2618 .format_trace = format_ip4_rewrite_trace,
2619 .sibling_of = "ip4-rewrite",
2620};
Neale Ranns0f26c5a2017-03-01 15:12:11 -08002621
Neale Ranns32e1c012016-11-22 17:07:28 +00002622VLIB_REGISTER_NODE (ip4_midchain_node) = {
Neale Ranns32e1c012016-11-22 17:07:28 +00002623 .name = "ip4-midchain",
2624 .vector_size = sizeof (u32),
2625 .format_trace = format_ip4_forward_next_trace,
2626 .sibling_of = "ip4-rewrite",
2627};
Neale Ranns32e1c012016-11-22 17:07:28 +00002628/* *INDENT-ON */
Damjan Marion1c80e832016-05-11 23:07:18 +02002629
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002630static int
Dave Barachd7cb1b52016-12-09 09:52:16 -05002631ip4_lookup_validate (ip4_address_t * a, u32 fib_index0)
2632{
2633 ip4_fib_mtrie_t *mtrie0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002634 ip4_fib_mtrie_leaf_t leaf0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002635 u32 lbi0;
Dave Barach75fc8542016-10-11 16:16:02 -04002636
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002637 mtrie0 = &ip4_fib_get (fib_index0)->mtrie;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002638
Neale Ranns04a75e32017-03-23 06:46:01 -07002639 leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002640 leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, a, 2);
2641 leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, a, 3);
Dave Barach75fc8542016-10-11 16:16:02 -04002642
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002643 lbi0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
Dave Barach75fc8542016-10-11 16:16:02 -04002644
Dave Barachd7cb1b52016-12-09 09:52:16 -05002645 return lbi0 == ip4_fib_table_lookup_lb (ip4_fib_get (fib_index0), a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002646}
Dave Barach75fc8542016-10-11 16:16:02 -04002647
Ed Warnickecb9cada2015-12-08 15:45:58 -07002648static clib_error_t *
2649test_lookup_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002650 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651{
Billy McFall309fe062016-10-14 07:37:33 -04002652 ip4_fib_t *fib;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002653 u32 table_id = 0;
2654 f64 count = 1;
2655 u32 n;
2656 int i;
2657 ip4_address_t ip4_base_address;
2658 u64 errors = 0;
2659
Dave Barachd7cb1b52016-12-09 09:52:16 -05002660 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2661 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002662 if (unformat (input, "table %d", &table_id))
Dave Barachd7cb1b52016-12-09 09:52:16 -05002663 {
2664 /* Make sure the entry exists. */
2665 fib = ip4_fib_get (table_id);
2666 if ((fib) && (fib->index != table_id))
2667 return clib_error_return (0, "<fib-index> %d does not exist",
2668 table_id);
2669 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002670 else if (unformat (input, "count %f", &count))
2671 ;
2672
2673 else if (unformat (input, "%U",
2674 unformat_ip4_address, &ip4_base_address))
Dave Barachd7cb1b52016-12-09 09:52:16 -05002675 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002676 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05002677 return clib_error_return (0, "unknown input `%U'",
2678 format_unformat_error, input);
2679 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002680
2681 n = count;
2682
2683 for (i = 0; i < n; i++)
2684 {
2685 if (!ip4_lookup_validate (&ip4_base_address, table_id))
Dave Barachd7cb1b52016-12-09 09:52:16 -05002686 errors++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002687
Dave Barach75fc8542016-10-11 16:16:02 -04002688 ip4_base_address.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -05002689 clib_host_to_net_u32 (1 +
2690 clib_net_to_host_u32 (ip4_base_address.as_u32));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002691 }
2692
Dave Barach75fc8542016-10-11 16:16:02 -04002693 if (errors)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002694 vlib_cli_output (vm, "%llu errors out of %d lookups\n", errors, n);
2695 else
2696 vlib_cli_output (vm, "No errors in %d lookups\n", n);
2697
2698 return 0;
2699}
2700
Billy McFall0683c9c2016-10-13 08:27:31 -04002701/*?
2702 * Perform a lookup of an IPv4 Address (or range of addresses) in the
2703 * given FIB table to determine if there is a conflict with the
2704 * adjacency table. The fib-id can be determined by using the
2705 * '<em>show ip fib</em>' command. If fib-id is not entered, default value
2706 * of 0 is used.
2707 *
2708 * @todo This command uses fib-id, other commands use table-id (not
2709 * just a name, they are different indexes). Would like to change this
2710 * to table-id for consistency.
2711 *
2712 * @cliexpar
2713 * Example of how to run the test lookup command:
2714 * @cliexstart{test lookup 172.16.1.1 table 1 count 2}
2715 * No errors in 2 lookups
2716 * @cliexend
2717?*/
2718/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002719VLIB_CLI_COMMAND (lookup_test_command, static) =
2720{
2721 .path = "test lookup",
2722 .short_help = "test lookup <ipv4-addr> [table <fib-id>] [count <nn>]",
2723 .function = test_lookup_command_fn,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002724};
Billy McFall0683c9c2016-10-13 08:27:31 -04002725/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002726
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002727#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05002728int
2729vnet_set_ip4_flow_hash (u32 table_id, u32 flow_hash_config)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002730{
Neale Ranns107e7d42017-04-11 09:55:19 -07002731 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002732
Neale Ranns107e7d42017-04-11 09:55:19 -07002733 fib_index = fib_table_find (FIB_PROTOCOL_IP4, table_id);
2734
2735 if (~0 == fib_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002736 return VNET_API_ERROR_NO_SUCH_FIB;
2737
Neale Ranns227038a2017-04-21 01:07:59 -07002738 fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP4,
2739 flow_hash_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002740
Ed Warnickecb9cada2015-12-08 15:45:58 -07002741 return 0;
2742}
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002743#endif
Dave Barach75fc8542016-10-11 16:16:02 -04002744
Ed Warnickecb9cada2015-12-08 15:45:58 -07002745static clib_error_t *
2746set_ip_flow_hash_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002747 unformat_input_t * input,
2748 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002749{
2750 int matched = 0;
2751 u32 table_id = 0;
2752 u32 flow_hash_config = 0;
2753 int rv;
2754
Dave Barachd7cb1b52016-12-09 09:52:16 -05002755 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2756 {
2757 if (unformat (input, "table %d", &table_id))
2758 matched = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002759#define _(a,v) \
2760 else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;}
Dave Barachd7cb1b52016-12-09 09:52:16 -05002761 foreach_flow_hash_bit
Ed Warnickecb9cada2015-12-08 15:45:58 -07002762#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -05002763 else
2764 break;
2765 }
Dave Barach75fc8542016-10-11 16:16:02 -04002766
Ed Warnickecb9cada2015-12-08 15:45:58 -07002767 if (matched == 0)
2768 return clib_error_return (0, "unknown input `%U'",
Dave Barachd7cb1b52016-12-09 09:52:16 -05002769 format_unformat_error, input);
Dave Barach75fc8542016-10-11 16:16:02 -04002770
Ed Warnickecb9cada2015-12-08 15:45:58 -07002771 rv = vnet_set_ip4_flow_hash (table_id, flow_hash_config);
2772 switch (rv)
2773 {
2774 case 0:
2775 break;
Dave Barach75fc8542016-10-11 16:16:02 -04002776
Ed Warnickecb9cada2015-12-08 15:45:58 -07002777 case VNET_API_ERROR_NO_SUCH_FIB:
2778 return clib_error_return (0, "no such FIB table %d", table_id);
Dave Barach75fc8542016-10-11 16:16:02 -04002779
Ed Warnickecb9cada2015-12-08 15:45:58 -07002780 default:
2781 clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2782 break;
2783 }
Dave Barach75fc8542016-10-11 16:16:02 -04002784
Ed Warnickecb9cada2015-12-08 15:45:58 -07002785 return 0;
2786}
Dave Barach75fc8542016-10-11 16:16:02 -04002787
Billy McFall0683c9c2016-10-13 08:27:31 -04002788/*?
2789 * Configure the set of IPv4 fields used by the flow hash.
2790 *
2791 * @cliexpar
2792 * Example of how to set the flow hash on a given table:
2793 * @cliexcmd{set ip flow-hash table 7 dst sport dport proto}
2794 * Example of display the configured flow hash:
2795 * @cliexstart{show ip fib}
Billy McFallebb9a6a2016-10-17 11:35:32 -04002796 * ipv4-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2797 * 0.0.0.0/0
2798 * unicast-ip4-chain
2799 * [@0]: dpo-load-balance: [index:0 buckets:1 uRPF:0 to:[0:0]]
2800 * [0] [@0]: dpo-drop ip6
2801 * 0.0.0.0/32
2802 * unicast-ip4-chain
2803 * [@0]: dpo-load-balance: [index:1 buckets:1 uRPF:1 to:[0:0]]
2804 * [0] [@0]: dpo-drop ip6
2805 * 224.0.0.0/8
2806 * unicast-ip4-chain
2807 * [@0]: dpo-load-balance: [index:3 buckets:1 uRPF:3 to:[0:0]]
2808 * [0] [@0]: dpo-drop ip6
2809 * 6.0.1.2/32
2810 * unicast-ip4-chain
2811 * [@0]: dpo-load-balance: [index:30 buckets:1 uRPF:29 to:[0:0]]
2812 * [0] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
2813 * 7.0.0.1/32
2814 * unicast-ip4-chain
2815 * [@0]: dpo-load-balance: [index:31 buckets:4 uRPF:30 to:[0:0]]
2816 * [0] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
2817 * [1] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
2818 * [2] [@3]: arp-ipv4: via 6.0.0.2 af_packet0
2819 * [3] [@3]: arp-ipv4: via 6.0.0.1 af_packet0
2820 * 240.0.0.0/8
2821 * unicast-ip4-chain
2822 * [@0]: dpo-load-balance: [index:2 buckets:1 uRPF:2 to:[0:0]]
2823 * [0] [@0]: dpo-drop ip6
2824 * 255.255.255.255/32
2825 * unicast-ip4-chain
2826 * [@0]: dpo-load-balance: [index:4 buckets:1 uRPF:4 to:[0:0]]
2827 * [0] [@0]: dpo-drop ip6
2828 * ipv4-VRF:7, fib_index 1, flow hash: dst sport dport proto
2829 * 0.0.0.0/0
2830 * unicast-ip4-chain
2831 * [@0]: dpo-load-balance: [index:12 buckets:1 uRPF:11 to:[0:0]]
2832 * [0] [@0]: dpo-drop ip6
2833 * 0.0.0.0/32
2834 * unicast-ip4-chain
2835 * [@0]: dpo-load-balance: [index:13 buckets:1 uRPF:12 to:[0:0]]
2836 * [0] [@0]: dpo-drop ip6
2837 * 172.16.1.0/24
2838 * unicast-ip4-chain
2839 * [@0]: dpo-load-balance: [index:17 buckets:1 uRPF:16 to:[0:0]]
2840 * [0] [@4]: ipv4-glean: af_packet0
2841 * 172.16.1.1/32
2842 * unicast-ip4-chain
2843 * [@0]: dpo-load-balance: [index:18 buckets:1 uRPF:17 to:[1:84]]
2844 * [0] [@2]: dpo-receive: 172.16.1.1 on af_packet0
2845 * 172.16.1.2/32
2846 * unicast-ip4-chain
2847 * [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
2848 * [0] [@5]: ipv4 via 172.16.1.2 af_packet0: IP4: 02:fe:9e:70:7a:2b -> 26:a5:f6:9c:3a:36
2849 * 172.16.2.0/24
2850 * unicast-ip4-chain
2851 * [@0]: dpo-load-balance: [index:19 buckets:1 uRPF:18 to:[0:0]]
2852 * [0] [@4]: ipv4-glean: af_packet1
2853 * 172.16.2.1/32
2854 * unicast-ip4-chain
2855 * [@0]: dpo-load-balance: [index:20 buckets:1 uRPF:19 to:[0:0]]
2856 * [0] [@2]: dpo-receive: 172.16.2.1 on af_packet1
2857 * 224.0.0.0/8
2858 * unicast-ip4-chain
2859 * [@0]: dpo-load-balance: [index:15 buckets:1 uRPF:14 to:[0:0]]
2860 * [0] [@0]: dpo-drop ip6
2861 * 240.0.0.0/8
2862 * unicast-ip4-chain
2863 * [@0]: dpo-load-balance: [index:14 buckets:1 uRPF:13 to:[0:0]]
2864 * [0] [@0]: dpo-drop ip6
2865 * 255.255.255.255/32
2866 * unicast-ip4-chain
2867 * [@0]: dpo-load-balance: [index:16 buckets:1 uRPF:15 to:[0:0]]
2868 * [0] [@0]: dpo-drop ip6
Billy McFall0683c9c2016-10-13 08:27:31 -04002869 * @cliexend
2870?*/
2871/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002872VLIB_CLI_COMMAND (set_ip_flow_hash_command, static) =
2873{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002874 .path = "set ip flow-hash",
Dave Barach75fc8542016-10-11 16:16:02 -04002875 .short_help =
Billy McFall0683c9c2016-10-13 08:27:31 -04002876 "set ip flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07002877 .function = set_ip_flow_hash_command_fn,
2878};
Billy McFall0683c9c2016-10-13 08:27:31 -04002879/* *INDENT-ON* */
Dave Barach75fc8542016-10-11 16:16:02 -04002880
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002881#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -05002882int
2883vnet_set_ip4_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
2884 u32 table_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002885{
Dave Barachd7cb1b52016-12-09 09:52:16 -05002886 vnet_main_t *vnm = vnet_get_main ();
2887 vnet_interface_main_t *im = &vnm->interface_main;
2888 ip4_main_t *ipm = &ip4_main;
2889 ip_lookup_main_t *lm = &ipm->lookup_main;
2890 vnet_classify_main_t *cm = &vnet_classify_main;
Neale Rannsdf089a82016-10-02 16:39:06 +01002891 ip4_address_t *if_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002892
2893 if (pool_is_free_index (im->sw_interfaces, sw_if_index))
2894 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
2895
2896 if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
2897 return VNET_API_ERROR_NO_SUCH_ENTRY;
2898
2899 vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05002900 lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002901
Neale Rannsdf089a82016-10-02 16:39:06 +01002902 if_addr = ip4_interface_first_address (ipm, sw_if_index, NULL);
2903
2904 if (NULL != if_addr)
Dave Barachd7cb1b52016-12-09 09:52:16 -05002905 {
Neale Rannsdf089a82016-10-02 16:39:06 +01002906 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -05002907 .fp_len = 32,
2908 .fp_proto = FIB_PROTOCOL_IP4,
2909 .fp_addr.ip4 = *if_addr,
Neale Rannsdf089a82016-10-02 16:39:06 +01002910 };
2911 u32 fib_index;
2912
Dave Barachd7cb1b52016-12-09 09:52:16 -05002913 fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4,
2914 sw_if_index);
Neale Rannsdf089a82016-10-02 16:39:06 +01002915
2916
Dave Barachd7cb1b52016-12-09 09:52:16 -05002917 if (table_index != (u32) ~ 0)
2918 {
2919 dpo_id_t dpo = DPO_INVALID;
Neale Rannsdf089a82016-10-02 16:39:06 +01002920
Dave Barachd7cb1b52016-12-09 09:52:16 -05002921 dpo_set (&dpo,
2922 DPO_CLASSIFY,
2923 DPO_PROTO_IP4,
2924 classify_dpo_create (DPO_PROTO_IP4, table_index));
Neale Rannsdf089a82016-10-02 16:39:06 +01002925
Dave Barachd7cb1b52016-12-09 09:52:16 -05002926 fib_table_entry_special_dpo_add (fib_index,
2927 &pfx,
2928 FIB_SOURCE_CLASSIFY,
2929 FIB_ENTRY_FLAG_NONE, &dpo);
2930 dpo_reset (&dpo);
2931 }
Neale Rannsdf089a82016-10-02 16:39:06 +01002932 else
Dave Barachd7cb1b52016-12-09 09:52:16 -05002933 {
2934 fib_table_entry_special_remove (fib_index,
2935 &pfx, FIB_SOURCE_CLASSIFY);
2936 }
2937 }
Neale Rannsdf089a82016-10-02 16:39:06 +01002938
Ed Warnickecb9cada2015-12-08 15:45:58 -07002939 return 0;
2940}
Damjan Marionc9dad5d2018-08-11 22:10:29 +02002941#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07002942
2943static clib_error_t *
2944set_ip_classify_command_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05002945 unformat_input_t * input,
2946 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002947{
2948 u32 table_index = ~0;
2949 int table_index_set = 0;
2950 u32 sw_if_index = ~0;
2951 int rv;
Dave Barach75fc8542016-10-11 16:16:02 -04002952
Dave Barachd7cb1b52016-12-09 09:52:16 -05002953 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2954 {
2955 if (unformat (input, "table-index %d", &table_index))
2956 table_index_set = 1;
2957 else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
2958 vnet_get_main (), &sw_if_index))
2959 ;
2960 else
2961 break;
2962 }
Dave Barach75fc8542016-10-11 16:16:02 -04002963
Ed Warnickecb9cada2015-12-08 15:45:58 -07002964 if (table_index_set == 0)
2965 return clib_error_return (0, "classify table-index must be specified");
2966
2967 if (sw_if_index == ~0)
2968 return clib_error_return (0, "interface / subif must be specified");
2969
2970 rv = vnet_set_ip4_classify_intfc (vm, sw_if_index, table_index);
2971
2972 switch (rv)
2973 {
2974 case 0:
2975 break;
2976
2977 case VNET_API_ERROR_NO_MATCHING_INTERFACE:
2978 return clib_error_return (0, "No such interface");
2979
2980 case VNET_API_ERROR_NO_SUCH_ENTRY:
2981 return clib_error_return (0, "No such classifier table");
2982 }
2983 return 0;
2984}
2985
Billy McFall0683c9c2016-10-13 08:27:31 -04002986/*?
2987 * Assign a classification table to an interface. The classification
2988 * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
2989 * commands. Once the table is create, use this command to filter packets
2990 * on an interface.
2991 *
2992 * @cliexpar
2993 * Example of how to assign a classification table to an interface:
2994 * @cliexcmd{set ip classify intfc GigabitEthernet2/0/0 table-index 1}
2995?*/
2996/* *INDENT-OFF* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05002997VLIB_CLI_COMMAND (set_ip_classify_command, static) =
2998{
Ed Warnickecb9cada2015-12-08 15:45:58 -07002999 .path = "set ip classify",
Dave Barach75fc8542016-10-11 16:16:02 -04003000 .short_help =
Billy McFall0683c9c2016-10-13 08:27:31 -04003001 "set ip classify intfc <interface> table-index <classify-idx>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003002 .function = set_ip_classify_command_fn,
3003};
Billy McFall0683c9c2016-10-13 08:27:31 -04003004/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05003005
Neale Ranns1ec36522017-11-29 05:20:37 -08003006static clib_error_t *
3007ip4_config (vlib_main_t * vm, unformat_input_t * input)
3008{
3009 ip4_main_t *im = &ip4_main;
3010 uword heapsize = 0;
3011
3012 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3013 {
3014 if (unformat (input, "heap-size %U", unformat_memory_size, &heapsize))
3015 ;
3016 else
3017 return clib_error_return (0,
3018 "invalid heap-size parameter `%U'",
3019 format_unformat_error, input);
3020 }
3021
3022 im->mtrie_heap_size = heapsize;
3023
3024 return 0;
3025}
3026
3027VLIB_EARLY_CONFIG_FUNCTION (ip4_config, "ip");
3028
Dave Barachd7cb1b52016-12-09 09:52:16 -05003029/*
3030 * fd.io coding-style-patch-verification: ON
3031 *
3032 * Local Variables:
3033 * eval: (c-set-style "gnu")
3034 * End:
3035 */