net: sched: extend percpu stats helpers
[linux-2.6-block.git] / net / sched / act_api.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/act_api.c Packet action API.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Author: Jamal Hadi Salim
10 *
11 *
12 */
13
1da177e4
LT
14#include <linux/types.h>
15#include <linux/kernel.h>
1da177e4 16#include <linux/string.h>
1da177e4 17#include <linux/errno.h>
5a0e3ad6 18#include <linux/slab.h>
1da177e4 19#include <linux/skbuff.h>
1da177e4
LT
20#include <linux/init.h>
21#include <linux/kmod.h>
ab27cfb8 22#include <linux/err.h>
3a9a231d 23#include <linux/module.h>
b854272b
DL
24#include <net/net_namespace.h>
25#include <net/sock.h>
1da177e4
LT
26#include <net/sch_generic.h>
27#include <net/act_api.h>
dc5fc579 28#include <net/netlink.h>
1da177e4 29
86062033 30void tcf_hash_destroy(struct tc_action *a)
e9ce1cd3 31{
86062033
WC
32 struct tcf_common *p = a->priv;
33 struct tcf_hashinfo *hinfo = a->ops->hinfo;
34
89819dc0
WC
35 spin_lock_bh(&hinfo->lock);
36 hlist_del(&p->tcfc_head);
37 spin_unlock_bh(&hinfo->lock);
38 gen_kill_estimator(&p->tcfc_bstats,
39 &p->tcfc_rate_est);
40 /*
41 * gen_estimator est_timer() might access p->tcfc_lock
42 * or bstats, wait a RCU grace period before freeing p
43 */
44 kfree_rcu(p, tcfc_rcu);
e9ce1cd3
DM
45}
46EXPORT_SYMBOL(tcf_hash_destroy);
47
86062033 48int tcf_hash_release(struct tc_action *a, int bind)
e9ce1cd3 49{
86062033 50 struct tcf_common *p = a->priv;
e9ce1cd3
DM
51 int ret = 0;
52
53 if (p) {
54 if (bind)
55 p->tcfc_bindcnt--;
55334a5d
WC
56 else if (p->tcfc_bindcnt > 0)
57 return -EPERM;
e9ce1cd3
DM
58
59 p->tcfc_refcnt--;
10297b99 60 if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) {
a5b5c958
WC
61 if (a->ops->cleanup)
62 a->ops->cleanup(a, bind);
86062033 63 tcf_hash_destroy(a);
e9ce1cd3
DM
64 ret = 1;
65 }
66 }
67 return ret;
68}
69EXPORT_SYMBOL(tcf_hash_release);
70
71static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb,
c779f7af 72 struct tc_action *a)
e9ce1cd3 73{
c779f7af 74 struct tcf_hashinfo *hinfo = a->ops->hinfo;
89819dc0 75 struct hlist_head *head;
e9ce1cd3 76 struct tcf_common *p;
cc7ec456 77 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
4b3550ef 78 struct nlattr *nest;
e9ce1cd3 79
89819dc0 80 spin_lock_bh(&hinfo->lock);
e9ce1cd3
DM
81
82 s_i = cb->args[0];
83
84 for (i = 0; i < (hinfo->hmask + 1); i++) {
89819dc0 85 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
e9ce1cd3 86
89819dc0 87 hlist_for_each_entry_rcu(p, head, tcfc_head) {
e9ce1cd3
DM
88 index++;
89 if (index < s_i)
90 continue;
91 a->priv = p;
92 a->order = n_i;
4b3550ef
PM
93
94 nest = nla_nest_start(skb, a->order);
95 if (nest == NULL)
96 goto nla_put_failure;
e9ce1cd3
DM
97 err = tcf_action_dump_1(skb, a, 0, 0);
98 if (err < 0) {
99 index--;
4b3550ef 100 nlmsg_trim(skb, nest);
e9ce1cd3
DM
101 goto done;
102 }
4b3550ef 103 nla_nest_end(skb, nest);
e9ce1cd3
DM
104 n_i++;
105 if (n_i >= TCA_ACT_MAX_PRIO)
106 goto done;
107 }
108 }
109done:
89819dc0 110 spin_unlock_bh(&hinfo->lock);
e9ce1cd3
DM
111 if (n_i)
112 cb->args[0] += n_i;
113 return n_i;
114
7ba699c6 115nla_put_failure:
4b3550ef 116 nla_nest_cancel(skb, nest);
e9ce1cd3
DM
117 goto done;
118}
119
c779f7af 120static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a)
e9ce1cd3 121{
c779f7af 122 struct tcf_hashinfo *hinfo = a->ops->hinfo;
89819dc0
WC
123 struct hlist_head *head;
124 struct hlist_node *n;
125 struct tcf_common *p;
4b3550ef 126 struct nlattr *nest;
cc7ec456 127 int i = 0, n_i = 0;
55334a5d 128 int ret = -EINVAL;
e9ce1cd3 129
4b3550ef
PM
130 nest = nla_nest_start(skb, a->order);
131 if (nest == NULL)
132 goto nla_put_failure;
1b34ec43
DM
133 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
134 goto nla_put_failure;
e9ce1cd3 135 for (i = 0; i < (hinfo->hmask + 1); i++) {
89819dc0
WC
136 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
137 hlist_for_each_entry_safe(p, n, head, tcfc_head) {
86062033 138 a->priv = p;
55334a5d
WC
139 ret = tcf_hash_release(a, 0);
140 if (ret == ACT_P_DELETED) {
cc7ec456 141 module_put(a->ops->owner);
805c1f4a 142 n_i++;
55334a5d
WC
143 } else if (ret < 0)
144 goto nla_put_failure;
e9ce1cd3
DM
145 }
146 }
1b34ec43
DM
147 if (nla_put_u32(skb, TCA_FCNT, n_i))
148 goto nla_put_failure;
4b3550ef 149 nla_nest_end(skb, nest);
e9ce1cd3
DM
150
151 return n_i;
7ba699c6 152nla_put_failure:
4b3550ef 153 nla_nest_cancel(skb, nest);
55334a5d 154 return ret;
e9ce1cd3
DM
155}
156
9c75f402 157static int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb,
158 int type, struct tc_action *a)
e9ce1cd3 159{
e9ce1cd3 160 if (type == RTM_DELACTION) {
c779f7af 161 return tcf_del_walker(skb, a);
e9ce1cd3 162 } else if (type == RTM_GETACTION) {
c779f7af 163 return tcf_dump_walker(skb, cb, a);
e9ce1cd3 164 } else {
6ff9c364 165 WARN(1, "tcf_generic_walker: unknown action %d\n", type);
e9ce1cd3
DM
166 return -EINVAL;
167 }
168}
e9ce1cd3 169
6e6a50c2 170static struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
e9ce1cd3 171{
89819dc0
WC
172 struct tcf_common *p = NULL;
173 struct hlist_head *head;
e9ce1cd3 174
89819dc0
WC
175 spin_lock_bh(&hinfo->lock);
176 head = &hinfo->htab[tcf_hash(index, hinfo->hmask)];
177 hlist_for_each_entry_rcu(p, head, tcfc_head)
e9ce1cd3
DM
178 if (p->tcfc_index == index)
179 break;
89819dc0 180 spin_unlock_bh(&hinfo->lock);
e9ce1cd3
DM
181
182 return p;
183}
e9ce1cd3 184
ddafd34f 185u32 tcf_hash_new_index(struct tcf_hashinfo *hinfo)
e9ce1cd3 186{
ddafd34f 187 u32 val = hinfo->index;
e9ce1cd3
DM
188
189 do {
190 if (++val == 0)
191 val = 1;
192 } while (tcf_hash_lookup(val, hinfo));
193
ddafd34f 194 hinfo->index = val;
17569fae 195 return val;
e9ce1cd3
DM
196}
197EXPORT_SYMBOL(tcf_hash_new_index);
198
6e6a50c2 199int tcf_hash_search(struct tc_action *a, u32 index)
e9ce1cd3
DM
200{
201 struct tcf_hashinfo *hinfo = a->ops->hinfo;
202 struct tcf_common *p = tcf_hash_lookup(index, hinfo);
203
204 if (p) {
205 a->priv = p;
206 return 1;
207 }
208 return 0;
209}
6e6a50c2 210EXPORT_SYMBOL(tcf_hash_search);
e9ce1cd3 211
86062033 212int tcf_hash_check(u32 index, struct tc_action *a, int bind)
e9ce1cd3 213{
c779f7af 214 struct tcf_hashinfo *hinfo = a->ops->hinfo;
e9ce1cd3
DM
215 struct tcf_common *p = NULL;
216 if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
76aab2c1 217 if (bind)
e9ce1cd3 218 p->tcfc_bindcnt++;
76aab2c1 219 p->tcfc_refcnt++;
e9ce1cd3 220 a->priv = p;
86062033 221 return 1;
e9ce1cd3 222 }
86062033 223 return 0;
e9ce1cd3
DM
224}
225EXPORT_SYMBOL(tcf_hash_check);
226
86062033
WC
227void tcf_hash_cleanup(struct tc_action *a, struct nlattr *est)
228{
229 struct tcf_common *pc = a->priv;
230 if (est)
231 gen_kill_estimator(&pc->tcfc_bstats,
232 &pc->tcfc_rate_est);
233 kfree_rcu(pc, tcfc_rcu);
234}
235EXPORT_SYMBOL(tcf_hash_cleanup);
236
237int tcf_hash_create(u32 index, struct nlattr *est, struct tc_action *a,
238 int size, int bind)
e9ce1cd3 239{
c779f7af 240 struct tcf_hashinfo *hinfo = a->ops->hinfo;
e9ce1cd3
DM
241 struct tcf_common *p = kzalloc(size, GFP_KERNEL);
242
243 if (unlikely(!p))
86062033 244 return -ENOMEM;
e9ce1cd3
DM
245 p->tcfc_refcnt = 1;
246 if (bind)
247 p->tcfc_bindcnt = 1;
248
249 spin_lock_init(&p->tcfc_lock);
89819dc0 250 INIT_HLIST_NODE(&p->tcfc_head);
ddafd34f 251 p->tcfc_index = index ? index : tcf_hash_new_index(hinfo);
e9ce1cd3
DM
252 p->tcfc_tm.install = jiffies;
253 p->tcfc_tm.lastuse = jiffies;
0e991ec6 254 if (est) {
22e0f8b9
JF
255 int err = gen_new_estimator(&p->tcfc_bstats, NULL,
256 &p->tcfc_rate_est,
0e991ec6
SH
257 &p->tcfc_lock, est);
258 if (err) {
259 kfree(p);
86062033 260 return err;
0e991ec6
SH
261 }
262 }
263
e9ce1cd3 264 a->priv = (void *) p;
86062033 265 return 0;
e9ce1cd3
DM
266}
267EXPORT_SYMBOL(tcf_hash_create);
268
86062033 269void tcf_hash_insert(struct tc_action *a)
e9ce1cd3 270{
86062033
WC
271 struct tcf_common *p = a->priv;
272 struct tcf_hashinfo *hinfo = a->ops->hinfo;
e9ce1cd3
DM
273 unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask);
274
89819dc0
WC
275 spin_lock_bh(&hinfo->lock);
276 hlist_add_head(&p->tcfc_head, &hinfo->htab[h]);
277 spin_unlock_bh(&hinfo->lock);
e9ce1cd3
DM
278}
279EXPORT_SYMBOL(tcf_hash_insert);
1da177e4 280
1f747c26 281static LIST_HEAD(act_base);
1da177e4
LT
282static DEFINE_RWLOCK(act_mod_lock);
283
4f1e9d89 284int tcf_register_action(struct tc_action_ops *act, unsigned int mask)
1da177e4 285{
1f747c26 286 struct tc_action_ops *a;
4f1e9d89 287 int err;
1da177e4 288
a5b5c958
WC
289 /* Must supply act, dump and init */
290 if (!act->act || !act->dump || !act->init)
76c82d7a
JHS
291 return -EINVAL;
292
382ca8a1 293 /* Supply defaults */
63ef6174
JHS
294 if (!act->lookup)
295 act->lookup = tcf_hash_search;
382ca8a1
JHS
296 if (!act->walk)
297 act->walk = tcf_generic_walker;
63ef6174 298
4f1e9d89
WC
299 act->hinfo = kmalloc(sizeof(struct tcf_hashinfo), GFP_KERNEL);
300 if (!act->hinfo)
301 return -ENOMEM;
302 err = tcf_hashinfo_init(act->hinfo, mask);
303 if (err) {
304 kfree(act->hinfo);
305 return err;
306 }
307
1da177e4 308 write_lock(&act_mod_lock);
1f747c26 309 list_for_each_entry(a, &act_base, head) {
1da177e4
LT
310 if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
311 write_unlock(&act_mod_lock);
4f1e9d89
WC
312 tcf_hashinfo_destroy(act->hinfo);
313 kfree(act->hinfo);
1da177e4
LT
314 return -EEXIST;
315 }
316 }
1f747c26 317 list_add_tail(&act->head, &act_base);
1da177e4
LT
318 write_unlock(&act_mod_lock);
319 return 0;
320}
62e3ba1b 321EXPORT_SYMBOL(tcf_register_action);
1da177e4
LT
322
323int tcf_unregister_action(struct tc_action_ops *act)
324{
1f747c26 325 struct tc_action_ops *a;
1da177e4
LT
326 int err = -ENOENT;
327
328 write_lock(&act_mod_lock);
a792866a
ED
329 list_for_each_entry(a, &act_base, head) {
330 if (a == act) {
331 list_del(&act->head);
4f1e9d89
WC
332 tcf_hashinfo_destroy(act->hinfo);
333 kfree(act->hinfo);
a792866a 334 err = 0;
1da177e4 335 break;
a792866a 336 }
1da177e4
LT
337 }
338 write_unlock(&act_mod_lock);
339 return err;
340}
62e3ba1b 341EXPORT_SYMBOL(tcf_unregister_action);
1da177e4
LT
342
343/* lookup by name */
344static struct tc_action_ops *tc_lookup_action_n(char *kind)
345{
a792866a 346 struct tc_action_ops *a, *res = NULL;
1da177e4
LT
347
348 if (kind) {
349 read_lock(&act_mod_lock);
1f747c26 350 list_for_each_entry(a, &act_base, head) {
1da177e4 351 if (strcmp(kind, a->kind) == 0) {
a792866a
ED
352 if (try_module_get(a->owner))
353 res = a;
1da177e4
LT
354 break;
355 }
356 }
357 read_unlock(&act_mod_lock);
358 }
a792866a 359 return res;
1da177e4
LT
360}
361
7ba699c6
PM
362/* lookup by nlattr */
363static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
1da177e4 364{
a792866a 365 struct tc_action_ops *a, *res = NULL;
1da177e4
LT
366
367 if (kind) {
368 read_lock(&act_mod_lock);
1f747c26 369 list_for_each_entry(a, &act_base, head) {
7ba699c6 370 if (nla_strcmp(kind, a->kind) == 0) {
a792866a
ED
371 if (try_module_get(a->owner))
372 res = a;
1da177e4
LT
373 break;
374 }
375 }
376 read_unlock(&act_mod_lock);
377 }
a792866a 378 return res;
1da177e4 379}
1da177e4 380
33be6271 381int tcf_action_exec(struct sk_buff *skb, const struct list_head *actions,
10297b99 382 struct tcf_result *res)
1da177e4 383{
dc7f9f6e 384 const struct tc_action *a;
1da177e4
LT
385 int ret = -1;
386
387 if (skb->tc_verd & TC_NCLS) {
388 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
1da177e4
LT
389 ret = TC_ACT_OK;
390 goto exec_done;
391 }
33be6271 392 list_for_each_entry(a, actions, list) {
1da177e4 393repeat:
63acd680 394 ret = a->ops->act(skb, a, res);
63acd680
JHS
395 if (ret == TC_ACT_REPEAT)
396 goto repeat; /* we need a ttl - JHS */
397 if (ret != TC_ACT_PIPE)
398 goto exec_done;
1da177e4
LT
399 }
400exec_done:
1da177e4
LT
401 return ret;
402}
62e3ba1b 403EXPORT_SYMBOL(tcf_action_exec);
1da177e4 404
55334a5d 405int tcf_action_destroy(struct list_head *actions, int bind)
1da177e4 406{
33be6271 407 struct tc_action *a, *tmp;
55334a5d 408 int ret = 0;
1da177e4 409
33be6271 410 list_for_each_entry_safe(a, tmp, actions, list) {
55334a5d
WC
411 ret = tcf_hash_release(a, bind);
412 if (ret == ACT_P_DELETED)
63acd680 413 module_put(a->ops->owner);
55334a5d
WC
414 else if (ret < 0)
415 return ret;
63acd680
JHS
416 list_del(&a->list);
417 kfree(a);
1da177e4 418 }
55334a5d 419 return ret;
1da177e4
LT
420}
421
422int
423tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
424{
1da177e4
LT
425 return a->ops->dump(skb, a, bind, ref);
426}
427
428int
429tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
430{
431 int err = -EINVAL;
27a884dc 432 unsigned char *b = skb_tail_pointer(skb);
4b3550ef 433 struct nlattr *nest;
1da177e4 434
1b34ec43
DM
435 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
436 goto nla_put_failure;
1da177e4 437 if (tcf_action_copy_stats(skb, a, 0))
7ba699c6 438 goto nla_put_failure;
4b3550ef
PM
439 nest = nla_nest_start(skb, TCA_OPTIONS);
440 if (nest == NULL)
441 goto nla_put_failure;
cc7ec456
ED
442 err = tcf_action_dump_old(skb, a, bind, ref);
443 if (err > 0) {
4b3550ef 444 nla_nest_end(skb, nest);
1da177e4
LT
445 return err;
446 }
447
7ba699c6 448nla_put_failure:
dc5fc579 449 nlmsg_trim(skb, b);
1da177e4
LT
450 return -1;
451}
62e3ba1b 452EXPORT_SYMBOL(tcf_action_dump_1);
1da177e4
LT
453
454int
33be6271 455tcf_action_dump(struct sk_buff *skb, struct list_head *actions, int bind, int ref)
1da177e4
LT
456{
457 struct tc_action *a;
458 int err = -EINVAL;
4b3550ef 459 struct nlattr *nest;
1da177e4 460
33be6271 461 list_for_each_entry(a, actions, list) {
4b3550ef
PM
462 nest = nla_nest_start(skb, a->order);
463 if (nest == NULL)
464 goto nla_put_failure;
1da177e4
LT
465 err = tcf_action_dump_1(skb, a, bind, ref);
466 if (err < 0)
4fe683f5 467 goto errout;
4b3550ef 468 nla_nest_end(skb, nest);
1da177e4
LT
469 }
470
471 return 0;
472
7ba699c6 473nla_put_failure:
4fe683f5
TG
474 err = -EINVAL;
475errout:
4b3550ef 476 nla_nest_cancel(skb, nest);
4fe683f5 477 return err;
1da177e4
LT
478}
479
c1b52739
BL
480struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
481 struct nlattr *est, char *name, int ovr,
482 int bind)
1da177e4
LT
483{
484 struct tc_action *a;
485 struct tc_action_ops *a_o;
486 char act_name[IFNAMSIZ];
cc7ec456 487 struct nlattr *tb[TCA_ACT_MAX + 1];
7ba699c6 488 struct nlattr *kind;
ab27cfb8 489 int err;
1da177e4 490
1da177e4 491 if (name == NULL) {
cee63723
PM
492 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
493 if (err < 0)
1da177e4 494 goto err_out;
cee63723 495 err = -EINVAL;
7ba699c6 496 kind = tb[TCA_ACT_KIND];
1da177e4
LT
497 if (kind == NULL)
498 goto err_out;
7ba699c6 499 if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
1da177e4
LT
500 goto err_out;
501 } else {
cee63723 502 err = -EINVAL;
1da177e4
LT
503 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
504 goto err_out;
505 }
506
507 a_o = tc_lookup_action_n(act_name);
508 if (a_o == NULL) {
95a5afca 509#ifdef CONFIG_MODULES
1da177e4 510 rtnl_unlock();
4bba3925 511 request_module("act_%s", act_name);
1da177e4
LT
512 rtnl_lock();
513
514 a_o = tc_lookup_action_n(act_name);
515
516 /* We dropped the RTNL semaphore in order to
517 * perform the module load. So, even if we
518 * succeeded in loading the module we have to
519 * tell the caller to replay the request. We
520 * indicate this using -EAGAIN.
521 */
522 if (a_o != NULL) {
ab27cfb8 523 err = -EAGAIN;
1da177e4
LT
524 goto err_mod;
525 }
526#endif
ab27cfb8 527 err = -ENOENT;
1da177e4
LT
528 goto err_out;
529 }
530
ab27cfb8 531 err = -ENOMEM;
0da974f4 532 a = kzalloc(sizeof(*a), GFP_KERNEL);
1da177e4
LT
533 if (a == NULL)
534 goto err_mod;
1da177e4 535
c779f7af 536 a->ops = a_o;
33be6271 537 INIT_LIST_HEAD(&a->list);
1da177e4
LT
538 /* backward compatibility for policer */
539 if (name == NULL)
c1b52739 540 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, a, ovr, bind);
1da177e4 541 else
c1b52739 542 err = a_o->init(net, nla, est, a, ovr, bind);
ab27cfb8 543 if (err < 0)
1da177e4
LT
544 goto err_free;
545
546 /* module count goes up only when brand new policy is created
cc7ec456
ED
547 * if it exists and is only bound to in a_o->init() then
548 * ACT_P_CREATED is not returned (a zero is).
549 */
ab27cfb8 550 if (err != ACT_P_CREATED)
1da177e4 551 module_put(a_o->owner);
1da177e4 552
1da177e4
LT
553 return a;
554
555err_free:
556 kfree(a);
557err_mod:
558 module_put(a_o->owner);
559err_out:
ab27cfb8 560 return ERR_PTR(err);
1da177e4
LT
561}
562
33be6271 563int tcf_action_init(struct net *net, struct nlattr *nla,
c1b52739 564 struct nlattr *est, char *name, int ovr,
33be6271 565 int bind, struct list_head *actions)
1da177e4 566{
cc7ec456 567 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
33be6271 568 struct tc_action *act;
cee63723 569 int err;
1da177e4
LT
570 int i;
571
cee63723
PM
572 err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
573 if (err < 0)
33be6271 574 return err;
1da177e4 575
7ba699c6 576 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
c1b52739 577 act = tcf_action_init_1(net, tb[i], est, name, ovr, bind);
33be6271
WC
578 if (IS_ERR(act)) {
579 err = PTR_ERR(act);
1da177e4 580 goto err;
33be6271 581 }
7ba699c6 582 act->order = i;
33be6271 583 list_add_tail(&act->list, actions);
1da177e4 584 }
33be6271 585 return 0;
1da177e4
LT
586
587err:
33be6271
WC
588 tcf_action_destroy(actions, bind);
589 return err;
1da177e4
LT
590}
591
592int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a,
593 int compat_mode)
594{
595 int err = 0;
596 struct gnet_dump d;
7eb8896d 597 struct tcf_common *p = a->priv;
10297b99 598
7eb8896d 599 if (p == NULL)
1da177e4
LT
600 goto errout;
601
602 /* compat_mode being true specifies a call that is supposed
06fe9fb4 603 * to add additional backward compatibility statistic TLVs.
1da177e4
LT
604 */
605 if (compat_mode) {
606 if (a->type == TCA_OLD_COMPAT)
607 err = gnet_stats_start_copy_compat(skb, 0,
7eb8896d 608 TCA_STATS, TCA_XSTATS, &p->tcfc_lock, &d);
1da177e4
LT
609 else
610 return 0;
611 } else
612 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
7eb8896d 613 &p->tcfc_lock, &d);
1da177e4
LT
614
615 if (err < 0)
616 goto errout;
617
22e0f8b9 618 if (gnet_stats_copy_basic(&d, NULL, &p->tcfc_bstats) < 0 ||
7eb8896d
WC
619 gnet_stats_copy_rate_est(&d, &p->tcfc_bstats,
620 &p->tcfc_rate_est) < 0 ||
b0ab6f92 621 gnet_stats_copy_queue(&d, NULL,
64015853
JF
622 &p->tcfc_qstats,
623 p->tcfc_qstats.qlen) < 0)
1da177e4
LT
624 goto errout;
625
626 if (gnet_stats_finish_copy(&d) < 0)
627 goto errout;
628
629 return 0;
630
631errout:
632 return -1;
633}
634
635static int
33be6271 636tca_get_fill(struct sk_buff *skb, struct list_head *actions, u32 portid, u32 seq,
10297b99 637 u16 flags, int event, int bind, int ref)
1da177e4
LT
638{
639 struct tcamsg *t;
640 struct nlmsghdr *nlh;
27a884dc 641 unsigned char *b = skb_tail_pointer(skb);
4b3550ef 642 struct nlattr *nest;
1da177e4 643
15e47304 644 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
8b00a53c
DM
645 if (!nlh)
646 goto out_nlmsg_trim;
647 t = nlmsg_data(nlh);
1da177e4 648 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
649 t->tca__pad1 = 0;
650 t->tca__pad2 = 0;
10297b99 651
4b3550ef
PM
652 nest = nla_nest_start(skb, TCA_ACT_TAB);
653 if (nest == NULL)
8b00a53c 654 goto out_nlmsg_trim;
1da177e4 655
33be6271 656 if (tcf_action_dump(skb, actions, bind, ref) < 0)
8b00a53c 657 goto out_nlmsg_trim;
1da177e4 658
4b3550ef 659 nla_nest_end(skb, nest);
10297b99 660
27a884dc 661 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4
LT
662 return skb->len;
663
8b00a53c 664out_nlmsg_trim:
dc5fc579 665 nlmsg_trim(skb, b);
1da177e4
LT
666 return -1;
667}
668
669static int
15e47304 670act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
33be6271 671 struct list_head *actions, int event)
1da177e4
LT
672{
673 struct sk_buff *skb;
1da177e4
LT
674
675 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
676 if (!skb)
677 return -ENOBUFS;
33be6271 678 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event, 0, 0) <= 0) {
1da177e4
LT
679 kfree_skb(skb);
680 return -EINVAL;
681 }
2942e900 682
15e47304 683 return rtnl_unicast(skb, net, portid);
1da177e4
LT
684}
685
03701d6e
WC
686static struct tc_action *create_a(int i)
687{
688 struct tc_action *act;
689
690 act = kzalloc(sizeof(*act), GFP_KERNEL);
691 if (act == NULL) {
692 pr_debug("create_a: failed to alloc!\n");
693 return NULL;
694 }
695 act->order = i;
696 INIT_LIST_HEAD(&act->list);
697 return act;
698}
699
1da177e4 700static struct tc_action *
15e47304 701tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 portid)
1da177e4 702{
cc7ec456 703 struct nlattr *tb[TCA_ACT_MAX + 1];
1da177e4
LT
704 struct tc_action *a;
705 int index;
ab27cfb8 706 int err;
1da177e4 707
cee63723
PM
708 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
709 if (err < 0)
ab27cfb8 710 goto err_out;
1da177e4 711
cee63723 712 err = -EINVAL;
7ba699c6
PM
713 if (tb[TCA_ACT_INDEX] == NULL ||
714 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
ab27cfb8 715 goto err_out;
1587bac4 716 index = nla_get_u32(tb[TCA_ACT_INDEX]);
1da177e4 717
ab27cfb8 718 err = -ENOMEM;
03701d6e 719 a = create_a(0);
1da177e4 720 if (a == NULL)
ab27cfb8 721 goto err_out;
1da177e4 722
ab27cfb8 723 err = -EINVAL;
7ba699c6 724 a->ops = tc_lookup_action(tb[TCA_ACT_KIND]);
63acd680 725 if (a->ops == NULL) /* could happen in batch of actions */
1da177e4 726 goto err_free;
ab27cfb8 727 err = -ENOENT;
1da177e4
LT
728 if (a->ops->lookup(a, index) == 0)
729 goto err_mod;
730
731 module_put(a->ops->owner);
1da177e4 732 return a;
ab27cfb8 733
1da177e4
LT
734err_mod:
735 module_put(a->ops->owner);
736err_free:
737 kfree(a);
ab27cfb8
PM
738err_out:
739 return ERR_PTR(err);
1da177e4
LT
740}
741
33be6271 742static void cleanup_a(struct list_head *actions)
1da177e4 743{
33be6271 744 struct tc_action *a, *tmp;
1da177e4 745
33be6271
WC
746 list_for_each_entry_safe(a, tmp, actions, list) {
747 list_del(&a->list);
1da177e4
LT
748 kfree(a);
749 }
750}
751
7316ae88 752static int tca_action_flush(struct net *net, struct nlattr *nla,
15e47304 753 struct nlmsghdr *n, u32 portid)
1da177e4
LT
754{
755 struct sk_buff *skb;
756 unsigned char *b;
757 struct nlmsghdr *nlh;
758 struct tcamsg *t;
759 struct netlink_callback dcb;
4b3550ef 760 struct nlattr *nest;
cc7ec456 761 struct nlattr *tb[TCA_ACT_MAX + 1];
7ba699c6 762 struct nlattr *kind;
03701d6e 763 struct tc_action a;
36723873 764 int err = -ENOMEM;
1da177e4 765
1da177e4
LT
766 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
767 if (!skb) {
6ff9c364 768 pr_debug("tca_action_flush: failed skb alloc\n");
36723873 769 return err;
1da177e4
LT
770 }
771
27a884dc 772 b = skb_tail_pointer(skb);
1da177e4 773
cee63723
PM
774 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
775 if (err < 0)
1da177e4
LT
776 goto err_out;
777
cee63723 778 err = -EINVAL;
7ba699c6 779 kind = tb[TCA_ACT_KIND];
03701d6e
WC
780 memset(&a, 0, sizeof(struct tc_action));
781 INIT_LIST_HEAD(&a.list);
782 a.ops = tc_lookup_action(kind);
783 if (a.ops == NULL) /*some idjot trying to flush unknown action */
1da177e4
LT
784 goto err_out;
785
15e47304 786 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t), 0);
8b00a53c
DM
787 if (!nlh)
788 goto out_module_put;
789 t = nlmsg_data(nlh);
1da177e4 790 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
791 t->tca__pad1 = 0;
792 t->tca__pad2 = 0;
1da177e4 793
4b3550ef
PM
794 nest = nla_nest_start(skb, TCA_ACT_TAB);
795 if (nest == NULL)
8b00a53c 796 goto out_module_put;
1da177e4 797
03701d6e 798 err = a.ops->walk(skb, &dcb, RTM_DELACTION, &a);
1da177e4 799 if (err < 0)
8b00a53c 800 goto out_module_put;
f97017cd
JHS
801 if (err == 0)
802 goto noflush_out;
1da177e4 803
4b3550ef 804 nla_nest_end(skb, nest);
1da177e4 805
27a884dc 806 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1da177e4 807 nlh->nlmsg_flags |= NLM_F_ROOT;
03701d6e 808 module_put(a.ops->owner);
15e47304 809 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
cc7ec456 810 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
811 if (err > 0)
812 return 0;
813
814 return err;
815
8b00a53c 816out_module_put:
03701d6e 817 module_put(a.ops->owner);
1da177e4 818err_out:
f97017cd 819noflush_out:
1da177e4 820 kfree_skb(skb);
1da177e4
LT
821 return err;
822}
823
a56e1953
WC
824static int
825tcf_del_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
826 u32 portid)
827{
828 int ret;
829 struct sk_buff *skb;
830
831 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
832 if (!skb)
833 return -ENOBUFS;
834
835 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
836 0, 1) <= 0) {
837 kfree_skb(skb);
838 return -EINVAL;
839 }
840
841 /* now do the delete */
55334a5d
WC
842 ret = tcf_action_destroy(actions, 0);
843 if (ret < 0) {
844 kfree_skb(skb);
845 return ret;
846 }
a56e1953
WC
847
848 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
849 n->nlmsg_flags & NLM_F_ECHO);
850 if (ret > 0)
851 return 0;
852 return ret;
853}
854
1da177e4 855static int
7316ae88 856tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
15e47304 857 u32 portid, int event)
1da177e4 858{
cee63723 859 int i, ret;
cc7ec456 860 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
33be6271
WC
861 struct tc_action *act;
862 LIST_HEAD(actions);
1da177e4 863
cee63723
PM
864 ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
865 if (ret < 0)
866 return ret;
1da177e4 867
cc7ec456 868 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
f97017cd 869 if (tb[1] != NULL)
15e47304 870 return tca_action_flush(net, tb[1], n, portid);
f97017cd
JHS
871 else
872 return -EINVAL;
1da177e4
LT
873 }
874
7ba699c6 875 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
15e47304 876 act = tcf_action_get_1(tb[i], n, portid);
ab27cfb8
PM
877 if (IS_ERR(act)) {
878 ret = PTR_ERR(act);
1da177e4 879 goto err;
ab27cfb8 880 }
7ba699c6 881 act->order = i;
33be6271 882 list_add_tail(&act->list, &actions);
1da177e4
LT
883 }
884
885 if (event == RTM_GETACTION)
33be6271 886 ret = act_get_notify(net, portid, n, &actions, event);
1da177e4 887 else { /* delete */
a56e1953
WC
888 ret = tcf_del_notify(net, n, &actions, portid);
889 if (ret)
1da177e4 890 goto err;
1da177e4
LT
891 return ret;
892 }
893err:
33be6271 894 cleanup_a(&actions);
1da177e4
LT
895 return ret;
896}
897
a56e1953
WC
898static int
899tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
900 u32 portid)
1da177e4 901{
1da177e4 902 struct sk_buff *skb;
1da177e4
LT
903 int err = 0;
904
905 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
906 if (!skb)
907 return -ENOBUFS;
908
a56e1953
WC
909 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
910 RTM_NEWACTION, 0, 0) <= 0) {
911 kfree_skb(skb);
912 return -EINVAL;
913 }
10297b99 914
a56e1953
WC
915 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
916 n->nlmsg_flags & NLM_F_ECHO);
1da177e4
LT
917 if (err > 0)
918 err = 0;
919 return err;
1da177e4
LT
920}
921
1da177e4 922static int
7316ae88 923tcf_action_add(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
15e47304 924 u32 portid, int ovr)
1da177e4
LT
925{
926 int ret = 0;
33be6271 927 LIST_HEAD(actions);
1da177e4 928
33be6271
WC
929 ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
930 if (ret)
ab27cfb8 931 goto done;
1da177e4
LT
932
933 /* dump then free all the actions after update; inserted policy
934 * stays intact
cc7ec456 935 */
a56e1953 936 ret = tcf_add_notify(net, n, &actions, portid);
33be6271 937 cleanup_a(&actions);
1da177e4
LT
938done:
939 return ret;
940}
941
661d2967 942static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n)
1da177e4 943{
3b1e0a65 944 struct net *net = sock_net(skb->sk);
7ba699c6 945 struct nlattr *tca[TCA_ACT_MAX + 1];
15e47304 946 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
1da177e4
LT
947 int ret = 0, ovr = 0;
948
90f62cf3 949 if ((n->nlmsg_type != RTM_GETACTION) && !netlink_capable(skb, CAP_NET_ADMIN))
dfc47ef8
EB
950 return -EPERM;
951
7ba699c6
PM
952 ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
953 if (ret < 0)
954 return ret;
955
956 if (tca[TCA_ACT_TAB] == NULL) {
6ff9c364 957 pr_notice("tc_ctl_action: received NO action attribs\n");
1da177e4
LT
958 return -EINVAL;
959 }
960
cc7ec456 961 /* n->nlmsg_flags & NLM_F_CREATE */
1da177e4
LT
962 switch (n->nlmsg_type) {
963 case RTM_NEWACTION:
964 /* we are going to assume all other flags
25985edc 965 * imply create only if it doesn't exist
1da177e4
LT
966 * Note that CREATE | EXCL implies that
967 * but since we want avoid ambiguity (eg when flags
968 * is zero) then just set this
969 */
cc7ec456 970 if (n->nlmsg_flags & NLM_F_REPLACE)
1da177e4
LT
971 ovr = 1;
972replay:
15e47304 973 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
1da177e4
LT
974 if (ret == -EAGAIN)
975 goto replay;
976 break;
977 case RTM_DELACTION:
7316ae88 978 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
15e47304 979 portid, RTM_DELACTION);
1da177e4
LT
980 break;
981 case RTM_GETACTION:
7316ae88 982 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
15e47304 983 portid, RTM_GETACTION);
1da177e4
LT
984 break;
985 default:
986 BUG();
987 }
988
989 return ret;
990}
991
7ba699c6 992static struct nlattr *
3a6c2b41 993find_dump_kind(const struct nlmsghdr *n)
1da177e4 994{
cc7ec456 995 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
7ba699c6
PM
996 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
997 struct nlattr *nla[TCAA_MAX + 1];
998 struct nlattr *kind;
1da177e4 999
c96c9471 1000 if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
1da177e4 1001 return NULL;
7ba699c6 1002 tb1 = nla[TCA_ACT_TAB];
1da177e4
LT
1003 if (tb1 == NULL)
1004 return NULL;
1005
7ba699c6
PM
1006 if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
1007 NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
1da177e4 1008 return NULL;
1da177e4 1009
6d834e04
PM
1010 if (tb[1] == NULL)
1011 return NULL;
1012 if (nla_parse(tb2, TCA_ACT_MAX, nla_data(tb[1]),
1013 nla_len(tb[1]), NULL) < 0)
1da177e4 1014 return NULL;
7ba699c6 1015 kind = tb2[TCA_ACT_KIND];
1da177e4 1016
26dab893 1017 return kind;
1da177e4
LT
1018}
1019
1020static int
1021tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
1022{
1023 struct nlmsghdr *nlh;
27a884dc 1024 unsigned char *b = skb_tail_pointer(skb);
4b3550ef 1025 struct nlattr *nest;
1da177e4
LT
1026 struct tc_action_ops *a_o;
1027 struct tc_action a;
1028 int ret = 0;
8b00a53c 1029 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
7ba699c6 1030 struct nlattr *kind = find_dump_kind(cb->nlh);
1da177e4
LT
1031
1032 if (kind == NULL) {
6ff9c364 1033 pr_info("tc_dump_action: action bad kind\n");
1da177e4
LT
1034 return 0;
1035 }
1036
26dab893 1037 a_o = tc_lookup_action(kind);
cc7ec456 1038 if (a_o == NULL)
1da177e4 1039 return 0;
1da177e4
LT
1040
1041 memset(&a, 0, sizeof(struct tc_action));
1042 a.ops = a_o;
1043
15e47304 1044 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
8b00a53c
DM
1045 cb->nlh->nlmsg_type, sizeof(*t), 0);
1046 if (!nlh)
1047 goto out_module_put;
1048 t = nlmsg_data(nlh);
1da177e4 1049 t->tca_family = AF_UNSPEC;
9ef1d4c7
PM
1050 t->tca__pad1 = 0;
1051 t->tca__pad2 = 0;
1da177e4 1052
4b3550ef
PM
1053 nest = nla_nest_start(skb, TCA_ACT_TAB);
1054 if (nest == NULL)
8b00a53c 1055 goto out_module_put;
1da177e4
LT
1056
1057 ret = a_o->walk(skb, cb, RTM_GETACTION, &a);
1058 if (ret < 0)
8b00a53c 1059 goto out_module_put;
1da177e4
LT
1060
1061 if (ret > 0) {
4b3550ef 1062 nla_nest_end(skb, nest);
1da177e4
LT
1063 ret = skb->len;
1064 } else
4b3550ef 1065 nla_nest_cancel(skb, nest);
1da177e4 1066
27a884dc 1067 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
15e47304 1068 if (NETLINK_CB(cb->skb).portid && ret)
1da177e4
LT
1069 nlh->nlmsg_flags |= NLM_F_MULTI;
1070 module_put(a_o->owner);
1071 return skb->len;
1072
8b00a53c 1073out_module_put:
1da177e4 1074 module_put(a_o->owner);
dc5fc579 1075 nlmsg_trim(skb, b);
1da177e4
LT
1076 return skb->len;
1077}
1078
1079static int __init tc_action_init(void)
1080{
c7ac8679
GR
1081 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, NULL);
1082 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, NULL);
1083 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
1084 NULL);
1da177e4 1085
1da177e4
LT
1086 return 0;
1087}
1088
1089subsys_initcall(tc_action_init);