1 #ifndef _NET_FLOW_OFFLOAD_H 2 #define _NET_FLOW_OFFLOAD_H 3 4 #include <linux/kernel.h> 5 #include <linux/list.h> 6 #include <linux/netlink.h> 7 #include <net/flow_dissector.h> 8 #include <linux/rhashtable.h> 9 10 struct flow_match { 11 struct flow_dissector *dissector; 12 void *mask; 13 void *key; 14 }; 15 16 struct flow_match_meta { 17 struct flow_dissector_key_meta *key, *mask; 18 }; 19 20 struct flow_match_basic { 21 struct flow_dissector_key_basic *key, *mask; 22 }; 23 24 struct flow_match_control { 25 struct flow_dissector_key_control *key, *mask; 26 }; 27 28 struct flow_match_eth_addrs { 29 struct flow_dissector_key_eth_addrs *key, *mask; 30 }; 31 32 struct flow_match_vlan { 33 struct flow_dissector_key_vlan *key, *mask; 34 }; 35 36 struct flow_match_ipv4_addrs { 37 struct flow_dissector_key_ipv4_addrs *key, *mask; 38 }; 39 40 struct flow_match_ipv6_addrs { 41 struct flow_dissector_key_ipv6_addrs *key, *mask; 42 }; 43 44 struct flow_match_ip { 45 struct flow_dissector_key_ip *key, *mask; 46 }; 47 48 struct flow_match_ports { 49 struct flow_dissector_key_ports *key, *mask; 50 }; 51 52 struct flow_match_icmp { 53 struct flow_dissector_key_icmp *key, *mask; 54 }; 55 56 struct flow_match_tcp { 57 struct flow_dissector_key_tcp *key, *mask; 58 }; 59 60 struct flow_match_mpls { 61 struct flow_dissector_key_mpls *key, *mask; 62 }; 63 64 struct flow_match_enc_keyid { 65 struct flow_dissector_key_keyid *key, *mask; 66 }; 67 68 struct flow_match_enc_opts { 69 struct flow_dissector_key_enc_opts *key, *mask; 70 }; 71 72 struct flow_match_ct { 73 struct flow_dissector_key_ct *key, *mask; 74 }; 75 76 struct flow_rule; 77 78 void flow_rule_match_meta(const struct flow_rule *rule, 79 struct flow_match_meta *out); 80 void flow_rule_match_basic(const struct flow_rule *rule, 81 struct flow_match_basic *out); 82 void flow_rule_match_control(const struct flow_rule *rule, 83 struct flow_match_control *out); 84 void flow_rule_match_eth_addrs(const struct flow_rule *rule, 85 struct flow_match_eth_addrs *out); 86 void flow_rule_match_vlan(const struct flow_rule *rule, 87 struct flow_match_vlan *out); 88 void flow_rule_match_cvlan(const struct flow_rule *rule, 89 struct flow_match_vlan *out); 90 void flow_rule_match_ipv4_addrs(const struct flow_rule *rule, 91 struct flow_match_ipv4_addrs *out); 92 void flow_rule_match_ipv6_addrs(const struct flow_rule *rule, 93 struct flow_match_ipv6_addrs *out); 94 void flow_rule_match_ip(const struct flow_rule *rule, 95 struct flow_match_ip *out); 96 void flow_rule_match_ports(const struct flow_rule *rule, 97 struct flow_match_ports *out); 98 void flow_rule_match_tcp(const struct flow_rule *rule, 99 struct flow_match_tcp *out); 100 void flow_rule_match_icmp(const struct flow_rule *rule, 101 struct flow_match_icmp *out); 102 void flow_rule_match_mpls(const struct flow_rule *rule, 103 struct flow_match_mpls *out); 104 void flow_rule_match_enc_control(const struct flow_rule *rule, 105 struct flow_match_control *out); 106 void flow_rule_match_enc_ipv4_addrs(const struct flow_rule *rule, 107 struct flow_match_ipv4_addrs *out); 108 void flow_rule_match_enc_ipv6_addrs(const struct flow_rule *rule, 109 struct flow_match_ipv6_addrs *out); 110 void flow_rule_match_enc_ip(const struct flow_rule *rule, 111 struct flow_match_ip *out); 112 void flow_rule_match_enc_ports(const struct flow_rule *rule, 113 struct flow_match_ports *out); 114 void flow_rule_match_enc_keyid(const struct flow_rule *rule, 115 struct flow_match_enc_keyid *out); 116 void flow_rule_match_enc_opts(const struct flow_rule *rule, 117 struct flow_match_enc_opts *out); 118 void flow_rule_match_ct(const struct flow_rule *rule, 119 struct flow_match_ct *out); 120 121 enum flow_action_id { 122 FLOW_ACTION_ACCEPT = 0, 123 FLOW_ACTION_DROP, 124 FLOW_ACTION_TRAP, 125 FLOW_ACTION_GOTO, 126 FLOW_ACTION_REDIRECT, 127 FLOW_ACTION_MIRRED, 128 FLOW_ACTION_REDIRECT_INGRESS, 129 FLOW_ACTION_MIRRED_INGRESS, 130 FLOW_ACTION_VLAN_PUSH, 131 FLOW_ACTION_VLAN_POP, 132 FLOW_ACTION_VLAN_MANGLE, 133 FLOW_ACTION_TUNNEL_ENCAP, 134 FLOW_ACTION_TUNNEL_DECAP, 135 FLOW_ACTION_MANGLE, 136 FLOW_ACTION_ADD, 137 FLOW_ACTION_CSUM, 138 FLOW_ACTION_MARK, 139 FLOW_ACTION_PTYPE, 140 FLOW_ACTION_PRIORITY, 141 FLOW_ACTION_WAKE, 142 FLOW_ACTION_QUEUE, 143 FLOW_ACTION_SAMPLE, 144 FLOW_ACTION_POLICE, 145 FLOW_ACTION_CT, 146 FLOW_ACTION_CT_METADATA, 147 FLOW_ACTION_MPLS_PUSH, 148 FLOW_ACTION_MPLS_POP, 149 FLOW_ACTION_MPLS_MANGLE, 150 FLOW_ACTION_GATE, 151 NUM_FLOW_ACTIONS, 152 }; 153 154 /* This is mirroring enum pedit_header_type definition for easy mapping between 155 * tc pedit action. Legacy TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK is mapped to 156 * FLOW_ACT_MANGLE_UNSPEC, which is supported by no driver. 157 */ 158 enum flow_action_mangle_base { 159 FLOW_ACT_MANGLE_UNSPEC = 0, 160 FLOW_ACT_MANGLE_HDR_TYPE_ETH, 161 FLOW_ACT_MANGLE_HDR_TYPE_IP4, 162 FLOW_ACT_MANGLE_HDR_TYPE_IP6, 163 FLOW_ACT_MANGLE_HDR_TYPE_TCP, 164 FLOW_ACT_MANGLE_HDR_TYPE_UDP, 165 }; 166 167 enum flow_action_hw_stats_bit { 168 FLOW_ACTION_HW_STATS_IMMEDIATE_BIT, 169 FLOW_ACTION_HW_STATS_DELAYED_BIT, 170 FLOW_ACTION_HW_STATS_DISABLED_BIT, 171 }; 172 173 enum flow_action_hw_stats { 174 FLOW_ACTION_HW_STATS_DONT_CARE = 0, 175 FLOW_ACTION_HW_STATS_IMMEDIATE = 176 BIT(FLOW_ACTION_HW_STATS_IMMEDIATE_BIT), 177 FLOW_ACTION_HW_STATS_DELAYED = BIT(FLOW_ACTION_HW_STATS_DELAYED_BIT), 178 FLOW_ACTION_HW_STATS_ANY = FLOW_ACTION_HW_STATS_IMMEDIATE | 179 FLOW_ACTION_HW_STATS_DELAYED, 180 FLOW_ACTION_HW_STATS_DISABLED = 181 BIT(FLOW_ACTION_HW_STATS_DISABLED_BIT), 182 }; 183 184 typedef void (*action_destr)(void *priv); 185 186 struct flow_action_cookie { 187 u32 cookie_len; 188 u8 cookie[]; 189 }; 190 191 struct flow_action_cookie *flow_action_cookie_create(void *data, 192 unsigned int len, 193 gfp_t gfp); 194 void flow_action_cookie_destroy(struct flow_action_cookie *cookie); 195 196 struct flow_action_entry { 197 enum flow_action_id id; 198 enum flow_action_hw_stats hw_stats; 199 action_destr destructor; 200 void *destructor_priv; 201 union { 202 u32 chain_index; /* FLOW_ACTION_GOTO */ 203 struct net_device *dev; /* FLOW_ACTION_REDIRECT */ 204 struct { /* FLOW_ACTION_VLAN */ 205 u16 vid; 206 __be16 proto; 207 u8 prio; 208 } vlan; 209 struct { /* FLOW_ACTION_MANGLE */ 210 /* FLOW_ACTION_ADD */ 211 enum flow_action_mangle_base htype; 212 u32 offset; 213 u32 mask; 214 u32 val; 215 } mangle; 216 struct ip_tunnel_info *tunnel; /* FLOW_ACTION_TUNNEL_ENCAP */ 217 u32 csum_flags; /* FLOW_ACTION_CSUM */ 218 u32 mark; /* FLOW_ACTION_MARK */ 219 u16 ptype; /* FLOW_ACTION_PTYPE */ 220 u32 priority; /* FLOW_ACTION_PRIORITY */ 221 struct { /* FLOW_ACTION_QUEUE */ 222 u32 ctx; 223 u32 index; 224 u8 vf; 225 } queue; 226 struct { /* FLOW_ACTION_SAMPLE */ 227 struct psample_group *psample_group; 228 u32 rate; 229 u32 trunc_size; 230 bool truncate; 231 } sample; 232 struct { /* FLOW_ACTION_POLICE */ 233 s64 burst; 234 u64 rate_bytes_ps; 235 } police; 236 struct { /* FLOW_ACTION_CT */ 237 int action; 238 u16 zone; 239 struct nf_flowtable *flow_table; 240 } ct; 241 struct { 242 unsigned long cookie; 243 u32 mark; 244 u32 labels[4]; 245 } ct_metadata; 246 struct { /* FLOW_ACTION_MPLS_PUSH */ 247 u32 label; 248 __be16 proto; 249 u8 tc; 250 u8 bos; 251 u8 ttl; 252 } mpls_push; 253 struct { /* FLOW_ACTION_MPLS_POP */ 254 __be16 proto; 255 } mpls_pop; 256 struct { /* FLOW_ACTION_MPLS_MANGLE */ 257 u32 label; 258 u8 tc; 259 u8 bos; 260 u8 ttl; 261 } mpls_mangle; 262 struct { 263 u32 index; 264 s32 prio; 265 u64 basetime; 266 u64 cycletime; 267 u64 cycletimeext; 268 u32 num_entries; 269 struct action_gate_entry *entries; 270 } gate; 271 }; 272 struct flow_action_cookie *cookie; /* user defined action cookie */ 273 }; 274 275 struct flow_action { 276 unsigned int num_entries; 277 struct flow_action_entry entries[]; 278 }; 279 280 static inline bool flow_action_has_entries(const struct flow_action *action) 281 { 282 return action->num_entries; 283 } 284 285 /** 286 * flow_action_has_one_action() - check if exactly one action is present 287 * @action: tc filter flow offload action 288 * 289 * Returns true if exactly one action is present. 290 */ 291 static inline bool flow_offload_has_one_action(const struct flow_action *action) 292 { 293 return action->num_entries == 1; 294 } 295 296 #define flow_action_for_each(__i, __act, __actions) \ 297 for (__i = 0, __act = &(__actions)->entries[0]; \ 298 __i < (__actions)->num_entries; \ 299 __act = &(__actions)->entries[++__i]) 300 301 static inline bool 302 flow_action_mixed_hw_stats_check(const struct flow_action *action, 303 struct netlink_ext_ack *extack) 304 { 305 const struct flow_action_entry *action_entry; 306 u8 uninitialized_var(last_hw_stats); 307 int i; 308 309 if (flow_offload_has_one_action(action)) 310 return true; 311 312 flow_action_for_each(i, action_entry, action) { 313 if (i && action_entry->hw_stats != last_hw_stats) { 314 NL_SET_ERR_MSG_MOD(extack, "Mixing HW stats types for actions is not supported"); 315 return false; 316 } 317 last_hw_stats = action_entry->hw_stats; 318 } 319 return true; 320 } 321 322 static inline const struct flow_action_entry * 323 flow_action_first_entry_get(const struct flow_action *action) 324 { 325 WARN_ON(!flow_action_has_entries(action)); 326 return &action->entries[0]; 327 } 328 329 static inline bool 330 __flow_action_hw_stats_check(const struct flow_action *action, 331 struct netlink_ext_ack *extack, 332 bool check_allow_bit, 333 enum flow_action_hw_stats_bit allow_bit) 334 { 335 const struct flow_action_entry *action_entry; 336 337 if (!flow_action_has_entries(action)) 338 return true; 339 if (!flow_action_mixed_hw_stats_check(action, extack)) 340 return false; 341 342 action_entry = flow_action_first_entry_get(action); 343 if (action_entry->hw_stats == FLOW_ACTION_HW_STATS_DONT_CARE) 344 return true; 345 346 if (!check_allow_bit && 347 action_entry->hw_stats != FLOW_ACTION_HW_STATS_ANY) { 348 NL_SET_ERR_MSG_MOD(extack, "Driver supports only default HW stats type \"any\""); 349 return false; 350 } else if (check_allow_bit && 351 !(action_entry->hw_stats & BIT(allow_bit))) { 352 NL_SET_ERR_MSG_MOD(extack, "Driver does not support selected HW stats type"); 353 return false; 354 } 355 return true; 356 } 357 358 static inline bool 359 flow_action_hw_stats_check(const struct flow_action *action, 360 struct netlink_ext_ack *extack, 361 enum flow_action_hw_stats_bit allow_bit) 362 { 363 return __flow_action_hw_stats_check(action, extack, true, allow_bit); 364 } 365 366 static inline bool 367 flow_action_basic_hw_stats_check(const struct flow_action *action, 368 struct netlink_ext_ack *extack) 369 { 370 return __flow_action_hw_stats_check(action, extack, false, 0); 371 } 372 373 struct flow_rule { 374 struct flow_match match; 375 struct flow_action action; 376 }; 377 378 struct flow_rule *flow_rule_alloc(unsigned int num_actions); 379 380 static inline bool flow_rule_match_key(const struct flow_rule *rule, 381 enum flow_dissector_key_id key) 382 { 383 return dissector_uses_key(rule->match.dissector, key); 384 } 385 386 struct flow_stats { 387 u64 pkts; 388 u64 bytes; 389 u64 lastused; 390 enum flow_action_hw_stats used_hw_stats; 391 bool used_hw_stats_valid; 392 }; 393 394 static inline void flow_stats_update(struct flow_stats *flow_stats, 395 u64 bytes, u64 pkts, u64 lastused, 396 enum flow_action_hw_stats used_hw_stats) 397 { 398 flow_stats->pkts += pkts; 399 flow_stats->bytes += bytes; 400 flow_stats->lastused = max_t(u64, flow_stats->lastused, lastused); 401 402 /* The driver should pass value with a maximum of one bit set. 403 * Passing FLOW_ACTION_HW_STATS_ANY is invalid. 404 */ 405 WARN_ON(used_hw_stats == FLOW_ACTION_HW_STATS_ANY); 406 flow_stats->used_hw_stats |= used_hw_stats; 407 flow_stats->used_hw_stats_valid = true; 408 } 409 410 enum flow_block_command { 411 FLOW_BLOCK_BIND, 412 FLOW_BLOCK_UNBIND, 413 }; 414 415 enum flow_block_binder_type { 416 FLOW_BLOCK_BINDER_TYPE_UNSPEC, 417 FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS, 418 FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS, 419 }; 420 421 struct flow_block { 422 struct list_head cb_list; 423 }; 424 425 struct netlink_ext_ack; 426 427 struct flow_block_offload { 428 enum flow_block_command command; 429 enum flow_block_binder_type binder_type; 430 bool block_shared; 431 bool unlocked_driver_cb; 432 struct net *net; 433 struct flow_block *block; 434 struct list_head cb_list; 435 struct list_head *driver_block_list; 436 struct netlink_ext_ack *extack; 437 }; 438 439 enum tc_setup_type; 440 typedef int flow_setup_cb_t(enum tc_setup_type type, void *type_data, 441 void *cb_priv); 442 443 struct flow_block_cb { 444 struct list_head driver_list; 445 struct list_head list; 446 flow_setup_cb_t *cb; 447 void *cb_ident; 448 void *cb_priv; 449 void (*release)(void *cb_priv); 450 unsigned int refcnt; 451 }; 452 453 struct flow_block_cb *flow_block_cb_alloc(flow_setup_cb_t *cb, 454 void *cb_ident, void *cb_priv, 455 void (*release)(void *cb_priv)); 456 void flow_block_cb_free(struct flow_block_cb *block_cb); 457 458 struct flow_block_cb *flow_block_cb_lookup(struct flow_block *block, 459 flow_setup_cb_t *cb, void *cb_ident); 460 461 void *flow_block_cb_priv(struct flow_block_cb *block_cb); 462 void flow_block_cb_incref(struct flow_block_cb *block_cb); 463 unsigned int flow_block_cb_decref(struct flow_block_cb *block_cb); 464 465 static inline void flow_block_cb_add(struct flow_block_cb *block_cb, 466 struct flow_block_offload *offload) 467 { 468 list_add_tail(&block_cb->list, &offload->cb_list); 469 } 470 471 static inline void flow_block_cb_remove(struct flow_block_cb *block_cb, 472 struct flow_block_offload *offload) 473 { 474 list_move(&block_cb->list, &offload->cb_list); 475 } 476 477 bool flow_block_cb_is_busy(flow_setup_cb_t *cb, void *cb_ident, 478 struct list_head *driver_block_list); 479 480 int flow_block_cb_setup_simple(struct flow_block_offload *f, 481 struct list_head *driver_list, 482 flow_setup_cb_t *cb, 483 void *cb_ident, void *cb_priv, bool ingress_only); 484 485 enum flow_cls_command { 486 FLOW_CLS_REPLACE, 487 FLOW_CLS_DESTROY, 488 FLOW_CLS_STATS, 489 FLOW_CLS_TMPLT_CREATE, 490 FLOW_CLS_TMPLT_DESTROY, 491 }; 492 493 struct flow_cls_common_offload { 494 u32 chain_index; 495 __be16 protocol; 496 u32 prio; 497 struct netlink_ext_ack *extack; 498 }; 499 500 struct flow_cls_offload { 501 struct flow_cls_common_offload common; 502 enum flow_cls_command command; 503 unsigned long cookie; 504 struct flow_rule *rule; 505 struct flow_stats stats; 506 u32 classid; 507 }; 508 509 static inline struct flow_rule * 510 flow_cls_offload_flow_rule(struct flow_cls_offload *flow_cmd) 511 { 512 return flow_cmd->rule; 513 } 514 515 static inline void flow_block_init(struct flow_block *flow_block) 516 { 517 INIT_LIST_HEAD(&flow_block->cb_list); 518 } 519 520 typedef int flow_indr_block_bind_cb_t(struct net_device *dev, void *cb_priv, 521 enum tc_setup_type type, void *type_data); 522 523 typedef void flow_indr_block_cmd_t(struct net_device *dev, 524 flow_indr_block_bind_cb_t *cb, void *cb_priv, 525 enum flow_block_command command); 526 527 struct flow_indr_block_entry { 528 flow_indr_block_cmd_t *cb; 529 struct list_head list; 530 }; 531 532 void flow_indr_add_block_cb(struct flow_indr_block_entry *entry); 533 534 void flow_indr_del_block_cb(struct flow_indr_block_entry *entry); 535 536 int __flow_indr_block_cb_register(struct net_device *dev, void *cb_priv, 537 flow_indr_block_bind_cb_t *cb, 538 void *cb_ident); 539 540 void __flow_indr_block_cb_unregister(struct net_device *dev, 541 flow_indr_block_bind_cb_t *cb, 542 void *cb_ident); 543 544 int flow_indr_block_cb_register(struct net_device *dev, void *cb_priv, 545 flow_indr_block_bind_cb_t *cb, void *cb_ident); 546 547 void flow_indr_block_cb_unregister(struct net_device *dev, 548 flow_indr_block_bind_cb_t *cb, 549 void *cb_ident); 550 551 void flow_indr_block_call(struct net_device *dev, 552 struct flow_block_offload *bo, 553 enum flow_block_command command, 554 enum tc_setup_type type); 555 556 #endif /* _NET_FLOW_OFFLOAD_H */ 557