blob: d461cc885d6a8335eb116afdfa2a8317c58b0793 [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_source_check.c: IP v4 check source address (unicast RPF check)
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/ip/ip.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010041#include <vnet/fib/ip4_fib.h>
Neale Ranns3ee44042016-10-03 13:05:48 +010042#include <vnet/fib/fib_urpf_list.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010043#include <vnet/dpo/load_balance.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Billy McFall0683c9c2016-10-13 08:27:31 -040045/**
46 * @file
47 * @brief IPv4 Unicast Source Check.
48 *
49 * This file contains the IPv4 interface unicast source check.
50 */
51
52
Dave Barachd7cb1b52016-12-09 09:52:16 -050053typedef struct
54{
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 u8 packet_data[64];
Dave Barachd7cb1b52016-12-09 09:52:16 -050056 index_t urpf;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057} ip4_source_check_trace_t;
58
Dave Barachd7cb1b52016-12-09 09:52:16 -050059static u8 *
60format_ip4_source_check_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070061{
62 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
63 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -050064 ip4_source_check_trace_t *t = va_arg (*va, ip4_source_check_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
66 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
69 return s;
70}
71
Dave Barachd7cb1b52016-12-09 09:52:16 -050072typedef enum
73{
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 IP4_SOURCE_CHECK_NEXT_DROP,
75 IP4_SOURCE_CHECK_N_NEXT,
76} ip4_source_check_next_t;
77
Dave Barachd7cb1b52016-12-09 09:52:16 -050078typedef enum
79{
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 IP4_SOURCE_CHECK_REACHABLE_VIA_RX,
81 IP4_SOURCE_CHECK_REACHABLE_VIA_ANY,
82} ip4_source_check_type_t;
83
Dave Barachd7cb1b52016-12-09 09:52:16 -050084typedef union
85{
Neale Ranns3ee44042016-10-03 13:05:48 +010086 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070087} ip4_source_check_config_t;
88
89always_inline uword
90ip4_source_check_inline (vlib_main_t * vm,
91 vlib_node_runtime_t * node,
92 vlib_frame_t * frame,
93 ip4_source_check_type_t source_check_type)
94{
Dave Barachd7cb1b52016-12-09 09:52:16 -050095 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 u32 next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -050097 vlib_node_runtime_t *error_node =
98 vlib_node_get_runtime (vm, ip4_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 from = vlib_frame_vector_args (frame);
101 n_left_from = frame->n_vectors;
102 next_index = node->cached_next_index;
103
104 if (node->flags & VLIB_NODE_FLAG_TRACE)
105 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
106 /* stride */ 1,
107 sizeof (ip4_source_check_trace_t));
108
109 while (n_left_from > 0)
110 {
111 u32 n_left_to_next;
112
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
115 while (n_left_from >= 4 && n_left_to_next >= 2)
116 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117 vlib_buffer_t *p0, *p1;
118 ip4_header_t *ip0, *ip1;
119 ip4_fib_mtrie_t *mtrie0, *mtrie1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 ip4_fib_mtrie_leaf_t leaf0, leaf1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121 ip4_source_check_config_t *c0, *c1;
122 const load_balance_t *lb0, *lb1;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100123 u32 pi0, next0, pass0, lb_index0;
124 u32 pi1, next1, pass1, lb_index1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
126 /* Prefetch next iteration. */
127 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500128 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
130 p2 = vlib_get_buffer (vm, from[2]);
131 p3 = vlib_get_buffer (vm, from[3]);
132
133 vlib_prefetch_buffer_header (p2, LOAD);
134 vlib_prefetch_buffer_header (p3, LOAD);
135
136 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), LOAD);
137 CLIB_PREFETCH (p3->data, sizeof (ip1[0]), LOAD);
138 }
139
140 pi0 = to_next[0] = from[0];
141 pi1 = to_next[1] = from[1];
142 from += 2;
143 to_next += 2;
144 n_left_from -= 2;
145 n_left_to_next -= 2;
146
147 p0 = vlib_get_buffer (vm, pi0);
148 p1 = vlib_get_buffer (vm, pi1);
149
150 ip0 = vlib_buffer_get_current (p0);
151 ip1 = vlib_buffer_get_current (p1);
152
Dave Barachd7cb1b52016-12-09 09:52:16 -0500153 c0 =
154 vnet_feature_next_with_data (vnet_buffer (p0)->sw_if_index
155 [VLIB_RX], &next0, p0,
156 sizeof (c0[0]));
157 c1 =
158 vnet_feature_next_with_data (vnet_buffer (p1)->sw_if_index
159 [VLIB_RX], &next1, p1,
160 sizeof (c1[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100162 mtrie0 = &ip4_fib_get (c0->fib_index)->mtrie;
163 mtrie1 = &ip4_fib_get (c1->fib_index)->mtrie;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
165 leaf0 = leaf1 = IP4_FIB_MTRIE_LEAF_ROOT;
166
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167 leaf0 =
168 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 0);
169 leaf1 =
170 ip4_fib_mtrie_lookup_step (mtrie1, leaf1, &ip1->src_address, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Dave Barachd7cb1b52016-12-09 09:52:16 -0500172 leaf0 =
173 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 1);
174 leaf1 =
175 ip4_fib_mtrie_lookup_step (mtrie1, leaf1, &ip1->src_address, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
Dave Barachd7cb1b52016-12-09 09:52:16 -0500177 leaf0 =
178 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 2);
179 leaf1 =
180 ip4_fib_mtrie_lookup_step (mtrie1, leaf1, &ip1->src_address, 2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182 leaf0 =
183 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 3);
184 leaf1 =
185 ip4_fib_mtrie_lookup_step (mtrie1, leaf1, &ip1->src_address, 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100187 lb_index0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
188 lb_index1 = ip4_fib_mtrie_leaf_get_adj_index (leaf1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Dave Barachd7cb1b52016-12-09 09:52:16 -0500190 lb0 = load_balance_get (lb_index0);
191 lb1 = load_balance_get (lb_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
193 /* Pass multicast. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500194 pass0 = ip4_address_is_multicast (&ip0->src_address)
195 || ip0->src_address.as_u32 == clib_host_to_net_u32 (0xFFFFFFFF);
196 pass1 = ip4_address_is_multicast (&ip1->src_address)
197 || ip1->src_address.as_u32 == clib_host_to_net_u32 (0xFFFFFFFF);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Neale Ranns3ee44042016-10-03 13:05:48 +0100199 if (IP4_SOURCE_CHECK_REACHABLE_VIA_RX == source_check_type)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500200 {
201 pass0 |= fib_urpf_check (lb0->lb_urpf,
202 vnet_buffer (p0)->sw_if_index
203 [VLIB_RX]);
204 pass1 |=
205 fib_urpf_check (lb1->lb_urpf,
206 vnet_buffer (p1)->sw_if_index[VLIB_RX]);
207 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100208 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500209 {
210 pass0 |= fib_urpf_check_size (lb0->lb_urpf);
211 pass1 |= fib_urpf_check_size (lb1->lb_urpf);
212 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 next0 = (pass0 ? next0 : IP4_SOURCE_CHECK_NEXT_DROP);
214 next1 = (pass1 ? next1 : IP4_SOURCE_CHECK_NEXT_DROP);
215
Dave Barachd7cb1b52016-12-09 09:52:16 -0500216 p0->error =
217 error_node->errors[IP4_ERROR_UNICAST_SOURCE_CHECK_FAILS];
218 p1->error =
219 error_node->errors[IP4_ERROR_UNICAST_SOURCE_CHECK_FAILS];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
222 to_next, n_left_to_next,
223 pi0, pi1, next0, next1);
224 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500225
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 while (n_left_from > 0 && n_left_to_next > 0)
227 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228 vlib_buffer_t *p0;
229 ip4_header_t *ip0;
230 ip4_fib_mtrie_t *mtrie0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 ip4_fib_mtrie_leaf_t leaf0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500232 ip4_source_check_config_t *c0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100233 u32 pi0, next0, pass0, lb_index0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234 const load_balance_t *lb0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
236 pi0 = from[0];
237 to_next[0] = pi0;
238 from += 1;
239 to_next += 1;
240 n_left_from -= 1;
241 n_left_to_next -= 1;
242
243 p0 = vlib_get_buffer (vm, pi0);
244 ip0 = vlib_buffer_get_current (p0);
245
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 c0 =
247 vnet_feature_next_with_data (vnet_buffer (p0)->sw_if_index
248 [VLIB_RX], &next0, p0,
249 sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100251 mtrie0 = &ip4_fib_get (c0->fib_index)->mtrie;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
253 leaf0 = IP4_FIB_MTRIE_LEAF_ROOT;
254
Dave Barachd7cb1b52016-12-09 09:52:16 -0500255 leaf0 =
256 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
Dave Barachd7cb1b52016-12-09 09:52:16 -0500258 leaf0 =
259 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Dave Barachd7cb1b52016-12-09 09:52:16 -0500261 leaf0 =
262 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
Dave Barachd7cb1b52016-12-09 09:52:16 -0500264 leaf0 =
265 ip4_fib_mtrie_lookup_step (mtrie0, leaf0, &ip0->src_address, 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100267 lb_index0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269 lb0 = load_balance_get (lb_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271 /* Pass multicast. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 pass0 = ip4_address_is_multicast (&ip0->src_address)
273 || ip0->src_address.as_u32 == clib_host_to_net_u32 (0xFFFFFFFF);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Neale Ranns3ee44042016-10-03 13:05:48 +0100275 if (IP4_SOURCE_CHECK_REACHABLE_VIA_RX == source_check_type)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 {
277 pass0 |= fib_urpf_check (lb0->lb_urpf,
278 vnet_buffer (p0)->sw_if_index
279 [VLIB_RX]);
280 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100281 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 {
283 pass0 |= fib_urpf_check_size (lb0->lb_urpf);
284 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 next0 = (pass0 ? next0 : IP4_SOURCE_CHECK_NEXT_DROP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500287 p0->error =
288 error_node->errors[IP4_ERROR_UNICAST_SOURCE_CHECK_FAILS];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
290 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
291 to_next, n_left_to_next,
292 pi0, next0);
293 }
294
295 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
296 }
297
298 return frame->n_vectors;
299}
300
301static uword
302ip4_source_check_reachable_via_any (vlib_main_t * vm,
303 vlib_node_runtime_t * node,
304 vlib_frame_t * frame)
305{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 return ip4_source_check_inline (vm, node, frame,
307 IP4_SOURCE_CHECK_REACHABLE_VIA_ANY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308}
309
310static uword
311ip4_source_check_reachable_via_rx (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 vlib_node_runtime_t * node,
313 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 return ip4_source_check_inline (vm, node, frame,
316 IP4_SOURCE_CHECK_REACHABLE_VIA_RX);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317}
318
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320VLIB_REGISTER_NODE (ip4_check_source_reachable_via_any) = {
321 .function = ip4_source_check_reachable_via_any,
322 .name = "ip4-source-check-via-any",
323 .vector_size = sizeof (u32),
324
325 .n_next_nodes = IP4_SOURCE_CHECK_N_NEXT,
326 .next_nodes = {
327 [IP4_SOURCE_CHECK_NEXT_DROP] = "error-drop",
328 },
329
330 .format_buffer = format_ip4_header,
331 .format_trace = format_ip4_source_check_trace,
332};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
Damjan Marion1c80e832016-05-11 23:07:18 +0200335VLIB_NODE_FUNCTION_MULTIARCH (ip4_check_source_reachable_via_any,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 ip4_source_check_reachable_via_any);
Damjan Marion1c80e832016-05-11 23:07:18 +0200337
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339VLIB_REGISTER_NODE (ip4_check_source_reachable_via_rx) = {
340 .function = ip4_source_check_reachable_via_rx,
341 .name = "ip4-source-check-via-rx",
342 .vector_size = sizeof (u32),
343
344 .n_next_nodes = IP4_SOURCE_CHECK_N_NEXT,
345 .next_nodes = {
346 [IP4_SOURCE_CHECK_NEXT_DROP] = "error-drop",
347 },
348
349 .format_buffer = format_ip4_header,
350 .format_trace = format_ip4_source_check_trace,
351};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
Damjan Marion1c80e832016-05-11 23:07:18 +0200354VLIB_NODE_FUNCTION_MULTIARCH (ip4_check_source_reachable_via_rx,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 ip4_source_check_reachable_via_rx);
Damjan Marion1c80e832016-05-11 23:07:18 +0200356
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357static clib_error_t *
358set_ip_source_check (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500359 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 unformat_input_t _line_input, *line_input = &_line_input;
362 vnet_main_t *vnm = vnet_get_main ();
363 ip4_main_t *im = &ip4_main;
364 clib_error_t *error = 0;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100365 u32 sw_if_index, is_del;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 ip4_source_check_config_t config;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367 char *feature_name = "ip4-source-check-via-rx";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369 sw_if_index = ~0;
Neale Ranns3ee44042016-10-03 13:05:48 +0100370 is_del = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
Dave Barachd7cb1b52016-12-09 09:52:16 -0500372 if (!unformat_user (input, unformat_line_input, line_input))
Neale Ranns3ee44042016-10-03 13:05:48 +0100373 return 0;
374
375 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
376 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500377 if (unformat_user
378 (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index))
379 ;
Neale Ranns3ee44042016-10-03 13:05:48 +0100380 else if (unformat (line_input, "del"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500381 is_del = 1;
Neale Ranns3ee44042016-10-03 13:05:48 +0100382 else if (unformat (line_input, "loose"))
Damjan Marion8b3191e2016-11-09 19:54:20 +0100383 feature_name = "ip4-source-check-via-any";
Neale Ranns3ee44042016-10-03 13:05:48 +0100384 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100386 error = unformat_parse_error (line_input);
387 goto done;
388 }
389 }
390
391 if (~0 == sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 {
393 error = clib_error_return (0, "unknown interface `%U'",
Neale Ranns3ee44042016-10-03 13:05:48 +0100394 format_unformat_error, line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 goto done;
396 }
397
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 config.fib_index = im->fib_index_by_sw_if_index[sw_if_index];
Damjan Marion8b3191e2016-11-09 19:54:20 +0100399 vnet_feature_enable_disable ("ip4-unicast", feature_name, sw_if_index,
400 is_del == 0, &config, sizeof (config));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500401done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 return error;
403}
404
Neale Ranns3ee44042016-10-03 13:05:48 +0100405/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400406 * This command adds the 'ip4-source-check-via-rx' graph node for
407 * a given interface. By adding the IPv4 source check graph node to
408 * an interface, the code verifies that the source address of incoming
409 * unicast packets are reachable over the incoming interface. Two flavours
410 * are supported (the default is strict):
411 * - loose: accept ingress packet if there is a route to reach the source
412 * - strict: accept ingress packet if it arrived on an interface which
Neale Ranns3ee44042016-10-03 13:05:48 +0100413 * the route to the source uses. i.e. an interface that the source
414 * is reachable via.
Neale Ranns3ee44042016-10-03 13:05:48 +0100415 *
Billy McFall0683c9c2016-10-13 08:27:31 -0400416 * @cliexpar
417 * @parblock
418 * Example of graph node before range checking is enabled:
419 * @cliexstart{show vlib graph ip4-source-check-via-rx}
420 * Name Next Previous
421 * ip4-source-check-via-rx error-drop [0]
Neale Ranns3ee44042016-10-03 13:05:48 +0100422 * @cliexend
Billy McFall0683c9c2016-10-13 08:27:31 -0400423 *
424 * Example of how to enable unicast source checking on an interface:
425 * @cliexcmd{set interface ip source-check GigabitEthernet2/0/0 loose}
426 *
427 * Example of graph node after range checking is enabled:
428 * @cliexstart{show vlib graph ip4-source-check-via-rx}
429 * Name Next Previous
430 * ip4-source-check-via-rx error-drop [0] ip4-input-no-checksum
431 * ip4-source-and-port-range- ip4-input
432 * @cliexend
433 *
434 * Example of how to display the feature enabed on an interface:
435 * @cliexstart{show ip interface features GigabitEthernet2/0/0}
436 * IP feature paths configured on GigabitEthernet2/0/0...
437 *
438 * ipv4 unicast:
439 * ip4-source-check-via-rx
440 * ip4-lookup
441 *
442 * ipv4 multicast:
443 * ip4-lookup-multicast
444 *
445 * ipv4 multicast:
446 * interface-output
447 *
448 * ipv6 unicast:
449 * ip6-lookup
450 *
451 * ipv6 multicast:
452 * ip6-lookup
453 *
454 * ipv6 multicast:
455 * interface-output
456 * @cliexend
457 *
458 * Example of how to disable unicast source checking on an interface:
459 * @cliexcmd{set interface ip source-check GigabitEthernet2/0/0 del}
460 * @endparblock
Neale Ranns3ee44042016-10-03 13:05:48 +0100461?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400462/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463VLIB_CLI_COMMAND (set_interface_ip_source_check_command, static) = {
464 .path = "set interface ip source-check",
465 .function = set_ip_source_check,
Billy McFall0683c9c2016-10-13 08:27:31 -0400466 .short_help = "set interface ip source-check <interface> [strict|loose] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467};
Neale Ranns3ee44042016-10-03 13:05:48 +0100468/* *INDENT-ON* */
469
470static clib_error_t *
471ip_source_check_accept (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 unformat_input_t * input, vlib_cli_command_t * cmd)
Neale Ranns3ee44042016-10-03 13:05:48 +0100473{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns3ee44042016-10-03 13:05:48 +0100475 fib_prefix_t pfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 .fp_proto = FIB_PROTOCOL_IP4,
Neale Ranns3ee44042016-10-03 13:05:48 +0100477 };
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478 clib_error_t *error = NULL;
Neale Ranns3ee44042016-10-03 13:05:48 +0100479 u32 table_id, is_add, fib_index;
480
481 is_add = 1;
482 table_id = ~0;
483
484 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 if (!unformat_user (input, unformat_line_input, line_input))
Neale Ranns3ee44042016-10-03 13:05:48 +0100486 return 0;
487
488 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
489 {
490 if (unformat (line_input, "table %d", &table_id))
491 ;
492 else if (unformat (line_input, "del"))
493 is_add = 0;
494 else if (unformat (line_input, "add"))
495 is_add = 1;
496 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
498 pfx.fp_proto = FIB_PROTOCOL_IP4;
Neale Ranns3ee44042016-10-03 13:05:48 +0100499 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500500 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100501 error = unformat_parse_error (line_input);
502 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500503 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100504 }
505
506 if (~0 != table_id)
507 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500508 fib_index = fib_table_id_find_fib_index (pfx.fp_proto, table_id);
Neale Ranns3ee44042016-10-03 13:05:48 +0100509 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500510 {
511 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns3ee44042016-10-03 13:05:48 +0100512 goto done;
513 }
514 }
515 else
516 {
517 fib_index = 0;
518 }
519
520 if (is_add)
521 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500522 fib_table_entry_special_add (fib_index,
523 &pfx,
524 FIB_SOURCE_URPF_EXEMPT,
525 FIB_ENTRY_FLAG_DROP, ADJ_INDEX_INVALID);
Neale Ranns3ee44042016-10-03 13:05:48 +0100526 }
527 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500528 {
529 fib_table_entry_special_remove (fib_index,
530 &pfx, FIB_SOURCE_URPF_EXEMPT);
531 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100532
533done:
534 return (error);
535}
536
Neale Ranns3ee44042016-10-03 13:05:48 +0100537/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400538 * Add an exemption for a prefix to pass the Unicast Reverse Path
539 * Forwarding (uRPF) loose check. This is for testing purposes only.
540 * If the '<em>table</em>' is not enter it is defaulted to 0. Default
541 * is to '<em>add</em>'. VPP always performs a loose uRPF check for
542 * for-us traffic.
Neale Ranns3ee44042016-10-03 13:05:48 +0100543 *
544 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400545 * Example of how to add a uRPF exception to a FIB table to pass the
546 * loose RPF tests:
547 * @cliexcmd{ip urpf-accept table 7 add}
Neale Ranns3ee44042016-10-03 13:05:48 +0100548?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400549/* *INDENT-OFF* */
Neale Ranns3ee44042016-10-03 13:05:48 +0100550VLIB_CLI_COMMAND (ip_source_check_accept_command, static) = {
551 .path = "ip urpf-accept",
552 .function = ip_source_check_accept,
Billy McFall0683c9c2016-10-13 08:27:31 -0400553 .short_help = "ip urpf-accept [table <table-id>] [add|del]",
Neale Ranns3ee44042016-10-03 13:05:48 +0100554};
555/* *INDENT-ON* */
556
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558/* Dummy init function to get us linked in. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500559clib_error_t *
560ip4_source_check_init (vlib_main_t * vm)
561{
562 return 0;
563}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564
565VLIB_INIT_FUNCTION (ip4_source_check_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500566
567/*
568 * fd.io coding-style-patch-verification: ON
569 *
570 * Local Variables:
571 * eval: (c-set-style "gnu")
572 * End:
573 */