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