blob: bbc2cebaa3918b20d227cf5a8e2c9a8e66ef4bdd [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
40#include <vnet/ip/ip.h>
41#include <vnet/ethernet/ethernet.h>
42#include <vnet/ppp/ppp.h>
43#include <vnet/hdlc/hdlc.h>
44
Dave Barachd7cb1b52016-12-09 09:52:16 -050045typedef struct
46{
Ed Warnickecb9cada2015-12-08 15:45:58 -070047 u8 packet_data[64];
48} ip6_input_trace_t;
49
Dave Barachd7cb1b52016-12-09 09:52:16 -050050static u8 *
51format_ip6_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070052{
53 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
54 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -050055 ip6_input_trace_t *t = va_arg (*va, ip6_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -050058 format_ip6_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
60 return s;
61}
62
Dave Barachd7cb1b52016-12-09 09:52:16 -050063typedef enum
64{
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 IP6_INPUT_NEXT_DROP,
66 IP6_INPUT_NEXT_LOOKUP,
Ole Troan9fb87552016-01-13 22:30:43 +010067 IP6_INPUT_NEXT_ICMP_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 IP6_INPUT_N_NEXT,
69} ip6_input_next_t;
70
71/* Validate IP v6 packets and pass them either to forwarding code
72 or drop exception packets. */
73static uword
Dave Barachd7cb1b52016-12-09 09:52:16 -050074ip6_input (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -070075{
Dave Barachd7cb1b52016-12-09 09:52:16 -050076 vnet_main_t *vnm = vnet_get_main ();
77 ip6_main_t *im = &ip6_main;
78 ip_lookup_main_t *lm = &im->lookup_main;
79 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 ip6_input_next_t next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -050081 vlib_node_runtime_t *error_node =
82 vlib_node_get_runtime (vm, ip6_input_node.index);
83 vlib_simple_counter_main_t *cm;
84 u32 cpu_index = os_get_cpu_number ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
86 from = vlib_frame_vector_args (frame);
87 n_left_from = frame->n_vectors;
88 next_index = node->cached_next_index;
89
90 if (node->flags & VLIB_NODE_FLAG_TRACE)
91 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
92 /* stride */ 1,
93 sizeof (ip6_input_trace_t));
94
95 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachd7cb1b52016-12-09 09:52:16 -050096 VNET_INTERFACE_COUNTER_IP6);
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 while (n_left_from > 0)
99 {
100 u32 n_left_to_next;
101
Dave Barachd7cb1b52016-12-09 09:52:16 -0500102 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
104 while (n_left_from >= 4 && n_left_to_next >= 2)
105 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106 vlib_buffer_t *p0, *p1;
107 ip6_header_t *ip0, *ip1;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100108 u32 pi0, sw_if_index0, next0 = 0;
109 u32 pi1, sw_if_index1, next1 = 0;
110 u8 error0, error1, arc0, arc1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
112 /* Prefetch next iteration. */
113 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500114 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
116 p2 = vlib_get_buffer (vm, from[2]);
117 p3 = vlib_get_buffer (vm, from[3]);
118
119 vlib_prefetch_buffer_header (p2, LOAD);
120 vlib_prefetch_buffer_header (p3, LOAD);
121
122 CLIB_PREFETCH (p2->data, sizeof (ip0[0]), LOAD);
123 CLIB_PREFETCH (p3->data, sizeof (ip1[0]), LOAD);
124 }
125
126 pi0 = from[0];
127 pi1 = from[1];
128
129 to_next[0] = pi0;
130 to_next[1] = pi1;
131 from += 2;
132 to_next += 2;
133 n_left_from -= 2;
134 n_left_to_next -= 2;
135
136 p0 = vlib_get_buffer (vm, pi0);
137 p1 = vlib_get_buffer (vm, pi1);
138
139 ip0 = vlib_buffer_get_current (p0);
140 ip1 = vlib_buffer_get_current (p1);
141
142 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
143 sw_if_index1 = vnet_buffer (p1)->sw_if_index[VLIB_RX];
144
Dave Barachd7cb1b52016-12-09 09:52:16 -0500145 arc0 =
146 ip6_address_is_multicast (&ip0->dst_address) ?
147 lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
148 arc1 =
149 ip6_address_is_multicast (&ip1->dst_address) ?
150 lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
153 vnet_buffer (p1)->ip.adj_index[VLIB_RX] = ~0;
154
Damjan Marion8b3191e2016-11-09 19:54:20 +0100155 vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
156 vnet_feature_arc_start (arc1, sw_if_index1, &next1, p1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
158 vlib_increment_simple_counter (cm, cpu_index, sw_if_index0, 1);
159 vlib_increment_simple_counter (cm, cpu_index, sw_if_index1, 1);
160
161 error0 = error1 = IP6_ERROR_NONE;
162
163 /* Version != 6? Drop it. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500164 error0 =
165 (clib_net_to_host_u32
166 (ip0->ip_version_traffic_class_and_flow_label) >> 28) !=
167 6 ? IP6_ERROR_VERSION : error0;
168 error1 =
169 (clib_net_to_host_u32
170 (ip1->ip_version_traffic_class_and_flow_label) >> 28) !=
171 6 ? IP6_ERROR_VERSION : error1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173 /* hop limit < 1? Drop it. for link-local broadcast packets,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500174 * like dhcpv6 packets from client has hop-limit 1, which should not
175 * be dropped.
176 */
Chris Luke816f3e12016-06-14 16:24:47 -0400177 error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0;
178 error1 = ip1->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 /* L2 length must be at least minimal IP header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500181 error0 =
182 p0->current_length <
183 sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0;
184 error1 =
185 p1->current_length <
186 sizeof (ip1[0]) ? IP6_ERROR_TOO_SHORT : error1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
Dave Barachd7cb1b52016-12-09 09:52:16 -0500188 if (PREDICT_FALSE (error0 != IP6_ERROR_NONE))
189 {
190 if (error0 == IP6_ERROR_TIME_EXPIRED)
191 {
192 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
193 ICMP6_time_exceeded_ttl_exceeded_in_transit,
194 0);
195 next0 = IP6_INPUT_NEXT_ICMP_ERROR;
196 }
197 else
198 {
199 next0 = IP6_INPUT_NEXT_DROP;
200 }
201 }
202 if (PREDICT_FALSE (error1 != IP6_ERROR_NONE))
203 {
204 if (error1 == IP6_ERROR_TIME_EXPIRED)
205 {
206 icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
207 ICMP6_time_exceeded_ttl_exceeded_in_transit,
208 0);
209 next1 = IP6_INPUT_NEXT_ICMP_ERROR;
210 }
211 else
212 {
213 next1 = IP6_INPUT_NEXT_DROP;
214 }
215 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
217 p0->error = error_node->errors[error0];
218 p1->error = error_node->errors[error1];
219
220 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
221 to_next, n_left_to_next,
222 pi0, pi1, next0, next1);
223 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500224
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 while (n_left_from > 0 && n_left_to_next > 0)
226 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500227 vlib_buffer_t *p0;
228 ip6_header_t *ip0;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100229 u32 pi0, sw_if_index0, next0 = 0;
230 u8 error0, arc0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
232 pi0 = from[0];
233 to_next[0] = pi0;
234 from += 1;
235 to_next += 1;
236 n_left_from -= 1;
237 n_left_to_next -= 1;
238
239 p0 = vlib_get_buffer (vm, pi0);
240 ip0 = vlib_buffer_get_current (p0);
241
242 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500243 arc0 =
244 ip6_address_is_multicast (&ip0->dst_address) ?
245 lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100247 vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248
249 vlib_increment_simple_counter (cm, cpu_index, sw_if_index0, 1);
250 error0 = IP6_ERROR_NONE;
251
252 /* Version != 6? Drop it. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 error0 =
254 (clib_net_to_host_u32
255 (ip0->ip_version_traffic_class_and_flow_label) >> 28) !=
256 6 ? IP6_ERROR_VERSION : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
258 /* hop limit < 1? Drop it. for link-local broadcast packets,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259 * like dhcpv6 packets from client has hop-limit 1, which should not
260 * be dropped.
261 */
Chris Luke816f3e12016-06-14 16:24:47 -0400262 error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
264 /* L2 length must be at least minimal IP header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500265 error0 =
266 p0->current_length <
267 sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269 if (PREDICT_FALSE (error0 != IP6_ERROR_NONE))
270 {
271 if (error0 == IP6_ERROR_TIME_EXPIRED)
272 {
273 icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
274 ICMP6_time_exceeded_ttl_exceeded_in_transit,
275 0);
276 next0 = IP6_INPUT_NEXT_ICMP_ERROR;
277 }
278 else
279 {
280 next0 = IP6_INPUT_NEXT_DROP;
281 }
282 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 p0->error = error_node->errors[error0];
284
285 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
286 to_next, n_left_to_next,
287 pi0, next0);
288 }
289
290 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
291 }
292
293 return frame->n_vectors;
294}
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296static char *ip6_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297#define _(sym,string) string,
298 foreach_ip6_error
299#undef _
300};
301
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303VLIB_REGISTER_NODE (ip6_input_node) = {
304 .function = ip6_input,
305 .name = "ip6-input",
306 .vector_size = sizeof (u32),
307
308 .n_errors = IP6_N_ERROR,
309 .error_strings = ip6_error_strings,
310
311 .n_next_nodes = IP6_INPUT_N_NEXT,
312 .next_nodes = {
313 [IP6_INPUT_NEXT_DROP] = "error-drop",
314 [IP6_INPUT_NEXT_LOOKUP] = "ip6-lookup",
Ole Troan9fb87552016-01-13 22:30:43 +0100315 [IP6_INPUT_NEXT_ICMP_ERROR] = "ip6-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 },
317
318 .format_buffer = format_ip6_header,
319 .format_trace = format_ip6_input_trace,
320};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500321/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Damjan Marion1c80e832016-05-11 23:07:18 +0200323VLIB_NODE_FUNCTION_MULTIARCH (ip6_input_node, ip6_input)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 static clib_error_t *ip6_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 ethernet_register_input_type (vm, ETHERNET_TYPE_IP6, ip6_input_node.index);
327 ppp_register_input_protocol (vm, PPP_PROTOCOL_ip6, ip6_input_node.index);
328 hdlc_register_input_protocol (vm, HDLC_PROTOCOL_ip6, ip6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
330 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500331 pg_node_t *pn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 pn = pg_get_node (ip6_input_node.index);
333 pn->unformat_edit = unformat_pg_ip6_header;
334 }
335
336 /* Set flow hash to something non-zero. */
337 ip6_main.flow_hash_seed = 0xdeadbeef;
338
339 /* Default hop limit for packets we generate. */
340 ip6_main.host_config.ttl = 64;
341
342 return /* no error */ 0;
343}
344
345VLIB_INIT_FUNCTION (ip6_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346
347/*
348 * fd.io coding-style-patch-verification: ON
349 *
350 * Local Variables:
351 * eval: (c-set-style "gnu")
352 * End:
353 */