]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
tc: flower: Add skip_{hw|sw} support
authorAmir Vadai <amirva@mellanox.com>
Mon, 4 Jul 2016 07:34:11 +0000 (10:34 +0300)
committerStephen Hemminger <shemming@brocade.com>
Thu, 7 Jul 2016 04:24:48 +0000 (21:24 -0700)
On devices that support TC flower offloads, these flags enable a filter to be
added only to HW or only to SW. skip_sw and skip_hw are mutually exclusive
flags. By default without any flags, the filter is added to both HW and SW,
but no error checks are done in case of failure to add to HW.
With skip-sw, failure to add to HW is treated as an error.

Here is a sample script that adds 2 filters, one with skip_sw and the other
with skip_hw flag.

   # add ingress qdisc
   tc qdisc add dev enp0s9 ingress

   # enable hw tc offload.
   ethtool -K enp0s9 hw-tc-offload on

   # add a flower filter with skip-sw flag.
   tc filter add dev enp0s9 protocol ip parent ffff: flower \
   ip_proto 1 indev enp0s9 skip_sw \
   action drop

   # add a flower filter with skip-hw flag.
   tc filter add dev enp0s9 protocol ip parent ffff: flower \
   ip_proto 3 indev enp0s9 skip_hw \
   action drop

Signed-off-by: Amir Vadai <amirva@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
man/man8/tc-flower.8
tc/f_flower.c

index df4d8e1977866b4b81b2f4499a339b9cf0c4124b..9ae10e6f885b4f8121bb4c5aee9e5e5e0c77a859 100644 (file)
@@ -18,7 +18,9 @@ flower \- flow based traffic control filter
 .ti -8
 .IR MATCH " := { "
 .B indev
-.IR ifname " | { "
+.IR ifname " | "
+.BR skip_sw " | " skip_hw
+.R " | { "
 .BR dst_mac " | " src_mac " } "
 .IR mac_address " | "
 .BR eth_type " { " ipv4 " | " ipv6 " | "
@@ -55,6 +57,13 @@ is the name of an interface which must exist at the time of
 .B tc
 invocation.
 .TP
+.BI skip_sw
+Do not process filter by software. If hardware has no offload support for this
+filter, or TC offload is not enabled for the interface, operation will fail.
+.TP
+.BI skip_hw
+Do not process filter by hardware.
+.TP
 .BI dst_mac " mac_address"
 .TQ
 .BI src_mac " mac_address"
index fd2014b374a1e33198094102ec40c5252095f90b..7b46ceb14f4665798367dca446cc8b1bb4c32766 100644 (file)
@@ -25,6 +25,7 @@
 static void explain(void)
 {
        fprintf(stderr, "Usage: ... flower [ MATCH-LIST ]\n");
+       fprintf(stderr, "                  [ skip_sw | skip_hw ]\n");
        fprintf(stderr, "                  [ action ACTION-SPEC ] [ classid CLASSID ]\n");
        fprintf(stderr, "\n");
        fprintf(stderr, "Where: MATCH-LIST := [ MATCH-LIST ] MATCH\n");
@@ -167,6 +168,7 @@ static int flower_parse_opt(struct filter_util *qu, char *handle,
        struct rtattr *tail;
        __be16 eth_type = TC_H_MIN(t->tcm_info);
        __u8 ip_proto = 0xff;
+       __u32 flags = 0;
 
        if (handle) {
                ret = get_u32(&t->tcm_handle, handle, 0);
@@ -196,6 +198,10 @@ static int flower_parse_opt(struct filter_util *qu, char *handle,
                                return -1;
                        }
                        addattr_l(n, MAX_MSG, TCA_FLOWER_CLASSID, &handle, 4);
+               } else if (matches(*argv, "skip_hw") == 0) {
+                       flags |= TCA_CLS_FLAGS_SKIP_HW;
+               } else if (matches(*argv, "skip_sw") == 0) {
+                       flags |= TCA_CLS_FLAGS_SKIP_SW;
                } else if (matches(*argv, "indev") == 0) {
                        char ifname[IFNAMSIZ];
 
@@ -294,6 +300,8 @@ static int flower_parse_opt(struct filter_util *qu, char *handle,
        }
 
 parse_done:
+       addattr32(n, MAX_MSG, TCA_FLOWER_FLAGS, flags);
+
        ret = addattr16(n, MAX_MSG, TCA_FLOWER_KEY_ETH_TYPE, eth_type);
        if (ret) {
                fprintf(stderr, "Illegal \"eth_type\"(0x%x)\n",
@@ -498,6 +506,15 @@ static int flower_print_opt(struct filter_util *qu, FILE *f,
                          tb[TCA_FLOWER_KEY_TCP_SRC],
                          tb[TCA_FLOWER_KEY_UDP_SRC]);
 
+       if (tb[TCA_FLOWER_FLAGS])  {
+               __u32 flags = rta_getattr_u32(tb[TCA_FLOWER_FLAGS]);
+
+               if (flags & TCA_CLS_FLAGS_SKIP_HW)
+                       fprintf(f, "\n  skip_hw");
+               if (flags & TCA_CLS_FLAGS_SKIP_SW)
+                       fprintf(f, "\n  skip_sw");
+       }
+
        if (tb[TCA_FLOWER_ACT]) {
                tc_print_action(f, tb[TCA_FLOWER_ACT]);
        }