map: use ip6-full-reassembly instead of own code
[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 #include <vppinfra/lock.h>
26
27 #define MAP_SKIP_IP6_LOOKUP 1
28
29 #define MAP_ERR_GOOD                    0
30 #define MAP_ERR_BAD_POOL_SIZE           -1
31 #define MAP_ERR_BAD_HT_RATIO            -2
32 #define MAP_ERR_BAD_LIFETIME            -3
33 #define MAP_ERR_BAD_BUFFERS             -4
34 #define MAP_ERR_BAD_BUFFERS_TOO_LARGE   -5
35 #define MAP_ERR_UNSUPPORTED             -6
36
37 int map_create_domain (ip4_address_t * ip4_prefix, u8 ip4_prefix_len,
38                        ip6_address_t * ip6_prefix, u8 ip6_prefix_len,
39                        ip6_address_t * ip6_src, u8 ip6_src_len,
40                        u8 ea_bits_len, u8 psid_offset, u8 psid_length,
41                        u32 * map_domain_index, u16 mtu, u8 flags, u8 * tag);
42 int map_delete_domain (u32 map_domain_index);
43 int map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
44                       bool is_add);
45 int map_if_enable_disable (bool is_enable, u32 sw_if_index,
46                            bool is_translation);
47 u8 *format_map_trace (u8 * s, va_list * args);
48
49 int map_param_set_fragmentation (bool inner, bool ignore_df);
50 int map_param_set_icmp (ip4_address_t * ip4_err_relay_src);
51 int map_param_set_icmp6 (u8 enable_unreachable);
52 void map_pre_resolve (ip4_address_t * ip4, ip6_address_t * ip6, bool is_del);
53 int map_param_set_security_check (bool enable, bool fragments);
54 int map_param_set_traffic_class (bool copy, u8 tc);
55 int map_param_set_tcp (u16 tcp_mss);
56
57
58 typedef enum
59 {
60   MAP_DOMAIN_PREFIX = 1 << 0,
61   MAP_DOMAIN_TRANSLATION = 1 << 1,      // The domain uses MAP-T
62   MAP_DOMAIN_RFC6052 = 1 << 2,
63 } __attribute__ ((__packed__)) map_domain_flags_e;
64
65 //#define IP6_MAP_T_OVERRIDE_TOS 0
66
67 /*
68  * This structure _MUST_ be no larger than a single cache line (64 bytes).
69  * If more space is needed make a union of ip6_prefix and *rules, as
70  * those are mutually exclusive.
71  */
72 typedef struct
73 {
74   /* Required for pool_get_aligned */
75   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
76   ip6_address_t ip6_src;
77   ip6_address_t ip6_prefix;
78   ip6_address_t *rules;
79   u32 suffix_mask;
80   ip4_address_t ip4_prefix;
81   u16 psid_mask;
82   u16 mtu;
83   map_domain_flags_e flags;
84   u8 ip6_prefix_len;
85   u8 ip6_src_len;
86   u8 ea_bits_len;
87   u8 psid_offset;
88   u8 psid_length;
89
90   /* helpers */
91   u8 psid_shift;
92   u8 suffix_shift;
93   u8 ea_shift;
94
95   /* not used by forwarding */
96   u8 ip4_prefix_len;
97 } map_domain_t;
98
99 STATIC_ASSERT ((sizeof (map_domain_t) <= CLIB_CACHE_LINE_BYTES),
100                "MAP domain fits in one cacheline");
101
102 /*
103  * Extra data about a domain that doesn't need to be time/space critical.
104  * This structure is in a vector parallel to the main map_domain_t,
105  * and indexed by the same map-domain-index values.
106  */
107 typedef struct
108 {
109   u8 *tag;                      /* Probably a user-assigned domain name. */
110 } map_domain_extra_t;
111
112 #define MAP_REASS_INDEX_NONE ((u16)0xffff)
113
114 /*
115  * MAP domain counters
116  */
117 typedef enum
118 {
119   /* Simple counters */
120   MAP_DOMAIN_IPV4_FRAGMENT = 0,
121   /* Combined counters */
122   MAP_DOMAIN_COUNTER_RX = 0,
123   MAP_DOMAIN_COUNTER_TX,
124   MAP_N_DOMAIN_COUNTER
125 } map_domain_counter_t;
126
127 #ifdef MAP_SKIP_IP6_LOOKUP
128 /**
129  * A pre-resolved next-hop
130  */
131 typedef struct map_main_pre_resolved_t_
132 {
133   /**
134    * Linkage into the FIB graph
135    */
136   fib_node_t node;
137
138   /**
139    * The FIB entry index of the next-hop
140    */
141   fib_node_index_t fei;
142
143   /**
144    * This object sibling index on the FIB entry's child dependency list
145    */
146   u32 sibling;
147
148   /**
149    * The Load-balance object index to use to forward
150    */
151   dpo_id_t dpo;
152 } map_main_pre_resolved_t;
153
154 /**
155  * Pre-resolved next hops for v4 and v6. Why these are global and not
156  * per-domain is beyond me.
157  */
158 extern map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
159 #endif
160
161 typedef struct
162 {
163   /* pool of MAP domains */
164   map_domain_t *domains;
165   map_domain_extra_t *domain_extras;
166
167   /* MAP Domain packet/byte counters indexed by map domain index */
168   vlib_simple_counter_main_t *simple_domain_counters;
169   vlib_combined_counter_main_t *domain_counters;
170   volatile u32 *counter_lock;
171
172   /* API message id base */
173   u16 msg_id_base;
174
175   /* Traffic class: zero, copy (~0) or fixed value */
176   u8 tc;
177   bool tc_copy;
178
179   bool sec_check;               /* Inbound security check */
180   bool sec_check_frag;          /* Inbound security check for (subsequent) fragments */
181   bool icmp6_enabled;           /* Send destination unreachable for security check failure */
182
183   u16 tcp_mss;                  /* TCP MSS clamp value */
184
185   /* ICMPv6 -> ICMPv4 relay parameters */
186   ip4_address_t icmp4_src_address;
187   vlib_simple_counter_main_t icmp_relayed;
188
189   /* convenience */
190   vlib_main_t *vlib_main;
191   vnet_main_t *vnet_main;
192
193   bool frag_inner;              /* Inner or outer fragmentation */
194   bool frag_ignore_df;          /* Fragment (outer) packet even if DF is set */
195
196   /* Graph node state */
197   uword *bm_trans_enabled_by_sw_if;
198   uword *bm_encap_enabled_by_sw_if;
199
200   /* Lookup tables */
201   lpm_t *ip4_prefix_tbl;
202   lpm_t *ip6_prefix_tbl;
203   lpm_t *ip6_src_prefix_tbl;
204
205   uword ip4_sv_reass_custom_next_index;
206 } map_main_t;
207
208 /*
209  * MAP Error counters/messages
210  */
211 #define foreach_map_error                               \
212   /* Must be first. */                                  \
213  _(NONE, "valid MAP packets")                           \
214  _(BAD_PROTOCOL, "bad protocol")                        \
215  _(SEC_CHECK, "security check failed")                  \
216  _(ENCAP_SEC_CHECK, "encap security check failed")      \
217  _(DECAP_SEC_CHECK, "decap security check failed")      \
218  _(ICMP, "unable to translate ICMP")                    \
219  _(ICMP_RELAY, "unable to relay ICMP")                  \
220  _(UNKNOWN, "unknown")                                  \
221  _(NO_BINDING, "no binding")                            \
222  _(NO_DOMAIN, "no domain")                              \
223  _(FRAGMENTED, "packet is a fragment")                  \
224  _(FRAGMENT_MEMORY, "could not cache fragment")         \
225  _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
226  _(FRAGMENT_DROPPED, "dropped cached fragment")         \
227  _(MALFORMED, "malformed packet")                       \
228  _(DF_SET, "can't fragment, DF set")
229
230 typedef enum
231 {
232 #define _(sym,str) MAP_ERROR_##sym,
233   foreach_map_error
234 #undef _
235     MAP_N_ERROR,
236 } map_error_t;
237
238 u64 map_error_counter_get (u32 node_index, map_error_t map_error);
239
240 typedef struct
241 {
242   u32 map_domain_index;
243   u16 port;
244 } map_trace_t;
245
246 always_inline void
247 map_add_trace (vlib_main_t * vm, vlib_node_runtime_t * node,
248                vlib_buffer_t * b, u32 map_domain_index, u16 port)
249 {
250   map_trace_t *tr = vlib_add_trace (vm, node, b, sizeof (*tr));
251   tr->map_domain_index = map_domain_index;
252   tr->port = port;
253 }
254
255 extern map_main_t map_main;
256
257 extern vlib_node_registration_t ip4_map_node;
258 extern vlib_node_registration_t ip6_map_node;
259
260 extern vlib_node_registration_t ip4_map_t_node;
261 extern vlib_node_registration_t ip4_map_t_fragmented_node;
262 extern vlib_node_registration_t ip4_map_t_tcp_udp_node;
263 extern vlib_node_registration_t ip4_map_t_icmp_node;
264
265 extern vlib_node_registration_t ip6_map_t_node;
266 extern vlib_node_registration_t ip6_map_t_fragmented_node;
267 extern vlib_node_registration_t ip6_map_t_tcp_udp_node;
268 extern vlib_node_registration_t ip6_map_t_icmp_node;
269
270 /*
271  * map_get_pfx
272  */
273 static_always_inline u64
274 map_get_pfx (map_domain_t * d, u32 addr, u16 port)
275 {
276   u16 psid = (port >> d->psid_shift) & d->psid_mask;
277
278   if (d->ea_bits_len == 0 && d->rules)
279     return clib_net_to_host_u64 (d->rules[psid].as_u64[0]);
280
281   u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
282   u64 ea =
283     d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
284
285   return clib_net_to_host_u64 (d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
286 }
287
288 static_always_inline u64
289 map_get_pfx_net (map_domain_t * d, u32 addr, u16 port)
290 {
291   return clib_host_to_net_u64 (map_get_pfx (d, clib_net_to_host_u32 (addr),
292                                             clib_net_to_host_u16 (port)));
293 }
294
295 /*
296  * map_get_sfx
297  */
298 static_always_inline u64
299 map_get_sfx (map_domain_t * d, u32 addr, u16 port)
300 {
301   u16 psid = (port >> d->psid_shift) & d->psid_mask;
302
303   /* Shared 1:1 mode. */
304   if (d->ea_bits_len == 0 && d->rules)
305     return clib_net_to_host_u64 (d->rules[psid].as_u64[1]);
306   if (d->ip6_prefix_len == 128)
307     return clib_net_to_host_u64 (d->ip6_prefix.as_u64[1]);
308
309   if (d->ip6_src_len == 96)
310     return (clib_net_to_host_u64 (d->ip6_prefix.as_u64[1]) | addr);
311
312   /* IPv4 prefix */
313   if (d->flags & MAP_DOMAIN_PREFIX)
314     return (u64) (addr & (0xFFFFFFFF << d->suffix_shift)) << 16;
315
316   /* Shared or full IPv4 address */
317   return ((u64) addr << 16) | psid;
318 }
319
320 static_always_inline u64
321 map_get_sfx_net (map_domain_t * d, u32 addr, u16 port)
322 {
323   return clib_host_to_net_u64 (map_get_sfx (d, clib_net_to_host_u32 (addr),
324                                             clib_net_to_host_u16 (port)));
325 }
326
327 static_always_inline u32
328 map_get_ip4 (ip6_address_t * addr, u16 prefix_len)
329 {
330   ASSERT (prefix_len == 64 || prefix_len == 96);
331   if (prefix_len == 96)
332     return clib_host_to_net_u32 (clib_net_to_host_u64 (addr->as_u64[1]));
333   else
334     return clib_host_to_net_u32 (clib_net_to_host_u64 (addr->as_u64[1]) >>
335                                  16);
336 }
337
338 static_always_inline map_domain_t *
339 ip4_map_get_domain (ip4_address_t * addr, u32 * map_domain_index, u8 * error)
340 {
341   map_main_t *mm = &map_main;
342
343   u32 mdi = mm->ip4_prefix_tbl->lookup (mm->ip4_prefix_tbl, addr, 32);
344   if (mdi == ~0)
345     {
346       *error = MAP_ERROR_NO_DOMAIN;
347       return 0;
348     }
349   *map_domain_index = mdi;
350   return pool_elt_at_index (mm->domains, mdi);
351 }
352
353 /*
354  * Get the MAP domain from an IPv6 address.
355  * If the IPv6 address or
356  * prefix is shared the IPv4 address must be used.
357  */
358 static_always_inline map_domain_t *
359 ip6_map_get_domain (ip6_address_t * addr, u32 * map_domain_index, u8 * error)
360 {
361   map_main_t *mm = &map_main;
362   u32 mdi =
363     mm->ip6_src_prefix_tbl->lookup (mm->ip6_src_prefix_tbl, addr, 128);
364   if (mdi == ~0)
365     {
366       *error = MAP_ERROR_NO_DOMAIN;
367       return 0;
368     }
369
370   *map_domain_index = mdi;
371   return pool_elt_at_index (mm->domains, mdi);
372 }
373
374 clib_error_t *map_plugin_api_hookup (vlib_main_t * vm);
375
376 void map_ip6_drop_pi (u32 pi);
377
378 /*
379  * Supports prefix of 96 or 64 (with u-octet)
380  */
381 static_always_inline void
382 ip4_map_t_embedded_address (map_domain_t * d,
383                             ip6_address_t * ip6, const ip4_address_t * ip4)
384 {
385   ASSERT (d->ip6_src_len == 96 || d->ip6_src_len == 64);        //No support for other lengths for now
386   u8 offset = d->ip6_src_len == 64 ? 9 : 12;
387   ip6->as_u64[0] = d->ip6_src.as_u64[0];
388   ip6->as_u64[1] = d->ip6_src.as_u64[1];
389   clib_memcpy_fast (&ip6->as_u8[offset], ip4, 4);
390 }
391
392 static_always_inline u32
393 ip6_map_t_embedded_address (map_domain_t * d, ip6_address_t * addr)
394 {
395   ASSERT (d->ip6_src_len == 64 || d->ip6_src_len == 96);
396   u32 x;
397   u8 offset = d->ip6_src_len == 64 ? 9 : 12;
398   clib_memcpy (&x, &addr->as_u8[offset], 4);
399   return x;
400 }
401
402 static inline void
403 map_domain_counter_lock (map_main_t * mm)
404 {
405   if (mm->counter_lock)
406     while (clib_atomic_test_and_set (mm->counter_lock))
407       /* zzzz */ ;
408 }
409
410 static inline void
411 map_domain_counter_unlock (map_main_t * mm)
412 {
413   if (mm->counter_lock)
414     clib_atomic_release (mm->counter_lock);
415 }
416
417
418 static_always_inline void
419 map_send_all_to_node (vlib_main_t * vm, u32 * pi_vector,
420                       vlib_node_runtime_t * node, vlib_error_t * error,
421                       u32 next)
422 {
423   u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
424   //Deal with fragments that are ready
425   from = pi_vector;
426   n_left_from = vec_len (pi_vector);
427   next_index = node->cached_next_index;
428   while (n_left_from > 0)
429     {
430       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
431       while (n_left_from > 0 && n_left_to_next > 0)
432         {
433           u32 pi0 = to_next[0] = from[0];
434           from += 1;
435           n_left_from -= 1;
436           to_next += 1;
437           n_left_to_next -= 1;
438           vlib_buffer_t *p0 = vlib_get_buffer (vm, pi0);
439           p0->error = *error;
440           vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
441                                            n_left_to_next, pi0, next);
442         }
443       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
444     }
445 }
446
447 static_always_inline void
448 map_mss_clamping (tcp_header_t * tcp, ip_csum_t * sum, u16 mss_clamping)
449 {
450   u8 *data;
451   u8 opt_len, opts_len, kind;
452   u16 mss;
453   u16 mss_value_net = clib_host_to_net_u16 (mss_clamping);
454
455   if (!tcp_syn (tcp))
456     return;
457
458   opts_len = (tcp_doff (tcp) << 2) - sizeof (tcp_header_t);
459   data = (u8 *) (tcp + 1);
460   for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
461     {
462       kind = data[0];
463
464       if (kind == TCP_OPTION_EOL)
465         break;
466       else if (kind == TCP_OPTION_NOOP)
467         {
468           opt_len = 1;
469           continue;
470         }
471       else
472         {
473           if (opts_len < 2)
474             return;
475           opt_len = data[1];
476
477           if (opt_len < 2 || opt_len > opts_len)
478             return;
479         }
480
481       if (kind == TCP_OPTION_MSS)
482         {
483           mss = *(u16 *) (data + 2);
484           if (clib_net_to_host_u16 (mss) > mss_clamping)
485             {
486               *sum =
487                 ip_csum_update (*sum, mss, mss_value_net, ip4_header_t,
488                                 length);
489               clib_memcpy (data + 2, &mss_value_net, 2);
490             }
491           return;
492         }
493     }
494 }
495
496 /*
497  * fd.io coding-style-patch-verification: ON
498  *
499  * Local Variables:
500  * eval: (c-set-style "gnu")
501  * End:
502  */