x86/speculation/mds: Fix documentation typo
[linux/fpc-iii.git] / net / sched / cls_matchall.c
blobd8fd152779c8d451bfaa0b028f3e3a94b723731d
1 /*
2 * net/sched/cls_matchll.c Match-all classifier
4 * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
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.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
16 #include <net/sch_generic.h>
17 #include <net/pkt_cls.h>
19 struct cls_mall_head {
20 struct tcf_exts exts;
21 struct tcf_result res;
22 u32 handle;
23 u32 flags;
24 union {
25 struct work_struct work;
26 struct rcu_head rcu;
30 static int mall_classify(struct sk_buff *skb, const struct tcf_proto *tp,
31 struct tcf_result *res)
33 struct cls_mall_head *head = rcu_dereference_bh(tp->root);
35 if (tc_skip_sw(head->flags))
36 return -1;
38 *res = head->res;
39 return tcf_exts_exec(skb, &head->exts, res);
42 static int mall_init(struct tcf_proto *tp)
44 return 0;
47 static void __mall_destroy(struct cls_mall_head *head)
49 tcf_exts_destroy(&head->exts);
50 tcf_exts_put_net(&head->exts);
51 kfree(head);
54 static void mall_destroy_work(struct work_struct *work)
56 struct cls_mall_head *head = container_of(work, struct cls_mall_head,
57 work);
58 rtnl_lock();
59 __mall_destroy(head);
60 rtnl_unlock();
63 static void mall_destroy_rcu(struct rcu_head *rcu)
65 struct cls_mall_head *head = container_of(rcu, struct cls_mall_head,
66 rcu);
68 INIT_WORK(&head->work, mall_destroy_work);
69 tcf_queue_work(&head->work);
72 static int mall_replace_hw_filter(struct tcf_proto *tp,
73 struct cls_mall_head *head,
74 unsigned long cookie)
76 struct net_device *dev = tp->q->dev_queue->dev;
77 struct tc_cls_matchall_offload cls_mall = {};
78 int err;
80 tc_cls_common_offload_init(&cls_mall.common, tp);
81 cls_mall.command = TC_CLSMATCHALL_REPLACE;
82 cls_mall.exts = &head->exts;
83 cls_mall.cookie = cookie;
85 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSMATCHALL,
86 &cls_mall);
87 if (!err)
88 head->flags |= TCA_CLS_FLAGS_IN_HW;
90 return err;
93 static void mall_destroy_hw_filter(struct tcf_proto *tp,
94 struct cls_mall_head *head,
95 unsigned long cookie)
97 struct net_device *dev = tp->q->dev_queue->dev;
98 struct tc_cls_matchall_offload cls_mall = {};
100 tc_cls_common_offload_init(&cls_mall.common, tp);
101 cls_mall.command = TC_CLSMATCHALL_DESTROY;
102 cls_mall.cookie = cookie;
104 dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSMATCHALL, &cls_mall);
107 static void mall_destroy(struct tcf_proto *tp)
109 struct cls_mall_head *head = rtnl_dereference(tp->root);
110 struct net_device *dev = tp->q->dev_queue->dev;
112 if (!head)
113 return;
115 tcf_unbind_filter(tp, &head->res);
117 if (tc_should_offload(dev, head->flags))
118 mall_destroy_hw_filter(tp, head, (unsigned long) head);
120 if (tcf_exts_get_net(&head->exts))
121 call_rcu(&head->rcu, mall_destroy_rcu);
122 else
123 __mall_destroy(head);
126 static void *mall_get(struct tcf_proto *tp, u32 handle)
128 struct cls_mall_head *head = rtnl_dereference(tp->root);
130 if (head && head->handle == handle)
131 return head;
133 return NULL;
136 static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = {
137 [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC },
138 [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 },
141 static int mall_set_parms(struct net *net, struct tcf_proto *tp,
142 struct cls_mall_head *head,
143 unsigned long base, struct nlattr **tb,
144 struct nlattr *est, bool ovr)
146 int err;
148 err = tcf_exts_validate(net, tp, tb, est, &head->exts, ovr);
149 if (err < 0)
150 return err;
152 if (tb[TCA_MATCHALL_CLASSID]) {
153 head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]);
154 tcf_bind_filter(tp, &head->res, base);
156 return 0;
159 static int mall_change(struct net *net, struct sk_buff *in_skb,
160 struct tcf_proto *tp, unsigned long base,
161 u32 handle, struct nlattr **tca,
162 void **arg, bool ovr)
164 struct cls_mall_head *head = rtnl_dereference(tp->root);
165 struct net_device *dev = tp->q->dev_queue->dev;
166 struct nlattr *tb[TCA_MATCHALL_MAX + 1];
167 struct cls_mall_head *new;
168 u32 flags = 0;
169 int err;
171 if (!tca[TCA_OPTIONS])
172 return -EINVAL;
174 if (head)
175 return -EEXIST;
177 err = nla_parse_nested(tb, TCA_MATCHALL_MAX, tca[TCA_OPTIONS],
178 mall_policy, NULL);
179 if (err < 0)
180 return err;
182 if (tb[TCA_MATCHALL_FLAGS]) {
183 flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]);
184 if (!tc_flags_valid(flags))
185 return -EINVAL;
188 new = kzalloc(sizeof(*new), GFP_KERNEL);
189 if (!new)
190 return -ENOBUFS;
192 err = tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0);
193 if (err)
194 goto err_exts_init;
196 if (!handle)
197 handle = 1;
198 new->handle = handle;
199 new->flags = flags;
201 err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr);
202 if (err)
203 goto err_set_parms;
205 if (tc_should_offload(dev, flags)) {
206 err = mall_replace_hw_filter(tp, new, (unsigned long) new);
207 if (err) {
208 if (tc_skip_sw(flags))
209 goto err_replace_hw_filter;
210 else
211 err = 0;
215 if (!tc_in_hw(new->flags))
216 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
218 *arg = head;
219 rcu_assign_pointer(tp->root, new);
220 return 0;
222 err_replace_hw_filter:
223 err_set_parms:
224 tcf_exts_destroy(&new->exts);
225 err_exts_init:
226 kfree(new);
227 return err;
230 static int mall_delete(struct tcf_proto *tp, void *arg, bool *last)
232 return -EOPNOTSUPP;
235 static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg)
237 struct cls_mall_head *head = rtnl_dereference(tp->root);
239 if (arg->count < arg->skip)
240 goto skip;
241 if (arg->fn(tp, head, arg) < 0)
242 arg->stop = 1;
243 skip:
244 arg->count++;
247 static int mall_dump(struct net *net, struct tcf_proto *tp, void *fh,
248 struct sk_buff *skb, struct tcmsg *t)
250 struct cls_mall_head *head = fh;
251 struct nlattr *nest;
253 if (!head)
254 return skb->len;
256 t->tcm_handle = head->handle;
258 nest = nla_nest_start(skb, TCA_OPTIONS);
259 if (!nest)
260 goto nla_put_failure;
262 if (head->res.classid &&
263 nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
264 goto nla_put_failure;
266 if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags))
267 goto nla_put_failure;
269 if (tcf_exts_dump(skb, &head->exts))
270 goto nla_put_failure;
272 nla_nest_end(skb, nest);
274 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
275 goto nla_put_failure;
277 return skb->len;
279 nla_put_failure:
280 nla_nest_cancel(skb, nest);
281 return -1;
284 static void mall_bind_class(void *fh, u32 classid, unsigned long cl)
286 struct cls_mall_head *head = fh;
288 if (head && head->res.classid == classid)
289 head->res.class = cl;
292 static struct tcf_proto_ops cls_mall_ops __read_mostly = {
293 .kind = "matchall",
294 .classify = mall_classify,
295 .init = mall_init,
296 .destroy = mall_destroy,
297 .get = mall_get,
298 .change = mall_change,
299 .delete = mall_delete,
300 .walk = mall_walk,
301 .dump = mall_dump,
302 .bind_class = mall_bind_class,
303 .owner = THIS_MODULE,
306 static int __init cls_mall_init(void)
308 return register_tcf_proto_ops(&cls_mall_ops);
311 static void __exit cls_mall_exit(void)
313 unregister_tcf_proto_ops(&cls_mall_ops);
316 module_init(cls_mall_init);
317 module_exit(cls_mall_exit);
319 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
320 MODULE_DESCRIPTION("Match-all classifier");
321 MODULE_LICENSE("GPL v2");