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>
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
);
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
,
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
)
60 else if (strict
&& p
->tcfa_bindcnt
> 0)
64 if (p
->tcfa_bindcnt
<= 0 && p
->tcfa_refcnt
<= 0) {
66 p
->ops
->cleanup(p
, bind
);
67 tcf_hash_destroy(p
->hinfo
, p
);
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;
82 spin_lock_bh(&hinfo
->lock
);
86 for (i
= 0; i
< (hinfo
->hmask
+ 1); i
++) {
87 struct hlist_head
*head
;
90 head
= &hinfo
->htab
[tcf_hash(i
, hinfo
->hmask
)];
92 hlist_for_each_entry_rcu(p
, head
, tcfa_head
) {
97 nest
= nla_nest_start(skb
, n_i
);
100 err
= tcf_action_dump_1(skb
, p
, 0, 0);
103 nlmsg_trim(skb
, nest
);
106 nla_nest_end(skb
, nest
);
108 if (n_i
>= TCA_ACT_MAX_PRIO
)
113 spin_unlock_bh(&hinfo
->lock
);
119 nla_nest_cancel(skb
, nest
);
123 static int tcf_del_walker(struct tcf_hashinfo
*hinfo
, struct sk_buff
*skb
,
124 const struct tc_action_ops
*ops
)
130 nest
= nla_nest_start(skb
, 0);
132 goto nla_put_failure
;
133 if (nla_put_string(skb
, TCA_KIND
, ops
->kind
))
134 goto nla_put_failure
;
135 for (i
= 0; i
< (hinfo
->hmask
+ 1); i
++) {
136 struct hlist_head
*head
;
137 struct hlist_node
*n
;
140 head
= &hinfo
->htab
[tcf_hash(i
, hinfo
->hmask
)];
141 hlist_for_each_entry_safe(p
, n
, head
, tcfa_head
) {
142 ret
= __tcf_hash_release(p
, false, true);
143 if (ret
== ACT_P_DELETED
) {
144 module_put(p
->ops
->owner
);
147 goto nla_put_failure
;
150 if (nla_put_u32(skb
, TCA_FCNT
, n_i
))
151 goto nla_put_failure
;
152 nla_nest_end(skb
, nest
);
156 nla_nest_cancel(skb
, nest
);
160 int tcf_generic_walker(struct tc_action_net
*tn
, struct sk_buff
*skb
,
161 struct netlink_callback
*cb
, int type
,
162 const struct tc_action_ops
*ops
)
164 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
166 if (type
== RTM_DELACTION
) {
167 return tcf_del_walker(hinfo
, skb
, ops
);
168 } else if (type
== RTM_GETACTION
) {
169 return tcf_dump_walker(hinfo
, skb
, cb
);
171 WARN(1, "tcf_generic_walker: unknown action %d\n", type
);
175 EXPORT_SYMBOL(tcf_generic_walker
);
177 static struct tc_action
*tcf_hash_lookup(u32 index
, struct tcf_hashinfo
*hinfo
)
179 struct tc_action
*p
= NULL
;
180 struct hlist_head
*head
;
182 spin_lock_bh(&hinfo
->lock
);
183 head
= &hinfo
->htab
[tcf_hash(index
, hinfo
->hmask
)];
184 hlist_for_each_entry_rcu(p
, head
, tcfa_head
)
185 if (p
->tcfa_index
== index
)
187 spin_unlock_bh(&hinfo
->lock
);
192 u32
tcf_hash_new_index(struct tc_action_net
*tn
)
194 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
195 u32 val
= hinfo
->index
;
200 } while (tcf_hash_lookup(val
, hinfo
));
205 EXPORT_SYMBOL(tcf_hash_new_index
);
207 int tcf_hash_search(struct tc_action_net
*tn
, struct tc_action
**a
, u32 index
)
209 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
210 struct tc_action
*p
= tcf_hash_lookup(index
, hinfo
);
218 EXPORT_SYMBOL(tcf_hash_search
);
220 bool tcf_hash_check(struct tc_action_net
*tn
, u32 index
, struct tc_action
**a
,
223 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
224 struct tc_action
*p
= NULL
;
226 if (index
&& (p
= tcf_hash_lookup(index
, hinfo
)) != NULL
) {
235 EXPORT_SYMBOL(tcf_hash_check
);
237 void tcf_hash_cleanup(struct tc_action
*a
, struct nlattr
*est
)
240 gen_kill_estimator(&a
->tcfa_bstats
,
242 call_rcu(&a
->tcfa_rcu
, free_tcf
);
244 EXPORT_SYMBOL(tcf_hash_cleanup
);
246 int tcf_hash_create(struct tc_action_net
*tn
, u32 index
, struct nlattr
*est
,
247 struct tc_action
**a
, const struct tc_action_ops
*ops
,
248 int bind
, bool cpustats
)
250 struct tc_action
*p
= kzalloc(ops
->size
, GFP_KERNEL
);
251 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
261 p
->cpu_bstats
= netdev_alloc_pcpu_stats(struct gnet_stats_basic_cpu
);
262 if (!p
->cpu_bstats
) {
267 p
->cpu_qstats
= alloc_percpu(struct gnet_stats_queue
);
268 if (!p
->cpu_qstats
) {
270 free_percpu(p
->cpu_bstats
);
274 spin_lock_init(&p
->tcfa_lock
);
275 INIT_HLIST_NODE(&p
->tcfa_head
);
276 p
->tcfa_index
= index
? index
: tcf_hash_new_index(tn
);
277 p
->tcfa_tm
.install
= jiffies
;
278 p
->tcfa_tm
.lastuse
= jiffies
;
279 p
->tcfa_tm
.firstuse
= 0;
281 err
= gen_new_estimator(&p
->tcfa_bstats
, p
->cpu_bstats
,
283 &p
->tcfa_lock
, NULL
, est
);
285 free_percpu(p
->cpu_qstats
);
292 INIT_LIST_HEAD(&p
->list
);
296 EXPORT_SYMBOL(tcf_hash_create
);
298 void tcf_hash_insert(struct tc_action_net
*tn
, struct tc_action
*a
)
300 struct tcf_hashinfo
*hinfo
= tn
->hinfo
;
301 unsigned int h
= tcf_hash(a
->tcfa_index
, hinfo
->hmask
);
303 spin_lock_bh(&hinfo
->lock
);
304 hlist_add_head(&a
->tcfa_head
, &hinfo
->htab
[h
]);
305 spin_unlock_bh(&hinfo
->lock
);
307 EXPORT_SYMBOL(tcf_hash_insert
);
309 void tcf_hashinfo_destroy(const struct tc_action_ops
*ops
,
310 struct tcf_hashinfo
*hinfo
)
314 for (i
= 0; i
< hinfo
->hmask
+ 1; i
++) {
316 struct hlist_node
*n
;
318 hlist_for_each_entry_safe(p
, n
, &hinfo
->htab
[i
], tcfa_head
) {
321 ret
= __tcf_hash_release(p
, false, true);
322 if (ret
== ACT_P_DELETED
)
323 module_put(ops
->owner
);
330 EXPORT_SYMBOL(tcf_hashinfo_destroy
);
332 static LIST_HEAD(act_base
);
333 static DEFINE_RWLOCK(act_mod_lock
);
335 int tcf_register_action(struct tc_action_ops
*act
,
336 struct pernet_operations
*ops
)
338 struct tc_action_ops
*a
;
341 if (!act
->act
|| !act
->dump
|| !act
->init
|| !act
->walk
|| !act
->lookup
)
344 write_lock(&act_mod_lock
);
345 list_for_each_entry(a
, &act_base
, head
) {
346 if (act
->type
== a
->type
|| (strcmp(act
->kind
, a
->kind
) == 0)) {
347 write_unlock(&act_mod_lock
);
351 list_add_tail(&act
->head
, &act_base
);
352 write_unlock(&act_mod_lock
);
354 ret
= register_pernet_subsys(ops
);
356 tcf_unregister_action(act
, ops
);
362 EXPORT_SYMBOL(tcf_register_action
);
364 int tcf_unregister_action(struct tc_action_ops
*act
,
365 struct pernet_operations
*ops
)
367 struct tc_action_ops
*a
;
370 unregister_pernet_subsys(ops
);
372 write_lock(&act_mod_lock
);
373 list_for_each_entry(a
, &act_base
, head
) {
375 list_del(&act
->head
);
380 write_unlock(&act_mod_lock
);
383 EXPORT_SYMBOL(tcf_unregister_action
);
386 static struct tc_action_ops
*tc_lookup_action_n(char *kind
)
388 struct tc_action_ops
*a
, *res
= NULL
;
391 read_lock(&act_mod_lock
);
392 list_for_each_entry(a
, &act_base
, head
) {
393 if (strcmp(kind
, a
->kind
) == 0) {
394 if (try_module_get(a
->owner
))
399 read_unlock(&act_mod_lock
);
404 /* lookup by nlattr */
405 static struct tc_action_ops
*tc_lookup_action(struct nlattr
*kind
)
407 struct tc_action_ops
*a
, *res
= NULL
;
410 read_lock(&act_mod_lock
);
411 list_for_each_entry(a
, &act_base
, head
) {
412 if (nla_strcmp(kind
, a
->kind
) == 0) {
413 if (try_module_get(a
->owner
))
418 read_unlock(&act_mod_lock
);
423 int tcf_action_exec(struct sk_buff
*skb
, struct tc_action
**actions
,
424 int nr_actions
, struct tcf_result
*res
)
428 if (skb
->tc_verd
& TC_NCLS
) {
429 skb
->tc_verd
= CLR_TC_NCLS(skb
->tc_verd
);
433 for (i
= 0; i
< nr_actions
; i
++) {
434 const struct tc_action
*a
= actions
[i
];
437 ret
= a
->ops
->act(skb
, a
, res
);
438 if (ret
== TC_ACT_REPEAT
)
439 goto repeat
; /* we need a ttl - JHS */
440 if (ret
!= TC_ACT_PIPE
)
446 EXPORT_SYMBOL(tcf_action_exec
);
448 int tcf_action_destroy(struct list_head
*actions
, int bind
)
450 struct tc_action
*a
, *tmp
;
453 list_for_each_entry_safe(a
, tmp
, actions
, list
) {
454 ret
= __tcf_hash_release(a
, bind
, true);
455 if (ret
== ACT_P_DELETED
)
456 module_put(a
->ops
->owner
);
464 tcf_action_dump_old(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
466 return a
->ops
->dump(skb
, a
, bind
, ref
);
470 tcf_action_dump_1(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
473 unsigned char *b
= skb_tail_pointer(skb
);
476 if (nla_put_string(skb
, TCA_KIND
, a
->ops
->kind
))
477 goto nla_put_failure
;
478 if (tcf_action_copy_stats(skb
, a
, 0))
479 goto nla_put_failure
;
480 nest
= nla_nest_start(skb
, TCA_OPTIONS
);
482 goto nla_put_failure
;
483 err
= tcf_action_dump_old(skb
, a
, bind
, ref
);
485 nla_nest_end(skb
, nest
);
493 EXPORT_SYMBOL(tcf_action_dump_1
);
495 int tcf_action_dump(struct sk_buff
*skb
, struct list_head
*actions
,
502 list_for_each_entry(a
, actions
, list
) {
503 nest
= nla_nest_start(skb
, a
->order
);
505 goto nla_put_failure
;
506 err
= tcf_action_dump_1(skb
, a
, bind
, ref
);
509 nla_nest_end(skb
, nest
);
517 nla_nest_cancel(skb
, nest
);
521 struct tc_action
*tcf_action_init_1(struct net
*net
, struct nlattr
*nla
,
522 struct nlattr
*est
, char *name
, int ovr
,
526 struct tc_action_ops
*a_o
;
527 char act_name
[IFNAMSIZ
];
528 struct nlattr
*tb
[TCA_ACT_MAX
+ 1];
533 err
= nla_parse_nested(tb
, TCA_ACT_MAX
, nla
, NULL
);
537 kind
= tb
[TCA_ACT_KIND
];
540 if (nla_strlcpy(act_name
, kind
, IFNAMSIZ
) >= IFNAMSIZ
)
544 if (strlcpy(act_name
, name
, IFNAMSIZ
) >= IFNAMSIZ
)
548 a_o
= tc_lookup_action_n(act_name
);
550 #ifdef CONFIG_MODULES
552 request_module("act_%s", act_name
);
555 a_o
= tc_lookup_action_n(act_name
);
557 /* We dropped the RTNL semaphore in order to
558 * perform the module load. So, even if we
559 * succeeded in loading the module we have to
560 * tell the caller to replay the request. We
561 * indicate this using -EAGAIN.
572 /* backward compatibility for policer */
574 err
= a_o
->init(net
, tb
[TCA_ACT_OPTIONS
], est
, &a
, ovr
, bind
);
576 err
= a_o
->init(net
, nla
, est
, &a
, ovr
, bind
);
580 /* module count goes up only when brand new policy is created
581 * if it exists and is only bound to in a_o->init() then
582 * ACT_P_CREATED is not returned (a zero is).
584 if (err
!= ACT_P_CREATED
)
585 module_put(a_o
->owner
);
590 module_put(a_o
->owner
);
595 int tcf_action_init(struct net
*net
, struct nlattr
*nla
,
596 struct nlattr
*est
, char *name
, int ovr
,
597 int bind
, struct list_head
*actions
)
599 struct nlattr
*tb
[TCA_ACT_MAX_PRIO
+ 1];
600 struct tc_action
*act
;
604 err
= nla_parse_nested(tb
, TCA_ACT_MAX_PRIO
, nla
, NULL
);
608 for (i
= 1; i
<= TCA_ACT_MAX_PRIO
&& tb
[i
]; i
++) {
609 act
= tcf_action_init_1(net
, tb
[i
], est
, name
, ovr
, bind
);
615 list_add_tail(&act
->list
, actions
);
620 tcf_action_destroy(actions
, bind
);
624 int tcf_action_copy_stats(struct sk_buff
*skb
, struct tc_action
*p
,
633 /* compat_mode being true specifies a call that is supposed
634 * to add additional backward compatibility statistic TLVs.
637 if (p
->type
== TCA_OLD_COMPAT
)
638 err
= gnet_stats_start_copy_compat(skb
, 0,
646 err
= gnet_stats_start_copy(skb
, TCA_ACT_STATS
,
647 &p
->tcfa_lock
, &d
, TCA_ACT_PAD
);
652 if (gnet_stats_copy_basic(NULL
, &d
, p
->cpu_bstats
, &p
->tcfa_bstats
) < 0 ||
653 gnet_stats_copy_rate_est(&d
, &p
->tcfa_bstats
,
654 &p
->tcfa_rate_est
) < 0 ||
655 gnet_stats_copy_queue(&d
, p
->cpu_qstats
,
657 p
->tcfa_qstats
.qlen
) < 0)
660 if (gnet_stats_finish_copy(&d
) < 0)
669 static int tca_get_fill(struct sk_buff
*skb
, struct list_head
*actions
,
670 u32 portid
, u32 seq
, u16 flags
, int event
, int bind
,
674 struct nlmsghdr
*nlh
;
675 unsigned char *b
= skb_tail_pointer(skb
);
678 nlh
= nlmsg_put(skb
, portid
, seq
, event
, sizeof(*t
), flags
);
682 t
->tca_family
= AF_UNSPEC
;
686 nest
= nla_nest_start(skb
, TCA_ACT_TAB
);
690 if (tcf_action_dump(skb
, actions
, bind
, ref
) < 0)
693 nla_nest_end(skb
, nest
);
695 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
704 act_get_notify(struct net
*net
, u32 portid
, struct nlmsghdr
*n
,
705 struct list_head
*actions
, int event
)
709 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
712 if (tca_get_fill(skb
, actions
, portid
, n
->nlmsg_seq
, 0, event
,
718 return rtnl_unicast(skb
, net
, portid
);
721 static struct tc_action
*tcf_action_get_1(struct net
*net
, struct nlattr
*nla
,
722 struct nlmsghdr
*n
, u32 portid
)
724 struct nlattr
*tb
[TCA_ACT_MAX
+ 1];
725 const struct tc_action_ops
*ops
;
730 err
= nla_parse_nested(tb
, TCA_ACT_MAX
, nla
, NULL
);
735 if (tb
[TCA_ACT_INDEX
] == NULL
||
736 nla_len(tb
[TCA_ACT_INDEX
]) < sizeof(index
))
738 index
= nla_get_u32(tb
[TCA_ACT_INDEX
]);
741 ops
= tc_lookup_action(tb
[TCA_ACT_KIND
]);
742 if (!ops
) /* could happen in batch of actions */
745 if (ops
->lookup(net
, &a
, index
) == 0)
748 module_put(ops
->owner
);
752 module_put(ops
->owner
);
757 static int tca_action_flush(struct net
*net
, struct nlattr
*nla
,
758 struct nlmsghdr
*n
, u32 portid
)
762 struct nlmsghdr
*nlh
;
764 struct netlink_callback dcb
;
766 struct nlattr
*tb
[TCA_ACT_MAX
+ 1];
767 const struct tc_action_ops
*ops
;
771 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
773 pr_debug("tca_action_flush: failed skb alloc\n");
777 b
= skb_tail_pointer(skb
);
779 err
= nla_parse_nested(tb
, TCA_ACT_MAX
, nla
, NULL
);
784 kind
= tb
[TCA_ACT_KIND
];
785 ops
= tc_lookup_action(kind
);
786 if (!ops
) /*some idjot trying to flush unknown action */
789 nlh
= nlmsg_put(skb
, portid
, n
->nlmsg_seq
, RTM_DELACTION
,
794 t
->tca_family
= AF_UNSPEC
;
798 nest
= nla_nest_start(skb
, TCA_ACT_TAB
);
802 err
= ops
->walk(net
, skb
, &dcb
, RTM_DELACTION
, ops
);
808 nla_nest_end(skb
, nest
);
810 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
811 nlh
->nlmsg_flags
|= NLM_F_ROOT
;
812 module_put(ops
->owner
);
813 err
= rtnetlink_send(skb
, net
, portid
, RTNLGRP_TC
,
814 n
->nlmsg_flags
& NLM_F_ECHO
);
821 module_put(ops
->owner
);
829 tcf_del_notify(struct net
*net
, struct nlmsghdr
*n
, struct list_head
*actions
,
835 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
839 if (tca_get_fill(skb
, actions
, portid
, n
->nlmsg_seq
, 0, RTM_DELACTION
,
845 /* now do the delete */
846 ret
= tcf_action_destroy(actions
, 0);
852 ret
= rtnetlink_send(skb
, net
, portid
, RTNLGRP_TC
,
853 n
->nlmsg_flags
& NLM_F_ECHO
);
860 tca_action_gd(struct net
*net
, struct nlattr
*nla
, struct nlmsghdr
*n
,
861 u32 portid
, int event
)
864 struct nlattr
*tb
[TCA_ACT_MAX_PRIO
+ 1];
865 struct tc_action
*act
;
868 ret
= nla_parse_nested(tb
, TCA_ACT_MAX_PRIO
, nla
, NULL
);
872 if (event
== RTM_DELACTION
&& n
->nlmsg_flags
& NLM_F_ROOT
) {
874 return tca_action_flush(net
, tb
[1], n
, portid
);
879 for (i
= 1; i
<= TCA_ACT_MAX_PRIO
&& tb
[i
]; i
++) {
880 act
= tcf_action_get_1(net
, tb
[i
], n
, portid
);
886 list_add_tail(&act
->list
, &actions
);
889 if (event
== RTM_GETACTION
)
890 ret
= act_get_notify(net
, portid
, n
, &actions
, event
);
892 ret
= tcf_del_notify(net
, n
, &actions
, portid
);
898 tcf_action_destroy(&actions
, 0);
903 tcf_add_notify(struct net
*net
, struct nlmsghdr
*n
, struct list_head
*actions
,
909 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
913 if (tca_get_fill(skb
, actions
, portid
, n
->nlmsg_seq
, n
->nlmsg_flags
,
914 RTM_NEWACTION
, 0, 0) <= 0) {
919 err
= rtnetlink_send(skb
, net
, portid
, RTNLGRP_TC
,
920 n
->nlmsg_flags
& NLM_F_ECHO
);
927 tcf_action_add(struct net
*net
, struct nlattr
*nla
, struct nlmsghdr
*n
,
933 ret
= tcf_action_init(net
, nla
, NULL
, NULL
, ovr
, 0, &actions
);
937 return tcf_add_notify(net
, n
, &actions
, portid
);
940 static int tc_ctl_action(struct sk_buff
*skb
, struct nlmsghdr
*n
)
942 struct net
*net
= sock_net(skb
->sk
);
943 struct nlattr
*tca
[TCA_ACT_MAX
+ 1];
944 u32 portid
= skb
? NETLINK_CB(skb
).portid
: 0;
945 int ret
= 0, ovr
= 0;
947 if ((n
->nlmsg_type
!= RTM_GETACTION
) &&
948 !netlink_capable(skb
, CAP_NET_ADMIN
))
951 ret
= nlmsg_parse(n
, sizeof(struct tcamsg
), tca
, TCA_ACT_MAX
, NULL
);
955 if (tca
[TCA_ACT_TAB
] == NULL
) {
956 pr_notice("tc_ctl_action: received NO action attribs\n");
960 /* n->nlmsg_flags & NLM_F_CREATE */
961 switch (n
->nlmsg_type
) {
963 /* we are going to assume all other flags
964 * imply create only if it doesn't exist
965 * Note that CREATE | EXCL implies that
966 * but since we want avoid ambiguity (eg when flags
967 * is zero) then just set this
969 if (n
->nlmsg_flags
& NLM_F_REPLACE
)
972 ret
= tcf_action_add(net
, tca
[TCA_ACT_TAB
], n
, portid
, ovr
);
977 ret
= tca_action_gd(net
, tca
[TCA_ACT_TAB
], n
,
978 portid
, RTM_DELACTION
);
981 ret
= tca_action_gd(net
, tca
[TCA_ACT_TAB
], n
,
982 portid
, RTM_GETACTION
);
991 static struct nlattr
*
992 find_dump_kind(const struct nlmsghdr
*n
)
994 struct nlattr
*tb1
, *tb2
[TCA_ACT_MAX
+ 1];
995 struct nlattr
*tb
[TCA_ACT_MAX_PRIO
+ 1];
996 struct nlattr
*nla
[TCAA_MAX
+ 1];
999 if (nlmsg_parse(n
, sizeof(struct tcamsg
), nla
, TCAA_MAX
, NULL
) < 0)
1001 tb1
= nla
[TCA_ACT_TAB
];
1005 if (nla_parse(tb
, TCA_ACT_MAX_PRIO
, nla_data(tb1
),
1006 NLMSG_ALIGN(nla_len(tb1
)), NULL
) < 0)
1011 if (nla_parse(tb2
, TCA_ACT_MAX
, nla_data(tb
[1]),
1012 nla_len(tb
[1]), NULL
) < 0)
1014 kind
= tb2
[TCA_ACT_KIND
];
1020 tc_dump_action(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1022 struct net
*net
= sock_net(skb
->sk
);
1023 struct nlmsghdr
*nlh
;
1024 unsigned char *b
= skb_tail_pointer(skb
);
1025 struct nlattr
*nest
;
1026 struct tc_action_ops
*a_o
;
1028 struct tcamsg
*t
= (struct tcamsg
*) nlmsg_data(cb
->nlh
);
1029 struct nlattr
*kind
= find_dump_kind(cb
->nlh
);
1032 pr_info("tc_dump_action: action bad kind\n");
1036 a_o
= tc_lookup_action(kind
);
1040 nlh
= nlmsg_put(skb
, NETLINK_CB(cb
->skb
).portid
, cb
->nlh
->nlmsg_seq
,
1041 cb
->nlh
->nlmsg_type
, sizeof(*t
), 0);
1043 goto out_module_put
;
1044 t
= nlmsg_data(nlh
);
1045 t
->tca_family
= AF_UNSPEC
;
1049 nest
= nla_nest_start(skb
, TCA_ACT_TAB
);
1051 goto out_module_put
;
1053 ret
= a_o
->walk(net
, skb
, cb
, RTM_GETACTION
, a_o
);
1055 goto out_module_put
;
1058 nla_nest_end(skb
, nest
);
1063 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1064 if (NETLINK_CB(cb
->skb
).portid
&& ret
)
1065 nlh
->nlmsg_flags
|= NLM_F_MULTI
;
1066 module_put(a_o
->owner
);
1070 module_put(a_o
->owner
);
1075 static int __init
tc_action_init(void)
1077 rtnl_register(PF_UNSPEC
, RTM_NEWACTION
, tc_ctl_action
, NULL
, NULL
);
1078 rtnl_register(PF_UNSPEC
, RTM_DELACTION
, tc_ctl_action
, NULL
, NULL
);
1079 rtnl_register(PF_UNSPEC
, RTM_GETACTION
, tc_ctl_action
, tc_dump_action
,
1085 subsys_initcall(tc_action_init
);