FD.io VPP  v16.06
Vector Packet Processing
ip6.h
Go to the documentation of this file.
1 /*
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  * ip/ip6.h: ip6 main include file
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_ip_ip6_h
41 #define included_ip_ip6_h
42 
43 #include <vlib/mc.h>
44 #include <vnet/ip/ip6_packet.h>
45 #include <vnet/ip/lookup.h>
46 
47 #include <vppinfra/bihash_24_8.h>
49 
50 /*
51  * Default size of the ip6 fib hash table
52  */
53 #define IP6_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
54 #define IP6_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20)
55 
56 typedef struct {
61 
62 typedef struct {
63  /* Table ID (hash key) for this FIB. */
65 
66  /* Index into FIB vector. */
68 
69  /* flow hash configuration */
71 } ip6_fib_t;
72 
73 struct ip6_main_t;
74 
76  (struct ip6_main_t * im,
77  uword opaque,
78  ip6_fib_t * fib,
79  u32 flags,
80  ip6_address_t * address,
81  u32 address_length,
82  void * old_result,
83  void * new_result);
84 
85 typedef struct {
90 
92  (struct ip6_main_t * im,
93  uword opaque,
94  u32 sw_if_index,
95  ip6_address_t * address,
96  u32 address_length,
97  u32 if_address_index,
98  u32 is_del);
99 
100 typedef struct {
104 
105 typedef enum {
106  /* First check access list to either permit or deny this
107  packet based on classification. */
109 
110  /* RPF check: verify that source address is reachable via
111  RX interface or via any interface. */
114 
115  /* IPSec */
117 
118  /* Intercept and decap L2TPv3 packets. */
120 
121  /* vPath forwarding: won't return to call next feature
122  so any feature needed before vPath forwarding must be prior
123  to this entry */
125 
126  /* Must be last: perform forwarding lookup. */
128 
131 
132 typedef struct ip6_main_t {
133  BVT(clib_bihash) ip6_lookup_table;
134 
136 
137  /* bitmap / refcounts / vector of mask widths to search */
141 
142  /* Vector of FIBs. */
144 
146 
147  /* Table index indexed by software interface. */
149 
150  /* Hash table mapping table id to fib index.
151  ID space is not necessarily dense; index space is dense. */
153 
154  /* Vector of functions to call when routes are added/deleted. */
156 
157  /* Hash table mapping interface rewrite adjacency index by sw if index. */
159 
160  /* Functions to call when interface address changes. */
162 
163  /* Template used to generate IP6 neighbor solicitation packets. */
165 
166  /* ip6 lookup table config parameters */
169 
170  /* Seed for Jenkins hash used to compute ip6 flow hash. */
172 
173  struct {
174  /* TTL to use for host generated packets. */
176 
177  u8 pad[3];
178  } host_config;
179 } ip6_main_t;
180 
181 /* Global ip6 main structure. */
182 extern ip6_main_t ip6_main;
183 
184 /* Global ip6 input node. Errors get attached to ip6 input node. */
189 
191 
192 /* ipv6 neighbor discovery - timer/event types */
193 typedef enum {
196 
197 typedef union {
199  struct {
202  } up_down_event;
204 
205 u32 ip6_fib_lookup (ip6_main_t * im, u32 sw_if_index, ip6_address_t * dst);
206 u32 ip6_fib_lookup_with_table (ip6_main_t * im, u32 fib_index,
207  ip6_address_t * dst);
208 
209 /**
210  * \brief Get or create an IPv6 fib.
211  *
212  * Get or create an IPv6 fib with the provided fib ID or index.
213  * The fib ID is a possibly-sparse user-defined value while
214  * the fib index defines the position of the fib in the fib vector.
215  *
216  * \param im
217  * ip6_main pointer.
218  * \param table_index_or_id
219  * The table index if \c IP6_ROUTE_FLAG_FIB_INDEX bit is set in \p flags.
220  * Otherwise, when set to \c ~0, an arbitrary and unused fib ID is picked
221  * and can be retrieved with \c ret->table_id.
222  * Otherwise, it is the fib ID to be used to retrieve or create the desired fib.
223  * \param flags
224  * Indicates whether \p table_index_or_id is the fib index or ID.
225  * When the bit \c IP6_ROUTE_FLAG_FIB_INDEX is set, \p table_index_or_id
226  * is considered as the fib index, and the fib ID otherwise.
227  * \return A pointer to the retrieved or created fib.
228  *
229  * \remark When getting a fib with the fib index, the fib MUST already exist.
230  */
232  u32 table_index_or_id,
233  u32 flags);
234 
237  ip6_address_t * key,
238  ip6_address_t * dest,
239  uword dest_length)
240 {
241  int i;
242  for (i = 0; i < ARRAY_LEN (key->as_uword); i++)
243  {
244  if ((key->as_uword[i] ^ dest->as_uword[i]) & im->fib_masks[dest_length].as_uword[i])
245  return 0;
246  }
247  return 1;
248 }
249 
252  ip6_address_t * key,
254 {
256  return ip6_destination_matches_route (im, key, a, ia->address_length);
257 }
258 
259 /* As above but allows for unaligned destinations (e.g. works right from IP header of packet). */
262  ip6_address_t * key,
263  ip6_address_t * dest,
264  uword dest_length)
265 {
266  int i;
267  for (i = 0; i < ARRAY_LEN (key->as_uword); i++)
268  {
269  if ((clib_mem_unaligned (&key->as_uword[i], uword) ^ dest->as_uword[i]) & im->fib_masks[dest_length].as_uword[i])
270  return 0;
271  }
272  return 1;
273 }
274 
275 always_inline void
277 {
278  ip_lookup_main_t * lm = &im->lookup_main;
279  ip_interface_address_t * ia = ip_interface_address_for_packet (lm, p, sw_if_index);
281  *src = a[0];
282 }
283 
286 {
287  if (vnet_buffer (b)->ip.adj_index[VLIB_RX] == ~0)
288  vnet_buffer (b)->ip.adj_index[VLIB_RX]
289  = ip6_fib_lookup (im, vnet_buffer (b)->sw_if_index[VLIB_RX],
290  &i->src_address);
291  return vnet_buffer (b)->ip.adj_index[VLIB_RX];
292 }
293 
294 /* Find interface address which matches destination. */
297  ip_interface_address_t ** result_ia)
298 {
299  ip_lookup_main_t * lm = &im->lookup_main;
301  ip6_address_t * result = 0;
302 
303  foreach_ip_interface_address (lm, ia, sw_if_index,
304  1 /* honor unnumbered */,
305  ({
307  if (ip6_destination_matches_route (im, dst, a, ia->address_length))
308  {
309  result = a;
310  break;
311  }
312  }));
313  if (result_ia)
314  *result_ia = result ? ia : 0;
315  return result;
316 }
317 
318 clib_error_t *
320  ip6_address_t * address, u32 address_length,
321  u32 is_del);
322 
324 
325 /* Add/del a route to the FIB. */
326 
327 #define IP6_ROUTE_FLAG_ADD (0 << 0)
328 #define IP6_ROUTE_FLAG_DEL (1 << 0)
329 #define IP6_ROUTE_FLAG_TABLE_ID (0 << 1)
330 #define IP6_ROUTE_FLAG_FIB_INDEX (1 << 1)
331 #define IP6_ROUTE_FLAG_KEEP_OLD_ADJACENCY (1 << 2)
332 #define IP6_ROUTE_FLAG_NO_REDISTRIBUTE (1 << 3)
333 #define IP6_ROUTE_FLAG_NOT_LAST_IN_GROUP (1 << 4)
334 /* Dynamic route created via neighbor discovery. */
335 #define IP6_ROUTE_FLAG_NEIGHBOR (1 << 5)
336 
337 typedef struct {
338  /* IP6_ROUTE_FLAG_* */
340 
341  /* Either index of fib or table_id to hash and get fib.
342  IP6_ROUTE_FLAG_FIB_INDEX specifies index; otherwise table_id is assumed. */
344 
345  /* Destination address (prefix) and length. */
348 
349  /* Adjacency to use for this destination. */
351 
352  /* If specified adjacencies to add and then
353  use for this destination. add_adj/n_add_adj
354  are override adj_index if specified. */
358 
360 
362  u32 flags,
363  ip6_address_t * dst_address,
364  u32 dst_address_length,
365  ip6_address_t * next_hop,
366  u32 next_hop_sw_if_index,
367  u32 next_hop_weight, u32 adj_index,
368  u32 explicit_fib_index);
369 u32
371  u32 fib_index_or_table_id,
372  u32 flags,
373  ip6_address_t * address,
374  u32 address_length);
375 
376 void
378  u32 table_index_or_table_id,
379  u32 flags,
380  ip6_address_t * address,
381  u32 address_length,
382  ip6_address_t ** results,
383  u8 ** result_length);
384 
386  u32 table_index_or_table_id,
387  u32 flags,
388  ip6_address_t * address,
389  u32 address_length);
390 
392  u32 table_index_or_table_id,
393  u32 flags);
394 
396  ip_adjacency_t * adj,
397  u32 sw_if_index,
398  u32 if_address_index);
399 
400 u32
401 vnet_ip6_neighbor_glean_add(u32 fib_index, void * next_hop_arg);
402 
403 clib_error_t *
404 ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index);
405 
406 clib_error_t *
407 ip6_set_neighbor_limit (u32 neighbor_limit);
408 
409 uword
411  u16 dst_port,
412  u32 next_node_index);
413 
414 u16 ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0, ip6_header_t * ip0, int *bogus_lengthp);
415 
416 void ip6_register_protocol (u32 protocol, u32 node_index);
417 
419 
420 int
422  u32 sw_if_index,
423  ip6_address_t * a,
424  u8 * link_layer_address,
425  uword n_bytes_link_layer_address,
426  int is_static);
427 int
429  u32 sw_if_index,
430  ip6_address_t * a,
431  u8 * link_layer_address,
432  uword n_bytes_link_layer_address);
433 void
434 vnet_ip6_fib_init (ip6_main_t * im, u32 fib_index);
435 
436 void
438  u8 *mac);
439 
440 void
442  ip6_address_t *ip);
443 
444 int vnet_set_ip6_flow_hash (u32 table_id, u32 flow_hash_config);
445 
446 int
447 ip6_neighbor_ra_config(vlib_main_t * vm, u32 sw_if_index,
448  u8 surpress, u8 managed, u8 other,
449  u8 ll_option, u8 send_unicast, u8 cease,
450  u8 use_lifetime, u32 lifetime,
451  u32 initial_count, u32 initial_interval,
452  u32 max_interval, u32 min_interval,
453  u8 is_no);
454 
455 int
456 ip6_neighbor_ra_prefix(vlib_main_t * vm, u32 sw_if_index,
457  ip6_address_t *prefix_addr, u8 prefix_len,
458  u8 use_default, u32 val_lifetime, u32 pref_lifetime,
459  u8 no_advertise, u8 off_link, u8 no_autoconfig, u8 no_onlink,
460  u8 is_no);
461 
462 
463 clib_error_t *
465  u32 sw_if_index);
466 
467 clib_error_t *
469  u32 sw_if_index);
470 
471 int
473  u32 sw_if_index);
474 
475 clib_error_t *
477  u32 sw_if_index,
478  ip6_address_t *address,
479  u8 address_length);
480 
482  void * address_arg,
483  uword node_index,
484  uword type_opaque,
485  uword data);
486 
487 int vnet_set_ip6_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
488  u32 table_index);
490 
491 /* Compute flow hash. We'll use it to select which Sponge to use for this
492  flow. And other things. */
494 ip6_compute_flow_hash (ip6_header_t * ip, u32 flow_hash_config)
495 {
496  tcp_header_t * tcp = (void *) (ip + 1);
497  u64 a, b, c;
498  u64 t1, t2;
499  uword is_tcp_udp = (ip->protocol == IP_PROTOCOL_TCP
500  || ip->protocol == IP_PROTOCOL_UDP);
501 
502  t1 = (ip->src_address.as_u64[0] ^ ip->src_address.as_u64[1]);
503  t1 = (flow_hash_config & IP_FLOW_HASH_SRC_ADDR) ? t1 : 0;
504 
505  t2 = (ip->dst_address.as_u64[0] ^ ip->dst_address.as_u64[1]);
506  t2 = (flow_hash_config & IP_FLOW_HASH_DST_ADDR) ? t2 : 0;
507 
508  a = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t2 : t1;
509  b = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t1 : t2;
510  b ^= (flow_hash_config & IP_FLOW_HASH_PROTO) ? ip->protocol : 0;
511 
512  t1 = is_tcp_udp ? tcp->ports.src : 0;
513  t2 = is_tcp_udp ? tcp->ports.dst : 0;
514 
515  t1 = (flow_hash_config & IP_FLOW_HASH_SRC_PORT) ? t1 : 0;
516  t2 = (flow_hash_config & IP_FLOW_HASH_DST_PORT) ? t2 : 0;
517 
518  c = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ?
519  ((t1<<16) | t2) : ((t2<<16) | t1);
520 
521  hash_mix64 (a, b, c);
522  return (u32) c;
523 }
524 
525 #endif /* included_ip_ip6_h */
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: lookup.h:534
void( ip6_add_del_interface_address_function_t)(struct ip6_main_t *im, uword opaque, u32 sw_if_index, ip6_address_t *address, u32 address_length, u32 if_address_index, u32 is_del)
Definition: ip6.h:92
u8 pad[3]
Definition: ip6.h:177
int ip6_address_compare(ip6_address_t *a1, ip6_address_t *a2)
Definition: ip46_cli.c:45
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
always_inline uword ip6_destination_matches_interface(ip6_main_t *im, ip6_address_t *key, ip_interface_address_t *ia)
Definition: ip6.h:251
a
Definition: bitmap.h:393
void ip6_register_protocol(u32 protocol, u32 node_index)
Definition: ip6_forward.c:1908
#define IP_FLOW_HASH_SRC_PORT
Definition: lookup.h:131
uword lookup_table_size
Definition: ip6.h:168
static void(BVT(clib_bihash)*h, BVT(clib_bihash_value)*v)
int vnet_set_ip6_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 table_index)
Definition: ip6_forward.c:2758
u32 flow_hash_seed
Definition: ip6.h:171
u64 as_u64[2]
Definition: ip6_packet.h:50
i32 dst_address_length_refcounts[129]
Definition: ip6.h:140
int ip6_neighbor_ra_prefix(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *prefix_addr, u8 prefix_len, u8 use_default, u32 val_lifetime, u32 pref_lifetime, u8 no_advertise, u8 off_link, u8 no_autoconfig, u8 no_onlink, u8 is_no)
#define IP_FLOW_HASH_REVERSE_SRC_DST
Definition: lookup.h:133
int ip6_neighbor_ra_config(vlib_main_t *vm, u32 sw_if_index, u8 surpress, u8 managed, u8 other, u8 ll_option, u8 send_unicast, u8 cease, u8 use_lifetime, u32 lifetime, u32 initial_count, u32 initial_interval, u32 max_interval, u32 min_interval, u8 is_no)
u8 ttl
Definition: ip6.h:175
vlib_node_registration_t ip6_rewrite_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_node)
Definition: ip6_forward.c:2461
union tcp_header_t::@119 ports
struct _vlib_node_registration vlib_node_registration_t
#define IP_FLOW_HASH_DST_PORT
Definition: lookup.h:132
always_inline u32 ip6_compute_flow_hash(ip6_header_t *ip, u32 flow_hash_config)
Definition: ip6.h:494
ip6_address_t src_address
Definition: ip6_packet.h:293
uword as_uword[16/sizeof(uword)]
Definition: ip6_packet.h:51
u32 vrf_index
Definition: ip6.h:59
always_inline void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: lookup.h:513
vlib_packet_template_t discover_neighbor_packet_template
Definition: ip6.h:164
vlib_node_registration_t ip6_discover_neighbor_node
(constructor) VLIB_REGISTER_NODE (ip6_discover_neighbor_node)
Definition: ip6_forward.c:2111
#define IP_FLOW_HASH_DST_ADDR
Definition: lookup.h:129
#define always_inline
Definition: clib.h:84
void ip6_adjacency_set_interface_route(vnet_main_t *vnm, ip_adjacency_t *adj, u32 sw_if_index, u32 if_address_index)
Definition: ip6_forward.c:945
void ip6_foreach_matching_route(ip6_main_t *im, u32 table_index_or_table_id, u32 flags, ip6_address_t *address, u32 address_length, ip6_address_t **results, u8 **result_length)
Definition: ip6_forward.c:547
int i32
Definition: types.h:81
ip6_fib_t * find_ip6_fib_by_table_index_or_id(ip6_main_t *im, u32 table_index_or_id, u32 flags)
Get or create an IPv6 fib.
Definition: ip6_forward.c:185
int ip6_interface_enabled(vlib_main_t *vm, u32 sw_if_index)
u32 table_index_or_table_id
Definition: ip6.h:343
unsigned long u64
Definition: types.h:89
clib_error_t * ip6_set_neighbor_limit(u32 neighbor_limit)
uword ip6_udp_register_listener(vlib_main_t *vm, u16 dst_port, u32 next_node_index)
struct ip6_main_t::@108 host_config
always_inline void ip6_src_address_for_packet(ip6_main_t *im, vlib_buffer_t *p, ip6_address_t *src, u32 sw_if_index)
Definition: ip6.h:276
ip6_fib_t * fibs
Definition: ip6.h:143
void ip6_add_del_route(ip6_main_t *im, ip6_add_del_route_args_t *args)
Definition: ip6_forward.c:208
clib_error_t * ip6_probe_neighbor(vlib_main_t *vm, ip6_address_t *dst, u32 sw_if_index)
Definition: ip6_forward.c:2129
u32 lookup_table_nbuckets
Definition: ip6.h:167
vlib_node_registration_t ip6_icmp_neighbor_discovery_event_node
int vnet_set_ip6_ethernet_neighbor(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *a, u8 *link_layer_address, uword n_bytes_link_layer_address, int is_static)
Definition: ip6_neighbor.c:326
ip6_address_t dst_address
Definition: ip6.h:346
void ip6_maybe_remap_adjacencies(ip6_main_t *im, u32 table_index_or_table_id, u32 flags)
Definition: ip6_forward.c:601
ip6_icmp_neighbor_discovery_event_type_t
Definition: ip6.h:193
vlib_node_registration_t ip6_input_node
(constructor) VLIB_REGISTER_NODE (ip6_input_node)
Definition: ip6_input.c:289
ip_adjacency_t * add_adj
Definition: ip6.h:355
clib_error_t * set_ip6_link_local_address(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *address, u8 address_length)
void ip6_ethernet_mac_address_from_link_local_address(u8 *mac, ip6_address_t *ip)
Definition: ip6_forward.c:2630
u32 index
Definition: ip6.h:67
u32 ip6_get_route(ip6_main_t *im, u32 fib_index_or_table_id, u32 flags, ip6_address_t *address, u32 address_length)
Definition: ip6_forward.c:523
always_inline ip_interface_address_t * ip_interface_address_for_packet(ip_lookup_main_t *lm, vlib_buffer_t *b, u32 sw_if_index)
Definition: lookup.h:517
always_inline uword ip6_unaligned_destination_matches_route(ip6_main_t *im, ip6_address_t *key, ip6_address_t *dest, uword dest_length)
Definition: ip6.h:261
ip6_add_del_interface_address_callback_t * add_del_interface_address_callbacks
Definition: ip6.h:161
void ip6_link_local_address_from_ethernet_mac_address(ip6_address_t *ip, u8 *mac)
Definition: ip6_forward.c:2614
uword * fib_index_by_table_id
Definition: ip6.h:152
ip6_address_t fib_masks[129]
Definition: ip6.h:145
void( ip6_add_del_route_function_t)(struct ip6_main_t *im, uword opaque, ip6_fib_t *fib, u32 flags, ip6_address_t *address, u32 address_length, void *old_result, void *new_result)
Definition: ip6.h:76
#define hash_mix64(a0, b0, c0)
Definition: hash.h:466
uword * non_empty_dst_address_length_bitmap
Definition: ip6.h:138
Definition: ip6.h:62
BVT(clib_bihash) ip6_lookup_table
u32 ip6_fib_lookup_with_table(ip6_main_t *im, u32 fib_index, ip6_address_t *dst)
Definition: ip6_forward.c:61
u32 dst_address_length
Definition: ip6.h:58
#define ARRAY_LEN(x)
Definition: clib.h:59
clib_error_t * enable_ip6_interface(vlib_main_t *vm, u32 sw_if_index)
void ip6_add_del_route_next_hop(ip6_main_t *im, u32 flags, ip6_address_t *dst_address, u32 dst_address_length, ip6_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_weight, u32 adj_index, u32 explicit_fib_index)
Definition: ip6_forward.c:301
void ip6_delete_matching_routes(ip6_main_t *im, u32 table_index_or_table_id, u32 flags, ip6_address_t *address, u32 address_length)
Definition: ip6_forward.c:620
ip6_address_t addr
Definition: ip6.h:57
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
Definition: ip6_forward.c:1544
vlib_node_registration_t ip6_lookup_node
(constructor) VLIB_REGISTER_NODE (ip6_lookup_node)
Definition: ip6_forward.c:1267
#define IP_FLOW_HASH_SRC_ADDR
Definition: lookup.h:128
unsigned int u32
Definition: types.h:88
serialize_function_t serialize_vnet_ip6_main
Definition: ip6.h:418
#define vnet_buffer(b)
Definition: buffer.h:300
ip6_main_t ip6_main
Definition: ip6_forward.c:2490
ip_lookup_main_t lookup_main
Definition: ip6.h:135
u8 * prefix_lengths_in_search_order
Definition: ip6.h:139
struct ip6_main_t ip6_main_t
void vnet_ip6_fib_init(ip6_main_t *im, u32 fib_index)
Definition: ip6_forward.c:101
int vnet_unset_ip6_ethernet_neighbor(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *a, u8 *link_layer_address, uword n_bytes_link_layer_address)
Definition: ip6_neighbor.c:462
u64 uword
Definition: types.h:112
void vnet_register_ip6_neighbor_resolution_event(vnet_main_t *vnm, void *address_arg, uword node_index, uword type_opaque, uword data)
unsigned short u16
Definition: types.h:57
serialize_function_t unserialize_vnet_ip6_main
Definition: ip6.h:418
void( serialize_function_t)(serialize_main_t *m, va_list *va)
Definition: serialize.h:154
unsigned char u8
Definition: types.h:56
ip6_add_del_route_callback_t * add_del_route_callbacks
Definition: ip6.h:155
int vnet_set_ip6_flow_hash(u32 table_id, u32 flow_hash_config)
Definition: ip6_forward.c:2669
u32 flow_hash_config
Definition: ip6.h:70
#define clib_mem_unaligned(pointer, type)
Definition: types.h:153
uword * interface_route_adj_index_by_sw_if_index
Definition: ip6.h:158
vlib_node_registration_t ip6_rewrite_local_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_local_node)
Definition: ip6_forward.c:2474
ip6_rx_feature_type_t
Definition: ip6.h:105
always_inline u32 ip6_src_lookup_for_packet(ip6_main_t *im, vlib_buffer_t *b, ip6_header_t *i)
Definition: ip6.h:285
u32 vnet_ip6_neighbor_glean_add(u32 fib_index, void *next_hop_arg)
Definition: ip6_neighbor.c:518
#define IP_FLOW_HASH_PROTO
Definition: lookup.h:130
u32 table_id
Definition: ip6.h:64
clib_error_t * ip6_add_del_interface_address(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *address, u32 address_length, u32 is_del)
Definition: ip6_forward.c:1155
u32 flags
Definition: vhost-user.h:73
clib_error_t * disable_ip6_interface(vlib_main_t *vm, u32 sw_if_index)
always_inline uword ip6_destination_matches_route(ip6_main_t *im, ip6_address_t *key, ip6_address_t *dest, uword dest_length)
Definition: ip6.h:236
always_inline ip6_address_t * ip6_interface_address_matching_destination(ip6_main_t *im, ip6_address_t *dst, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: ip6.h:296
u32 * fib_index_by_sw_if_index
Definition: ip6.h:148
Definition: defs.h:45
u32 ip6_fib_lookup(ip6_main_t *im, u32 sw_if_index, ip6_address_t *dst)
Definition: ip6_forward.c:94
ip6_address_t dst_address
Definition: ip6_packet.h:293