FD.io VPP  v16.09
Vector Packet Processing
ip4.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/ip4.h: ip4 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_ip4_h
41 #define included_ip_ip4_h
42 
43 #include <vnet/ip/ip4_mtrie.h>
44 #include <vnet/ip/ip4_packet.h>
45 #include <vnet/ip/lookup.h>
47 
48 typedef struct ip4_fib_t {
49  /* Hash table for each prefix length mapping. */
51 
52  /* Temporary vectors for holding new/old values for hash_set. */
54 
55  /* Mtrie for fast lookups. Hash is used to maintain overlapping prefixes. */
57 
58  /* Table ID (hash key) for this FIB. */
60 
61  /* Index into FIB vector. */
63 
64  /* flow hash configuration */
66 
67  /* N-tuple classifier indices */
70 
71 } ip4_fib_t;
72 
73 struct ip4_main_t;
74 
75 typedef void (ip4_add_del_route_function_t)
76  (struct ip4_main_t * im,
77  uword opaque,
78  ip4_fib_t * fib,
79  u32 flags,
80  ip4_address_t * address,
81  u32 address_length,
82  void * old_result,
83  void * new_result);
84 
85 typedef struct {
90 
92  (struct ip4_main_t * im,
93  uword opaque,
94  u32 sw_if_index,
95  ip4_address_t * address,
96  u32 address_length,
97  u32 if_address_index,
98  u32 is_del);
99 
100 typedef struct {
104 
105 /**
106  * @brief IPv4 main type.
107  *
108  * State of IPv4 VPP processing including:
109  * - FIBs
110  * - Feature indices used in feature topological sort
111  * - Feature node run time references
112  */
113 
114 typedef struct ip4_main_t {
116 
117  /** Vector of FIBs. */
119 
120  u32 fib_masks[33];
121 
122  /** Table index indexed by software interface. */
124 
125  /** Hash table mapping table id to fib index.
126  ID space is not necessarily dense; index space is dense. */
128 
129  /** Vector of functions to call when routes are added/deleted. */
131 
132  /** Hash table mapping interface route rewrite adjacency index by sw if index. */
134 
135  /** Functions to call when interface address changes. */
137 
138  /** Template used to generate IP4 ARP packets. */
140 
141  /** Feature path configuration lists */
144 
145  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
147  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
149  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
151  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
153  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
155  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
157  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
159  /** Built-in unicast feature path indice, see @ref ip_feature_init_cast() */
161 
162  /** Built-in multicast feature path indices */
164  /** Built-in multicast feature path indices */
166 
167  /** Save results for show command */
168  char ** feature_nodes[VNET_N_CAST];
169 
170  /** Seed for Jenkins hash used to compute ip4 flow hash. */
172 
173  /** @brief Template information for VPP generated packets */
174  struct {
175  /** TTL to use for host generated packets. */
177 
178  /** TOS byte to use for host generated packets. */
180 
181  u8 pad[2];
182  } host_config;
183 } ip4_main_t;
184 
185 /** Global ip4 main structure. */
186 extern ip4_main_t ip4_main;
187 
188 #define VNET_IP4_UNICAST_FEATURE_INIT(x,...) \
189  __VA_ARGS__ vnet_ip_feature_registration_t uc_##x; \
190 static void __vnet_add_feature_registration_uc_##x (void) \
191  __attribute__((__constructor__)) ; \
192 static void __vnet_add_feature_registration_uc_##x (void) \
193 { \
194  ip4_main_t * im = &ip4_main; \
195  uc_##x.next = im->next_uc_feature; \
196  im->next_uc_feature = &uc_##x; \
197 } \
198 __VA_ARGS__ vnet_ip_feature_registration_t uc_##x
199 
200 #define VNET_IP4_MULTICAST_FEATURE_INIT(x,...) \
201  __VA_ARGS__ vnet_ip_feature_registration_t mc_##x; \
202 static void __vnet_add_feature_registration_mc_##x (void) \
203  __attribute__((__constructor__)) ; \
204 static void __vnet_add_feature_registration_mc_##x (void) \
205 { \
206  ip4_main_t * im = &ip4_main; \
207  mc_##x.next = im->next_mc_feature; \
208  im->next_mc_feature = &mc_##x; \
209 } \
210 __VA_ARGS__ vnet_ip_feature_registration_t mc_##x
211 
212 
213 /** Global ip4 input node. Errors get attached to ip4 input node. */
219 
221  u32 disable_default_route);
222 
225  vlib_buffer_t * b)
226 {
227  return ip4_fib_lookup_with_table (im, fib_index, dst,
228  /* disable_default_route */ 0);
229 }
230 
232 ip4_fib_lookup (ip4_main_t * im, u32 sw_if_index, ip4_address_t * dst)
233 {
234  u32 fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
235  return ip4_fib_lookup_with_table (im, fib_index, dst,
236  /* disable_default_route */ 0);
237 }
238 
241  ip4_address_t * key,
242  ip4_address_t * dest,
243  uword dest_length)
244 { return 0 == ((key->data_u32 ^ dest->data_u32) & im->fib_masks[dest_length]); }
245 
248  ip4_address_t * key,
250 {
252  return ip4_destination_matches_route (im, key, a, ia->address_length);
253 }
254 
255 /* As above but allows for unaligned destinations (e.g. works right from IP header of packet). */
258  ip4_address_t * key,
259  ip4_address_t * dest,
260  uword dest_length)
261 { return 0 == ((clib_mem_unaligned (&key->data_u32, u32) ^ dest->data_u32) & im->fib_masks[dest_length]); }
262 
263 always_inline int
265 {
266  ip_lookup_main_t * lm = &im->lookup_main;
267  ip_interface_address_t * ia = ip_interface_address_for_packet (lm, p, sw_if_index);
268  if (ia == NULL)
269  return -1;
271  *src = a[0];
272  return 0;
273 }
274 
275 /* Find interface address which matches destination. */
278  ip_interface_address_t ** result_ia)
279 {
280  ip_lookup_main_t * lm = &im->lookup_main;
282  ip4_address_t * result = 0;
283 
284  foreach_ip_interface_address (lm, ia, sw_if_index,
285  1 /* honor unnumbered */,
286  ({
288  if (ip4_destination_matches_route (im, dst, a, ia->address_length))
289  {
290  result = a;
291  break;
292  }
293  }));
294  if (result_ia)
295  *result_ia = result ? ia : 0;
296  return result;
297 }
298 
299 clib_error_t *
301  ip4_address_t * address, u32 address_length,
302  u32 is_del);
303 
305 
306 /* Add/del a route to the FIB. */
307 
308 #define IP4_ROUTE_FLAG_ADD (0 << 0)
309 #define IP4_ROUTE_FLAG_DEL (1 << 0)
310 #define IP4_ROUTE_FLAG_TABLE_ID (0 << 1)
311 #define IP4_ROUTE_FLAG_FIB_INDEX (1 << 1)
312 #define IP4_ROUTE_FLAG_KEEP_OLD_ADJACENCY (1 << 2)
313 #define IP4_ROUTE_FLAG_NO_REDISTRIBUTE (1 << 3)
314 /* Not last add/del in group. Facilities batching requests into packets. */
315 #define IP4_ROUTE_FLAG_NOT_LAST_IN_GROUP (1 << 4)
316 /* Dynamic route created via ARP reply. */
317 #define IP4_ROUTE_FLAG_NEIGHBOR (1 << 5)
318 
319 typedef struct {
320  /* IP4_ROUTE_FLAG_* */
322 
323  /* Either index of fib or table_id to hash and get fib.
324  IP4_ROUTE_FLAG_FIB_INDEX specifies index; otherwise table_id is assumed. */
326 
327  /* Destination address (prefix) and length. */
330 
331  /* Adjacency to use for this destination. */
333 
334  /* If specified adjacencies to add and then
335  use for this destination. add_adj/n_add_adj
336  are override adj_index if specified. */
340 
341 /**
342  * \brief Get or create an IPv4 fib.
343  *
344  * Get or create an IPv4 fib with the provided fib ID or index.
345  * The fib ID is a possibly-sparse user-defined value while
346  * the fib index defines the position of the fib in the fib vector.
347  *
348  * \param im
349  * ip4_main pointer.
350  * \param table_index_or_id
351  * The table index if \c IP4_ROUTE_FLAG_FIB_INDEX bit is set in \p flags.
352  * Otherwise, when set to \c ~0, an arbitrary and unused fib ID is picked
353  * and can be retrieved with \c ret->table_id.
354  * Otherwise, the fib ID to be used to retrieve or create the desired fib.
355  * \param flags
356  * Indicates whether \p table_index_or_id is the fib index or ID.
357  * When the bit \c IP4_ROUTE_FLAG_FIB_INDEX is set, \p table_index_or_id
358  * is considered as the fib index, and the fib ID otherwise.
359  * \returns A pointer to the retrieved or created fib.
360  *
361  * \remark When getting a fib with the fib index, the fib MUST already exist.
362  */
363 ip4_fib_t *
365  u32 table_index_or_id, u32 flags);
366 
368 
370  u32 flags,
371  ip4_address_t * dst_address,
372  u32 dst_address_length,
373  ip4_address_t * next_hop,
374  u32 next_hop_sw_if_index,
375  u32 next_hop_weight, u32 adj_index,
376  u32 explicit_fib_index);
377 
378 u32
380  u32 fib_index,
381  ip4_address_t *next_hop,
382  u32 next_hop_sw_if_index,
383  u32 explicit_fib_index);
384 
385 void *
387  u32 fib_index_or_table_id,
388  u32 flags,
389  u8 * address,
390  u32 address_length);
391 
392 void
394  u32 table_index_or_table_id,
395  u32 flags,
396  ip4_address_t * address,
397  u32 address_length,
398  ip4_address_t ** results,
399  u8 ** result_lengths);
400 
402  u32 table_index_or_table_id,
403  u32 flags,
404  ip4_address_t * address,
405  u32 address_length);
406 
408  u32 table_index_or_table_id,
409  u32 flags);
410 
412  ip_adjacency_t * adj,
413  u32 sw_if_index,
414  u32 if_address_index);
415 
417 ip4_interface_first_address (ip4_main_t * im, u32 sw_if_index,
418  ip_interface_address_t ** result_ia);
419 
420 /* Send an ARP request to see if given destination is reachable on given interface. */
421 clib_error_t *
422 ip4_probe_neighbor (vlib_main_t * vm, ip4_address_t * dst, u32 sw_if_index);
423 
424 clib_error_t *
425 ip4_set_arp_limit (u32 arp_limit);
426 
427 uword
429  u16 dst_port,
430  u32 next_node_index);
431 
432 void
434  u32 node_index);
435 
437 
438 void ip4_register_protocol (u32 protocol, u32 node_index);
439 
441 
443 
445 
446 int vnet_set_ip4_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
447  u32 table_index);
448 
449 /* Compute flow hash. We'll use it to select which adjacency to use for this
450  flow. And other things. */
453 {
454  tcp_header_t * tcp = (void *) (ip + 1);
455  u32 a, b, c, t1, t2;
456  uword is_tcp_udp = (ip->protocol == IP_PROTOCOL_TCP
457  || ip->protocol == IP_PROTOCOL_UDP);
458 
459  t1 = (flow_hash_config & IP_FLOW_HASH_SRC_ADDR)
460  ? ip->src_address.data_u32 : 0;
461  t2 = (flow_hash_config & IP_FLOW_HASH_DST_ADDR)
462  ? ip->dst_address.data_u32 : 0;
463 
464  a = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t2 : t1;
465  b = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ? t1 : t2;
466  b ^= (flow_hash_config & IP_FLOW_HASH_PROTO) ? ip->protocol : 0;
467 
468  t1 = is_tcp_udp ? tcp->ports.src : 0;
469  t2 = is_tcp_udp ? tcp->ports.dst : 0;
470 
471  t1 = (flow_hash_config & IP_FLOW_HASH_SRC_PORT) ? t1 : 0;
472  t2 = (flow_hash_config & IP_FLOW_HASH_DST_PORT) ? t2 : 0;
473 
474  c = (flow_hash_config & IP_FLOW_HASH_REVERSE_SRC_DST) ?
475  (t1<<16) | t2 : (t2<<16) | t1;
476 
477  hash_v3_mix32 (a, b, c);
478  hash_v3_finalize32 (a, b, c);
479 
480  return c;
481 }
482 
483 #endif /* included_ip_ip4_h */
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: lookup.h:622
ip4_fib_t * find_ip4_fib_by_table_index_or_id(ip4_main_t *im, u32 table_index_or_id, u32 flags)
Get or create an IPv4 fib.
Definition: ip4_forward.c:120
static 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:605
u8 pad[3]
log2 (size of the packing page block)
Definition: bihash_doc.h:61
u32 ip4_multicast_rx_feature_vpath
Built-in multicast feature path indices.
Definition: ip4.h:163
u32 ip4_route_get_next_hop_adj(ip4_main_t *im, u32 fib_index, ip4_address_t *next_hop, u32 next_hop_sw_if_index, u32 explicit_fib_index)
Definition: ip4_forward.c:307
ip4_add_del_interface_address_callback_t * add_del_interface_address_callbacks
Functions to call when interface address changes.
Definition: ip4.h:136
a
Definition: bitmap.h:516
u32 ip4_unicast_rx_feature_source_reachable_via_any
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:150
void ip4_add_del_route_next_hop(ip4_main_t *im, u32 flags, ip4_address_t *dst_address, u32 dst_address_length, ip4_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_weight, u32 adj_index, u32 explicit_fib_index)
Definition: ip4_forward.c:385
#define IP_FLOW_HASH_SRC_PORT
Definition: lookup.h:145
ip4_address_t src_address
Definition: ip4_packet.h:138
uword * interface_route_adj_index_by_sw_if_index
Hash table mapping interface route rewrite adjacency index by sw if index.
Definition: ip4.h:133
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
serialize_function_t serialize_vnet_ip4_main
Definition: ip4.h:440
u32 table_id
Definition: ip4.h:59
IP unicast adjacency.
Definition: lookup.h:164
static uword ip4_destination_matches_route(ip4_main_t *im, ip4_address_t *key, ip4_address_t *dest, uword dest_length)
Definition: ip4.h:240
Definitions for all things IP (v4|v6) unicast and multicast lookup related.
#define NULL
Definition: clib.h:55
ip4_address_t * ip4_interface_first_address(ip4_main_t *im, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: arp.c:684
#define IP_FLOW_HASH_REVERSE_SRC_DST
Definition: lookup.h:147
void( ip4_add_del_interface_address_function_t)(struct ip4_main_t *im, uword opaque, u32 sw_if_index, ip4_address_t *address, u32 address_length, u32 if_address_index, u32 is_del)
Definition: ip4.h:92
struct _vlib_node_registration vlib_node_registration_t
#define IP_FLOW_HASH_DST_PORT
Definition: lookup.h:146
ip_lookup_main_t lookup_main
Definition: ip4.h:115
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:123
static uword ip4_unaligned_destination_matches_route(ip4_main_t *im, ip4_address_t *key, ip4_address_t *dest, uword dest_length)
Definition: ip4.h:257
void ip4_maybe_remap_adjacencies(ip4_main_t *im, u32 table_index_or_table_id, u32 flags)
Definition: ip4_forward.c:590
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:2320
uword ip4_udp_register_listener(vlib_main_t *vm, u16 dst_port, u32 next_node_index)
struct ip4_fib_t ip4_fib_t
#define hash_v3_mix32(a, b, c)
Definition: hash.h:519
static u32 ip4_fib_lookup_buffer(ip4_main_t *im, u32 fib_index, ip4_address_t *dst, vlib_buffer_t *b)
Definition: ip4.h:224
u32 index
Definition: ip4.h:62
vlib_node_registration_t ip4_lookup_node
(constructor) VLIB_REGISTER_NODE (ip4_lookup_node)
Definition: ip4_forward.c:1541
u32 fwd_classify_table_index
Definition: ip4.h:68
u32 ip4_unicast_rx_feature_policer_classify
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:152
u32 ip4_unicast_rx_feature_ipsec
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:154
#define IP_FLOW_HASH_DST_ADDR
Definition: lookup.h:143
#define always_inline
Definition: clib.h:84
ip4_address_t dst_address
Definition: ip4_packet.h:138
uword * old_hash_values
Definition: ip4.h:53
u32 flow_hash_config
Definition: ip4.h:65
u32 ip4_fib_lookup_with_table(ip4_main_t *im, u32 fib_index, ip4_address_t *dst, u32 disable_default_route)
Definition: ip4_forward.c:58
u32 rev_classify_table_index
Definition: ip4.h:69
uword * new_hash_values
Definition: ip4.h:53
int vnet_set_ip4_classify_intfc(vlib_main_t *vm, u32 sw_if_index, u32 table_index)
Definition: ip4_forward.c:3565
u32 ip4_unicast_rx_feature_check_access
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:146
void ip4_icmp_register_type(vlib_main_t *vm, icmp4_type_t type, u32 node_index)
Definition: icmp4.c:696
void ip4_adjacency_set_interface_route(vnet_main_t *vnm, ip_adjacency_t *adj, u32 sw_if_index, u32 if_address_index)
Definition: ip4_forward.c:1121
vlib_node_registration_t ip4_arp_node
(constructor) VLIB_REGISTER_NODE (ip4_arp_node)
Definition: ip4_forward.c:2542
clib_error_t * ip4_add_del_interface_address(vlib_main_t *vm, u32 sw_if_index, ip4_address_t *address, u32 address_length, u32 is_del)
Definition: ip4_forward.c:1355
clib_error_t * ip4_probe_neighbor(vlib_main_t *vm, ip4_address_t *dst, u32 sw_if_index)
Definition: ip4_forward.c:2584
int vnet_set_ip4_flow_hash(u32 table_id, u32 flow_hash_config)
Definition: ip4_forward.c:3502
uword * fib_index_by_table_id
Hash table mapping table id to fib index.
Definition: ip4.h:127
vlib_node_registration_t ip4_input_node
Global ip4 input node.
Definition: ip4_input.c:388
void * ip4_get_route(ip4_main_t *im, u32 fib_index_or_table_id, u32 flags, u8 *address, u32 address_length)
Definition: ip4_forward.c:537
u32 ip4_multicast_rx_feature_lookup
Built-in multicast feature path indices.
Definition: ip4.h:165
ip_adjacency_t * add_adj
Definition: ip4.h:337
union tcp_header_t::@150 ports
svmdb_client_t * c
vlib_node_registration_t ip4_rewrite_node
(constructor) VLIB_REGISTER_NODE (ip4_rewrite_node)
Definition: ip4_forward.c:3088
void ip4_mtrie_init(ip4_fib_mtrie_t *m)
Definition: ip4_mtrie.c:353
int ip4_address_compare(ip4_address_t *a1, ip4_address_t *a2)
Definition: ip46_cli.c:42
clib_error_t * ip4_set_arp_limit(u32 arp_limit)
Definition: arp.c:1323
vnet_ip_feature_registration_t * next_uc_feature
Feature path configuration lists.
Definition: ip4.h:142
serialize_function_t unserialize_vnet_ip4_main
Definition: ip4.h:440
u32 ip4_unicast_rx_feature_source_reachable_via_rx
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:148
u32 ip4_unicast_rx_feature_lookup
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:158
Definition: ip4.h:48
static u32 ip4_fib_lookup(ip4_main_t *im, u32 sw_if_index, ip4_address_t *dst)
Definition: ip4.h:232
icmp4_type_t
vlib_packet_template_t ip4_arp_request_packet_template
Template used to generate IP4 ARP packets.
Definition: ip4.h:139
static int ip4_src_address_for_packet(ip4_main_t *im, vlib_buffer_t *p, ip4_address_t *src, u32 sw_if_index)
Definition: ip4.h:264
#define IP_FLOW_HASH_SRC_ADDR
Flow hash configuration.
Definition: lookup.h:142
unsigned int u32
Definition: types.h:88
void ip4_delete_matching_routes(ip4_main_t *im, u32 table_index_or_table_id, u32 flags, ip4_address_t *address, u32 address_length)
Definition: ip4_forward.c:670
ip4_fib_t * fibs
Vector of FIBs.
Definition: ip4.h:118
ip4_address_t dst_address
Definition: ip4.h:328
void ip4_foreach_matching_route(ip4_main_t *im, u32 table_index_or_table_id, u32 flags, ip4_address_t *address, u32 address_length, ip4_address_t **results, u8 **result_lengths)
Definition: ip4_forward.c:556
u16 ip4_tcp_udp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip4_header_t *ip0)
Definition: ip4_forward.c:1878
#define hash_v3_finalize32(a, b, c)
Definition: hash.h:529
IPv4 main type.
Definition: ip4.h:114
void( ip4_add_del_route_function_t)(struct ip4_main_t *im, uword opaque, ip4_fib_t *fib, u32 flags, ip4_address_t *address, u32 address_length, void *old_result, void *new_result)
Definition: ip4.h:76
u64 uword
Definition: types.h:112
#define vec_elt(v, i)
Get vector value at index i.
unsigned short u16
Definition: types.h:57
struct ip4_main_t ip4_main_t
IPv4 main type.
void( serialize_function_t)(serialize_main_t *m, va_list *va)
Definition: serialize.h:168
unsigned char u8
Definition: types.h:56
vlib_node_registration_t ip4_rewrite_local_node
(constructor) VLIB_REGISTER_NODE (ip4_rewrite_local_node)
Definition: ip4_forward.c:3105
ip4_fib_mtrie_t mtrie
Definition: ip4.h:56
u32 table_index_or_table_id
Definition: ip4.h:325
#define clib_mem_unaligned(pointer, type)
Definition: types.h:155
static u32 ip4_compute_flow_hash(ip4_header_t *ip, u32 flow_hash_config)
Definition: ip4.h:452
static uword ip4_destination_matches_interface(ip4_main_t *im, ip4_address_t *key, ip_interface_address_t *ia)
Definition: ip4.h:247
vnet_ip_feature_registration_t * next_mc_feature
Definition: ip4.h:143
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1578
u32 ip4_unicast_rx_feature_vpath
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:156
u32 ip4_unicast_rx_feature_source_and_port_range_check
Built-in unicast feature path indice, see ip_feature_init_cast()
Definition: ip4.h:160
#define IP_FLOW_HASH_PROTO
Definition: lookup.h:144
ip4_add_del_route_callback_t * add_del_route_callbacks
Vector of functions to call when routes are added/deleted.
Definition: ip4.h:130
uword * adj_index_by_dst_address[33]
Definition: ip4.h:50
u32 flow_hash_seed
Seed for Jenkins hash used to compute ip4 flow hash.
Definition: ip4.h:171
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: lookup.h:601
void ip4_add_del_route(ip4_main_t *im, ip4_add_del_route_args_t *args)
Definition: ip4_forward.c:228
u32 flags
Definition: vhost-user.h:76
u8 ttl
TTL to use for host generated packets.
Definition: ip4.h:176
u8 tos
TOS byte to use for host generated packets.
Definition: ip4.h:179
struct _vnet_ip_feature_registration vnet_ip_feature_registration_t
u32 fib_masks[33]
Definition: ip4.h:120
static ip4_address_t * ip4_interface_address_matching_destination(ip4_main_t *im, ip4_address_t *dst, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: ip4.h:277