f6d56be282912541baa6dec036d36e6916578fc5
[vpp.git] / vnet / vnet / ip / ip6_input.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * ip/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
45 typedef struct {
46   u8 packet_data[64];
47 } ip6_input_trace_t;
48
49 static u8 * format_ip6_input_trace (u8 * s, va_list * va)
50 {
51   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
52   CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
53   ip6_input_trace_t * t = va_arg (*va, ip6_input_trace_t *);
54
55   s = format (s, "%U",
56               format_ip6_header,
57               t->packet_data, sizeof (t->packet_data));
58
59   return s;
60 }
61
62 typedef enum {
63   IP6_INPUT_NEXT_DROP,
64   IP6_INPUT_NEXT_LOOKUP,
65   IP6_INPUT_NEXT_ICMP_ERROR,
66   IP6_INPUT_N_NEXT,
67 } ip6_input_next_t;
68
69 /* Validate IP v6 packets and pass them either to forwarding code
70    or drop exception packets. */
71 static uword
72 ip6_input (vlib_main_t * vm,
73            vlib_node_runtime_t * node,
74            vlib_frame_t * frame)
75 {
76   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;
80   ip6_input_next_t next_index;
81   vlib_node_runtime_t * error_node = vlib_node_get_runtime (vm, ip6_input_node.index);
82   vlib_simple_counter_main_t * cm;
83   u32 cpu_index = os_get_cpu_number();
84
85   from = vlib_frame_vector_args (frame);
86   n_left_from = frame->n_vectors;
87   next_index = node->cached_next_index;
88
89   if (node->flags & VLIB_NODE_FLAG_TRACE)
90     vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
91                                    /* stride */ 1,
92                                    sizeof (ip6_input_trace_t));
93
94   cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
95                          VNET_INTERFACE_COUNTER_IP6);
96
97   while (n_left_from > 0)
98     {
99       u32 n_left_to_next;
100
101       vlib_get_next_frame (vm, node, next_index,
102                            to_next, n_left_to_next);
103
104       while (n_left_from >= 4 && n_left_to_next >= 2)
105         {
106           vlib_buffer_t * p0, * p1;
107           ip6_header_t * ip0, * ip1;
108           u32 pi0, sw_if_index0, next0 = 0;
109           u32 pi1, sw_if_index1, next1 = 0;
110           u8 error0, error1, arc0, arc1;
111
112           /* Prefetch next iteration. */
113           {
114             vlib_buffer_t * p2, * p3;
115
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
145           arc0 = ip6_address_is_multicast (&ip0->dst_address) ? lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
146           arc1 = ip6_address_is_multicast (&ip1->dst_address) ? lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
147
148           vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
149           vnet_buffer (p1)->ip.adj_index[VLIB_RX] = ~0;
150
151           vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
152           vnet_feature_arc_start (arc1, sw_if_index1, &next1, p1);
153
154           vlib_increment_simple_counter (cm, cpu_index, sw_if_index0, 1);
155           vlib_increment_simple_counter (cm, cpu_index, sw_if_index1, 1);
156
157           error0 = error1 = IP6_ERROR_NONE;
158
159           /* Version != 6?  Drop it. */
160           error0 = (clib_net_to_host_u32 (ip0->ip_version_traffic_class_and_flow_label) >> 28) != 6 ? IP6_ERROR_VERSION : error0;
161           error1 = (clib_net_to_host_u32 (ip1->ip_version_traffic_class_and_flow_label) >> 28) != 6 ? IP6_ERROR_VERSION : error1;
162
163           /* hop limit < 1? Drop it.  for link-local broadcast packets,
164            * like dhcpv6 packets from client has hop-limit 1, which should not
165            * be dropped.
166            */
167           error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0;
168           error1 = ip1->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error1;
169
170           /* L2 length must be at least minimal IP header. */
171           error0 = p0->current_length < sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0;
172           error1 = p1->current_length < sizeof (ip1[0]) ? IP6_ERROR_TOO_SHORT : error1;
173
174       if (PREDICT_FALSE(error0 != IP6_ERROR_NONE))
175         {
176           if (error0 == IP6_ERROR_TIME_EXPIRED) {
177             icmp6_error_set_vnet_buffer(p0, ICMP6_time_exceeded,
178                                           ICMP6_time_exceeded_ttl_exceeded_in_transit, 0);
179             next0 = IP6_INPUT_NEXT_ICMP_ERROR;
180           } else {
181             next0 = IP6_INPUT_NEXT_DROP;
182           }
183         }
184       if (PREDICT_FALSE(error1 != IP6_ERROR_NONE))
185         {
186           if (error1 == IP6_ERROR_TIME_EXPIRED) {
187             icmp6_error_set_vnet_buffer(p1, ICMP6_time_exceeded,
188                                           ICMP6_time_exceeded_ttl_exceeded_in_transit, 0);
189             next1 = IP6_INPUT_NEXT_ICMP_ERROR;
190           } else {
191             next1 = IP6_INPUT_NEXT_DROP;
192           }
193         }
194
195           p0->error = error_node->errors[error0];
196           p1->error = error_node->errors[error1];
197
198           vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
199                                            to_next, n_left_to_next,
200                                            pi0, pi1, next0, next1);
201         }
202     
203       while (n_left_from > 0 && n_left_to_next > 0)
204         {
205           vlib_buffer_t * p0;
206           ip6_header_t * ip0;
207           u32 pi0, sw_if_index0, next0 = 0;
208           u8 error0, arc0;
209
210           pi0 = from[0];
211           to_next[0] = pi0;
212           from += 1;
213           to_next += 1;
214           n_left_from -= 1;
215           n_left_to_next -= 1;
216
217           p0 = vlib_get_buffer (vm, pi0);
218           ip0 = vlib_buffer_get_current (p0);
219
220           sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
221           arc0 = ip6_address_is_multicast (&ip0->dst_address) ? lm->mcast_feature_arc_index : lm->ucast_feature_arc_index;
222           vnet_buffer (p0)->ip.adj_index[VLIB_RX] = ~0;
223           vnet_feature_arc_start (arc0, sw_if_index0, &next0, p0);
224
225           vlib_increment_simple_counter (cm, cpu_index, sw_if_index0, 1);
226           error0 = IP6_ERROR_NONE;
227
228           /* Version != 6?  Drop it. */
229           error0 = (clib_net_to_host_u32 (ip0->ip_version_traffic_class_and_flow_label) >> 28) != 6 ? IP6_ERROR_VERSION : error0;
230
231           /* hop limit < 1? Drop it. for link-local broadcast packets,
232            * like dhcpv6 packets from client has hop-limit 1, which should not
233            * be dropped.
234            */
235           error0 = ip0->hop_limit < 1 ? IP6_ERROR_TIME_EXPIRED : error0;
236
237           /* L2 length must be at least minimal IP header. */
238           error0 = p0->current_length < sizeof (ip0[0]) ? IP6_ERROR_TOO_SHORT : error0;
239
240       if (PREDICT_FALSE(error0 != IP6_ERROR_NONE))
241         {
242           if (error0 == IP6_ERROR_TIME_EXPIRED) {
243             icmp6_error_set_vnet_buffer(p0, ICMP6_time_exceeded,
244                                           ICMP6_time_exceeded_ttl_exceeded_in_transit, 0);
245             next0 = IP6_INPUT_NEXT_ICMP_ERROR;
246           } else {
247             next0 = IP6_INPUT_NEXT_DROP;
248           }
249         }
250           p0->error = error_node->errors[error0];
251
252           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
253                                            to_next, n_left_to_next,
254                                            pi0, next0);
255         }
256
257       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
258     }
259
260   return frame->n_vectors;
261 }
262
263 static char * ip6_error_strings[] = {
264 #define _(sym,string) string,
265   foreach_ip6_error
266 #undef _
267 };
268
269 VLIB_REGISTER_NODE (ip6_input_node) = {
270   .function = ip6_input,
271   .name = "ip6-input",
272   .vector_size = sizeof (u32),
273
274   .n_errors = IP6_N_ERROR,
275   .error_strings = ip6_error_strings,
276
277   .n_next_nodes = IP6_INPUT_N_NEXT,
278   .next_nodes = {
279     [IP6_INPUT_NEXT_DROP] = "error-drop",
280     [IP6_INPUT_NEXT_LOOKUP] = "ip6-lookup",
281     [IP6_INPUT_NEXT_ICMP_ERROR] = "ip6-icmp-error",
282   },
283
284   .format_buffer = format_ip6_header,
285   .format_trace = format_ip6_input_trace,
286 };
287
288 VLIB_NODE_FUNCTION_MULTIARCH (ip6_input_node, ip6_input)
289
290 static clib_error_t * ip6_init (vlib_main_t * vm)
291 {
292   ethernet_register_input_type (vm, ETHERNET_TYPE_IP6,
293                                 ip6_input_node.index);
294   ppp_register_input_protocol (vm, PPP_PROTOCOL_ip6,
295                                ip6_input_node.index);
296   hdlc_register_input_protocol (vm, HDLC_PROTOCOL_ip6,
297                                 ip6_input_node.index);
298
299   {
300     pg_node_t * pn;
301     pn = pg_get_node (ip6_input_node.index);
302     pn->unformat_edit = unformat_pg_ip6_header;
303   }
304
305   /* Set flow hash to something non-zero. */
306   ip6_main.flow_hash_seed = 0xdeadbeef;
307
308   /* Default hop limit for packets we generate. */
309   ip6_main.host_config.ttl = 64;
310
311   return /* no error */ 0;
312 }
313
314 VLIB_INIT_FUNCTION (ip6_init);