ALSA: hda - Don't override global PCM hw info flag
[linux/fpc-iii.git] / net / sched / act_api.c
blob67adb4ecded2c3fca60c8960c9dcf890d620f72f
1 /*
2 * net/sched/act_api.c Packet action API.
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.
9 * Author: Jamal Hadi Salim
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/errno.h>
18 #include <linux/slab.h>
19 #include <linux/skbuff.h>
20 #include <linux/init.h>
21 #include <linux/kmod.h>
22 #include <linux/err.h>
23 #include <linux/module.h>
24 #include <net/net_namespace.h>
25 #include <net/sock.h>
26 #include <net/sch_generic.h>
27 #include <net/act_api.h>
28 #include <net/netlink.h>
30 static void free_tcf(struct rcu_head *head)
32 struct tc_action *p = container_of(head, struct tc_action, tcfa_rcu);
34 free_percpu(p->cpu_bstats);
35 free_percpu(p->cpu_qstats);
36 kfree(p);
39 static void tcf_hash_destroy(struct tcf_hashinfo *hinfo, struct tc_action *p)
41 spin_lock_bh(&hinfo->lock);
42 hlist_del(&p->tcfa_head);
43 spin_unlock_bh(&hinfo->lock);
44 gen_kill_estimator(&p->tcfa_bstats,
45 &p->tcfa_rate_est);
47 * gen_estimator est_timer() might access p->tcfa_lock
48 * or bstats, wait a RCU grace period before freeing p
50 call_rcu(&p->tcfa_rcu, free_tcf);
53 int __tcf_hash_release(struct tc_action *p, bool bind, bool strict)
55 int ret = 0;
57 if (p) {
58 if (bind)
59 p->tcfa_bindcnt--;
60 else if (strict && p->tcfa_bindcnt > 0)
61 return -EPERM;
63 p->tcfa_refcnt--;
64 if (p->tcfa_bindcnt <= 0 && p->tcfa_refcnt <= 0) {
65 if (p->ops->cleanup)
66 p->ops->cleanup(p, bind);
67 tcf_hash_destroy(p->hinfo, p);
68 ret = ACT_P_DELETED;
72 return ret;
74 EXPORT_SYMBOL(__tcf_hash_release);
76 static int tcf_dump_walker(struct tcf_hashinfo *hinfo, struct sk_buff *skb,
77 struct netlink_callback *cb)
79 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
80 struct nlattr *nest;
82 spin_lock_bh(&hinfo->lock);
84 s_i = cb->args[0];
86 for (i = 0; i < (hinfo->hmask + 1); i++) {
87 struct hlist_head *head;
88 struct tc_action *p;
90 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
92 hlist_for_each_entry_rcu(p, head, tcfa_head) {
93 index++;
94 if (index < s_i)
95 continue;
97 nest = nla_nest_start(skb, n_i);
98 if (nest == NULL) {
99 index--;
100 goto nla_put_failure;
102 err = tcf_action_dump_1(skb, p, 0, 0);
103 if (err < 0) {
104 index--;
105 nlmsg_trim(skb, nest);
106 goto done;
108 nla_nest_end(skb, nest);
109 n_i++;
110 if (n_i >= TCA_ACT_MAX_PRIO)
111 goto done;
114 done:
115 spin_unlock_bh(&hinfo->lock);
116 if (n_i)
117 cb->args[0] += n_i;
118 return n_i;
120 nla_put_failure:
121 nla_nest_cancel(skb, nest);
122 goto done;
125 static int tcf_del_walker(struct tcf_hashinfo *hinfo, struct sk_buff *skb,
126 const struct tc_action_ops *ops)
128 struct nlattr *nest;
129 int i = 0, n_i = 0;
130 int ret = -EINVAL;
132 nest = nla_nest_start(skb, 0);
133 if (nest == NULL)
134 goto nla_put_failure;
135 if (nla_put_string(skb, TCA_KIND, ops->kind))
136 goto nla_put_failure;
137 for (i = 0; i < (hinfo->hmask + 1); i++) {
138 struct hlist_head *head;
139 struct hlist_node *n;
140 struct tc_action *p;
142 head = &hinfo->htab[tcf_hash(i, hinfo->hmask)];
143 hlist_for_each_entry_safe(p, n, head, tcfa_head) {
144 ret = __tcf_hash_release(p, false, true);
145 if (ret == ACT_P_DELETED) {
146 module_put(ops->owner);
147 n_i++;
148 } else if (ret < 0)
149 goto nla_put_failure;
152 if (nla_put_u32(skb, TCA_FCNT, n_i))
153 goto nla_put_failure;
154 nla_nest_end(skb, nest);
156 return n_i;
157 nla_put_failure:
158 nla_nest_cancel(skb, nest);
159 return ret;
162 int tcf_generic_walker(struct tc_action_net *tn, struct sk_buff *skb,
163 struct netlink_callback *cb, int type,
164 const struct tc_action_ops *ops)
166 struct tcf_hashinfo *hinfo = tn->hinfo;
168 if (type == RTM_DELACTION) {
169 return tcf_del_walker(hinfo, skb, ops);
170 } else if (type == RTM_GETACTION) {
171 return tcf_dump_walker(hinfo, skb, cb);
172 } else {
173 WARN(1, "tcf_generic_walker: unknown action %d\n", type);
174 return -EINVAL;
177 EXPORT_SYMBOL(tcf_generic_walker);
179 static struct tc_action *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo)
181 struct tc_action *p = NULL;
182 struct hlist_head *head;
184 spin_lock_bh(&hinfo->lock);
185 head = &hinfo->htab[tcf_hash(index, hinfo->hmask)];
186 hlist_for_each_entry_rcu(p, head, tcfa_head)
187 if (p->tcfa_index == index)
188 break;
189 spin_unlock_bh(&hinfo->lock);
191 return p;
194 u32 tcf_hash_new_index(struct tc_action_net *tn)
196 struct tcf_hashinfo *hinfo = tn->hinfo;
197 u32 val = hinfo->index;
199 do {
200 if (++val == 0)
201 val = 1;
202 } while (tcf_hash_lookup(val, hinfo));
204 hinfo->index = val;
205 return val;
207 EXPORT_SYMBOL(tcf_hash_new_index);
209 int tcf_hash_search(struct tc_action_net *tn, struct tc_action **a, u32 index)
211 struct tcf_hashinfo *hinfo = tn->hinfo;
212 struct tc_action *p = tcf_hash_lookup(index, hinfo);
214 if (p) {
215 *a = p;
216 return 1;
218 return 0;
220 EXPORT_SYMBOL(tcf_hash_search);
222 bool tcf_hash_check(struct tc_action_net *tn, u32 index, struct tc_action **a,
223 int bind)
225 struct tcf_hashinfo *hinfo = tn->hinfo;
226 struct tc_action *p = NULL;
228 if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) {
229 if (bind)
230 p->tcfa_bindcnt++;
231 p->tcfa_refcnt++;
232 *a = p;
233 return true;
235 return false;
237 EXPORT_SYMBOL(tcf_hash_check);
239 void tcf_hash_cleanup(struct tc_action *a, struct nlattr *est)
241 if (est)
242 gen_kill_estimator(&a->tcfa_bstats,
243 &a->tcfa_rate_est);
244 call_rcu(&a->tcfa_rcu, free_tcf);
246 EXPORT_SYMBOL(tcf_hash_cleanup);
248 int tcf_hash_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
249 struct tc_action **a, const struct tc_action_ops *ops,
250 int bind, bool cpustats)
252 struct tc_action *p = kzalloc(ops->size, GFP_KERNEL);
253 struct tcf_hashinfo *hinfo = tn->hinfo;
254 int err = -ENOMEM;
256 if (unlikely(!p))
257 return -ENOMEM;
258 p->tcfa_refcnt = 1;
259 if (bind)
260 p->tcfa_bindcnt = 1;
262 if (cpustats) {
263 p->cpu_bstats = netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu);
264 if (!p->cpu_bstats) {
265 err1:
266 kfree(p);
267 return err;
269 p->cpu_qstats = alloc_percpu(struct gnet_stats_queue);
270 if (!p->cpu_qstats) {
271 err2:
272 free_percpu(p->cpu_bstats);
273 goto err1;
276 spin_lock_init(&p->tcfa_lock);
277 INIT_HLIST_NODE(&p->tcfa_head);
278 p->tcfa_index = index ? index : tcf_hash_new_index(tn);
279 p->tcfa_tm.install = jiffies;
280 p->tcfa_tm.lastuse = jiffies;
281 p->tcfa_tm.firstuse = 0;
282 if (est) {
283 err = gen_new_estimator(&p->tcfa_bstats, p->cpu_bstats,
284 &p->tcfa_rate_est,
285 &p->tcfa_lock, NULL, est);
286 if (err) {
287 free_percpu(p->cpu_qstats);
288 goto err2;
292 p->hinfo = hinfo;
293 p->ops = ops;
294 INIT_LIST_HEAD(&p->list);
295 *a = p;
296 return 0;
298 EXPORT_SYMBOL(tcf_hash_create);
300 void tcf_hash_insert(struct tc_action_net *tn, struct tc_action *a)
302 struct tcf_hashinfo *hinfo = tn->hinfo;
303 unsigned int h = tcf_hash(a->tcfa_index, hinfo->hmask);
305 spin_lock_bh(&hinfo->lock);
306 hlist_add_head(&a->tcfa_head, &hinfo->htab[h]);
307 spin_unlock_bh(&hinfo->lock);
309 EXPORT_SYMBOL(tcf_hash_insert);
311 void tcf_hashinfo_destroy(const struct tc_action_ops *ops,
312 struct tcf_hashinfo *hinfo)
314 int i;
316 for (i = 0; i < hinfo->hmask + 1; i++) {
317 struct tc_action *p;
318 struct hlist_node *n;
320 hlist_for_each_entry_safe(p, n, &hinfo->htab[i], tcfa_head) {
321 int ret;
323 ret = __tcf_hash_release(p, false, true);
324 if (ret == ACT_P_DELETED)
325 module_put(ops->owner);
326 else if (ret < 0)
327 return;
330 kfree(hinfo->htab);
332 EXPORT_SYMBOL(tcf_hashinfo_destroy);
334 static LIST_HEAD(act_base);
335 static DEFINE_RWLOCK(act_mod_lock);
337 int tcf_register_action(struct tc_action_ops *act,
338 struct pernet_operations *ops)
340 struct tc_action_ops *a;
341 int ret;
343 if (!act->act || !act->dump || !act->init || !act->walk || !act->lookup)
344 return -EINVAL;
346 /* We have to register pernet ops before making the action ops visible,
347 * otherwise tcf_action_init_1() could get a partially initialized
348 * netns.
350 ret = register_pernet_subsys(ops);
351 if (ret)
352 return ret;
354 write_lock(&act_mod_lock);
355 list_for_each_entry(a, &act_base, head) {
356 if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) {
357 write_unlock(&act_mod_lock);
358 unregister_pernet_subsys(ops);
359 return -EEXIST;
362 list_add_tail(&act->head, &act_base);
363 write_unlock(&act_mod_lock);
365 return 0;
367 EXPORT_SYMBOL(tcf_register_action);
369 int tcf_unregister_action(struct tc_action_ops *act,
370 struct pernet_operations *ops)
372 struct tc_action_ops *a;
373 int err = -ENOENT;
375 write_lock(&act_mod_lock);
376 list_for_each_entry(a, &act_base, head) {
377 if (a == act) {
378 list_del(&act->head);
379 err = 0;
380 break;
383 write_unlock(&act_mod_lock);
384 if (!err)
385 unregister_pernet_subsys(ops);
386 return err;
388 EXPORT_SYMBOL(tcf_unregister_action);
390 /* lookup by name */
391 static struct tc_action_ops *tc_lookup_action_n(char *kind)
393 struct tc_action_ops *a, *res = NULL;
395 if (kind) {
396 read_lock(&act_mod_lock);
397 list_for_each_entry(a, &act_base, head) {
398 if (strcmp(kind, a->kind) == 0) {
399 if (try_module_get(a->owner))
400 res = a;
401 break;
404 read_unlock(&act_mod_lock);
406 return res;
409 /* lookup by nlattr */
410 static struct tc_action_ops *tc_lookup_action(struct nlattr *kind)
412 struct tc_action_ops *a, *res = NULL;
414 if (kind) {
415 read_lock(&act_mod_lock);
416 list_for_each_entry(a, &act_base, head) {
417 if (nla_strcmp(kind, a->kind) == 0) {
418 if (try_module_get(a->owner))
419 res = a;
420 break;
423 read_unlock(&act_mod_lock);
425 return res;
428 int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
429 int nr_actions, struct tcf_result *res)
431 int ret = -1, i;
433 if (skb->tc_verd & TC_NCLS) {
434 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
435 ret = TC_ACT_OK;
436 goto exec_done;
438 for (i = 0; i < nr_actions; i++) {
439 const struct tc_action *a = actions[i];
441 repeat:
442 ret = a->ops->act(skb, a, res);
443 if (ret == TC_ACT_REPEAT)
444 goto repeat; /* we need a ttl - JHS */
445 if (ret != TC_ACT_PIPE)
446 goto exec_done;
448 exec_done:
449 return ret;
451 EXPORT_SYMBOL(tcf_action_exec);
453 int tcf_action_destroy(struct list_head *actions, int bind)
455 const struct tc_action_ops *ops;
456 struct tc_action *a, *tmp;
457 int ret = 0;
459 list_for_each_entry_safe(a, tmp, actions, list) {
460 ops = a->ops;
461 ret = __tcf_hash_release(a, bind, true);
462 if (ret == ACT_P_DELETED)
463 module_put(ops->owner);
464 else if (ret < 0)
465 return ret;
467 return ret;
471 tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
473 return a->ops->dump(skb, a, bind, ref);
477 tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
479 int err = -EINVAL;
480 unsigned char *b = skb_tail_pointer(skb);
481 struct nlattr *nest;
483 if (nla_put_string(skb, TCA_KIND, a->ops->kind))
484 goto nla_put_failure;
485 if (tcf_action_copy_stats(skb, a, 0))
486 goto nla_put_failure;
487 nest = nla_nest_start(skb, TCA_OPTIONS);
488 if (nest == NULL)
489 goto nla_put_failure;
490 err = tcf_action_dump_old(skb, a, bind, ref);
491 if (err > 0) {
492 nla_nest_end(skb, nest);
493 return err;
496 nla_put_failure:
497 nlmsg_trim(skb, b);
498 return -1;
500 EXPORT_SYMBOL(tcf_action_dump_1);
502 int tcf_action_dump(struct sk_buff *skb, struct list_head *actions,
503 int bind, int ref)
505 struct tc_action *a;
506 int err = -EINVAL;
507 struct nlattr *nest;
509 list_for_each_entry(a, actions, list) {
510 nest = nla_nest_start(skb, a->order);
511 if (nest == NULL)
512 goto nla_put_failure;
513 err = tcf_action_dump_1(skb, a, bind, ref);
514 if (err < 0)
515 goto errout;
516 nla_nest_end(skb, nest);
519 return 0;
521 nla_put_failure:
522 err = -EINVAL;
523 errout:
524 nla_nest_cancel(skb, nest);
525 return err;
528 struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
529 struct nlattr *est, char *name, int ovr,
530 int bind)
532 struct tc_action *a;
533 struct tc_action_ops *a_o;
534 char act_name[IFNAMSIZ];
535 struct nlattr *tb[TCA_ACT_MAX + 1];
536 struct nlattr *kind;
537 int err;
539 if (name == NULL) {
540 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
541 if (err < 0)
542 goto err_out;
543 err = -EINVAL;
544 kind = tb[TCA_ACT_KIND];
545 if (kind == NULL)
546 goto err_out;
547 if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ)
548 goto err_out;
549 } else {
550 err = -EINVAL;
551 if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ)
552 goto err_out;
555 a_o = tc_lookup_action_n(act_name);
556 if (a_o == NULL) {
557 #ifdef CONFIG_MODULES
558 rtnl_unlock();
559 request_module("act_%s", act_name);
560 rtnl_lock();
562 a_o = tc_lookup_action_n(act_name);
564 /* We dropped the RTNL semaphore in order to
565 * perform the module load. So, even if we
566 * succeeded in loading the module we have to
567 * tell the caller to replay the request. We
568 * indicate this using -EAGAIN.
570 if (a_o != NULL) {
571 err = -EAGAIN;
572 goto err_mod;
574 #endif
575 err = -ENOENT;
576 goto err_out;
579 /* backward compatibility for policer */
580 if (name == NULL)
581 err = a_o->init(net, tb[TCA_ACT_OPTIONS], est, &a, ovr, bind);
582 else
583 err = a_o->init(net, nla, est, &a, ovr, bind);
584 if (err < 0)
585 goto err_mod;
587 /* module count goes up only when brand new policy is created
588 * if it exists and is only bound to in a_o->init() then
589 * ACT_P_CREATED is not returned (a zero is).
591 if (err != ACT_P_CREATED)
592 module_put(a_o->owner);
594 return a;
596 err_mod:
597 module_put(a_o->owner);
598 err_out:
599 return ERR_PTR(err);
602 static void cleanup_a(struct list_head *actions, int ovr)
604 struct tc_action *a;
606 if (!ovr)
607 return;
609 list_for_each_entry(a, actions, list)
610 a->tcfa_refcnt--;
613 int tcf_action_init(struct net *net, struct nlattr *nla, struct nlattr *est,
614 char *name, int ovr, int bind, struct list_head *actions)
616 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
617 struct tc_action *act;
618 int err;
619 int i;
621 err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
622 if (err < 0)
623 return err;
625 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
626 act = tcf_action_init_1(net, tb[i], est, name, ovr, bind);
627 if (IS_ERR(act)) {
628 err = PTR_ERR(act);
629 goto err;
631 act->order = i;
632 if (ovr)
633 act->tcfa_refcnt++;
634 list_add_tail(&act->list, actions);
637 /* Remove the temp refcnt which was necessary to protect against
638 * destroying an existing action which was being replaced
640 cleanup_a(actions, ovr);
641 return 0;
643 err:
644 tcf_action_destroy(actions, bind);
645 return err;
648 int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *p,
649 int compat_mode)
651 int err = 0;
652 struct gnet_dump d;
654 if (p == NULL)
655 goto errout;
657 /* compat_mode being true specifies a call that is supposed
658 * to add additional backward compatibility statistic TLVs.
660 if (compat_mode) {
661 if (p->type == TCA_OLD_COMPAT)
662 err = gnet_stats_start_copy_compat(skb, 0,
663 TCA_STATS,
664 TCA_XSTATS,
665 &p->tcfa_lock, &d,
666 TCA_PAD);
667 else
668 return 0;
669 } else
670 err = gnet_stats_start_copy(skb, TCA_ACT_STATS,
671 &p->tcfa_lock, &d, TCA_ACT_PAD);
673 if (err < 0)
674 goto errout;
676 if (gnet_stats_copy_basic(NULL, &d, p->cpu_bstats, &p->tcfa_bstats) < 0 ||
677 gnet_stats_copy_rate_est(&d, &p->tcfa_bstats,
678 &p->tcfa_rate_est) < 0 ||
679 gnet_stats_copy_queue(&d, p->cpu_qstats,
680 &p->tcfa_qstats,
681 p->tcfa_qstats.qlen) < 0)
682 goto errout;
684 if (gnet_stats_finish_copy(&d) < 0)
685 goto errout;
687 return 0;
689 errout:
690 return -1;
693 static int tca_get_fill(struct sk_buff *skb, struct list_head *actions,
694 u32 portid, u32 seq, u16 flags, int event, int bind,
695 int ref)
697 struct tcamsg *t;
698 struct nlmsghdr *nlh;
699 unsigned char *b = skb_tail_pointer(skb);
700 struct nlattr *nest;
702 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*t), flags);
703 if (!nlh)
704 goto out_nlmsg_trim;
705 t = nlmsg_data(nlh);
706 t->tca_family = AF_UNSPEC;
707 t->tca__pad1 = 0;
708 t->tca__pad2 = 0;
710 nest = nla_nest_start(skb, TCA_ACT_TAB);
711 if (nest == NULL)
712 goto out_nlmsg_trim;
714 if (tcf_action_dump(skb, actions, bind, ref) < 0)
715 goto out_nlmsg_trim;
717 nla_nest_end(skb, nest);
719 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
720 return skb->len;
722 out_nlmsg_trim:
723 nlmsg_trim(skb, b);
724 return -1;
727 static int
728 act_get_notify(struct net *net, u32 portid, struct nlmsghdr *n,
729 struct list_head *actions, int event)
731 struct sk_buff *skb;
733 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
734 if (!skb)
735 return -ENOBUFS;
736 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, event,
737 0, 0) <= 0) {
738 kfree_skb(skb);
739 return -EINVAL;
742 return rtnl_unicast(skb, net, portid);
745 static struct tc_action *tcf_action_get_1(struct net *net, struct nlattr *nla,
746 struct nlmsghdr *n, u32 portid)
748 struct nlattr *tb[TCA_ACT_MAX + 1];
749 const struct tc_action_ops *ops;
750 struct tc_action *a;
751 int index;
752 int err;
754 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
755 if (err < 0)
756 goto err_out;
758 err = -EINVAL;
759 if (tb[TCA_ACT_INDEX] == NULL ||
760 nla_len(tb[TCA_ACT_INDEX]) < sizeof(index))
761 goto err_out;
762 index = nla_get_u32(tb[TCA_ACT_INDEX]);
764 err = -EINVAL;
765 ops = tc_lookup_action(tb[TCA_ACT_KIND]);
766 if (!ops) /* could happen in batch of actions */
767 goto err_out;
768 err = -ENOENT;
769 if (ops->lookup(net, &a, index) == 0)
770 goto err_mod;
772 module_put(ops->owner);
773 return a;
775 err_mod:
776 module_put(ops->owner);
777 err_out:
778 return ERR_PTR(err);
781 static int tca_action_flush(struct net *net, struct nlattr *nla,
782 struct nlmsghdr *n, u32 portid)
784 struct sk_buff *skb;
785 unsigned char *b;
786 struct nlmsghdr *nlh;
787 struct tcamsg *t;
788 struct netlink_callback dcb;
789 struct nlattr *nest;
790 struct nlattr *tb[TCA_ACT_MAX + 1];
791 const struct tc_action_ops *ops;
792 struct nlattr *kind;
793 int err = -ENOMEM;
795 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
796 if (!skb) {
797 pr_debug("tca_action_flush: failed skb alloc\n");
798 return err;
801 b = skb_tail_pointer(skb);
803 err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL);
804 if (err < 0)
805 goto err_out;
807 err = -EINVAL;
808 kind = tb[TCA_ACT_KIND];
809 ops = tc_lookup_action(kind);
810 if (!ops) /*some idjot trying to flush unknown action */
811 goto err_out;
813 nlh = nlmsg_put(skb, portid, n->nlmsg_seq, RTM_DELACTION,
814 sizeof(*t), 0);
815 if (!nlh)
816 goto out_module_put;
817 t = nlmsg_data(nlh);
818 t->tca_family = AF_UNSPEC;
819 t->tca__pad1 = 0;
820 t->tca__pad2 = 0;
822 nest = nla_nest_start(skb, TCA_ACT_TAB);
823 if (nest == NULL)
824 goto out_module_put;
826 err = ops->walk(net, skb, &dcb, RTM_DELACTION, ops);
827 if (err <= 0)
828 goto out_module_put;
830 nla_nest_end(skb, nest);
832 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
833 nlh->nlmsg_flags |= NLM_F_ROOT;
834 module_put(ops->owner);
835 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
836 n->nlmsg_flags & NLM_F_ECHO);
837 if (err > 0)
838 return 0;
840 return err;
842 out_module_put:
843 module_put(ops->owner);
844 err_out:
845 kfree_skb(skb);
846 return err;
849 static int
850 tcf_del_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
851 u32 portid)
853 int ret;
854 struct sk_buff *skb;
856 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
857 if (!skb)
858 return -ENOBUFS;
860 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, 0, RTM_DELACTION,
861 0, 1) <= 0) {
862 kfree_skb(skb);
863 return -EINVAL;
866 /* now do the delete */
867 ret = tcf_action_destroy(actions, 0);
868 if (ret < 0) {
869 kfree_skb(skb);
870 return ret;
873 ret = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
874 n->nlmsg_flags & NLM_F_ECHO);
875 if (ret > 0)
876 return 0;
877 return ret;
880 static int
881 tca_action_gd(struct net *net, struct nlattr *nla, struct nlmsghdr *n,
882 u32 portid, int event)
884 int i, ret;
885 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
886 struct tc_action *act;
887 LIST_HEAD(actions);
889 ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL);
890 if (ret < 0)
891 return ret;
893 if (event == RTM_DELACTION && n->nlmsg_flags & NLM_F_ROOT) {
894 if (tb[1] != NULL)
895 return tca_action_flush(net, tb[1], n, portid);
896 else
897 return -EINVAL;
900 for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) {
901 act = tcf_action_get_1(net, tb[i], n, portid);
902 if (IS_ERR(act)) {
903 ret = PTR_ERR(act);
904 goto err;
906 act->order = i;
907 list_add_tail(&act->list, &actions);
910 if (event == RTM_GETACTION)
911 ret = act_get_notify(net, portid, n, &actions, event);
912 else { /* delete */
913 ret = tcf_del_notify(net, n, &actions, portid);
914 if (ret)
915 goto err;
916 return ret;
918 err:
919 if (event != RTM_GETACTION)
920 tcf_action_destroy(&actions, 0);
921 return ret;
924 static int
925 tcf_add_notify(struct net *net, struct nlmsghdr *n, struct list_head *actions,
926 u32 portid)
928 struct sk_buff *skb;
929 int err = 0;
931 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
932 if (!skb)
933 return -ENOBUFS;
935 if (tca_get_fill(skb, actions, portid, n->nlmsg_seq, n->nlmsg_flags,
936 RTM_NEWACTION, 0, 0) <= 0) {
937 kfree_skb(skb);
938 return -EINVAL;
941 err = rtnetlink_send(skb, net, portid, RTNLGRP_TC,
942 n->nlmsg_flags & NLM_F_ECHO);
943 if (err > 0)
944 err = 0;
945 return err;
948 static int tcf_action_add(struct net *net, struct nlattr *nla,
949 struct nlmsghdr *n, u32 portid, int ovr)
951 int ret = 0;
952 LIST_HEAD(actions);
954 ret = tcf_action_init(net, nla, NULL, NULL, ovr, 0, &actions);
955 if (ret)
956 return ret;
958 return tcf_add_notify(net, n, &actions, portid);
961 static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n)
963 struct net *net = sock_net(skb->sk);
964 struct nlattr *tca[TCA_ACT_MAX + 1];
965 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
966 int ret = 0, ovr = 0;
968 if ((n->nlmsg_type != RTM_GETACTION) &&
969 !netlink_capable(skb, CAP_NET_ADMIN))
970 return -EPERM;
972 ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL);
973 if (ret < 0)
974 return ret;
976 if (tca[TCA_ACT_TAB] == NULL) {
977 pr_notice("tc_ctl_action: received NO action attribs\n");
978 return -EINVAL;
981 /* n->nlmsg_flags & NLM_F_CREATE */
982 switch (n->nlmsg_type) {
983 case RTM_NEWACTION:
984 /* we are going to assume all other flags
985 * imply create only if it doesn't exist
986 * Note that CREATE | EXCL implies that
987 * but since we want avoid ambiguity (eg when flags
988 * is zero) then just set this
990 if (n->nlmsg_flags & NLM_F_REPLACE)
991 ovr = 1;
992 replay:
993 ret = tcf_action_add(net, tca[TCA_ACT_TAB], n, portid, ovr);
994 if (ret == -EAGAIN)
995 goto replay;
996 break;
997 case RTM_DELACTION:
998 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
999 portid, RTM_DELACTION);
1000 break;
1001 case RTM_GETACTION:
1002 ret = tca_action_gd(net, tca[TCA_ACT_TAB], n,
1003 portid, RTM_GETACTION);
1004 break;
1005 default:
1006 BUG();
1009 return ret;
1012 static struct nlattr *find_dump_kind(const struct nlmsghdr *n)
1014 struct nlattr *tb1, *tb2[TCA_ACT_MAX + 1];
1015 struct nlattr *tb[TCA_ACT_MAX_PRIO + 1];
1016 struct nlattr *nla[TCAA_MAX + 1];
1017 struct nlattr *kind;
1019 if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0)
1020 return NULL;
1021 tb1 = nla[TCA_ACT_TAB];
1022 if (tb1 == NULL)
1023 return NULL;
1025 if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1),
1026 NLMSG_ALIGN(nla_len(tb1)), NULL) < 0)
1027 return NULL;
1029 if (tb[1] == NULL)
1030 return NULL;
1031 if (nla_parse_nested(tb2, TCA_ACT_MAX, tb[1], NULL) < 0)
1032 return NULL;
1033 kind = tb2[TCA_ACT_KIND];
1035 return kind;
1038 static int tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb)
1040 struct net *net = sock_net(skb->sk);
1041 struct nlmsghdr *nlh;
1042 unsigned char *b = skb_tail_pointer(skb);
1043 struct nlattr *nest;
1044 struct tc_action_ops *a_o;
1045 int ret = 0;
1046 struct tcamsg *t = (struct tcamsg *) nlmsg_data(cb->nlh);
1047 struct nlattr *kind = find_dump_kind(cb->nlh);
1049 if (kind == NULL) {
1050 pr_info("tc_dump_action: action bad kind\n");
1051 return 0;
1054 a_o = tc_lookup_action(kind);
1055 if (a_o == NULL)
1056 return 0;
1058 nlh = nlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
1059 cb->nlh->nlmsg_type, sizeof(*t), 0);
1060 if (!nlh)
1061 goto out_module_put;
1062 t = nlmsg_data(nlh);
1063 t->tca_family = AF_UNSPEC;
1064 t->tca__pad1 = 0;
1065 t->tca__pad2 = 0;
1067 nest = nla_nest_start(skb, TCA_ACT_TAB);
1068 if (nest == NULL)
1069 goto out_module_put;
1071 ret = a_o->walk(net, skb, cb, RTM_GETACTION, a_o);
1072 if (ret < 0)
1073 goto out_module_put;
1075 if (ret > 0) {
1076 nla_nest_end(skb, nest);
1077 ret = skb->len;
1078 } else
1079 nlmsg_trim(skb, b);
1081 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1082 if (NETLINK_CB(cb->skb).portid && ret)
1083 nlh->nlmsg_flags |= NLM_F_MULTI;
1084 module_put(a_o->owner);
1085 return skb->len;
1087 out_module_put:
1088 module_put(a_o->owner);
1089 nlmsg_trim(skb, b);
1090 return skb->len;
1093 static int __init tc_action_init(void)
1095 rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL, NULL);
1096 rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL, NULL);
1097 rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action,
1098 NULL);
1100 return 0;
1103 subsys_initcall(tc_action_init);