blob: 208a58efc42ecb73e1cab115d087244c31c26a04 [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#include <stdbool.h>
16#include <vppinfra/error.h>
17#include <vnet/vnet.h>
18#include <vnet/ip/ip.h>
19#include <vlib/vlib.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010020#include <vnet/fib/fib_types.h>
21#include <vnet/fib/ip4_fib.h>
22#include <vnet/adj/adj.h>
23#include <vnet/map/map_dpo.h>
24#include <vnet/dpo/load_balance.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
26#define MAP_SKIP_IP6_LOOKUP 1
27
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070028int map_create_domain (ip4_address_t * ip4_prefix, u8 ip4_prefix_len,
29 ip6_address_t * ip6_prefix, u8 ip6_prefix_len,
30 ip6_address_t * ip6_src, u8 ip6_src_len,
31 u8 ea_bits_len, u8 psid_offset, u8 psid_length,
32 u32 * map_domain_index, u16 mtu, u8 flags);
33int map_delete_domain (u32 map_domain_index);
34int map_add_del_psid (u32 map_domain_index, u16 psid, ip6_address_t * tep,
35 u8 is_add);
36u8 *format_map_trace (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -070037
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070038typedef enum __attribute__ ((__packed__))
39{
40 MAP_DOMAIN_PREFIX = 1 << 0, MAP_DOMAIN_TRANSLATION = 1 << 1, // The domain uses MAP-T
Ed Warnickecb9cada2015-12-08 15:45:58 -070041} map_domain_flags_e;
42
43/**
44 * IP4 reassembly logic:
45 * One virtually reassembled flow requires a map_ip4_reass_t structure in order
46 * to keep the first-fragment port number and, optionally, cache out of sequence
47 * packets.
48 * There are up to MAP_IP4_REASS_MAX_REASSEMBLY such structures.
49 * When in use, those structures are stored in a hash table of MAP_IP4_REASS_BUCKETS buckets.
50 * When a new structure needs to be used, it is allocated from available ones.
51 * If there is no structure available, the oldest in use is selected and used if and
52 * only if it was first allocated more than MAP_IP4_REASS_LIFETIME seconds ago.
53 * In case no structure can be allocated, the fragment is dropped.
54 */
55
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070056#define MAP_IP4_REASS_LIFETIME_DEFAULT (100) /* ms */
Ed Warnickecb9cada2015-12-08 15:45:58 -070057#define MAP_IP4_REASS_HT_RATIO_DEFAULT (1.0)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070058#define MAP_IP4_REASS_POOL_SIZE_DEFAULT 1024 // Number of reassembly structures
Ed Warnickecb9cada2015-12-08 15:45:58 -070059#define MAP_IP4_REASS_BUFFERS_DEFAULT 2048
60
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070061#define MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5 // Number of fragment per reassembly
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070063#define MAP_IP6_REASS_LIFETIME_DEFAULT (100) /* ms */
Ed Warnickecb9cada2015-12-08 15:45:58 -070064#define MAP_IP6_REASS_HT_RATIO_DEFAULT (1.0)
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070065#define MAP_IP6_REASS_POOL_SIZE_DEFAULT 1024 // Number of reassembly structures
Ed Warnickecb9cada2015-12-08 15:45:58 -070066#define MAP_IP6_REASS_BUFFERS_DEFAULT 2048
67
68#define MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY 5
69
70#define MAP_IP6_REASS_COUNT_BYTES
71#define MAP_IP4_REASS_COUNT_BYTES
72
73//#define IP6_MAP_T_OVERRIDE_TOS 0
74
75/*
76 * This structure _MUST_ be no larger than a single cache line (64 bytes).
77 * If more space is needed make a union of ip6_prefix and *rules, those are mutually exclusive.
78 */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -070079typedef struct
80{
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 ip6_address_t ip6_src;
82 ip6_address_t ip6_prefix;
83 ip6_address_t *rules;
84 u32 suffix_mask;
85 ip4_address_t ip4_prefix;
86 u16 psid_mask;
87 u16 mtu;
88 map_domain_flags_e flags;
89 u8 ip6_prefix_len;
90 u8 ip6_src_len;
91 u8 ea_bits_len;
92 u8 psid_offset;
93 u8 psid_length;
94
95 /* helpers */
96 u8 psid_shift;
97 u8 suffix_shift;
98 u8 ea_shift;
99
100 /* not used by forwarding */
101 u8 ip4_prefix_len;
102} map_domain_t;
103
Damjan Marioncf478942016-11-07 14:57:50 +0100104STATIC_ASSERT ((sizeof (map_domain_t) <= CLIB_CACHE_LINE_BYTES),
105 "MAP domain fits in one cacheline");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100106
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107#define MAP_REASS_INDEX_NONE ((u16)0xffff)
108
109/*
110 * Hash key, padded out to 16 bytes for fast compare
111 */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700112/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113typedef union {
114 CLIB_PACKED (struct {
115 ip4_address_t src;
116 ip4_address_t dst;
117 u16 fragment_id;
118 u8 protocol;
119 });
120 u64 as_u64[2];
121 u32 as_u32[4];
122} map_ip4_reass_key_t;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700123/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700125typedef struct
126{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 map_ip4_reass_key_t key;
128 f64 ts;
129#ifdef MAP_IP4_REASS_COUNT_BYTES
130 u16 expected_total;
131 u16 forwarded;
132#endif
133 i32 port;
134 u16 bucket;
135 u16 bucket_next;
136 u16 fifo_prev;
137 u16 fifo_next;
138 u32 fragments[MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY];
139} map_ip4_reass_t;
140
141/*
142 * MAP domain counters
143 */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700144typedef enum
145{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 /* Simple counters */
147 MAP_DOMAIN_IPV4_FRAGMENT = 0,
148 /* Combined counters */
149 MAP_DOMAIN_COUNTER_RX = 0,
150 MAP_DOMAIN_COUNTER_TX,
151 MAP_N_DOMAIN_COUNTER
152} map_domain_counter_t;
153
154/*
155 * main_main_t
156 */
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700157/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158typedef union {
159 CLIB_PACKED (struct {
160 ip6_address_t src;
161 ip6_address_t dst;
162 u32 fragment_id;
163 u8 protocol;
164 });
165 u64 as_u64[5];
166 u32 as_u32[10];
167} map_ip6_reass_key_t;
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700168/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170typedef struct {
171 u32 pi; //Cached packet or ~0
172 u16 next_data_offset; //The data offset of the additional 20 bytes or ~0
173 u8 next_data_len; //Number of bytes ready to be copied (20 if not last fragment)
174 u8 next_data[20]; //The 20 additional bytes
175} map_ip6_fragment_t;
176
177typedef struct {
178 map_ip6_reass_key_t key;
179 f64 ts;
180#ifdef MAP_IP6_REASS_COUNT_BYTES
181 u16 expected_total;
182 u16 forwarded;
183#endif
184 u16 bucket; //What hash bucket this element is linked in
185 u16 bucket_next;
186 u16 fifo_prev;
187 u16 fifo_next;
188 ip4_header_t ip4_header;
189 map_ip6_fragment_t fragments[MAP_IP6_REASS_MAX_FRAGMENTS_PER_REASSEMBLY];
190} map_ip6_reass_t;
191
Neale Ranns80823802017-02-20 18:23:41 -0800192#ifdef MAP_SKIP_IP6_LOOKUP
193/**
194 * A pre-resolved next-hop
195 */
196typedef struct map_main_pre_resolved_t_
197{
198 /**
199 * Linkage into the FIB graph
200 */
201 fib_node_t node;
202
203 /**
204 * The FIB entry index of the next-hop
205 */
206 fib_node_index_t fei;
207
208 /**
209 * This object sibling index on the FIB entry's child dependency list
210 */
211 u32 sibling;
212
213 /**
214 * The Load-balance object index to use to forward
215 */
216 dpo_id_t dpo;
217} map_main_pre_resolved_t;
218
219/**
220 * Pre-resolved next hops for v4 and v6. Why these are global and not
221 * per-domain is beyond me.
222 */
223extern map_main_pre_resolved_t pre_resolved[FIB_PROTOCOL_MAX];
224#endif
225
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226typedef struct {
227 /* pool of MAP domains */
228 map_domain_t *domains;
229
230 /* MAP Domain packet/byte counters indexed by map domain index */
231 vlib_simple_counter_main_t *simple_domain_counters;
232 vlib_combined_counter_main_t *domain_counters;
233 volatile u32 *counter_lock;
234
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 /* Traffic class: zero, copy (~0) or fixed value */
236 u8 tc;
237 bool tc_copy;
Ole Troan9fb87552016-01-13 22:30:43 +0100238
239 bool sec_check; /* Inbound security check */
240 bool sec_check_frag; /* Inbound security check for (subsequent) fragments */
241 bool icmp6_enabled; /* Send destination unreachable for security check failure */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
243 /* ICMPv6 -> ICMPv4 relay parameters */
Ole Troancda94822016-01-07 14:37:25 +0100244 ip4_address_t icmp4_src_address;
Ole Troan9fb87552016-01-13 22:30:43 +0100245 vlib_simple_counter_main_t icmp_relayed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
247 /* convenience */
248 vlib_main_t *vlib_main;
249 vnet_main_t *vnet_main;
250
251 /*
252 * IPv4 encap and decap reassembly
253 */
Ole Troan9fb87552016-01-13 22:30:43 +0100254 /* Configuration */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 f32 ip4_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
256 u16 ip4_reass_conf_pool_size; //Max number of allocated reass structures
257 u16 ip4_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
258 u32 ip4_reass_conf_buffers; //Maximum number of buffers used by ip4 reassembly
259
Ole Troan9fb87552016-01-13 22:30:43 +0100260 /* Runtime */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 map_ip4_reass_t *ip4_reass_pool;
262 u8 ip4_reass_ht_log2len; //Hash table size is 2^log2len
263 u16 ip4_reass_allocated;
264 u16 *ip4_reass_hash_table;
265 u16 ip4_reass_fifo_last;
266 volatile u32 *ip4_reass_lock;
267
Ole Troan9fb87552016-01-13 22:30:43 +0100268 /* Counters */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 u32 ip4_reass_buffered_counter;
270
Ole Troan9fb87552016-01-13 22:30:43 +0100271 bool frag_inner; /* Inner or outer fragmentation */
272 bool frag_ignore_df; /* Fragment (outer) packet even if DF is set */
273
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 /*
275 * IPv6 decap reassembly
276 */
Ole Troan9fb87552016-01-13 22:30:43 +0100277 /* Configuration */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 f32 ip6_reass_conf_ht_ratio; //Size of ht is 2^ceil(log2(ratio*pool_size))
279 u16 ip6_reass_conf_pool_size; //Max number of allocated reass structures
280 u16 ip6_reass_conf_lifetime_ms; //Time a reassembly struct is considered valid in ms
281 u32 ip6_reass_conf_buffers; //Maximum number of buffers used by ip6 reassembly
282
Ole Troan9fb87552016-01-13 22:30:43 +0100283 /* Runtime */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 map_ip6_reass_t *ip6_reass_pool;
285 u8 ip6_reass_ht_log2len; //Hash table size is 2^log2len
286 u16 ip6_reass_allocated;
287 u16 *ip6_reass_hash_table;
288 u16 ip6_reass_fifo_last;
289 volatile u32 *ip6_reass_lock;
290
Ole Troan9fb87552016-01-13 22:30:43 +0100291 /* Counters */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 u32 ip6_reass_buffered_counter;
293
294} map_main_t;
295
296/*
Ole Troan9fb87552016-01-13 22:30:43 +0100297 * MAP Error counters/messages
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 */
299#define foreach_map_error \
300 /* Must be first. */ \
301 _(NONE, "valid MAP packets") \
302 _(BAD_PROTOCOL, "bad protocol") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 _(SEC_CHECK, "security check failed") \
304 _(ENCAP_SEC_CHECK, "encap security check failed") \
305 _(DECAP_SEC_CHECK, "decap security check failed") \
306 _(ICMP, "unable to translate ICMP") \
307 _(ICMP_RELAY, "unable to relay ICMP") \
308 _(UNKNOWN, "unknown") \
Ole Troancda94822016-01-07 14:37:25 +0100309 _(NO_BINDING, "no binding") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310 _(NO_DOMAIN, "no domain") \
311 _(FRAGMENTED, "packet is a fragment") \
312 _(FRAGMENT_MEMORY, "could not cache fragment") \
313 _(FRAGMENT_MALFORMED, "fragment has unexpected format")\
314 _(FRAGMENT_DROPPED, "dropped cached fragment") \
Ole Troan366ac6e2016-01-06 12:40:28 +0100315 _(MALFORMED, "malformed packet") \
Ole Troan9fb87552016-01-13 22:30:43 +0100316 _(DF_SET, "can't fragment, DF set")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317
318typedef enum {
319#define _(sym,str) MAP_ERROR_##sym,
320 foreach_map_error
321#undef _
322 MAP_N_ERROR,
323 } map_error_t;
324
325u64 map_error_counter_get(u32 node_index, map_error_t map_error);
326
327typedef struct {
328 u32 map_domain_index;
329 u16 port;
330} map_trace_t;
331
332map_main_t map_main;
333
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100334extern vlib_node_registration_t ip4_map_node;
335extern vlib_node_registration_t ip6_map_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100337extern vlib_node_registration_t ip4_map_t_node;
338extern vlib_node_registration_t ip4_map_t_fragmented_node;
339extern vlib_node_registration_t ip4_map_t_tcp_udp_node;
340extern vlib_node_registration_t ip4_map_t_icmp_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100342extern vlib_node_registration_t ip6_map_t_node;
343extern vlib_node_registration_t ip6_map_t_fragmented_node;
344extern vlib_node_registration_t ip6_map_t_tcp_udp_node;
345extern vlib_node_registration_t ip6_map_t_icmp_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
347/*
348 * map_get_pfx
349 */
350static_always_inline u64
351map_get_pfx (map_domain_t *d, u32 addr, u16 port)
352{
353 u16 psid = (port >> d->psid_shift) & d->psid_mask;
354
355 if (d->ea_bits_len == 0 && d->rules)
356 return clib_net_to_host_u64(d->rules[psid].as_u64[0]);
357
358 u32 suffix = (addr >> d->suffix_shift) & d->suffix_mask;
359 u64 ea = d->ea_bits_len == 0 ? 0 : (((u64) suffix << d->psid_length)) | psid;
360
361 return clib_net_to_host_u64(d->ip6_prefix.as_u64[0]) | ea << d->ea_shift;
362}
363
364static_always_inline u64
365map_get_pfx_net (map_domain_t *d, u32 addr, u16 port)
366{
367 return clib_host_to_net_u64(map_get_pfx(d, clib_net_to_host_u32(addr),
368 clib_net_to_host_u16(port)));
369}
370
371/*
372 * map_get_sfx
373 */
374static_always_inline u64
375map_get_sfx (map_domain_t *d, u32 addr, u16 port)
376{
377 u16 psid = (port >> d->psid_shift) & d->psid_mask;
378
379 /* Shared 1:1 mode. */
380 if (d->ea_bits_len == 0 && d->rules)
381 return clib_net_to_host_u64(d->rules[psid].as_u64[1]);
382 if (d->ip6_prefix_len == 128)
383 return clib_net_to_host_u64(d->ip6_prefix.as_u64[1]);
384
385 /* IPv4 prefix */
386 if (d->flags & MAP_DOMAIN_PREFIX)
Ole Troand575e692016-08-25 12:26:47 +0200387 return (u64) (addr & (0xFFFFFFFF << d->suffix_shift)) << 16;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
389 /* Shared or full IPv4 address */
390 return ((u64) addr << 16) | psid;
391}
392
393static_always_inline u64
394map_get_sfx_net (map_domain_t *d, u32 addr, u16 port)
395{
396 return clib_host_to_net_u64(map_get_sfx(d, clib_net_to_host_u32(addr),
397 clib_net_to_host_u16(port)));
398}
399
400static_always_inline u32
401map_get_ip4 (ip6_address_t *addr)
402{
403 return clib_host_to_net_u32(clib_net_to_host_u64(addr->as_u64[1]) >> 16);
404}
405
406/*
407 * Get the MAP domain from an IPv4 lookup adjacency.
408 */
409static_always_inline map_domain_t *
Neale Ranns9705c382017-02-20 20:29:41 -0800410ip4_map_get_domain (u32 mdi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411{
412 map_main_t *mm = &map_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100413
Neale Ranns9705c382017-02-20 20:29:41 -0800414 return pool_elt_at_index(mm->domains, mdi);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415}
416
417/*
418 * Get the MAP domain from an IPv6 lookup adjacency.
419 * If the IPv6 address or prefix is not shared, no lookup is required.
420 * The IPv4 address is used otherwise.
421 */
422static_always_inline map_domain_t *
Neale Ranns9705c382017-02-20 20:29:41 -0800423ip6_map_get_domain (u32 mdi,
424 ip4_address_t *addr,
425 u32 *map_domain_index,
426 u8 *error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427{
428 map_main_t *mm = &map_main;
Ole Troan366ac6e2016-01-06 12:40:28 +0100429
430 /*
431 * Disable direct MAP domain lookup on decap, until the security check is updated to verify IPv4 SA.
432 * (That's done implicitly when MAP domain is looked up in the IPv4 FIB)
433 */
434#ifdef MAP_NONSHARED_DOMAIN_ENABLED
Neale Ranns9705c382017-02-20 20:29:41 -0800435#error "How can you be sure this domain is not shared?"
436 *map_domain_index = mdi;
437 return pool_elt_at_index(mm->domains, mdi);
Ole Troan366ac6e2016-01-06 12:40:28 +0100438#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100440 u32 lbi = ip4_fib_forwarding_lookup(0, addr);
441 const dpo_id_t *dpo = load_balance_get_bucket(lbi, 0);
442 if (PREDICT_TRUE(dpo->dpoi_type == map_dpo_type ||
443 dpo->dpoi_type == map_t_dpo_type))
444 {
Neale Ranns9705c382017-02-20 20:29:41 -0800445 *map_domain_index = dpo->dpoi_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100446 return pool_elt_at_index(mm->domains, *map_domain_index);
447 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 *error = MAP_ERROR_NO_DOMAIN;
449 return NULL;
450}
451
452map_ip4_reass_t *
453map_ip4_reass_get(u32 src, u32 dst, u16 fragment_id,
454 u8 protocol, u32 **pi_to_drop);
455void
456map_ip4_reass_free(map_ip4_reass_t *r, u32 **pi_to_drop);
457
458#define map_ip4_reass_lock() while (__sync_lock_test_and_set(map_main.ip4_reass_lock, 1)) {}
459#define map_ip4_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip4_reass_lock = 0;} while(0)
460
461static_always_inline void
462map_ip4_reass_get_fragments(map_ip4_reass_t *r, u32 **pi)
463{
464 int i;
465 for (i=0; i<MAP_IP4_REASS_MAX_FRAGMENTS_PER_REASSEMBLY; i++)
466 if(r->fragments[i] != ~0) {
467 vec_add1(*pi, r->fragments[i]);
468 r->fragments[i] = ~0;
469 map_main.ip4_reass_buffered_counter--;
470 }
471}
472
473int map_ip4_reass_add_fragment(map_ip4_reass_t *r, u32 pi);
474
475map_ip6_reass_t *
476map_ip6_reass_get(ip6_address_t *src, ip6_address_t *dst, u32 fragment_id,
477 u8 protocol, u32 **pi_to_drop);
478void
479map_ip6_reass_free(map_ip6_reass_t *r, u32 **pi_to_drop);
480
481#define map_ip6_reass_lock() while (__sync_lock_test_and_set(map_main.ip6_reass_lock, 1)) {}
482#define map_ip6_reass_unlock() do {CLIB_MEMORY_BARRIER(); *map_main.ip6_reass_lock = 0;} while(0)
483
484int
485map_ip6_reass_add_fragment(map_ip6_reass_t *r, u32 pi,
486 u16 data_offset, u16 next_data_offset,
487 u8 *data_start, u16 data_len);
488
489void map_ip4_drop_pi(u32 pi);
490
491int map_ip4_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
492#define MAP_IP4_REASS_CONF_HT_RATIO_MAX 100
493int map_ip4_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
494#define MAP_IP4_REASS_CONF_POOL_SIZE_MAX (0xfeff)
495int map_ip4_reass_conf_lifetime(u16 lifetime_ms);
496#define MAP_IP4_REASS_CONF_LIFETIME_MAX 0xffff
497int map_ip4_reass_conf_buffers(u32 buffers);
498#define MAP_IP4_REASS_CONF_BUFFERS_MAX (0xffffffff)
499
500void map_ip6_drop_pi(u32 pi);
501
502
503int map_ip6_reass_conf_ht_ratio(f32 ht_ratio, u32 *trashed_reass, u32 *dropped_packets);
504#define MAP_IP6_REASS_CONF_HT_RATIO_MAX 100
505int map_ip6_reass_conf_pool_size(u16 pool_size, u32 *trashed_reass, u32 *dropped_packets);
506#define MAP_IP6_REASS_CONF_POOL_SIZE_MAX (0xfeff)
507int map_ip6_reass_conf_lifetime(u16 lifetime_ms);
508#define MAP_IP6_REASS_CONF_LIFETIME_MAX 0xffff
509int map_ip6_reass_conf_buffers(u32 buffers);
510#define MAP_IP6_REASS_CONF_BUFFERS_MAX (0xffffffff)
511
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
513#define u8_ptr_add(ptr, index) (((u8 *)ptr) + index)
514#define u16_net_add(u, val) clib_host_to_net_u16(clib_net_to_host_u16(u) + (val))
515
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516static_always_inline void
517ip4_map_t_embedded_address (map_domain_t *d,
518 ip6_address_t *ip6, const ip4_address_t *ip4)
519{
520 ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
521 ip6->as_u64[0] = d->ip6_src.as_u64[0];
522 ip6->as_u32[2] = d->ip6_src.as_u32[2];
523 ip6->as_u32[3] = ip4->as_u32;
524}
525
526static_always_inline u32
527ip6_map_t_embedded_address (map_domain_t *d, ip6_address_t *addr)
528{
529 ASSERT(d->ip6_src_len == 96); //No support for other lengths for now
530 return addr->as_u32[3];
531}
532
533static inline void
534map_domain_counter_lock (map_main_t *mm)
535{
536 if (mm->counter_lock)
537 while (__sync_lock_test_and_set(mm->counter_lock, 1))
538 /* zzzz */ ;
539}
540static inline void
541map_domain_counter_unlock (map_main_t *mm)
542{
543 if (mm->counter_lock)
544 *mm->counter_lock = 0;
545}
546
547
548static_always_inline void
549map_send_all_to_node(vlib_main_t *vm, u32 *pi_vector,
550 vlib_node_runtime_t *node, vlib_error_t *error,
551 u32 next)
552{
553 u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
554 //Deal with fragments that are ready
555 from = pi_vector;
556 n_left_from = vec_len(pi_vector);
557 next_index = node->cached_next_index;
558 while (n_left_from > 0) {
559 vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
560 while (n_left_from > 0 && n_left_to_next > 0) {
561 u32 pi0 = to_next[0] = from[0];
562 from += 1;
563 n_left_from -= 1;
564 to_next += 1;
565 n_left_to_next -= 1;
566 vlib_buffer_t *p0 = vlib_get_buffer(vm, pi0);
567 p0->error = *error;
568 vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, pi0, next);
569 }
570 vlib_put_next_frame(vm, node, next_index, n_left_to_next);
571 }
572}
Keith Burns (alagalah)06e3d072016-08-07 08:43:18 -0700573
574/*
575 * fd.io coding-style-patch-verification: ON
576 *
577 * Local Variables:
578 * eval: (c-set-style "gnu")
579 * End:
580 */