blob: 9fd10f62eb1fb03426433a71766f8c1f176f9d92 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 * Defines used for testing various optimisation schemes
17 */
18#define MAP_ENCAP_DUAL 0
19
20#include "map.h"
21#include "../ip/ip_frag.h"
22
23vlib_node_registration_t ip4_map_reass_node;
24
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070025enum ip4_map_next_e
26{
Ed Warnickecb9cada2015-12-08 15:45:58 -070027 IP4_MAP_NEXT_IP6_LOOKUP,
28#ifdef MAP_SKIP_IP6_LOOKUP
29 IP4_MAP_NEXT_IP6_REWRITE,
30#endif
Ole Troan9fb87552016-01-13 22:30:43 +010031 IP4_MAP_NEXT_IP4_FRAGMENT,
32 IP4_MAP_NEXT_IP6_FRAGMENT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070033 IP4_MAP_NEXT_REASS,
Ole Troan9fb87552016-01-13 22:30:43 +010034 IP4_MAP_NEXT_ICMP_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070035 IP4_MAP_NEXT_DROP,
36 IP4_MAP_N_NEXT,
37};
38
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070039enum ip4_map_reass_next_t
40{
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 IP4_MAP_REASS_NEXT_IP6_LOOKUP,
42 IP4_MAP_REASS_NEXT_IP4_FRAGMENT,
43 IP4_MAP_REASS_NEXT_DROP,
44 IP4_MAP_REASS_N_NEXT,
45};
46
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070047typedef struct
48{
Ed Warnickecb9cada2015-12-08 15:45:58 -070049 u32 map_domain_index;
50 u16 port;
51 u8 cached;
52} map_ip4_map_reass_trace_t;
53
54u8 *
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070055format_ip4_map_reass_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070056{
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070057 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
58 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070059 map_ip4_map_reass_trace_t *t = va_arg (*args, map_ip4_map_reass_trace_t *);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070060 return format (s, "MAP domain index: %d L4 port: %u Status: %s",
61 t->map_domain_index, t->port,
62 t->cached ? "cached" : "forwarded");
Ed Warnickecb9cada2015-12-08 15:45:58 -070063}
64
65/*
66 * ip4_map_get_port
67 */
68u16
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070069ip4_map_get_port (ip4_header_t * ip, map_dir_e dir)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070{
71 /* Find port information */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070072 if (PREDICT_TRUE ((ip->protocol == IP_PROTOCOL_TCP) ||
73 (ip->protocol == IP_PROTOCOL_UDP)))
74 {
75 udp_header_t *udp = (void *) (ip + 1);
76 return (dir == MAP_SENDER ? udp->src_port : udp->dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070078 else if (ip->protocol == IP_PROTOCOL_ICMP)
79 {
80 /*
81 * 1) ICMP Echo request or Echo reply
82 * 2) ICMP Error with inner packet being UDP or TCP
83 * 3) ICMP Error with inner packet being ICMP Echo request or Echo reply
84 */
85 icmp46_header_t *icmp = (void *) (ip + 1);
86 if (icmp->type == ICMP4_echo_request || icmp->type == ICMP4_echo_reply)
87 {
88 return *((u16 *) (icmp + 1));
89 }
90 else if (clib_net_to_host_u16 (ip->length) >= 56)
91 { // IP + ICMP + IP + L4 header
92 ip4_header_t *icmp_ip = (ip4_header_t *) (icmp + 2);
93 if (PREDICT_TRUE ((icmp_ip->protocol == IP_PROTOCOL_TCP) ||
94 (icmp_ip->protocol == IP_PROTOCOL_UDP)))
95 {
96 udp_header_t *udp = (void *) (icmp_ip + 1);
97 return (dir == MAP_SENDER ? udp->dst_port : udp->src_port);
98 }
99 else if (icmp_ip->protocol == IP_PROTOCOL_ICMP)
100 {
101 icmp46_header_t *inner_icmp = (void *) (icmp_ip + 1);
102 if (inner_icmp->type == ICMP4_echo_request
103 || inner_icmp->type == ICMP4_echo_reply)
104 return (*((u16 *) (inner_icmp + 1)));
105 }
106 }
107 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 return (0);
109}
110
111static_always_inline u16
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700112ip4_map_port_and_security_check (map_domain_t * d, ip4_header_t * ip,
113 u32 * next, u8 * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114{
115 u16 port = 0;
116
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700117 if (d->psid_length > 0)
118 {
119 if (ip4_get_fragment_offset (ip) == 0)
120 {
121 if (PREDICT_FALSE
122 ((ip->ip_version_and_header_length != 0x45)
123 || clib_host_to_net_u16 (ip->length) < 28))
124 {
125 return 0;
126 }
127 port = ip4_map_get_port (ip, MAP_RECEIVER);
128 if (port)
129 {
130 /* Verify that port is not among the well-known ports */
131 if ((d->psid_offset > 0)
132 && (clib_net_to_host_u16 (port) <
133 (0x1 << (16 - d->psid_offset))))
134 {
135 *error = MAP_ERROR_ENCAP_SEC_CHECK;
136 }
137 else
138 {
139 if (ip4_get_fragment_more (ip))
140 *next = IP4_MAP_NEXT_REASS;
141 return (port);
142 }
143 }
144 else
145 {
146 *error = MAP_ERROR_BAD_PROTOCOL;
147 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700149 else
150 {
151 *next = IP4_MAP_NEXT_REASS;
152 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 return (0);
155}
156
157/*
158 * ip4_map_vtcfl
159 */
160static_always_inline u32
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700161ip4_map_vtcfl (ip4_header_t * ip4, vlib_buffer_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162{
163 map_main_t *mm = &map_main;
164 u8 tc = mm->tc_copy ? ip4->tos : mm->tc;
165 u32 vtcfl = 0x6 << 28;
166 vtcfl |= tc << 20;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700167 vtcfl |= vnet_buffer (p)->ip.flow_hash & 0x000fffff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700169 return (clib_host_to_net_u32 (vtcfl));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170}
171
172static_always_inline bool
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700173ip4_map_ip6_lookup_bypass (vlib_buffer_t * p0, ip4_header_t * ip)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174{
175#ifdef MAP_SKIP_IP6_LOOKUP
176 map_main_t *mm = &map_main;
177 u32 adj_index0 = mm->adj6_index;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700178 if (adj_index0 > 0)
179 {
180 ip_lookup_main_t *lm6 = &ip6_main.lookup_main;
181 ip_adjacency_t *adj = ip_get_adjacency (lm6, mm->adj6_index);
182 if (adj->n_adj > 1)
183 {
184 u32 hash_c0 = ip4_compute_flow_hash (ip, IP_FLOW_HASH_DEFAULT);
185 adj_index0 += (hash_c0 & (adj->n_adj - 1));
186 }
187 vnet_buffer (p0)->ip.adj_index[VLIB_TX] = adj_index0;
188 return (true);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190#endif
191 return (false);
192}
193
194/*
Ole Troan366ac6e2016-01-06 12:40:28 +0100195 * ip4_map_ttl
196 */
197static inline void
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700198ip4_map_decrement_ttl (ip4_header_t * ip, u8 * error)
Ole Troan366ac6e2016-01-06 12:40:28 +0100199{
200 i32 ttl = ip->ttl;
201
202 /* Input node should have reject packets with ttl 0. */
203 ASSERT (ip->ttl > 0);
204
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700205 u32 checksum = ip->checksum + clib_host_to_net_u16 (0x0100);
Ole Troan366ac6e2016-01-06 12:40:28 +0100206 checksum += checksum >= 0xffff;
207 ip->checksum = checksum;
208 ttl -= 1;
209 ip->ttl = ttl;
210 *error = ttl <= 0 ? IP4_ERROR_TIME_EXPIRED : *error;
211
212 /* Verify checksum. */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700213 ASSERT (ip->checksum == ip4_header_checksum (ip));
Ole Troan366ac6e2016-01-06 12:40:28 +0100214}
215
Ole Troan9fb87552016-01-13 22:30:43 +0100216static u32
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700217ip4_map_fragment (vlib_buffer_t * b, u16 mtu, bool df, u8 * error)
Ole Troan9fb87552016-01-13 22:30:43 +0100218{
219 map_main_t *mm = &map_main;
220
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700221 if (mm->frag_inner)
222 {
223 ip_frag_set_vnet_buffer (b, sizeof (ip6_header_t), mtu,
224 IP4_FRAG_NEXT_IP6_LOOKUP,
225 IP_FRAG_FLAG_IP6_HEADER);
226 return (IP4_MAP_NEXT_IP4_FRAGMENT);
Ole Troan9fb87552016-01-13 22:30:43 +0100227 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700228 else
229 {
230 if (df && !mm->frag_ignore_df)
231 {
232 icmp4_error_set_vnet_buffer (b, ICMP4_destination_unreachable,
233 ICMP4_destination_unreachable_fragmentation_needed_and_dont_fragment_set,
234 mtu);
235 vlib_buffer_advance (b, sizeof (ip6_header_t));
236 *error = MAP_ERROR_DF_SET;
237 return (IP4_MAP_NEXT_ICMP_ERROR);
238 }
239 ip_frag_set_vnet_buffer (b, 0, mtu, IP6_FRAG_NEXT_IP6_LOOKUP,
240 IP_FRAG_FLAG_IP6_HEADER);
241 return (IP4_MAP_NEXT_IP6_FRAGMENT);
242 }
Ole Troan9fb87552016-01-13 22:30:43 +0100243}
244
Ole Troan366ac6e2016-01-06 12:40:28 +0100245/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 * ip4_map
247 */
248static uword
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700249ip4_map (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250{
251 u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700252 vlib_node_runtime_t *error_node =
253 vlib_node_get_runtime (vm, ip4_map_node.index);
254 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 n_left_from = frame->n_vectors;
256 next_index = node->cached_next_index;
257 map_main_t *mm = &map_main;
258 vlib_combined_counter_main_t *cm = mm->domain_counters;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700259 u32 cpu_index = os_get_cpu_number ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700261 while (n_left_from > 0)
262 {
263 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700265 /* Dual loop */
266 while (n_left_from >= 4 && n_left_to_next >= 2)
267 {
268 u32 pi0, pi1;
269 vlib_buffer_t *p0, *p1;
270 map_domain_t *d0, *d1;
271 u8 error0 = MAP_ERROR_NONE, error1 = MAP_ERROR_NONE;
272 ip4_header_t *ip40, *ip41;
273 u16 port0 = 0, port1 = 0;
274 ip6_header_t *ip6h0, *ip6h1;
275 u32 map_domain_index0 = ~0, map_domain_index1 = ~0;
276 u32 next0 = IP4_MAP_NEXT_IP6_LOOKUP, next1 =
277 IP4_MAP_NEXT_IP6_LOOKUP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700279 /* Prefetch next iteration. */
280 {
281 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700283 p2 = vlib_get_buffer (vm, from[2]);
284 p3 = vlib_get_buffer (vm, from[3]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700286 vlib_prefetch_buffer_header (p2, STORE);
287 vlib_prefetch_buffer_header (p3, STORE);
288 /* IPv4 + 8 = 28. possibly plus -40 */
289 CLIB_PREFETCH (p2->data - 40, 68, STORE);
290 CLIB_PREFETCH (p3->data - 40, 68, STORE);
291 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700293 pi0 = to_next[0] = from[0];
294 pi1 = to_next[1] = from[1];
295 from += 2;
296 n_left_from -= 2;
297 to_next += 2;
298 n_left_to_next -= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700300 p0 = vlib_get_buffer (vm, pi0);
301 p1 = vlib_get_buffer (vm, pi1);
302 ip40 = vlib_buffer_get_current (p0);
303 ip41 = vlib_buffer_get_current (p1);
304 d0 =
305 ip4_map_get_domain (vnet_buffer (p0)->ip.adj_index[VLIB_TX],
306 &map_domain_index0);
307 d1 =
308 ip4_map_get_domain (vnet_buffer (p1)->ip.adj_index[VLIB_TX],
309 &map_domain_index1);
310 ASSERT (d0);
311 ASSERT (d1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700313 /*
314 * Shared IPv4 address
315 */
316 port0 = ip4_map_port_and_security_check (d0, ip40, &next0, &error0);
317 port1 = ip4_map_port_and_security_check (d1, ip41, &next1, &error1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700319 /* Decrement IPv4 TTL */
320 ip4_map_decrement_ttl (ip40, &error0);
321 ip4_map_decrement_ttl (ip41, &error1);
322 bool df0 =
Ed Warnicke853e7202016-08-12 11:42:26 -0700323 ip40->flags_and_fragment_offset &
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700324 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT);
325 bool df1 =
Ed Warnicke853e7202016-08-12 11:42:26 -0700326 ip41->flags_and_fragment_offset &
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700327 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT);
Ole Troan9fb87552016-01-13 22:30:43 +0100328
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700329 /* MAP calc */
330 u32 da40 = clib_net_to_host_u32 (ip40->dst_address.as_u32);
331 u32 da41 = clib_net_to_host_u32 (ip41->dst_address.as_u32);
332 u16 dp40 = clib_net_to_host_u16 (port0);
333 u16 dp41 = clib_net_to_host_u16 (port1);
334 u64 dal60 = map_get_pfx (d0, da40, dp40);
335 u64 dal61 = map_get_pfx (d1, da41, dp41);
336 u64 dar60 = map_get_sfx (d0, da40, dp40);
337 u64 dar61 = map_get_sfx (d1, da41, dp41);
338 if (dal60 == 0 && dar60 == 0 && error0 == MAP_ERROR_NONE
339 && next0 != IP4_MAP_NEXT_REASS)
340 error0 = MAP_ERROR_NO_BINDING;
341 if (dal61 == 0 && dar61 == 0 && error1 == MAP_ERROR_NONE
342 && next1 != IP4_MAP_NEXT_REASS)
343 error1 = MAP_ERROR_NO_BINDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700345 /* construct ipv6 header */
346 vlib_buffer_advance (p0, -sizeof (ip6_header_t));
347 vlib_buffer_advance (p1, -sizeof (ip6_header_t));
348 ip6h0 = vlib_buffer_get_current (p0);
349 ip6h1 = vlib_buffer_get_current (p1);
350 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
351 vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700353 ip6h0->ip_version_traffic_class_and_flow_label =
354 ip4_map_vtcfl (ip40, p0);
355 ip6h1->ip_version_traffic_class_and_flow_label =
356 ip4_map_vtcfl (ip41, p1);
357 ip6h0->payload_length = ip40->length;
358 ip6h1->payload_length = ip41->length;
359 ip6h0->protocol = IP_PROTOCOL_IP_IN_IP;
360 ip6h1->protocol = IP_PROTOCOL_IP_IN_IP;
361 ip6h0->hop_limit = 0x40;
362 ip6h1->hop_limit = 0x40;
363 ip6h0->src_address = d0->ip6_src;
364 ip6h1->src_address = d1->ip6_src;
365 ip6h0->dst_address.as_u64[0] = clib_host_to_net_u64 (dal60);
366 ip6h0->dst_address.as_u64[1] = clib_host_to_net_u64 (dar60);
367 ip6h1->dst_address.as_u64[0] = clib_host_to_net_u64 (dal61);
368 ip6h1->dst_address.as_u64[1] = clib_host_to_net_u64 (dar61);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700370 /*
371 * Determine next node. Can be one of:
372 * ip6-lookup, ip6-rewrite, ip4-fragment, ip4-virtreass, error-drop
373 */
374 if (PREDICT_TRUE (error0 == MAP_ERROR_NONE))
375 {
376 if (PREDICT_FALSE
377 (d0->mtu
378 && (clib_net_to_host_u16 (ip6h0->payload_length) +
379 sizeof (*ip6h0) > d0->mtu)))
380 {
381 next0 = ip4_map_fragment (p0, d0->mtu, df0, &error0);
382 }
383 else
384 {
385 next0 =
386 ip4_map_ip6_lookup_bypass (p0,
387 ip40) ?
388 IP4_MAP_NEXT_IP6_REWRITE : next0;
389 vlib_increment_combined_counter (cm + MAP_DOMAIN_COUNTER_TX,
390 cpu_index,
391 map_domain_index0, 1,
392 clib_net_to_host_u16
393 (ip6h0->payload_length) +
394 40);
395 }
396 }
397 else
398 {
399 next0 = IP4_MAP_NEXT_DROP;
400 }
401
402 /*
403 * Determine next node. Can be one of:
404 * ip6-lookup, ip6-rewrite, ip4-fragment, ip4-virtreass, error-drop
405 */
406 if (PREDICT_TRUE (error1 == MAP_ERROR_NONE))
407 {
408 if (PREDICT_FALSE
409 (d1->mtu
410 && (clib_net_to_host_u16 (ip6h1->payload_length) +
411 sizeof (*ip6h1) > d1->mtu)))
412 {
413 next1 = ip4_map_fragment (p1, d1->mtu, df1, &error1);
414 }
415 else
416 {
417 next1 =
418 ip4_map_ip6_lookup_bypass (p1,
419 ip41) ?
420 IP4_MAP_NEXT_IP6_REWRITE : next1;
421 vlib_increment_combined_counter (cm + MAP_DOMAIN_COUNTER_TX,
422 cpu_index,
423 map_domain_index1, 1,
424 clib_net_to_host_u16
425 (ip6h1->payload_length) +
426 40);
427 }
428 }
429 else
430 {
431 next1 = IP4_MAP_NEXT_DROP;
432 }
433
434 if (PREDICT_FALSE (p0->flags & VLIB_BUFFER_IS_TRACED))
435 {
436 map_trace_t *tr = vlib_add_trace (vm, node, p0, sizeof (*tr));
437 tr->map_domain_index = map_domain_index0;
438 tr->port = port0;
439 }
440 if (PREDICT_FALSE (p1->flags & VLIB_BUFFER_IS_TRACED))
441 {
442 map_trace_t *tr = vlib_add_trace (vm, node, p1, sizeof (*tr));
443 tr->map_domain_index = map_domain_index1;
444 tr->port = port1;
445 }
446
447 p0->error = error_node->errors[error0];
448 p1->error = error_node->errors[error1];
449
450 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
451 n_left_to_next, pi0, pi1, next0,
452 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700455 while (n_left_from > 0 && n_left_to_next > 0)
456 {
457 u32 pi0;
458 vlib_buffer_t *p0;
459 map_domain_t *d0;
460 u8 error0 = MAP_ERROR_NONE;
461 ip4_header_t *ip40;
462 u16 port0 = 0;
463 ip6_header_t *ip6h0;
464 u32 next0 = IP4_MAP_NEXT_IP6_LOOKUP;
465 u32 map_domain_index0 = ~0;
466
467 pi0 = to_next[0] = from[0];
468 from += 1;
469 n_left_from -= 1;
470 to_next += 1;
471 n_left_to_next -= 1;
472
473 p0 = vlib_get_buffer (vm, pi0);
474 ip40 = vlib_buffer_get_current (p0);
475 d0 =
476 ip4_map_get_domain (vnet_buffer (p0)->ip.adj_index[VLIB_TX],
477 &map_domain_index0);
478 ASSERT (d0);
479
480 /*
481 * Shared IPv4 address
482 */
483 port0 = ip4_map_port_and_security_check (d0, ip40, &next0, &error0);
484
485 /* Decrement IPv4 TTL */
486 ip4_map_decrement_ttl (ip40, &error0);
487 bool df0 =
Ed Warnicke853e7202016-08-12 11:42:26 -0700488 ip40->flags_and_fragment_offset &
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700489 clib_host_to_net_u16 (IP4_HEADER_FLAG_DONT_FRAGMENT);
490
491 /* MAP calc */
492 u32 da40 = clib_net_to_host_u32 (ip40->dst_address.as_u32);
493 u16 dp40 = clib_net_to_host_u16 (port0);
494 u64 dal60 = map_get_pfx (d0, da40, dp40);
495 u64 dar60 = map_get_sfx (d0, da40, dp40);
496 if (dal60 == 0 && dar60 == 0 && error0 == MAP_ERROR_NONE
497 && next0 != IP4_MAP_NEXT_REASS)
498 error0 = MAP_ERROR_NO_BINDING;
499
500 /* construct ipv6 header */
501 vlib_buffer_advance (p0, -(sizeof (ip6_header_t)));
502 ip6h0 = vlib_buffer_get_current (p0);
503 vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
504
505 ip6h0->ip_version_traffic_class_and_flow_label =
506 ip4_map_vtcfl (ip40, p0);
507 ip6h0->payload_length = ip40->length;
508 ip6h0->protocol = IP_PROTOCOL_IP_IN_IP;
509 ip6h0->hop_limit = 0x40;
510 ip6h0->src_address = d0->ip6_src;
511 ip6h0->dst_address.as_u64[0] = clib_host_to_net_u64 (dal60);
512 ip6h0->dst_address.as_u64[1] = clib_host_to_net_u64 (dar60);
513
514 /*
515 * Determine next node. Can be one of:
516 * ip6-lookup, ip6-rewrite, ip4-fragment, ip4-virtreass, error-drop
517 */
518 if (PREDICT_TRUE (error0 == MAP_ERROR_NONE))
519 {
520 if (PREDICT_FALSE
521 (d0->mtu
522 && (clib_net_to_host_u16 (ip6h0->payload_length) +
523 sizeof (*ip6h0) > d0->mtu)))
524 {
525 next0 = ip4_map_fragment (p0, d0->mtu, df0, &error0);
526 }
527 else
528 {
529 next0 =
530 ip4_map_ip6_lookup_bypass (p0,
531 ip40) ?
532 IP4_MAP_NEXT_IP6_REWRITE : next0;
533 vlib_increment_combined_counter (cm + MAP_DOMAIN_COUNTER_TX,
534 cpu_index,
535 map_domain_index0, 1,
536 clib_net_to_host_u16
537 (ip6h0->payload_length) +
538 40);
539 }
540 }
541 else
542 {
543 next0 = IP4_MAP_NEXT_DROP;
544 }
545
546 if (PREDICT_FALSE (p0->flags & VLIB_BUFFER_IS_TRACED))
547 {
548 map_trace_t *tr = vlib_add_trace (vm, node, p0, sizeof (*tr));
549 tr->map_domain_index = map_domain_index0;
550 tr->port = port0;
551 }
552
553 p0->error = error_node->errors[error0];
554 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
555 n_left_to_next, pi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 }
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700557 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 }
559
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 return frame->n_vectors;
561}
562
563/*
564 * ip4_map_reass
565 */
566static uword
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700567ip4_map_reass (vlib_main_t * vm,
568 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569{
570 u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700571 vlib_node_runtime_t *error_node =
572 vlib_node_get_runtime (vm, ip4_map_reass_node.index);
573 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574 n_left_from = frame->n_vectors;
575 next_index = node->cached_next_index;
576 map_main_t *mm = &map_main;
577 vlib_combined_counter_main_t *cm = mm->domain_counters;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700578 u32 cpu_index = os_get_cpu_number ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 u32 *fragments_to_drop = NULL;
580 u32 *fragments_to_loopback = NULL;
581
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700582 while (n_left_from > 0)
583 {
584 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700586 while (n_left_from > 0 && n_left_to_next > 0)
587 {
588 u32 pi0;
589 vlib_buffer_t *p0;
590 map_domain_t *d0;
591 u8 error0 = MAP_ERROR_NONE;
592 ip4_header_t *ip40;
593 i32 port0 = 0;
594 ip6_header_t *ip60;
595 u32 next0 = IP4_MAP_REASS_NEXT_IP6_LOOKUP;
596 u32 map_domain_index0;
597 u8 cached = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700599 pi0 = to_next[0] = from[0];
600 from += 1;
601 n_left_from -= 1;
602 to_next += 1;
603 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700605 p0 = vlib_get_buffer (vm, pi0);
606 ip60 = vlib_buffer_get_current (p0);
607 ip40 = (ip4_header_t *) (ip60 + 1);
608 d0 =
609 ip4_map_get_domain (vnet_buffer (p0)->ip.adj_index[VLIB_TX],
610 &map_domain_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700612 map_ip4_reass_lock ();
Ed Warnicke853e7202016-08-12 11:42:26 -0700613 map_ip4_reass_t *r = map_ip4_reass_get (ip40->src_address.as_u32,
614 ip40->dst_address.as_u32,
615 ip40->fragment_id,
616 ip40->protocol,
617 &fragments_to_drop);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700618 if (PREDICT_FALSE (!r))
619 {
620 // Could not create a caching entry
621 error0 = MAP_ERROR_FRAGMENT_MEMORY;
622 }
623 else if (PREDICT_TRUE (ip4_get_fragment_offset (ip40)))
624 {
625 if (r->port >= 0)
626 {
627 // We know the port already
628 port0 = r->port;
629 }
630 else if (map_ip4_reass_add_fragment (r, pi0))
631 {
632 // Not enough space for caching
633 error0 = MAP_ERROR_FRAGMENT_MEMORY;
634 map_ip4_reass_free (r, &fragments_to_drop);
635 }
636 else
637 {
638 cached = 1;
639 }
640 }
641 else
642 if ((port0 =
643 ip4_get_port (ip40, MAP_RECEIVER, p0->current_length)) < 0)
644 {
645 // Could not find port. We'll free the reassembly.
646 error0 = MAP_ERROR_BAD_PROTOCOL;
647 port0 = 0;
648 map_ip4_reass_free (r, &fragments_to_drop);
649 }
650 else
651 {
652 r->port = port0;
653 map_ip4_reass_get_fragments (r, &fragments_to_loopback);
654 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
656#ifdef MAP_IP4_REASS_COUNT_BYTES
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700657 if (!cached && r)
658 {
659 r->forwarded += clib_host_to_net_u16 (ip40->length) - 20;
660 if (!ip4_get_fragment_more (ip40))
661 r->expected_total =
662 ip4_get_fragment_offset (ip40) * 8 +
663 clib_host_to_net_u16 (ip40->length) - 20;
664 if (r->forwarded >= r->expected_total)
665 map_ip4_reass_free (r, &fragments_to_drop);
666 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667#endif
668
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700669 map_ip4_reass_unlock ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700671 // NOTE: Most operations have already been performed by ip4_map
672 // All we need is the right destination address
673 ip60->dst_address.as_u64[0] =
674 map_get_pfx_net (d0, ip40->dst_address.as_u32, port0);
675 ip60->dst_address.as_u64[1] =
676 map_get_sfx_net (d0, ip40->dst_address.as_u32, port0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700678 if (PREDICT_FALSE
679 (d0->mtu
680 && (clib_net_to_host_u16 (ip60->payload_length) +
681 sizeof (*ip60) > d0->mtu)))
682 {
683 vnet_buffer (p0)->ip_frag.header_offset = sizeof (*ip60);
684 vnet_buffer (p0)->ip_frag.next_index = IP4_FRAG_NEXT_IP6_LOOKUP;
685 vnet_buffer (p0)->ip_frag.mtu = d0->mtu;
686 vnet_buffer (p0)->ip_frag.flags = IP_FRAG_FLAG_IP6_HEADER;
687 next0 = IP4_MAP_REASS_NEXT_IP4_FRAGMENT;
688 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700690 if (PREDICT_FALSE (p0->flags & VLIB_BUFFER_IS_TRACED))
691 {
692 map_ip4_map_reass_trace_t *tr =
693 vlib_add_trace (vm, node, p0, sizeof (*tr));
694 tr->map_domain_index = map_domain_index0;
695 tr->port = port0;
696 tr->cached = cached;
697 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700699 if (cached)
700 {
701 //Dequeue the packet
702 n_left_to_next++;
703 to_next--;
704 }
705 else
706 {
707 if (error0 == MAP_ERROR_NONE)
708 vlib_increment_combined_counter (cm + MAP_DOMAIN_COUNTER_TX,
709 cpu_index, map_domain_index0,
710 1,
Ed Warnicke853e7202016-08-12 11:42:26 -0700711 clib_net_to_host_u16
712 (ip60->payload_length) + 40);
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700713 next0 =
714 (error0 == MAP_ERROR_NONE) ? next0 : IP4_MAP_REASS_NEXT_DROP;
715 p0->error = error_node->errors[error0];
716 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
717 n_left_to_next, pi0, next0);
718 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700720 //Loopback when we reach the end of the inpu vector
721 if (n_left_from == 0 && vec_len (fragments_to_loopback))
722 {
723 from = vlib_frame_vector_args (frame);
724 u32 len = vec_len (fragments_to_loopback);
725 if (len <= VLIB_FRAME_SIZE)
726 {
727 clib_memcpy (from, fragments_to_loopback,
728 sizeof (u32) * len);
729 n_left_from = len;
730 vec_reset_length (fragments_to_loopback);
731 }
732 else
733 {
734 clib_memcpy (from,
735 fragments_to_loopback + (len -
736 VLIB_FRAME_SIZE),
737 sizeof (u32) * VLIB_FRAME_SIZE);
738 n_left_from = VLIB_FRAME_SIZE;
739 _vec_len (fragments_to_loopback) = len - VLIB_FRAME_SIZE;
740 }
741 }
742 }
743 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700746 map_send_all_to_node (vm, fragments_to_drop, node,
747 &error_node->errors[MAP_ERROR_FRAGMENT_DROPPED],
748 IP4_MAP_REASS_NEXT_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700750 vec_free (fragments_to_drop);
751 vec_free (fragments_to_loopback);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752 return frame->n_vectors;
753}
754
755static char *map_error_strings[] = {
756#define _(sym,string) string,
757 foreach_map_error
758#undef _
759};
760
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700761/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762VLIB_REGISTER_NODE(ip4_map_node) = {
763 .function = ip4_map,
764 .name = "ip4-map",
765 .vector_size = sizeof(u32),
766 .format_trace = format_map_trace,
767 .type = VLIB_NODE_TYPE_INTERNAL,
Damjan Marion607de1a2016-08-16 22:53:54 +0200768
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 .n_errors = MAP_N_ERROR,
770 .error_strings = map_error_strings,
771
772 .n_next_nodes = IP4_MAP_N_NEXT,
773 .next_nodes = {
774 [IP4_MAP_NEXT_IP6_LOOKUP] = "ip6-lookup",
775#ifdef MAP_SKIP_IP6_LOOKUP
776 [IP4_MAP_NEXT_IP6_REWRITE] = "ip6-rewrite",
777#endif
Ole Troan9fb87552016-01-13 22:30:43 +0100778 [IP4_MAP_NEXT_IP4_FRAGMENT] = "ip4-frag",
779 [IP4_MAP_NEXT_IP6_FRAGMENT] = "ip6-frag",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 [IP4_MAP_NEXT_REASS] = "ip4-map-reass",
Ole Troan9fb87552016-01-13 22:30:43 +0100781 [IP4_MAP_NEXT_ICMP_ERROR] = "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782 [IP4_MAP_NEXT_DROP] = "error-drop",
783 },
784};
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700785/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700787/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788VLIB_REGISTER_NODE(ip4_map_reass_node) = {
789 .function = ip4_map_reass,
790 .name = "ip4-map-reass",
791 .vector_size = sizeof(u32),
792 .format_trace = format_ip4_map_reass_trace,
793 .type = VLIB_NODE_TYPE_INTERNAL,
Damjan Marion607de1a2016-08-16 22:53:54 +0200794
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795 .n_errors = MAP_N_ERROR,
796 .error_strings = map_error_strings,
797
798 .n_next_nodes = IP4_MAP_REASS_N_NEXT,
799 .next_nodes = {
800 [IP4_MAP_REASS_NEXT_IP6_LOOKUP] = "ip6-lookup",
801 [IP4_MAP_REASS_NEXT_IP4_FRAGMENT] = "ip4-frag",
802 [IP4_MAP_REASS_NEXT_DROP] = "error-drop",
803 },
804};
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700805/* *INDENT-ON* */
806
807/*
808 * fd.io coding-style-patch-verification: ON
809 *
810 * Local Variables:
811 * eval: (c-set-style "gnu")
812 * End:
813 */