1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef __LINUX_PKT_CLS_H
3 #define __LINUX_PKT_CLS_H
5 #include <linux/types.h>
6 #include <linux/pkt_sched.h>
8 #define TC_COOKIE_MAX_SIZE 16
10 /* Action attributes */
21 TCA_ACT_USED_HW_STATS,
26 /* See other TCA_ACT_FLAGS_ * flags in include/net/act_api.h. */
27 #define TCA_ACT_FLAGS_NO_PERCPU_STATS (1 << 0) /* Don't use percpu allocator for
30 #define TCA_ACT_FLAGS_SKIP_HW (1 << 1) /* don't offload action to HW */
31 #define TCA_ACT_FLAGS_SKIP_SW (1 << 2) /* don't use action in SW */
34 * When user does not pass the attribute, he does not care.
35 * It is the same as if he would pass the attribute with
36 * all supported bits set.
37 * In case no bits are set, user is not interested in getting any HW statistics.
39 #define TCA_ACT_HW_STATS_IMMEDIATE (1 << 0) /* Means that in dump, user
40 * gets the current HW stats
41 * state from the device
42 * queried at the dump time.
44 #define TCA_ACT_HW_STATS_DELAYED (1 << 1) /* Means that in dump, user gets
45 * HW stats that might be out of date
46 * for some time, maybe couple of
47 * seconds. This is the case when
48 * driver polls stats updates
49 * periodically or when it gets async
50 * stats update from the device.
53 #define TCA_ACT_MAX __TCA_ACT_MAX
54 #define TCA_OLD_COMPAT (TCA_ACT_MAX+1)
55 #define TCA_ACT_MAX_PRIO 32
56 #define TCA_ACT_BIND 1
57 #define TCA_ACT_NOBIND 0
58 #define TCA_ACT_UNBIND 1
59 #define TCA_ACT_NOUNBIND 0
60 #define TCA_ACT_REPLACE 1
61 #define TCA_ACT_NOREPLACE 0
63 #define TC_ACT_UNSPEC (-1)
65 #define TC_ACT_RECLASSIFY 1
68 #define TC_ACT_STOLEN 4
69 #define TC_ACT_QUEUED 5
70 #define TC_ACT_REPEAT 6
71 #define TC_ACT_REDIRECT 7
72 #define TC_ACT_TRAP 8 /* For hw path, this means "trap to cpu"
73 * and don't further process the frame
74 * in hardware. For sw path, this is
75 * equivalent of TC_ACT_STOLEN - drop
76 * the skb and act like everything
79 #define TC_ACT_VALUE_MAX TC_ACT_TRAP
81 /* There is a special kind of actions called "extended actions",
82 * which need a value parameter. These have a local opcode located in
83 * the highest nibble, starting from 1. The rest of the bits
84 * are used to carry the value. These two parts together make
87 #define __TC_ACT_EXT_SHIFT 28
88 #define __TC_ACT_EXT(local) ((local) << __TC_ACT_EXT_SHIFT)
89 #define TC_ACT_EXT_VAL_MASK ((1 << __TC_ACT_EXT_SHIFT) - 1)
90 #define TC_ACT_EXT_OPCODE(combined) ((combined) & (~TC_ACT_EXT_VAL_MASK))
91 #define TC_ACT_EXT_CMP(combined, opcode) (TC_ACT_EXT_OPCODE(combined) == opcode)
93 #define TC_ACT_JUMP __TC_ACT_EXT(1)
94 #define TC_ACT_GOTO_CHAIN __TC_ACT_EXT(2)
95 #define TC_ACT_EXT_OPCODE_MAX TC_ACT_GOTO_CHAIN
97 /* These macros are put here for binary compatibility with userspace apps that
98 * make use of them. For kernel code and new userspace apps, use the TCA_ID_*
101 #define TCA_ACT_GACT 5
102 #define TCA_ACT_IPT 6 /* obsoleted, can be reused */
103 #define TCA_ACT_PEDIT 7
104 #define TCA_ACT_MIRRED 8
105 #define TCA_ACT_NAT 9
106 #define TCA_ACT_XT 10
107 #define TCA_ACT_SKBEDIT 11
108 #define TCA_ACT_VLAN 12
109 #define TCA_ACT_BPF 13
110 #define TCA_ACT_CONNMARK 14
111 #define TCA_ACT_SKBMOD 15
112 #define TCA_ACT_CSUM 16
113 #define TCA_ACT_TUNNEL_KEY 17
114 #define TCA_ACT_SIMP 22
115 #define TCA_ACT_IFE 25
116 #define TCA_ACT_SAMPLE 26
118 /* Action type identifiers*/
122 TCA_ID_GACT = TCA_ACT_GACT,
123 TCA_ID_IPT = TCA_ACT_IPT, /* Obsoleted, can be reused */
124 TCA_ID_PEDIT = TCA_ACT_PEDIT,
125 TCA_ID_MIRRED = TCA_ACT_MIRRED,
126 TCA_ID_NAT = TCA_ACT_NAT,
127 TCA_ID_XT = TCA_ACT_XT,
128 TCA_ID_SKBEDIT = TCA_ACT_SKBEDIT,
129 TCA_ID_VLAN = TCA_ACT_VLAN,
130 TCA_ID_BPF = TCA_ACT_BPF,
131 TCA_ID_CONNMARK = TCA_ACT_CONNMARK,
132 TCA_ID_SKBMOD = TCA_ACT_SKBMOD,
133 TCA_ID_CSUM = TCA_ACT_CSUM,
134 TCA_ID_TUNNEL_KEY = TCA_ACT_TUNNEL_KEY,
135 TCA_ID_SIMP = TCA_ACT_SIMP,
136 TCA_ID_IFE = TCA_ACT_IFE,
137 TCA_ID_SAMPLE = TCA_ACT_SAMPLE,
142 /* other actions go here */
146 #define TCA_ID_MAX __TCA_ID_MAX
151 #define TC_POLICE_UNSPEC TC_ACT_UNSPEC
152 #define TC_POLICE_OK TC_ACT_OK
153 #define TC_POLICE_RECLASSIFY TC_ACT_RECLASSIFY
154 #define TC_POLICE_SHOT TC_ACT_SHOT
155 #define TC_POLICE_PIPE TC_ACT_PIPE
160 struct tc_ratespec rate;
161 struct tc_ratespec peakrate;
196 TCA_POLICE_PEAKRATE64,
197 TCA_POLICE_PKTRATE64,
198 TCA_POLICE_PKTBURST64,
200 #define TCA_POLICE_RESULT TCA_POLICE_RESULT
203 #define TCA_POLICE_MAX (__TCA_POLICE_MAX - 1)
205 /* tca flags definitions */
206 #define TCA_CLS_FLAGS_SKIP_HW (1 << 0) /* don't offload filter to HW */
207 #define TCA_CLS_FLAGS_SKIP_SW (1 << 1) /* don't use filter in SW */
208 #define TCA_CLS_FLAGS_IN_HW (1 << 2) /* filter is offloaded to HW */
209 #define TCA_CLS_FLAGS_NOT_IN_HW (1 << 3) /* filter isn't offloaded to HW */
210 #define TCA_CLS_FLAGS_VERBOSE (1 << 4) /* verbose logging */
214 #define TC_U32_HTID(h) ((h)&0xFFF00000)
215 #define TC_U32_USERHTID(h) (TC_U32_HTID(h)>>20)
216 #define TC_U32_HASH(h) (((h)>>12)&0xFF)
217 #define TC_U32_NODE(h) ((h)&0xFFF)
218 #define TC_U32_KEY(h) ((h)&0xFFFFF)
219 #define TC_U32_UNSPEC 0
220 #define TC_U32_ROOT (0xFFF00000)
239 #define TCA_U32_MAX (__TCA_U32_MAX - 1)
250 unsigned char offshift;
259 struct tc_u32_key keys[];
276 #define TC_U32_TERMINAL 1
277 #define TC_U32_OFFSET 2
278 #define TC_U32_VAROFFSET 4
281 #define TC_U32_MAXDEPTH 8
296 #define TCA_ROUTE4_MAX (__TCA_ROUTE4_MAX - 1)
306 TCA_FW_ACT, /* used by CONFIG_NET_CLS_ACT */
311 #define TCA_FW_MAX (__TCA_FW_MAX - 1)
327 FLOW_KEY_NFCT_PROTO_SRC,
328 FLOW_KEY_NFCT_PROTO_DST,
337 #define FLOW_KEY_MAX (__FLOW_KEY_MAX - 1)
361 #define TCA_FLOW_MAX (__TCA_FLOW_MAX - 1)
365 struct tc_basic_pcnt {
381 #define TCA_BASIC_MAX (__TCA_BASIC_MAX - 1)
384 /* Cgroup classifier */
394 #define TCA_CGROUP_MAX (__TCA_CGROUP_MAX - 1)
398 #define TCA_BPF_FLAG_ACT_DIRECT (1 << 0)
416 #define TCA_BPF_MAX (__TCA_BPF_MAX - 1)
418 /* Flower classifier */
425 TCA_FLOWER_KEY_ETH_DST, /* ETH_ALEN */
426 TCA_FLOWER_KEY_ETH_DST_MASK, /* ETH_ALEN */
427 TCA_FLOWER_KEY_ETH_SRC, /* ETH_ALEN */
428 TCA_FLOWER_KEY_ETH_SRC_MASK, /* ETH_ALEN */
429 TCA_FLOWER_KEY_ETH_TYPE, /* be16 */
430 TCA_FLOWER_KEY_IP_PROTO, /* u8 */
431 TCA_FLOWER_KEY_IPV4_SRC, /* be32 */
432 TCA_FLOWER_KEY_IPV4_SRC_MASK, /* be32 */
433 TCA_FLOWER_KEY_IPV4_DST, /* be32 */
434 TCA_FLOWER_KEY_IPV4_DST_MASK, /* be32 */
435 TCA_FLOWER_KEY_IPV6_SRC, /* struct in6_addr */
436 TCA_FLOWER_KEY_IPV6_SRC_MASK, /* struct in6_addr */
437 TCA_FLOWER_KEY_IPV6_DST, /* struct in6_addr */
438 TCA_FLOWER_KEY_IPV6_DST_MASK, /* struct in6_addr */
439 TCA_FLOWER_KEY_TCP_SRC, /* be16 */
440 TCA_FLOWER_KEY_TCP_DST, /* be16 */
441 TCA_FLOWER_KEY_UDP_SRC, /* be16 */
442 TCA_FLOWER_KEY_UDP_DST, /* be16 */
445 TCA_FLOWER_KEY_VLAN_ID, /* be16 */
446 TCA_FLOWER_KEY_VLAN_PRIO, /* u8 */
447 TCA_FLOWER_KEY_VLAN_ETH_TYPE, /* be16 */
449 TCA_FLOWER_KEY_ENC_KEY_ID, /* be32 */
450 TCA_FLOWER_KEY_ENC_IPV4_SRC, /* be32 */
451 TCA_FLOWER_KEY_ENC_IPV4_SRC_MASK,/* be32 */
452 TCA_FLOWER_KEY_ENC_IPV4_DST, /* be32 */
453 TCA_FLOWER_KEY_ENC_IPV4_DST_MASK,/* be32 */
454 TCA_FLOWER_KEY_ENC_IPV6_SRC, /* struct in6_addr */
455 TCA_FLOWER_KEY_ENC_IPV6_SRC_MASK,/* struct in6_addr */
456 TCA_FLOWER_KEY_ENC_IPV6_DST, /* struct in6_addr */
457 TCA_FLOWER_KEY_ENC_IPV6_DST_MASK,/* struct in6_addr */
459 TCA_FLOWER_KEY_TCP_SRC_MASK, /* be16 */
460 TCA_FLOWER_KEY_TCP_DST_MASK, /* be16 */
461 TCA_FLOWER_KEY_UDP_SRC_MASK, /* be16 */
462 TCA_FLOWER_KEY_UDP_DST_MASK, /* be16 */
463 TCA_FLOWER_KEY_SCTP_SRC_MASK, /* be16 */
464 TCA_FLOWER_KEY_SCTP_DST_MASK, /* be16 */
466 TCA_FLOWER_KEY_SCTP_SRC, /* be16 */
467 TCA_FLOWER_KEY_SCTP_DST, /* be16 */
469 TCA_FLOWER_KEY_ENC_UDP_SRC_PORT, /* be16 */
470 TCA_FLOWER_KEY_ENC_UDP_SRC_PORT_MASK, /* be16 */
471 TCA_FLOWER_KEY_ENC_UDP_DST_PORT, /* be16 */
472 TCA_FLOWER_KEY_ENC_UDP_DST_PORT_MASK, /* be16 */
474 TCA_FLOWER_KEY_FLAGS, /* be32 */
475 TCA_FLOWER_KEY_FLAGS_MASK, /* be32 */
477 TCA_FLOWER_KEY_ICMPV4_CODE, /* u8 */
478 TCA_FLOWER_KEY_ICMPV4_CODE_MASK,/* u8 */
479 TCA_FLOWER_KEY_ICMPV4_TYPE, /* u8 */
480 TCA_FLOWER_KEY_ICMPV4_TYPE_MASK,/* u8 */
481 TCA_FLOWER_KEY_ICMPV6_CODE, /* u8 */
482 TCA_FLOWER_KEY_ICMPV6_CODE_MASK,/* u8 */
483 TCA_FLOWER_KEY_ICMPV6_TYPE, /* u8 */
484 TCA_FLOWER_KEY_ICMPV6_TYPE_MASK,/* u8 */
486 TCA_FLOWER_KEY_ARP_SIP, /* be32 */
487 TCA_FLOWER_KEY_ARP_SIP_MASK, /* be32 */
488 TCA_FLOWER_KEY_ARP_TIP, /* be32 */
489 TCA_FLOWER_KEY_ARP_TIP_MASK, /* be32 */
490 TCA_FLOWER_KEY_ARP_OP, /* u8 */
491 TCA_FLOWER_KEY_ARP_OP_MASK, /* u8 */
492 TCA_FLOWER_KEY_ARP_SHA, /* ETH_ALEN */
493 TCA_FLOWER_KEY_ARP_SHA_MASK, /* ETH_ALEN */
494 TCA_FLOWER_KEY_ARP_THA, /* ETH_ALEN */
495 TCA_FLOWER_KEY_ARP_THA_MASK, /* ETH_ALEN */
497 TCA_FLOWER_KEY_MPLS_TTL, /* u8 - 8 bits */
498 TCA_FLOWER_KEY_MPLS_BOS, /* u8 - 1 bit */
499 TCA_FLOWER_KEY_MPLS_TC, /* u8 - 3 bits */
500 TCA_FLOWER_KEY_MPLS_LABEL, /* be32 - 20 bits */
502 TCA_FLOWER_KEY_TCP_FLAGS, /* be16 */
503 TCA_FLOWER_KEY_TCP_FLAGS_MASK, /* be16 */
505 TCA_FLOWER_KEY_IP_TOS, /* u8 */
506 TCA_FLOWER_KEY_IP_TOS_MASK, /* u8 */
507 TCA_FLOWER_KEY_IP_TTL, /* u8 */
508 TCA_FLOWER_KEY_IP_TTL_MASK, /* u8 */
510 TCA_FLOWER_KEY_CVLAN_ID, /* be16 */
511 TCA_FLOWER_KEY_CVLAN_PRIO, /* u8 */
512 TCA_FLOWER_KEY_CVLAN_ETH_TYPE, /* be16 */
514 TCA_FLOWER_KEY_ENC_IP_TOS, /* u8 */
515 TCA_FLOWER_KEY_ENC_IP_TOS_MASK, /* u8 */
516 TCA_FLOWER_KEY_ENC_IP_TTL, /* u8 */
517 TCA_FLOWER_KEY_ENC_IP_TTL_MASK, /* u8 */
519 TCA_FLOWER_KEY_ENC_OPTS,
520 TCA_FLOWER_KEY_ENC_OPTS_MASK,
522 TCA_FLOWER_IN_HW_COUNT,
524 TCA_FLOWER_KEY_PORT_SRC_MIN, /* be16 */
525 TCA_FLOWER_KEY_PORT_SRC_MAX, /* be16 */
526 TCA_FLOWER_KEY_PORT_DST_MIN, /* be16 */
527 TCA_FLOWER_KEY_PORT_DST_MAX, /* be16 */
529 TCA_FLOWER_KEY_CT_STATE, /* u16 */
530 TCA_FLOWER_KEY_CT_STATE_MASK, /* u16 */
531 TCA_FLOWER_KEY_CT_ZONE, /* u16 */
532 TCA_FLOWER_KEY_CT_ZONE_MASK, /* u16 */
533 TCA_FLOWER_KEY_CT_MARK, /* u32 */
534 TCA_FLOWER_KEY_CT_MARK_MASK, /* u32 */
535 TCA_FLOWER_KEY_CT_LABELS, /* u128 */
536 TCA_FLOWER_KEY_CT_LABELS_MASK, /* u128 */
538 TCA_FLOWER_KEY_MPLS_OPTS,
540 TCA_FLOWER_KEY_HASH, /* u32 */
541 TCA_FLOWER_KEY_HASH_MASK, /* u32 */
543 TCA_FLOWER_KEY_NUM_OF_VLANS, /* u8 */
545 TCA_FLOWER_KEY_PPPOE_SID, /* be16 */
546 TCA_FLOWER_KEY_PPP_PROTO, /* be16 */
548 TCA_FLOWER_KEY_L2TPV3_SID, /* be32 */
550 TCA_FLOWER_L2_MISS, /* u8 */
552 TCA_FLOWER_KEY_CFM, /* nested */
554 TCA_FLOWER_KEY_SPI, /* be32 */
555 TCA_FLOWER_KEY_SPI_MASK, /* be32 */
560 #define TCA_FLOWER_MAX (__TCA_FLOWER_MAX - 1)
563 TCA_FLOWER_KEY_CT_FLAGS_NEW = 1 << 0, /* Beginning of a new connection. */
564 TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED = 1 << 1, /* Part of an existing connection. */
565 TCA_FLOWER_KEY_CT_FLAGS_RELATED = 1 << 2, /* Related to an established connection. */
566 TCA_FLOWER_KEY_CT_FLAGS_TRACKED = 1 << 3, /* Conntrack has occurred. */
567 TCA_FLOWER_KEY_CT_FLAGS_INVALID = 1 << 4, /* Conntrack is invalid. */
568 TCA_FLOWER_KEY_CT_FLAGS_REPLY = 1 << 5, /* Packet is in the reply direction. */
569 __TCA_FLOWER_KEY_CT_FLAGS_MAX,
573 TCA_FLOWER_KEY_ENC_OPTS_UNSPEC,
574 TCA_FLOWER_KEY_ENC_OPTS_GENEVE, /* Nested
575 * TCA_FLOWER_KEY_ENC_OPT_GENEVE_
578 TCA_FLOWER_KEY_ENC_OPTS_VXLAN, /* Nested
579 * TCA_FLOWER_KEY_ENC_OPT_VXLAN_
582 TCA_FLOWER_KEY_ENC_OPTS_ERSPAN, /* Nested
583 * TCA_FLOWER_KEY_ENC_OPT_ERSPAN_
586 TCA_FLOWER_KEY_ENC_OPTS_GTP, /* Nested
587 * TCA_FLOWER_KEY_ENC_OPT_GTP_
590 __TCA_FLOWER_KEY_ENC_OPTS_MAX,
593 #define TCA_FLOWER_KEY_ENC_OPTS_MAX (__TCA_FLOWER_KEY_ENC_OPTS_MAX - 1)
596 TCA_FLOWER_KEY_ENC_OPT_GENEVE_UNSPEC,
597 TCA_FLOWER_KEY_ENC_OPT_GENEVE_CLASS, /* u16 */
598 TCA_FLOWER_KEY_ENC_OPT_GENEVE_TYPE, /* u8 */
599 TCA_FLOWER_KEY_ENC_OPT_GENEVE_DATA, /* 4 to 128 bytes */
601 __TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX,
604 #define TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX \
605 (__TCA_FLOWER_KEY_ENC_OPT_GENEVE_MAX - 1)
608 TCA_FLOWER_KEY_ENC_OPT_VXLAN_UNSPEC,
609 TCA_FLOWER_KEY_ENC_OPT_VXLAN_GBP, /* u32 */
610 __TCA_FLOWER_KEY_ENC_OPT_VXLAN_MAX,
613 #define TCA_FLOWER_KEY_ENC_OPT_VXLAN_MAX \
614 (__TCA_FLOWER_KEY_ENC_OPT_VXLAN_MAX - 1)
617 TCA_FLOWER_KEY_ENC_OPT_ERSPAN_UNSPEC,
618 TCA_FLOWER_KEY_ENC_OPT_ERSPAN_VER, /* u8 */
619 TCA_FLOWER_KEY_ENC_OPT_ERSPAN_INDEX, /* be32 */
620 TCA_FLOWER_KEY_ENC_OPT_ERSPAN_DIR, /* u8 */
621 TCA_FLOWER_KEY_ENC_OPT_ERSPAN_HWID, /* u8 */
622 __TCA_FLOWER_KEY_ENC_OPT_ERSPAN_MAX,
625 #define TCA_FLOWER_KEY_ENC_OPT_ERSPAN_MAX \
626 (__TCA_FLOWER_KEY_ENC_OPT_ERSPAN_MAX - 1)
629 TCA_FLOWER_KEY_ENC_OPT_GTP_UNSPEC,
630 TCA_FLOWER_KEY_ENC_OPT_GTP_PDU_TYPE, /* u8 */
631 TCA_FLOWER_KEY_ENC_OPT_GTP_QFI, /* u8 */
633 __TCA_FLOWER_KEY_ENC_OPT_GTP_MAX,
636 #define TCA_FLOWER_KEY_ENC_OPT_GTP_MAX \
637 (__TCA_FLOWER_KEY_ENC_OPT_GTP_MAX - 1)
640 TCA_FLOWER_KEY_MPLS_OPTS_UNSPEC,
641 TCA_FLOWER_KEY_MPLS_OPTS_LSE,
642 __TCA_FLOWER_KEY_MPLS_OPTS_MAX,
645 #define TCA_FLOWER_KEY_MPLS_OPTS_MAX (__TCA_FLOWER_KEY_MPLS_OPTS_MAX - 1)
648 TCA_FLOWER_KEY_MPLS_OPT_LSE_UNSPEC,
649 TCA_FLOWER_KEY_MPLS_OPT_LSE_DEPTH,
650 TCA_FLOWER_KEY_MPLS_OPT_LSE_TTL,
651 TCA_FLOWER_KEY_MPLS_OPT_LSE_BOS,
652 TCA_FLOWER_KEY_MPLS_OPT_LSE_TC,
653 TCA_FLOWER_KEY_MPLS_OPT_LSE_LABEL,
654 __TCA_FLOWER_KEY_MPLS_OPT_LSE_MAX,
657 #define TCA_FLOWER_KEY_MPLS_OPT_LSE_MAX \
658 (__TCA_FLOWER_KEY_MPLS_OPT_LSE_MAX - 1)
661 TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = (1 << 0),
662 TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = (1 << 1),
666 TCA_FLOWER_KEY_CFM_OPT_UNSPEC,
667 TCA_FLOWER_KEY_CFM_MD_LEVEL,
668 TCA_FLOWER_KEY_CFM_OPCODE,
669 __TCA_FLOWER_KEY_CFM_OPT_MAX,
672 #define TCA_FLOWER_KEY_CFM_OPT_MAX (__TCA_FLOWER_KEY_CFM_OPT_MAX - 1)
674 #define TCA_FLOWER_MASK_FLAGS_RANGE (1 << 0) /* Range-based match */
676 /* Match-all classifier */
678 struct tc_matchall_pcnt {
684 TCA_MATCHALL_CLASSID,
692 #define TCA_MATCHALL_MAX (__TCA_MATCHALL_MAX - 1)
694 /* Extended Matches */
696 struct tcf_ematch_tree_hdr {
702 TCA_EMATCH_TREE_UNSPEC,
704 TCA_EMATCH_TREE_LIST,
705 __TCA_EMATCH_TREE_MAX
707 #define TCA_EMATCH_TREE_MAX (__TCA_EMATCH_TREE_MAX - 1)
709 struct tcf_ematch_hdr {
713 __u16 pad; /* currently unused */
717 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
718 * +-----------------------+-+-+---+
720 * +-----------------------+-+-+---+
722 * R(2) ::= relation to next ematch
723 * where: 0 0 END (last ematch)
726 * 1 1 Unused (invalid)
727 * I(1) ::= invert result
728 * S(1) ::= simple payload
730 #define TCF_EM_REL_END 0
731 #define TCF_EM_REL_AND (1<<0)
732 #define TCF_EM_REL_OR (1<<1)
733 #define TCF_EM_INVERT (1<<2)
734 #define TCF_EM_SIMPLE (1<<3)
736 #define TCF_EM_REL_MASK 3
737 #define TCF_EM_REL_VALID(v) (((v) & TCF_EM_REL_MASK) != TCF_EM_REL_MASK)
745 #define TCF_LAYER_MAX (__TCF_LAYER_MAX - 1)
747 /* Ematch type assignments
748 * 1..32767 Reserved for ematches inside kernel tree
749 * 32768..65535 Free to use, not reliable
751 #define TCF_EM_CONTAINER 0
753 #define TCF_EM_NBYTE 2
755 #define TCF_EM_META 4
756 #define TCF_EM_TEXT 5
757 #define TCF_EM_VLAN 6
758 #define TCF_EM_CANID 7
759 #define TCF_EM_IPSET 8