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 | * vnet/buffer.h: vnet buffer flags |
| 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_vnet_buffer_h |
| 41 | #define included_vnet_buffer_h |
| 42 | |
| 43 | #include <vlib/vlib.h> |
| 44 | |
| 45 | /* VLIB buffer flags for ip4/ip6 packets. Set by input interfaces for ip4/ip6 |
| 46 | tcp/udp packets with hardware computed checksums. */ |
| 47 | #define LOG2_IP_BUFFER_L4_CHECKSUM_COMPUTED LOG2_VLIB_BUFFER_FLAG_USER(1) |
| 48 | #define LOG2_IP_BUFFER_L4_CHECKSUM_CORRECT LOG2_VLIB_BUFFER_FLAG_USER(2) |
| 49 | #define IP_BUFFER_L4_CHECKSUM_COMPUTED (1 << LOG2_IP_BUFFER_L4_CHECKSUM_COMPUTED) |
| 50 | #define IP_BUFFER_L4_CHECKSUM_CORRECT (1 << LOG2_IP_BUFFER_L4_CHECKSUM_CORRECT) |
| 51 | |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 52 | /* VLAN header flags. |
| 53 | * These bits are zeroed in vlib_buffer_init_for_free_list() |
| 54 | * meaning wherever the buffer comes from they have a reasonable |
| 55 | * value (eg, if ip4/ip6 generates the packet.) |
| 56 | */ |
| 57 | #define LOG2_ETH_BUFFER_VLAN_2_DEEP LOG2_VLIB_BUFFER_FLAG_USER(3) |
| 58 | #define LOG2_ETH_BUFFER_VLAN_1_DEEP LOG2_VLIB_BUFFER_FLAG_USER(4) |
| 59 | #define ETH_BUFFER_VLAN_2_DEEP (1 << LOG2_ETH_BUFFER_VLAN_2_DEEP) |
| 60 | #define ETH_BUFFER_VLAN_1_DEEP (1 << LOG2_ETH_BUFFER_VLAN_1_DEEP) |
| 61 | #define ETH_BUFFER_VLAN_BITS (ETH_BUFFER_VLAN_1_DEEP | \ |
| 62 | ETH_BUFFER_VLAN_2_DEEP) |
| 63 | |
Damjan Marion | 22766b8 | 2016-11-15 12:50:28 +0100 | [diff] [blame] | 64 | #define LOG2_VNET_BUFFER_RTE_MBUF_VALID LOG2_VLIB_BUFFER_FLAG_USER(5) |
| 65 | #define VNET_BUFFER_RTE_MBUF_VALID (1 << LOG2_VNET_BUFFER_RTE_MBUF_VALID) |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 66 | |
Damjan Marion | 0247b46 | 2016-06-08 01:37:11 +0200 | [diff] [blame] | 67 | #define LOG2_BUFFER_HANDOFF_NEXT_VALID LOG2_VLIB_BUFFER_FLAG_USER(6) |
| 68 | #define BUFFER_HANDOFF_NEXT_VALID (1 << LOG2_BUFFER_HANDOFF_NEXT_VALID) |
| 69 | |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 70 | #define LOG2_VNET_BUFFER_LOCALLY_ORIGINATED LOG2_VLIB_BUFFER_FLAG_USER(7) |
| 71 | #define VNET_BUFFER_LOCALLY_ORIGINATED (1 << LOG2_VNET_BUFFER_LOCALLY_ORIGINATED) |
Damjan Marion | 6765549 | 2016-11-15 12:50:28 +0100 | [diff] [blame] | 72 | |
Pavel Kotucek | 3a2a1c4 | 2016-12-06 10:10:10 +0100 | [diff] [blame] | 73 | #define LOG2_VNET_BUFFER_SPAN_CLONE LOG2_VLIB_BUFFER_FLAG_USER(8) |
| 74 | #define VNET_BUFFER_SPAN_CLONE (1 << LOG2_VNET_BUFFER_SPAN_CLONE) |
| 75 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | #define foreach_buffer_opaque_union_subtype \ |
| 77 | _(ethernet) \ |
| 78 | _(ip) \ |
| 79 | _(mcast) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | _(swt) \ |
| 81 | _(l2) \ |
| 82 | _(l2t) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | _(gre) \ |
| 84 | _(l2_classify) \ |
Damjan Marion | 0247b46 | 2016-06-08 01:37:11 +0200 | [diff] [blame] | 85 | _(handoff) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | _(policer) \ |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 87 | _(ipsec) \ |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 88 | _(map) \ |
| 89 | _(map_t) \ |
| 90 | _(ip_frag) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 92 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | * vnet stack buffer opaque array overlay structure. |
| 94 | * The vnet_buffer_opaque_t *must* be the same size as the |
| 95 | * vlib_buffer_t "opaque" structure member, 32 bytes. |
| 96 | * |
| 97 | * When adding a union type, please add a stanza to |
| 98 | * foreach_buffer_opaque_union_subtype (directly above). |
| 99 | * Code in vnet_interface_init(...) verifies the size |
| 100 | * of the union, and will announce any deviations in an |
| 101 | * impossible-to-miss manner. |
| 102 | */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 103 | typedef struct |
| 104 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | u32 sw_if_index[VLIB_N_RX_TX]; |
| 106 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 107 | union |
| 108 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | /* Ethernet. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 110 | struct |
| 111 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | /* Saved value of current header by ethernet-input. */ |
| 113 | i32 start_of_ethernet_header; |
| 114 | } ethernet; |
| 115 | |
| 116 | /* IP4/6 buffer opaque. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 117 | struct |
| 118 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | /* Adjacency from destination IP address lookup [VLIB_TX]. |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 120 | Adjacency from source IP address lookup [VLIB_RX]. |
| 121 | This gets set to ~0 until source lookup is performed. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | u32 adj_index[VLIB_N_RX_TX]; |
| 123 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 124 | union |
| 125 | { |
| 126 | struct |
| 127 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 128 | /* Flow hash value for this packet computed from IP src/dst address |
| 129 | protocol and ports. */ |
| 130 | u32 flow_hash; |
| 131 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 132 | /* next protocol */ |
| 133 | u32 save_protocol; |
Dave Barach | c7493e1 | 2016-08-24 18:36:03 -0400 | [diff] [blame] | 134 | |
| 135 | /* Rewrite length */ |
| 136 | u32 save_rewrite_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | }; |
| 138 | |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 139 | /* ICMP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 140 | struct |
| 141 | { |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 142 | u8 type; |
| 143 | u8 code; |
| 144 | u32 data; |
| 145 | } icmp; |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 146 | |
Klement Sekera | 0c1519b | 2016-12-08 05:03:32 +0100 | [diff] [blame] | 147 | /* IP header offset from vlib_buffer.data - saved by ip*_local nodes */ |
| 148 | i32 start_of_ip_header; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | }; |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 150 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | } ip; |
| 152 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 153 | /* |
| 154 | * MPLS: |
| 155 | * data copied from the MPLS header that was popped from the packet |
| 156 | * during the look-up. |
| 157 | */ |
| 158 | struct |
| 159 | { |
| 160 | u8 ttl; |
| 161 | u8 exp; |
| 162 | u8 first; |
| 163 | } mpls; |
| 164 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | /* Multicast replication */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 166 | struct |
| 167 | { |
| 168 | u32 pad[3]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | u32 mcast_group_index; |
| 170 | u32 mcast_current_index; |
| 171 | u32 original_free_list_index; |
| 172 | } mcast; |
| 173 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | /* ip4-in-ip6 softwire termination, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 175 | struct |
| 176 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | u8 swt_disable; |
| 178 | u32 mapping_index; |
| 179 | } swt; |
| 180 | |
| 181 | /* l2 bridging path, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 182 | struct |
| 183 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | u32 feature_bitmap; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 185 | u16 bd_index; // bridge-domain index |
| 186 | u8 l2_len; // ethernet header length |
| 187 | u8 shg; // split-horizon group |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | } l2; |
| 189 | |
| 190 | /* l2tpv3 softwire encap, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 191 | struct |
| 192 | { |
| 193 | u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | u8 next_index; |
| 195 | u32 session_index; |
| 196 | } l2t; |
| 197 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 198 | struct |
| 199 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | u32 src, dst; |
| 201 | } gre; |
| 202 | |
| 203 | /* L2 classify */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 204 | struct |
| 205 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 206 | u64 pad; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | u32 table_index; |
AkshayaNadahalli | ed4a2fd | 2016-08-09 13:38:04 +0530 | [diff] [blame] | 208 | u32 opaque_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | u64 hash; |
| 210 | } l2_classify; |
| 211 | |
| 212 | /* IO - worker thread handoff */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 213 | struct |
| 214 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | u32 next_index; |
Damjan Marion | 0247b46 | 2016-06-08 01:37:11 +0200 | [diff] [blame] | 216 | } handoff; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | |
| 218 | /* vnet policer */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 219 | struct |
| 220 | { |
| 221 | u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | u32 index; |
| 223 | } policer; |
| 224 | |
| 225 | /* interface output features */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 226 | struct |
| 227 | { |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 228 | u32 flags; |
| 229 | u32 sad_index; |
| 230 | } ipsec; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | |
| 232 | /* vcgn udp inside input, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 233 | struct |
| 234 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 235 | /* This part forms context of the packet. The structure should be |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 236 | * exactly same as spp_ctx_t. Also this should be the first |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | * element of this vcgn_uii structure. |
| 238 | */ |
| 239 | /****** BEGIN spp_ctx_t section ***********************/ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 240 | union |
| 241 | { /* Roddick specific */ |
| 242 | u32 roddick_info; |
| 243 | struct _tx_pkt_info |
| 244 | { /* Used by PI to PI communication for TX */ |
| 245 | u32 uidb_index:16; /* uidb_index to transmit */ |
| 246 | u32 packet_type:2; /* 1-IPv4, 2-Ipv6, - 0,3 - Unused */ |
| 247 | u32 ipv4_defrag:1; /* 0 - Normal, 1 - update first |
| 248 | * segment size |
| 249 | * (set by 6rd defrag node) |
| 250 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 251 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 252 | u32 dst_ip_port_idx:4; /* Index to dst_ip_port_table */ |
| 253 | u32 from_node:4; |
| 254 | u32 calc_chksum:1; |
| 255 | u32 reserved:4; |
| 256 | } tx; |
| 257 | struct _rx_pkt_info |
| 258 | { /* Used by PD / PI communication */ |
| 259 | u32 uidb_index:16; /* uidb_index received in packet */ |
| 260 | u32 packet_type:2; /* 1-IPv4, 2-Ipv6, - 0,3 - Unused */ |
| 261 | u32 icmp_type:1; /* 0-ICMP query type, 1-ICMP error type */ |
| 262 | u32 protocol_type:2; /* 1-TCP, 2-UDP, 3-ICMP, 0 - Unused */ |
| 263 | u32 ipv4_defrag:1; /* 0 - Normal, 1 - update first |
| 264 | * segment size |
| 265 | * (set by 6rd defrag node) |
| 266 | */ |
| 267 | |
| 268 | u32 direction:1; /* 0-Outside, 1-Inside */ |
| 269 | u32 frag:1; /*IP fragment-1, Otherwise-0 */ |
| 270 | u32 option:1; /* 0-No IP option (v4) present, non-fragHdr |
| 271 | * option hdr present (v6) |
| 272 | */ |
| 273 | u32 df_bit:1; /* IPv4 DF bit copied here */ |
| 274 | u32 reserved1:6; |
| 275 | } rx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | } ru; |
| 277 | /****** END spp_ctx_t section ***********************/ |
| 278 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 279 | union |
| 280 | { |
| 281 | struct |
| 282 | { |
| 283 | u32 ipv4; |
| 284 | u16 port; |
| 285 | u16 vrf; //bit0-13:i/f, bit14-15:protocol |
| 286 | } k; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 288 | u64 key64; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 289 | } key; |
| 290 | |
| 291 | u32 bucket; |
| 292 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 293 | u16 ovrf; /* Exit interface */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | u8 frag_pkt; |
| 295 | u8 vcgn_unused1; |
| 296 | } vcgn_uii; |
| 297 | |
| 298 | /* MAP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 299 | struct |
| 300 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | u16 mtu; |
| 302 | } map; |
| 303 | |
| 304 | /* MAP-T */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 305 | struct |
| 306 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 307 | u32 map_domain_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 308 | struct |
| 309 | { |
| 310 | u32 saddr, daddr; |
| 311 | u16 frag_offset; //Fragmentation header offset |
| 312 | u16 l4_offset; //L4 header overall offset |
| 313 | u8 l4_protocol; //The final protocol number |
| 314 | } v6; //Used by ip6_map_t only |
| 315 | u16 checksum_offset; //L4 checksum overall offset |
| 316 | u16 mtu; //Exit MTU |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 317 | } map_t; |
| 318 | |
| 319 | /* IP Fragmentation */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 320 | struct |
| 321 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | u16 header_offset; |
| 323 | u16 mtu; |
| 324 | u8 next_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 325 | u8 flags; //See ip_frag.h |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | } ip_frag; |
| 327 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 328 | /* COP - configurable junk filter(s) */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 329 | struct |
| 330 | { |
| 331 | /* Current configuration index. */ |
| 332 | u32 current_config_index; |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 333 | } cop; |
| 334 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 335 | /* LISP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 336 | struct |
| 337 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 338 | /* overlay address family */ |
| 339 | u16 overlay_afi; |
| 340 | } lisp; |
| 341 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 342 | /* Driver rx feature */ |
| 343 | struct |
| 344 | { |
| 345 | u32 saved_next_index; /**< saved by drivers for short-cut */ |
| 346 | u16 buffer_advance; |
| 347 | } device_input_feat; |
| 348 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 349 | u32 unused[6]; |
| 350 | }; |
| 351 | } vnet_buffer_opaque_t; |
| 352 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 353 | /* |
| 354 | * The opaque field of the vlib_buffer_t is intepreted as a |
| 355 | * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one. |
| 356 | */ |
| 357 | STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <= STRUCT_SIZE_OF (vlib_buffer_t, |
| 358 | opaque), |
| 359 | "VNET buffer meta-data too large for vlib_buffer"); |
| 360 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 361 | #define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque) |
| 362 | |
| 363 | /* Full cache line (64 bytes) of additional space */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 364 | typedef struct |
| 365 | { |
| 366 | union |
| 367 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | }; |
| 369 | } vnet_buffer_opaque2_t; |
| 370 | |
| 371 | |
| 372 | |
| 373 | #endif /* included_vnet_buffer_h */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * fd.io coding-style-patch-verification: ON |
| 377 | * |
| 378 | * Local Variables: |
| 379 | * eval: (c-set-style "gnu") |
| 380 | * End: |
| 381 | */ |