FD.io VPP  v21.01.1
Vector Packet Processing
lib.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /**
16  * @file
17  * @brief NAT port/address allocation lib
18  */
19 #ifndef included_nat_lib_h__
20 #define included_nat_lib_h__
21 
22 #include <vlibapi/api.h>
23 
24 /* NAT API Configuration flags */
25 #define foreach_nat_config_flag \
26  _(0x01, IS_TWICE_NAT) \
27  _(0x02, IS_SELF_TWICE_NAT) \
28  _(0x04, IS_OUT2IN_ONLY) \
29  _(0x08, IS_ADDR_ONLY) \
30  _(0x10, IS_OUTSIDE) \
31  _(0x20, IS_INSIDE) \
32  _(0x40, IS_STATIC) \
33  _(0x80, IS_EXT_HOST_VALID)
34 
35 typedef enum nat_config_flags_t_
36 {
37 #define _(n,f) NAT_API_##f = n,
39 #undef _
41 
42 #define foreach_nat_counter _ (tcp) _ (udp) _ (icmp) _ (other) _ (drops)
43 
44 #define foreach_nat_error \
45  _ (VALUE_EXIST, -1, "Value already exists") \
46  _ (NO_SUCH_ENTRY, -2, "No such entry") \
47  _ (UNKNOWN_PROTOCOL, -3, "Unknown protocol") \
48  _ (OUT_OF_TRANSLATIONS, -4, "Out of translations")
49 
50 typedef enum
51 {
52 #define _(N, i, s) NAT_ERROR_##N = i,
54 #undef _
55 } nat_error_t;
56 
57 #define foreach_nat_protocol \
58  _ (OTHER, 0, other, "other") \
59  _ (UDP, 1, udp, "udp") \
60  _ (TCP, 2, tcp, "tcp") \
61  _ (ICMP, 3, icmp, "icmp")
62 
63 typedef enum
64 {
65 #define _(N, i, n, s) NAT_PROTOCOL_##N = i,
67 #undef _
69 
70 /* default protocol timeouts */
71 #define NAT_UDP_TIMEOUT 300
72 #define NAT_TCP_TRANSITORY_TIMEOUT 240
73 #define NAT_TCP_ESTABLISHED_TIMEOUT 7440
74 #define NAT_ICMP_TIMEOUT 60
75 
76 typedef struct
77 {
78  struct
79  {
82  } tcp;
83 
86 
88 
91 {
92  timeouts->udp = NAT_UDP_TIMEOUT;
95  timeouts->icmp = NAT_ICMP_TIMEOUT;
96 }
97 
98 // TODO: move common formating definitions here
99 
100 #endif /* included_nat_lib_h__ */
101 /*
102  * fd.io coding-style-patch-verification: ON
103  *
104  * Local Variables:
105  * eval: (c-set-style "gnu")
106  * End:
107  */
enum nat_config_flags_t_ nat_config_flags_t
struct nat_timeouts_t::@86 tcp
#define NAT_ICMP_TIMEOUT
Definition: lib.h:74
#define NAT_TCP_TRANSITORY_TIMEOUT
Definition: lib.h:72
nat_protocol_t
Definition: lib.h:63
u32 established
Definition: lib.h:80
static_always_inline void nat_reset_timeouts(nat_timeouts_t *timeouts)
Definition: lib.h:90
#define static_always_inline
Definition: clib.h:109
unsigned int u32
Definition: types.h:88
u32 transitory
Definition: lib.h:81
nat_error_t
Definition: lib.h:50
#define foreach_nat_error
Definition: lib.h:44
#define NAT_UDP_TIMEOUT
Definition: lib.h:71
#define foreach_nat_config_flag
Definition: lib.h:25
#define NAT_TCP_ESTABLISHED_TIMEOUT
Definition: lib.h:73
#define foreach_nat_protocol
Definition: lib.h:57
nat_config_flags_t_
Definition: lib.h:35
u32 udp
Definition: lib.h:84
u32 icmp
Definition: lib.h:85