Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/cls_matchll.c Match-all classifier |
| 3 | * |
| 4 | * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/module.h> |
| 15 | |
| 16 | #include <net/sch_generic.h> |
| 17 | #include <net/pkt_cls.h> |
| 18 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 19 | struct cls_mall_head { |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 20 | struct tcf_exts exts; |
| 21 | struct tcf_result res; |
| 22 | u32 handle; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 23 | u32 flags; |
John Hurley | 0efd1b3 | 2018-06-25 14:30:07 -0700 | [diff] [blame] | 24 | unsigned int in_hw_count; |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 25 | struct rcu_work rwork; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | static int mall_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
| 29 | struct tcf_result *res) |
| 30 | { |
| 31 | struct cls_mall_head *head = rcu_dereference_bh(tp->root); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 32 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 33 | if (tc_skip_sw(head->flags)) |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 34 | return -1; |
| 35 | |
Davide Caratti | 3ff4cbe | 2017-09-16 14:02:21 +0200 | [diff] [blame] | 36 | *res = head->res; |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 37 | return tcf_exts_exec(skb, &head->exts, res); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static int mall_init(struct tcf_proto *tp) |
| 41 | { |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 42 | return 0; |
| 43 | } |
| 44 | |
Cong Wang | 57767e78 | 2017-11-06 13:47:26 -0800 | [diff] [blame] | 45 | static void __mall_destroy(struct cls_mall_head *head) |
| 46 | { |
| 47 | tcf_exts_destroy(&head->exts); |
| 48 | tcf_exts_put_net(&head->exts); |
| 49 | kfree(head); |
| 50 | } |
| 51 | |
Cong Wang | df2735e | 2017-10-26 18:24:35 -0700 | [diff] [blame] | 52 | static void mall_destroy_work(struct work_struct *work) |
| 53 | { |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 54 | struct cls_mall_head *head = container_of(to_rcu_work(work), |
| 55 | struct cls_mall_head, |
| 56 | rwork); |
Cong Wang | df2735e | 2017-10-26 18:24:35 -0700 | [diff] [blame] | 57 | rtnl_lock(); |
Cong Wang | 57767e78 | 2017-11-06 13:47:26 -0800 | [diff] [blame] | 58 | __mall_destroy(head); |
Cong Wang | df2735e | 2017-10-26 18:24:35 -0700 | [diff] [blame] | 59 | rtnl_unlock(); |
| 60 | } |
| 61 | |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 62 | static void mall_destroy_hw_filter(struct tcf_proto *tp, |
| 63 | struct cls_mall_head *head, |
Jakub Kicinski | b505b29 | 2018-01-24 12:54:19 -0800 | [diff] [blame] | 64 | unsigned long cookie, |
| 65 | struct netlink_ext_ack *extack) |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 66 | { |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 67 | struct tc_cls_matchall_offload cls_mall = {}; |
| 68 | struct tcf_block *block = tp->chain->block; |
| 69 | |
Jakub Kicinski | b505b29 | 2018-01-24 12:54:19 -0800 | [diff] [blame] | 70 | tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 71 | cls_mall.command = TC_CLSMATCHALL_DESTROY; |
| 72 | cls_mall.cookie = cookie; |
| 73 | |
Cong Wang | aeb3fec | 2018-12-11 11:15:46 -0800 | [diff] [blame] | 74 | tc_setup_cb_call(block, TC_SETUP_CLSMATCHALL, &cls_mall, false); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 75 | tcf_block_offload_dec(block, &head->flags); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 76 | } |
| 77 | |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 78 | static int mall_replace_hw_filter(struct tcf_proto *tp, |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 79 | struct cls_mall_head *head, |
Quentin Monnet | 0279814 | 2018-01-19 17:44:44 -0800 | [diff] [blame] | 80 | unsigned long cookie, |
| 81 | struct netlink_ext_ack *extack) |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 82 | { |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 83 | struct tc_cls_matchall_offload cls_mall = {}; |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 84 | struct tcf_block *block = tp->chain->block; |
| 85 | bool skip_sw = tc_skip_sw(head->flags); |
Or Gerlitz | c7d2b2f | 2017-02-16 10:31:14 +0200 | [diff] [blame] | 86 | int err; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 87 | |
Jakub Kicinski | 93da52b | 2018-01-24 12:54:18 -0800 | [diff] [blame] | 88 | tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack); |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 89 | cls_mall.command = TC_CLSMATCHALL_REPLACE; |
| 90 | cls_mall.exts = &head->exts; |
| 91 | cls_mall.cookie = cookie; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 92 | |
Cong Wang | aeb3fec | 2018-12-11 11:15:46 -0800 | [diff] [blame] | 93 | err = tc_setup_cb_call(block, TC_SETUP_CLSMATCHALL, &cls_mall, skip_sw); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 94 | if (err < 0) { |
Jakub Kicinski | b505b29 | 2018-01-24 12:54:19 -0800 | [diff] [blame] | 95 | mall_destroy_hw_filter(tp, head, cookie, NULL); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 96 | return err; |
| 97 | } else if (err > 0) { |
John Hurley | 0efd1b3 | 2018-06-25 14:30:07 -0700 | [diff] [blame] | 98 | head->in_hw_count = err; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 99 | tcf_block_offload_inc(block, &head->flags); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 100 | } |
Or Gerlitz | c7d2b2f | 2017-02-16 10:31:14 +0200 | [diff] [blame] | 101 | |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 102 | if (skip_sw && !(head->flags & TCA_CLS_FLAGS_IN_HW)) |
| 103 | return -EINVAL; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 104 | |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 105 | return 0; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 106 | } |
| 107 | |
Jakub Kicinski | 715df5e | 2018-01-24 12:54:13 -0800 | [diff] [blame] | 108 | static void mall_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 109 | { |
| 110 | struct cls_mall_head *head = rtnl_dereference(tp->root); |
| 111 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 112 | if (!head) |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 113 | return; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 114 | |
Hangbin Liu | a51c76b | 2018-08-14 17:28:26 +0800 | [diff] [blame] | 115 | tcf_unbind_filter(tp, &head->res); |
| 116 | |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 117 | if (!tc_skip_hw(head->flags)) |
Jakub Kicinski | b505b29 | 2018-01-24 12:54:19 -0800 | [diff] [blame] | 118 | mall_destroy_hw_filter(tp, head, (unsigned long) head, extack); |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 119 | |
Cong Wang | 57767e78 | 2017-11-06 13:47:26 -0800 | [diff] [blame] | 120 | if (tcf_exts_get_net(&head->exts)) |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 121 | tcf_queue_work(&head->rwork, mall_destroy_work); |
Cong Wang | 57767e78 | 2017-11-06 13:47:26 -0800 | [diff] [blame] | 122 | else |
| 123 | __mall_destroy(head); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 124 | } |
| 125 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 126 | static void *mall_get(struct tcf_proto *tp, u32 handle) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 127 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 128 | return NULL; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = { |
| 132 | [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC }, |
| 133 | [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 }, |
| 134 | }; |
| 135 | |
| 136 | static int mall_set_parms(struct net *net, struct tcf_proto *tp, |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 137 | struct cls_mall_head *head, |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 138 | unsigned long base, struct nlattr **tb, |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 139 | struct nlattr *est, bool ovr, |
| 140 | struct netlink_ext_ack *extack) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 141 | { |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 142 | int err; |
| 143 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 144 | err = tcf_exts_validate(net, tp, tb, est, &head->exts, ovr, extack); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 145 | if (err < 0) |
Jiri Pirko | a74cb36 | 2017-08-04 14:29:08 +0200 | [diff] [blame] | 146 | return err; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 147 | |
| 148 | if (tb[TCA_MATCHALL_CLASSID]) { |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 149 | head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]); |
| 150 | tcf_bind_filter(tp, &head->res, base); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 151 | } |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | static int mall_change(struct net *net, struct sk_buff *in_skb, |
| 156 | struct tcf_proto *tp, unsigned long base, |
| 157 | u32 handle, struct nlattr **tca, |
Alexander Aring | 7306db3 | 2018-01-18 11:20:51 -0500 | [diff] [blame] | 158 | void **arg, bool ovr, struct netlink_ext_ack *extack) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 159 | { |
| 160 | struct cls_mall_head *head = rtnl_dereference(tp->root); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 161 | struct nlattr *tb[TCA_MATCHALL_MAX + 1]; |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 162 | struct cls_mall_head *new; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 163 | u32 flags = 0; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 164 | int err; |
| 165 | |
| 166 | if (!tca[TCA_OPTIONS]) |
| 167 | return -EINVAL; |
| 168 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 169 | if (head) |
| 170 | return -EEXIST; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 171 | |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 172 | err = nla_parse_nested(tb, TCA_MATCHALL_MAX, tca[TCA_OPTIONS], |
| 173 | mall_policy, NULL); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 174 | if (err < 0) |
| 175 | return err; |
| 176 | |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 177 | if (tb[TCA_MATCHALL_FLAGS]) { |
| 178 | flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]); |
| 179 | if (!tc_flags_valid(flags)) |
| 180 | return -EINVAL; |
| 181 | } |
| 182 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 183 | new = kzalloc(sizeof(*new), GFP_KERNEL); |
| 184 | if (!new) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 185 | return -ENOBUFS; |
| 186 | |
David S. Miller | e216015 | 2017-02-02 16:54:00 -0500 | [diff] [blame] | 187 | err = tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0); |
Yotam Gigi | ec2507d | 2017-01-03 19:20:24 +0200 | [diff] [blame] | 188 | if (err) |
| 189 | goto err_exts_init; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 190 | |
| 191 | if (!handle) |
| 192 | handle = 1; |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 193 | new->handle = handle; |
| 194 | new->flags = flags; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 195 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 196 | err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr, |
| 197 | extack); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 198 | if (err) |
Yotam Gigi | ec2507d | 2017-01-03 19:20:24 +0200 | [diff] [blame] | 199 | goto err_set_parms; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 200 | |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 201 | if (!tc_skip_hw(new->flags)) { |
Quentin Monnet | 0279814 | 2018-01-19 17:44:44 -0800 | [diff] [blame] | 202 | err = mall_replace_hw_filter(tp, new, (unsigned long)new, |
| 203 | extack); |
Jiri Pirko | 2447a96 | 2017-10-19 15:50:33 +0200 | [diff] [blame] | 204 | if (err) |
| 205 | goto err_replace_hw_filter; |
Yotam Gigi | b87f793 | 2016-07-21 12:03:12 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Or Gerlitz | c7d2b2f | 2017-02-16 10:31:14 +0200 | [diff] [blame] | 208 | if (!tc_in_hw(new->flags)) |
| 209 | new->flags |= TCA_CLS_FLAGS_NOT_IN_HW; |
| 210 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 211 | *arg = head; |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 212 | rcu_assign_pointer(tp->root, new); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 213 | return 0; |
| 214 | |
Yotam Gigi | ec2507d | 2017-01-03 19:20:24 +0200 | [diff] [blame] | 215 | err_replace_hw_filter: |
| 216 | err_set_parms: |
David S. Miller | e216015 | 2017-02-02 16:54:00 -0500 | [diff] [blame] | 217 | tcf_exts_destroy(&new->exts); |
Yotam Gigi | ec2507d | 2017-01-03 19:20:24 +0200 | [diff] [blame] | 218 | err_exts_init: |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 219 | kfree(new); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 220 | return err; |
| 221 | } |
| 222 | |
Alexander Aring | 571acf2 | 2018-01-18 11:20:53 -0500 | [diff] [blame] | 223 | static int mall_delete(struct tcf_proto *tp, void *arg, bool *last, |
| 224 | struct netlink_ext_ack *extack) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 225 | { |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 226 | return -EOPNOTSUPP; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg) |
| 230 | { |
| 231 | struct cls_mall_head *head = rtnl_dereference(tp->root); |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 232 | |
| 233 | if (arg->count < arg->skip) |
| 234 | goto skip; |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 235 | if (arg->fn(tp, head, arg) < 0) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 236 | arg->stop = 1; |
| 237 | skip: |
| 238 | arg->count++; |
| 239 | } |
| 240 | |
John Hurley | 0efd1b3 | 2018-06-25 14:30:07 -0700 | [diff] [blame] | 241 | static int mall_reoffload(struct tcf_proto *tp, bool add, tc_setup_cb_t *cb, |
| 242 | void *cb_priv, struct netlink_ext_ack *extack) |
| 243 | { |
| 244 | struct cls_mall_head *head = rtnl_dereference(tp->root); |
| 245 | struct tc_cls_matchall_offload cls_mall = {}; |
| 246 | struct tcf_block *block = tp->chain->block; |
| 247 | int err; |
| 248 | |
| 249 | if (tc_skip_hw(head->flags)) |
| 250 | return 0; |
| 251 | |
| 252 | tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack); |
| 253 | cls_mall.command = add ? |
| 254 | TC_CLSMATCHALL_REPLACE : TC_CLSMATCHALL_DESTROY; |
| 255 | cls_mall.exts = &head->exts; |
| 256 | cls_mall.cookie = (unsigned long)head; |
| 257 | |
| 258 | err = cb(TC_SETUP_CLSMATCHALL, &cls_mall, cb_priv); |
| 259 | if (err) { |
| 260 | if (add && tc_skip_sw(head->flags)) |
| 261 | return err; |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | tc_cls_offload_cnt_update(block, &head->in_hw_count, &head->flags, add); |
| 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 270 | static int mall_dump(struct net *net, struct tcf_proto *tp, void *fh, |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 271 | struct sk_buff *skb, struct tcmsg *t) |
| 272 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 273 | struct cls_mall_head *head = fh; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 274 | struct nlattr *nest; |
| 275 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 276 | if (!head) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 277 | return skb->len; |
| 278 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 279 | t->tcm_handle = head->handle; |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 280 | |
| 281 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 282 | if (!nest) |
| 283 | goto nla_put_failure; |
| 284 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 285 | if (head->res.classid && |
| 286 | nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid)) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 287 | goto nla_put_failure; |
| 288 | |
Or Gerlitz | 7a335ad | 2017-02-16 10:31:11 +0200 | [diff] [blame] | 289 | if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags)) |
| 290 | goto nla_put_failure; |
| 291 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 292 | if (tcf_exts_dump(skb, &head->exts)) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 293 | goto nla_put_failure; |
| 294 | |
| 295 | nla_nest_end(skb, nest); |
| 296 | |
Yotam Gigi | fd62d9f | 2017-01-31 15:14:29 +0200 | [diff] [blame] | 297 | if (tcf_exts_dump_stats(skb, &head->exts) < 0) |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 298 | goto nla_put_failure; |
| 299 | |
| 300 | return skb->len; |
| 301 | |
| 302 | nla_put_failure: |
| 303 | nla_nest_cancel(skb, nest); |
| 304 | return -1; |
| 305 | } |
| 306 | |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 307 | static void mall_bind_class(void *fh, u32 classid, unsigned long cl) |
| 308 | { |
| 309 | struct cls_mall_head *head = fh; |
| 310 | |
| 311 | if (head && head->res.classid == classid) |
| 312 | head->res.class = cl; |
| 313 | } |
| 314 | |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 315 | static struct tcf_proto_ops cls_mall_ops __read_mostly = { |
| 316 | .kind = "matchall", |
| 317 | .classify = mall_classify, |
| 318 | .init = mall_init, |
| 319 | .destroy = mall_destroy, |
| 320 | .get = mall_get, |
| 321 | .change = mall_change, |
| 322 | .delete = mall_delete, |
| 323 | .walk = mall_walk, |
John Hurley | 0efd1b3 | 2018-06-25 14:30:07 -0700 | [diff] [blame] | 324 | .reoffload = mall_reoffload, |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 325 | .dump = mall_dump, |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 326 | .bind_class = mall_bind_class, |
Jiri Pirko | bf3994d | 2016-07-21 12:03:11 +0200 | [diff] [blame] | 327 | .owner = THIS_MODULE, |
| 328 | }; |
| 329 | |
| 330 | static int __init cls_mall_init(void) |
| 331 | { |
| 332 | return register_tcf_proto_ops(&cls_mall_ops); |
| 333 | } |
| 334 | |
| 335 | static void __exit cls_mall_exit(void) |
| 336 | { |
| 337 | unregister_tcf_proto_ops(&cls_mall_ops); |
| 338 | } |
| 339 | |
| 340 | module_init(cls_mall_init); |
| 341 | module_exit(cls_mall_exit); |
| 342 | |
| 343 | MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>"); |
| 344 | MODULE_DESCRIPTION("Match-all classifier"); |
| 345 | MODULE_LICENSE("GPL v2"); |