blob: 8d89890f99974d9c8514464d6dec3f0788155bf4 [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/ip6_input.c: IP v6 input node
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
Neale Ranns4c7c8e52017-10-21 09:37:55 -070040#include <vnet/ip/ip6_input.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070041#include <vnet/ethernet/ethernet.h>
42#include <vnet/ppp/ppp.h>
43#include <vnet/hdlc/hdlc.h>
Neale Ranns68d48d92021-06-03 14:59:47 +000044#include <vnet/pg/pg.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Dave Barachd7cb1b52016-12-09 09:52:16 -050046typedef struct
47{
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 u8 packet_data[64];
49} ip6_input_trace_t;
50
Dave Barachd7cb1b52016-12-09 09:52:16 -050051static u8 *
52format_ip6_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070053{
54 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
55 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -050056 ip6_input_trace_t *t = va_arg (*va, ip6_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
58 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -050059 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
61 return s;
62}
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064/* Validate IP v6 packets and pass them either to forwarding code
65 or drop exception packets. */
Filip Tehlar26ea14e2019-03-11 05:30:21 -070066VLIB_NODE_FN (ip6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
67 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068{
Dave Barachd7cb1b52016-12-09 09:52:16 -050069 vnet_main_t *vnm = vnet_get_main ();
70 ip6_main_t *im = &ip6_main;
71 ip_lookup_main_t *lm = &im->lookup_main;
72 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 ip6_input_next_t next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -050074 vlib_node_runtime_t *error_node =
75 vlib_node_get_runtime (vm, ip6_input_node.index);
76 vlib_simple_counter_main_t *cm;
Damjan Marion067cd622018-07-11 12:47:43 +020077 u32 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 from = vlib_frame_vector_args (frame);
80 n_left_from = frame->n_vectors;
81 next_index = node->cached_next_index;
82
83 if (node->flags & VLIB_NODE_FLAG_TRACE)
84 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
85 /* stride */ 1,
86 sizeof (ip6_input_trace_t));
87
88 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachd7cb1b52016-12-09 09:52:16 -050089 VNET_INTERFACE_COUNTER_IP6);
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
91 while (n_left_from > 0)
92 {
93 u32 n_left_to_next;
94
Dave Barachd7cb1b52016-12-09 09:52:16 -050095 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 while (n_left_from >= 4 && n_left_to_next >= 2)
98 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050099 vlib_buffer_t *p0, *p1;
100 ip6_header_t *ip0, *ip1;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100101 u32 pi0, sw_if_index0, next0 = 0;
102 u32 pi1, sw_if_index1, next1 = 0;
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700103 u8 arc0, arc1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
105 /* Prefetch next iteration. */
106 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
109 p2 = vlib_get_buffer (vm, from[2]);
110 p3 = vlib_get_buffer (vm, from[3]);
111
112 vlib_prefetch_buffer_header (p2, LOAD);
113 vlib_prefetch_buffer_header (p3, LOAD);
114
115 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), LOAD);
116 CLIB_PREFETCH (p3->data, sizeof (ip1[0]), LOAD);
117 }
118
119 pi0 = from[0];
120 pi1 = from[1];
121
122 to_next[0] = pi0;
123 to_next[1] = pi1;
124 from += 2;
125 to_next += 2;
126 n_left_from -= 2;
127 n_left_to_next -= 2;
128
129 p0 = vlib_get_buffer (vm, pi0);
130 p1 = vlib_get_buffer (vm, pi1);
131
132 ip0 = vlib_buffer_get_current (p0);
133 ip1 = vlib_buffer_get_current (p1);
134
135 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
136 sw_if_index1 = vnet_buffer (p1)->sw_if_index[VLIB_RX];
137
Neale Ranns32e1c012016-11-22 17:07:28 +0000138 if (PREDICT_FALSE (ip6_address_is_multicast (&ip0->dst_address)))
139 {
140 arc0 = lm->mcast_feature_arc_index;
141 next0 = IP6_INPUT_NEXT_LOOKUP_MULTICAST;
142 }
143 else
144 {
145 arc0 = lm->ucast_feature_arc_index;
146 next0 = IP6_INPUT_NEXT_LOOKUP;
147 }
148
149 if (PREDICT_FALSE (ip6_address_is_multicast (&ip1->dst_address)))
150 {
151 arc1 = lm->mcast_feature_arc_index;
152 next1 = IP6_INPUT_NEXT_LOOKUP_MULTICAST;
153 }
154 else
155 {
156 arc1 = lm->ucast_feature_arc_index;
157 next1 = IP6_INPUT_NEXT_LOOKUP;
158 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
160 vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
161 vnet_buffer (p1)->ip.adj_index[VLIB_RX] = ~0;
162
Damjan Marion8b3191e2016-11-09 19:54:20 +0100163 vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
164 vnet_feature_arc_start (arc1, sw_if_index1, &next1, p1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
Damjan Marion586afd72017-04-05 19:18:20 +0200166 vlib_increment_simple_counter (cm, thread_index, sw_if_index0, 1);
167 vlib_increment_simple_counter (cm, thread_index, sw_if_index1, 1);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700168 ip6_input_check_x2 (vm, error_node,
169 p0, p1, ip0, ip1, &next0, &next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
172 to_next, n_left_to_next,
173 pi0, pi1, next0, next1);
174 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 while (n_left_from > 0 && n_left_to_next > 0)
177 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178 vlib_buffer_t *p0;
179 ip6_header_t *ip0;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100180 u32 pi0, sw_if_index0, next0 = 0;
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700181 u8 arc0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
183 pi0 = from[0];
184 to_next[0] = pi0;
185 from += 1;
186 to_next += 1;
187 n_left_from -= 1;
188 n_left_to_next -= 1;
189
190 p0 = vlib_get_buffer (vm, pi0);
191 ip0 = vlib_buffer_get_current (p0);
192
193 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Neale Ranns32e1c012016-11-22 17:07:28 +0000194 if (PREDICT_FALSE (ip6_address_is_multicast (&ip0->dst_address)))
195 {
196 arc0 = lm->mcast_feature_arc_index;
197 next0 = IP6_INPUT_NEXT_LOOKUP_MULTICAST;
198 }
199 else
200 {
201 arc0 = lm->ucast_feature_arc_index;
202 next0 = IP6_INPUT_NEXT_LOOKUP;
203 }
204
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100206 vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
Damjan Marion586afd72017-04-05 19:18:20 +0200208 vlib_increment_simple_counter (cm, thread_index, sw_if_index0, 1);
Neale Ranns4c7c8e52017-10-21 09:37:55 -0700209 ip6_input_check_x1 (vm, error_node, p0, ip0, &next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
211 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
212 to_next, n_left_to_next,
213 pi0, next0);
214 }
215
216 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
217 }
218
219 return frame->n_vectors;
220}
221
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223VLIB_REGISTER_NODE (ip6_input_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 .name = "ip6-input",
225 .vector_size = sizeof (u32),
226
227 .n_errors = IP6_N_ERROR,
Neale Rannse22a7042022-08-09 03:03:29 +0000228 .error_counters = ip6_error_counters,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
230 .n_next_nodes = IP6_INPUT_N_NEXT,
231 .next_nodes = {
232 [IP6_INPUT_NEXT_DROP] = "error-drop",
233 [IP6_INPUT_NEXT_LOOKUP] = "ip6-lookup",
Ole Troan9fb87552016-01-13 22:30:43 +0100234 [IP6_INPUT_NEXT_ICMP_ERROR] = "ip6-icmp-error",
Neale Ranns32e1c012016-11-22 17:07:28 +0000235 [IP6_INPUT_NEXT_LOOKUP_MULTICAST] = "ip6-mfib-forward-lookup",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 },
237
238 .format_buffer = format_ip6_header,
239 .format_trace = format_ip6_input_trace,
240};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500241/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
Dave Barach49433ad2018-08-08 17:59:03 -0400243static clib_error_t *
244ip6_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 ethernet_register_input_type (vm, ETHERNET_TYPE_IP6, ip6_input_node.index);
247 ppp_register_input_protocol (vm, PPP_PROTOCOL_ip6, ip6_input_node.index);
248 hdlc_register_input_protocol (vm, HDLC_PROTOCOL_ip6, ip6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
250 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500251 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 pn = pg_get_node (ip6_input_node.index);
253 pn->unformat_edit = unformat_pg_ip6_header;
254 }
255
256 /* Set flow hash to something non-zero. */
257 ip6_main.flow_hash_seed = 0xdeadbeef;
258
259 /* Default hop limit for packets we generate. */
260 ip6_main.host_config.ttl = 64;
261
Klement Sekera0eb75d0e2019-10-07 12:20:39 +0000262
263 uword *u = hash_get (ip_main.protocol_info_by_name, "IPV6_FRAGMENTATION");
Klement Sekera2429f8b2019-10-08 08:57:45 +0000264 if (u)
265 {
266 ip_protocol_info_t *info =
267 vec_elt_at_index (ip_main.protocol_infos, *u);
268 ASSERT (NULL == info->format_header);
Klement Sekera8563cb32019-10-10 17:03:57 +0000269 info->format_header = format_ip6_frag_hdr;
Klement Sekera2429f8b2019-10-08 08:57:45 +0000270 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 return /* no error */ 0;
272}
273
274VLIB_INIT_FUNCTION (ip6_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275
276/*
277 * fd.io coding-style-patch-verification: ON
278 *
279 * Local Variables:
280 * eval: (c-set-style "gnu")
281 * End:
282 */