Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 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. |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 47 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | #ifndef included_ip_lookup_h |
| 49 | #define included_ip_lookup_h |
| 50 | |
| 51 | #include <vnet/vnet.h> |
| 52 | #include <vlib/buffer.h> |
Damjan Marion | 102ec52 | 2016-03-29 13:18:17 +0200 | [diff] [blame] | 53 | #include <vnet/ip/ip4_packet.h> |
Pierre Pfister | 1dabaaf | 2016-04-25 14:15:15 +0100 | [diff] [blame] | 54 | #include <vnet/ip/ip6_packet.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 55 | #include <vnet/fib/fib_node.h> |
| 56 | #include <vnet/dpo/dpo.h> |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 57 | #include <vnet/feature/feature.h> |
Neale Ranns | 2e7fbcc | 2017-03-15 04:22:25 -0700 | [diff] [blame] | 58 | #include <vnet/rewrite.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 60 | /** @brief Common (IP4/IP6) next index stored in adjacency. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 61 | typedef enum |
| 62 | { |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 63 | /** Adjacency to drop this packet. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | IP_LOOKUP_NEXT_DROP, |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 65 | /** Adjacency to punt this packet. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | IP_LOOKUP_NEXT_PUNT, |
| 67 | |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 68 | /** This packet is for one of our own IP addresses. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | IP_LOOKUP_NEXT_LOCAL, |
| 70 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 71 | /** This packet matches an "incomplete adjacency" and packets |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | need to be passed to ARP to find rewrite string for |
| 73 | this destination. */ |
| 74 | IP_LOOKUP_NEXT_ARP, |
| 75 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 76 | /** This packet matches an "interface route" and packets |
| 77 | need to be passed to ARP to find rewrite string for |
| 78 | this destination. */ |
| 79 | IP_LOOKUP_NEXT_GLEAN, |
| 80 | |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 81 | /** This packet is to be rewritten and forwarded to the next |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | processing node. This is typically the output interface but |
| 83 | might be another node for further output processing. */ |
| 84 | IP_LOOKUP_NEXT_REWRITE, |
| 85 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 86 | /** This packets follow a load-balance */ |
| 87 | IP_LOOKUP_NEXT_LOAD_BALANCE, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 89 | /** This packets follow a mid-chain adjacency */ |
| 90 | IP_LOOKUP_NEXT_MIDCHAIN, |
Damjan Marion | aca64c9 | 2016-04-13 09:48:56 +0200 | [diff] [blame] | 91 | |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 92 | /** This packets needs to go to ICMP error */ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 93 | IP_LOOKUP_NEXT_ICMP_ERROR, |
| 94 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 95 | /** Multicast Adjacency. */ |
| 96 | IP_LOOKUP_NEXT_MCAST, |
| 97 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 98 | IP_LOOKUP_N_NEXT, |
| 99 | } ip_lookup_next_t; |
| 100 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 101 | typedef enum |
| 102 | { |
Ole Troan | f0f8522 | 2016-06-14 21:12:32 +0200 | [diff] [blame] | 103 | IP4_LOOKUP_N_NEXT = IP_LOOKUP_N_NEXT, |
| 104 | } ip4_lookup_next_t; |
| 105 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 106 | typedef enum |
| 107 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 108 | /* Hop-by-hop header handling */ |
Ole Troan | f0f8522 | 2016-06-14 21:12:32 +0200 | [diff] [blame] | 109 | IP6_LOOKUP_NEXT_HOP_BY_HOP = IP_LOOKUP_N_NEXT, |
| 110 | IP6_LOOKUP_NEXT_ADD_HOP_BY_HOP, |
| 111 | IP6_LOOKUP_NEXT_POP_HOP_BY_HOP, |
| 112 | IP6_LOOKUP_N_NEXT, |
| 113 | } ip6_lookup_next_t; |
| 114 | |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 115 | #define IP4_LOOKUP_NEXT_NODES { \ |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 116 | [IP_LOOKUP_NEXT_DROP] = "ip4-drop", \ |
| 117 | [IP_LOOKUP_NEXT_PUNT] = "ip4-punt", \ |
| 118 | [IP_LOOKUP_NEXT_LOCAL] = "ip4-local", \ |
| 119 | [IP_LOOKUP_NEXT_ARP] = "ip4-arp", \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 120 | [IP_LOOKUP_NEXT_GLEAN] = "ip4-glean", \ |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 121 | [IP_LOOKUP_NEXT_REWRITE] = "ip4-rewrite", \ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 122 | [IP_LOOKUP_NEXT_MCAST] = "ip4-rewrite-mcast", \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 123 | [IP_LOOKUP_NEXT_MIDCHAIN] = "ip4-midchain", \ |
| 124 | [IP_LOOKUP_NEXT_LOAD_BALANCE] = "ip4-load-balance", \ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 125 | [IP_LOOKUP_NEXT_ICMP_ERROR] = "ip4-icmp-error", \ |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | #define IP6_LOOKUP_NEXT_NODES { \ |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 129 | [IP_LOOKUP_NEXT_DROP] = "ip6-drop", \ |
| 130 | [IP_LOOKUP_NEXT_PUNT] = "ip6-punt", \ |
| 131 | [IP_LOOKUP_NEXT_LOCAL] = "ip6-local", \ |
| 132 | [IP_LOOKUP_NEXT_ARP] = "ip6-discover-neighbor", \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 133 | [IP_LOOKUP_NEXT_GLEAN] = "ip6-glean", \ |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 134 | [IP_LOOKUP_NEXT_REWRITE] = "ip6-rewrite", \ |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 135 | [IP_LOOKUP_NEXT_MCAST] = "ip6-rewrite-mcast", \ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 136 | [IP_LOOKUP_NEXT_MIDCHAIN] = "ip6-midchain", \ |
| 137 | [IP_LOOKUP_NEXT_LOAD_BALANCE] = "ip6-load-balance", \ |
Ole Troan | 944f548 | 2016-05-24 11:56:58 +0200 | [diff] [blame] | 138 | [IP_LOOKUP_NEXT_ICMP_ERROR] = "ip6-icmp-error", \ |
Ole Troan | f0f8522 | 2016-06-14 21:12:32 +0200 | [diff] [blame] | 139 | [IP6_LOOKUP_NEXT_HOP_BY_HOP] = "ip6-hop-by-hop", \ |
| 140 | [IP6_LOOKUP_NEXT_ADD_HOP_BY_HOP] = "ip6-add-hop-by-hop", \ |
| 141 | [IP6_LOOKUP_NEXT_POP_HOP_BY_HOP] = "ip6-pop-hop-by-hop", \ |
Damjan Marion | b270789 | 2016-04-13 11:21:07 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 144 | /** Flow hash configuration */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | #define IP_FLOW_HASH_SRC_ADDR (1<<0) |
| 146 | #define IP_FLOW_HASH_DST_ADDR (1<<1) |
| 147 | #define IP_FLOW_HASH_PROTO (1<<2) |
| 148 | #define IP_FLOW_HASH_SRC_PORT (1<<3) |
| 149 | #define IP_FLOW_HASH_DST_PORT (1<<4) |
| 150 | #define IP_FLOW_HASH_REVERSE_SRC_DST (1<<5) |
| 151 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 152 | /** Default: 5-tuple without the "reverse" bit */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | #define IP_FLOW_HASH_DEFAULT (0x1F) |
| 154 | |
| 155 | #define foreach_flow_hash_bit \ |
| 156 | _(src, IP_FLOW_HASH_SRC_ADDR) \ |
| 157 | _(dst, IP_FLOW_HASH_DST_ADDR) \ |
| 158 | _(sport, IP_FLOW_HASH_SRC_PORT) \ |
| 159 | _(dport, IP_FLOW_HASH_DST_PORT) \ |
| 160 | _(proto, IP_FLOW_HASH_PROTO) \ |
| 161 | _(reverse, IP_FLOW_HASH_REVERSE_SRC_DST) |
| 162 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 163 | /** |
| 164 | * A flow hash configuration is a mask of the flow hash options |
| 165 | */ |
| 166 | typedef u32 flow_hash_config_t; |
| 167 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 168 | /** |
| 169 | * Forward delcartion |
| 170 | */ |
| 171 | struct ip_adjacency_t_; |
| 172 | |
| 173 | /** |
| 174 | * @brief A function type for post-rewrite fixups on midchain adjacency |
| 175 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 176 | typedef void (*adj_midchain_fixup_t) (vlib_main_t * vm, |
| 177 | struct ip_adjacency_t_ * adj, |
| 178 | vlib_buffer_t * b0); |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 179 | |
Neale Ranns | 19c68d2 | 2016-12-07 15:38:14 +0000 | [diff] [blame] | 180 | /** |
| 181 | * @brief Flags on an IP adjacency |
| 182 | */ |
| 183 | typedef enum ip_adjacency_flags_t_ |
| 184 | { |
| 185 | /** |
| 186 | * Currently a sync walk is active. Used to prevent re-entrant walking |
| 187 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 188 | IP_ADJ_SYNC_WALK_ACTIVE = (1 << 0), |
Neale Ranns | 19c68d2 | 2016-12-07 15:38:14 +0000 | [diff] [blame] | 189 | } ip_adjacency_flags_t; |
| 190 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 191 | /** @brief IP unicast adjacency. |
| 192 | @note cache aligned. |
| 193 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 194 | typedef struct ip_adjacency_t_ |
| 195 | { |
| 196 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 198 | /** Number of adjecencies in block. Greater than 1 means multipath; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | otherwise equal to 1. */ |
| 200 | u16 n_adj; |
| 201 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 202 | /** Next hop after ip4-lookup. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 203 | union |
| 204 | { |
| 205 | ip_lookup_next_t lookup_next_index:16; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 206 | u16 lookup_next_index_as_int; |
| 207 | }; |
| 208 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 209 | /** Interface address index for this local/arp adjacency. */ |
| 210 | u32 if_address_index; |
| 211 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 212 | /* |
| 213 | * link/ether-type |
| 214 | */ |
Neale Ranns | 924d03a | 2016-10-19 08:25:46 +0100 | [diff] [blame] | 215 | vnet_link_t ia_link; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 216 | u8 ia_nh_proto; |
| 217 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 218 | union |
| 219 | { |
Neale Ranns | 33a7dd5 | 2016-10-07 15:14:33 +0100 | [diff] [blame] | 220 | /** |
| 221 | * IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE |
| 222 | * |
| 223 | * neighbour adjacency sub-type; |
| 224 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 225 | struct |
| 226 | { |
| 227 | ip46_address_t next_hop; |
| 228 | } nbr; |
Neale Ranns | 33a7dd5 | 2016-10-07 15:14:33 +0100 | [diff] [blame] | 229 | /** |
| 230 | * IP_LOOKUP_NEXT_MIDCHAIN |
| 231 | * |
| 232 | * A nbr adj that is also recursive. Think tunnels. |
| 233 | * A nbr adj can transition to be of type MDICHAIN |
| 234 | * so be sure to leave the two structs with the next_hop |
| 235 | * fields aligned. |
| 236 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 237 | struct |
| 238 | { |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 239 | /** |
| 240 | * The recursive next-hop |
| 241 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 242 | ip46_address_t next_hop; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 243 | /** |
| 244 | * The node index of the tunnel's post rewrite/TX function. |
| 245 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 246 | u32 tx_function_node; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 247 | /** |
| 248 | * The next DPO to use |
| 249 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 250 | dpo_id_t next_dpo; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 251 | /** |
| 252 | * A function to perform the post-rewrite fixup |
| 253 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 254 | adj_midchain_fixup_t fixup_func; |
| 255 | } midchain; |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 256 | /** |
| 257 | * IP_LOOKUP_NEXT_GLEAN |
| 258 | * |
| 259 | * Glean the address to ARP for from the packet's destination |
| 260 | */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 261 | struct |
| 262 | { |
| 263 | ip46_address_t receive_addr; |
| 264 | } glean; |
Neale Ranns | 33a7dd5 | 2016-10-07 15:14:33 +0100 | [diff] [blame] | 265 | } sub_type; |
Damjan Marion | f1bd8be | 2016-03-29 13:06:36 +0200 | [diff] [blame] | 266 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 267 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 268 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 269 | /* Rewrite in second/third cache lines */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 270 | vnet_declare_rewrite (VLIB_BUFFER_PRE_DATA_SIZE); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 271 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 272 | /* |
| 273 | * member not accessed in the data plane are relgated to the |
| 274 | * remaining cachelines |
| 275 | */ |
| 276 | fib_node_t ia_node; |
Neale Ranns | 19c68d2 | 2016-12-07 15:38:14 +0000 | [diff] [blame] | 277 | |
| 278 | /** |
| 279 | * Flags on the adjacency |
| 280 | */ |
| 281 | ip_adjacency_flags_t ia_flags; |
| 282 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 283 | } ip_adjacency_t; |
| 284 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 285 | STATIC_ASSERT ((STRUCT_OFFSET_OF (ip_adjacency_t, cacheline0) == 0), |
| 286 | "IP adjacency cachline 0 is not offset"); |
| 287 | STATIC_ASSERT ((STRUCT_OFFSET_OF (ip_adjacency_t, cacheline1) == |
| 288 | CLIB_CACHE_LINE_BYTES), |
| 289 | "IP adjacency cachline 1 is more than one cachline size offset"); |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 290 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 291 | /* An all zeros address */ |
| 292 | extern const ip46_address_t zero_addr; |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 293 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 295 | typedef struct |
| 296 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | /* Key for mhash; in fact, just a byte offset into mhash key vector. */ |
| 298 | u32 address_key; |
| 299 | |
| 300 | /* Interface which has this address. */ |
| 301 | u32 sw_if_index; |
| 302 | |
| 303 | /* Adjacency for neighbor probe (ARP) for this interface address. */ |
| 304 | u32 neighbor_probe_adj_index; |
| 305 | |
| 306 | /* Address (prefix) length for this interface. */ |
| 307 | u16 address_length; |
| 308 | |
| 309 | /* Will be used for something eventually. Primary vs. secondary? */ |
| 310 | u16 flags; |
| 311 | |
| 312 | /* Next and previous pointers for doubly linked list of |
| 313 | addresses per software interface. */ |
| 314 | u32 next_this_sw_interface; |
| 315 | u32 prev_this_sw_interface; |
| 316 | } ip_interface_address_t; |
| 317 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 318 | typedef enum |
| 319 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | IP_LOCAL_NEXT_DROP, |
| 321 | IP_LOCAL_NEXT_PUNT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | IP_LOCAL_NEXT_UDP_LOOKUP, |
| 323 | IP_LOCAL_NEXT_ICMP, |
| 324 | IP_LOCAL_N_NEXT, |
| 325 | } ip_local_next_t; |
| 326 | |
| 327 | struct ip_lookup_main_t; |
| 328 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 329 | typedef struct ip_lookup_main_t |
| 330 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 331 | /* Adjacency heap. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 332 | ip_adjacency_t *adjacency_heap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 333 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 334 | /** load-balance packet/byte counters indexed by LB index. */ |
| 335 | vlib_combined_counter_main_t load_balance_counters; |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 336 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 337 | /** Pool of addresses that are assigned to interfaces. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 338 | ip_interface_address_t *if_address_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 339 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 340 | /** Hash table mapping address to index in interface address pool. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | mhash_t address_to_if_address_index; |
| 342 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 343 | /** Head of doubly linked list of interface addresses for each software interface. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 344 | ~0 means this interface has no address. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 345 | u32 *if_address_pool_index_by_sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 346 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 347 | /** First table index to use for this interface, ~0 => none */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 348 | u32 *classify_table_index_by_sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 349 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 350 | /** Feature arc indices */ |
| 351 | u8 mcast_feature_arc_index; |
| 352 | u8 ucast_feature_arc_index; |
| 353 | u8 output_feature_arc_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 354 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 355 | /** Number of bytes in a fib result. Must be at least |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 356 | sizeof (uword). First word is always adjacency index. */ |
| 357 | u32 fib_result_n_bytes, fib_result_n_words; |
| 358 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 359 | format_function_t *format_fib_result; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 361 | /** 1 for ip6; 0 for ip4. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | u32 is_ip6; |
| 363 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 364 | /** Either format_ip4_address_and_length or format_ip6_address_and_length. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 365 | format_function_t *format_address_and_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 366 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 367 | /** Special adjacency format functions */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 368 | format_function_t **special_adjacency_format_functions; |
Dave Barach | 6f9bca2 | 2016-04-30 10:25:32 -0400 | [diff] [blame] | 369 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 370 | /** Table mapping ip protocol to ip[46]-local node next index. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 371 | u8 local_next_by_ip_protocol[256]; |
| 372 | |
Keith Burns (alagalah) | 79b5f63 | 2016-08-02 05:40:20 -0700 | [diff] [blame] | 373 | /** IP_BUILTIN_PROTOCOL_{TCP,UDP,ICMP,OTHER} by protocol in IP header. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | u8 builtin_protocol_by_ip_protocol[256]; |
| 375 | } ip_lookup_main_t; |
| 376 | |
| 377 | always_inline ip_adjacency_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 378 | ip_get_adjacency (ip_lookup_main_t * lm, u32 adj_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 379 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 380 | ip_adjacency_t *adj; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 381 | |
Dave Barach | b2ef4dd | 2016-03-23 08:56:01 -0400 | [diff] [blame] | 382 | adj = vec_elt_at_index (lm->adjacency_heap, adj_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 384 | return adj; |
| 385 | } |
| 386 | |
| 387 | #define ip_prefetch_adjacency(lm,adj_index,type) \ |
| 388 | do { \ |
| 389 | ip_adjacency_t * _adj = (lm)->adjacency_heap + (adj_index); \ |
| 390 | CLIB_PREFETCH (_adj, sizeof (_adj[0]), type); \ |
| 391 | } while (0) |
| 392 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 393 | clib_error_t *ip_interface_address_add_del (ip_lookup_main_t * lm, |
| 394 | u32 sw_if_index, |
| 395 | void *address, |
| 396 | u32 address_length, |
| 397 | u32 is_del, u32 * result_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 398 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 399 | u8 *format_ip_flow_hash_config (u8 * s, va_list * args); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 400 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 401 | always_inline ip_interface_address_t * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 402 | ip_get_interface_address (ip_lookup_main_t * lm, void *addr_fib) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 404 | uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 405 | return p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0; |
| 406 | } |
| 407 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 408 | u32 fib_table_id_find_fib_index (fib_protocol_t proto, u32 table_id); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 409 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 410 | always_inline void * |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 411 | ip_interface_address_get_address (ip_lookup_main_t * lm, |
| 412 | ip_interface_address_t * a) |
| 413 | { |
| 414 | return mhash_key_to_mem (&lm->address_to_if_address_index, a->address_key); |
| 415 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 416 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 417 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 418 | #define foreach_ip_interface_address(lm,a,sw_if_index,loop,body) \ |
| 419 | do { \ |
| 420 | vnet_main_t *_vnm = vnet_get_main(); \ |
| 421 | u32 _sw_if_index = sw_if_index; \ |
| 422 | vnet_sw_interface_t *_swif; \ |
| 423 | _swif = vnet_get_sw_interface (_vnm, _sw_if_index); \ |
| 424 | \ |
| 425 | /* \ |
| 426 | * Loop => honor unnumbered interface addressing. \ |
| 427 | */ \ |
| 428 | if (loop && _swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED) \ |
| 429 | _sw_if_index = _swif->unnumbered_sw_if_index; \ |
| 430 | u32 _ia = \ |
| 431 | (vec_len((lm)->if_address_pool_index_by_sw_if_index) \ |
| 432 | > (_sw_if_index)) \ |
| 433 | ? vec_elt ((lm)->if_address_pool_index_by_sw_if_index, \ |
| 434 | (_sw_if_index)) : (u32)~0; \ |
| 435 | ip_interface_address_t * _a; \ |
| 436 | while (_ia != ~0) \ |
| 437 | { \ |
| 438 | _a = pool_elt_at_index ((lm)->if_address_pool, _ia); \ |
| 439 | _ia = _a->next_this_sw_interface; \ |
| 440 | (a) = _a; \ |
| 441 | body; \ |
| 442 | } \ |
| 443 | } while (0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 444 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | |
| 446 | void ip_lookup_init (ip_lookup_main_t * lm, u32 ip_lookup_node_index); |
| 447 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 448 | #endif /* included_ip_lookup_h */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 449 | |
| 450 | /* |
| 451 | * fd.io coding-style-patch-verification: ON |
| 452 | * |
| 453 | * Local Variables: |
| 454 | * eval: (c-set-style "gnu") |
| 455 | * End: |
| 456 | */ |