ip: IPv4 Fragmentation fix for l2fragmetable size
[vpp.git] / src / vnet / ip / ip_frag.c
1 /*---------------------------------------------------------------------------
2  * Copyright (c) 2009-2014 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 /*
17  * IPv4 Fragmentation Node
18  *
19  *
20  */
21
22 #include "ip_frag.h"
23
24 #include <vnet/ip/ip.h>
25
26 typedef struct
27 {
28   u16 mtu;
29   u8 next;
30   u16 n_fragments;
31   u16 pkt_size;
32 } ip_frag_trace_t;
33
34 static u8 *
35 format_ip_frag_trace (u8 * s, va_list * args)
36 {
37   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
38   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
39   ip_frag_trace_t *t = va_arg (*args, ip_frag_trace_t *);
40   s = format (s, "mtu: %u pkt-size: %u fragments: %u next: %d", t->mtu,
41               t->pkt_size, t->n_fragments, t->next);
42   return s;
43 }
44
45 static u32 running_fragment_id;
46
47 static void
48 frag_set_sw_if_index (vlib_buffer_t * to, vlib_buffer_t * from)
49 {
50   vnet_buffer (to)->sw_if_index[VLIB_RX] =
51     vnet_buffer (from)->sw_if_index[VLIB_RX];
52   vnet_buffer (to)->sw_if_index[VLIB_TX] =
53     vnet_buffer (from)->sw_if_index[VLIB_TX];
54
55   /* Copy adj_index in case DPO based node is sending for the
56    * fragmentation, the packet would be sent back to the proper
57    * DPO next node and Index
58    */
59   vnet_buffer (to)->ip.adj_index[VLIB_RX] =
60     vnet_buffer (from)->ip.adj_index[VLIB_RX];
61   vnet_buffer (to)->ip.adj_index[VLIB_TX] =
62     vnet_buffer (from)->ip.adj_index[VLIB_TX];
63
64   /* Copy QoS Bits */
65   if (PREDICT_TRUE (from->flags & VNET_BUFFER_F_QOS_DATA_VALID))
66     {
67       vnet_buffer2 (to)->qos = vnet_buffer2 (from)->qos;
68       to->flags |= VNET_BUFFER_F_QOS_DATA_VALID;
69     }
70 }
71
72 static vlib_buffer_t *
73 frag_buffer_alloc (vlib_buffer_t * org_b, u32 * bi)
74 {
75   vlib_main_t *vm = vlib_get_main ();
76   if (vlib_buffer_alloc (vm, bi, 1) != 1)
77     return 0;
78
79   vlib_buffer_t *b = vlib_get_buffer (vm, *bi);
80   vlib_buffer_copy_trace_flag (vm, org_b, *bi);
81
82   return b;
83 }
84
85 /*
86  * Limitation: Does follow buffer chains in the packet to fragment,
87  * but does not generate buffer chains. I.e. a fragment is always
88  * contained with in a single buffer and limited to the max buffer
89  * size.
90  * from_bi: current pointer must point to IPv4 header
91  */
92 ip_frag_error_t
93 ip4_frag_do_fragment (vlib_main_t * vm, u32 from_bi, u16 mtu,
94                       u16 l2unfragmentablesize, u32 ** buffer)
95 {
96   vlib_buffer_t *from_b;
97   ip4_header_t *ip4;
98   u16 len, max, rem, ip_frag_id, ip_frag_offset, head_bytes;
99   u8 *org_from_packet, more;
100
101   from_b = vlib_get_buffer (vm, from_bi);
102   org_from_packet = vlib_buffer_get_current (from_b);
103   ip4 = vlib_buffer_get_current (from_b) + l2unfragmentablesize;
104
105   rem = clib_net_to_host_u16 (ip4->length) - sizeof (ip4_header_t);
106   head_bytes = sizeof (ip4_header_t) + l2unfragmentablesize;
107   max = (clib_min (mtu, vlib_buffer_get_default_data_size (vm)) - head_bytes) &
108         ~0x7;
109
110   if (rem >
111       (vlib_buffer_length_in_chain (vm, from_b) - sizeof (ip4_header_t)))
112     {
113       return IP_FRAG_ERROR_MALFORMED;
114     }
115
116   if (mtu < sizeof (ip4_header_t))
117     {
118       return IP_FRAG_ERROR_CANT_FRAGMENT_HEADER;
119     }
120
121   if (ip4->flags_and_fragment_offset &
122       clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT))
123     {
124       return IP_FRAG_ERROR_DONT_FRAGMENT_SET;
125     }
126
127   if (ip4_is_fragment (ip4))
128     {
129       ip_frag_id = ip4->fragment_id;
130       ip_frag_offset = ip4_get_fragment_offset (ip4);
131       more =
132         !(!(ip4->flags_and_fragment_offset &
133             clib_host_to_net_u16 (IP4_HEADER_FLAG_MORE_FRAGMENTS)));
134     }
135   else
136     {
137       ip_frag_id = (++running_fragment_id);
138       ip_frag_offset = 0;
139       more = 0;
140     }
141
142   u8 *from_data = (void *) (ip4 + 1);
143   vlib_buffer_t *org_from_b = from_b;
144   u16 fo = 0;
145   u16 left_in_from_buffer = from_b->current_length - head_bytes;
146   u16 ptr = 0;
147
148   /* Do the actual fragmentation */
149   while (rem)
150     {
151       u32 to_bi;
152       vlib_buffer_t *to_b;
153       ip4_header_t *to_ip4;
154       u8 *to_data;
155
156       len = (rem > max ? max : rem);
157       if (len != rem)           /* Last fragment does not need to divisible by 8 */
158         len &= ~0x7;
159       if ((to_b = frag_buffer_alloc (org_from_b, &to_bi)) == 0)
160         {
161           return IP_FRAG_ERROR_MEMORY;
162         }
163       vec_add1 (*buffer, to_bi);
164       frag_set_sw_if_index (to_b, org_from_b);
165
166       /* Copy ip4 header */
167       to_data = vlib_buffer_get_current (to_b);
168       clib_memcpy_fast (to_data, org_from_packet, head_bytes);
169       to_ip4 = (ip4_header_t *) (to_data + l2unfragmentablesize);
170       to_data = (void *) (to_ip4 + 1);
171       vnet_buffer (to_b)->l3_hdr_offset = to_b->current_data;
172       vlib_buffer_copy_trace_flag (vm, from_b, to_bi);
173       to_b->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
174
175       if (from_b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID)
176         {
177           vnet_buffer (to_b)->l4_hdr_offset =
178             (vnet_buffer (to_b)->l3_hdr_offset +
179              (vnet_buffer (from_b)->l4_hdr_offset -
180               vnet_buffer (from_b)->l3_hdr_offset));
181           to_b->flags |= VNET_BUFFER_F_L4_HDR_OFFSET_VALID;
182         }
183
184       /* Spin through from buffers filling up the to buffer */
185       u16 left_in_to_buffer = len, to_ptr = 0;
186       while (1)
187         {
188           u16 bytes_to_copy;
189
190           /* Figure out how many bytes we can safely copy */
191           bytes_to_copy = left_in_to_buffer <= left_in_from_buffer ?
192             left_in_to_buffer : left_in_from_buffer;
193           clib_memcpy_fast (to_data + to_ptr, from_data + ptr, bytes_to_copy);
194           left_in_to_buffer -= bytes_to_copy;
195           ptr += bytes_to_copy;
196           left_in_from_buffer -= bytes_to_copy;
197           if (left_in_to_buffer == 0)
198             break;
199
200           ASSERT (left_in_from_buffer <= 0);
201           /* Move buffer */
202           if (!(from_b->flags & VLIB_BUFFER_NEXT_PRESENT))
203             {
204               return IP_FRAG_ERROR_MALFORMED;
205             }
206           from_b = vlib_get_buffer (vm, from_b->next_buffer);
207           from_data = (u8 *) vlib_buffer_get_current (from_b);
208           ptr = 0;
209           left_in_from_buffer = from_b->current_length;
210           to_ptr += bytes_to_copy;
211         }
212
213       to_b->flags |= VNET_BUFFER_F_IS_IP4;
214       to_b->current_length = len + head_bytes;
215
216       to_ip4->fragment_id = ip_frag_id;
217       to_ip4->flags_and_fragment_offset =
218         clib_host_to_net_u16 ((fo >> 3) + ip_frag_offset);
219       to_ip4->flags_and_fragment_offset |=
220         clib_host_to_net_u16 (((len != rem) || more) << 13);
221       to_ip4->length = clib_host_to_net_u16 (len + sizeof (ip4_header_t));
222       to_ip4->checksum = ip4_header_checksum (to_ip4);
223
224       /* we've just done the IP checksum .. */
225       vnet_buffer_offload_flags_clear (to_b, VNET_BUFFER_OFFLOAD_F_IP_CKSUM);
226
227       rem -= len;
228       fo += len;
229     }
230
231   return IP_FRAG_ERROR_NONE;
232 }
233
234 void
235 ip_frag_set_vnet_buffer (vlib_buffer_t * b, u16 mtu, u8 next_index, u8 flags)
236 {
237   vnet_buffer (b)->ip_frag.mtu = mtu;
238   vnet_buffer (b)->ip_frag.next_index = next_index;
239   vnet_buffer (b)->ip_frag.flags = flags;
240 }
241
242
243 static inline uword
244 frag_node_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
245                   vlib_frame_t * frame, u32 node_index, bool is_ip6)
246 {
247   u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
248   vlib_node_runtime_t *error_node = vlib_node_get_runtime (vm, node_index);
249   from = vlib_frame_vector_args (frame);
250   n_left_from = frame->n_vectors;
251   next_index = node->cached_next_index;
252   u32 frag_sent = 0, small_packets = 0;
253   u32 *buffer = 0;
254
255   while (n_left_from > 0)
256     {
257       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
258
259       while (n_left_from > 0 && n_left_to_next > 0)
260         {
261           u32 pi0, *frag_from, frag_left;
262           vlib_buffer_t *p0;
263           ip_frag_error_t error0;
264           int next0;
265
266           /*
267            * Note: The packet is not enqueued now. It is instead put
268            * in a vector where other fragments will be put as well.
269            */
270           pi0 = from[0];
271           from += 1;
272           n_left_from -= 1;
273
274           p0 = vlib_get_buffer (vm, pi0);
275           u16 mtu = vnet_buffer (p0)->ip_frag.mtu;
276           if (is_ip6)
277             error0 = ip6_frag_do_fragment (vm, pi0, mtu, 0, &buffer);
278           else
279             error0 = ip4_frag_do_fragment (vm, pi0, mtu, 0, &buffer);
280
281           if (PREDICT_FALSE (p0->flags & VLIB_BUFFER_IS_TRACED))
282             {
283               ip_frag_trace_t *tr =
284                 vlib_add_trace (vm, node, p0, sizeof (*tr));
285               tr->mtu = mtu;
286               tr->pkt_size = vlib_buffer_length_in_chain (vm, p0);
287               tr->n_fragments = vec_len (buffer);
288               tr->next = vnet_buffer (p0)->ip_frag.next_index;
289             }
290
291           if (!is_ip6 && error0 == IP_FRAG_ERROR_DONT_FRAGMENT_SET)
292             {
293               icmp4_error_set_vnet_buffer (p0, ICMP4_destination_unreachable,
294                                            ICMP4_destination_unreachable_fragmentation_needed_and_dont_fragment_set,
295                                            vnet_buffer (p0)->ip_frag.mtu);
296               next0 = IP_FRAG_NEXT_ICMP_ERROR;
297             }
298           else
299             {
300               next0 = (error0 == IP_FRAG_ERROR_NONE ?
301                        vnet_buffer (p0)->ip_frag.next_index :
302                        IP_FRAG_NEXT_DROP);
303             }
304
305           if (error0 == IP_FRAG_ERROR_NONE)
306             {
307               /* Free original buffer chain */
308               frag_sent += vec_len (buffer);
309               small_packets += (vec_len (buffer) == 1);
310               vlib_buffer_free_one (vm, pi0);   /* Free original packet */
311             }
312           else
313             {
314               vlib_error_count (vm, node_index, error0, 1);
315               vec_add1 (buffer, pi0);   /* Get rid of the original buffer */
316             }
317
318           /* Send fragments that were added in the frame */
319           frag_from = buffer;
320           frag_left = vec_len (buffer);
321
322           while (frag_left > 0)
323             {
324               while (frag_left > 0 && n_left_to_next > 0)
325                 {
326                   u32 i;
327                   i = to_next[0] = frag_from[0];
328                   frag_from += 1;
329                   frag_left -= 1;
330                   to_next += 1;
331                   n_left_to_next -= 1;
332
333                   vlib_get_buffer (vm, i)->error = error_node->errors[error0];
334                   vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
335                                                    to_next, n_left_to_next, i,
336                                                    next0);
337                 }
338               vlib_put_next_frame (vm, node, next_index, n_left_to_next);
339               vlib_get_next_frame (vm, node, next_index, to_next,
340                                    n_left_to_next);
341             }
342           vec_reset_length (buffer);
343         }
344       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
345     }
346   vec_free (buffer);
347
348   vlib_node_increment_counter (vm, node_index,
349                                IP_FRAG_ERROR_FRAGMENT_SENT, frag_sent);
350   vlib_node_increment_counter (vm, node_index,
351                                IP_FRAG_ERROR_SMALL_PACKET, small_packets);
352
353   return frame->n_vectors;
354 }
355
356
357
358 static uword
359 ip4_frag (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
360 {
361   return frag_node_inline (vm, node, frame, ip4_frag_node.index,
362                            0 /* is_ip6 */ );
363 }
364
365 static uword
366 ip6_frag (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
367 {
368   return frag_node_inline (vm, node, frame, ip6_frag_node.index,
369                            1 /* is_ip6 */ );
370 }
371
372 /*
373  * Fragments the packet given in from_bi. Fragments are returned in the buffer vector.
374  * Caller must ensure the original packet is freed.
375  * from_bi: current pointer must point to IPv6 header
376  */
377 ip_frag_error_t
378 ip6_frag_do_fragment (vlib_main_t * vm, u32 from_bi, u16 mtu,
379                       u16 l2unfragmentablesize, u32 ** buffer)
380 {
381   vlib_buffer_t *from_b;
382   ip6_header_t *ip6;
383   u16 len, max, rem, ip_frag_id;
384   u8 *org_from_packet;
385   u16 head_bytes;
386
387   from_b = vlib_get_buffer (vm, from_bi);
388   org_from_packet = vlib_buffer_get_current (from_b);
389   ip6 = vlib_buffer_get_current (from_b) + l2unfragmentablesize;
390
391   head_bytes =
392     (sizeof (ip6_header_t) + sizeof (ip6_frag_hdr_t) + l2unfragmentablesize);
393   rem = clib_net_to_host_u16 (ip6->payload_length);
394   max = (clib_min (mtu, vlib_buffer_get_default_data_size (vm)) - head_bytes) &
395         ~0x7;
396
397   if (rem >
398       (vlib_buffer_length_in_chain (vm, from_b) - sizeof (ip6_header_t)))
399     {
400       return IP_FRAG_ERROR_MALFORMED;
401     }
402
403   /* TODO: Look through header chain for fragmentation header */
404   if (ip6->protocol == IP_PROTOCOL_IPV6_FRAGMENTATION)
405     {
406       return IP_FRAG_ERROR_MALFORMED;
407     }
408
409   u8 *from_data = (void *) (ip6 + 1);
410   vlib_buffer_t *org_from_b = from_b;
411   u16 fo = 0;
412   u16 left_in_from_buffer =
413     from_b->current_length - (l2unfragmentablesize + sizeof (ip6_header_t));
414   u16 ptr = 0;
415
416   ip_frag_id = ++running_fragment_id;   // Fix
417
418   /* Do the actual fragmentation */
419   while (rem)
420     {
421       u32 to_bi;
422       vlib_buffer_t *to_b;
423       ip6_header_t *to_ip6;
424       ip6_frag_hdr_t *to_frag_hdr;
425       u8 *to_data;
426
427       len = (rem > max ? max : rem);
428       if (len != rem)           /* Last fragment does not need to divisible by 8 */
429         len &= ~0x7;
430       if ((to_b = frag_buffer_alloc (org_from_b, &to_bi)) == 0)
431         {
432           return IP_FRAG_ERROR_MEMORY;
433         }
434       vec_add1 (*buffer, to_bi);
435       frag_set_sw_if_index (to_b, org_from_b);
436
437       /* Copy ip6 header */
438       clib_memcpy_fast (to_b->data, org_from_packet,
439                         l2unfragmentablesize + sizeof (ip6_header_t));
440       to_ip6 = vlib_buffer_get_current (to_b) + l2unfragmentablesize;
441       to_frag_hdr = (ip6_frag_hdr_t *) (to_ip6 + 1);
442       to_data = (void *) (to_frag_hdr + 1);
443
444       vnet_buffer (to_b)->l3_hdr_offset = to_b->current_data;
445       to_b->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID;
446
447       if (from_b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID)
448         {
449           vnet_buffer (to_b)->l4_hdr_offset =
450             (vnet_buffer (to_b)->l3_hdr_offset +
451              (vnet_buffer (from_b)->l4_hdr_offset -
452               vnet_buffer (from_b)->l3_hdr_offset));
453           to_b->flags |= VNET_BUFFER_F_L4_HDR_OFFSET_VALID;
454         }
455       to_b->flags |= VNET_BUFFER_F_IS_IP6;
456
457       /* Spin through from buffers filling up the to buffer */
458       u16 left_in_to_buffer = len, to_ptr = 0;
459       while (1)
460         {
461           u16 bytes_to_copy;
462
463           /* Figure out how many bytes we can safely copy */
464           bytes_to_copy = left_in_to_buffer <= left_in_from_buffer ?
465             left_in_to_buffer : left_in_from_buffer;
466           clib_memcpy_fast (to_data + to_ptr, from_data + ptr, bytes_to_copy);
467           left_in_to_buffer -= bytes_to_copy;
468           ptr += bytes_to_copy;
469           left_in_from_buffer -= bytes_to_copy;
470           if (left_in_to_buffer == 0)
471             break;
472
473           ASSERT (left_in_from_buffer <= 0);
474           /* Move buffer */
475           if (!(from_b->flags & VLIB_BUFFER_NEXT_PRESENT))
476             {
477               return IP_FRAG_ERROR_MALFORMED;
478             }
479           from_b = vlib_get_buffer (vm, from_b->next_buffer);
480           from_data = (u8 *) vlib_buffer_get_current (from_b);
481           ptr = 0;
482           left_in_from_buffer = from_b->current_length;
483           to_ptr += bytes_to_copy;
484         }
485
486       to_b->current_length = len + head_bytes;
487       to_ip6->payload_length =
488         clib_host_to_net_u16 (len + sizeof (ip6_frag_hdr_t));
489       to_ip6->protocol = IP_PROTOCOL_IPV6_FRAGMENTATION;
490       to_frag_hdr->fragment_offset_and_more =
491         ip6_frag_hdr_offset_and_more ((fo >> 3), len != rem);
492       to_frag_hdr->identification = ip_frag_id;
493       to_frag_hdr->next_hdr = ip6->protocol;
494       to_frag_hdr->rsv = 0;
495
496       rem -= len;
497       fo += len;
498     }
499
500   return IP_FRAG_ERROR_NONE;
501 }
502
503 char *ip4_frag_error_strings[] = {
504 #define _(sym,string) string,
505   foreach_ip_frag_error
506 #undef _
507 };
508
509 /* *INDENT-OFF* */
510 VLIB_REGISTER_NODE (ip4_frag_node) = {
511   .function = ip4_frag,
512   .name = IP4_FRAG_NODE_NAME,
513   .vector_size = sizeof (u32),
514   .format_trace = format_ip_frag_trace,
515   .type = VLIB_NODE_TYPE_INTERNAL,
516
517   .n_errors = IP_FRAG_N_ERROR,
518   .error_strings = ip4_frag_error_strings,
519
520   .n_next_nodes = IP_FRAG_N_NEXT,
521   .next_nodes = {
522     [IP_FRAG_NEXT_IP_REWRITE] = "ip4-rewrite",
523     [IP_FRAG_NEXT_IP_REWRITE_MIDCHAIN] = "ip4-midchain",
524     [IP_FRAG_NEXT_IP4_LOOKUP] = "ip4-lookup",
525     [IP_FRAG_NEXT_IP6_LOOKUP] = "ip6-lookup",
526     [IP_FRAG_NEXT_ICMP_ERROR] = "ip4-icmp-error",
527     [IP_FRAG_NEXT_DROP] = "ip4-drop"
528   },
529 };
530 /* *INDENT-ON* */
531
532 /* *INDENT-OFF* */
533 VLIB_REGISTER_NODE (ip6_frag_node) = {
534   .function = ip6_frag,
535   .name = IP6_FRAG_NODE_NAME,
536   .vector_size = sizeof (u32),
537   .format_trace = format_ip_frag_trace,
538   .type = VLIB_NODE_TYPE_INTERNAL,
539
540   .n_errors = IP_FRAG_N_ERROR,
541   .error_strings = ip4_frag_error_strings,
542
543   .n_next_nodes = IP_FRAG_N_NEXT,
544   .next_nodes = {
545     [IP_FRAG_NEXT_IP_REWRITE] = "ip6-rewrite",
546     [IP_FRAG_NEXT_IP_REWRITE_MIDCHAIN] = "ip6-midchain",
547     [IP_FRAG_NEXT_IP4_LOOKUP] = "ip4-lookup",
548     [IP_FRAG_NEXT_IP6_LOOKUP] = "ip6-lookup",
549     [IP_FRAG_NEXT_ICMP_ERROR] = "error-drop",
550     [IP_FRAG_NEXT_DROP] = "ip6-drop"
551   },
552 };
553 /* *INDENT-ON* */
554
555 /*
556  * fd.io coding-style-patch-verification: ON
557  *
558  * Local Variables:
559  * eval: (c-set-style "gnu")
560  * End:
561  */