5cc84c42ccd378d8f61e6b66a5e05aae35e61e6e
[vpp.git] / src / plugins / cnat / cnat_node_snat.c
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 #include <vlibmemory/api.h>
17 #include <cnat/cnat_node.h>
18 #include <cnat/cnat_snat.h>
19 #include <cnat/cnat_inline.h>
20 #include <cnat/cnat_src_policy.h>
21
22 typedef enum cnat_snat_next_
23 {
24   CNAT_SNAT_NEXT_DROP,
25   CNAT_SNAT_N_NEXT,
26 } cnat_snat_next_t;
27
28 vlib_node_registration_t cnat_snat_ip4_node;
29 vlib_node_registration_t cnat_snat_ip6_node;
30
31 /* CNat sub for source NAT as a feature arc on ip[46]-unicast
32    This node's sub shouldn't apply to the same flows as
33    cnat_vip_inline */
34 static uword
35 cnat_snat_node_fn (vlib_main_t *vm, vlib_node_runtime_t *node,
36                    vlib_buffer_t *b, cnat_node_ctx_t *ctx,
37                    int session_not_found, cnat_session_t *session)
38 {
39   cnat_main_t *cm = &cnat_main;
40   ip4_header_t *ip4 = NULL;
41   ip_protocol_t iproto;
42   ip6_header_t *ip6 = NULL;
43   udp_header_t *udp0;
44   u32 arc_next0;
45   u16 next0;
46   u16 sport;
47   u8 trace_flags = 0;
48   int rv;
49
50   if (AF_IP4 == ctx->af)
51     {
52       ip4 = vlib_buffer_get_current (b);
53       iproto = ip4->protocol;
54       udp0 = (udp_header_t *) (ip4 + 1);
55     }
56   else
57     {
58       ip6 = vlib_buffer_get_current (b);
59       iproto = ip6->protocol;
60       udp0 = (udp_header_t *) (ip6 + 1);
61     }
62
63   /* By default don't follow previous next0 */
64   vnet_feature_next (&arc_next0, b);
65   next0 = arc_next0;
66
67   /* Wrong session key */
68   if (session->key.cs_proto == 0)
69     goto trace;
70
71   if (!session_not_found)
72     {
73       /* session table hit */
74       cnat_timestamp_update (session->value.cs_ts_index, ctx->now);
75     }
76   else
77     {
78       ip46_address_t ip46_dst_address;
79       if (AF_IP4 == ctx->af)
80         ip46_address_set_ip4 (&ip46_dst_address, &ip4->dst_address);
81       else
82         ip46_address_set_ip6 (&ip46_dst_address, &ip6->dst_address);
83       rv = cnat_search_snat_prefix (&ip46_dst_address, ctx->af);
84       if (!rv)
85         {
86           /* Prefix table hit, we shouldn't source NAT */
87           goto trace;
88         }
89       /* New flow, create the sessions if necessary. session will be a snat
90          session, and rsession will be a dnat session
91          Note: packet going through this path are going to the outside,
92          so they will never hit the NAT again (they are not going towards
93          a VIP) */
94       if (AF_IP4 == ctx->af)
95         {
96           if (!(cm->snat_ip4.ce_flags & CNAT_EP_FLAG_RESOLVED))
97             goto trace;
98           ip46_address_set_ip4 (&session->value.cs_ip[VLIB_RX],
99                                 &ip_addr_v4 (&cm->snat_ip4.ce_ip));
100           ip46_address_set_ip4 (&session->value.cs_ip[VLIB_TX],
101                                 &ip4->dst_address);
102         }
103       else
104         {
105           if (!(cm->snat_ip6.ce_flags & CNAT_EP_FLAG_RESOLVED))
106             goto trace;
107           ip46_address_set_ip6 (&session->value.cs_ip[VLIB_RX],
108                                 &ip_addr_v6 (&cm->snat_ip6.ce_ip));
109           ip46_address_set_ip6 (&session->value.cs_ip[VLIB_TX],
110                                 &ip6->dst_address);
111         }
112
113
114       sport = 0;
115       rv = cnat_allocate_port (&sport, iproto);
116       if (rv)
117         {
118           vlib_node_increment_counter (vm, cnat_snat_ip4_node.index,
119                                        CNAT_ERROR_EXHAUSTED_PORTS, 1);
120           next0 = CNAT_SNAT_NEXT_DROP;
121           goto trace;
122         }
123       session->value.cs_port[VLIB_RX] = sport;
124       session->value.cs_port[VLIB_TX] = sport;
125       if (iproto == IP_PROTOCOL_TCP || iproto == IP_PROTOCOL_UDP)
126         session->value.cs_port[VLIB_TX] = udp0->dst_port;
127
128       session->value.cs_lbi = INDEX_INVALID;
129       session->value.flags =
130         CNAT_SESSION_FLAG_NO_CLIENT | CNAT_SESSION_FLAG_ALLOC_PORT;
131       trace_flags |= CNAT_TRACE_SESSION_CREATED;
132
133       cnat_session_create (session, ctx, CNAT_LOCATION_FIB,
134                            CNAT_SESSION_FLAG_HAS_SNAT);
135     }
136
137
138   if (AF_IP4 == ctx->af)
139     cnat_translation_ip4 (session, ip4, udp0);
140   else
141     cnat_translation_ip6 (session, ip6, udp0);
142
143 trace:
144   if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
145     {
146       trace_flags |= session_not_found ? 0 : CNAT_TRACE_SESSION_FOUND;
147       cnat_add_trace (vm, node, b, session, NULL, trace_flags);
148     }
149   return next0;
150 }
151
152 VLIB_NODE_FN (cnat_snat_ip4_node) (vlib_main_t * vm,
153                                    vlib_node_runtime_t * node,
154                                    vlib_frame_t * frame)
155 {
156   if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
157     return cnat_node_inline (vm, node, frame, cnat_snat_node_fn, AF_IP4,
158                              CNAT_LOCATION_FIB, 1 /* do_trace */);
159   return cnat_node_inline (vm, node, frame, cnat_snat_node_fn, AF_IP4,
160                            CNAT_LOCATION_FIB, 0 /* do_trace */);
161 }
162
163 VLIB_NODE_FN (cnat_snat_ip6_node) (vlib_main_t * vm,
164                                    vlib_node_runtime_t * node,
165                                    vlib_frame_t * frame)
166 {
167   if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
168     return cnat_node_inline (vm, node, frame, cnat_snat_node_fn, AF_IP6,
169                              CNAT_LOCATION_FIB, 1 /* do_trace */);
170   return cnat_node_inline (vm, node, frame, cnat_snat_node_fn, AF_IP6,
171                            CNAT_LOCATION_FIB, 0 /* do_trace */);
172 }
173
174 VLIB_REGISTER_NODE (cnat_snat_ip4_node) = {
175   .name = "cnat-snat-ip4",
176   .vector_size = sizeof (u32),
177   .format_trace = format_cnat_trace,
178   .type = VLIB_NODE_TYPE_INTERNAL,
179   .n_errors = CNAT_N_ERROR,
180   .error_strings = cnat_error_strings,
181   .n_next_nodes = CNAT_SNAT_N_NEXT,
182   .next_nodes = {
183       [CNAT_SNAT_NEXT_DROP] = "ip4-drop",
184   },
185 };
186
187 VLIB_REGISTER_NODE (cnat_snat_ip6_node) = {
188   .name = "cnat-snat-ip6",
189   .vector_size = sizeof (u32),
190   .format_trace = format_cnat_trace,
191   .type = VLIB_NODE_TYPE_INTERNAL,
192   .n_errors = CNAT_N_ERROR,
193   .error_strings = cnat_error_strings,
194   .n_next_nodes = CNAT_SNAT_N_NEXT,
195   .next_nodes = {
196       [CNAT_SNAT_NEXT_DROP] = "ip6-drop",
197   },
198 };
199
200 VNET_FEATURE_INIT (cnat_snat_ip4_node, static) = {
201   .arc_name = "ip4-unicast",
202   .node_name = "cnat-snat-ip4",
203 };
204
205 VNET_FEATURE_INIT (cnat_snat_ip6_node, static) = {
206   .arc_name = "ip6-unicast",
207   .node_name = "cnat-snat-ip6",
208 };
209
210 /*
211  * fd.io coding-style-patch-verification: ON
212  *
213  * Local Variables:
214  * eval: (c-set-style "gnu")
215  * End:
216  */