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