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 | */ |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [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, "offload", 0) \ |
| 60 | _ (11, IS_NATED, "natted", 1) \ |
| 61 | _ (12, L2_HDR_OFFSET_VALID, "l2_hdr_offset_valid", 0) \ |
| 62 | _ (13, L3_HDR_OFFSET_VALID, "l3_hdr_offset_valid", 0) \ |
| 63 | _ (14, L4_HDR_OFFSET_VALID, "l4_hdr_offset_valid", 0) \ |
| 64 | _ (15, FLOW_REPORT, "flow-report", 1) \ |
| 65 | _ (16, IS_DVR, "dvr", 1) \ |
| 66 | _ (17, QOS_DATA_VALID, "qos-data-valid", 0) \ |
| 67 | _ (18, GSO, "gso", 0) \ |
| 68 | _ (19, AVAIL1, "avail1", 1) \ |
| 69 | _ (20, AVAIL2, "avail2", 1) \ |
| 70 | _ (21, AVAIL3, "avail3", 1) \ |
| 71 | _ (22, AVAIL4, "avail4", 1) \ |
| 72 | _ (23, AVAIL5, "avail5", 1) \ |
| 73 | _ (24, AVAIL6, "avail6", 1) \ |
| 74 | _ (25, AVAIL7, "avail7", 1) \ |
| 75 | _ (26, AVAIL8, "avail8", 1) \ |
| 76 | _ (27, AVAIL9, "avail9", 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 | |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 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 | VNET_BUFFER_F_AVAIL8 | VNET_BUFFER_F_AVAIL9) |
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 | |
Mohsin Kazmi | 36f7a6a | 2021-05-05 14:26:38 +0200 | [diff] [blame] | 110 | #define foreach_vnet_buffer_offload_flag \ |
| 111 | _ (0, IP_CKSUM, "offload-ip-cksum", 1) \ |
| 112 | _ (1, TCP_CKSUM, "offload-tcp-cksum", 1) \ |
| 113 | _ (2, UDP_CKSUM, "offload-udp-cksum", 1) \ |
| 114 | _ (3, OUTER_IP_CKSUM, "offload-outer-ip-cksum", 1) \ |
Mohsin Kazmi | 537e955 | 2021-06-17 14:33:03 +0200 | [diff] [blame] | 115 | _ (4, OUTER_UDP_CKSUM, "offload-outer-udp-cksum", 1) \ |
| 116 | _ (5, TNL_VXLAN, "offload-vxlan-tunnel", 1) \ |
| 117 | _ (6, TNL_IPIP, "offload-ipip-tunnel", 1) |
Mohsin Kazmi | 36f7a6a | 2021-05-05 14:26:38 +0200 | [diff] [blame] | 118 | |
| 119 | typedef enum |
| 120 | { |
| 121 | #define _(bit, name, s, v) VNET_BUFFER_OFFLOAD_F_##name = (1 << bit), |
| 122 | foreach_vnet_buffer_offload_flag |
| 123 | #undef _ |
| 124 | } vnet_buffer_oflags_t; |
| 125 | |
Mohsin Kazmi | 537e955 | 2021-06-17 14:33:03 +0200 | [diff] [blame] | 126 | #define VNET_BUFFER_OFFLOAD_F_TNL_MASK \ |
| 127 | (VNET_BUFFER_OFFLOAD_F_TNL_VXLAN | VNET_BUFFER_OFFLOAD_F_TNL_IPIP) |
| 128 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | #define foreach_buffer_opaque_union_subtype \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | _(ip) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | _(l2) \ |
| 132 | _(l2t) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 133 | _(l2_classify) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | _(policer) \ |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 135 | _(ipsec) \ |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 136 | _(map) \ |
| 137 | _(map_t) \ |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 138 | _(ip_frag) \ |
Neale Ranns | d792d9c | 2017-10-21 10:53:20 -0700 | [diff] [blame] | 139 | _(mpls) \ |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 140 | _(tcp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 142 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | * vnet stack buffer opaque array overlay structure. |
| 144 | * The vnet_buffer_opaque_t *must* be the same size as the |
| 145 | * vlib_buffer_t "opaque" structure member, 32 bytes. |
| 146 | * |
| 147 | * When adding a union type, please add a stanza to |
| 148 | * foreach_buffer_opaque_union_subtype (directly above). |
| 149 | * Code in vnet_interface_init(...) verifies the size |
| 150 | * of the union, and will announce any deviations in an |
| 151 | * impossible-to-miss manner. |
| 152 | */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 153 | typedef struct |
| 154 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | u32 sw_if_index[VLIB_N_RX_TX]; |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 156 | i16 l2_hdr_offset; |
| 157 | i16 l3_hdr_offset; |
| 158 | i16 l4_hdr_offset; |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 159 | u8 feature_arc_index; |
Mohsin Kazmi | a7e830e | 2021-04-23 15:16:50 +0200 | [diff] [blame] | 160 | /* offload flags */ |
Mohsin Kazmi | 36f7a6a | 2021-05-05 14:26:38 +0200 | [diff] [blame] | 161 | vnet_buffer_oflags_t oflags : 8; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 163 | union |
| 164 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | /* IP4/6 buffer opaque. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 166 | struct |
| 167 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | /* Adjacency from destination IP address lookup [VLIB_TX]. |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 169 | Adjacency from source IP address lookup [VLIB_RX]. |
| 170 | This gets set to ~0 until source lookup is performed. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | u32 adj_index[VLIB_N_RX_TX]; |
| 172 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 173 | union |
| 174 | { |
| 175 | struct |
| 176 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | /* Flow hash value for this packet computed from IP src/dst address |
| 178 | protocol and ports. */ |
| 179 | u32 flow_hash; |
| 180 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 181 | union |
| 182 | { |
| 183 | /* next protocol */ |
| 184 | u32 save_protocol; |
| 185 | |
| 186 | /* Hint for transport protocols */ |
| 187 | u32 fib_index; |
| 188 | }; |
Dave Barach | c7493e1 | 2016-08-24 18:36:03 -0400 | [diff] [blame] | 189 | |
| 190 | /* Rewrite length */ |
Klement Sekera | 7dbf9a1 | 2019-11-21 10:31:03 +0000 | [diff] [blame] | 191 | u8 save_rewrite_length; |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 192 | |
Nathan Skrzypczak | bfa8608 | 2021-09-09 18:31:36 +0200 | [diff] [blame] | 193 | union |
| 194 | { |
| 195 | /* sw_if_index of the local interface the buffer was received on |
| 196 | * - if hitting a DPO_RECEIVE - it is set in ip[46]-receive. |
| 197 | * This is ~0 if the dpo is not a receive dpo, or if the |
| 198 | * interface is not specified (e.g. route add via local) */ |
| 199 | u32 rx_sw_if_index; |
| 200 | |
| 201 | /* MFIB RPF ID */ |
| 202 | u32 rpf_id; |
| 203 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 204 | }; |
| 205 | |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 206 | /* ICMP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 207 | struct |
| 208 | { |
Ole Troan | cda9482 | 2016-01-07 14:37:25 +0100 | [diff] [blame] | 209 | u8 type; |
| 210 | u8 code; |
| 211 | u32 data; |
| 212 | } icmp; |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 213 | |
| 214 | /* reassembly */ |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 215 | union |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 216 | { |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 217 | /* group input/output to simplify the code, this way |
| 218 | * we can handoff while keeping input variables intact */ |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 219 | struct |
| 220 | { |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 221 | /* input variables */ |
| 222 | struct |
| 223 | { |
| 224 | u32 next_index; /* index of next node - used by custom apps */ |
| 225 | u32 error_next_index; /* index of next node if error - used by custom apps */ |
| 226 | }; |
| 227 | /* handoff variables */ |
| 228 | struct |
| 229 | { |
| 230 | u16 owner_thread_index; |
| 231 | }; |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 232 | }; |
| 233 | /* output variables */ |
| 234 | struct |
| 235 | { |
| 236 | union |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 237 | { |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 238 | /* shallow virtual reassembly output variables */ |
| 239 | struct |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 240 | { |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 241 | u16 l4_src_port; /* tcp/udp/icmp src port */ |
| 242 | u16 l4_dst_port; /* tcp/udp/icmp dst port */ |
| 243 | u32 tcp_ack_number; |
Klement Sekera | 8ad070e | 2020-01-15 10:30:48 +0000 | [diff] [blame] | 244 | u8 save_rewrite_length; |
| 245 | u8 ip_proto; /* protocol in ip header */ |
| 246 | u8 icmp_type_or_tcp_flags; |
Klement Sekera | 5a58e7c | 2021-11-03 17:57:28 +0100 | [diff] [blame] | 247 | u8 is_non_first_fragment : 1; |
| 248 | u8 l4_layer_truncated : 7; |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 249 | u32 tcp_seq_number; |
| 250 | }; |
| 251 | /* full reassembly output variables */ |
| 252 | struct |
| 253 | { |
| 254 | u16 estimated_mtu; /* estimated MTU calculated during reassembly */ |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 255 | }; |
| 256 | }; |
Klement Sekera | 4c53313 | 2018-02-22 11:41:12 +0100 | [diff] [blame] | 257 | }; |
| 258 | /* internal variables used during reassembly */ |
| 259 | struct |
| 260 | { |
| 261 | u16 fragment_first; |
| 262 | u16 fragment_last; |
| 263 | u16 range_first; |
| 264 | u16 range_last; |
| 265 | u32 next_range_bi; |
| 266 | u16 ip6_frag_hdr_offset; |
| 267 | }; |
Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 268 | } reass; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 269 | }; |
| 270 | } ip; |
| 271 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 272 | /* |
| 273 | * MPLS: |
| 274 | * data copied from the MPLS header that was popped from the packet |
| 275 | * during the look-up. |
| 276 | */ |
| 277 | struct |
| 278 | { |
Neale Ranns | 31ed744 | 2018-02-23 05:29:09 -0800 | [diff] [blame] | 279 | /* do not overlay w/ ip.adj_index[0,1] nor flow hash */ |
| 280 | u32 pad[VLIB_N_RX_TX + 1]; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 281 | u8 ttl; |
| 282 | u8 exp; |
| 283 | u8 first; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 284 | u8 pyld_proto:3; /* dpo_proto_t */ |
| 285 | u8 rsvd:5; |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 286 | /* Rewrite length */ |
Klement Sekera | 7dbf9a1 | 2019-11-21 10:31:03 +0000 | [diff] [blame] | 287 | u8 save_rewrite_length; |
Rajesh Goel | d6f1c9c | 2019-10-06 13:17:36 +0530 | [diff] [blame] | 288 | /* Save the mpls header length including all label stack */ |
| 289 | u8 mpls_hdr_length; |
Neale Ranns | 9128637 | 2017-12-05 13:24:04 -0800 | [diff] [blame] | 290 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 291 | * BIER - the number of bytes in the header. |
| 292 | * the len field in the header is not authoritative. It's the |
Neale Ranns | 9128637 | 2017-12-05 13:24:04 -0800 | [diff] [blame] | 293 | * value in the table that counts. |
| 294 | */ |
| 295 | struct |
| 296 | { |
| 297 | u8 n_bytes; |
| 298 | } bier; |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 299 | } mpls; |
| 300 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | /* l2 bridging path, only valid there */ |
Eyal Bari | a11832f | 2017-06-21 15:32:13 +0300 | [diff] [blame] | 302 | struct opaque_l2 |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 303 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 304 | u32 feature_bitmap; |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 305 | u16 bd_index; /* bridge-domain index */ |
Neale Ranns | a342da2 | 2019-06-06 10:35:07 +0000 | [diff] [blame] | 306 | u16 l2fib_sn; /* l2fib bd/int seq_num */ |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 307 | u8 l2_len; /* ethernet header length */ |
| 308 | u8 shg; /* split-horizon group */ |
John Lo | 5a6508d | 2017-10-03 13:13:47 -0400 | [diff] [blame] | 309 | u8 bd_age; /* aging enabled */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | } l2; |
| 311 | |
| 312 | /* l2tpv3 softwire encap, only valid there */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 313 | struct |
| 314 | { |
| 315 | u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 316 | u8 next_index; |
| 317 | u32 session_index; |
| 318 | } l2t; |
| 319 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | /* L2 classify */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 321 | struct |
| 322 | { |
Benoît Ganne | b03eec9 | 2022-06-08 10:49:17 +0200 | [diff] [blame] | 323 | u32 pad[4]; /* do not overlay w/ ip.fib_index nor l2 */ |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 324 | union |
| 325 | { |
| 326 | u32 table_index; |
| 327 | u32 opaque_index; |
| 328 | }; |
Benoît Ganne | b03eec9 | 2022-06-08 10:49:17 +0200 | [diff] [blame] | 329 | u32 hash; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | } l2_classify; |
| 331 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 332 | /* vnet policer */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 333 | struct |
| 334 | { |
| 335 | u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | u32 index; |
| 337 | } policer; |
| 338 | |
| 339 | /* interface output features */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 340 | struct |
| 341 | { |
Neale Ranns | aa7d766 | 2021-02-10 08:42:49 +0000 | [diff] [blame] | 342 | /* don't overlap the adjcencies nor flow-hash */ |
| 343 | u32 __pad[3]; |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 344 | u32 sad_index; |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 345 | u32 protect_index; |
Neale Ranns | aa7d766 | 2021-02-10 08:42:49 +0000 | [diff] [blame] | 346 | u16 thread_index; |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 347 | } ipsec; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 349 | /* MAP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 350 | struct |
| 351 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | u16 mtu; |
| 353 | } map; |
| 354 | |
| 355 | /* MAP-T */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 356 | struct |
| 357 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 358 | u32 map_domain_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 359 | struct |
| 360 | { |
| 361 | u32 saddr, daddr; |
| 362 | u16 frag_offset; //Fragmentation header offset |
| 363 | u16 l4_offset; //L4 header overall offset |
| 364 | u8 l4_protocol; //The final protocol number |
| 365 | } v6; //Used by ip6_map_t only |
| 366 | u16 checksum_offset; //L4 checksum overall offset |
| 367 | u16 mtu; //Exit MTU |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | } map_t; |
| 369 | |
| 370 | /* IP Fragmentation */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 371 | struct |
| 372 | { |
Vijayabhaskar Katamreddy | c592ca5 | 2018-01-25 15:12:11 -0800 | [diff] [blame] | 373 | u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | u16 mtu; |
| 375 | u8 next_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 376 | u8 flags; //See ip_frag.h |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 377 | } ip_frag; |
| 378 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 379 | /* COP - configurable junk filter(s) */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 380 | struct |
| 381 | { |
| 382 | /* Current configuration index. */ |
| 383 | u32 current_config_index; |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 384 | } cop; |
| 385 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 386 | /* LISP */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 387 | struct |
| 388 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 389 | /* overlay address family */ |
| 390 | u16 overlay_afi; |
| 391 | } lisp; |
| 392 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 393 | /* TCP */ |
| 394 | struct |
| 395 | { |
| 396 | u32 connection_index; |
Florin Coras | 07beade | 2019-06-20 12:18:31 -0700 | [diff] [blame] | 397 | union |
| 398 | { |
| 399 | u32 seq_number; |
| 400 | u32 next_node_opaque; |
| 401 | }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 402 | u32 seq_end; |
| 403 | u32 ack_number; |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 404 | u16 hdr_offset; /**< offset relative to ip hdr */ |
| 405 | u16 data_offset; /**< offset relative to ip hdr */ |
| 406 | u16 data_len; /**< data len */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 407 | u8 flags; |
| 408 | } tcp; |
| 409 | |
Matus Fabian | 161c59c | 2017-07-21 03:46:03 -0700 | [diff] [blame] | 410 | /* SNAT */ |
| 411 | struct |
| 412 | { |
| 413 | u32 flags; |
Klement Sekera | 98d82ca | 2021-02-02 13:25:40 +0100 | [diff] [blame] | 414 | u32 required_thread_index; |
Matus Fabian | 161c59c | 2017-07-21 03:46:03 -0700 | [diff] [blame] | 415 | } snat; |
| 416 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 417 | u32 unused[6]; |
| 418 | }; |
| 419 | } vnet_buffer_opaque_t; |
| 420 | |
Benoît Ganne | 6ea5c47 | 2021-10-28 10:50:47 +0200 | [diff] [blame] | 421 | #define VNET_REWRITE_TOTAL_BYTES 128 |
| 422 | STATIC_ASSERT (VNET_REWRITE_TOTAL_BYTES <= VLIB_BUFFER_PRE_DATA_SIZE, |
| 423 | "VNET_REWRITE_TOTAL_BYTES too big"); |
Klement Sekera | 7dbf9a1 | 2019-11-21 10:31:03 +0000 | [diff] [blame] | 424 | |
| 425 | STATIC_ASSERT (STRUCT_SIZE_OF (vnet_buffer_opaque_t, ip.save_rewrite_length) |
| 426 | == STRUCT_SIZE_OF (vnet_buffer_opaque_t, |
Klement Sekera | f126e74 | 2019-10-10 09:46:06 +0000 | [diff] [blame] | 427 | ip.reass.save_rewrite_length) |
| 428 | && STRUCT_SIZE_OF (vnet_buffer_opaque_t, |
| 429 | ip.reass.save_rewrite_length) == |
| 430 | STRUCT_SIZE_OF (vnet_buffer_opaque_t, mpls.save_rewrite_length) |
Klement Sekera | 7dbf9a1 | 2019-11-21 10:31:03 +0000 | [diff] [blame] | 431 | && STRUCT_SIZE_OF (vnet_buffer_opaque_t, |
| 432 | mpls.save_rewrite_length) == 1 |
| 433 | && VNET_REWRITE_TOTAL_BYTES < UINT8_MAX, |
| 434 | "save_rewrite_length member must be able to hold the max value of rewrite length"); |
| 435 | |
Klement Sekera | 8ad070e | 2020-01-15 10:30:48 +0000 | [diff] [blame] | 436 | STATIC_ASSERT (STRUCT_OFFSET_OF (vnet_buffer_opaque_t, ip.save_rewrite_length) |
| 437 | == STRUCT_OFFSET_OF (vnet_buffer_opaque_t, |
| 438 | ip.reass.save_rewrite_length) |
| 439 | && STRUCT_OFFSET_OF (vnet_buffer_opaque_t, |
| 440 | mpls.save_rewrite_length) == |
| 441 | STRUCT_OFFSET_OF (vnet_buffer_opaque_t, |
| 442 | ip.reass.save_rewrite_length), |
| 443 | "save_rewrite_length must be aligned so that reass doesn't overwrite it"); |
| 444 | |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 445 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 446 | * The opaque field of the vlib_buffer_t is interpreted as a |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 447 | * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one. |
| 448 | */ |
Eyal Bari | a11832f | 2017-06-21 15:32:13 +0300 | [diff] [blame] | 449 | STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <= |
| 450 | STRUCT_SIZE_OF (vlib_buffer_t, opaque), |
Neale Ranns | ad422ed | 2016-11-02 14:20:04 +0000 | [diff] [blame] | 451 | "VNET buffer meta-data too large for vlib_buffer"); |
| 452 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 453 | #define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque) |
| 454 | |
| 455 | /* Full cache line (64 bytes) of additional space */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 456 | typedef struct |
| 457 | { |
Neale Ranns | 039cbfe | 2018-02-27 03:45:38 -0800 | [diff] [blame] | 458 | /** |
| 459 | * QoS marking data that needs to persist from the recording nodes |
| 460 | * (nominally in the ingress path) to the marking node (in the |
| 461 | * egress path) |
| 462 | */ |
| 463 | struct |
| 464 | { |
| 465 | u8 bits; |
| 466 | u8 source; |
| 467 | } qos; |
| 468 | |
Neale Ranns | ce9e0b4 | 2018-08-01 12:53:17 -0700 | [diff] [blame] | 469 | u8 loop_counter; |
Neale Ranns | 657b9e3 | 2021-12-31 10:37:45 +0000 | [diff] [blame] | 470 | u8 __unused[5]; |
Neale Ranns | 25b0494 | 2018-04-04 09:34:50 -0700 | [diff] [blame] | 471 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 472 | /** |
| 473 | * The L4 payload size set on input on GSO enabled interfaces |
| 474 | * when we receive a GSO packet (a chain of buffers with the first one |
| 475 | * having GSO bit set), and needs to persist all the way to the interface-output, |
| 476 | * in case the egress interface is not GSO-enabled - then we need to perform |
| 477 | * the segmentation, and use this value to cut the payload appropriately. |
| 478 | */ |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 479 | struct |
| 480 | { |
| 481 | u16 gso_size; |
| 482 | /* size of L4 prototol header */ |
| 483 | u16 gso_l4_hdr_sz; |
Mohsin Kazmi | 537e955 | 2021-06-17 14:33:03 +0200 | [diff] [blame] | 484 | i16 outer_l3_hdr_offset; |
| 485 | i16 outer_l4_hdr_offset; |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 486 | }; |
Klement Sekera | 4881cb4 | 2020-12-15 18:47:05 +0100 | [diff] [blame] | 487 | |
Klement Sekera | 5581de6 | 2020-04-24 12:24:41 +0000 | [diff] [blame] | 488 | struct |
| 489 | { |
| 490 | u32 arc_next; |
Klement Sekera | d2b6997 | 2021-03-09 17:53:47 +0100 | [diff] [blame] | 491 | union |
| 492 | { |
| 493 | u32 cached_session_index; |
| 494 | u32 cached_dst_nat_session_index; |
| 495 | }; |
Klement Sekera | 5581de6 | 2020-04-24 12:24:41 +0000 | [diff] [blame] | 496 | } nat; |
| 497 | |
Neale Ranns | 8e0af7a | 2022-03-17 17:27:31 +0000 | [diff] [blame] | 498 | u32 unused[8]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 499 | } vnet_buffer_opaque2_t; |
| 500 | |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 501 | #define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2) |
| 502 | |
| 503 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 504 | * The opaque2 field of the vlib_buffer_t is interpreted as a |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 505 | * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one. |
| 506 | */ |
Neale Ranns | 8e0af7a | 2022-03-17 17:27:31 +0000 | [diff] [blame] | 507 | STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) == |
| 508 | STRUCT_SIZE_OF (vlib_buffer_t, opaque2), |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 509 | "VNET buffer opaque2 meta-data too large for vlib_buffer"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 510 | |
Mohsin Kazmi | 0f09a47 | 2019-07-12 13:18:16 +0200 | [diff] [blame] | 511 | #define gso_mtu_sz(b) (vnet_buffer2(b)->gso_size + \ |
| 512 | vnet_buffer2(b)->gso_l4_hdr_sz + \ |
| 513 | vnet_buffer(b)->l4_hdr_offset - \ |
| 514 | vnet_buffer (b)->l3_hdr_offset) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 515 | |
Benoît Ganne | 03f2a01 | 2021-07-20 16:49:13 +0200 | [diff] [blame] | 516 | format_function_t format_vnet_buffer_no_chain; |
Damjan Marion | bd846cd | 2017-11-21 13:12:41 +0100 | [diff] [blame] | 517 | format_function_t format_vnet_buffer; |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 518 | format_function_t format_vnet_buffer_offload; |
Damjan Marion | 25ab6c5 | 2021-03-05 14:41:25 +0100 | [diff] [blame] | 519 | format_function_t format_vnet_buffer_flags; |
| 520 | format_function_t format_vnet_buffer_opaque; |
| 521 | format_function_t format_vnet_buffer_opaque2; |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 522 | |
| 523 | static_always_inline void |
Mohsin Kazmi | 36f7a6a | 2021-05-05 14:26:38 +0200 | [diff] [blame] | 524 | vnet_buffer_offload_flags_set (vlib_buffer_t *b, vnet_buffer_oflags_t oflags) |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 525 | { |
Benoît Ganne | aa80f07 | 2021-02-18 10:34:33 +0100 | [diff] [blame] | 526 | if (b->flags & VNET_BUFFER_F_OFFLOAD) |
| 527 | { |
| 528 | /* add a flag to existing offload */ |
Mohsin Kazmi | a7e830e | 2021-04-23 15:16:50 +0200 | [diff] [blame] | 529 | vnet_buffer (b)->oflags |= oflags; |
Benoît Ganne | aa80f07 | 2021-02-18 10:34:33 +0100 | [diff] [blame] | 530 | } |
| 531 | else |
| 532 | { |
| 533 | /* no offload yet: reset offload flags to new value */ |
Mohsin Kazmi | a7e830e | 2021-04-23 15:16:50 +0200 | [diff] [blame] | 534 | vnet_buffer (b)->oflags = oflags; |
Benoît Ganne | aa80f07 | 2021-02-18 10:34:33 +0100 | [diff] [blame] | 535 | b->flags |= VNET_BUFFER_F_OFFLOAD; |
| 536 | } |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | static_always_inline void |
Mohsin Kazmi | 36f7a6a | 2021-05-05 14:26:38 +0200 | [diff] [blame] | 540 | vnet_buffer_offload_flags_clear (vlib_buffer_t *b, vnet_buffer_oflags_t oflags) |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 541 | { |
Mohsin Kazmi | a7e830e | 2021-04-23 15:16:50 +0200 | [diff] [blame] | 542 | vnet_buffer (b)->oflags &= ~oflags; |
| 543 | if (0 == vnet_buffer (b)->oflags) |
Mohsin Kazmi | 6809538 | 2021-02-10 11:26:24 +0100 | [diff] [blame] | 544 | b->flags &= ~VNET_BUFFER_F_OFFLOAD; |
| 545 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 546 | |
| 547 | #endif /* included_vnet_buffer_h */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * fd.io coding-style-patch-verification: ON |
| 551 | * |
| 552 | * Local Variables: |
| 553 | * eval: (c-set-style "gnu") |
| 554 | * End: |
| 555 | */ |