FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
lookup.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/ip_lookup.h: ip (4 or 6) lookup structures, adjacencies, ...
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 /**
41  * @file
42  * Definitions for all things IP (v4|v6) unicast and multicast lookup related.
43  *
44  * - Adjacency definitions and registration.
45  * - Callbacks on route add.
46  * - Callbacks on interface address change.
47  */
48 #ifndef included_ip_lookup_h
49 #define included_ip_lookup_h
50 
51 #include <vnet/vnet.h>
52 #include <vlib/buffer.h>
53 #include <vnet/ip/ip4_packet.h>
54 #include <vnet/ip/ip6_packet.h>
55 #include <vnet/fib/fib_node.h>
56 #include <vnet/adj/adj.h>
57 #include <vnet/dpo/dpo.h>
58 #include <vnet/feature/feature.h>
59 
60 /** Flow hash configuration */
61 #define IP_FLOW_HASH_SRC_ADDR (1<<0)
62 #define IP_FLOW_HASH_DST_ADDR (1<<1)
63 #define IP_FLOW_HASH_PROTO (1<<2)
64 #define IP_FLOW_HASH_SRC_PORT (1<<3)
65 #define IP_FLOW_HASH_DST_PORT (1<<4)
66 #define IP_FLOW_HASH_REVERSE_SRC_DST (1<<5)
67 #define IP_FLOW_HASH_SYMMETRIC (1<<6)
68 
69 /** Default: 5-tuple without the "reverse" bit */
70 #define IP_FLOW_HASH_DEFAULT (0x1F)
71 
72 #define foreach_flow_hash_bit \
73 _(src, IP_FLOW_HASH_SRC_ADDR) \
74 _(dst, IP_FLOW_HASH_DST_ADDR) \
75 _(sport, IP_FLOW_HASH_SRC_PORT) \
76 _(dport, IP_FLOW_HASH_DST_PORT) \
77 _(proto, IP_FLOW_HASH_PROTO) \
78 _(reverse, IP_FLOW_HASH_REVERSE_SRC_DST) \
79 _(symmetric, IP_FLOW_HASH_SYMMETRIC)
80 
81 /**
82  * A flow hash configuration is a mask of the flow hash options
83  */
85 
86 /* An all zeros address */
87 extern const ip46_address_t zero_addr;
88 
89 
90 typedef struct
91 {
92  /* Key for mhash; in fact, just a byte offset into mhash key vector. */
94 
95  /* Interface which has this address. */
97 
98  /* Address (prefix) length for this interface. */
100 
101  /* Will be used for something eventually. Primary vs. secondary? */
103 
104  /* Next and previous pointers for doubly linked list of
105  addresses per software interface. */
109 
110 typedef enum
111 {
119 
120 struct ip_lookup_main_t;
121 
122 typedef struct ip_lookup_main_t
123 {
124  /** Pool of addresses that are assigned to interfaces. */
126 
127  /** Hash table mapping address to index in interface address pool. */
129 
130  /** Head of doubly linked list of interface addresses for each software interface.
131  ~0 means this interface has no address. */
133 
134  /** First table index to use for this interface, ~0 => none */
136 
137  /** Feature arc indices */
141 
142  /** Number of bytes in a fib result. Must be at least
143  sizeof (uword). First word is always adjacency index. */
145 
146  /** 1 for ip6; 0 for ip4. */
148 
149  /** Either format_ip4_address_and_length or format_ip6_address_and_length. */
151 
152  /** Table mapping ip protocol to ip[46]-local node next index. */
154 
155  /** IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header. */
158 
161  void *address,
162  u32 address_length,
163  u32 is_del, u32 * result_index);
164 
165 u8 *format_ip_flow_hash_config (u8 * s, va_list * args);
166 
169 {
170  uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
171  return p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
172 }
173 
174 always_inline void *
177 {
179 }
180 
181 /* *INDENT-OFF* */
182 #define foreach_ip_interface_address(lm,a,sw_if_index,loop,body) \
183 do { \
184  vnet_main_t *_vnm = vnet_get_main(); \
185  u32 _sw_if_index = sw_if_index; \
186  vnet_sw_interface_t *_swif; \
187  _swif = vnet_get_sw_interface (_vnm, _sw_if_index); \
188  \
189  /* \
190  * Loop => honor unnumbered interface addressing. \
191  */ \
192  if (_swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED) \
193  { \
194  if (loop) \
195  _sw_if_index = _swif->unnumbered_sw_if_index; \
196  else \
197  /* the interface is unnumbered, by the caller does not want \
198  * unnumbered interfaces considered/honoured */ \
199  break; \
200  } \
201  u32 _ia = ((vec_len((lm)->if_address_pool_index_by_sw_if_index) \
202  > (_sw_if_index)) ? \
203  vec_elt ((lm)->if_address_pool_index_by_sw_if_index, \
204  (_sw_if_index)) : \
205  (u32)~0); \
206  ip_interface_address_t * _a; \
207  while (_ia != ~0) \
208  { \
209  _a = pool_elt_at_index ((lm)->if_address_pool, _ia); \
210  _ia = _a->next_this_sw_interface; \
211  (a) = _a; \
212  body; \
213  } \
214 } while (0)
215 /* *INDENT-ON* */
216 
217 always_inline void
218 ip_lookup_set_buffer_fib_index (u32 * fib_index_by_sw_if_index,
219  vlib_buffer_t * b)
220 {
221  /* *INDENT-OFF* */
222  vnet_buffer (b)->ip.fib_index =
223  vec_elt (fib_index_by_sw_if_index, vnet_buffer (b)->sw_if_index[VLIB_RX]);
224  vnet_buffer (b)->ip.fib_index =
225  ((vnet_buffer (b)->sw_if_index[VLIB_TX] == (u32) ~ 0) ?
226  vnet_buffer (b)->ip.fib_index :
227  vnet_buffer (b)->sw_if_index[VLIB_TX]);
228  /* *INDENT-ON* */
229 }
230 
231 typedef struct _vnet_ip_container_proxy_args
232 {
235  u8 is_add;
237 
239  * args);
240 
241 typedef int (*ip_container_proxy_cb_t) (const fib_prefix_t * pfx,
242  u32 sw_if_index, void *ctx);
244 
245 void ip_lookup_init (ip_lookup_main_t * lm, u32 ip_lookup_node_index);
246 
247 #endif /* included_ip_lookup_h */
248 /*
249  * fd.io coding-style-patch-verification: ON
250  *
251  * Local Variables:
252  * eval: (c-set-style "gnu")
253  * End:
254  */
Definition: mhash.h:46
typedef address
Definition: ip_types.api:83
void ip_container_proxy_walk(ip_container_proxy_cb_t cb, void *ctx)
Definition: lookup.c:1334
a
Definition: bitmap.h:538
clib_error_t * ip_interface_address_add_del(ip_lookup_main_t *lm, u32 sw_if_index, void *address, u32 address_length, u32 is_del, u32 *result_index)
Definition: lookup.c:63
ip_interface_address_t * if_address_pool
Pool of addresses that are assigned to interfaces.
Definition: lookup.h:125
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
vl_api_mprefix_t prefix
Definition: ip.api:456
mhash_t address_to_if_address_index
Hash table mapping address to index in interface address pool.
Definition: lookup.h:128
u8 mcast_feature_arc_index
Feature arc indices.
Definition: lookup.h:138
unsigned char u8
Definition: types.h:56
u8 output_feature_arc_index
Definition: lookup.h:140
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
#define always_inline
Definition: clib.h:98
struct _vnet_ip_container_proxy_args vnet_ip_container_proxy_args_t
Aggregrate type for a prefix.
Definition: fib_types.h:203
unsigned int u32
Definition: types.h:88
int(* ip_container_proxy_cb_t)(const fib_prefix_t *pfx, u32 sw_if_index, void *ctx)
Definition: lookup.h:241
struct ip_lookup_main_t ip_lookup_main_t
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
u32 * classify_table_index_by_sw_if_index
First table index to use for this interface, ~0 => none.
Definition: lookup.h:135
static void ip_lookup_set_buffer_fib_index(u32 *fib_index_by_sw_if_index, vlib_buffer_t *b)
Definition: lookup.h:218
long ctx[MAX_CONNS]
Definition: main.c:144
unsigned short u16
Definition: types.h:57
u8 local_next_by_ip_protocol[256]
Table mapping ip protocol to ip[46]-local node next index.
Definition: lookup.h:153
u8 * format_ip_flow_hash_config(u8 *s, va_list *args)
Definition: lookup.c:245
const ip46_address_t zero_addr
Definition: lookup.c:319
static ip_interface_address_t * ip_get_interface_address(ip_lookup_main_t *lm, void *addr_fib)
Definition: lookup.h:168
u8 builtin_protocol_by_ip_protocol[256]
IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header.
Definition: lookup.h:156
u32 * if_address_pool_index_by_sw_if_index
Head of doubly linked list of interface addresses for each software interface.
Definition: lookup.h:132
vlib buffer structure definition and a few select access methods.
static uword * mhash_get(mhash_t *h, const void *key)
Definition: mhash.h:110
u32 fib_result_n_words
Definition: lookup.h:144
clib_error_t * vnet_ip_container_proxy_add_del(vnet_ip_container_proxy_args_t *args)
Definition: lookup.c:1248
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:84
#define vec_elt(v, i)
Get vector value at index i.
u8 ucast_feature_arc_index
Definition: lookup.h:139
Definition: defs.h:47
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
u32 is_ip6
1 for ip6; 0 for ip4.
Definition: lookup.h:147
static void * mhash_key_to_mem(mhash_t *h, uword key)
Definition: mhash.h:90
#define vnet_buffer(b)
Definition: buffer.h:361
ip_local_next_t
Definition: lookup.h:110
void ip_lookup_init(ip_lookup_main_t *lm, u32 ip_lookup_node_index)
Definition: lookup.c:204
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: lookup.h:175
Definition: defs.h:46
u32 fib_result_n_bytes
Number of bytes in a fib result.
Definition: lookup.h:144
format_function_t * format_address_and_length
Either format_ip4_address_and_length or format_ip6_address_and_length.
Definition: lookup.h:150