blob: 941a6df965ec1415c4fa543d239f37babe1efbc7 [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 * 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
Chris Luke16bcf7d2016-09-01 14:31:46 -040040/**
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.
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -070047 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070048#ifndef included_ip_lookup_h
49#define included_ip_lookup_h
50
51#include <vnet/vnet.h>
52#include <vlib/buffer.h>
Damjan Marion102ec522016-03-29 13:18:17 +020053#include <vnet/ip/ip4_packet.h>
Pierre Pfister1dabaaf2016-04-25 14:15:15 +010054#include <vnet/ip/ip6_packet.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010055#include <vnet/fib/fib_node.h>
Neale Rannsfa5d1982017-02-20 14:19:51 -080056#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010057#include <vnet/dpo/dpo.h>
Damjan Marion22311502016-10-28 20:30:15 +020058#include <vnet/feature/feature.h>
Damjan Marionb2707892016-04-13 11:21:07 +020059
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -070060/** Flow hash configuration */
Ed Warnickecb9cada2015-12-08 15:45:58 -070061#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
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -070068/** Default: 5-tuple without the "reverse" bit */
Ed Warnickecb9cada2015-12-08 15:45:58 -070069#define IP_FLOW_HASH_DEFAULT (0x1F)
70
71#define foreach_flow_hash_bit \
72_(src, IP_FLOW_HASH_SRC_ADDR) \
73_(dst, IP_FLOW_HASH_DST_ADDR) \
74_(sport, IP_FLOW_HASH_SRC_PORT) \
75_(dport, IP_FLOW_HASH_DST_PORT) \
76_(proto, IP_FLOW_HASH_PROTO) \
77_(reverse, IP_FLOW_HASH_REVERSE_SRC_DST)
78
Neale Ranns0bfe5d82016-08-25 15:29:12 +010079/**
80 * A flow hash configuration is a mask of the flow hash options
81 */
82typedef u32 flow_hash_config_t;
83
Neale Ranns0bfe5d82016-08-25 15:29:12 +010084/* An all zeros address */
85extern const ip46_address_t zero_addr;
Dave Barachdbf19ca2016-03-15 10:21:54 +010086
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
Dave Barachd7cb1b52016-12-09 09:52:16 -050088typedef struct
89{
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 /* Key for mhash; in fact, just a byte offset into mhash key vector. */
91 u32 address_key;
92
93 /* Interface which has this address. */
94 u32 sw_if_index;
95
96 /* Adjacency for neighbor probe (ARP) for this interface address. */
97 u32 neighbor_probe_adj_index;
98
99 /* Address (prefix) length for this interface. */
100 u16 address_length;
101
102 /* Will be used for something eventually. Primary vs. secondary? */
103 u16 flags;
104
105 /* Next and previous pointers for doubly linked list of
106 addresses per software interface. */
107 u32 next_this_sw_interface;
108 u32 prev_this_sw_interface;
109} ip_interface_address_t;
110
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111typedef enum
112{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 IP_LOCAL_NEXT_DROP,
114 IP_LOCAL_NEXT_PUNT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 IP_LOCAL_NEXT_UDP_LOOKUP,
116 IP_LOCAL_NEXT_ICMP,
117 IP_LOCAL_N_NEXT,
118} ip_local_next_t;
119
120struct ip_lookup_main_t;
121
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122typedef struct ip_lookup_main_t
123{
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700124 /** Pool of addresses that are assigned to interfaces. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500125 ip_interface_address_t *if_address_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700127 /** Hash table mapping address to index in interface address pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 mhash_t address_to_if_address_index;
129
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700130 /** Head of doubly linked list of interface addresses for each software interface.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 ~0 means this interface has no address. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 u32 *if_address_pool_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700134 /** First table index to use for this interface, ~0 => none */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500135 u32 *classify_table_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Damjan Marion8b3191e2016-11-09 19:54:20 +0100137 /** Feature arc indices */
138 u8 mcast_feature_arc_index;
139 u8 ucast_feature_arc_index;
140 u8 output_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700142 /** Number of bytes in a fib result. Must be at least
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 sizeof (uword). First word is always adjacency index. */
144 u32 fib_result_n_bytes, fib_result_n_words;
145
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700146 /** 1 for ip6; 0 for ip4. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147 u32 is_ip6;
148
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700149 /** Either format_ip4_address_and_length or format_ip6_address_and_length. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500150 format_function_t *format_address_and_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700152 /** Table mapping ip protocol to ip[46]-local node next index. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 u8 local_next_by_ip_protocol[256];
154
Keith Burns (alagalah)79b5f632016-08-02 05:40:20 -0700155 /** IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 u8 builtin_protocol_by_ip_protocol[256];
157} ip_lookup_main_t;
158
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159clib_error_t *ip_interface_address_add_del (ip_lookup_main_t * lm,
160 u32 sw_if_index,
161 void *address,
162 u32 address_length,
163 u32 is_del, u32 * result_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Dave Barachd7cb1b52016-12-09 09:52:16 -0500165u8 *format_ip_flow_hash_config (u8 * s, va_list * args);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100166
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167always_inline ip_interface_address_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500168ip_get_interface_address (ip_lookup_main_t * lm, void *addr_fib)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500170 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 return p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
172}
173
174always_inline void *
Dave Barachd7cb1b52016-12-09 09:52:16 -0500175ip_interface_address_get_address (ip_lookup_main_t * lm,
176 ip_interface_address_t * a)
177{
178 return mhash_key_to_mem (&lm->address_to_if_address_index, a->address_key);
179}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Dave Barachd7cb1b52016-12-09 09:52:16 -0500181/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182#define foreach_ip_interface_address(lm,a,sw_if_index,loop,body) \
183do { \
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 (loop && _swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED) \
193 _sw_if_index = _swif->unnumbered_sw_if_index; \
194 u32 _ia = \
195 (vec_len((lm)->if_address_pool_index_by_sw_if_index) \
196 > (_sw_if_index)) \
197 ? vec_elt ((lm)->if_address_pool_index_by_sw_if_index, \
198 (_sw_if_index)) : (u32)~0; \
199 ip_interface_address_t * _a; \
200 while (_ia != ~0) \
201 { \
202 _a = pool_elt_at_index ((lm)->if_address_pool, _ia); \
203 _ia = _a->next_this_sw_interface; \
204 (a) = _a; \
205 body; \
206 } \
207} while (0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500208/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
210void ip_lookup_init (ip_lookup_main_t * lm, u32 ip_lookup_node_index);
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212#endif /* included_ip_lookup_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500213
214/*
215 * fd.io coding-style-patch-verification: ON
216 *
217 * Local Variables:
218 * eval: (c-set-style "gnu")
219 * End:
220 */