Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 | #ifndef included_vnet_flow_flow_h |
| 17 | #define included_vnet_flow_flow_h |
| 18 | |
| 19 | #include <vppinfra/clib.h> |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 20 | #include <vppinfra/pcap.h> |
Neale Ranns | f7040f0 | 2022-02-15 09:02:27 +0000 | [diff] [blame] | 21 | #include <vnet/vnet.h> |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 22 | #include <vnet/l3_types.h> |
| 23 | #include <vnet/ip/ip4_packet.h> |
| 24 | #include <vnet/ip/ip6_packet.h> |
Chenmin Sun | 4ff8d61 | 2019-12-15 01:16:45 +0800 | [diff] [blame] | 25 | #include <vnet/ethernet/packet.h> |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 26 | |
Ting Xu | 3a36682 | 2021-09-16 08:37:25 +0000 | [diff] [blame] | 27 | #define foreach_flow_type \ |
| 28 | /* l2 flow*/ \ |
| 29 | _ (ETHERNET, ethernet, "ethernet") \ |
| 30 | /* l3 IP flow */ \ |
| 31 | _ (IP4, ip4, "ipv4") \ |
| 32 | _ (IP6, ip6, "ipv6") \ |
| 33 | /* IP tunnel flow */ \ |
| 34 | _ (IP4_L2TPV3OIP, ip4_l2tpv3oip, "ipv4-l2tpv3oip") \ |
| 35 | _ (IP4_IPSEC_ESP, ip4_ipsec_esp, "ipv4-ipsec-esp") \ |
| 36 | _ (IP4_IPSEC_AH, ip4_ipsec_ah, "ipv4-ipsec-ah") \ |
| 37 | /* l4 flow*/ \ |
| 38 | _ (IP4_N_TUPLE, ip4_n_tuple, "ipv4-n-tuple") \ |
| 39 | _ (IP6_N_TUPLE, ip6_n_tuple, "ipv6-n-tuple") \ |
| 40 | _ (IP4_N_TUPLE_TAGGED, ip4_n_tuple_tagged, "ipv4-n-tuple-tagged") \ |
| 41 | _ (IP6_N_TUPLE_TAGGED, ip6_n_tuple_tagged, "ipv6-n-tuple-tagged") \ |
| 42 | /* L4 tunnel flow*/ \ |
| 43 | _ (IP4_VXLAN, ip4_vxlan, "ipv4-vxlan") \ |
| 44 | _ (IP6_VXLAN, ip6_vxlan, "ipv6-vxlan") \ |
| 45 | _ (IP4_GTPC, ip4_gtpc, "ipv4-gtpc") \ |
| 46 | _ (IP4_GTPU, ip4_gtpu, "ipv4-gtpu") \ |
| 47 | /* generic flow */ \ |
Xinyao Cai | 99d3a40 | 2023-02-28 14:44:58 +0800 | [diff] [blame] | 48 | _ (GENERIC, generic, "generic") \ |
| 49 | /* IP in IP */ \ |
| 50 | _ (IP6_IP6, ip6_ip6, "ipv6-ipv6") \ |
| 51 | _ (IP6_IP4, ip6_ip4, "ipv6-ipv4") \ |
| 52 | _ (IP4_IP6, ip4_ip6, "ipv4-ipv6") \ |
| 53 | _ (IP4_IP4, ip4_ip4, "ipv4-ipv4") \ |
| 54 | _ (IP6_IP6_N_TUPLE, ip6_ip6_n_tuple, "ipv6-ipv6-n-tuple") \ |
| 55 | _ (IP6_IP4_N_TUPLE, ip6_ip4_n_tuple, "ipv6-ipv4-n-tuple") \ |
| 56 | _ (IP4_IP6_N_TUPLE, ip4_ip6_n_tuple, "ipv4-ipv6-n-tuple") \ |
| 57 | _ (IP4_IP4_N_TUPLE, ip4_ip4_n_tuple, "ipv4-ipv4-n-tuple") |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 58 | |
Chenmin Sun | 4ff8d61 | 2019-12-15 01:16:45 +0800 | [diff] [blame] | 59 | #define foreach_flow_entry_ethernet \ |
| 60 | _fe(ethernet_header_t, eth_hdr) |
| 61 | |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 62 | #define foreach_flow_entry_ip4 \ |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 63 | _fe(ip4_address_and_mask_t, src_addr) \ |
| 64 | _fe(ip4_address_and_mask_t, dst_addr) \ |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 65 | _fe(ip_prot_and_mask_t, protocol) |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 66 | |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 67 | #define foreach_flow_entry_ip6 \ |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 68 | _fe(ip6_address_and_mask_t, src_addr) \ |
| 69 | _fe(ip6_address_and_mask_t, dst_addr) \ |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 70 | _fe(ip_prot_and_mask_t, protocol) |
Chenmin Sun | f13830c | 2020-02-26 19:22:35 +0800 | [diff] [blame] | 71 | |
Chenmin Sun | 8b43aaa | 2020-04-15 01:55:58 +0800 | [diff] [blame] | 72 | #define foreach_flow_entry_ip4_l2tpv3oip \ |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 73 | foreach_flow_entry_ip4 \ |
Chenmin Sun | 8b43aaa | 2020-04-15 01:55:58 +0800 | [diff] [blame] | 74 | _fe(u32, session_id) |
Chenmin Sun | f13830c | 2020-02-26 19:22:35 +0800 | [diff] [blame] | 75 | |
Chenmin Sun | d4c3666 | 2020-06-22 18:21:31 +0800 | [diff] [blame] | 76 | #define foreach_flow_entry_ip4_ipsec_esp \ |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 77 | foreach_flow_entry_ip4 \ |
Chenmin Sun | d4c3666 | 2020-06-22 18:21:31 +0800 | [diff] [blame] | 78 | _fe(u32, spi) |
| 79 | |
| 80 | #define foreach_flow_entry_ip4_ipsec_ah \ |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 81 | foreach_flow_entry_ip4 \ |
Chenmin Sun | d4c3666 | 2020-06-22 18:21:31 +0800 | [diff] [blame] | 82 | _fe(u32, spi) |
| 83 | |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 84 | #define foreach_flow_entry_ip4_n_tuple \ |
| 85 | foreach_flow_entry_ip4 \ |
| 86 | _fe(ip_port_and_mask_t, src_port) \ |
| 87 | _fe(ip_port_and_mask_t, dst_port) |
| 88 | |
| 89 | #define foreach_flow_entry_ip6_n_tuple \ |
| 90 | foreach_flow_entry_ip6 \ |
| 91 | _fe(ip_port_and_mask_t, src_port) \ |
| 92 | _fe(ip_port_and_mask_t, dst_port) |
| 93 | |
| 94 | #define foreach_flow_entry_ip4_n_tuple_tagged \ |
| 95 | foreach_flow_entry_ip4 \ |
| 96 | _fe(ip_port_and_mask_t, src_port) \ |
| 97 | _fe(ip_port_and_mask_t, dst_port) |
| 98 | |
| 99 | #define foreach_flow_entry_ip6_n_tuple_tagged \ |
| 100 | foreach_flow_entry_ip6 \ |
| 101 | _fe(ip_port_and_mask_t, src_port) \ |
| 102 | _fe(ip_port_and_mask_t, dst_port) |
| 103 | |
Chenmin Sun | 91f102e | 2020-12-08 00:42:43 +0800 | [diff] [blame] | 104 | #define foreach_flow_entry_ip4_vxlan \ |
| 105 | foreach_flow_entry_ip4_n_tuple _fe (u32, vni) |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 106 | |
Chenmin Sun | 91f102e | 2020-12-08 00:42:43 +0800 | [diff] [blame] | 107 | #define foreach_flow_entry_ip6_vxlan \ |
| 108 | foreach_flow_entry_ip6_n_tuple _fe (u32, vni) |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 109 | |
Chenmin Sun | bf85a98 | 2019-10-18 07:35:16 +0800 | [diff] [blame] | 110 | #define foreach_flow_entry_ip4_gtpc \ |
| 111 | foreach_flow_entry_ip4_n_tuple \ |
| 112 | _fe(u32, teid) |
| 113 | |
| 114 | #define foreach_flow_entry_ip4_gtpu \ |
| 115 | foreach_flow_entry_ip4_n_tuple \ |
| 116 | _fe(u32, teid) |
| 117 | |
Xinyao Cai | 99d3a40 | 2023-02-28 14:44:58 +0800 | [diff] [blame] | 118 | #define foreach_flow_entry_ip6_ip6 \ |
| 119 | foreach_flow_entry_ip6 _fe (ip6_address_and_mask_t, in_src_addr) \ |
| 120 | _fe (ip6_address_and_mask_t, in_dst_addr) \ |
| 121 | _fe (ip_prot_and_mask_t, in_protocol) |
| 122 | |
| 123 | #define foreach_flow_entry_ip6_ip6_n_tuple \ |
| 124 | foreach_flow_entry_ip6_ip6 _fe (ip_port_and_mask_t, in_src_port) \ |
| 125 | _fe (ip_port_and_mask_t, in_dst_port) |
| 126 | |
| 127 | #define foreach_flow_entry_ip6_ip4 \ |
| 128 | foreach_flow_entry_ip6 _fe (ip4_address_and_mask_t, in_src_addr) \ |
| 129 | _fe (ip4_address_and_mask_t, in_dst_addr) \ |
| 130 | _fe (ip_prot_and_mask_t, in_protocol) |
| 131 | |
| 132 | #define foreach_flow_entry_ip6_ip4_n_tuple \ |
| 133 | foreach_flow_entry_ip6_ip4 _fe (ip_port_and_mask_t, in_src_port) \ |
| 134 | _fe (ip_port_and_mask_t, in_dst_port) |
| 135 | |
| 136 | #define foreach_flow_entry_ip4_ip6 \ |
| 137 | foreach_flow_entry_ip4 _fe (ip6_address_and_mask_t, in_src_addr) \ |
| 138 | _fe (ip6_address_and_mask_t, in_dst_addr) \ |
| 139 | _fe (ip_prot_and_mask_t, in_protocol) |
| 140 | |
| 141 | #define foreach_flow_entry_ip4_ip6_n_tuple \ |
| 142 | foreach_flow_entry_ip4_ip6 _fe (ip_port_and_mask_t, in_src_port) \ |
| 143 | _fe (ip_port_and_mask_t, in_dst_port) |
| 144 | |
| 145 | #define foreach_flow_entry_ip4_ip4 \ |
| 146 | foreach_flow_entry_ip4 _fe (ip4_address_and_mask_t, in_src_addr) \ |
| 147 | _fe (ip4_address_and_mask_t, in_dst_addr) \ |
| 148 | _fe (ip_prot_and_mask_t, in_protocol) |
| 149 | |
| 150 | #define foreach_flow_entry_ip4_ip4_n_tuple \ |
| 151 | foreach_flow_entry_ip4_ip4 _fe (ip_port_and_mask_t, in_src_port) \ |
| 152 | _fe (ip_port_and_mask_t, in_dst_port) |
| 153 | |
Ting Xu | 3a36682 | 2021-09-16 08:37:25 +0000 | [diff] [blame] | 154 | #define foreach_flow_entry_generic _fe (generic_pattern_t, pattern) |
| 155 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 156 | #define foreach_flow_action \ |
| 157 | _(0, COUNT, "count") \ |
| 158 | _(1, MARK, "mark") \ |
| 159 | _(2, BUFFER_ADVANCE, "buffer-advance") \ |
| 160 | _(3, REDIRECT_TO_NODE, "redirect-to-node") \ |
| 161 | _(4, REDIRECT_TO_QUEUE, "redirect-to-queue") \ |
Chenmin Sun | 24e2c50 | 2020-02-28 22:49:37 +0800 | [diff] [blame] | 162 | _(5, RSS, "rss") \ |
| 163 | _(6, DROP, "drop") |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 164 | |
| 165 | typedef enum |
| 166 | { |
| 167 | #define _(v,n,s) VNET_FLOW_ACTION_##n = (1 << v), |
| 168 | foreach_flow_action |
| 169 | #undef _ |
| 170 | } vnet_flow_action_t; |
| 171 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 172 | #define foreach_flow_error \ |
| 173 | _( -1, NOT_SUPPORTED, "not supported") \ |
| 174 | _( -2, ALREADY_DONE, "already done") \ |
| 175 | _( -3, ALREADY_EXISTS, "already exists") \ |
| 176 | _( -4, NO_SUCH_ENTRY, "no such entry") \ |
| 177 | _( -5, NO_SUCH_INTERFACE, "no such interface") \ |
| 178 | _( -6, INTERNAL, "internal error") |
| 179 | |
Piotr Bronowski | da6520b | 2021-07-02 09:20:03 +0000 | [diff] [blame] | 180 | #define foreach_flow_rss_types \ |
| 181 | _ (0, FRAG_IPV4, "ipv4-frag") \ |
| 182 | _ (1, IPV4_TCP, "ipv4-tcp") \ |
| 183 | _ (2, IPV4_UDP, "ipv4-udp") \ |
| 184 | _ (3, IPV4_SCTP, "ipv4-sctp") \ |
| 185 | _ (4, IPV4_OTHER, "ipv4-other") \ |
| 186 | _ (5, IPV4, "ipv4") \ |
| 187 | _ (6, IPV6_TCP_EX, "ipv6-tcp-ex") \ |
| 188 | _ (7, IPV6_UDP_EX, "ipv6-udp-ex") \ |
| 189 | _ (8, FRAG_IPV6, "ipv6-frag") \ |
| 190 | _ (9, IPV6_TCP, "ipv6-tcp") \ |
| 191 | _ (10, IPV6_UDP, "ipv6-udp") \ |
| 192 | _ (11, IPV6_SCTP, "ipv6-sctp") \ |
| 193 | _ (12, IPV6_OTHER, "ipv6-other") \ |
| 194 | _ (13, IPV6_EX, "ipv6-ex") \ |
| 195 | _ (14, IPV6, "ipv6") \ |
| 196 | _ (15, L2_PAYLOAD, "l2-payload") \ |
| 197 | _ (16, PORT, "port") \ |
| 198 | _ (17, VXLAN, "vxlan") \ |
| 199 | _ (18, GENEVE, "geneve") \ |
| 200 | _ (19, NVGRE, "nvgre") \ |
| 201 | _ (20, GTPU, "gtpu") \ |
| 202 | _ (21, ESP, "esp") \ |
Xinyao Cai | 6cb7273 | 2023-05-25 09:16:57 +0800 | [diff] [blame] | 203 | _ (22, L2TPV3, "l2tpv3") \ |
Piotr Bronowski | da6520b | 2021-07-02 09:20:03 +0000 | [diff] [blame] | 204 | _ (60, L4_DST_ONLY, "l4-dst-only") \ |
| 205 | _ (61, L4_SRC_ONLY, "l4-src-only") \ |
| 206 | _ (62, L3_DST_ONLY, "l3-dst-only") \ |
| 207 | _ (63, L3_SRC_ONLY, "l3-src-only") |
| 208 | |
| 209 | typedef enum |
| 210 | { |
| 211 | #define _(v, n, s) VNET_FLOW_RSS_TYPES_##n = v, |
| 212 | foreach_flow_rss_types |
| 213 | #undef _ |
| 214 | } vnet_flow_rss_types_t; |
Chenmin Sun | 24e2c50 | 2020-02-28 22:49:37 +0800 | [diff] [blame] | 215 | |
| 216 | #define foreach_rss_function \ |
| 217 | _(DEFAULT, "default") \ |
| 218 | _(TOEPLITZ, "toeplitz") \ |
| 219 | _(SIMPLE_XOR, "simple_xor") \ |
| 220 | _(SYMMETRIC_TOEPLITZ, "symmetric_toeplitz") |
| 221 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 222 | typedef enum |
| 223 | { |
| 224 | VNET_FLOW_NO_ERROR = 0, |
| 225 | #define _(v,n,s) VNET_FLOW_ERROR_##n = v, |
| 226 | foreach_flow_error |
| 227 | #undef _ |
| 228 | } vnet_flow_error_t; |
| 229 | |
| 230 | typedef struct |
| 231 | { |
| 232 | u16 port, mask; |
| 233 | } ip_port_and_mask_t; |
| 234 | |
Chenmin Sun | 34bfa50 | 2020-07-27 17:40:17 +0800 | [diff] [blame] | 235 | typedef struct |
| 236 | { |
| 237 | ip_protocol_t prot; |
| 238 | /* ip protocol mask should be either 0 or 0xFF */ |
| 239 | /* other values are meanless */ |
| 240 | u8 mask; |
| 241 | } ip_prot_and_mask_t; |
| 242 | |
Ting Xu | 3a36682 | 2021-09-16 08:37:25 +0000 | [diff] [blame] | 243 | typedef struct |
| 244 | { |
| 245 | u8 spec[1024]; |
| 246 | u8 mask[1024]; |
| 247 | } generic_pattern_t; |
| 248 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 249 | typedef enum |
| 250 | { |
| 251 | VNET_FLOW_TYPE_UNKNOWN, |
| 252 | #define _(a,b,c) VNET_FLOW_TYPE_##a, |
| 253 | foreach_flow_type |
| 254 | #undef _ |
| 255 | VNET_FLOW_N_TYPES, |
| 256 | } vnet_flow_type_t; |
| 257 | |
Chenmin Sun | 24e2c50 | 2020-02-28 22:49:37 +0800 | [diff] [blame] | 258 | typedef enum |
| 259 | { |
| 260 | #define _(a,b) VNET_RSS_FUNC_##a, |
| 261 | foreach_rss_function |
| 262 | #undef _ |
| 263 | VNET_RSS_N_TYPES, |
| 264 | } vnet_rss_function_t; |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * Create typedef struct vnet_flow_XXX_t |
| 268 | */ |
| 269 | #define _fe(a, b) a b; |
| 270 | #define _(a,b,c) \ |
| 271 | typedef struct { \ |
| 272 | int foo; \ |
| 273 | foreach_flow_entry_##b \ |
| 274 | } vnet_flow_##b##_t; |
| 275 | foreach_flow_type; |
| 276 | #undef _ |
| 277 | #undef _fe |
| 278 | |
| 279 | /* main flow struct */ |
| 280 | typedef struct |
| 281 | { |
| 282 | /* flow type */ |
| 283 | vnet_flow_type_t type; |
| 284 | |
| 285 | /* flow index */ |
| 286 | u32 index; |
| 287 | |
| 288 | /* bitmap of flow actions (VNET_FLOW_ACTION_*) */ |
| 289 | u32 actions; |
| 290 | |
| 291 | /* flow id for VNET_FLOW_ACTION_MARK */ |
| 292 | u32 mark_flow_id; |
| 293 | |
| 294 | /* node index and next index for VNET_FLOW_ACTION_REDIRECT_TO_NODE */ |
| 295 | u32 redirect_node_index; |
| 296 | u32 redirect_device_input_next_index; |
| 297 | |
| 298 | /* queue for VNET_FLOW_ACTION_REDIRECT_TO_QUEUE */ |
| 299 | u32 redirect_queue; |
| 300 | |
Ting Xu | b95e6d4 | 2022-03-25 03:45:07 +0000 | [diff] [blame] | 301 | /* start queue index and queue numbers for RSS queue group */ |
| 302 | u32 queue_index; |
| 303 | u32 queue_num; |
| 304 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 305 | /* buffer offset for VNET_FLOW_ACTION_BUFFER_ADVANCE */ |
| 306 | i32 buffer_advance; |
| 307 | |
Chenmin Sun | 24e2c50 | 2020-02-28 22:49:37 +0800 | [diff] [blame] | 308 | /* RSS types, including IPv4/IPv6/TCP/UDP... */ |
| 309 | u64 rss_types; |
| 310 | |
| 311 | /* RSS functions, including IPv4/IPv6/TCP/UDP... */ |
| 312 | vnet_rss_function_t rss_fun; |
| 313 | |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 314 | union |
| 315 | { |
| 316 | #define _(a,b,c) vnet_flow_##b##_t b; |
| 317 | foreach_flow_type |
| 318 | #undef _ |
| 319 | }; |
| 320 | |
| 321 | /* per-interface private data */ |
| 322 | uword *private_data; |
| 323 | } vnet_flow_t; |
| 324 | |
| 325 | int vnet_flow_get_range (vnet_main_t * vnm, char *owner, u32 count, |
| 326 | u32 * start); |
| 327 | int vnet_flow_add (vnet_main_t * vnm, vnet_flow_t * flow, u32 * flow_index); |
| 328 | int vnet_flow_enable (vnet_main_t * vnm, u32 flow_index, u32 hw_if_index); |
| 329 | int vnet_flow_disable (vnet_main_t * vnm, u32 flow_index, u32 hw_if_index); |
| 330 | int vnet_flow_del (vnet_main_t * vnm, u32 flow_index); |
| 331 | vnet_flow_t *vnet_get_flow (u32 flow_index); |
| 332 | |
| 333 | typedef struct |
| 334 | { |
| 335 | u32 start; |
| 336 | u32 count; |
| 337 | u8 *owner; |
| 338 | } vnet_flow_range_t; |
| 339 | |
| 340 | typedef struct |
| 341 | { |
| 342 | /* pool of device flow entries */ |
| 343 | vnet_flow_t *global_flow_pool; |
| 344 | |
| 345 | /* flow ids allocated */ |
| 346 | u32 flows_used; |
| 347 | |
| 348 | /* vector of flow ranges */ |
| 349 | vnet_flow_range_t *ranges; |
| 350 | |
Filip Tehlar | 9597f08 | 2021-06-21 09:49:31 +0000 | [diff] [blame] | 351 | u16 msg_id_base; |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 352 | } vnet_flow_main_t; |
| 353 | |
| 354 | extern vnet_flow_main_t flow_main; |
| 355 | |
| 356 | format_function_t format_flow_actions; |
Eyal Bari | d3de756 | 2018-05-31 11:30:16 +0300 | [diff] [blame] | 357 | format_function_t format_flow_enabled_hw; |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 358 | |
| 359 | #endif /* included_vnet_flow_flow_h */ |
| 360 | |
| 361 | /* |
| 362 | * fd.io coding-style-patch-verification: ON |
| 363 | * |
| 364 | * Local Variables: |
| 365 | * eval: (c-set-style "gnu") |
| 366 | * End: |
| 367 | */ |