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