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 | |
Neale Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 45 | /** |
| 46 | * Flags that are set in the high order bits of ((vlib_buffer*)b)->flags |
Dave Barach | a5fb0ec | 2018-12-03 19:07:09 -0500 | [diff] [blame] | 47 | * |
Neale Ranns | f068c3e | 2018-01-03 04:18:48 -0800 | [diff] [blame] | 48 | */ |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 49 | #define foreach_vnet_buffer_flag \ |
| 50 | _( 1, L4_CHECKSUM_COMPUTED, "l4-cksum-computed", 1) \ |
| 51 | _( 2, L4_CHECKSUM_CORRECT, "l4-cksum-correct", 1) \ |
| 52 | _( 3, VLAN_2_DEEP, "vlan-2-deep", 1) \ |
| 53 | _( 4, VLAN_1_DEEP, "vlan-1-deep", 1) \ |
| 54 | _( 5, SPAN_CLONE, "span-clone", 1) \ |
| 55 | _( 6, LOOP_COUNTER_VALID, "loop-counter-valid", 0) \ |
| 56 | _( 7, LOCALLY_ORIGINATED, "local", 1) \ |
| 57 | _( 8, IS_IP4, "ip4", 1) \ |
| 58 | _( 9, IS_IP6, "ip6", 1) \ |
| 59 | _(10, OFFLOAD_IP_CKSUM, "offload-ip-cksum", 1) \ |
| 60 | _(11, OFFLOAD_TCP_CKSUM, "offload-tcp-cksum", 1) \ |
| 61 | _(12, OFFLOAD_UDP_CKSUM, "offload-udp-cksum", 1) \ |
| 62 | _(13, IS_NATED, "natted", 1) \ |
| 63 | _(14, L2_HDR_OFFSET_VALID, "l2_hdr_offset_valid", 0) \ |
| 64 | _(15, L3_HDR_OFFSET_VALID, "l3_hdr_offset_valid", 0) \ |
| 65 | _(16, L4_HDR_OFFSET_VALID, "l4_hdr_offset_valid", 0) \ |
| 66 | _(17, FLOW_REPORT, "flow-report", 1) \ |
| 67 | _(18, IS_DVR, "dvr", 1) \ |
Dave Barach | a5fb0ec | 2018-12-03 19:07:09 -0500 | [diff] [blame] | 68 | _(19, QOS_DATA_VALID, "qos-data-valid", 0) \ |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 69 | _(20, GSO, "gso", 0) \ |
| 70 | _(21, AVAIL1, "avail1", 1) \ |
| 71 | _(22, AVAIL2, "avail2", 1) \ |
| 72 | _(23, AVAIL3, "avail3", 1) \ |
| 73 | _(24, AVAIL4, "avail4", 1) \ |
| 74 | _(25, AVAIL5, "avail5", 1) \ |
| 75 | _(26, AVAIL6, "avail6", 1) \ |
| 76 | _(27, AVAIL7, "avail7", 1) |
Dave Barach | a5fb0ec | 2018-12-03 19:07:09 -0500 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * Please allocate the FIRST available bit, redefine |
| 80 | * AVAIL 1 ... AVAILn-1, and remove AVAILn. Please maintain the |
| 81 | * VNET_BUFFER_FLAGS_ALL_AVAIL definition. |
| 82 | */ |
| 83 | |
| 84 | #define VNET_BUFFER_FLAGS_ALL_AVAIL \ |
| 85 | (VNET_BUFFER_F_AVAIL1 | VNET_BUFFER_F_AVAIL2 | VNET_BUFFER_F_AVAIL3 | \ |
| 86 | VNET_BUFFER_F_AVAIL4 | VNET_BUFFER_F_AVAIL5 | VNET_BUFFER_F_AVAIL6 | \ |
| 87 | VNET_BUFFER_F_AVAIL7) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 89 | #define VNET_BUFFER_FLAGS_VLAN_BITS \ |
| 90 | (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP) |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 91 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 92 | enum |
| 93 | { |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 94 | #define _(bit, name, s, v) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)), |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 95 | foreach_vnet_buffer_flag |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 96 | #undef _ |
| 97 | }; |
Damjan Marion | 0247b46 | 2016-06-08 01:37:11 +0200 | [diff] [blame] | 98 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 99 | enum |
| 100 | { |
Dave Barach | 7fff3d2 | 2018-11-27 16:52:59 -0500 | [diff] [blame] | 101 | #define _(bit, name, s, v) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit), |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 102 | foreach_vnet_buffer_flag |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 103 | #undef _ |
| 104 | }; |
Damjan Marion | 6765549 | 2016-11-15 12:50:28 +0100 | [diff] [blame] | 105 | |
Dave Barach | a5fb0ec | 2018-12-03 19:07:09 -0500 | [diff] [blame] | 106 | /* Make sure that the vnet and vlib bits are disjoint */ |
| 107 | STATIC_ASSERT (((VNET_BUFFER_FLAGS_ALL_AVAIL & VLIB_BUFFER_FLAGS_ALL) == 0), |
| 108 | "VLIB / VNET buffer flags overlap"); |
| 109 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | #define foreach_buffer_opaque_union_subtype \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | _(ip) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | _(l2) \ |
| 113 | _(l2t) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | _(l2_classify) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | _(policer) \ |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 116 | _(ipsec) \ |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 117 | _(map) \ |
| 118 | _(map_t) \ |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 119 | _(ip_frag) \ |
Neale Ranns | d792d9c | 2017-10-21 10:53:20 -0700 | [diff] [blame] | 120 | _(mpls) \ |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 121 | _(tcp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 123 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | * vnet stack buffer opaque array overlay structure. |
| 125 | * The vnet_buffer_opaque_t *must* be the same size as the |
| 126 | * vlib_buffer_t "opaque" structure member, 32 bytes. |
| 127 | * |
| 128 | * When adding a union type, please add a stanza to |
| 129 | * foreach_buffer_opaque_union_subtype (directly above). |
| 130 | * Code in vnet_interface_init(...) verifies the size |
| 131 | * of the union, and will announce any deviations in an |
| 132 | * impossible-to-miss manner. |
| 133 | */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 134 | typedef struct |
| 135 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | u32 sw_if_index[VLIB_N_RX_TX]; |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 137 | i16 l2_hdr_offset; |
| 138 | i16 l3_hdr_offset; |
| 139 | i16 l4_hdr_offset; |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 140 | u8 feature_arc_index; |
| 141 | u8 dont_waste_me; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 143 | union |
| 144 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | /* IP4/6 buffer opaque. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 146 | struct |
| 147 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | /* Adjacency from destination IP address lookup [VLIB_TX]. |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 149 | Adjacency from source IP address lookup [VLIB_RX]. |
| 150 | This gets set to ~0 until source lookup is performed. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | u32 adj_index[VLIB_N_RX_TX]; |
| 152 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 153 | union |
| 154 | { |
| 155 | struct |
| 156 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | /* Flow hash value for this packet computed from IP src/dst address |
| 158 | protocol and ports. */ |
| 159 | u32 flow_hash; |
| 160 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 161 | union |
| 162 | { |
| 163 | /* next protocol */ |
| 164 | u32 save_protocol; |
| 165 | |
| 166 | /* Hint for transport protocols */ |
| 167 | u32 fib_index; |
| 168 | }; |
Dave Barach | c7493e1 | 2016-08-24 18:36:03 -0400 | [diff] [blame] | 169 | |
| 170 | /* Rewrite length */ |
| 171 | u32 save_rewrite_length; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 172 | |
| 173 | /* MFIB RPF ID */ |
| 174 | u32 rpf_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | }; |
| 176 | |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 177 | /* ICMP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 178 | struct |
| 179 | { |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 180 | u8 type; |
| 181 | u8 code; |
| 182 | u32 data; |
| 183 | } icmp; |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 184 | |
| 185 | /* reassembly */ |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 186 | union |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 187 | { |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 188 | /* in/out variables */ |
| 189 | struct |
| 190 | { |
Klement Sekera | e849865 | 2019-06-17 12:23:15 +0000 | [diff] [blame] | 191 | u32 next_index; /* index of next node - used by custom apps */ |
| 192 | u32 error_next_index; /* index of next node if error - used by custom apps */ |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 193 | u16 estimated_mtu; /* estimated MTU calculated during reassembly */ |
Vijayabhaskar Katamreddy | 470a370 | 2019-03-01 19:57:06 -0800 | [diff] [blame] | 194 | u16 owner_thread_index; |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 195 | }; |
| 196 | /* internal variables used during reassembly */ |
| 197 | struct |
| 198 | { |
| 199 | u16 fragment_first; |
| 200 | u16 fragment_last; |
| 201 | u16 range_first; |
| 202 | u16 range_last; |
| 203 | u32 next_range_bi; |
| 204 | u16 ip6_frag_hdr_offset; |
Vijayabhaskar Katamreddy | 470a370 | 2019-03-01 19:57:06 -0800 | [diff] [blame] | 205 | u16 owner_feature_thread_index; |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 206 | }; |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 207 | } reass; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 208 | }; |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 209 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | } ip; |
| 211 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 212 | /* |
| 213 | * MPLS: |
| 214 | * data copied from the MPLS header that was popped from the packet |
| 215 | * during the look-up. |
| 216 | */ |
| 217 | struct |
| 218 | { |
Neale Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 219 | /* do not overlay w/ ip.adj_index[0,1] nor flow hash */ |
| 220 | u32 pad[VLIB_N_RX_TX + 1]; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 221 | u8 ttl; |
| 222 | u8 exp; |
| 223 | u8 first; |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 224 | /* Rewrite length */ |
| 225 | u32 save_rewrite_length; |
Neale Ranns | 9128637 | 2017-12-05 13:24:04 -0800 | [diff] [blame] | 226 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 227 | * BIER - the number of bytes in the header. |
| 228 | * the len field in the header is not authoritative. It's the |
Neale Ranns | 9128637 | 2017-12-05 13:24:04 -0800 | [diff] [blame] | 229 | * value in the table that counts. |
| 230 | */ |
| 231 | struct |
| 232 | { |
| 233 | u8 n_bytes; |
| 234 | } bier; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 235 | } mpls; |
| 236 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | /* l2 bridging path, only valid there */ |
Eyal Bari | a11832f | 2017-06-21 15:32:13 +0300 | [diff] [blame] | 238 | struct opaque_l2 |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 239 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 240 | u32 feature_bitmap; |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 241 | u16 bd_index; /* bridge-domain index */ |
Neale Ranns | a342da2 | 2019-06-06 10:35:07 +0000 | [diff] [blame] | 242 | u16 l2fib_sn; /* l2fib bd/int seq_num */ |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 243 | u8 l2_len; /* ethernet header length */ |
| 244 | u8 shg; /* split-horizon group */ |
John Lo | 5a6508d | 2017-10-03 13:13:47 -0400 | [diff] [blame] | 245 | u8 bd_age; /* aging enabled */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | } l2; |
| 247 | |
| 248 | /* l2tpv3 softwire encap, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 249 | struct |
| 250 | { |
| 251 | u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | u8 next_index; |
| 253 | u32 session_index; |
| 254 | } l2t; |
| 255 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | /* L2 classify */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 257 | struct |
| 258 | { |
Eyal Bari | a11832f | 2017-06-21 15:32:13 +0300 | [diff] [blame] | 259 | struct opaque_l2 pad; |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 260 | union |
| 261 | { |
| 262 | u32 table_index; |
| 263 | u32 opaque_index; |
| 264 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | u64 hash; |
| 266 | } l2_classify; |
| 267 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 268 | /* vnet policer */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 269 | struct |
| 270 | { |
| 271 | u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 272 | u32 index; |
| 273 | } policer; |
| 274 | |
| 275 | /* interface output features */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 276 | struct |
| 277 | { |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 278 | u32 sad_index; |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 279 | u32 protect_index; |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 280 | } ipsec; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 282 | /* MAP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 283 | struct |
| 284 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 285 | u16 mtu; |
| 286 | } map; |
| 287 | |
| 288 | /* MAP-T */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 289 | struct |
| 290 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 291 | u32 map_domain_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 292 | struct |
| 293 | { |
| 294 | u32 saddr, daddr; |
| 295 | u16 frag_offset; //Fragmentation header offset |
| 296 | u16 l4_offset; //L4 header overall offset |
| 297 | u8 l4_protocol; //The final protocol number |
| 298 | } v6; //Used by ip6_map_t only |
| 299 | u16 checksum_offset; //L4 checksum overall offset |
| 300 | u16 mtu; //Exit MTU |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | } map_t; |
| 302 | |
| 303 | /* IP Fragmentation */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 304 | struct |
| 305 | { |
Vijayabhaskar Katamreddy | c592ca5 | 2018-01-25 15:12:11 -0800 | [diff] [blame] | 306 | u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 307 | u16 mtu; |
| 308 | u8 next_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 309 | u8 flags; //See ip_frag.h |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | } ip_frag; |
| 311 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 312 | /* COP - configurable junk filter(s) */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 313 | struct |
| 314 | { |
| 315 | /* Current configuration index. */ |
| 316 | u32 current_config_index; |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 317 | } cop; |
| 318 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 319 | /* LISP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 320 | struct |
| 321 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 322 | /* overlay address family */ |
| 323 | u16 overlay_afi; |
| 324 | } lisp; |
| 325 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 326 | /* TCP */ |
| 327 | struct |
| 328 | { |
| 329 | u32 connection_index; |
Florin Coras | 07beade | 2019-06-20 12:18:31 -0700 | [diff] [blame] | 330 | union |
| 331 | { |
| 332 | u32 seq_number; |
| 333 | u32 next_node_opaque; |
| 334 | }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 335 | u32 seq_end; |
| 336 | u32 ack_number; |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 337 | u16 hdr_offset; /**< offset relative to ip hdr */ |
| 338 | u16 data_offset; /**< offset relative to ip hdr */ |
| 339 | u16 data_len; /**< data len */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 340 | u8 flags; |
| 341 | } tcp; |
| 342 | |
Marco Varlese | 191a594 | 2017-10-30 18:17:21 +0100 | [diff] [blame] | 343 | /* SCTP */ |
| 344 | struct |
| 345 | { |
| 346 | u32 connection_index; |
| 347 | u16 sid; /**< Stream ID */ |
| 348 | u16 ssn; /**< Stream Sequence Number */ |
| 349 | u32 tsn; /**< Transmission Sequence Number */ |
| 350 | u16 hdr_offset; /**< offset relative to ip hdr */ |
| 351 | u16 data_offset; /**< offset relative to ip hdr */ |
| 352 | u16 data_len; /**< data len */ |
Marco Varlese | 15cc6a8 | 2018-02-21 12:39:52 +0100 | [diff] [blame] | 353 | u8 subconn_idx; /**< index of the sub_connection being used */ |
Marco Varlese | 191a594 | 2017-10-30 18:17:21 +0100 | [diff] [blame] | 354 | u8 flags; |
| 355 | } sctp; |
| 356 | |
Matus Fabian | 161c59c | 2017-07-21 03:46:03 -0700 | [diff] [blame] | 357 | /* SNAT */ |
| 358 | struct |
| 359 | { |
| 360 | u32 flags; |
| 361 | } snat; |
| 362 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | u32 unused[6]; |
| 364 | }; |
| 365 | } vnet_buffer_opaque_t; |
| 366 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 367 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 368 | * The opaque field of the vlib_buffer_t is interpreted as a |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 369 | * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one. |
| 370 | */ |
Eyal Bari | a11832f | 2017-06-21 15:32:13 +0300 | [diff] [blame] | 371 | STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <= |
| 372 | STRUCT_SIZE_OF (vlib_buffer_t, opaque), |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 373 | "VNET buffer meta-data too large for vlib_buffer"); |
| 374 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 375 | #define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque) |
| 376 | |
| 377 | /* Full cache line (64 bytes) of additional space */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 378 | typedef struct |
| 379 | { |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 380 | /** |
| 381 | * QoS marking data that needs to persist from the recording nodes |
| 382 | * (nominally in the ingress path) to the marking node (in the |
| 383 | * egress path) |
| 384 | */ |
| 385 | struct |
| 386 | { |
| 387 | u8 bits; |
| 388 | u8 source; |
| 389 | } qos; |
| 390 | |
Neale Ranns | ce9e0b4 | 2018-08-01 12:53:17 -0700 | [diff] [blame] | 391 | u8 loop_counter; |
| 392 | u8 __unused[1]; |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 393 | |
Neale Ranns | 25b0494 | 2018-04-04 09:34:50 -0700 | [diff] [blame] | 394 | /* Group Based Policy */ |
| 395 | struct |
| 396 | { |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 397 | u8 __unused; |
| 398 | u8 flags; |
Neale Ranns | 4ba6772 | 2019-02-28 11:11:39 +0000 | [diff] [blame] | 399 | u16 sclass; |
Neale Ranns | 25b0494 | 2018-04-04 09:34:50 -0700 | [diff] [blame] | 400 | } gbp; |
| 401 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 402 | /** |
| 403 | * The L4 payload size set on input on GSO enabled interfaces |
| 404 | * when we receive a GSO packet (a chain of buffers with the first one |
| 405 | * having GSO bit set), and needs to persist all the way to the interface-output, |
| 406 | * in case the egress interface is not GSO-enabled - then we need to perform |
| 407 | * the segmentation, and use this value to cut the payload appropriately. |
| 408 | */ |
| 409 | u16 gso_size; |
| 410 | /* size of L4 prototol header */ |
| 411 | u16 gso_l4_hdr_sz; |
| 412 | |
| 413 | /* The union below has a u64 alignment, so this space is unused */ |
| 414 | u32 __unused2[1]; |
| 415 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 416 | union |
| 417 | { |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 418 | struct |
| 419 | { |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 420 | #if VLIB_BUFFER_TRACE_TRAJECTORY > 0 |
| 421 | /* buffer trajectory tracing */ |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 422 | u16 *trajectory_trace; |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 423 | #endif |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 424 | }; |
Dave Barach | 78c5689 | 2018-05-16 11:34:35 -0400 | [diff] [blame] | 425 | struct |
| 426 | { |
| 427 | u64 pad[1]; |
| 428 | u64 pg_replay_timestamp; |
| 429 | }; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 430 | u32 unused[8]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 431 | }; |
| 432 | } vnet_buffer_opaque2_t; |
| 433 | |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 434 | #define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2) |
| 435 | |
| 436 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 437 | * The opaque2 field of the vlib_buffer_t is interpreted as a |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 438 | * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one. |
| 439 | */ |
| 440 | STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <= |
| 441 | STRUCT_SIZE_OF (vlib_buffer_t, opaque2), |
| 442 | "VNET buffer opaque2 meta-data too large for vlib_buffer"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 443 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 444 | #define gso_mtu_sz(b) (vnet_buffer2(b)->gso_size + vnet_buffer2(b)->gso_l4_hdr_sz + vnet_buffer(b)->l4_hdr_offset) |
| 445 | |
| 446 | |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 447 | format_function_t format_vnet_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 448 | |
| 449 | #endif /* included_vnet_buffer_h */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 450 | |
| 451 | /* |
| 452 | * fd.io coding-style-patch-verification: ON |
| 453 | * |
| 454 | * Local Variables: |
| 455 | * eval: (c-set-style "gnu") |
| 456 | * End: |
| 457 | */ |