8ec0c62a8007f8840f7771ff5e527aed11a6d22d
[vpp.git] / src / plugins / nat / nat.h
1 /*
2  * Copyright (c) 2016 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_nat_h__
20 #define __included_nat_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/dlist.h>
32 #include <vppinfra/error.h>
33 #include <vlibapi/api.h>
34 #include <vlib/log.h>
35 #include <vppinfra/bihash_16_8.h>
36 #include <nat/lib/lib.h>
37 #include <nat/lib/inlines.h>
38
39 /* default session timeouts */
40 #define SNAT_UDP_TIMEOUT 300
41 #define SNAT_TCP_TRANSITORY_TIMEOUT 240
42 #define SNAT_TCP_ESTABLISHED_TIMEOUT 7440
43 #define SNAT_ICMP_TIMEOUT 60
44
45 /* number of worker handoff frame queue elements */
46 #define NAT_FQ_NELTS 64
47
48 /* NAT buffer flags */
49 #define SNAT_FLAG_HAIRPINNING (1 << 0)
50
51 typedef enum
52 {
53   NAT_NEXT_DROP,
54   NAT_NEXT_ICMP_ERROR,
55   NAT_NEXT_IN2OUT_ED_FAST_PATH,
56   NAT_NEXT_IN2OUT_ED_SLOW_PATH,
57   NAT_NEXT_IN2OUT_ED_OUTPUT_SLOW_PATH,
58   NAT_NEXT_OUT2IN_ED_FAST_PATH,
59   NAT_NEXT_OUT2IN_ED_SLOW_PATH,
60   NAT_NEXT_IN2OUT_CLASSIFY,
61   NAT_NEXT_OUT2IN_CLASSIFY,
62   NAT_N_NEXT,
63 } nat_next_t;
64
65 typedef struct
66 {
67   u32 next_index;
68   u32 arc_next_index;
69 } nat_pre_trace_t;
70
71 /* session key (4-tuple) */
72 typedef struct
73 {
74   union
75   {
76     struct
77     {
78       ip4_address_t addr;
79       u16 port;
80       u16 protocol:3, fib_index:13;
81     };
82     u64 as_u64;
83   };
84 } snat_session_key_t;
85
86 /* deterministic session outside key */
87 typedef struct
88 {
89   union
90   {
91     struct
92     {
93       ip4_address_t ext_host_addr;
94       u16 ext_host_port;
95       u16 out_port;
96     };
97     u64 as_u64;
98   };
99 } snat_det_out_key_t;
100
101 /* user (internal host) key */
102 typedef struct
103 {
104   union
105   {
106     struct
107     {
108       ip4_address_t addr;
109       u32 fib_index;
110     };
111     u64 as_u64;
112   };
113 } snat_user_key_t;
114
115 /* NAT API Configuration flags */
116 #define foreach_nat_config_flag \
117   _(0x01, IS_TWICE_NAT)         \
118   _(0x02, IS_SELF_TWICE_NAT)    \
119   _(0x04, IS_OUT2IN_ONLY)       \
120   _(0x08, IS_ADDR_ONLY)         \
121   _(0x10, IS_OUTSIDE)           \
122   _(0x20, IS_INSIDE)            \
123   _(0x40, IS_STATIC)            \
124   _(0x80, IS_EXT_HOST_VALID)    \
125
126 typedef enum nat_config_flags_t_
127 {
128 #define _(n,f) NAT_API_##f = n,
129   foreach_nat_config_flag
130 #undef _
131 } nat_config_flags_t;
132
133 /* External address and port allocation modes */
134 #define foreach_nat_addr_and_port_alloc_alg \
135   _(0, DEFAULT, "default")         \
136   _(1, MAPE, "map-e")              \
137   _(2, RANGE, "port-range")
138
139 typedef enum
140 {
141 #define _(v, N, s) NAT_ADDR_AND_PORT_ALLOC_ALG_##N = v,
142   foreach_nat_addr_and_port_alloc_alg
143 #undef _
144 } nat_addr_and_port_alloc_alg_t;
145
146 /* Session state */
147 #define foreach_snat_session_state          \
148   _(0, UNKNOWN, "unknown")                 \
149   _(1, UDP_ACTIVE, "udp-active")           \
150   _(2, TCP_SYN_SENT, "tcp-syn-sent")       \
151   _(3, TCP_ESTABLISHED, "tcp-established") \
152   _(4, TCP_FIN_WAIT, "tcp-fin-wait")       \
153   _(5, TCP_CLOSE_WAIT, "tcp-close-wait")   \
154   _(6, TCP_CLOSING, "tcp-closing")         \
155   _(7, TCP_LAST_ACK, "tcp-last-ack")       \
156   _(8, TCP_CLOSED, "tcp-closed")           \
157   _(9, ICMP_ACTIVE, "icmp-active")
158
159 typedef enum
160 {
161 #define _(v, N, s) SNAT_SESSION_##N = v,
162   foreach_snat_session_state
163 #undef _
164 } snat_session_state_t;
165
166 #define foreach_nat_in2out_ed_error                     \
167 _(UNSUPPORTED_PROTOCOL, "unsupported protocol")         \
168 _(IN2OUT_PACKETS, "good in2out packets processed")      \
169 _(OUT_OF_PORTS, "out of ports")                         \
170 _(BAD_ICMP_TYPE, "unsupported ICMP type")               \
171 _(MAX_SESSIONS_EXCEEDED, "maximum sessions exceeded")   \
172 _(MAX_USER_SESS_EXCEEDED, "max user sessions exceeded") \
173 _(DROP_FRAGMENT, "drop fragment")                       \
174 _(CANNOT_CREATE_USER, "cannot create NAT user")         \
175 _(NON_SYN, "non-SYN packet try to create session")      \
176 _(TCP_PACKETS, "TCP packets")                           \
177 _(TCP_CLOSED, "drops due to TCP in transitory timeout") \
178 _(UDP_PACKETS, "UDP packets")                           \
179 _(ICMP_PACKETS, "ICMP packets")                         \
180 _(OTHER_PACKETS, "other protocol packets")              \
181 _(FRAGMENTS, "fragments")                               \
182 _(CACHED_FRAGMENTS, "cached fragments")                 \
183 _(PROCESSED_FRAGMENTS, "processed fragments")
184
185 typedef enum
186 {
187 #define _(sym,str) NAT_IN2OUT_ED_ERROR_##sym,
188   foreach_nat_in2out_ed_error
189 #undef _
190     NAT_IN2OUT_ED_N_ERROR,
191 } nat_in2out_ed_error_t;
192
193 #define foreach_nat_out2in_ed_error                     \
194 _(UNSUPPORTED_PROTOCOL, "unsupported protocol")         \
195 _(OUT2IN_PACKETS, "good out2in packets processed")      \
196 _(OUT_OF_PORTS, "out of ports")                         \
197 _(BAD_ICMP_TYPE, "unsupported ICMP type")               \
198 _(NO_TRANSLATION, "no translation")                     \
199 _(MAX_SESSIONS_EXCEEDED, "maximum sessions exceeded")   \
200 _(MAX_USER_SESS_EXCEEDED, "max user sessions exceeded") \
201 _(DROP_FRAGMENT, "drop fragment")                       \
202 _(CANNOT_CREATE_USER, "cannot create NAT user")         \
203 _(NON_SYN, "non-SYN packet try to create session")      \
204 _(TCP_PACKETS, "TCP packets")                           \
205 _(TCP_CLOSED, "drops due to TCP in transitory timeout") \
206 _(UDP_PACKETS, "UDP packets")                           \
207 _(ICMP_PACKETS, "ICMP packets")                         \
208 _(OTHER_PACKETS, "other protocol packets")              \
209 _(FRAGMENTS, "fragments")                               \
210 _(CACHED_FRAGMENTS, "cached fragments")                 \
211 _(PROCESSED_FRAGMENTS, "processed fragments")
212
213 typedef enum
214 {
215 #define _(sym,str) NAT_OUT2IN_ED_ERROR_##sym,
216   foreach_nat_out2in_ed_error
217 #undef _
218     NAT_OUT2IN_ED_N_ERROR,
219 } nat_out2in_ed_error_t;
220
221
222 /* Endpoint dependent TCP session state */
223 #define NAT44_SES_I2O_FIN 1
224 #define NAT44_SES_O2I_FIN 2
225 #define NAT44_SES_I2O_FIN_ACK 4
226 #define NAT44_SES_O2I_FIN_ACK 8
227 #define NAT44_SES_I2O_SYN 16
228 #define NAT44_SES_O2I_SYN 32
229 #define NAT44_SES_RST     64
230
231 /* Session flags */
232 #define SNAT_SESSION_FLAG_STATIC_MAPPING       1
233 #define SNAT_SESSION_FLAG_UNKNOWN_PROTO        2
234 #define SNAT_SESSION_FLAG_LOAD_BALANCING       4
235 #define SNAT_SESSION_FLAG_TWICE_NAT            8
236 #define SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT   16
237 #define SNAT_SESSION_FLAG_FWD_BYPASS           32
238 #define SNAT_SESSION_FLAG_AFFINITY             64
239 #define SNAT_SESSION_FLAG_OUTPUT_FEATURE       128
240
241 /* NAT interface flags */
242 #define NAT_INTERFACE_FLAG_IS_INSIDE 1
243 #define NAT_INTERFACE_FLAG_IS_OUTSIDE 2
244
245 /* Static mapping flags */
246 #define NAT_STATIC_MAPPING_FLAG_ADDR_ONLY    1
247 #define NAT_STATIC_MAPPING_FLAG_OUT2IN_ONLY  2
248 #define NAT_STATIC_MAPPING_FLAG_IDENTITY_NAT 4
249 #define NAT_STATIC_MAPPING_FLAG_LB           8
250
251 /* *INDENT-OFF* */
252 typedef CLIB_PACKED(struct
253 {
254   /* Outside network key */
255   snat_session_key_t out2in;
256
257   /* Inside network key */
258   snat_session_key_t in2out;
259
260   /* Flags */
261   u32 flags;
262
263   /* Per-user translations */
264   u32 per_user_index;
265   u32 per_user_list_head_index;
266
267   /* head of LRU list in which this session is tracked */
268   u32 lru_head_index;
269   /* index in global LRU list */
270   u32 lru_index;
271   f64 last_lru_update;
272
273   /* Last heard timer */
274   f64 last_heard;
275
276   /* Last HA refresh */
277   f64 ha_last_refreshed;
278
279   /* Counters */
280   u64 total_bytes;
281   u32 total_pkts;
282
283   /* External host address and port */
284   ip4_address_t ext_host_addr;
285   u16 ext_host_port;
286
287   /* External host address and port after translation */
288   ip4_address_t ext_host_nat_addr;
289   u16 ext_host_nat_port;
290
291   /* TCP session state */
292   u8 state;
293   u32 i2o_fin_seq;
294   u32 o2i_fin_seq;
295   u64 tcp_closed_timestamp;
296
297   /* user index */
298   u32 user_index;
299 }) snat_session_t;
300 /* *INDENT-ON* */
301
302
303 typedef struct
304 {
305   ip4_address_t addr;
306   u32 fib_index;
307   u32 sessions_per_user_list_head_index;
308   u32 nsessions;
309   u32 nstaticsessions;
310 } snat_user_t;
311
312 typedef struct
313 {
314   ip4_address_t addr;
315   u32 fib_index;
316 /* *INDENT-OFF* */
317 #define _(N, i, n, s) \
318   u16 busy_##n##_ports; \
319   u16 * busy_##n##_ports_per_thread; \
320   u32 busy_##n##_port_refcounts[65535];
321   foreach_nat_protocol
322 #undef _
323 /* *INDENT-ON* */
324 } snat_address_t;
325
326 typedef struct
327 {
328   u32 fib_index;
329   u32 refcount;
330 } nat_outside_fib_t;
331
332 typedef struct
333 {
334   /* Inside network port */
335   u16 in_port;
336   /* Outside network address and port */
337   snat_det_out_key_t out;
338   /* Session state */
339   u8 state;
340   /* Expire timeout */
341   u32 expire;
342 } snat_det_session_t;
343
344 typedef struct
345 {
346   /* inside IP address range */
347   ip4_address_t in_addr;
348   u8 in_plen;
349   /* outside IP address range */
350   ip4_address_t out_addr;
351   u8 out_plen;
352   /* inside IP addresses / outside IP addresses */
353   u32 sharing_ratio;
354   /* number of ports available to internal host */
355   u16 ports_per_host;
356   /* session counter */
357   u32 ses_num;
358   /* vector of sessions */
359   snat_det_session_t *sessions;
360 } snat_det_map_t;
361
362 typedef struct
363 {
364   /* backend IP address */
365   ip4_address_t addr;
366   /* backend port number */
367   u16 port;
368   /* probability of the backend to be randomly matched */
369   u8 probability;
370   u8 prefix;
371   /* backend FIB table */
372   u32 vrf_id;
373   u32 fib_index;
374 } nat44_lb_addr_port_t;
375
376 typedef enum
377 {
378   /* twice-nat disabled */
379   TWICE_NAT_DISABLED,
380   /* twice-nat enabled */
381   TWICE_NAT,
382   /* twice-nat only when src IP equals dst IP after translation */
383   TWICE_NAT_SELF,
384 } twice_nat_type_t;
385
386 typedef enum
387 {
388   /* no load-balancing */
389   NO_LB_NAT,
390   /* load-balancing */
391   LB_NAT,
392   /* load-balancing with affinity */
393   AFFINITY_LB_NAT,
394 } lb_nat_type_t;
395
396 typedef struct
397 {
398   /* local IP address */
399   ip4_address_t local_addr;
400   /* external IP address */
401   ip4_address_t external_addr;
402   /* local port */
403   u16 local_port;
404   /* external port */
405   u16 external_port;
406   /* is twice-nat */
407   twice_nat_type_t twice_nat;
408   /* local FIB table */
409   u32 vrf_id;
410   u32 fib_index;
411   /* protocol */
412   nat_protocol_t proto;
413   /* 0 = disabled, otherwise client IP affinity sticky time in seconds */
414   u32 affinity;
415   /* worker threads used by backends/local host */
416   u32 *workers;
417   /* opaque string tag */
418   u8 *tag;
419   /* backends for load-balancing mode */
420   nat44_lb_addr_port_t *locals;
421   /* affinity per service lis */
422   u32 affinity_per_service_list_head_index;
423   /* flags */
424   u32 flags;
425 } snat_static_mapping_t;
426
427 typedef struct
428 {
429   u32 sw_if_index;
430   u8 flags;
431 } snat_interface_t;
432
433 typedef struct
434 {
435   ip4_address_t l_addr;
436   u16 l_port;
437   u16 e_port;
438   u32 sw_if_index;
439   u32 vrf_id;
440   nat_protocol_t proto;
441   u32 flags;
442   int addr_only;
443   int twice_nat;
444   int is_add;
445   int out2in_only;
446   int identity_nat;
447   u8 *tag;
448 } snat_static_map_resolve_t;
449
450 typedef struct
451 {
452   /* Main lookup tables */
453   clib_bihash_8_8_t out2in;
454   clib_bihash_8_8_t in2out;
455
456   /* Endpoint dependent sessions lookup tables */
457   clib_bihash_16_8_t in2out_ed;
458
459   /* Find-a-user => src address lookup */
460   clib_bihash_8_8_t user_hash;
461
462   /* User pool */
463   snat_user_t *users;
464
465   /* Session pool */
466   snat_session_t *sessions;
467
468   /* Pool of doubly-linked list elements */
469   dlist_elt_t *list_pool;
470
471   /* LRU session list - head is stale, tail is fresh */
472   dlist_elt_t *lru_pool;
473   u32 tcp_trans_lru_head_index;
474   u32 tcp_estab_lru_head_index;
475   u32 udp_lru_head_index;
476   u32 icmp_lru_head_index;
477   u32 unk_proto_lru_head_index;
478
479   /* NAT thread index */
480   u32 snat_thread_index;
481
482   /* real thread index */
483   u32 thread_index;
484
485 } snat_main_per_thread_data_t;
486
487 struct snat_main_s;
488
489 /* ICMP session match function */
490 typedef u32 (snat_icmp_match_function_t) (struct snat_main_s * sm,
491                                           vlib_node_runtime_t * node,
492                                           u32 thread_index,
493                                           vlib_buffer_t * b0,
494                                           ip4_header_t * ip0, u8 * p_proto,
495                                           snat_session_key_t * p_value,
496                                           u8 * p_dont_translate, void *d,
497                                           void *e);
498
499 /* Return worker thread index for given packet */
500 typedef u32 (snat_get_worker_in2out_function_t) (ip4_header_t * ip,
501                                                  u32 rx_fib_index,
502                                                  u8 is_output);
503
504 typedef u32 (snat_get_worker_out2in_function_t) (vlib_buffer_t * b,
505                                                  ip4_header_t * ip,
506                                                  u32 rx_fib_index,
507                                                  u8 is_output);
508
509 /* NAT address and port allocation function */
510 typedef int (nat_alloc_out_addr_and_port_function_t) (snat_address_t *
511                                                       addresses,
512                                                       u32 fib_index,
513                                                       u32 thread_index,
514                                                       snat_session_key_t * k,
515                                                       u16 port_per_thread,
516                                                       u32 snat_thread_index);
517
518
519 typedef struct snat_main_s
520 {
521   /* ICMP session match functions */
522   snat_icmp_match_function_t *icmp_match_in2out_cb;
523   snat_icmp_match_function_t *icmp_match_out2in_cb;
524
525   /* Thread settings */
526   u32 num_workers;
527   u32 first_worker_index;
528   u32 *workers;
529   snat_get_worker_in2out_function_t *worker_in2out_cb;
530   snat_get_worker_out2in_function_t *worker_out2in_cb;
531   u16 port_per_thread;
532
533   /* Per thread data */
534   snat_main_per_thread_data_t *per_thread_data;
535
536   /* Find a static mapping by local */
537   clib_bihash_8_8_t static_mapping_by_local;
538
539   /* Find a static mapping by external */
540   clib_bihash_8_8_t static_mapping_by_external;
541
542   /* Static mapping pool */
543   snat_static_mapping_t *static_mappings;
544
545   /* Endpoint-dependent out2in mappings */
546   clib_bihash_16_8_t out2in_ed;
547
548   /* Interface pool */
549   snat_interface_t *interfaces;
550   snat_interface_t *output_feature_interfaces;
551
552   /* Vector of outside addresses */
553   snat_address_t *addresses;
554   /* Address and port allocation function */
555   nat_alloc_out_addr_and_port_function_t *alloc_addr_and_port;
556   /* Address and port allocation type */
557   nat_addr_and_port_alloc_alg_t addr_and_port_alloc_alg;
558   /* Port set parameters (MAP-E) */
559   u8 psid_offset;
560   u8 psid_length;
561   u16 psid;
562   /* Port range parameters */
563   u16 start_port;
564   u16 end_port;
565
566   /* vector of outside fibs */
567   nat_outside_fib_t *outside_fibs;
568
569   /* Vector of twice NAT addresses for external hosts */
570   snat_address_t *twice_nat_addresses;
571
572   /* sw_if_indices whose intfc addresses should be auto-added */
573   u32 *auto_add_sw_if_indices;
574   u32 *auto_add_sw_if_indices_twice_nat;
575
576   /* vector of interface address static mappings to resolve. */
577   snat_static_map_resolve_t *to_resolve;
578
579   /* Randomize port allocation order */
580   u32 random_seed;
581
582   /* Worker handoff frame-queue index */
583   u32 fq_in2out_index;
584   u32 fq_in2out_output_index;
585   u32 fq_out2in_index;
586
587   /* node indexes */
588   u32 error_node_index;
589
590   /* handoff fq nodes  */
591   u32 handoff_out2in_index;
592   u32 handoff_in2out_index;
593   u32 handoff_in2out_output_index;
594
595   /* respect feature arc nodes */
596   u32 pre_out2in_node_index;
597   u32 pre_in2out_node_index;
598
599   u32 in2out_node_index;
600   u32 in2out_output_node_index;
601   u32 in2out_fast_node_index;
602   u32 in2out_slowpath_node_index;
603   u32 in2out_slowpath_output_node_index;
604   u32 ed_in2out_node_index;
605   u32 ed_in2out_slowpath_node_index;
606   u32 out2in_node_index;
607   u32 out2in_fast_node_index;
608   u32 ed_out2in_node_index;
609   u32 ed_out2in_slowpath_node_index;
610   u32 det_in2out_node_index;
611   u32 det_out2in_node_index;
612
613   u32 hairpinning_node_index;
614   u32 hairpin_dst_node_index;
615   u32 hairpin_src_node_index;
616   u32 ed_hairpinning_node_index;
617   u32 ed_hairpin_dst_node_index;
618   u32 ed_hairpin_src_node_index;
619
620
621   /* Deterministic NAT mappings */
622   snat_det_map_t *det_maps;
623
624   /* If forwarding is enabled */
625   u8 forwarding_enabled;
626
627   /* Config parameters */
628   u8 static_mapping_only;
629   u8 static_mapping_connection_tracking;
630   u8 deterministic;
631   u8 out2in_dpo;
632   u8 endpoint_dependent;
633
634   u32 translation_buckets;
635   uword translation_memory_size;
636   u32 max_translations;
637   u32 *max_translations_per_fib;
638
639   u32 user_buckets;
640   uword user_memory_size;
641   u32 max_translations_per_user;
642
643   u32 outside_vrf_id;
644   u32 outside_fib_index;
645   u32 inside_vrf_id;
646   u32 inside_fib_index;
647
648   /* values of various timeouts */
649   // proto timeouts
650   u32 udp_timeout;
651   u32 tcp_transitory_timeout;
652   u32 tcp_established_timeout;
653   u32 icmp_timeout;
654
655   /* TCP MSS clamping */
656   u16 mss_clamping;
657   u16 mss_value_net;
658
659   /* counters/gauges */
660   vlib_simple_counter_main_t total_users;
661   vlib_simple_counter_main_t total_sessions;
662
663   /* API message ID base */
664   u16 msg_id_base;
665
666   /* log class */
667   vlib_log_class_t log_class;
668   /* logging level */
669   u8 log_level;
670
671   /* convenience */
672   vnet_main_t *vnet_main;
673   ip4_main_t *ip4_main;
674   ip_lookup_main_t *ip4_lookup_main;
675   api_main_t *api_main;
676 } snat_main_t;
677
678 typedef struct
679 {
680   u32 thread_index;
681   f64 now;
682 } nat44_is_idle_session_ctx_t;
683
684 typedef struct
685 {
686   u32 cached_sw_if_index;
687   u32 cached_ip4_address;
688 } snat_runtime_t;
689
690 extern snat_main_t snat_main;
691
692 // nat pre ed next_node feature classification
693 extern vlib_node_registration_t nat_default_node;
694 extern vlib_node_registration_t nat_pre_in2out_node;
695 extern vlib_node_registration_t nat_pre_out2in_node;
696
697 extern vlib_node_registration_t snat_in2out_node;
698 extern vlib_node_registration_t snat_in2out_output_node;
699 extern vlib_node_registration_t snat_out2in_node;
700 extern vlib_node_registration_t snat_in2out_worker_handoff_node;
701 extern vlib_node_registration_t snat_in2out_output_worker_handoff_node;
702 extern vlib_node_registration_t snat_out2in_worker_handoff_node;
703 extern vlib_node_registration_t snat_det_in2out_node;
704 extern vlib_node_registration_t snat_det_out2in_node;
705 extern vlib_node_registration_t nat44_ed_in2out_node;
706 extern vlib_node_registration_t nat44_ed_in2out_output_node;
707 extern vlib_node_registration_t nat44_ed_out2in_node;
708
709 extern fib_source_t nat_fib_src_hi;
710 extern fib_source_t nat_fib_src_low;
711
712 /* format functions */
713 format_function_t format_snat_user;
714 format_function_t format_snat_static_mapping;
715 format_function_t format_snat_static_map_to_resolve;
716 format_function_t format_snat_session;
717 format_function_t format_det_map_ses;
718 format_function_t format_snat_key;
719 format_function_t format_static_mapping_key;
720 format_function_t format_nat_protocol;
721 format_function_t format_nat_addr_and_port_alloc_alg;
722 /* unformat functions */
723 unformat_function_t unformat_nat_protocol;
724
725 /** \brief Check if SNAT session is created from static mapping.
726     @param s SNAT session
727     @return 1 if SNAT session is created from static mapping otherwise 0
728 */
729 #define snat_is_session_static(s) (s->flags & SNAT_SESSION_FLAG_STATIC_MAPPING)
730
731 /** \brief Check if SNAT session for unknown protocol.
732     @param s SNAT session
733     @return 1 if SNAT session for unknown protocol otherwise 0
734 */
735 #define snat_is_unk_proto_session(s) (s->flags & SNAT_SESSION_FLAG_UNKNOWN_PROTO)
736
737 /** \brief Check if NAT session is twice NAT.
738     @param s NAT session
739     @return 1 if NAT session is twice NAT
740 */
741 #define is_twice_nat_session(s) (s->flags & SNAT_SESSION_FLAG_TWICE_NAT)
742
743 /** \brief Check if NAT session is load-balancing.
744     @param s NAT session
745     @return 1 if NAT session is load-balancing
746 */
747 #define is_lb_session(s) (s->flags & SNAT_SESSION_FLAG_LOAD_BALANCING)
748
749 /** \brief Check if NAT session is forwarding bypass.
750     @param s NAT session
751     @return 1 if NAT session is load-balancing
752 */
753 #define is_fwd_bypass_session(s) (s->flags & SNAT_SESSION_FLAG_FWD_BYPASS)
754
755 /** \brief Check if NAT session is endpoint dependent.
756     @param s NAT session
757     @return 1 if NAT session is endpoint dependent
758 */
759 #define is_ed_session(s) (s->flags & SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT)
760
761 /** \brief Check if NAT session has affinity record.
762     @param s NAT session
763     @return 1 if NAT session has affinity record
764 */
765 #define is_affinity_sessions(s) (s->flags & SNAT_SESSION_FLAG_AFFINITY)
766
767 /** \brief Check if NAT interface is inside.
768     @param i NAT interface
769     @return 1 if inside interface
770 */
771 #define nat_interface_is_inside(i) i->flags & NAT_INTERFACE_FLAG_IS_INSIDE
772
773 /** \brief Check if NAT interface is outside.
774     @param i NAT interface
775     @return 1 if outside interface
776 */
777 #define nat_interface_is_outside(i) i->flags & NAT_INTERFACE_FLAG_IS_OUTSIDE
778
779 /** \brief Check if NAT44 endpoint-dependent TCP session is closed.
780     @param s NAT session
781     @return 1 if session is closed
782 */
783 #define nat44_is_ses_closed(s) s->state == 0xf
784
785 /** \brief Check if NAT static mapping is address only (1:1NAT).
786     @param sm NAT static mapping
787     @return 1 if 1:1NAT, 0 if 1:1NAPT
788 */
789 #define is_addr_only_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_ADDR_ONLY)
790
791 /** \brief Check if NAT static mapping match only out2in direction.
792     @param sm NAT static mapping
793     @return 1 if rule match only out2in direction
794 */
795 #define is_out2in_only_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_OUT2IN_ONLY)
796
797 /** \brief Check if NAT static mapping is identity NAT.
798     @param sm NAT static mapping
799     @return 1 if identity NAT
800 */
801 #define is_identity_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_IDENTITY_NAT)
802
803 /** \brief Check if NAT static mapping is load-balancing.
804     @param sm NAT static mapping
805     @return 1 if load-balancing
806 */
807 #define is_lb_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_LB)
808
809 /** \brief Check if client initiating TCP connection (received SYN from client)
810     @param t TCP header
811     @return 1 if client initiating TCP connection
812 */
813 always_inline bool
814 tcp_flags_is_init (u8 f)
815 {
816   return (f & TCP_FLAG_SYN) && !(f & TCP_FLAG_ACK);
817 }
818
819 /* logging */
820 #define nat_log_err(...) \
821   vlib_log(VLIB_LOG_LEVEL_ERR, snat_main.log_class, __VA_ARGS__)
822 #define nat_log_warn(...) \
823   vlib_log(VLIB_LOG_LEVEL_WARNING, snat_main.log_class, __VA_ARGS__)
824 #define nat_log_notice(...) \
825   vlib_log(VLIB_LOG_LEVEL_NOTICE, snat_main.log_class, __VA_ARGS__)
826 #define nat_log_info(...) \
827   vlib_log(VLIB_LOG_LEVEL_INFO, snat_main.log_class, __VA_ARGS__)
828 #define nat_log_debug(...)\
829   vlib_log(VLIB_LOG_LEVEL_DEBUG, snat_main.log_class, __VA_ARGS__)
830
831 /* NAT API Logging Levels */
832 #define foreach_nat_log_level \
833   _(0x00, LOG_NONE)           \
834   _(0x01, LOG_ERROR)          \
835   _(0x02, LOG_WARNING)        \
836   _(0x03, LOG_NOTICE)         \
837   _(0x04, LOG_INFO)           \
838   _(0x05, LOG_DEBUG)
839
840 typedef enum nat_log_level_t_
841 {
842 #define _(n,f) SNAT_##f = n,
843   foreach_nat_log_level
844 #undef _
845 } nat_log_level_t;
846
847 #define nat_elog(_level, _str)                           \
848 do                                                       \
849   {                                                      \
850     snat_main_t *sm = &snat_main;                        \
851     if (PREDICT_FALSE (sm->log_level >= _level))         \
852       {                                                  \
853         ELOG_TYPE_DECLARE (e) =                          \
854           {                                              \
855             .format = "nat-msg " _str,                   \
856             .format_args = "",                           \
857           };                                             \
858         ELOG_DATA (&vlib_global_main.elog_main, e);      \
859       }                                                  \
860   } while (0);
861
862 #define nat_elog_addr(_level, _str, _addr)               \
863 do                                                       \
864   {                                                      \
865     if (PREDICT_FALSE (sm->log_level >= _level))         \
866       {                                                  \
867         ELOG_TYPE_DECLARE (e) =                          \
868           {                                              \
869             .format = "nat-msg " _str " %d.%d.%d.%d",    \
870             .format_args = "i1i1i1i1",                   \
871           };                                             \
872         CLIB_PACKED(struct                               \
873           {                                              \
874             u8 oct1;                                     \
875             u8 oct2;                                     \
876             u8 oct3;                                     \
877             u8 oct4;                                     \
878           }) *ed;                                        \
879         ed = ELOG_DATA (&vlib_global_main.elog_main, e); \
880         ed->oct4 = _addr >> 24;                          \
881         ed->oct3 = _addr >> 16;                          \
882         ed->oct2 = _addr >> 8;                           \
883         ed->oct1 = _addr;                                \
884     }                                                    \
885   } while (0);
886
887 #define nat_elog_debug_handoff(_str, _tid, _fib, _src, _dst)                \
888 do                                                                          \
889   {                                                                         \
890   if (PREDICT_FALSE (sm->log_level >= SNAT_LOG_DEBUG))                      \
891     {                                                                       \
892       ELOG_TYPE_DECLARE (e) =                                               \
893         {                                                                   \
894           .format = "nat-msg " _str " ip src: %d.%d.%d.%d dst: %d.%d.%d.%d" \
895                                     " tid from: %d to: %d fib: %d",         \
896         .format_args = "i1i1i1i1i1i1i1i1i4i4i4",                            \
897       };                                                                    \
898       CLIB_PACKED(struct                                                    \
899         {                                                                   \
900           u8 src_oct1;                                                      \
901           u8 src_oct2;                                                      \
902           u8 src_oct3;                                                      \
903           u8 src_oct4;                                                      \
904           u8 dst_oct1;                                                      \
905           u8 dst_oct2;                                                      \
906           u8 dst_oct3;                                                      \
907           u8 dst_oct4;                                                      \
908           u32 ftid;                                                         \
909           u32 ttid;                                                         \
910           u32 fib;                                                          \
911         }) *ed;                                                             \
912       ed = ELOG_DATA (&vlib_global_main.elog_main, e);                      \
913       ed->src_oct1 = _src >> 24;                                            \
914       ed->src_oct2 = _src >> 16;                                            \
915       ed->src_oct3 = _src >> 8;                                             \
916       ed->src_oct4 = _src;                                                  \
917       ed->dst_oct1 = _dst >> 24;                                            \
918       ed->dst_oct2 = _dst >> 16;                                            \
919       ed->dst_oct3 = _dst >> 8;                                             \
920       ed->dst_oct4 = _dst;                                                  \
921       ed->ftid = vlib_get_thread_index ();                                  \
922       ed->ttid = _tid;                                                      \
923       ed->fib = _fib;                                                       \
924     }                                                                       \
925   } while (0);
926
927 #define nat_elog_debug_handoff_v2(_str, _prt, _fib, _src, _dst)              \
928 do                                                                           \
929   {                                                                          \
930   if (PREDICT_FALSE (sm->log_level >= SNAT_LOG_DEBUG))                       \
931     {                                                                        \
932       ELOG_TYPE_DECLARE (e) =                                                \
933         {                                                                    \
934           .format = "nat-msg " _str " ip_src:%d.%d.%d.%d ip_dst:%d.%d.%d.%d" \
935                                     " tid:%d prt:%d fib:%d",                 \
936         .format_args = "i1i1i1i1i1i1i1i1i4i4i4",                             \
937       };                                                                     \
938       CLIB_PACKED(struct                                                     \
939         {                                                                    \
940           u8 src_oct1;                                                       \
941           u8 src_oct2;                                                       \
942           u8 src_oct3;                                                       \
943           u8 src_oct4;                                                       \
944           u8 dst_oct1;                                                       \
945           u8 dst_oct2;                                                       \
946           u8 dst_oct3;                                                       \
947           u8 dst_oct4;                                                       \
948           u32 tid;                                                           \
949           u32 prt;                                                           \
950           u32 fib;                                                           \
951         }) *ed;                                                              \
952       ed = ELOG_DATA (&vlib_global_main.elog_main, e);                       \
953       ed->src_oct1 = _src >> 24;                                             \
954       ed->src_oct2 = _src >> 16;                                             \
955       ed->src_oct3 = _src >> 8;                                              \
956       ed->src_oct4 = _src;                                                   \
957       ed->dst_oct1 = _dst >> 24;                                             \
958       ed->dst_oct2 = _dst >> 16;                                             \
959       ed->dst_oct3 = _dst >> 8;                                              \
960       ed->dst_oct4 = _dst;                                                   \
961       ed->tid = vlib_get_thread_index ();                                    \
962       ed->prt = _prt;                                                        \
963       ed->fib = _fib;                                                        \
964     }                                                                        \
965   } while (0);
966
967 #define nat_elog_X1(_level, _fmt, _arg, _val1)            \
968 do                                                        \
969   {                                                       \
970     snat_main_t *sm = &snat_main;                         \
971     if (PREDICT_FALSE (sm->log_level >= _level))          \
972       {                                                   \
973         ELOG_TYPE_DECLARE (e) =                           \
974           {                                               \
975             .format = "nat-msg " _fmt,                    \
976             .format_args = _arg,                          \
977           };                                              \
978         CLIB_PACKED(struct                                \
979           {                                               \
980             typeof (_val1) val1;                          \
981           }) *ed;                                         \
982         ed = ELOG_DATA (&vlib_global_main.elog_main, e);  \
983         ed->val1 = _val1;                                 \
984       }                                                   \
985   } while (0);
986
987 #define nat_elog_notice(nat_elog_str) \
988   nat_elog(SNAT_LOG_INFO, "[notice] " nat_elog_str)
989 #define nat_elog_warn(nat_elog_str) \
990   nat_elog(SNAT_LOG_WARNING, "[warning] " nat_elog_str)
991 #define nat_elog_err(nat_elog_str) \
992   nat_elog(SNAT_LOG_ERROR, "[error] " nat_elog_str)
993 #define nat_elog_debug(nat_elog_str) \
994   nat_elog(SNAT_LOG_DEBUG, "[debug] " nat_elog_str)
995 #define nat_elog_info(nat_elog_str) \
996   nat_elog(SNAT_LOG_INFO, "[info] " nat_elog_str)
997
998 #define nat_elog_notice_X1(nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1) \
999   nat_elog_X1(SNAT_LOG_NOTICE, "[notice] " nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1)
1000 #define nat_elog_warn_X1(nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1) \
1001   nat_elog_X1(SNAT_LOG_WARNING, "[warning] " nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1)
1002 #define nat_elog_err_X1(nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1) \
1003   nat_elog_X1(SNAT_LOG_ERROR, "[error] " nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1)
1004 #define nat_elog_debug_X1(nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1) \
1005   nat_elog_X1(SNAT_LOG_DEBUG, "[debug] " nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1)
1006 #define nat_elog_info_X1(nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1) \
1007   nat_elog_X1(SNAT_LOG_INFO, "[info] " nat_elog_fmt_str, nat_elog_fmt_arg, nat_elog_val1)
1008
1009 /* ICMP session match functions */
1010 u32 icmp_match_in2out_fast (snat_main_t * sm, vlib_node_runtime_t * node,
1011                             u32 thread_index, vlib_buffer_t * b0,
1012                             ip4_header_t * ip0, u8 * p_proto,
1013                             snat_session_key_t * p_value,
1014                             u8 * p_dont_translate, void *d, void *e);
1015 u32 icmp_match_in2out_slow (snat_main_t * sm, vlib_node_runtime_t * node,
1016                             u32 thread_index, vlib_buffer_t * b0,
1017                             ip4_header_t * ip0, u8 * p_proto,
1018                             snat_session_key_t * p_value,
1019                             u8 * p_dont_translate, void *d, void *e);
1020 u32 icmp_match_out2in_fast (snat_main_t * sm, vlib_node_runtime_t * node,
1021                             u32 thread_index, vlib_buffer_t * b0,
1022                             ip4_header_t * ip0, u8 * p_proto,
1023                             snat_session_key_t * p_value,
1024                             u8 * p_dont_translate, void *d, void *e);
1025 u32 icmp_match_out2in_slow (snat_main_t * sm, vlib_node_runtime_t * node,
1026                             u32 thread_index, vlib_buffer_t * b0,
1027                             ip4_header_t * ip0, u8 * p_proto,
1028                             snat_session_key_t * p_value,
1029                             u8 * p_dont_translate, void *d, void *e);
1030
1031 /* ICMP deterministic NAT session match functions */
1032 u32 icmp_match_out2in_det (snat_main_t * sm, vlib_node_runtime_t * node,
1033                            u32 thread_index, vlib_buffer_t * b0,
1034                            ip4_header_t * ip0, u8 * p_proto,
1035                            snat_session_key_t * p_value,
1036                            u8 * p_dont_translate, void *d, void *e);
1037 u32 icmp_match_in2out_det (snat_main_t * sm, vlib_node_runtime_t * node,
1038                            u32 thread_index, vlib_buffer_t * b0,
1039                            ip4_header_t * ip0, u8 * p_proto,
1040                            snat_session_key_t * p_value,
1041                            u8 * p_dont_translate, void *d, void *e);
1042
1043 /* ICMP endpoint-dependent session match functions */
1044 u32 icmp_match_out2in_ed (snat_main_t * sm, vlib_node_runtime_t * node,
1045                           u32 thread_index, vlib_buffer_t * b0,
1046                           ip4_header_t * ip0, u8 * p_proto,
1047                           snat_session_key_t * p_value,
1048                           u8 * p_dont_translate, void *d, void *e);
1049 u32 icmp_match_in2out_ed (snat_main_t * sm, vlib_node_runtime_t * node,
1050                           u32 thread_index, vlib_buffer_t * b0,
1051                           ip4_header_t * ip0, u8 * p_proto,
1052                           snat_session_key_t * p_value,
1053                           u8 * p_dont_translate, void *d, void *e);
1054
1055 u32 icmp_in2out (snat_main_t * sm, vlib_buffer_t * b0, ip4_header_t * ip0,
1056                  icmp46_header_t * icmp0, u32 sw_if_index0, u32 rx_fib_index0,
1057                  vlib_node_runtime_t * node, u32 next0, u32 thread_index,
1058                  void *d, void *e);
1059
1060 u32 icmp_out2in (snat_main_t * sm, vlib_buffer_t * b0, ip4_header_t * ip0,
1061                  icmp46_header_t * icmp0, u32 sw_if_index0, u32 rx_fib_index0,
1062                  vlib_node_runtime_t * node, u32 next0, u32 thread_index,
1063                  void *d, void *e);
1064
1065 /* hairpinning functions */
1066 u32 snat_icmp_hairpinning (snat_main_t * sm, vlib_buffer_t * b0,
1067                            ip4_header_t * ip0, icmp46_header_t * icmp0,
1068                            int is_ed);
1069 void nat_hairpinning_sm_unknown_proto (snat_main_t * sm, vlib_buffer_t * b,
1070                                        ip4_header_t * ip);
1071 void nat44_ed_hairpinning_unknown_proto (snat_main_t * sm, vlib_buffer_t * b,
1072                                          ip4_header_t * ip);
1073 int snat_hairpinning (snat_main_t * sm, vlib_buffer_t * b0,
1074                       ip4_header_t * ip0, udp_header_t * udp0,
1075                       tcp_header_t * tcp0, u32 proto0, int is_ed);
1076
1077 /* Call back functions for clib_bihash_add_or_overwrite_stale */
1078 int nat44_i2o_ed_is_idle_session_cb (clib_bihash_kv_16_8_t * kv, void *arg);
1079 int nat44_o2i_ed_is_idle_session_cb (clib_bihash_kv_16_8_t * kv, void *arg);
1080 int nat44_i2o_is_idle_session_cb (clib_bihash_kv_8_8_t * kv, void *arg);
1081 int nat44_o2i_is_idle_session_cb (clib_bihash_kv_8_8_t * kv, void *arg);
1082
1083 /**
1084  * @brief Add external address to NAT44 pool
1085  *
1086  * @param sm        snat global configuration data
1087  * @param addr      IPv4 address
1088  * @param vrf_id    VRF id of tenant, ~0 means independent of VRF
1089  * @param twice_nat 1 if twice NAT address
1090  *
1091  * @return 0 on success, non-zero value otherwise
1092  */
1093 int snat_add_address (snat_main_t * sm, ip4_address_t * addr, u32 vrf_id,
1094                       u8 twice_nat);
1095
1096 /**
1097  * @brief Delete external address from NAT44 pool
1098  *
1099  * @param sm        snat global configuration data
1100  * @param addr      IPv4 address
1101  * @param delete_sm 1 if delete static mapping using address
1102  * @param twice_nat 1 if twice NAT address
1103  *
1104  * @return 0 on success, non-zero value otherwise
1105  */
1106 int snat_del_address (snat_main_t * sm, ip4_address_t addr, u8 delete_sm,
1107                       u8 twice_nat);
1108
1109 /**
1110  * @brief Add/delete external address to FIB DPO (out2in DPO mode)
1111  *
1112  * @param addr   IPv4 address
1113  * @param is_add 1 = add, 0 = delete
1114  *
1115  * @return 0 on success, non-zero value otherwise
1116  */
1117 void nat44_add_del_address_dpo (ip4_address_t addr, u8 is_add);
1118
1119 /**
1120  * @brief Add/delete NAT44 static mapping
1121  *
1122  * @param l_addr       local IPv4 address
1123  * @param e_addr       external IPv4 address
1124  * @param l_port       local port number
1125  * @param e_port       external port number
1126  * @param vrf_id       local VRF ID
1127  * @param addr_only    1 = 1:1NAT, 0 = 1:1NAPT
1128  * @param sw_if_index  use interface address as external IPv4 address
1129  * @param proto        L4 protocol
1130  * @param is_add       1 = add, 0 = delete
1131  * @param twice_nat    twice-nat mode
1132  * @param out2in_only  if 1 rule match only out2in direction
1133  * @param tag          opaque string tag
1134  * @param identity_nat identity NAT
1135  *
1136  * @return 0 on success, non-zero value otherwise
1137  */
1138 int snat_add_static_mapping (ip4_address_t l_addr, ip4_address_t e_addr,
1139                              u16 l_port, u16 e_port, u32 vrf_id,
1140                              int addr_only, u32 sw_if_index,
1141                              nat_protocol_t proto, int is_add,
1142                              twice_nat_type_t twice_nat, u8 out2in_only,
1143                              u8 * tag, u8 identity_nat);
1144
1145 /**
1146  * @brief Add/delete static mapping with load-balancing (multiple backends)
1147  *
1148  * @param e_addr      external IPv4 address
1149  * @param e_port      external port number
1150  * @param proto       L4 protocol
1151  * @param locals      list of local backends
1152  * @param is_add      1 = add, 0 = delete
1153  * @param twice_nat   twice-nat mode
1154  * @param out2in_only if 1 rule match only out2in direction
1155  * @param tag         opaque string tag
1156  * @param affinity    0 = disabled, otherwise client IP affinity sticky time
1157  *
1158  * @return 0 on success, non-zero value otherwise
1159  */
1160 int nat44_add_del_lb_static_mapping (ip4_address_t e_addr, u16 e_port,
1161                                      nat_protocol_t proto,
1162                                      nat44_lb_addr_port_t * locals, u8 is_add,
1163                                      twice_nat_type_t twice_nat,
1164                                      u8 out2in_only, u8 * tag, u32 affinity);
1165
1166 int nat44_lb_static_mapping_add_del_local (ip4_address_t e_addr, u16 e_port,
1167                                            ip4_address_t l_addr, u16 l_port,
1168                                            nat_protocol_t proto, u32 vrf_id,
1169                                            u8 probability, u8 is_add);
1170
1171 clib_error_t *snat_api_init (vlib_main_t * vm, snat_main_t * sm);
1172
1173 /**
1174  * @brief Set NAT plugin workers
1175  *
1176  * @param bitmap NAT workers bitmap
1177  *
1178  * @return 0 on success, non-zero value otherwise
1179  */
1180 int snat_set_workers (uword * bitmap);
1181
1182 /**
1183  * @brief Enable/disable NAT44 feature on the interface
1184  *
1185  * @param sw_if_index software index of the interface
1186  * @param is_inside   1 = inside, 0 = outside
1187  * @param is_del      1 = delete, 0 = add
1188  *
1189  * @return 0 on success, non-zero value otherwise
1190  */
1191 int snat_interface_add_del (u32 sw_if_index, u8 is_inside, int is_del);
1192
1193 /**
1194  * @brief Enable/disable NAT44 output feature on the interface (postrouting NAT)
1195  *
1196  * @param sw_if_index software index of the interface
1197  * @param is_inside   1 = inside, 0 = outside
1198  * @param is_del      1 = delete, 0 = add
1199  *
1200  * @return 0 on success, non-zero value otherwise
1201  */
1202 int snat_interface_add_del_output_feature (u32 sw_if_index, u8 is_inside,
1203                                            int is_del);
1204
1205 /**
1206  * @brief Add/delete NAT44 pool address from specific interface
1207  *
1208  * @param sw_if_index software index of the interface
1209  * @param is_del      1 = delete, 0 = add
1210  * @param twice_nat   1 = twice NAT address for external hosts
1211  *
1212  * @return 0 on success, non-zero value otherwise
1213  */
1214 int snat_add_interface_address (snat_main_t * sm, u32 sw_if_index, int is_del,
1215                                 u8 twice_nat);
1216
1217 /**
1218  * @brief Delete NAT44 session
1219  *
1220  * @param addr   IPv4 address
1221  * @param port   L4 port number
1222  * @param proto  L4 protocol
1223  * @param vrf_id VRF ID
1224  * @param is_in  1 = inside network address and port pair, 0 = outside
1225  *
1226  * @return 0 on success, non-zero value otherwise
1227  */
1228 int nat44_del_session (snat_main_t * sm, ip4_address_t * addr, u16 port,
1229                        nat_protocol_t proto, u32 vrf_id, int is_in);
1230
1231 /**
1232  * @brief Delete NAT44 endpoint-dependent session
1233  *
1234  * @param sm     snat global configuration data
1235  * @param addr   IPv4 address
1236  * @param port   L4 port number
1237  * @param proto  L4 protocol
1238  * @param vrf_id VRF ID
1239  * @param is_in  1 = inside network address and port pair, 0 = outside
1240  *
1241  * @return 0 on success, non-zero value otherwise
1242  */
1243 int nat44_del_ed_session (snat_main_t * sm, ip4_address_t * addr, u16 port,
1244                           ip4_address_t * eh_addr, u16 eh_port, u8 proto,
1245                           u32 vrf_id, int is_in);
1246
1247 /**
1248  * @brief Free NAT44 session data (lookup keys, external address port)
1249  *
1250  * @param sm           snat global configuration data
1251  * @param s            NAT session
1252  * @param thread_index thread index
1253  * @param is_ha        is HA event
1254  */
1255 void nat_free_session_data (snat_main_t * sm, snat_session_t * s,
1256                             u32 thread_index, u8 is_ha);
1257
1258 /**
1259  * @brief Set NAT44 session limit (session limit, vrf id)
1260  *
1261  * @param session_limit Session limit
1262  * @param vrf_id        VRF id
1263  * @return 0 on success, non-zero value otherwise
1264  */
1265 int nat44_set_session_limit (u32 session_limit, u32 vrf_id);
1266
1267 /**
1268  * @brief Free NAT44 ED session data (lookup keys, external address port)
1269  *
1270  * @param s            NAT session
1271  * @param thread_index thread index
1272  * @param is_ha        is HA event
1273  */
1274 void
1275 nat44_free_session_data (snat_main_t * sm, snat_session_t * s,
1276                          u32 thread_index, u8 is_ha);
1277
1278 /**
1279  * @brief Initialize NAT44 data
1280  *
1281  * @param tsm          per thread data
1282  */
1283 void nat44_db_init (snat_main_per_thread_data_t * tsm);
1284
1285 /**
1286  * @brief Free NAT44 data
1287  *
1288  * @param tsm          per thread data
1289  */
1290 void nat44_db_free (snat_main_per_thread_data_t * tsm);
1291
1292 void nat44_sessions_clear ();
1293
1294 /**
1295  * @brief Find or create NAT user
1296  *
1297  * @param sm           snat global configuration data
1298  * @param addr         IPv4 address
1299  * @param fib_index    FIB table index
1300  * @param thread_index thread index
1301  *
1302  * @return NAT user data structure on success otherwise zero value
1303  */
1304 snat_user_t *nat_user_get_or_create (snat_main_t * sm,
1305                                      ip4_address_t * addr, u32 fib_index,
1306                                      u32 thread_index);
1307
1308 /**
1309  * @brief Allocate new NAT session or recycle last used
1310  *
1311  * @param sm           snat global configuration data
1312  * @param u            NAT user
1313  * @param thread_index thread index
1314  * @param now          time now
1315  *
1316  * @return session data structure on success otherwise zero value
1317  */
1318 snat_session_t *nat_session_alloc_or_recycle (snat_main_t * sm,
1319                                               snat_user_t * u,
1320                                               u32 thread_index, f64 now);
1321
1322 /**
1323  * @brief Set address and port assignment algorithm for MAP-E CE
1324  *
1325  * @param psid        Port Set Identifier value
1326  * @param psid_offset number of offset bits
1327  * @param psid_length length of PSID
1328  */
1329 void nat_set_alloc_addr_and_port_mape (u16 psid, u16 psid_offset,
1330                                        u16 psid_length);
1331
1332 /**
1333  * @brief Set address and port assignment algorithm for port range
1334  *
1335  * @param start_port beginning of the port range
1336  * @param end_port   end of the port range
1337  */
1338 void nat_set_alloc_addr_and_port_range (u16 start_port, u16 end_port);
1339
1340 /**
1341  * @brief Set address and port assignment algorithm to default/standard
1342  */
1343 void nat_set_alloc_addr_and_port_default (void);
1344
1345 /**
1346  * @brief Free outside address and port pair
1347  *
1348  * @param addresses    vector of outside addresses
1349  * @param thread_index thread index
1350  * @param k            address, port and protocol
1351  */
1352 void snat_free_outside_address_and_port (snat_address_t * addresses,
1353                                          u32 thread_index,
1354                                          snat_session_key_t * k);
1355
1356 /**
1357  * @brief Alloc outside address and port
1358  *
1359  * @param addresses         vector of outside addresses
1360  * @param fib_index         FIB table index
1361  * @param thread_index      thread index
1362  * @param k                 allocated address and port pair
1363  * @param port_per_thread   number of ports per thread
1364  * @param snat_thread_index NAT thread index
1365  *
1366  * @return 0 on success, non-zero value otherwise
1367  */
1368 int snat_alloc_outside_address_and_port (snat_address_t * addresses,
1369                                          u32 fib_index,
1370                                          u32 thread_index,
1371                                          snat_session_key_t * k,
1372                                          u16 port_per_thread,
1373                                          u32 snat_thread_index);
1374
1375 /**
1376  * @brief Match NAT44 static mapping.
1377  *
1378  * @param match         address and port to match
1379  * @param mapping       external/local address and port of the matched mapping
1380  * @param by_external   if 0 match by local address otherwise match by external
1381  *                      address
1382  * @param is_addr_only  1 if matched mapping is address only
1383  * @param twice_nat     matched mapping is twice NAT type
1384  * @param lb            1 if matched mapping is load-balanced
1385  * @param ext_host_addr external host address
1386  *
1387  * @returns 0 if match found otherwise 1.
1388  */
1389 int snat_static_mapping_match (snat_main_t * sm,
1390                                snat_session_key_t match,
1391                                snat_session_key_t * mapping,
1392                                u8 by_external,
1393                                u8 * is_addr_only,
1394                                twice_nat_type_t * twice_nat,
1395                                lb_nat_type_t * lb,
1396                                ip4_address_t * ext_host_addr,
1397                                u8 * is_identity_nat);
1398
1399 /**
1400  * @brief Add/del NAT address to FIB.
1401  *
1402  * Add the external NAT address to the FIB as receive entries. This ensures
1403  * that VPP will reply to ARP for this address and we don't need to enable
1404  * proxy ARP on the outside interface.
1405  *
1406  * @param addr        IPv4 address
1407  * @param plen        address prefix length
1408  * @param sw_if_index software index of the outside interface
1409  * @param is_add      0 = delete, 1 = add.
1410  */
1411 void snat_add_del_addr_to_fib (ip4_address_t * addr,
1412                                u8 p_len, u32 sw_if_index, int is_add);
1413
1414 /*
1415  * Why is this here? Because we don't need to touch this layer to
1416  * simply reply to an icmp. We need to change id to a unique
1417  * value to NAT an echo request/reply.
1418  */
1419
1420 typedef struct
1421 {
1422   u16 identifier;
1423   u16 sequence;
1424 } icmp_echo_header_t;
1425
1426 typedef struct
1427 {
1428   u16 src_port, dst_port;
1429 } tcp_udp_header_t;
1430
1431 u8 *format_user_kvp (u8 * s, va_list * args);
1432 #endif /* __included_nat_h__ */
1433 /*
1434  * fd.io coding-style-patch-verification: ON
1435  *
1436  * Local Variables:
1437  * eval: (c-set-style "gnu")
1438  * End:
1439  */