MAP: Convert from DPO to input feature.
[vpp.git] / src / plugins / map / map.h
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 #include <stdbool.h>
16 #include <vppinfra/error.h>
17 #include <vnet/vnet.h>
18 #include <vnet/ip/ip.h>
19 #include <vlib/vlib.h>
20 #include <vnet/fib/fib_types.h>
21 #include <vnet/fib/ip4_fib.h>
22 #include <vnet/adj/adj.h>
23 #include <vnet/dpo/load_balance.h>
24 #include "lpm.h"
25
26 #define MAP_SKIP_IP6_LOOKUP 1
27
28 #define MAP_ERR_GOOD                    0
29 #define MAP_ERR_BAD_POOL_SIZE           -1
30 #define MAP_ERR_BAD_HT_RATIO            -2
31 #define MAP_ERR_BAD_LIFETIME            -3
32 #define MAP_ERR_BAD_BUFFERS             -4
33 #define MAP_ERR_BAD_BUFFERS_TOO_LARGE   -5
34
35 int map_create_domain (ip4_address_t * ip4_prefix, u8 ip4_prefix_len,
36                        ip6_address_t * ip6_prefix, u8 ip6_prefix_len,
37                        ip6_address_t * ip6_src, u8 ip6_src_len,
38                        u8 ea_bits_len, u8 psid_offset, u8 psid_length,
39                        u32 * map_domain_index, u16 mtu, u8 flags);
40 int map_delete_domain (u32 map_domain_index);
41 int map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
42                       bool is_add);
43 int map_if_enable_disable (bool is_enable, u32 sw_if_index,
44                            bool is_translation);
45 u8 *format_map_trace (u8 * s, va_list * args);
46
47 int map_param_set_fragmentation (bool inner, bool ignore_df);
48 int map_param_set_icmp (ip4_address_t * ip4_err_relay_src);
49 int map_param_set_icmp6 (u8 enable_unreachable);
50 void map_pre_resolve (ip4_address_t * ip4, ip6_address_t * ip6, bool is_del);
51 int map_param_set_reassembly (bool is_ipv6, u16 lifetime_ms,
52                               u16 pool_size, u32 buffers, f64 ht_ratio,
53                               u32 * reass, u32 * packets);
54 int map_param_set_security_check (bool enable, bool fragments);
55 int map_param_set_traffic_class (bool copy, u8 tc);
56 int map_param_set_tcp (u16 tcp_mss);
57
58
59 typedef enum
60 {
61   MAP_DOMAIN_PREFIX = 1 << 0,
62   MAP_DOMAIN_TRANSLATION = 1 << 1,      // The domain uses MAP-T
63   MAP_DOMAIN_RFC6052 = 1 << 2,
64 } __attribute__ ((__packed__)) map_domain_flags_e;
65
66 /**
67  * IP4 reassembly logic:
68  * One virtually reassembled flow requires a map_ip4_reass_t structure in order
69  * to keep the first-fragment port number and, optionally, cache out of sequence
70  * packets.
71  * There are up to MAP_IP4_REASS_MAX_REASSEMBLY such structures.
72  * When in use, those structures are stored in a hash table of MAP_IP4_REASS_BUCKETS buckets.
73  * When a new structure needs to be used, it is allocated from available ones.
74  * If there is no structure available, the oldest in use is selected and used if and
75  * only if it was first allocated more than MAP_IP4_REASS_LIFETIME seconds ago.
76  * In case no structure can be allocated, the fragment is dropped.
77  */
78
79 #define MAP_IP4_REASS_LIFETIME_DEFAULT (100)    /* ms */
80 #define MAP_IP4_REASS_HT_RATIO_DEFAULT (1.0)
81 #define MAP_IP4_REASS_POOL_SIZE_DEFAULT 1024    // Number of reassembly structures
82 #define MAP_IP4_REASS_BUFFERS_DEFAULT 2048
83
84 #define MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5    // Number of fragment per reassembly
85
86 #define MAP_IP6_REASS_LIFETIME_DEFAULT (100)    /* ms */
87 #define MAP_IP6_REASS_HT_RATIO_DEFAULT (1.0)
88 #define MAP_IP6_REASS_POOL_SIZE_DEFAULT 1024    // Number of reassembly structures
89 #define MAP_IP6_REASS_BUFFERS_DEFAULT 2048
90
91 #define MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5
92
93 #define MAP_IP6_REASS_COUNT_BYTES
94 #define MAP_IP4_REASS_COUNT_BYTES
95
96 //#define IP6_MAP_T_OVERRIDE_TOS 0
97
98 /*
99  * This structure _MUST_ be no larger than a single cache line (64 bytes).
100  * If more space is needed make a union of ip6_prefix and *rules, those are mutually exclusive.
101  */
102 typedef struct
103 {
104   /* Required for pool_get_aligned */
105   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
106   ip6_address_t ip6_src;
107   ip6_address_t ip6_prefix;
108   ip6_address_t *rules;
109   u32 suffix_mask;
110   ip4_address_t ip4_prefix;
111   u16 psid_mask;
112   u16 mtu;
113   map_domain_flags_e flags;
114   u8 ip6_prefix_len;
115   u8 ip6_src_len;
116   u8 ea_bits_len;
117   u8 psid_offset;
118   u8 psid_length;
119
120   /* helpers */
121   u8 psid_shift;
122   u8 suffix_shift;
123   u8 ea_shift;
124
125   /* not used by forwarding */
126   u8 ip4_prefix_len;
127 } map_domain_t;
128
129 STATIC_ASSERT ((sizeof (map_domain_t) <= CLIB_CACHE_LINE_BYTES),
130                "MAP domain fits in one cacheline");
131
132 #define MAP_REASS_INDEX_NONE ((u16)0xffff)
133
134 /*
135  * Hash key, padded out to 16 bytes for fast compare
136  */
137 /* *INDENT-OFF* */
138 typedef union {
139   CLIB_PACKED (struct {
140     ip4_address_t src;
141     ip4_address_t dst;
142     u16 fragment_id;
143     u8 protocol;
144   });
145   u64 as_u64[2];
146   u32 as_u32[4];
147 } map_ip4_reass_key_t;
148 /* *INDENT-ON* */
149
150 typedef struct
151 {
152   map_ip4_reass_key_t key;
153   f64 ts;
154 #ifdef MAP_IP4_REASS_COUNT_BYTES
155   u16 expected_total;
156   u16 forwarded;
157 #endif
158   i32 port;
159   u16 bucket;
160   u16 bucket_next;
161   u16 fifo_prev;
162   u16 fifo_next;
163   u32 fragments[MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY];
164 } map_ip4_reass_t;
165
166 /*
167  * MAP domain counters
168  */
169 typedef enum
170 {
171   /* Simple counters */
172   MAP_DOMAIN_IPV4_FRAGMENT = 0,
173   /* Combined counters */
174   MAP_DOMAIN_COUNTER_RX = 0,
175   MAP_DOMAIN_COUNTER_TX,
176   MAP_N_DOMAIN_COUNTER
177 } map_domain_counter_t;
178
179 /*
180  * main_main_t
181  */
182 /* *INDENT-OFF* */
183 typedef union {
184   CLIB_PACKED (struct {
185     ip6_address_t src;
186     ip6_address_t dst;
187     u32 fragment_id;
188     u8 protocol;
189   });
190   u64 as_u64[5];
191   u32 as_u32[10];
192 } map_ip6_reass_key_t;
193 /* *INDENT-OFF* */
194
195 typedef struct {
196   u32 pi; //Cached packet or ~0
197   u16 next_data_offset; //The data offset of the additional 20 bytes or ~0
198   u8 next_data_len; //Number of bytes ready to be copied (20 if not last fragment)
199   u8 next_data[20]; //The 20 additional bytes
200 } map_ip6_fragment_t;
201
202 typedef struct {
203   map_ip6_reass_key_t key;
204   f64 ts;
205 #ifdef MAP_IP6_REASS_COUNT_BYTES
206   u16 expected_total;
207   u16 forwarded;
208 #endif
209   u16 bucket; //What hash bucket this element is linked in
210   u16 bucket_next;
211   u16 fifo_prev;
212   u16 fifo_next;
213   ip4_header_t ip4_header;
214   map_ip6_fragment_t fragments[MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY];
215 } map_ip6_reass_t;
216
217 #ifdef MAP_SKIP_IP6_LOOKUP
218 /**
219  * A pre-resolved next-hop
220  */
221 typedef struct map_main_pre_resolved_t_
222 {
223   /**
224    * Linkage into the FIB graph
225    */
226   fib_node_t node;
227
228   /**
229    * The FIB entry index of the next-hop
230    */
231   fib_node_index_t fei;
232
233   /**
234    * This object sibling index on the FIB entry's child dependency list
235    */
236   u32 sibling;
237
238   /**
239    * The Load-balance object index to use to forward
240    */
241   dpo_id_t dpo;
242 } map_main_pre_resolved_t;
243
244 /**
245  * Pre-resolved next hops for v4 and v6. Why these are global and not
246  * per-domain is beyond me.
247  */
248 extern map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
249 #endif
250
251 typedef struct {
252   /* pool of MAP domains */
253   map_domain_t *domains;
254
255   /* MAP Domain packet/byte counters indexed by map domain index */
256   vlib_simple_counter_main_t *simple_domain_counters;
257   vlib_combined_counter_main_t *domain_counters;
258   volatile u32 *counter_lock;
259
260   /* API message id base */
261   u16 msg_id_base;
262
263   /* Traffic class: zero, copy (~0) or fixed value */
264   u8 tc;
265   bool tc_copy;
266
267   bool sec_check;               /* Inbound security check */
268   bool sec_check_frag;          /* Inbound security check for (subsequent) fragments */
269   bool icmp6_enabled;           /* Send destination unreachable for security check failure */
270
271   u16 tcp_mss;                  /* TCP MSS clamp value */
272
273   /* ICMPv6 -> ICMPv4 relay parameters */
274   ip4_address_t icmp4_src_address;
275   vlib_simple_counter_main_t icmp_relayed;
276
277   /* convenience */
278   vlib_main_t *vlib_main;
279   vnet_main_t *vnet_main;
280
281   /*
282    * IPv4 encap and decap reassembly
283    */
284   /* Configuration */
285   f32 ip4_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
286   u16 ip4_reass_conf_pool_size; //Max number of allocated reass structures
287   u16 ip4_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
288   u32 ip4_reass_conf_buffers; //Maximum number of buffers used by ip4 reassembly
289
290   /* Runtime */
291   map_ip4_reass_t *ip4_reass_pool;
292   u8 ip4_reass_ht_log2len; //Hash table size is 2^log2len
293   u16 ip4_reass_allocated;
294   u16 *ip4_reass_hash_table;
295   u16 ip4_reass_fifo_last;
296   volatile u32 *ip4_reass_lock;
297
298   /* Counters */
299   u32 ip4_reass_buffered_counter;
300
301   bool frag_inner;              /* Inner or outer fragmentation */
302   bool frag_ignore_df;          /* Fragment (outer) packet even if DF is set */
303
304   /*
305    * IPv6 decap reassembly
306    */
307   /* Configuration */
308   f32 ip6_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
309   u16 ip6_reass_conf_pool_size; //Max number of allocated reass structures
310   u16 ip6_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
311   u32 ip6_reass_conf_buffers; //Maximum number of buffers used by ip6 reassembly
312
313   /* Runtime */
314   map_ip6_reass_t *ip6_reass_pool;
315   u8 ip6_reass_ht_log2len; //Hash table size is 2^log2len
316   u16 ip6_reass_allocated;
317   u16 *ip6_reass_hash_table;
318   u16 ip6_reass_fifo_last;
319   volatile u32 *ip6_reass_lock;
320
321   /* Counters */
322   u32 ip6_reass_buffered_counter;
323
324   /* Lookup tables */
325   lpm_t *ip4_prefix_tbl;
326   lpm_t *ip6_prefix_tbl;
327   lpm_t *ip6_src_prefix_tbl;
328 } map_main_t;
329
330 /*
331  * MAP Error counters/messages
332  */
333 #define foreach_map_error                               \
334   /* Must be first. */                                  \
335  _(NONE, "valid MAP packets")                           \
336  _(BAD_PROTOCOL, "bad protocol")                        \
337  _(SEC_CHECK, "security check failed")                  \
338  _(ENCAP_SEC_CHECK, "encap security check failed")      \
339  _(DECAP_SEC_CHECK, "decap security check failed")      \
340  _(ICMP, "unable to translate ICMP")                    \
341  _(ICMP_RELAY, "unable to relay ICMP")                  \
342  _(UNKNOWN, "unknown")                                  \
343  _(NO_BINDING, "no binding")                            \
344  _(NO_DOMAIN, "no domain")                              \
345  _(FRAGMENTED, "packet is a fragment")                  \
346  _(FRAGMENT_MEMORY, "could not cache fragment")         \
347  _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
348  _(FRAGMENT_DROPPED, "dropped cached fragment")         \
349  _(MALFORMED, "malformed packet")                       \
350  _(DF_SET, "can't fragment, DF set")
351
352 typedef enum {
353 #define _(sym,str) MAP_ERROR_##sym,
354    foreach_map_error
355 #undef _
356    MAP_N_ERROR,
357  } map_error_t;
358
359 u64 map_error_counter_get(u32 node_index, map_error_t map_error);
360
361 typedef struct {
362   u32 map_domain_index;
363   u16 port;
364 } map_trace_t;
365
366 extern map_main_t map_main;
367
368 extern vlib_node_registration_t ip4_map_node;
369 extern vlib_node_registration_t ip6_map_node;
370
371 extern vlib_node_registration_t ip4_map_t_node;
372 extern vlib_node_registration_t ip4_map_t_fragmented_node;
373 extern vlib_node_registration_t ip4_map_t_tcp_udp_node;
374 extern vlib_node_registration_t ip4_map_t_icmp_node;
375
376 extern vlib_node_registration_t ip6_map_t_node;
377 extern vlib_node_registration_t ip6_map_t_fragmented_node;
378 extern vlib_node_registration_t ip6_map_t_tcp_udp_node;
379 extern vlib_node_registration_t ip6_map_t_icmp_node;
380
381 /*
382  * map_get_pfx
383  */
384 static_always_inline u64
385 map_get_pfx (map_domain_t *d, u32 addr, u16 port)
386 {
387   u16 psid = (port >> d->psid_shift) & d->psid_mask;
388
389   if (d->ea_bits_len == 0 && d->rules)
390     return clib_net_to_host_u64(d->rules[psid].as_u64[0]);
391
392   u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
393   u64 ea = d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
394
395   return clib_net_to_host_u64(d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
396 }
397
398 static_always_inline u64
399 map_get_pfx_net (map_domain_t *d, u32 addr, u16 port)
400 {
401   return clib_host_to_net_u64(map_get_pfx(d, clib_net_to_host_u32(addr),
402                                           clib_net_to_host_u16(port)));
403 }
404
405 /*
406  * map_get_sfx
407  */
408 static_always_inline u64
409 map_get_sfx (map_domain_t *d, u32 addr, u16 port)
410 {
411   u16 psid = (port >> d->psid_shift) & d->psid_mask;
412
413   /* Shared 1:1 mode. */
414   if (d->ea_bits_len == 0 && d->rules)
415     return clib_net_to_host_u64(d->rules[psid].as_u64[1]);
416   if (d->ip6_prefix_len == 128)
417     return clib_net_to_host_u64(d->ip6_prefix.as_u64[1]);
418
419   if (d->ip6_src_len == 96)
420     return (clib_net_to_host_u64(d->ip6_prefix.as_u64[1]) | addr);
421
422   /* IPv4 prefix */
423   if (d->flags & MAP_DOMAIN_PREFIX)
424     return (u64) (addr & (0xFFFFFFFF << d->suffix_shift)) << 16;
425
426   /* Shared or full IPv4 address */
427   return ((u64) addr << 16) | psid;
428 }
429
430 static_always_inline u64
431 map_get_sfx_net (map_domain_t *d, u32 addr, u16 port)
432 {
433   return clib_host_to_net_u64(map_get_sfx(d, clib_net_to_host_u32(addr),
434                                           clib_net_to_host_u16(port)));
435 }
436
437 static_always_inline u32
438 map_get_ip4 (ip6_address_t *addr, u16 prefix_len)
439 {
440   ASSERT(prefix_len == 64 || prefix_len == 96);
441   if (prefix_len == 96)
442     return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]));
443   else
444     return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]) >> 16);
445 }
446
447 static_always_inline map_domain_t *
448 ip4_map_get_domain (ip4_address_t *addr, u32 *map_domain_index, u8 *error)
449 {
450   map_main_t *mm = &map_main;
451
452   u32 mdi = mm->ip4_prefix_tbl->lookup(mm->ip4_prefix_tbl, addr, 32);
453   if (mdi == ~0) {
454     *error = MAP_ERROR_NO_DOMAIN;
455     return 0;
456   }
457   *map_domain_index = mdi;
458   return pool_elt_at_index(mm->domains, mdi);
459 }
460
461 /*
462  * Get the MAP domain from an IPv6 address.
463  * If the IPv6 address or
464  * prefix is shared the IPv4 address must be used.
465  */
466 static_always_inline map_domain_t *
467 ip6_map_get_domain (ip6_address_t *addr,
468                     u32 *map_domain_index,
469                     u8 *error)
470 {
471   map_main_t *mm = &map_main;
472   u32 mdi = mm->ip6_src_prefix_tbl->lookup(mm->ip6_src_prefix_tbl, addr, 128);
473   if (mdi == ~0) {
474     *error = MAP_ERROR_NO_DOMAIN;
475     return 0;
476   }
477
478   *map_domain_index = mdi;
479   return pool_elt_at_index(mm->domains, mdi);
480 }
481
482 map_ip4_reass_t *
483 map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id,
484                   u8 protocol, u32 **pi_to_drop);
485 void
486 map_ip4_reass_free(map_ip4_reass_t *r, u32 **pi_to_drop);
487
488 #define map_ip4_reass_lock() while (clib_atomic_test_and_set (map_main.ip4_reass_lock)) {}
489 #define map_ip4_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip4_reass_lock = 0;} while(0)
490
491 static_always_inline void
492 map_ip4_reass_get_fragments(map_ip4_reass_t *r, u32 **pi)
493 {
494   int i;
495   for (i=0; i<MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
496     if(r->fragments[i] != ~0) {
497       vec_add1(*pi, r->fragments[i]);
498       r->fragments[i] = ~0;
499       map_main.ip4_reass_buffered_counter--;
500     }
501 }
502
503 clib_error_t * map_plugin_api_hookup (vlib_main_t * vm);
504
505 int map_ip4_reass_add_fragment(map_ip4_reass_t *r, u32 pi);
506
507 map_ip6_reass_t *
508 map_ip6_reass_get(ip6_address_t *src, ip6_address_t *dst, u32 fragment_id,
509                   u8 protocol, u32 **pi_to_drop);
510 void
511 map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop);
512
513 #define map_ip6_reass_lock() while (clib_atomic_test_and_set (map_main.ip6_reass_lock)) {}
514 #define map_ip6_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip6_reass_lock = 0;} while(0)
515
516 int
517 map_ip6_reass_add_fragment(map_ip6_reass_t *r, u32 pi,
518                            u16 data_offset, u16 next_data_offset,
519                            u8 *data_start, u16 data_len);
520
521 void map_ip4_drop_pi(u32 pi);
522
523 int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
524 #define MAP_IP4_REASS_CONF_HT_RATIO_MAX 100
525 int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
526 #define MAP_IP4_REASS_CONF_POOL_SIZE_MAX (0xfeff)
527 int map_ip4_reass_conf_lifetime(u16 lifetime_ms);
528 #define MAP_IP4_REASS_CONF_LIFETIME_MAX 0xffff
529 int map_ip4_reass_conf_buffers(u32 buffers);
530 #define MAP_IP4_REASS_CONF_BUFFERS_MAX (0xffffffff)
531
532 void map_ip6_drop_pi(u32 pi);
533
534
535 int map_ip6_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
536 #define MAP_IP6_REASS_CONF_HT_RATIO_MAX 100
537 int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
538 #define MAP_IP6_REASS_CONF_POOL_SIZE_MAX (0xfeff)
539 int map_ip6_reass_conf_lifetime(u16 lifetime_ms);
540 #define MAP_IP6_REASS_CONF_LIFETIME_MAX 0xffff
541 int map_ip6_reass_conf_buffers(u32 buffers);
542 #define MAP_IP6_REASS_CONF_BUFFERS_MAX (0xffffffff)
543
544 /*
545  * Supports prefix of 96 or 64 (with u-octet)
546  */
547 static_always_inline void
548 ip4_map_t_embedded_address (map_domain_t *d,
549                             ip6_address_t *ip6, const ip4_address_t *ip4)
550 {
551   ASSERT(d->ip6_src_len == 96 || d->ip6_src_len == 64); //No support for other lengths for now
552   u8 offset = d->ip6_src_len == 64 ? 9 : 12;
553   ip6->as_u64[0] = d->ip6_src.as_u64[0];
554   ip6->as_u64[1] = d->ip6_src.as_u64[1];
555   clib_memcpy_fast(&ip6->as_u8[offset], ip4, 4);
556 }
557
558 static_always_inline u32
559 ip6_map_t_embedded_address (map_domain_t *d, ip6_address_t *addr)
560 {
561   ASSERT(d->ip6_src_len == 64 || d->ip6_src_len == 96);
562   u32 x;
563   u8 offset = d->ip6_src_len == 64 ? 9 : 12;
564   clib_memcpy(&x, &addr->as_u8[offset], 4);
565   return x;
566 }
567
568 static inline void
569 map_domain_counter_lock (map_main_t *mm)
570 {
571   if (mm->counter_lock)
572     while (clib_atomic_test_and_set (mm->counter_lock))
573       /* zzzz */ ;
574 }
575 static inline void
576 map_domain_counter_unlock (map_main_t *mm)
577 {
578   if (mm->counter_lock)
579     clib_atomic_release (mm->counter_lock);
580 }
581
582
583 static_always_inline void
584 map_send_all_to_node(vlib_main_t *vm, u32 *pi_vector,
585                      vlib_node_runtime_t *node, vlib_error_t *error,
586                      u32 next)
587 {
588   u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
589   //Deal with fragments that are ready
590   from = pi_vector;
591   n_left_from = vec_len(pi_vector);
592   next_index = node->cached_next_index;
593   while (n_left_from > 0) {
594     vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
595     while (n_left_from > 0 && n_left_to_next > 0) {
596       u32 pi0 = to_next[0] = from[0];
597       from += 1;
598       n_left_from -= 1;
599       to_next += 1;
600       n_left_to_next -= 1;
601       vlib_buffer_t *p0 = vlib_get_buffer(vm, pi0);
602       p0->error = *error;
603       vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, pi0, next);
604     }
605     vlib_put_next_frame(vm, node, next_index, n_left_to_next);
606   }
607 }
608
609 static_always_inline void
610 map_mss_clamping (tcp_header_t * tcp, ip_csum_t * sum, u16 mss_clamping)
611 {
612   u8 *data;
613   u8 opt_len, opts_len, kind;
614   u16 mss;
615   u16 mss_value_net = clib_host_to_net_u16(mss_clamping);
616
617   if (!tcp_syn (tcp))
618     return;
619
620   opts_len = (tcp_doff (tcp) << 2) - sizeof (tcp_header_t);
621   data = (u8 *) (tcp + 1);
622   for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
623     {
624       kind = data[0];
625
626       if (kind == TCP_OPTION_EOL)
627         break;
628       else if (kind == TCP_OPTION_NOOP)
629         {
630           opt_len = 1;
631           continue;
632         }
633       else
634         {
635           if (opts_len < 2)
636             return;
637           opt_len = data[1];
638
639           if (opt_len < 2 || opt_len > opts_len)
640             return;
641         }
642
643       if (kind == TCP_OPTION_MSS)
644         {
645           mss = *(u16 *) (data + 2);
646           if (clib_net_to_host_u16 (mss) > mss_clamping)
647             {
648               *sum =
649                 ip_csum_update (*sum, mss, mss_value_net, ip4_header_t,
650                                 length);
651               clib_memcpy (data + 2, &mss_value_net, 2);
652             }
653           return;
654         }
655     }
656 }
657
658 /*
659  * fd.io coding-style-patch-verification: ON
660  *
661  * Local Variables:
662  * eval: (c-set-style "gnu")
663  * End:
664  */