nat: NAT44-ED api fix and improvement
[vpp.git] / src / plugins / nat / nat44-ed / nat44_ed.h
1 /*
2  * Copyright (c) 2020 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 nat.c
17  * NAT plugin global declarations
18  */
19 #ifndef __included_nat44_ed_h__
20 #define __included_nat44_ed_h__
21
22 #include <vnet/vnet.h>
23 #include <vnet/ip/ip.h>
24 #include <vnet/ethernet/ethernet.h>
25 #include <vnet/ip/icmp46_packet.h>
26 #include <vnet/api_errno.h>
27 #include <vnet/fib/fib_source.h>
28 #include <vppinfra/elog.h>
29 #include <vppinfra/bihash_8_8.h>
30 #include <vppinfra/bihash_16_8.h>
31 #include <vppinfra/hash.h>
32 #include <vppinfra/dlist.h>
33 #include <vppinfra/error.h>
34 #include <vlibapi/api.h>
35
36 #include <nat/lib/lib.h>
37 #include <nat/lib/inlines.h>
38
39 /* default number of worker handoff frame queue elements */
40 #define NAT_FQ_NELTS_DEFAULT 64
41
42 /* number of attempts to get a port for ED overloading algorithm, if rolling
43  * a dice this many times doesn't produce a free port, it's treated
44  * as if there were no free ports available to conserve resources */
45 #define ED_PORT_ALLOC_ATTEMPTS (10)
46
47 /* NAT buffer flags */
48 #define SNAT_FLAG_HAIRPINNING (1 << 0)
49
50 /* NAT44 API Configuration flags */
51 #define foreach_nat44_config_flag                                             \
52   _ (0x00, IS_ENDPOINT_INDEPENDENT)                                           \
53   _ (0x01, IS_ENDPOINT_DEPENDENT)                                             \
54   _ (0x02, IS_STATIC_MAPPING_ONLY)                                            \
55   _ (0x04, IS_CONNECTION_TRACKING)
56
57 typedef enum nat44_config_flags_t_
58 {
59 #define _(n,f) NAT44_API_##f = n,
60   foreach_nat44_config_flag
61 #undef _
62 } nat44_config_flags_t;
63
64 typedef struct
65 {
66   /* nat44 plugin features */
67   u8 static_mapping_only;
68   u8 connection_tracking;
69
70   u32 inside_vrf;
71   u32 outside_vrf;
72
73   /* maximum number of sessions */
74   u32 sessions;
75
76 } nat44_config_t;
77
78 typedef enum
79 {
80   NAT_NEXT_DROP,
81   NAT_NEXT_ICMP_ERROR,
82   NAT_NEXT_IN2OUT_ED_FAST_PATH,
83   NAT_NEXT_IN2OUT_ED_SLOW_PATH,
84   NAT_NEXT_IN2OUT_ED_OUTPUT_FAST_PATH,
85   NAT_NEXT_IN2OUT_ED_OUTPUT_SLOW_PATH,
86   NAT_NEXT_OUT2IN_ED_FAST_PATH,
87   NAT_NEXT_OUT2IN_ED_SLOW_PATH,
88   NAT_NEXT_IN2OUT_CLASSIFY,
89   NAT_NEXT_OUT2IN_CLASSIFY,
90   NAT_N_NEXT,
91 } nat_next_t;
92
93 typedef struct
94 {
95   u32 next_index;
96   u32 arc_next_index;
97 } nat_pre_trace_t;
98
99 /* External address and port allocation modes */
100 #define foreach_nat_addr_and_port_alloc_alg \
101   _(0, DEFAULT, "default")         \
102   _(1, MAPE, "map-e")              \
103   _(2, RANGE, "port-range")
104
105 typedef enum
106 {
107 #define _(v, N, s) NAT_ADDR_AND_PORT_ALLOC_ALG_##N = v,
108   foreach_nat_addr_and_port_alloc_alg
109 #undef _
110 } nat_addr_and_port_alloc_alg_t;
111
112 /* Session state */
113 #define foreach_snat_session_state          \
114   _(0, UNKNOWN, "unknown")                 \
115   _(1, UDP_ACTIVE, "udp-active")           \
116   _(2, TCP_SYN_SENT, "tcp-syn-sent")       \
117   _(3, TCP_ESTABLISHED, "tcp-established") \
118   _(4, TCP_FIN_WAIT, "tcp-fin-wait")       \
119   _(5, TCP_CLOSE_WAIT, "tcp-close-wait")   \
120   _(6, TCP_CLOSING, "tcp-closing")         \
121   _(7, TCP_LAST_ACK, "tcp-last-ack")       \
122   _(8, TCP_CLOSED, "tcp-closed")           \
123   _(9, ICMP_ACTIVE, "icmp-active")
124
125 typedef enum
126 {
127 #define _(v, N, s) SNAT_SESSION_##N = v,
128   foreach_snat_session_state
129 #undef _
130 } snat_session_state_t;
131
132 #define foreach_nat_in2out_ed_error                                           \
133   _ (UNSUPPORTED_PROTOCOL, "unsupported protocol")                            \
134   _ (OUT_OF_PORTS, "out of ports")                                            \
135   _ (BAD_ICMP_TYPE, "unsupported ICMP type")                                  \
136   _ (MAX_SESSIONS_EXCEEDED, "maximum sessions exceeded")                      \
137   _ (NON_SYN, "non-SYN packet try to create session")                         \
138   _ (TCP_CLOSED, "drops due to TCP in transitory timeout")                    \
139   _ (TRNSL_FAILED, "couldn't translate packet")
140
141 typedef enum
142 {
143 #define _(sym,str) NAT_IN2OUT_ED_ERROR_##sym,
144   foreach_nat_in2out_ed_error
145 #undef _
146     NAT_IN2OUT_ED_N_ERROR,
147 } nat_in2out_ed_error_t;
148
149 #define foreach_nat_out2in_ed_error                                           \
150   _ (UNSUPPORTED_PROTOCOL, "unsupported protocol")                            \
151   _ (OUT_OF_PORTS, "out of ports")                                            \
152   _ (BAD_ICMP_TYPE, "unsupported ICMP type")                                  \
153   _ (NO_TRANSLATION, "no translation")                                        \
154   _ (MAX_SESSIONS_EXCEEDED, "maximum sessions exceeded")                      \
155   _ (NON_SYN, "non-SYN packet try to create session")                         \
156   _ (TCP_CLOSED, "drops due to TCP in transitory timeout")                    \
157   _ (HASH_ADD_FAILED, "hash table add failed")                                \
158   _ (TRNSL_FAILED, "couldn't translate packet")
159
160 typedef enum
161 {
162 #define _(sym,str) NAT_OUT2IN_ED_ERROR_##sym,
163   foreach_nat_out2in_ed_error
164 #undef _
165     NAT_OUT2IN_ED_N_ERROR,
166 } nat_out2in_ed_error_t;
167
168
169 /* Endpoint dependent TCP session state */
170 #define NAT44_SES_I2O_FIN 1
171 #define NAT44_SES_O2I_FIN 2
172 #define NAT44_SES_I2O_FIN_ACK 4
173 #define NAT44_SES_O2I_FIN_ACK 8
174 #define NAT44_SES_I2O_SYN 16
175 #define NAT44_SES_O2I_SYN 32
176 #define NAT44_SES_RST     64
177
178 /* Session flags */
179 #define SNAT_SESSION_FLAG_STATIC_MAPPING     (1 << 0)
180 #define SNAT_SESSION_FLAG_LOAD_BALANCING     (1 << 2)
181 #define SNAT_SESSION_FLAG_TWICE_NAT          (1 << 3)
182 #define SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT (1 << 4)
183 #define SNAT_SESSION_FLAG_FWD_BYPASS         (1 << 5)
184 #define SNAT_SESSION_FLAG_AFFINITY           (1 << 6)
185 #define SNAT_SESSION_FLAG_EXACT_ADDRESS      (1 << 7)
186 #define SNAT_SESSION_FLAG_HAIRPINNING        (1 << 8)
187
188 /* NAT interface flags */
189 #define NAT_INTERFACE_FLAG_IS_INSIDE 1
190 #define NAT_INTERFACE_FLAG_IS_OUTSIDE 2
191
192 /* Static mapping flags */
193 #define NAT_SM_FLAG_SELF_TWICE_NAT (1 << 1)
194 #define NAT_SM_FLAG_TWICE_NAT      (1 << 2)
195 #define NAT_SM_FLAG_IDENTITY_NAT   (1 << 3)
196 #define NAT_SM_FLAG_ADDR_ONLY      (1 << 4)
197 #define NAT_SM_FLAG_EXACT_ADDRESS  (1 << 5)
198 #define NAT_SM_FLAG_OUT2IN_ONLY    (1 << 6)
199 #define NAT_SM_FLAG_LB             (1 << 7)
200 #define NAT_SM_FLAG_SWITCH_ADDRESS (1 << 8)
201
202 typedef CLIB_PACKED(struct
203 {
204   // number of sessions in this vrf
205   u32 ses_count;
206
207   u32 rx_fib_index;
208   u32 tx_fib_index;
209
210   // is this vrf expired
211   u8 expired;
212 }) per_vrf_sessions_t;
213
214 typedef union
215 {
216   struct
217   {
218     ip4_address_t saddr, daddr;
219     u16 sport; // ICMP id for ICMP case
220     u16 dport;
221     u32 fib_index : 24;
222     u8 proto;
223   };
224   u64 as_u64[2];
225   u64x2u as_u128;
226 } nat_6t_t;
227
228 STATIC_ASSERT_SIZEOF (nat_6t_t, 2 * sizeof (u64));
229
230 typedef struct
231 {
232 #define NAT_FLOW_OP_SADDR_REWRITE   (1 << 1)
233 #define NAT_FLOW_OP_SPORT_REWRITE   (1 << 2)
234 #define NAT_FLOW_OP_DADDR_REWRITE   (1 << 3)
235 #define NAT_FLOW_OP_DPORT_REWRITE   (1 << 4)
236 #define NAT_FLOW_OP_ICMP_ID_REWRITE (1 << 5)
237 #define NAT_FLOW_OP_TXFIB_REWRITE   (1 << 6)
238   int ops;
239   nat_6t_t match;
240   struct
241   {
242     ip4_address_t saddr, daddr;
243     u16 sport;
244     u16 dport;
245     u32 fib_index;
246     u8 proto;
247     u16 icmp_id;
248   } rewrite;
249   uword l3_csum_delta;
250   uword l4_csum_delta;
251 } nat_6t_flow_t;
252
253 void nat44_ed_forwarding_enable_disable (u8 is_enable);
254
255 always_inline void
256 nat_6t_flow_saddr_rewrite_set (nat_6t_flow_t *f, u32 saddr)
257 {
258   f->ops |= NAT_FLOW_OP_SADDR_REWRITE;
259   f->rewrite.saddr.as_u32 = saddr;
260 }
261
262 always_inline void
263 nat_6t_flow_daddr_rewrite_set (nat_6t_flow_t *f, u32 daddr)
264 {
265   f->ops |= NAT_FLOW_OP_DADDR_REWRITE;
266   f->rewrite.daddr.as_u32 = daddr;
267 }
268
269 always_inline void
270 nat_6t_flow_sport_rewrite_set (nat_6t_flow_t *f, u32 sport)
271 {
272   f->ops |= NAT_FLOW_OP_SPORT_REWRITE;
273   f->rewrite.sport = sport;
274 }
275
276 always_inline void
277 nat_6t_flow_dport_rewrite_set (nat_6t_flow_t *f, u32 dport)
278 {
279   f->ops |= NAT_FLOW_OP_DPORT_REWRITE;
280   f->rewrite.dport = dport;
281 }
282
283 always_inline void
284 nat_6t_flow_txfib_rewrite_set (nat_6t_flow_t *f, u32 tx_fib_index)
285 {
286   f->ops |= NAT_FLOW_OP_TXFIB_REWRITE;
287   f->rewrite.fib_index = tx_fib_index;
288 }
289
290 always_inline void
291 nat_6t_flow_icmp_id_rewrite_set (nat_6t_flow_t *f, u16 id)
292 {
293   f->ops |= NAT_FLOW_OP_ICMP_ID_REWRITE;
294   f->rewrite.icmp_id = id;
295 }
296
297 typedef CLIB_PACKED(struct
298 {
299   /* Outside network tuple */
300   struct
301   {
302     ip4_address_t addr;
303     u32 fib_index;
304     u16 port;
305   } out2in;
306
307   /* Inside network tuple */
308   struct
309   {
310     ip4_address_t addr;
311     u32 fib_index;
312     u16 port;
313   } in2out;
314
315   ip_protocol_t proto;
316
317   nat_6t_flow_t i2o;
318   nat_6t_flow_t o2i;
319
320   /* Flags */
321   u32 flags;
322
323   /* head of LRU list in which this session is tracked */
324   u32 lru_head_index;
325   /* index in global LRU list */
326   u32 lru_index;
327   f64 last_lru_update;
328
329   /* Last heard timer */
330   f64 last_heard;
331
332   /* Last HA refresh */
333   f64 ha_last_refreshed;
334
335   /* Counters */
336   u64 total_bytes;
337   u32 total_pkts;
338
339   /* External host address and port */
340   ip4_address_t ext_host_addr;
341   u16 ext_host_port;
342
343   /* External host address and port after translation */
344   ip4_address_t ext_host_nat_addr;
345   u16 ext_host_nat_port;
346
347   /* TCP session state */
348   u8 state;
349   u32 i2o_fin_seq;
350   u32 o2i_fin_seq;
351   u64 tcp_closed_timestamp;
352
353   /* per vrf sessions index */
354   u32 per_vrf_sessions_index;
355
356   u32 thread_index;
357 }) snat_session_t;
358
359 typedef struct
360 {
361   ip4_address_t addr;
362   u32 fib_index;
363 } snat_address_t;
364
365 typedef struct
366 {
367   u32 fib_index;
368   u32 ref_count;
369 } nat_fib_t;
370
371 typedef struct
372 {
373   u32 fib_index;
374   u32 refcount;
375 } nat_outside_fib_t;
376
377 typedef struct
378 {
379   /* backend IP address */
380   ip4_address_t addr;
381   /* backend port number */
382   u16 port;
383   /* probability of the backend to be randomly matched */
384   u8 probability;
385   u8 prefix;
386   /* backend FIB table */
387   u32 vrf_id;
388   u32 fib_index;
389 } nat44_lb_addr_port_t;
390
391 typedef enum
392 {
393   /* twice-nat disabled */
394   TWICE_NAT_DISABLED,
395   /* twice-nat enabled */
396   TWICE_NAT,
397   /* twice-nat only when src IP equals dst IP after translation */
398   TWICE_NAT_SELF,
399 } twice_nat_type_t;
400
401 typedef enum
402 {
403   /* no load-balancing */
404   NO_LB_NAT,
405   /* load-balancing */
406   LB_NAT,
407   /* load-balancing with affinity */
408   AFFINITY_LB_NAT,
409 } lb_nat_type_t;
410
411 typedef struct
412 {
413   /* preferred pool address */
414   ip4_address_t pool_addr;
415   /* local IP address */
416   ip4_address_t local_addr;
417   /* external IP address */
418   ip4_address_t external_addr;
419   /* local port */
420   u16 local_port;
421   /* external port */
422   u16 external_port;
423   /* local FIB table */
424   u32 vrf_id;
425   u32 fib_index;
426   /* protocol */
427   ip_protocol_t proto;
428   /* 0 = disabled, otherwise client IP affinity sticky time in seconds */
429   u32 affinity;
430   /* worker threads used by backends/local host */
431   u32 *workers;
432   /* opaque string tag */
433   u8 *tag;
434   /* backends for load-balancing mode */
435   nat44_lb_addr_port_t *locals;
436   /* affinity per service lis */
437   u32 affinity_per_service_list_head_index;
438   /* flags */
439   u32 flags;
440 } snat_static_mapping_t;
441
442 typedef struct
443 {
444   u32 sw_if_index;
445   u8 flags;
446 } snat_interface_t;
447
448 typedef struct
449 {
450   ip4_address_t l_addr;
451   ip4_address_t pool_addr;
452   u16 l_port;
453   u16 e_port;
454   u32 sw_if_index;
455   u32 vrf_id;
456   ip_protocol_t proto;
457   u32 flags;
458   u8 *tag;
459 } snat_static_map_resolve_t;
460
461 typedef struct
462 {
463   /* Session pool */
464   snat_session_t *sessions;
465
466   /* Pool of doubly-linked list elements */
467   dlist_elt_t *list_pool;
468
469   /* LRU session list - head is stale, tail is fresh */
470   dlist_elt_t *lru_pool;
471   u32 tcp_trans_lru_head_index;
472   u32 tcp_estab_lru_head_index;
473   u32 udp_lru_head_index;
474   u32 icmp_lru_head_index;
475   u32 unk_proto_lru_head_index;
476
477   /* NAT thread index */
478   u32 snat_thread_index;
479
480   /* real thread index */
481   u32 thread_index;
482
483   per_vrf_sessions_t *per_vrf_sessions_vec;
484
485 } snat_main_per_thread_data_t;
486
487 struct snat_main_s;
488
489 u32 nat44_ed_get_in2out_worker_index (vlib_buffer_t *b, ip4_header_t *ip,
490                                       u32 rx_fib_index, u8 is_output);
491 u32 nat44_ed_get_out2in_worker_index (vlib_buffer_t *b, ip4_header_t *ip,
492                                       u32 rx_fib_index, u8 is_output);
493
494 /* Return worker thread index for given packet */
495 /* NAT address and port allocation function */
496 typedef int (nat_alloc_out_addr_and_port_function_t) (
497   snat_address_t *addresses, u32 fib_index, u32 thread_index,
498   ip_protocol_t proto, ip4_address_t *addr, u16 *port, u16 port_per_thread,
499   u32 snat_thread_index);
500
501 typedef struct snat_main_s
502 {
503   /* Thread settings */
504   u32 num_workers;
505   u32 first_worker_index;
506   u32 *workers;
507   u16 port_per_thread;
508
509   /* Per thread data */
510   snat_main_per_thread_data_t *per_thread_data;
511
512   /* Static mapping pool */
513   snat_static_mapping_t *static_mappings;
514
515   /* Endpoint independent lookup tables */
516   clib_bihash_8_8_t in2out;
517   clib_bihash_8_8_t out2in;
518
519   /* Endpoint dependent lookup table */
520   clib_bihash_16_8_t flow_hash;
521
522   /* Interface pool */
523   snat_interface_t *interfaces;
524   snat_interface_t *output_feature_interfaces;
525   // broken api backward compatibility
526   snat_interface_t *output_feature_dummy_interfaces;
527
528   /* Vector of outside addresses */
529   snat_address_t *addresses;
530   /* Vector of twice NAT addresses for external hosts */
531   snat_address_t *twice_nat_addresses;
532
533   /* sw_if_indices whose intfc addresses should be auto-added */
534   u32 *auto_add_sw_if_indices;
535   u32 *auto_add_sw_if_indices_twice_nat;
536
537   /* Address and port allocation function */
538   nat_alloc_out_addr_and_port_function_t *alloc_addr_and_port;
539   /* Address and port allocation type */
540   nat_addr_and_port_alloc_alg_t addr_and_port_alloc_alg;
541   /* Port set parameters (MAP-E) */
542   u8 psid_offset;
543   u8 psid_length;
544   u16 psid;
545   /* Port range parameters */
546   u16 start_port;
547   u16 end_port;
548
549   /* vector of fibs */
550   nat_fib_t *fibs;
551
552   /* vector of outside fibs */
553   nat_outside_fib_t *outside_fibs;
554
555   /* vector of interface address static mappings to resolve. */
556   snat_static_map_resolve_t *to_resolve;
557
558   /* Randomize port allocation order */
559   u32 random_seed;
560
561   /* Worker handoff frame-queue index */
562   u32 fq_in2out_index;
563   u32 fq_in2out_output_index;
564   u32 fq_out2in_index;
565
566   u32 out2in_node_index;
567   u32 in2out_node_index;
568   u32 in2out_output_node_index;
569
570   nat44_config_t rconfig;
571   //nat44_config_t cconfig;
572
573   /* If forwarding is enabled */
574   u8 forwarding_enabled;
575
576   /* static mapping config */
577   u8 static_mapping_only;
578   u8 static_mapping_connection_tracking;
579
580   /* Is translation memory size calculated or user defined */
581   u8 translation_memory_size_set;
582
583   u32 translation_buckets;
584   u32 max_translations_per_thread;
585   u32 *max_translations_per_fib;
586
587   u32 outside_vrf_id;
588   u32 outside_fib_index;
589   u32 inside_vrf_id;
590   u32 inside_fib_index;
591
592   nat_timeouts_t timeouts;
593
594   /* TCP MSS clamping */
595   u16 mss_clamping;
596
597   /* counters */
598   vlib_simple_counter_main_t total_sessions;
599   u32 max_cfg_sessions_gauge; /* Index of max configured sessions gauge in
600                                  stats */
601
602 #define _(x) vlib_simple_counter_main_t x;
603   struct
604   {
605     struct
606     {
607       struct
608       {
609         foreach_nat_counter;
610       } in2out;
611
612       struct
613       {
614         foreach_nat_counter;
615       } out2in;
616     } fastpath;
617
618     struct
619     {
620       struct
621       {
622         foreach_nat_counter;
623       } in2out;
624
625       struct
626       {
627         foreach_nat_counter;
628       } out2in;
629     } slowpath;
630
631     vlib_simple_counter_main_t hairpinning;
632   } counters;
633 #undef _
634
635   /* API message ID base */
636   u16 msg_id_base;
637
638   /* log class */
639   vlib_log_class_t log_class;
640   /* logging level */
641   u8 log_level;
642
643   /* convenience */
644   api_main_t *api_main;
645   ip4_main_t *ip4_main;
646   ip_lookup_main_t *ip4_lookup_main;
647
648   fib_source_t fib_src_hi;
649   fib_source_t fib_src_low;
650
651   /* pat - dynamic mapping enabled or conneciton tracking */
652   u8 pat;
653
654   /* number of worker handoff frame queue elements */
655   u32 frame_queue_nelts;
656
657   /* nat44 plugin enabled */
658   u8 enabled;
659
660   vnet_main_t *vnet_main;
661
662 } snat_main_t;
663
664 typedef struct
665 {
666   u32 thread_index;
667   f64 now;
668 } nat44_is_idle_session_ctx_t;
669
670 typedef struct
671 {
672   u32 cached_sw_if_index;
673   uword *cached_presence_by_ip4_address;
674 } snat_runtime_t;
675
676 extern snat_main_t snat_main;
677
678 // nat pre ed next_node feature classification
679 extern vlib_node_registration_t nat_default_node;
680 extern vlib_node_registration_t nat_pre_in2out_node;
681 extern vlib_node_registration_t nat_pre_out2in_node;
682
683 extern vlib_node_registration_t snat_in2out_node;
684 extern vlib_node_registration_t snat_in2out_output_node;
685 extern vlib_node_registration_t snat_out2in_node;
686 extern vlib_node_registration_t snat_in2out_worker_handoff_node;
687 extern vlib_node_registration_t snat_in2out_output_worker_handoff_node;
688 extern vlib_node_registration_t snat_out2in_worker_handoff_node;
689 extern vlib_node_registration_t nat44_ed_in2out_node;
690 extern vlib_node_registration_t nat44_ed_in2out_output_node;
691 extern vlib_node_registration_t nat44_ed_out2in_node;
692
693 extern fib_source_t nat_fib_src_hi;
694 extern fib_source_t nat_fib_src_low;
695
696 /* format functions */
697 format_function_t format_snat_static_mapping;
698 format_function_t format_snat_static_map_to_resolve;
699 format_function_t format_snat_session;
700 format_function_t format_static_mapping_key;
701 format_function_t format_nat_addr_and_port_alloc_alg;
702
703 /** \brief Check if SNAT session is created from static mapping.
704     @param s SNAT session
705     @return true if SNAT session is created from static mapping otherwise 0
706 */
707 always_inline bool
708 nat44_ed_is_session_static (snat_session_t *s)
709 {
710   return s->flags & SNAT_SESSION_FLAG_STATIC_MAPPING;
711 }
712
713 /** \brief Check if NAT session is twice NAT.
714     @param s NAT session
715     @return true if NAT session is twice NAT
716 */
717 always_inline bool
718 nat44_ed_is_twice_nat_session (snat_session_t *s)
719 {
720   return s->flags & SNAT_SESSION_FLAG_TWICE_NAT;
721 }
722
723 /** \brief Check if NAT session is load-balancing.
724     @param s NAT session
725     @return true if NAT session is load-balancing
726 */
727 always_inline bool
728 nat44_ed_is_lb_session (snat_session_t *s)
729 {
730   return s->flags & SNAT_SESSION_FLAG_LOAD_BALANCING;
731 }
732
733 /** \brief Check if NAT session is forwarding bypass.
734     @param s NAT session
735     @return true if NAT session is load-balancing
736 */
737 always_inline bool
738 na44_ed_is_fwd_bypass_session (snat_session_t *s)
739 {
740   return s->flags & SNAT_SESSION_FLAG_FWD_BYPASS;
741 }
742
743 /** \brief Check if NAT session has affinity record.
744     @param s NAT session
745     @return true if NAT session has affinity record
746 */
747 always_inline bool
748 nat44_ed_is_affinity_session (snat_session_t *s)
749 {
750   return s->flags & SNAT_SESSION_FLAG_AFFINITY;
751 }
752
753 /** \brief Check if exact pool address should be used.
754     @param s SNAT session
755     @return true if exact pool address
756 */
757 always_inline bool
758 nat44_ed_is_exact_address_session (snat_session_t *s)
759 {
760   return s->flags & SNAT_SESSION_FLAG_EXACT_ADDRESS;
761 }
762
763 /** \brief Check if NAT interface is inside.
764     @param i NAT interface
765     @return true if inside interface
766 */
767 always_inline bool
768 nat44_ed_is_interface_inside (snat_interface_t *i)
769 {
770   return i->flags & NAT_INTERFACE_FLAG_IS_INSIDE;
771 }
772
773 /** \brief Check if NAT interface is outside.
774     @param i NAT interface
775     @return true if outside interface
776 */
777 always_inline bool
778 nat44_ed_is_interface_outside (snat_interface_t *i)
779 {
780   return i->flags & NAT_INTERFACE_FLAG_IS_OUTSIDE;
781 }
782
783 /** \brief Check if NAT44 endpoint-dependent TCP session is closed.
784     @param s NAT session
785     @return true if session is closed
786 */
787 always_inline bool
788 nat44_is_ses_closed (snat_session_t *s)
789 {
790   return s->state == 0xf;
791 }
792
793 /** \brief Check if client initiating TCP connection (received SYN from client)
794     @param t TCP header
795     @return true if client initiating TCP connection
796 */
797 always_inline bool
798 tcp_flags_is_init (u8 f)
799 {
800   return (f & TCP_FLAG_SYN) && !(f & TCP_FLAG_ACK);
801 }
802
803 always_inline bool
804 is_sm_addr_only (u32 f)
805 {
806   return (f & NAT_SM_FLAG_ADDR_ONLY);
807 }
808
809 always_inline bool
810 is_sm_out2in_only (u32 f)
811 {
812   return (f & NAT_SM_FLAG_OUT2IN_ONLY);
813 }
814
815 always_inline bool
816 is_sm_identity_nat (u32 f)
817 {
818   return (f & NAT_SM_FLAG_IDENTITY_NAT);
819 }
820
821 always_inline bool
822 is_sm_lb (u32 f)
823 {
824   return (f & NAT_SM_FLAG_LB);
825 }
826
827 always_inline bool
828 is_sm_exact_address (u32 f)
829 {
830   return (f & NAT_SM_FLAG_EXACT_ADDRESS);
831 }
832
833 always_inline bool
834 is_sm_self_twice_nat (u32 f)
835 {
836   return (f & NAT_SM_FLAG_SELF_TWICE_NAT);
837 }
838
839 always_inline bool
840 is_sm_twice_nat (u32 f)
841 {
842   return (f & NAT_SM_FLAG_TWICE_NAT);
843 }
844
845 always_inline bool
846 is_sm_switch_address (u32 f)
847 {
848   return (f & NAT_SM_FLAG_SWITCH_ADDRESS);
849 }
850
851 /* logging */
852 #define nat_log_err(...) \
853   vlib_log(VLIB_LOG_LEVEL_ERR, snat_main.log_class, __VA_ARGS__)
854 #define nat_log_warn(...) \
855   vlib_log(VLIB_LOG_LEVEL_WARNING, snat_main.log_class, __VA_ARGS__)
856 #define nat_log_notice(...) \
857   vlib_log(VLIB_LOG_LEVEL_NOTICE, snat_main.log_class, __VA_ARGS__)
858 #define nat_log_info(...) \
859   vlib_log(VLIB_LOG_LEVEL_INFO, snat_main.log_class, __VA_ARGS__)
860 #define nat_log_debug(...)\
861   vlib_log(VLIB_LOG_LEVEL_DEBUG, snat_main.log_class, __VA_ARGS__)
862
863 clib_error_t *nat44_api_hookup (vlib_main_t *vm);
864
865 int snat_set_workers (uword *bitmap);
866
867 int nat44_plugin_enable (nat44_config_t c);
868 int nat44_plugin_disable ();
869
870 int nat44_ed_add_interface (u32 sw_if_index, u8 is_inside);
871 int nat44_ed_del_interface (u32 sw_if_index, u8 is_inside);
872 int nat44_ed_add_output_interface (u32 sw_if_index);
873 int nat44_ed_del_output_interface (u32 sw_if_index);
874
875 int nat44_ed_add_address (ip4_address_t *addr, u32 vrf_id, u8 twice_nat);
876 int nat44_ed_del_address (ip4_address_t addr, u8 delete_sm, u8 twice_nat);
877 int nat44_ed_add_interface_address (u32 sw_if_index, u8 twice_nat);
878 int nat44_ed_del_interface_address (u32 sw_if_index, u8 twice_nat);
879
880 int nat44_ed_add_static_mapping (ip4_address_t l_addr, ip4_address_t e_addr,
881                                  u16 l_port, u16 e_port, ip_protocol_t proto,
882                                  u32 vrf_id, u32 sw_if_index, u32 flags,
883                                  ip4_address_t pool_addr, u8 *tag);
884
885 int nat44_ed_del_static_mapping (ip4_address_t l_addr, ip4_address_t e_addr,
886                                  u16 l_port, u16 e_port, ip_protocol_t proto,
887                                  u32 vrf_id, u32 sw_if_index, u32 flags);
888
889 int nat44_ed_add_lb_static_mapping (ip4_address_t e_addr, u16 e_port,
890                                     ip_protocol_t proto,
891                                     nat44_lb_addr_port_t *locals, u32 flags,
892                                     u8 *tag, u32 affinity);
893
894 int nat44_ed_del_lb_static_mapping (ip4_address_t e_addr, u16 e_port,
895                                     ip_protocol_t proto, u32 flags);
896
897 int nat44_ed_add_del_lb_static_mapping_local (ip4_address_t e_addr, u16 e_port,
898                                               ip4_address_t l_addr, u16 l_port,
899                                               ip_protocol_t proto, u32 vrf_id,
900                                               u8 probability, u8 is_add);
901
902 /**
903  * @brief Delete NAT44 endpoint-dependent session
904  *
905  * @param sm     snat global configuration data
906  * @param addr   IPv4 address
907  * @param port   L4 port number
908  * @param proto  L4 protocol
909  * @param vrf_id VRF ID
910  * @param is_in  1 = inside network address and port pair, 0 = outside
911  *
912  * @return 0 on success, non-zero value otherwise
913  */
914 int nat44_ed_del_session (snat_main_t *sm, ip4_address_t *addr, u16 port,
915                           ip4_address_t *eh_addr, u16 eh_port, u8 proto,
916                           u32 vrf_id, int is_in);
917
918 void nat44_ed_free_session_data (snat_main_t *sm, snat_session_t *s,
919                                  u32 thread_index, u8 is_ha);
920
921 /**
922  * @brief Set NAT44 session limit (session limit, vrf id)
923  *
924  * @param session_limit Session limit
925  * @param vrf_id        VRF id
926  * @return 0 on success, non-zero value otherwise
927  */
928 int nat44_set_session_limit (u32 session_limit, u32 vrf_id);
929
930 /**
931  * @brief Update NAT44 session limit flushing all data (session limit, vrf id)
932  *
933  * @param session_limit Session limit
934  * @param vrf_id        VRF id
935  * @return 0 on success, non-zero value otherwise
936  */
937 int nat44_update_session_limit (u32 session_limit, u32 vrf_id);
938
939 void expire_per_vrf_sessions (u32 fib_index);
940
941 /**
942  * @brief Match NAT44 static mapping.
943  *
944  * @param key             address and port to match
945  * @param addr            external/local address of the matched mapping
946  * @param port            port of the matched mapping
947  * @param fib_index       fib index of the matched mapping
948  * @param by_external     if 0 match by local address otherwise match by external
949  *                        address
950  * @param is_addr_only    1 if matched mapping is address only
951  * @param twice_nat       matched mapping is twice NAT type
952  * @param lb              1 if matched mapping is load-balanced
953  * @param ext_host_addr   external host address
954  * @param is_identity_nat 1 if indentity mapping
955  * @param out             if !=0 set to pointer of the mapping structure
956  *
957  * @returns 0 if match found otherwise 1.
958  */
959 int snat_static_mapping_match (
960   vlib_main_t *vm, snat_main_t *sm, ip4_address_t match_addr, u16 match_port,
961   u32 match_fib_index, ip_protocol_t match_protocol,
962   ip4_address_t *mapping_addr, u16 *mapping_port, u32 *mapping_fib_index,
963   int by_external, u8 *is_addr_only, twice_nat_type_t *twice_nat,
964   lb_nat_type_t *lb, ip4_address_t *ext_host_addr, u8 *is_identity_nat,
965   snat_static_mapping_t **out);
966
967 /*
968  * Why is this here? Because we don't need to touch this layer to
969  * simply reply to an icmp. We need to change id to a unique
970  * value to NAT an echo request/reply.
971  */
972
973 typedef struct
974 {
975   u16 identifier;
976   u16 sequence;
977 } icmp_echo_header_t;
978
979 typedef struct
980 {
981   u16 src_port, dst_port;
982 } tcp_udp_header_t;
983
984 u32 get_thread_idx_by_port (u16 e_port);
985
986 u8 *format_static_mapping_kvp (u8 *s, va_list *args);
987
988 u8 *format_session_kvp (u8 *s, va_list *args);
989
990 u32 nat_calc_bihash_buckets (u32 n_elts);
991
992 void nat44_addresses_free (snat_address_t **addresses);
993
994 void nat44_ed_sessions_clear ();
995
996 int nat44_ed_set_frame_queue_nelts (u32 frame_queue_nelts);
997
998 typedef enum
999 {
1000   NAT_ED_TRNSL_ERR_SUCCESS = 0,
1001   NAT_ED_TRNSL_ERR_TRANSLATION_FAILED = 1,
1002   NAT_ED_TRNSL_ERR_FLOW_MISMATCH = 2,
1003   NAT_ED_TRNSL_ERR_PACKET_TRUNCATED = 3,
1004   NAT_ED_TRNSL_ERR_INNER_IP_CORRUPT = 4,
1005   NAT_ED_TRNSL_ERR_INVALID_CSUM = 5,
1006 } nat_translation_error_e;
1007
1008 nat_translation_error_e nat_6t_flow_buf_translate_i2o (
1009   vlib_main_t *vm, snat_main_t *sm, vlib_buffer_t *b, ip4_header_t *ip,
1010   nat_6t_flow_t *f, ip_protocol_t proto, int is_output_feature);
1011
1012 nat_translation_error_e nat_6t_flow_buf_translate_o2i (
1013   vlib_main_t *vm, snat_main_t *sm, vlib_buffer_t *b, ip4_header_t *ip,
1014   nat_6t_flow_t *f, ip_protocol_t proto, int is_output_feature);
1015
1016 void nat_6t_l3_l4_csum_calc (nat_6t_flow_t *f);
1017
1018 format_function_t format_nat_ed_translation_error;
1019 format_function_t format_nat_6t_flow;
1020 format_function_t format_ed_session_kvp;
1021
1022 snat_static_mapping_t *nat44_ed_sm_i2o_lookup (snat_main_t *sm,
1023                                                ip4_address_t addr, u16 port,
1024                                                u32 fib_index, u8 proto);
1025
1026 snat_static_mapping_t *nat44_ed_sm_o2i_lookup (snat_main_t *sm,
1027                                                ip4_address_t addr, u16 port,
1028                                                u32 fib_index, u8 proto);
1029
1030 void nat_syslog_nat44_sadd (u32 ssubix, u32 sfibix, ip4_address_t *isaddr,
1031                             u16 isport, ip4_address_t *idaddr, u16 idport,
1032                             ip4_address_t *xsaddr, u16 xsport,
1033                             ip4_address_t *xdaddr, u16 xdport, u8 proto,
1034                             u8 is_twicenat);
1035
1036 void nat_syslog_nat44_sdel (u32 ssubix, u32 sfibix, ip4_address_t *isaddr,
1037                             u16 isport, ip4_address_t *idaddr, u16 idport,
1038                             ip4_address_t *xsaddr, u16 xsport,
1039                             ip4_address_t *xdaddr, u16 xdport, u8 proto,
1040                             u8 is_twicenat);
1041
1042 #endif /* __included_nat44_ed_h__ */
1043 /*
1044  * fd.io coding-style-patch-verification: ON
1045  *
1046  * Local Variables:
1047  * eval: (c-set-style "gnu")
1048  * End:
1049  */