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