nat: remove non-error error counters
[vpp.git] / src / plugins / nat / out2in_ed.c
1 /*
2  * Copyright (c) 2018 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  * @file
17  * @brief NAT44 endpoint-dependent outside to inside network translation
18  */
19
20 #include <vlib/vlib.h>
21 #include <vnet/vnet.h>
22 #include <vnet/pg/pg.h>
23 #include <vnet/ip/ip.h>
24 #include <vnet/ethernet/ethernet.h>
25 #include <vnet/fib/ip4_fib.h>
26 #include <vnet/udp/udp.h>
27 #include <vppinfra/error.h>
28 #include <nat/nat.h>
29 #include <nat/nat_ipfix_logging.h>
30 #include <nat/nat_inlines.h>
31 #include <nat/nat44/inlines.h>
32 #include <nat/nat_syslog.h>
33 #include <nat/nat_ha.h>
34 #include <nat/nat44/ed_inlines.h>
35
36 static char *nat_out2in_ed_error_strings[] = {
37 #define _(sym,string) string,
38   foreach_nat_out2in_ed_error
39 #undef _
40 };
41
42 typedef struct
43 {
44   u32 sw_if_index;
45   u32 next_index;
46   u32 session_index;
47   u32 is_slow_path;
48 } nat44_ed_out2in_trace_t;
49
50 static u8 *
51 format_nat44_ed_out2in_trace (u8 * s, va_list * args)
52 {
53   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
54   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
55   nat44_ed_out2in_trace_t *t = va_arg (*args, nat44_ed_out2in_trace_t *);
56   char *tag;
57
58   tag =
59     t->is_slow_path ? "NAT44_OUT2IN_ED_SLOW_PATH" :
60     "NAT44_OUT2IN_ED_FAST_PATH";
61
62   s = format (s, "%s: sw_if_index %d, next index %d, session %d", tag,
63               t->sw_if_index, t->next_index, t->session_index);
64
65   return s;
66 }
67
68 static inline u32
69 icmp_out2in_ed_slow_path (snat_main_t * sm, vlib_buffer_t * b0,
70                           ip4_header_t * ip0, icmp46_header_t * icmp0,
71                           u32 sw_if_index0, u32 rx_fib_index0,
72                           vlib_node_runtime_t * node, u32 next0, f64 now,
73                           u32 thread_index, snat_session_t ** p_s0)
74 {
75   vlib_main_t *vm = vlib_get_main ();
76
77   next0 = icmp_out2in (sm, b0, ip0, icmp0, sw_if_index0, rx_fib_index0, node,
78                        next0, thread_index, p_s0, 0);
79   snat_session_t *s0 = *p_s0;
80   if (PREDICT_TRUE (next0 != NAT_NEXT_DROP && s0))
81     {
82       /* Accounting */
83       nat44_session_update_counters (s0, now,
84                                      vlib_buffer_length_in_chain
85                                      (vm, b0), thread_index);
86       /* Per-user LRU list maintenance */
87       nat44_session_update_lru (sm, s0, thread_index);
88     }
89   return next0;
90 }
91
92 #ifndef CLIB_MARCH_VARIANT
93 int
94 nat44_o2i_ed_is_idle_session_cb (clib_bihash_kv_16_8_t * kv, void *arg)
95 {
96   snat_main_t *sm = &snat_main;
97   nat44_is_idle_session_ctx_t *ctx = arg;
98   snat_session_t *s;
99   u64 sess_timeout_time;
100   u8 proto;
101   u16 r_port, l_port;
102   ip4_address_t *l_addr, *r_addr;
103   u32 fib_index;
104   clib_bihash_kv_16_8_t ed_kv;
105   int i;
106   //snat_address_t *a;
107   snat_main_per_thread_data_t *tsm = vec_elt_at_index (sm->per_thread_data,
108                                                        ctx->thread_index);
109
110   s = pool_elt_at_index (tsm->sessions, kv->value);
111   sess_timeout_time = s->last_heard + (f64) nat44_session_get_timeout (sm, s);
112   if (ctx->now >= sess_timeout_time)
113     {
114       l_addr = &s->in2out.addr;
115       r_addr = &s->ext_host_addr;
116       fib_index = s->in2out.fib_index;
117       if (snat_is_unk_proto_session (s))
118         {
119           proto = s->in2out.port;
120           r_port = 0;
121           l_port = 0;
122         }
123       else
124         {
125           proto = nat_proto_to_ip_proto (s->nat_proto);
126           l_port = s->in2out.port;
127           r_port = s->ext_host_port;
128         }
129       if (is_twice_nat_session (s))
130         {
131           r_addr = &s->ext_host_nat_addr;
132           r_port = s->ext_host_nat_port;
133         }
134       init_ed_k (&ed_kv, *l_addr, l_port, *r_addr, r_port, fib_index, proto);
135       if (clib_bihash_add_del_16_8 (&tsm->in2out_ed, &ed_kv, 0))
136         nat_elog_warn ("in2out_ed key del failed");
137
138       if (snat_is_unk_proto_session (s))
139         goto delete;
140
141       snat_ipfix_logging_nat44_ses_delete (ctx->thread_index,
142                                            s->in2out.addr.as_u32,
143                                            s->out2in.addr.as_u32,
144                                            s->nat_proto,
145                                            s->in2out.port,
146                                            s->out2in.port,
147                                            s->in2out.fib_index);
148
149       nat_syslog_nat44_sdel (s->user_index, s->in2out.fib_index,
150                              &s->in2out.addr, s->in2out.port,
151                              &s->ext_host_nat_addr, s->ext_host_nat_port,
152                              &s->out2in.addr, s->out2in.port,
153                              &s->ext_host_addr, s->ext_host_port,
154                              s->nat_proto, is_twice_nat_session (s));
155
156       nat_ha_sdel (&s->out2in.addr, s->out2in.port, &s->ext_host_addr,
157                    s->ext_host_port, s->nat_proto, s->out2in.fib_index,
158                    ctx->thread_index);
159
160       if (is_twice_nat_session (s))
161         {
162           for (i = 0; i < vec_len (sm->twice_nat_addresses); i++)
163             {
164               // FIXME TODO this is obviously wrong code ... needs fix!
165               //       key.protocol = s->nat_proto;
166               //       key.port = s->ext_host_nat_port;
167               //       a = sm->twice_nat_addresses + i;
168               //       if (a->addr.as_u32 == s->ext_host_nat_addr.as_u32)
169               //      {
170               //        snat_free_outside_address_and_port (sm->twice_nat_addresses,
171               //                                            ctx->thread_index,
172               //                                            &key);
173               //        break;
174               //      }
175             }
176         }
177
178       if (snat_is_session_static (s))
179         goto delete;
180
181       snat_free_outside_address_and_port (sm->addresses, ctx->thread_index,
182                                           &s->out2in.addr, s->out2in.port,
183                                           s->nat_proto);
184     delete:
185       nat_ed_session_delete (sm, s, ctx->thread_index, 1);
186       return 1;
187     }
188
189   return 0;
190 }
191 #endif
192
193 static snat_session_t *
194 create_session_for_static_mapping_ed (snat_main_t * sm,
195                                       vlib_buffer_t * b,
196                                       ip4_address_t i2o_addr,
197                                       u16 i2o_port,
198                                       u32 i2o_fib_index,
199                                       ip4_address_t o2i_addr,
200                                       u16 o2i_port,
201                                       u32 o2i_fib_index,
202                                       nat_protocol_t nat_proto,
203                                       vlib_node_runtime_t * node,
204                                       u32 rx_fib_index,
205                                       u32 thread_index,
206                                       twice_nat_type_t twice_nat,
207                                       lb_nat_type_t lb_nat, f64 now)
208 {
209   snat_session_t *s;
210   ip4_header_t *ip;
211   udp_header_t *udp;
212   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
213   clib_bihash_kv_16_8_t kv;
214   nat44_is_idle_session_ctx_t ctx;
215
216   if (PREDICT_FALSE
217       (nat44_ed_maximum_sessions_exceeded (sm, rx_fib_index, thread_index)))
218     {
219       b->error = node->errors[NAT_OUT2IN_ED_ERROR_MAX_SESSIONS_EXCEEDED];
220       nat_elog_notice ("maximum sessions exceeded");
221       return 0;
222     }
223
224   s = nat_ed_session_alloc (sm, thread_index, now, nat_proto);
225   if (!s)
226     {
227       b->error = node->errors[NAT_OUT2IN_ED_ERROR_MAX_USER_SESS_EXCEEDED];
228       nat_elog_warn ("create NAT session failed");
229       return 0;
230     }
231
232   ip = vlib_buffer_get_current (b);
233   udp = ip4_next_header (ip);
234
235   s->ext_host_addr.as_u32 = ip->src_address.as_u32;
236   s->ext_host_port = nat_proto == NAT_PROTOCOL_ICMP ? 0 : udp->src_port;
237   s->flags |= SNAT_SESSION_FLAG_STATIC_MAPPING;
238   if (lb_nat)
239     s->flags |= SNAT_SESSION_FLAG_LOAD_BALANCING;
240   if (lb_nat == AFFINITY_LB_NAT)
241     s->flags |= SNAT_SESSION_FLAG_AFFINITY;
242   s->flags |= SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT;
243   s->out2in.addr = o2i_addr;
244   s->out2in.port = o2i_port;
245   s->out2in.fib_index = o2i_fib_index;
246   s->in2out.addr = i2o_addr;
247   s->in2out.port = i2o_port;
248   s->in2out.fib_index = i2o_fib_index;
249   s->nat_proto = nat_proto;
250
251   /* Add to lookup tables */
252   init_ed_kv (&kv, o2i_addr, o2i_port, s->ext_host_addr, s->ext_host_port,
253               o2i_fib_index, ip->protocol, thread_index, s - tsm->sessions);
254   ctx.now = now;
255   ctx.thread_index = thread_index;
256   if (clib_bihash_add_or_overwrite_stale_16_8 (&sm->out2in_ed, &kv,
257                                                nat44_o2i_ed_is_idle_session_cb,
258                                                &ctx))
259     nat_elog_notice ("out2in-ed key add failed");
260
261   if (twice_nat == TWICE_NAT || (twice_nat == TWICE_NAT_SELF &&
262                                  ip->src_address.as_u32 == i2o_addr.as_u32))
263     {
264       if (snat_alloc_outside_address_and_port (sm->twice_nat_addresses, 0,
265                                                thread_index,
266                                                nat_proto,
267                                                &s->ext_host_nat_addr,
268                                                &s->ext_host_nat_port,
269                                                sm->port_per_thread,
270                                                tsm->snat_thread_index))
271         {
272           b->error = node->errors[NAT_OUT2IN_ED_ERROR_OUT_OF_PORTS];
273           nat_ed_session_delete (sm, s, thread_index, 1);
274           if (clib_bihash_add_del_16_8 (&sm->out2in_ed, &kv, 0))
275             nat_elog_notice ("out2in-ed key del failed");
276           return 0;
277         }
278       s->flags |= SNAT_SESSION_FLAG_TWICE_NAT;
279       init_ed_kv (&kv, i2o_addr, i2o_port, s->ext_host_nat_addr,
280                   s->ext_host_nat_port, i2o_fib_index, ip->protocol,
281                   thread_index, s - tsm->sessions);
282     }
283   else
284     {
285       init_ed_kv (&kv, i2o_addr, i2o_port, s->ext_host_addr,
286                   s->ext_host_port, i2o_fib_index, ip->protocol,
287                   thread_index, s - tsm->sessions);
288     }
289   if (clib_bihash_add_or_overwrite_stale_16_8 (&tsm->in2out_ed, &kv,
290                                                nat44_i2o_ed_is_idle_session_cb,
291                                                &ctx))
292     nat_elog_notice ("in2out-ed key add failed");
293
294   snat_ipfix_logging_nat44_ses_create (thread_index,
295                                        s->in2out.addr.as_u32,
296                                        s->out2in.addr.as_u32,
297                                        s->nat_proto,
298                                        s->in2out.port,
299                                        s->out2in.port, s->in2out.fib_index);
300
301   nat_syslog_nat44_sadd (s->user_index, s->in2out.fib_index,
302                          &s->in2out.addr, s->in2out.port,
303                          &s->ext_host_nat_addr, s->ext_host_nat_port,
304                          &s->out2in.addr, s->out2in.port,
305                          &s->ext_host_addr, s->ext_host_port,
306                          s->nat_proto, is_twice_nat_session (s));
307
308   nat_ha_sadd (&s->in2out.addr, s->in2out.port, &s->out2in.addr,
309                s->out2in.port, &s->ext_host_addr, s->ext_host_port,
310                &s->ext_host_nat_addr, s->ext_host_nat_port,
311                s->nat_proto, s->in2out.fib_index, s->flags, thread_index, 0);
312
313   return s;
314 }
315
316 static int
317 next_src_nat (snat_main_t * sm, ip4_header_t * ip, u16 src_port,
318               u16 dst_port, u32 thread_index, u32 rx_fib_index)
319 {
320   clib_bihash_kv_16_8_t kv, value;
321   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
322
323   init_ed_k (&kv, ip->src_address, src_port, ip->dst_address, dst_port,
324              rx_fib_index, ip->protocol);
325   if (!clib_bihash_search_16_8 (&tsm->in2out_ed, &kv, &value))
326     return 1;
327
328   return 0;
329 }
330
331 static void
332 create_bypass_for_fwd (snat_main_t * sm, vlib_buffer_t * b, ip4_header_t * ip,
333                        u32 rx_fib_index, u32 thread_index)
334 {
335   clib_bihash_kv_16_8_t kv, value;
336   udp_header_t *udp;
337   snat_session_t *s = 0;
338   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
339   vlib_main_t *vm = vlib_get_main ();
340   f64 now = vlib_time_now (vm);
341   u16 l_port, r_port;
342
343   if (ip->protocol == IP_PROTOCOL_ICMP)
344     {
345       if (get_icmp_o2i_ed_key
346           (b, ip, rx_fib_index, ~0, ~0, 0, &l_port, &r_port, &kv))
347         return;
348     }
349   else
350     {
351       if (ip->protocol == IP_PROTOCOL_UDP || ip->protocol == IP_PROTOCOL_TCP)
352         {
353           udp = ip4_next_header (ip);
354           l_port = udp->dst_port;
355           r_port = udp->src_port;
356         }
357       else
358         {
359           l_port = 0;
360           r_port = 0;
361         }
362       init_ed_k (&kv, ip->dst_address, l_port, ip->src_address, r_port,
363                  rx_fib_index, ip->protocol);
364     }
365
366   if (!clib_bihash_search_16_8 (&tsm->in2out_ed, &kv, &value))
367     {
368       ASSERT (thread_index == ed_value_get_thread_index (&value));
369       s =
370         pool_elt_at_index (tsm->sessions,
371                            ed_value_get_session_index (&value));
372     }
373   else
374     {
375       u32 proto;
376
377       if (PREDICT_FALSE
378           (nat44_ed_maximum_sessions_exceeded
379            (sm, rx_fib_index, thread_index)))
380         return;
381
382       s = nat_ed_session_alloc (sm, thread_index, now, ip->protocol);
383       if (!s)
384         {
385           nat_elog_warn ("create NAT session failed");
386           return;
387         }
388
389       proto = ip_proto_to_nat_proto (ip->protocol);
390
391       s->ext_host_addr = ip->src_address;
392       s->ext_host_port = r_port;
393       s->flags |= SNAT_SESSION_FLAG_FWD_BYPASS;
394       s->out2in.addr = ip->dst_address;
395       s->out2in.port = l_port;
396       s->nat_proto = proto;
397       if (proto == NAT_PROTOCOL_OTHER)
398         {
399           s->flags |= SNAT_SESSION_FLAG_UNKNOWN_PROTO;
400           s->out2in.port = ip->protocol;
401         }
402       s->out2in.fib_index = 0;
403       s->in2out.addr = s->out2in.addr;
404       s->in2out.port = s->out2in.port;
405       s->in2out.fib_index = s->out2in.fib_index;
406
407       kv.value = s - tsm->sessions;
408       if (clib_bihash_add_del_16_8 (&tsm->in2out_ed, &kv, 1))
409         nat_elog_notice ("in2out_ed key add failed");
410     }
411
412   if (ip->protocol == IP_PROTOCOL_TCP)
413     {
414       tcp_header_t *tcp = ip4_next_header (ip);
415       if (nat44_set_tcp_session_state_o2i
416           (sm, now, s, tcp->flags, tcp->ack_number, tcp->seq_number,
417            thread_index))
418         return;
419     }
420
421   /* Accounting */
422   nat44_session_update_counters (s, now, 0, thread_index);
423   /* Per-user LRU list maintenance */
424   nat44_session_update_lru (sm, s, thread_index);
425 }
426
427 static inline void
428 create_bypass_for_fwd_worker (snat_main_t * sm, vlib_buffer_t * b,
429                               ip4_header_t * ip, u32 rx_fib_index)
430 {
431   ip4_header_t ip_wkr = {
432     .src_address = ip->dst_address,
433   };
434   u32 thread_index = sm->worker_in2out_cb (&ip_wkr, rx_fib_index, 0);
435
436   create_bypass_for_fwd (sm, b, ip, rx_fib_index, thread_index);
437 }
438
439 #ifndef CLIB_MARCH_VARIANT
440 u32
441 icmp_match_out2in_ed (snat_main_t * sm, vlib_node_runtime_t * node,
442                       u32 thread_index, vlib_buffer_t * b,
443                       ip4_header_t * ip, ip4_address_t * addr,
444                       u16 * port, u32 * fib_index, nat_protocol_t * proto,
445                       void *d, void *e, u8 * dont_translate)
446 {
447   u32 next = ~0, sw_if_index, rx_fib_index;
448   clib_bihash_kv_16_8_t kv, value;
449   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
450   snat_session_t *s = 0;
451   u8 is_addr_only, identity_nat;
452   u16 l_port, r_port;
453   vlib_main_t *vm = vlib_get_main ();
454   ip4_address_t sm_addr;
455   u16 sm_port;
456   u32 sm_fib_index;
457   *dont_translate = 0;
458
459   sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
460   rx_fib_index = ip4_fib_table_get_index_for_sw_if_index (sw_if_index);
461
462   if (get_icmp_o2i_ed_key
463       (b, ip, rx_fib_index, ~0, ~0, proto, &l_port, &r_port, &kv))
464     {
465       b->error = node->errors[NAT_OUT2IN_ED_ERROR_UNSUPPORTED_PROTOCOL];
466       next = NAT_NEXT_DROP;
467       goto out;
468     }
469
470   if (clib_bihash_search_16_8 (&sm->out2in_ed, &kv, &value))
471     {
472       /* Try to match static mapping */
473       if (snat_static_mapping_match
474           (sm, ip->dst_address, l_port, rx_fib_index,
475            ip_proto_to_nat_proto (ip->protocol), &sm_addr, &sm_port,
476            &sm_fib_index, 1, &is_addr_only, 0, 0, 0, &identity_nat))
477         {
478           if (!sm->forwarding_enabled)
479             {
480               /* Don't NAT packet aimed at the intfc address */
481               if (PREDICT_FALSE (is_interface_addr (sm, node, sw_if_index,
482                                                     ip->dst_address.as_u32)))
483                 {
484                   *dont_translate = 1;
485                   goto out;
486                 }
487               b->error = node->errors[NAT_OUT2IN_ED_ERROR_NO_TRANSLATION];
488               next = NAT_NEXT_DROP;
489               goto out;
490             }
491           else
492             {
493               *dont_translate = 1;
494               if (next_src_nat (sm, ip, l_port, r_port,
495                                 thread_index, rx_fib_index))
496                 {
497                   next = NAT_NEXT_IN2OUT_ED_FAST_PATH;
498                   goto out;
499                 }
500               if (sm->num_workers > 1)
501                 create_bypass_for_fwd_worker (sm, b, ip, rx_fib_index);
502               else
503                 create_bypass_for_fwd (sm, b, ip, rx_fib_index, thread_index);
504               goto out;
505             }
506         }
507
508       if (PREDICT_FALSE
509           (vnet_buffer (b)->ip.reass.icmp_type_or_tcp_flags !=
510            ICMP4_echo_reply
511            && (vnet_buffer (b)->ip.reass.icmp_type_or_tcp_flags !=
512                ICMP4_echo_request || !is_addr_only)))
513         {
514           b->error = node->errors[NAT_OUT2IN_ED_ERROR_BAD_ICMP_TYPE];
515           next = NAT_NEXT_DROP;
516           goto out;
517         }
518
519       if (PREDICT_FALSE (identity_nat))
520         {
521           *dont_translate = 1;
522           goto out;
523         }
524
525       /* Create session initiated by host from external network */
526       s =
527         create_session_for_static_mapping_ed (sm, b, sm_addr, sm_port,
528                                               sm_fib_index, ip->dst_address,
529                                               l_port, rx_fib_index, *proto,
530                                               node, rx_fib_index,
531                                               thread_index, 0, 0,
532                                               vlib_time_now (vm));
533
534       if (!s)
535         {
536           next = NAT_NEXT_DROP;
537           goto out;
538         }
539     }
540   else
541     {
542       if (PREDICT_FALSE
543           (vnet_buffer (b)->ip.reass.icmp_type_or_tcp_flags !=
544            ICMP4_echo_reply
545            && vnet_buffer (b)->ip.reass.icmp_type_or_tcp_flags !=
546            ICMP4_echo_request
547            && !icmp_type_is_error_message (vnet_buffer (b)->ip.
548                                            reass.icmp_type_or_tcp_flags)))
549         {
550           b->error = node->errors[NAT_OUT2IN_ED_ERROR_BAD_ICMP_TYPE];
551           next = NAT_NEXT_DROP;
552           goto out;
553         }
554
555       ASSERT (thread_index == ed_value_get_thread_index (&value));
556       s =
557         pool_elt_at_index (tsm->sessions,
558                            ed_value_get_session_index (&value));
559     }
560 out:
561   if (s)
562     {
563       *addr = s->in2out.addr;
564       *port = s->in2out.port;
565       *fib_index = s->in2out.fib_index;
566     }
567   if (d)
568     *(snat_session_t **) d = s;
569   return next;
570 }
571 #endif
572
573 static snat_session_t *
574 nat44_ed_out2in_unknown_proto (snat_main_t * sm,
575                                vlib_buffer_t * b,
576                                ip4_header_t * ip,
577                                u32 rx_fib_index,
578                                u32 thread_index,
579                                f64 now,
580                                vlib_main_t * vm, vlib_node_runtime_t * node)
581 {
582   clib_bihash_kv_8_8_t kv, value;
583   clib_bihash_kv_16_8_t s_kv, s_value;
584   snat_static_mapping_t *m;
585   u32 old_addr, new_addr;
586   ip_csum_t sum;
587   snat_session_t *s;
588   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
589
590   old_addr = ip->dst_address.as_u32;
591
592   init_ed_k (&s_kv, ip->dst_address, 0, ip->src_address, 0, rx_fib_index,
593              ip->protocol);
594
595   if (!clib_bihash_search_16_8 (&sm->out2in_ed, &s_kv, &s_value))
596     {
597       ASSERT (thread_index == ed_value_get_thread_index (&s_value));
598       s =
599         pool_elt_at_index (tsm->sessions,
600                            ed_value_get_session_index (&s_value));
601       new_addr = ip->dst_address.as_u32 = s->in2out.addr.as_u32;
602     }
603   else
604     {
605       if (PREDICT_FALSE
606           (nat44_ed_maximum_sessions_exceeded
607            (sm, rx_fib_index, thread_index)))
608         {
609           b->error = node->errors[NAT_OUT2IN_ED_ERROR_MAX_SESSIONS_EXCEEDED];
610           nat_elog_notice ("maximum sessions exceeded");
611           return 0;
612         }
613
614       init_nat_k (&kv, ip->dst_address, 0, 0, 0);
615       if (clib_bihash_search_8_8
616           (&sm->static_mapping_by_external, &kv, &value))
617         {
618           b->error = node->errors[NAT_OUT2IN_ED_ERROR_NO_TRANSLATION];
619           return 0;
620         }
621
622       m = pool_elt_at_index (sm->static_mappings, value.value);
623
624       new_addr = ip->dst_address.as_u32 = m->local_addr.as_u32;
625
626       /* Create a new session */
627       s = nat_ed_session_alloc (sm, thread_index, now, ip->protocol);
628       if (!s)
629         {
630           b->error = node->errors[NAT_OUT2IN_ED_ERROR_MAX_USER_SESS_EXCEEDED];
631           nat_elog_warn ("create NAT session failed");
632           return 0;
633         }
634
635       s->ext_host_addr.as_u32 = ip->src_address.as_u32;
636       s->flags |= SNAT_SESSION_FLAG_UNKNOWN_PROTO;
637       s->flags |= SNAT_SESSION_FLAG_STATIC_MAPPING;
638       s->flags |= SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT;
639       s->out2in.addr.as_u32 = old_addr;
640       s->out2in.fib_index = rx_fib_index;
641       s->in2out.addr.as_u32 = new_addr;
642       s->in2out.fib_index = m->fib_index;
643       s->in2out.port = s->out2in.port = ip->protocol;
644
645       /* Add to lookup tables */
646       s_kv.value = s - tsm->sessions;
647       if (clib_bihash_add_del_16_8 (&sm->out2in_ed, &s_kv, 1))
648         nat_elog_notice ("out2in key add failed");
649
650       init_ed_kv (&s_kv, ip->dst_address, 0, ip->src_address, 0, m->fib_index,
651                   ip->protocol, thread_index, s - tsm->sessions);
652       if (clib_bihash_add_del_16_8 (&tsm->in2out_ed, &s_kv, 1))
653         nat_elog_notice ("in2out key add failed");
654     }
655
656   /* Update IP checksum */
657   sum = ip->checksum;
658   sum = ip_csum_update (sum, old_addr, new_addr, ip4_header_t, dst_address);
659   ip->checksum = ip_csum_fold (sum);
660
661   vnet_buffer (b)->sw_if_index[VLIB_TX] = s->in2out.fib_index;
662
663   /* Accounting */
664   nat44_session_update_counters (s, now, vlib_buffer_length_in_chain (vm, b),
665                                  thread_index);
666   /* Per-user LRU list maintenance */
667   nat44_session_update_lru (sm, s, thread_index);
668
669   return s;
670 }
671
672 static inline uword
673 nat44_ed_out2in_fast_path_node_fn_inline (vlib_main_t * vm,
674                                           vlib_node_runtime_t * node,
675                                           vlib_frame_t * frame,
676                                           int is_multi_worker)
677 {
678   u32 n_left_from, *from;
679   snat_main_t *sm = &snat_main;
680   f64 now = vlib_time_now (vm);
681   u32 thread_index = vm->thread_index;
682   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
683
684   from = vlib_frame_vector_args (frame);
685   n_left_from = frame->n_vectors;
686
687   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
688   u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
689   vlib_get_buffers (vm, from, b, n_left_from);
690
691   while (n_left_from > 0)
692     {
693       vlib_buffer_t *b0;
694       u32 sw_if_index0, rx_fib_index0, proto0, old_addr0, new_addr0;
695       u16 old_port0, new_port0;
696       ip4_header_t *ip0;
697       udp_header_t *udp0;
698       tcp_header_t *tcp0;
699       snat_session_t *s0 = 0;
700       clib_bihash_kv_16_8_t kv0, value0;
701       ip_csum_t sum0;
702
703       b0 = *b;
704       b++;
705
706       /* Prefetch next iteration. */
707       if (PREDICT_TRUE (n_left_from >= 2))
708         {
709           vlib_buffer_t *p2;
710
711           p2 = *b;
712
713           vlib_prefetch_buffer_header (p2, LOAD);
714
715           CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD);
716         }
717
718       next[0] = vnet_buffer2 (b0)->nat.arc_next;
719
720       vnet_buffer (b0)->snat.flags = 0;
721       ip0 = vlib_buffer_get_current (b0);
722
723       sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
724       rx_fib_index0 =
725         fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4, sw_if_index0);
726
727       if (PREDICT_FALSE (ip0->ttl == 1))
728         {
729           vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
730           icmp4_error_set_vnet_buffer (b0, ICMP4_time_exceeded,
731                                        ICMP4_time_exceeded_ttl_exceeded_in_transit,
732                                        0);
733           next[0] = NAT_NEXT_ICMP_ERROR;
734           goto trace0;
735         }
736
737       udp0 = ip4_next_header (ip0);
738       tcp0 = (tcp_header_t *) udp0;
739       proto0 = ip_proto_to_nat_proto (ip0->protocol);
740
741       if (PREDICT_FALSE (proto0 == NAT_PROTOCOL_OTHER))
742         {
743           next[0] = NAT_NEXT_OUT2IN_ED_SLOW_PATH;
744           goto trace0;
745         }
746
747       if (PREDICT_FALSE (proto0 == NAT_PROTOCOL_ICMP))
748         {
749           next[0] = NAT_NEXT_OUT2IN_ED_SLOW_PATH;
750           goto trace0;
751         }
752
753       init_ed_k (&kv0, ip0->dst_address,
754                  vnet_buffer (b0)->ip.reass.l4_dst_port, ip0->src_address,
755                  vnet_buffer (b0)->ip.reass.l4_src_port, rx_fib_index0,
756                  ip0->protocol);
757
758       /* there is a stashed index in vnet_buffer2 from handoff node,
759        * see if we can use it */
760       if (is_multi_worker
761           &&
762           PREDICT_TRUE (!pool_is_free_index
763                         (tsm->sessions,
764                          vnet_buffer2 (b0)->nat.ed_out2in_nat_session_index)))
765         {
766           s0 = pool_elt_at_index (tsm->sessions,
767                                   vnet_buffer2 (b0)->
768                                   nat.ed_out2in_nat_session_index);
769           if (PREDICT_TRUE
770               (s0->out2in.addr.as_u32 == ip0->dst_address.as_u32
771                && s0->out2in.port == vnet_buffer (b0)->ip.reass.l4_dst_port
772                && s0->nat_proto == ip_proto_to_nat_proto (ip0->protocol)
773                && s0->out2in.fib_index == rx_fib_index0
774                && s0->ext_host_addr.as_u32 == ip0->src_address.as_u32
775                && s0->ext_host_port ==
776                vnet_buffer (b0)->ip.reass.l4_src_port))
777             {
778               /* yes, this is the droid we're looking for */
779               goto skip_lookup;
780             }
781         }
782
783       if (clib_bihash_search_16_8 (&sm->out2in_ed, &kv0, &value0))
784         {
785           next[0] = NAT_NEXT_OUT2IN_ED_SLOW_PATH;
786           goto trace0;
787         }
788       ASSERT (thread_index == ed_value_get_thread_index (&value0));
789       s0 =
790         pool_elt_at_index (tsm->sessions,
791                            ed_value_get_session_index (&value0));
792
793     skip_lookup:
794       if (s0->tcp_closed_timestamp)
795         {
796           if (now >= s0->tcp_closed_timestamp)
797             {
798               // session is closed, go slow path
799               next[0] = NAT_NEXT_OUT2IN_ED_SLOW_PATH;
800             }
801           else
802             {
803               // session in transitory timeout, drop
804               b0->error = node->errors[NAT_OUT2IN_ED_ERROR_TCP_CLOSED];
805               next[0] = NAT_NEXT_DROP;
806             }
807           goto trace0;
808         }
809
810       // drop if session expired
811       u64 sess_timeout_time;
812       sess_timeout_time =
813         s0->last_heard + (f64) nat44_session_get_timeout (sm, s0);
814       if (now >= sess_timeout_time)
815         {
816           // session is closed, go slow path
817           nat_free_session_data (sm, s0, thread_index, 0);
818           nat_ed_session_delete (sm, s0, thread_index, 1);
819           next[0] = NAT_NEXT_OUT2IN_ED_SLOW_PATH;
820           goto trace0;
821         }
822       //
823
824       old_addr0 = ip0->dst_address.as_u32;
825       new_addr0 = ip0->dst_address.as_u32 = s0->in2out.addr.as_u32;
826       vnet_buffer (b0)->sw_if_index[VLIB_TX] = s0->in2out.fib_index;
827
828       sum0 = ip0->checksum;
829       sum0 = ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
830                              dst_address);
831       if (PREDICT_FALSE (is_twice_nat_session (s0)))
832         sum0 = ip_csum_update (sum0, ip0->src_address.as_u32,
833                                s0->ext_host_nat_addr.as_u32, ip4_header_t,
834                                src_address);
835       ip0->checksum = ip_csum_fold (sum0);
836
837       old_port0 = vnet_buffer (b0)->ip.reass.l4_dst_port;
838
839       if (PREDICT_TRUE (proto0 == NAT_PROTOCOL_TCP))
840         {
841           if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment)
842             {
843               new_port0 = udp0->dst_port = s0->in2out.port;
844               sum0 = tcp0->checksum;
845               sum0 =
846                 ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
847                                 dst_address);
848               sum0 =
849                 ip_csum_update (sum0, old_port0, new_port0, ip4_header_t,
850                                 length);
851               if (is_twice_nat_session (s0))
852                 {
853                   sum0 = ip_csum_update (sum0, ip0->src_address.as_u32,
854                                          s0->ext_host_nat_addr.as_u32,
855                                          ip4_header_t, dst_address);
856                   sum0 =
857                     ip_csum_update (sum0,
858                                     vnet_buffer (b0)->ip.reass.l4_src_port,
859                                     s0->ext_host_nat_port, ip4_header_t,
860                                     length);
861                   tcp0->src_port = s0->ext_host_nat_port;
862                   ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
863                 }
864               tcp0->checksum = ip_csum_fold (sum0);
865             }
866           vlib_increment_simple_counter (&sm->counters.fastpath.out2in_ed.tcp,
867                                          thread_index, sw_if_index0, 1);
868           if (nat44_set_tcp_session_state_o2i
869               (sm, now, s0, vnet_buffer (b0)->ip.reass.icmp_type_or_tcp_flags,
870                vnet_buffer (b0)->ip.reass.tcp_ack_number,
871                vnet_buffer (b0)->ip.reass.tcp_seq_number, thread_index))
872             goto trace0;
873         }
874       else if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment
875                && udp0->checksum)
876         {
877           new_port0 = udp0->dst_port = s0->in2out.port;
878           sum0 = udp0->checksum;
879           sum0 =
880             ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
881                             dst_address);
882           sum0 =
883             ip_csum_update (sum0, old_port0, new_port0, ip4_header_t, length);
884           if (PREDICT_FALSE (is_twice_nat_session (s0)))
885             {
886               sum0 =
887                 ip_csum_update (sum0, ip0->src_address.as_u32,
888                                 s0->ext_host_nat_addr.as_u32, ip4_header_t,
889                                 dst_address);
890               sum0 =
891                 ip_csum_update (sum0, vnet_buffer (b0)->ip.reass.l4_src_port,
892                                 s0->ext_host_nat_port, ip4_header_t, length);
893               udp0->src_port = s0->ext_host_nat_port;
894               ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
895             }
896           udp0->checksum = ip_csum_fold (sum0);
897           vlib_increment_simple_counter (&sm->counters.fastpath.out2in_ed.udp,
898                                          thread_index, sw_if_index0, 1);
899         }
900       else
901         {
902           if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment)
903             {
904               new_port0 = udp0->dst_port = s0->in2out.port;
905               if (PREDICT_FALSE (is_twice_nat_session (s0)))
906                 {
907                   udp0->src_port = s0->ext_host_nat_port;
908                   ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
909                 }
910             }
911           vlib_increment_simple_counter (&sm->counters.fastpath.out2in_ed.udp,
912                                          thread_index, sw_if_index0, 1);
913         }
914
915       /* Accounting */
916       nat44_session_update_counters (s0, now,
917                                      vlib_buffer_length_in_chain (vm, b0),
918                                      thread_index);
919       /* Per-user LRU list maintenance */
920       nat44_session_update_lru (sm, s0, thread_index);
921
922     trace0:
923       if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
924                          && (b0->flags & VLIB_BUFFER_IS_TRACED)))
925         {
926           nat44_ed_out2in_trace_t *t =
927             vlib_add_trace (vm, node, b0, sizeof (*t));
928           t->sw_if_index = sw_if_index0;
929           t->next_index = next[0];
930           t->is_slow_path = 0;
931
932           if (s0)
933             t->session_index = s0 - tsm->sessions;
934           else
935             t->session_index = ~0;
936         }
937
938       if (next[0] == NAT_NEXT_DROP)
939         {
940           vlib_increment_simple_counter (&sm->counters.fastpath.
941                                          out2in_ed.drops, thread_index,
942                                          sw_if_index0, 1);
943         }
944
945       n_left_from--;
946       next++;
947     }
948
949   vlib_buffer_enqueue_to_next (vm, node, from, (u16 *) nexts,
950                                frame->n_vectors);
951   return frame->n_vectors;
952 }
953
954 static inline uword
955 nat44_ed_out2in_slow_path_node_fn_inline (vlib_main_t * vm,
956                                           vlib_node_runtime_t * node,
957                                           vlib_frame_t * frame)
958 {
959   u32 n_left_from, *from;
960   snat_main_t *sm = &snat_main;
961   f64 now = vlib_time_now (vm);
962   u32 thread_index = vm->thread_index;
963   snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index];
964
965   from = vlib_frame_vector_args (frame);
966   n_left_from = frame->n_vectors;
967
968   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
969   u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
970   vlib_get_buffers (vm, from, b, n_left_from);
971
972   while (n_left_from > 0)
973     {
974       vlib_buffer_t *b0;
975       u32 sw_if_index0, rx_fib_index0, proto0, old_addr0, new_addr0;
976       u16 old_port0, new_port0;
977       ip4_header_t *ip0;
978       udp_header_t *udp0;
979       tcp_header_t *tcp0;
980       icmp46_header_t *icmp0;
981       snat_session_t *s0 = 0;
982       clib_bihash_kv_16_8_t kv0, value0;
983       ip_csum_t sum0;
984       lb_nat_type_t lb_nat0;
985       twice_nat_type_t twice_nat0;
986       u8 identity_nat0;
987       ip4_address_t sm_addr;
988       u16 sm_port;
989       u32 sm_fib_index;
990
991       b0 = *b;
992       next[0] = vnet_buffer2 (b0)->nat.arc_next;
993
994       vnet_buffer (b0)->snat.flags = 0;
995       ip0 = vlib_buffer_get_current (b0);
996
997       sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
998       rx_fib_index0 =
999         fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4, sw_if_index0);
1000
1001       if (PREDICT_FALSE (ip0->ttl == 1))
1002         {
1003           vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1004           icmp4_error_set_vnet_buffer (b0, ICMP4_time_exceeded,
1005                                        ICMP4_time_exceeded_ttl_exceeded_in_transit,
1006                                        0);
1007           next[0] = NAT_NEXT_ICMP_ERROR;
1008           goto trace0;
1009         }
1010
1011       udp0 = ip4_next_header (ip0);
1012       tcp0 = (tcp_header_t *) udp0;
1013       icmp0 = (icmp46_header_t *) udp0;
1014       proto0 = ip_proto_to_nat_proto (ip0->protocol);
1015
1016       if (PREDICT_FALSE (proto0 == NAT_PROTOCOL_OTHER))
1017         {
1018           s0 =
1019             nat44_ed_out2in_unknown_proto (sm, b0, ip0, rx_fib_index0,
1020                                            thread_index, now, vm, node);
1021           if (!sm->forwarding_enabled)
1022             {
1023               if (!s0)
1024                 next[0] = NAT_NEXT_DROP;
1025             }
1026           vlib_increment_simple_counter (&sm->counters.slowpath.
1027                                          out2in_ed.other, thread_index,
1028                                          sw_if_index0, 1);
1029           goto trace0;
1030         }
1031
1032       if (PREDICT_FALSE (proto0 == NAT_PROTOCOL_ICMP))
1033         {
1034           next[0] = icmp_out2in_ed_slow_path
1035             (sm, b0, ip0, icmp0, sw_if_index0, rx_fib_index0, node,
1036              next[0], now, thread_index, &s0);
1037           vlib_increment_simple_counter (&sm->counters.slowpath.
1038                                          out2in_ed.icmp, thread_index,
1039                                          sw_if_index0, 1);
1040           goto trace0;
1041         }
1042
1043       init_ed_k (&kv0, ip0->dst_address,
1044                  vnet_buffer (b0)->ip.reass.l4_dst_port, ip0->src_address,
1045                  vnet_buffer (b0)->ip.reass.l4_src_port, rx_fib_index0,
1046                  ip0->protocol);
1047
1048       s0 = NULL;
1049       if (!clib_bihash_search_16_8 (&sm->out2in_ed, &kv0, &value0))
1050         {
1051           ASSERT (thread_index == ed_value_get_thread_index (&value0));
1052           s0 =
1053             pool_elt_at_index (tsm->sessions,
1054                                ed_value_get_session_index (&value0));
1055
1056           if (s0->tcp_closed_timestamp && now >= s0->tcp_closed_timestamp)
1057             {
1058               nat_free_session_data (sm, s0, thread_index, 0);
1059               nat_ed_session_delete (sm, s0, thread_index, 1);
1060               s0 = NULL;
1061             }
1062         }
1063
1064       if (!s0)
1065         {
1066           /* Try to match static mapping by external address and port,
1067              destination address and port in packet */
1068
1069           if (snat_static_mapping_match
1070               (sm, ip0->dst_address,
1071                vnet_buffer (b0)->ip.reass.l4_dst_port, rx_fib_index0,
1072                proto0, &sm_addr, &sm_port, &sm_fib_index, 1, 0,
1073                &twice_nat0, &lb_nat0, &ip0->src_address, &identity_nat0))
1074             {
1075               /*
1076                * Send DHCP packets to the ipv4 stack, or we won't
1077                * be able to use dhcp client on the outside interface
1078                */
1079               if (PREDICT_FALSE (proto0 == NAT_PROTOCOL_UDP
1080                                  && (vnet_buffer (b0)->ip.reass.l4_dst_port ==
1081                                      clib_host_to_net_u16
1082                                      (UDP_DST_PORT_dhcp_to_client))))
1083                 {
1084                   goto trace0;
1085                 }
1086
1087               if (!sm->forwarding_enabled)
1088                 {
1089                   b0->error =
1090                     node->errors[NAT_OUT2IN_ED_ERROR_NO_TRANSLATION];
1091                   next[0] = NAT_NEXT_DROP;
1092                 }
1093               else
1094                 {
1095                   if (next_src_nat
1096                       (sm, ip0, vnet_buffer (b0)->ip.reass.l4_src_port,
1097                        vnet_buffer (b0)->ip.reass.l4_dst_port,
1098                        thread_index, rx_fib_index0))
1099                     {
1100                       next[0] = NAT_NEXT_IN2OUT_ED_FAST_PATH;
1101                       goto trace0;
1102                     }
1103                   if (sm->num_workers > 1)
1104                     create_bypass_for_fwd_worker (sm, b0, ip0, rx_fib_index0);
1105                   else
1106                     create_bypass_for_fwd (sm, b0, ip0, rx_fib_index0,
1107                                            thread_index);
1108                 }
1109               goto trace0;
1110             }
1111
1112           if (PREDICT_FALSE (identity_nat0))
1113             goto trace0;
1114
1115           if ((proto0 == NAT_PROTOCOL_TCP)
1116               && !tcp_flags_is_init (vnet_buffer (b0)->ip.
1117                                      reass.icmp_type_or_tcp_flags))
1118             {
1119               b0->error = node->errors[NAT_OUT2IN_ED_ERROR_NON_SYN];
1120               next[0] = NAT_NEXT_DROP;
1121               goto trace0;
1122             }
1123
1124           /* Create session initiated by host from external network */
1125           s0 = create_session_for_static_mapping_ed (sm, b0,
1126                                                      sm_addr, sm_port,
1127                                                      sm_fib_index,
1128                                                      ip0->dst_address,
1129                                                      vnet_buffer (b0)->
1130                                                      ip.reass.l4_dst_port,
1131                                                      rx_fib_index0, proto0,
1132                                                      node, rx_fib_index0,
1133                                                      thread_index, twice_nat0,
1134                                                      lb_nat0, now);
1135           if (!s0)
1136             {
1137               next[0] = NAT_NEXT_DROP;
1138               goto trace0;
1139             }
1140         }
1141
1142       old_addr0 = ip0->dst_address.as_u32;
1143       new_addr0 = ip0->dst_address.as_u32 = s0->in2out.addr.as_u32;
1144       vnet_buffer (b0)->sw_if_index[VLIB_TX] = s0->in2out.fib_index;
1145
1146       sum0 = ip0->checksum;
1147       sum0 = ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
1148                              dst_address);
1149       if (PREDICT_FALSE (is_twice_nat_session (s0)))
1150         sum0 = ip_csum_update (sum0, ip0->src_address.as_u32,
1151                                s0->ext_host_nat_addr.as_u32, ip4_header_t,
1152                                src_address);
1153       ip0->checksum = ip_csum_fold (sum0);
1154
1155       old_port0 = vnet_buffer (b0)->ip.reass.l4_dst_port;
1156
1157       if (PREDICT_TRUE (proto0 == NAT_PROTOCOL_TCP))
1158         {
1159           if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment)
1160             {
1161               new_port0 = udp0->dst_port = s0->in2out.port;
1162               sum0 = tcp0->checksum;
1163               sum0 =
1164                 ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
1165                                 dst_address);
1166               sum0 =
1167                 ip_csum_update (sum0, old_port0, new_port0, ip4_header_t,
1168                                 length);
1169               if (is_twice_nat_session (s0))
1170                 {
1171                   sum0 = ip_csum_update (sum0, ip0->src_address.as_u32,
1172                                          s0->ext_host_nat_addr.as_u32,
1173                                          ip4_header_t, dst_address);
1174                   sum0 =
1175                     ip_csum_update (sum0,
1176                                     vnet_buffer (b0)->ip.reass.l4_src_port,
1177                                     s0->ext_host_nat_port, ip4_header_t,
1178                                     length);
1179                   tcp0->src_port = s0->ext_host_nat_port;
1180                   ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
1181                 }
1182               tcp0->checksum = ip_csum_fold (sum0);
1183             }
1184           vlib_increment_simple_counter (&sm->counters.slowpath.out2in_ed.tcp,
1185                                          thread_index, sw_if_index0, 1);
1186           if (nat44_set_tcp_session_state_o2i
1187               (sm, now, s0, vnet_buffer (b0)->ip.reass.icmp_type_or_tcp_flags,
1188                vnet_buffer (b0)->ip.reass.tcp_ack_number,
1189                vnet_buffer (b0)->ip.reass.tcp_seq_number, thread_index))
1190             goto trace0;
1191         }
1192       else if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment
1193                && udp0->checksum)
1194         {
1195           new_port0 = udp0->dst_port = s0->in2out.port;
1196           sum0 = udp0->checksum;
1197           sum0 = ip_csum_update (sum0, old_addr0, new_addr0, ip4_header_t,
1198                                  dst_address);
1199           sum0 = ip_csum_update (sum0, old_port0, new_port0, ip4_header_t,
1200                                  length);
1201           if (PREDICT_FALSE (is_twice_nat_session (s0)))
1202             {
1203               sum0 = ip_csum_update (sum0, ip0->src_address.as_u32,
1204                                      s0->ext_host_nat_addr.as_u32,
1205                                      ip4_header_t, dst_address);
1206               sum0 =
1207                 ip_csum_update (sum0,
1208                                 vnet_buffer (b0)->ip.reass.l4_src_port,
1209                                 s0->ext_host_nat_port, ip4_header_t, length);
1210               udp0->src_port = s0->ext_host_nat_port;
1211               ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
1212             }
1213           udp0->checksum = ip_csum_fold (sum0);
1214           vlib_increment_simple_counter (&sm->counters.slowpath.out2in_ed.udp,
1215                                          thread_index, sw_if_index0, 1);
1216         }
1217       else
1218         {
1219           if (!vnet_buffer (b0)->ip.reass.is_non_first_fragment)
1220             {
1221               new_port0 = udp0->dst_port = s0->in2out.port;
1222               if (PREDICT_FALSE (is_twice_nat_session (s0)))
1223                 {
1224                   udp0->src_port = s0->ext_host_nat_port;
1225                   ip0->src_address.as_u32 = s0->ext_host_nat_addr.as_u32;
1226                 }
1227             }
1228           vlib_increment_simple_counter (&sm->counters.slowpath.out2in_ed.udp,
1229                                          thread_index, sw_if_index0, 1);
1230         }
1231
1232       /* Accounting */
1233       nat44_session_update_counters (s0, now,
1234                                      vlib_buffer_length_in_chain (vm, b0),
1235                                      thread_index);
1236       /* Per-user LRU list maintenance */
1237       nat44_session_update_lru (sm, s0, thread_index);
1238
1239     trace0:
1240       if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
1241                          && (b0->flags & VLIB_BUFFER_IS_TRACED)))
1242         {
1243           nat44_ed_out2in_trace_t *t =
1244             vlib_add_trace (vm, node, b0, sizeof (*t));
1245           t->sw_if_index = sw_if_index0;
1246           t->next_index = next[0];
1247           t->is_slow_path = 1;
1248
1249           if (s0)
1250             t->session_index = s0 - tsm->sessions;
1251           else
1252             t->session_index = ~0;
1253         }
1254
1255       if (next[0] == NAT_NEXT_DROP)
1256         {
1257           vlib_increment_simple_counter (&sm->counters.slowpath.
1258                                          out2in_ed.drops, thread_index,
1259                                          sw_if_index0, 1);
1260         }
1261
1262       n_left_from--;
1263       next++;
1264       b++;
1265     }
1266
1267   vlib_buffer_enqueue_to_next (vm, node, from, (u16 *) nexts,
1268                                frame->n_vectors);
1269
1270   return frame->n_vectors;
1271 }
1272
1273 VLIB_NODE_FN (nat44_ed_out2in_node) (vlib_main_t * vm,
1274                                      vlib_node_runtime_t * node,
1275                                      vlib_frame_t * frame)
1276 {
1277   if (snat_main.num_workers > 1)
1278     {
1279       return nat44_ed_out2in_fast_path_node_fn_inline (vm, node, frame, 1);
1280     }
1281   else
1282     {
1283       return nat44_ed_out2in_fast_path_node_fn_inline (vm, node, frame, 0);
1284     }
1285 }
1286
1287 /* *INDENT-OFF* */
1288 VLIB_REGISTER_NODE (nat44_ed_out2in_node) = {
1289   .name = "nat44-ed-out2in",
1290   .vector_size = sizeof (u32),
1291   .sibling_of = "nat-default",
1292   .format_trace = format_nat44_ed_out2in_trace,
1293   .type = VLIB_NODE_TYPE_INTERNAL,
1294   .n_errors = ARRAY_LEN(nat_out2in_ed_error_strings),
1295   .error_strings = nat_out2in_ed_error_strings,
1296   .runtime_data_bytes = sizeof (snat_runtime_t),
1297 };
1298 /* *INDENT-ON* */
1299
1300 VLIB_NODE_FN (nat44_ed_out2in_slowpath_node) (vlib_main_t * vm,
1301                                               vlib_node_runtime_t * node,
1302                                               vlib_frame_t * frame)
1303 {
1304   return nat44_ed_out2in_slow_path_node_fn_inline (vm, node, frame);
1305 }
1306
1307 /* *INDENT-OFF* */
1308 VLIB_REGISTER_NODE (nat44_ed_out2in_slowpath_node) = {
1309   .name = "nat44-ed-out2in-slowpath",
1310   .vector_size = sizeof (u32),
1311   .sibling_of = "nat-default",
1312   .format_trace = format_nat44_ed_out2in_trace,
1313   .type = VLIB_NODE_TYPE_INTERNAL,
1314   .n_errors = ARRAY_LEN(nat_out2in_ed_error_strings),
1315   .error_strings = nat_out2in_ed_error_strings,
1316   .runtime_data_bytes = sizeof (snat_runtime_t),
1317 };
1318 /* *INDENT-ON* */
1319
1320 static u8 *
1321 format_nat_pre_trace (u8 * s, va_list * args)
1322 {
1323   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1324   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1325   nat_pre_trace_t *t = va_arg (*args, nat_pre_trace_t *);
1326   return format (s, "out2in next_index %d arc_next_index %d", t->next_index,
1327                  t->arc_next_index);
1328 }
1329
1330 VLIB_NODE_FN (nat_pre_out2in_node) (vlib_main_t * vm,
1331                                     vlib_node_runtime_t * node,
1332                                     vlib_frame_t * frame)
1333 {
1334   return nat_pre_node_fn_inline (vm, node, frame,
1335                                  NAT_NEXT_OUT2IN_ED_FAST_PATH);
1336 }
1337
1338 /* *INDENT-OFF* */
1339 VLIB_REGISTER_NODE (nat_pre_out2in_node) = {
1340   .name = "nat-pre-out2in",
1341   .vector_size = sizeof (u32),
1342   .sibling_of = "nat-default",
1343   .format_trace = format_nat_pre_trace,
1344   .type = VLIB_NODE_TYPE_INTERNAL,
1345   .n_errors = 0,
1346  };
1347 /* *INDENT-ON* */
1348
1349 /*
1350  * fd.io coding-style-patch-verification: ON
1351  *
1352  * Local Variables:
1353  * eval: (c-set-style "gnu")
1354  * End:
1355  */