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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 * @file NAT plugin global declarations
18 #ifndef __included_nat_h__
19 #define __included_nat_h__
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 <vppinfra/bihash_8_8.h>
27 #include <vppinfra/bihash_16_8.h>
28 #include <vppinfra/dlist.h>
29 #include <vppinfra/error.h>
30 #include <vlibapi/api.h>
33 /* default session timeouts */
34 #define SNAT_UDP_TIMEOUT 300
35 #define SNAT_TCP_TRANSITORY_TIMEOUT 240
36 #define SNAT_TCP_ESTABLISHED_TIMEOUT 7440
37 #define SNAT_ICMP_TIMEOUT 60
39 /* number of worker handoff frame queue elements */
40 #define NAT_FQ_NELTS 64
42 /* NAT buffer flags */
43 #define SNAT_FLAG_HAIRPINNING (1 << 0)
45 /* session key (4-tuple) */
54 u16 protocol:3, fib_index:13;
60 /* endpoint-dependent session key (6-tuple) */
69 u32 proto:8, fib_index:24;
77 /* deterministic session outside key */
84 ip4_address_t ext_host_addr;
92 /* user (internal host) key */
111 } nat44_reass_trace_t;
113 /* External address and port allocation modes */
114 #define foreach_nat_addr_and_port_alloc_alg \
115 _(0, DEFAULT, "default") \
116 _(1, MAPE, "map-e") \
117 _(2, RANGE, "port-range")
121 #define _(v, N, s) NAT_ADDR_AND_PORT_ALLOC_ALG_##N = v,
122 foreach_nat_addr_and_port_alloc_alg
124 } nat_addr_and_port_alloc_alg_t;
127 /* Supported L4 protocols */
128 #define foreach_snat_protocol \
129 _(UDP, 0, udp, "udp") \
130 _(TCP, 1, tcp, "tcp") \
131 _(ICMP, 2, icmp, "icmp")
135 #define _(N, i, n, s) SNAT_PROTOCOL_##N = i,
136 foreach_snat_protocol
142 #define foreach_snat_session_state \
143 _(0, UNKNOWN, "unknown") \
144 _(1, UDP_ACTIVE, "udp-active") \
145 _(2, TCP_SYN_SENT, "tcp-syn-sent") \
146 _(3, TCP_ESTABLISHED, "tcp-established") \
147 _(4, TCP_FIN_WAIT, "tcp-fin-wait") \
148 _(5, TCP_CLOSE_WAIT, "tcp-close-wait") \
149 _(6, TCP_CLOSING, "tcp-closing") \
150 _(7, TCP_LAST_ACK, "tcp-last-ack") \
151 _(8, TCP_CLOSED, "tcp-closed") \
152 _(9, ICMP_ACTIVE, "icmp-active")
156 #define _(v, N, s) SNAT_SESSION_##N = v,
157 foreach_snat_session_state
159 } snat_session_state_t;
161 /* Endpoint dependent TCP session state */
162 #define NAT44_SES_I2O_FIN 1
163 #define NAT44_SES_O2I_FIN 2
164 #define NAT44_SES_I2O_FIN_ACK 4
165 #define NAT44_SES_O2I_FIN_ACK 8
166 #define NAT44_SES_I2O_SYN 16
167 #define NAT44_SES_O2I_SYN 32
168 #define NAT44_SES_RST 64
171 #define SNAT_SESSION_FLAG_STATIC_MAPPING 1
172 #define SNAT_SESSION_FLAG_UNKNOWN_PROTO 2
173 #define SNAT_SESSION_FLAG_LOAD_BALANCING 4
174 #define SNAT_SESSION_FLAG_TWICE_NAT 8
175 #define SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT 16
176 #define SNAT_SESSION_FLAG_FWD_BYPASS 32
177 #define SNAT_SESSION_FLAG_AFFINITY 64
178 #define SNAT_SESSION_FLAG_OUTPUT_FEATURE 128
180 /* NAT interface flags */
181 #define NAT_INTERFACE_FLAG_IS_INSIDE 1
182 #define NAT_INTERFACE_FLAG_IS_OUTSIDE 2
184 /* Static mapping flags */
185 #define NAT_STATIC_MAPPING_FLAG_ADDR_ONLY 1
186 #define NAT_STATIC_MAPPING_FLAG_OUT2IN_ONLY 2
187 #define NAT_STATIC_MAPPING_FLAG_IDENTITY_NAT 4
188 #define NAT_STATIC_MAPPING_FLAG_LB 8
191 typedef CLIB_PACKED(struct
193 /* Outside network key */
194 snat_session_key_t out2in;
196 /* Inside network key */
197 snat_session_key_t in2out;
202 /* Per-user translations */
204 u32 per_user_list_head_index;
206 /* Last heard timer */
209 /* Last HA refresh */
210 f64 ha_last_refreshed;
216 /* External host address and port */
217 ip4_address_t ext_host_addr;
220 /* External host address and port after translation */
221 ip4_address_t ext_host_nat_addr;
222 u16 ext_host_nat_port;
224 /* TCP session state */
239 u32 sessions_per_user_list_head_index;
249 #define _(N, i, n, s) \
250 u16 busy_##n##_ports; \
251 u16 * busy_##n##_ports_per_thread; \
252 uword * busy_##n##_port_bitmap;
253 foreach_snat_protocol
266 /* Inside network port */
268 /* Outside network address and port */
269 snat_det_out_key_t out;
274 } snat_det_session_t;
278 /* inside IP address range */
279 ip4_address_t in_addr;
281 /* outside IP address range */
282 ip4_address_t out_addr;
284 /* inside IP addresses / outside IP addresses */
286 /* number of ports available to internal host */
288 /* session counter */
290 /* vector of sessions */
291 snat_det_session_t *sessions;
296 /* backend IP address */
298 /* backend port number */
300 /* probability of the backend to be randomly matched */
303 /* backend FIB table */
306 } nat44_lb_addr_port_t;
310 /* twice-nat disabled */
312 /* twice-nat enabled */
314 /* twice-nat only when src IP equals dst IP after translation */
320 /* no load-balancing */
324 /* load-balancing with affinity */
330 /* local IP address */
331 ip4_address_t local_addr;
332 /* external IP address */
333 ip4_address_t external_addr;
339 twice_nat_type_t twice_nat;
340 /* local FIB table */
344 snat_protocol_t proto;
345 /* 0 = disabled, otherwise client IP affinity sticky time in seconds */
347 /* worker threads used by backends/local host */
349 /* opaque string tag */
351 /* backends for load-balancing mode */
352 nat44_lb_addr_port_t *locals;
353 /* affinity per service lis */
354 u32 affinity_per_service_list_head_index;
357 } snat_static_mapping_t;
367 ip4_address_t l_addr;
372 snat_protocol_t proto;
380 } snat_static_map_resolve_t;
384 /* Main lookup tables */
385 clib_bihash_8_8_t out2in;
386 clib_bihash_8_8_t in2out;
388 /* Endpoint dependent sessions lookup tables */
389 clib_bihash_16_8_t out2in_ed;
390 clib_bihash_16_8_t in2out_ed;
392 /* Find-a-user => src address lookup */
393 clib_bihash_8_8_t user_hash;
399 snat_session_t *sessions;
401 /* Pool of doubly-linked list elements */
402 dlist_elt_t *list_pool;
404 /* NAT thread index */
405 u32 snat_thread_index;
406 } snat_main_per_thread_data_t;
410 /* ICMP session match function */
411 typedef u32 (snat_icmp_match_function_t) (struct snat_main_s * sm,
412 vlib_node_runtime_t * node,
415 ip4_header_t * ip0, u8 * p_proto,
416 snat_session_key_t * p_value,
417 u8 * p_dont_translate, void *d,
420 /* Return worker thread index for given packet */
421 typedef u32 (snat_get_worker_function_t) (ip4_header_t * ip,
424 /* NAT address and port allacotaion function */
425 typedef int (nat_alloc_out_addr_and_port_function_t) (snat_address_t *
429 snat_session_key_t * k,
431 u32 snat_thread_index);
433 typedef struct snat_main_s
435 /* ICMP session match functions */
436 snat_icmp_match_function_t *icmp_match_in2out_cb;
437 snat_icmp_match_function_t *icmp_match_out2in_cb;
439 /* Thread settings */
441 u32 first_worker_index;
443 snat_get_worker_function_t *worker_in2out_cb;
444 snat_get_worker_function_t *worker_out2in_cb;
448 /* Per thread data */
449 snat_main_per_thread_data_t *per_thread_data;
451 /* Find a static mapping by local */
452 clib_bihash_8_8_t static_mapping_by_local;
454 /* Find a static mapping by external */
455 clib_bihash_8_8_t static_mapping_by_external;
457 /* Static mapping pool */
458 snat_static_mapping_t *static_mappings;
461 snat_interface_t *interfaces;
462 snat_interface_t *output_feature_interfaces;
464 /* Vector of outside addresses */
465 snat_address_t *addresses;
466 /* Address and port allocation function */
467 nat_alloc_out_addr_and_port_function_t *alloc_addr_and_port;
468 /* Address and port allocation type */
469 nat_addr_and_port_alloc_alg_t addr_and_port_alloc_alg;
470 /* Port set parameters (MAP-E) */
474 /* Port range parameters */
478 /* vector of outside fibs */
479 nat_outside_fib_t *outside_fibs;
481 /* Vector of twice NAT addresses for extenal hosts */
482 snat_address_t *twice_nat_addresses;
484 /* sw_if_indices whose intfc addresses should be auto-added */
485 u32 *auto_add_sw_if_indices;
486 u32 *auto_add_sw_if_indices_twice_nat;
488 /* vector of interface address static mappings to resolve. */
489 snat_static_map_resolve_t *to_resolve;
491 /* Randomize port allocation order */
494 /* Worker handoff frame-queue index */
496 u32 fq_in2out_output_index;
500 u32 error_node_index;
502 u32 in2out_node_index;
503 u32 in2out_output_node_index;
504 u32 in2out_fast_node_index;
505 u32 in2out_slowpath_node_index;
506 u32 in2out_slowpath_output_node_index;
507 u32 in2out_reass_node_index;
508 u32 ed_in2out_node_index;
509 u32 ed_in2out_slowpath_node_index;
510 u32 ed_in2out_reass_node_index;
511 u32 out2in_node_index;
512 u32 out2in_fast_node_index;
513 u32 out2in_reass_node_index;
514 u32 ed_out2in_node_index;
515 u32 ed_out2in_slowpath_node_index;
516 u32 ed_out2in_reass_node_index;
517 u32 det_in2out_node_index;
518 u32 det_out2in_node_index;
520 u32 hairpinning_node_index;
521 u32 hairpin_dst_node_index;
522 u32 hairpin_src_node_index;
523 u32 ed_hairpinning_node_index;
524 u32 ed_hairpin_dst_node_index;
525 u32 ed_hairpin_src_node_index;
528 /* Deterministic NAT mappings */
529 snat_det_map_t *det_maps;
531 /* If forwarding is enabled */
532 u8 forwarding_enabled;
534 /* Config parameters */
535 u8 static_mapping_only;
536 u8 static_mapping_connection_tracking;
539 u8 endpoint_dependent;
540 u32 translation_buckets;
541 u32 translation_memory_size;
542 u32 max_translations;
544 u32 user_memory_size;
545 u32 max_translations_per_user;
547 u32 outside_fib_index;
549 u32 inside_fib_index;
551 /* values of various timeouts */
553 u32 tcp_established_timeout;
554 u32 tcp_transitory_timeout;
557 /* TCP MSS clamping */
561 /* counters/gauges */
562 vlib_simple_counter_main_t total_users;
563 vlib_simple_counter_main_t total_sessions;
565 /* API message ID base */
569 vlib_log_class_t log_class;
572 vlib_main_t *vlib_main;
573 vnet_main_t *vnet_main;
574 ip4_main_t *ip4_main;
575 ip_lookup_main_t *ip4_lookup_main;
576 api_main_t *api_main;
583 } nat44_is_idle_session_ctx_t;
587 u32 cached_sw_if_index;
588 u32 cached_ip4_address;
591 extern snat_main_t snat_main;
592 extern vlib_node_registration_t snat_in2out_node;
593 extern vlib_node_registration_t snat_in2out_output_node;
594 extern vlib_node_registration_t snat_out2in_node;
595 extern vlib_node_registration_t snat_in2out_fast_node;
596 extern vlib_node_registration_t snat_out2in_fast_node;
597 extern vlib_node_registration_t snat_in2out_worker_handoff_node;
598 extern vlib_node_registration_t snat_in2out_output_worker_handoff_node;
599 extern vlib_node_registration_t snat_out2in_worker_handoff_node;
600 extern vlib_node_registration_t snat_det_in2out_node;
601 extern vlib_node_registration_t snat_det_out2in_node;
602 extern vlib_node_registration_t snat_hairpin_dst_node;
603 extern vlib_node_registration_t snat_hairpin_src_node;
604 extern vlib_node_registration_t nat44_ed_in2out_node;
605 extern vlib_node_registration_t nat44_ed_in2out_output_node;
606 extern vlib_node_registration_t nat44_ed_out2in_node;
607 extern vlib_node_registration_t nat44_ed_hairpin_dst_node;
608 extern vlib_node_registration_t nat44_ed_hairpin_src_node;
609 extern vlib_node_registration_t nat44_ed_in2out_worker_handoff_node;
610 extern vlib_node_registration_t nat44_ed_in2out_output_worker_handoff_node;
611 extern vlib_node_registration_t nat44_ed_out2in_worker_handoff_node;
613 /* format functions */
614 format_function_t format_snat_user;
615 format_function_t format_snat_static_mapping;
616 format_function_t format_snat_static_map_to_resolve;
617 format_function_t format_snat_session;
618 format_function_t format_det_map_ses;
619 format_function_t format_snat_key;
620 format_function_t format_static_mapping_key;
621 format_function_t format_snat_protocol;
622 format_function_t format_nat_addr_and_port_alloc_alg;
623 format_function_t format_nat44_reass_trace;
624 /* unformat functions */
625 unformat_function_t unformat_snat_protocol;
627 /** \brief Check if SNAT session is created from static mapping.
628 @param s SNAT session
629 @return 1 if SNAT session is created from static mapping otherwise 0
631 #define snat_is_session_static(s) (s->flags & SNAT_SESSION_FLAG_STATIC_MAPPING)
633 /** \brief Check if SNAT session for unknown protocol.
634 @param s SNAT session
635 @return 1 if SNAT session for unknown protocol otherwise 0
637 #define snat_is_unk_proto_session(s) (s->flags & SNAT_SESSION_FLAG_UNKNOWN_PROTO)
639 /** \brief Check if NAT session is twice NAT.
641 @return 1 if NAT session is twice NAT
643 #define is_twice_nat_session(s) (s->flags & SNAT_SESSION_FLAG_TWICE_NAT)
645 /** \brief Check if NAT session is load-balancing.
647 @return 1 if NAT session is load-balancing
649 #define is_lb_session(s) (s->flags & SNAT_SESSION_FLAG_LOAD_BALANCING)
651 /** \brief Check if NAT session is forwarding bypass.
653 @return 1 if NAT session is load-balancing
655 #define is_fwd_bypass_session(s) (s->flags & SNAT_SESSION_FLAG_FWD_BYPASS)
657 /** \brief Check if NAT session is endpoint dependent.
659 @return 1 if NAT session is endpoint dependent
661 #define is_ed_session(s) (s->flags & SNAT_SESSION_FLAG_ENDPOINT_DEPENDENT)
663 /** \brief Check if NAT session has affinity record.
665 @return 1 if NAT session has affinity record
667 #define is_affinity_sessions(s) (s->flags & SNAT_SESSION_FLAG_AFFINITY)
669 /** \brief Check if NAT interface is inside.
670 @param i NAT interfce
671 @return 1 if inside interface
673 #define nat_interface_is_inside(i) i->flags & NAT_INTERFACE_FLAG_IS_INSIDE
675 /** \brief Check if NAT interface is outside.
676 @param i NAT interfce
677 @return 1 if outside interface
679 #define nat_interface_is_outside(i) i->flags & NAT_INTERFACE_FLAG_IS_OUTSIDE
681 /** \brief Check if NAT44 endpoint-dependent TCP session is closed.
683 @return 1 if session is closed
685 #define nat44_is_ses_closed(s) s->state == 0xf
687 /** \brief Check if NAT static mapping is address only (1:1NAT).
688 @param sm NAT static mapping
689 @return 1 if 1:1NAT, 0 if 1:1NAPT
691 #define is_addr_only_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_ADDR_ONLY)
693 /** \brief Check if NAT static mapping match only out2in direction.
694 @param sm NAT static mapping
695 @return 1 if rule match only out2in direction
697 #define is_out2in_only_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_OUT2IN_ONLY)
699 /** \brief Check if NAT static mapping is identity NAT.
700 @param sm NAT static mapping
701 @return 1 if identity NAT
703 #define is_identity_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_IDENTITY_NAT)
705 /** \brief Check if NAT static mapping is load-balancing.
706 @param sm NAT static mapping
707 @return 1 if load-balancing
709 #define is_lb_static_mapping(sm) (sm->flags & NAT_STATIC_MAPPING_FLAG_LB)
711 /** \brief Check if client initiating TCP connection (received SYN from client)
713 @return 1 if client initiating TCP connection
715 #define tcp_is_init(t) ((t->flags & TCP_FLAG_SYN) && !(t->flags & TCP_FLAG_ACK))
718 #define nat_log_err(...) \
719 vlib_log(VLIB_LOG_LEVEL_ERR, snat_main.log_class, __VA_ARGS__)
720 #define nat_log_warn(...) \
721 vlib_log(VLIB_LOG_LEVEL_WARNING, snat_main.log_class, __VA_ARGS__)
722 #define nat_log_notice(...) \
723 vlib_log(VLIB_LOG_LEVEL_NOTICE, snat_main.log_class, __VA_ARGS__)
724 #define nat_log_info(...) \
725 vlib_log(VLIB_LOG_LEVEL_INFO, snat_main.log_class, __VA_ARGS__)
726 #define nat_log_debug(...)\
727 vlib_log(VLIB_LOG_LEVEL_DEBUG, snat_main.log_class, __VA_ARGS__)
729 /* ICMP session match functions */
730 u32 icmp_match_in2out_fast (snat_main_t * sm, vlib_node_runtime_t * node,
731 u32 thread_index, vlib_buffer_t * b0,
732 ip4_header_t * ip0, u8 * p_proto,
733 snat_session_key_t * p_value,
734 u8 * p_dont_translate, void *d, void *e);
735 u32 icmp_match_in2out_slow (snat_main_t * sm, vlib_node_runtime_t * node,
736 u32 thread_index, vlib_buffer_t * b0,
737 ip4_header_t * ip0, u8 * p_proto,
738 snat_session_key_t * p_value,
739 u8 * p_dont_translate, void *d, void *e);
740 u32 icmp_match_out2in_fast (snat_main_t * sm, vlib_node_runtime_t * node,
741 u32 thread_index, vlib_buffer_t * b0,
742 ip4_header_t * ip0, u8 * p_proto,
743 snat_session_key_t * p_value,
744 u8 * p_dont_translate, void *d, void *e);
745 u32 icmp_match_out2in_slow (snat_main_t * sm, vlib_node_runtime_t * node,
746 u32 thread_index, vlib_buffer_t * b0,
747 ip4_header_t * ip0, u8 * p_proto,
748 snat_session_key_t * p_value,
749 u8 * p_dont_translate, void *d, void *e);
751 /* ICMP deterministic NAT session match functions */
752 u32 icmp_match_out2in_det (snat_main_t * sm, vlib_node_runtime_t * node,
753 u32 thread_index, vlib_buffer_t * b0,
754 ip4_header_t * ip0, u8 * p_proto,
755 snat_session_key_t * p_value,
756 u8 * p_dont_translate, void *d, void *e);
757 u32 icmp_match_in2out_det (snat_main_t * sm, vlib_node_runtime_t * node,
758 u32 thread_index, vlib_buffer_t * b0,
759 ip4_header_t * ip0, u8 * p_proto,
760 snat_session_key_t * p_value,
761 u8 * p_dont_translate, void *d, void *e);
763 /* ICMP endpoint-dependent session match functions */
764 u32 icmp_match_out2in_ed (snat_main_t * sm, vlib_node_runtime_t * node,
765 u32 thread_index, vlib_buffer_t * b0,
766 ip4_header_t * ip0, u8 * p_proto,
767 snat_session_key_t * p_value,
768 u8 * p_dont_translate, void *d, void *e);
769 u32 icmp_match_in2out_ed (snat_main_t * sm, vlib_node_runtime_t * node,
770 u32 thread_index, vlib_buffer_t * b0,
771 ip4_header_t * ip0, u8 * p_proto,
772 snat_session_key_t * p_value,
773 u8 * p_dont_translate, void *d, void *e);
775 u32 icmp_in2out (snat_main_t * sm, vlib_buffer_t * b0, ip4_header_t * ip0,
776 icmp46_header_t * icmp0, u32 sw_if_index0, u32 rx_fib_index0,
777 vlib_node_runtime_t * node, u32 next0, u32 thread_index,
780 u32 icmp_out2in (snat_main_t * sm, vlib_buffer_t * b0, ip4_header_t * ip0,
781 icmp46_header_t * icmp0, u32 sw_if_index0, u32 rx_fib_index0,
782 vlib_node_runtime_t * node, u32 next0, u32 thread_index,
785 /* hairpinning functions */
786 u32 snat_icmp_hairpinning (snat_main_t * sm, vlib_buffer_t * b0,
787 ip4_header_t * ip0, icmp46_header_t * icmp0,
789 void nat_hairpinning_sm_unknown_proto (snat_main_t * sm, vlib_buffer_t * b,
791 void nat44_ed_hairpinning_unknown_proto (snat_main_t * sm, vlib_buffer_t * b,
793 int snat_hairpinning (snat_main_t * sm, vlib_buffer_t * b0,
794 ip4_header_t * ip0, udp_header_t * udp0,
795 tcp_header_t * tcp0, u32 proto0, int is_ed);
796 void nat44_reass_hairpinning (snat_main_t * sm, vlib_buffer_t * b0,
797 ip4_header_t * ip0, u16 sport, u16 dport,
798 u32 proto0, int is_ed);
800 /* Call back functions for clib_bihash_add_or_overwrite_stale */
801 int nat44_i2o_ed_is_idle_session_cb (clib_bihash_kv_16_8_t * kv, void *arg);
802 int nat44_o2i_ed_is_idle_session_cb (clib_bihash_kv_16_8_t * kv, void *arg);
803 int nat44_i2o_is_idle_session_cb (clib_bihash_kv_8_8_t * kv, void *arg);
804 int nat44_o2i_is_idle_session_cb (clib_bihash_kv_8_8_t * kv, void *arg);
807 * @brief Increment IPv4 address
809 void increment_v4_address (ip4_address_t * a);
812 * @brief Add external address to NAT44 pool
814 * @param addr IPv4 address
815 * @param vrf_id VRF id of tenant, ~0 means independent of VRF
816 * @param twice_nat 1 if twice NAT address
818 * @return 0 on success, non-zero value otherwise
820 int snat_add_address (snat_main_t * sm, ip4_address_t * addr, u32 vrf_id,
824 * @brief Delete external address from NAT44 pool
826 * @param addr IPv4 address
827 * @param delete_sm 1 if delete static mapping using address
828 * @param twice_nat 1 if twice NAT address
830 * @return 0 on success, non-zero value otherwise
832 int snat_del_address (snat_main_t * sm, ip4_address_t addr, u8 delete_sm,
836 * @brief Add/delete external address to FIB DPO (out2in DPO mode)
838 * @param addr IPv4 address
839 * @param is_add 1 = add, 0 = delete
841 * @return 0 on success, non-zero value otherwise
843 void nat44_add_del_address_dpo (ip4_address_t addr, u8 is_add);
846 * @brief Add/delete NAT44 static mapping
848 * @param l_addr local IPv4 address
849 * @param e_addr external IPv4 address
850 * @param l_port local port number
851 * @param e_port external port number
852 * @param vrf_id local VRF ID
853 * @param addr_only 1 = 1:1NAT, 0 = 1:1NAPT
854 * @param sw_if_index use interface address as external IPv4 address
855 * @param proto L4 protocol
856 * @param is_add 1 = add, 0 = delete
857 * @param twice_nat twice-nat mode
858 * @param out2in_only if 1 rule match only out2in direction
859 * @param tag opaque string tag
860 * @param identity_nat identity NAT
862 * @return 0 on success, non-zero value otherwise
864 int snat_add_static_mapping (ip4_address_t l_addr, ip4_address_t e_addr,
865 u16 l_port, u16 e_port, u32 vrf_id,
866 int addr_only, u32 sw_if_index,
867 snat_protocol_t proto, int is_add,
868 twice_nat_type_t twice_nat, u8 out2in_only,
869 u8 * tag, u8 identity_nat);
872 * @brief Add/delete static mapping with load-balancing (multiple backends)
874 * @param e_addr external IPv4 address
875 * @param e_port external port number
876 * @param proto L4 protocol
877 * @param locals list of local backends
878 * @param is_add 1 = add, 0 = delete
879 * @param twice_nat twice-nat mode
880 * @param out2in_only if 1 rule match only out2in direction
881 * @param tag opaque string tag
882 * @param affinity 0 = disabled, otherwise client IP affinity sticky time
884 * @return 0 on success, non-zero value otherwise
886 int nat44_add_del_lb_static_mapping (ip4_address_t e_addr, u16 e_port,
887 snat_protocol_t proto,
888 nat44_lb_addr_port_t * locals, u8 is_add,
889 twice_nat_type_t twice_nat,
890 u8 out2in_only, u8 * tag, u32 affinity);
892 int nat44_lb_static_mapping_add_del_local (ip4_address_t e_addr, u16 e_port,
893 ip4_address_t l_addr, u16 l_port,
894 snat_protocol_t proto, u32 vrf_id,
895 u8 probability, u8 is_add);
897 clib_error_t *snat_api_init (vlib_main_t * vm, snat_main_t * sm);
900 * @brief Set NAT plugin workers
902 * @param bitmap NAT workers bitmap
904 * @return 0 on success, non-zero value otherwise
906 int snat_set_workers (uword * bitmap);
909 * @brief Enable/disable NAT44 feature on the interface
911 * @param sw_if_index software index of the interface
912 * @param is_inside 1 = inside, 0 = outside
913 * @param is_del 1 = delete, 0 = add
915 * @return 0 on success, non-zero value otherwise
917 int snat_interface_add_del (u32 sw_if_index, u8 is_inside, int is_del);
920 * @brief Enable/disable NAT44 output feature on the interface (postrouting NAT)
922 * @param sw_if_index software index of the interface
923 * @param is_inside 1 = inside, 0 = outside
924 * @param is_del 1 = delete, 0 = add
926 * @return 0 on success, non-zero value otherwise
928 int snat_interface_add_del_output_feature (u32 sw_if_index, u8 is_inside,
932 * @brief Add/delete NAT44 pool address from specific interfce
934 * @param sw_if_index software index of the interface
935 * @param is_del 1 = delete, 0 = add
936 * @param twice_nat 1 = twice NAT address for extenal hosts
938 * @return 0 on success, non-zero value otherwise
940 int snat_add_interface_address (snat_main_t * sm, u32 sw_if_index, int is_del,
944 * @brief Delete NAT44 session
946 * @param addr IPv4 address
947 * @param port L4 port number
948 * @param proto L4 protocol
949 * @param vrf_id VRF ID
950 * @param is_in 1 = inside network address and port pair, 0 = outside
952 * @return 0 on success, non-zero value otherwise
954 int nat44_del_session (snat_main_t * sm, ip4_address_t * addr, u16 port,
955 snat_protocol_t proto, u32 vrf_id, int is_in);
958 * @brief Delete NAT44 endpoint-dependent session
960 * @param addr IPv4 address
961 * @param port L4 port number
962 * @param proto L4 protocol
963 * @param vrf_id VRF ID
964 * @param is_in 1 = inside network address and port pair, 0 = outside
966 * @return 0 on success, non-zero value otherwise
968 int nat44_del_ed_session (snat_main_t * sm, ip4_address_t * addr, u16 port,
969 ip4_address_t * eh_addr, u16 eh_port, u8 proto,
970 u32 vrf_id, int is_in);
973 * @brief Free NAT44 session data (lookup keys, external addrres port)
975 * @param s NAT session
976 * @param thread_index thread index
977 * @param is_ha is HA event
979 void nat_free_session_data (snat_main_t * sm, snat_session_t * s,
980 u32 thread_index, u8 is_ha);
983 * @brief Find or create NAT user
985 * @param addr IPv4 address
986 * @param fib_index FIB table index
987 * @param thread_index thread index
989 * @return NAT user data structure on success otherwise zero value
991 snat_user_t *nat_user_get_or_create (snat_main_t * sm, ip4_address_t * addr,
992 u32 fib_index, u32 thread_index);
995 * @brief Allocate new NAT session or recycle last used
998 * @param thread_index thread index
1000 * @return session data structure on success otherwise zero value
1002 snat_session_t *nat_session_alloc_or_recycle (snat_main_t * sm,
1004 u32 thread_index, f64 now);
1007 * @brief Allocate NAT endpoint-dependent session
1010 * @param thread_index thread index
1012 * @return session data structure on success otherwise zero value
1014 snat_session_t *nat_ed_session_alloc (snat_main_t * sm, snat_user_t * u,
1015 u32 thread_index, f64 now);
1018 * @brief Set address and port assignment algorithm for MAP-E CE
1020 * @param psid Port Set Identifier value
1021 * @param psid_offset number of offset bits
1022 * @param psid_length length of PSID
1024 void nat_set_alloc_addr_and_port_mape (u16 psid, u16 psid_offset,
1028 * @brief Set address and port assignment algorithm for port range
1030 * @param start_port beginning of the port range
1031 * @param end_port end of the port range
1033 void nat_set_alloc_addr_and_port_range (u16 start_port, u16 end_port);
1036 * @brief Set address and port assignment algorithm to default/standard
1038 void nat_set_alloc_addr_and_port_default (void);
1041 * @brief Free outside address and port pair
1043 * @param addresses vector of outside addresses
1044 * @param thread_index thread index
1045 * @param k address, port and protocol
1047 void snat_free_outside_address_and_port (snat_address_t * addresses,
1049 snat_session_key_t * k);
1052 * @brief Alloc outside address and port
1054 * @param addresses vector of outside addresses
1055 * @param fib_index FIB table index
1056 * @param thread_index thread index
1057 * @param k allocated address and port pair
1058 * @param port_per_thread number of ports per threead
1059 * @param snat_thread_index NAT thread index
1061 * @return 0 on success, non-zero value otherwise
1063 int snat_alloc_outside_address_and_port (snat_address_t * addresses,
1066 snat_session_key_t * k,
1067 u16 port_per_thread,
1068 u32 snat_thread_index);
1071 * @brief Match NAT44 static mapping.
1073 * @param match address and port to match
1074 * @param mapping external/local address and port of the matched mapping
1075 * @param by_external if 0 match by local address otherwise match by external
1077 * @param is_addr_only 1 if matched mapping is address only
1078 * @param twice_nat matched mapping is twice NAT type
1079 * @param lb 1 if matched mapping is load-balanced
1080 * @param ext_host_addr external host address
1082 * @returns 0 if match found otherwise 1.
1084 int snat_static_mapping_match (snat_main_t * sm,
1085 snat_session_key_t match,
1086 snat_session_key_t * mapping,
1089 twice_nat_type_t * twice_nat,
1091 ip4_address_t * ext_host_addr,
1092 u8 * is_identity_nat);
1095 * @brief Add/del NAT address to FIB.
1097 * Add the external NAT address to the FIB as receive entries. This ensures
1098 * that VPP will reply to ARP for this address and we don't need to enable
1099 * proxy ARP on the outside interface.
1101 * @param addr IPv4 address
1102 * @param plen address prefix length
1103 * @param sw_if_index software index of the outside interface
1104 * @param is_add 0 = delete, 1 = add.
1106 void snat_add_del_addr_to_fib (ip4_address_t * addr,
1107 u8 p_len, u32 sw_if_index, int is_add);
1110 * Why is this here? Because we don't need to touch this layer to
1111 * simply reply to an icmp. We need to change id to a unique
1112 * value to NAT an echo request/reply.
1119 } icmp_echo_header_t;
1123 u16 src_port, dst_port;
1126 #endif /* __included_nat_h__ */
1129 * fd.io coding-style-patch-verification: ON
1132 * eval: (c-set-style "gnu")