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