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 <asm/uaccess.h>
15 #include <asm/system.h>
16 #include <linux/bitops.h>
17 #include <linux/types.h>
18 #include <linux/kernel.h>
19 #include <linux/string.h>
21 #include <linux/socket.h>
22 #include <linux/sockios.h>
24 #include <linux/errno.h>
25 #include <linux/interrupt.h>
26 #include <linux/netdevice.h>
27 #include <linux/skbuff.h>
28 #include <linux/init.h>
29 #include <linux/kmod.h>
31 #include <net/sch_generic.h>
32 #include <net/act_api.h>
33 #include <net/netlink.h>
35 void tcf_hash_destroy(struct tcf_common
*p
, struct tcf_hashinfo
*hinfo
)
37 unsigned int h
= tcf_hash(p
->tcfc_index
, hinfo
->hmask
);
38 struct tcf_common
**p1p
;
40 for (p1p
= &hinfo
->htab
[h
]; *p1p
; p1p
= &(*p1p
)->tcfc_next
) {
42 write_lock_bh(hinfo
->lock
);
44 write_unlock_bh(hinfo
->lock
);
45 gen_kill_estimator(&p
->tcfc_bstats
,
53 EXPORT_SYMBOL(tcf_hash_destroy
);
55 int tcf_hash_release(struct tcf_common
*p
, int bind
,
56 struct tcf_hashinfo
*hinfo
)
65 if (p
->tcfc_bindcnt
<= 0 && p
->tcfc_refcnt
<= 0) {
66 tcf_hash_destroy(p
, hinfo
);
72 EXPORT_SYMBOL(tcf_hash_release
);
74 static int tcf_dump_walker(struct sk_buff
*skb
, struct netlink_callback
*cb
,
75 struct tc_action
*a
, struct tcf_hashinfo
*hinfo
)
78 int err
= 0, index
= -1,i
= 0, s_i
= 0, n_i
= 0;
81 read_lock(hinfo
->lock
);
85 for (i
= 0; i
< (hinfo
->hmask
+ 1); i
++) {
86 p
= hinfo
->htab
[tcf_hash(i
, hinfo
->hmask
)];
88 for (; p
; p
= p
->tcfc_next
) {
94 r
= (struct rtattr
*)skb_tail_pointer(skb
);
95 RTA_PUT(skb
, a
->order
, 0, NULL
);
96 err
= tcf_action_dump_1(skb
, a
, 0, 0);
102 r
->rta_len
= skb_tail_pointer(skb
) - (u8
*)r
;
104 if (n_i
>= TCA_ACT_MAX_PRIO
)
109 read_unlock(hinfo
->lock
);
119 static int tcf_del_walker(struct sk_buff
*skb
, struct tc_action
*a
,
120 struct tcf_hashinfo
*hinfo
)
122 struct tcf_common
*p
, *s_p
;
126 r
= (struct rtattr
*)skb_tail_pointer(skb
);
127 RTA_PUT(skb
, a
->order
, 0, NULL
);
128 RTA_PUT(skb
, TCA_KIND
, IFNAMSIZ
, a
->ops
->kind
);
129 for (i
= 0; i
< (hinfo
->hmask
+ 1); i
++) {
130 p
= hinfo
->htab
[tcf_hash(i
, hinfo
->hmask
)];
134 if (ACT_P_DELETED
== tcf_hash_release(p
, 0, hinfo
))
135 module_put(a
->ops
->owner
);
140 RTA_PUT(skb
, TCA_FCNT
, 4, &n_i
);
141 r
->rta_len
= skb_tail_pointer(skb
) - (u8
*)r
;
149 int tcf_generic_walker(struct sk_buff
*skb
, struct netlink_callback
*cb
,
150 int type
, struct tc_action
*a
)
152 struct tcf_hashinfo
*hinfo
= a
->ops
->hinfo
;
154 if (type
== RTM_DELACTION
) {
155 return tcf_del_walker(skb
, a
, hinfo
);
156 } else if (type
== RTM_GETACTION
) {
157 return tcf_dump_walker(skb
, cb
, a
, hinfo
);
159 printk("tcf_generic_walker: unknown action %d\n", type
);
163 EXPORT_SYMBOL(tcf_generic_walker
);
165 struct tcf_common
*tcf_hash_lookup(u32 index
, struct tcf_hashinfo
*hinfo
)
167 struct tcf_common
*p
;
169 read_lock(hinfo
->lock
);
170 for (p
= hinfo
->htab
[tcf_hash(index
, hinfo
->hmask
)]; p
;
172 if (p
->tcfc_index
== index
)
175 read_unlock(hinfo
->lock
);
179 EXPORT_SYMBOL(tcf_hash_lookup
);
181 u32
tcf_hash_new_index(u32
*idx_gen
, struct tcf_hashinfo
*hinfo
)
188 } while (tcf_hash_lookup(val
, hinfo
));
190 return (*idx_gen
= val
);
192 EXPORT_SYMBOL(tcf_hash_new_index
);
194 int tcf_hash_search(struct tc_action
*a
, u32 index
)
196 struct tcf_hashinfo
*hinfo
= a
->ops
->hinfo
;
197 struct tcf_common
*p
= tcf_hash_lookup(index
, hinfo
);
205 EXPORT_SYMBOL(tcf_hash_search
);
207 struct tcf_common
*tcf_hash_check(u32 index
, struct tc_action
*a
, int bind
,
208 struct tcf_hashinfo
*hinfo
)
210 struct tcf_common
*p
= NULL
;
211 if (index
&& (p
= tcf_hash_lookup(index
, hinfo
)) != NULL
) {
220 EXPORT_SYMBOL(tcf_hash_check
);
222 struct tcf_common
*tcf_hash_create(u32 index
, struct rtattr
*est
, struct tc_action
*a
, int size
, int bind
, u32
*idx_gen
, struct tcf_hashinfo
*hinfo
)
224 struct tcf_common
*p
= kzalloc(size
, GFP_KERNEL
);
232 spin_lock_init(&p
->tcfc_lock
);
233 p
->tcfc_index
= index
? index
: tcf_hash_new_index(idx_gen
, hinfo
);
234 p
->tcfc_tm
.install
= jiffies
;
235 p
->tcfc_tm
.lastuse
= jiffies
;
237 gen_new_estimator(&p
->tcfc_bstats
, &p
->tcfc_rate_est
,
239 a
->priv
= (void *) p
;
242 EXPORT_SYMBOL(tcf_hash_create
);
244 void tcf_hash_insert(struct tcf_common
*p
, struct tcf_hashinfo
*hinfo
)
246 unsigned int h
= tcf_hash(p
->tcfc_index
, hinfo
->hmask
);
248 write_lock_bh(hinfo
->lock
);
249 p
->tcfc_next
= hinfo
->htab
[h
];
251 write_unlock_bh(hinfo
->lock
);
253 EXPORT_SYMBOL(tcf_hash_insert
);
255 static struct tc_action_ops
*act_base
= NULL
;
256 static DEFINE_RWLOCK(act_mod_lock
);
258 int tcf_register_action(struct tc_action_ops
*act
)
260 struct tc_action_ops
*a
, **ap
;
262 write_lock(&act_mod_lock
);
263 for (ap
= &act_base
; (a
= *ap
) != NULL
; ap
= &a
->next
) {
264 if (act
->type
== a
->type
|| (strcmp(act
->kind
, a
->kind
) == 0)) {
265 write_unlock(&act_mod_lock
);
271 write_unlock(&act_mod_lock
);
275 int tcf_unregister_action(struct tc_action_ops
*act
)
277 struct tc_action_ops
*a
, **ap
;
280 write_lock(&act_mod_lock
);
281 for (ap
= &act_base
; (a
= *ap
) != NULL
; ap
= &a
->next
)
289 write_unlock(&act_mod_lock
);
294 static struct tc_action_ops
*tc_lookup_action_n(char *kind
)
296 struct tc_action_ops
*a
= NULL
;
299 read_lock(&act_mod_lock
);
300 for (a
= act_base
; a
; a
= a
->next
) {
301 if (strcmp(kind
, a
->kind
) == 0) {
302 if (!try_module_get(a
->owner
)) {
303 read_unlock(&act_mod_lock
);
309 read_unlock(&act_mod_lock
);
314 /* lookup by rtattr */
315 static struct tc_action_ops
*tc_lookup_action(struct rtattr
*kind
)
317 struct tc_action_ops
*a
= NULL
;
320 read_lock(&act_mod_lock
);
321 for (a
= act_base
; a
; a
= a
->next
) {
322 if (rtattr_strcmp(kind
, a
->kind
) == 0) {
323 if (!try_module_get(a
->owner
)) {
324 read_unlock(&act_mod_lock
);
330 read_unlock(&act_mod_lock
);
337 static struct tc_action_ops
*tc_lookup_action_id(u32 type
)
339 struct tc_action_ops
*a
= NULL
;
342 read_lock(&act_mod_lock
);
343 for (a
= act_base
; a
; a
= a
->next
) {
344 if (a
->type
== type
) {
345 if (!try_module_get(a
->owner
)) {
346 read_unlock(&act_mod_lock
);
352 read_unlock(&act_mod_lock
);
358 int tcf_action_exec(struct sk_buff
*skb
, struct tc_action
*act
,
359 struct tcf_result
*res
)
364 if (skb
->tc_verd
& TC_NCLS
) {
365 skb
->tc_verd
= CLR_TC_NCLS(skb
->tc_verd
);
369 while ((a
= act
) != NULL
) {
371 if (a
->ops
&& a
->ops
->act
) {
372 ret
= a
->ops
->act(skb
, a
, res
);
373 if (TC_MUNGED
& skb
->tc_verd
) {
374 /* copied already, allow trampling */
375 skb
->tc_verd
= SET_TC_OK2MUNGE(skb
->tc_verd
);
376 skb
->tc_verd
= CLR_TC_MUNGED(skb
->tc_verd
);
378 if (ret
== TC_ACT_REPEAT
)
379 goto repeat
; /* we need a ttl - JHS */
380 if (ret
!= TC_ACT_PIPE
)
389 void tcf_action_destroy(struct tc_action
*act
, int bind
)
393 for (a
= act
; a
; a
= act
) {
394 if (a
->ops
&& a
->ops
->cleanup
) {
395 if (a
->ops
->cleanup(a
, bind
) == ACT_P_DELETED
)
396 module_put(a
->ops
->owner
);
399 } else { /*FIXME: Remove later - catch insertion bugs*/
400 printk("tcf_action_destroy: BUG? destroying NULL ops\n");
408 tcf_action_dump_old(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
412 if (a
->ops
== NULL
|| a
->ops
->dump
== NULL
)
414 return a
->ops
->dump(skb
, a
, bind
, ref
);
418 tcf_action_dump_1(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
421 unsigned char *b
= skb_tail_pointer(skb
);
424 if (a
->ops
== NULL
|| a
->ops
->dump
== NULL
)
427 RTA_PUT(skb
, TCA_KIND
, IFNAMSIZ
, a
->ops
->kind
);
428 if (tcf_action_copy_stats(skb
, a
, 0))
430 r
= (struct rtattr
*)skb_tail_pointer(skb
);
431 RTA_PUT(skb
, TCA_OPTIONS
, 0, NULL
);
432 if ((err
= tcf_action_dump_old(skb
, a
, bind
, ref
)) > 0) {
433 r
->rta_len
= skb_tail_pointer(skb
) - (u8
*)r
;
443 tcf_action_dump(struct sk_buff
*skb
, struct tc_action
*act
, int bind
, int ref
)
447 unsigned char *b
= skb_tail_pointer(skb
);
450 while ((a
= act
) != NULL
) {
451 r
= (struct rtattr
*)skb_tail_pointer(skb
);
453 RTA_PUT(skb
, a
->order
, 0, NULL
);
454 err
= tcf_action_dump_1(skb
, a
, bind
, ref
);
457 r
->rta_len
= skb_tail_pointer(skb
) - (u8
*)r
;
469 struct tc_action
*tcf_action_init_1(struct rtattr
*rta
, struct rtattr
*est
,
470 char *name
, int ovr
, int bind
, int *err
)
473 struct tc_action_ops
*a_o
;
474 char act_name
[IFNAMSIZ
];
475 struct rtattr
*tb
[TCA_ACT_MAX
+1];
481 if (rtattr_parse_nested(tb
, TCA_ACT_MAX
, rta
) < 0)
483 kind
= tb
[TCA_ACT_KIND
-1];
486 if (rtattr_strlcpy(act_name
, kind
, IFNAMSIZ
) >= IFNAMSIZ
)
489 if (strlcpy(act_name
, name
, IFNAMSIZ
) >= IFNAMSIZ
)
493 a_o
= tc_lookup_action_n(act_name
);
497 request_module("act_%s", act_name
);
500 a_o
= tc_lookup_action_n(act_name
);
502 /* We dropped the RTNL semaphore in order to
503 * perform the module load. So, even if we
504 * succeeded in loading the module we have to
505 * tell the caller to replay the request. We
506 * indicate this using -EAGAIN.
518 a
= kzalloc(sizeof(*a
), GFP_KERNEL
);
522 /* backward compatibility for policer */
524 *err
= a_o
->init(tb
[TCA_ACT_OPTIONS
-1], est
, a
, ovr
, bind
);
526 *err
= a_o
->init(rta
, est
, a
, ovr
, bind
);
530 /* module count goes up only when brand new policy is created
531 if it exists and is only bound to in a_o->init() then
532 ACT_P_CREATED is not returned (a zero is).
534 if (*err
!= ACT_P_CREATED
)
535 module_put(a_o
->owner
);
544 module_put(a_o
->owner
);
549 struct tc_action
*tcf_action_init(struct rtattr
*rta
, struct rtattr
*est
,
550 char *name
, int ovr
, int bind
, int *err
)
552 struct rtattr
*tb
[TCA_ACT_MAX_PRIO
+1];
553 struct tc_action
*head
= NULL
, *act
, *act_prev
= NULL
;
556 if (rtattr_parse_nested(tb
, TCA_ACT_MAX_PRIO
, rta
) < 0) {
561 for (i
=0; i
< TCA_ACT_MAX_PRIO
&& tb
[i
]; i
++) {
562 act
= tcf_action_init_1(tb
[i
], est
, name
, ovr
, bind
, err
);
570 act_prev
->next
= act
;
577 tcf_action_destroy(head
, bind
);
581 int tcf_action_copy_stats(struct sk_buff
*skb
, struct tc_action
*a
,
586 struct tcf_act_hdr
*h
= a
->priv
;
591 /* compat_mode being true specifies a call that is supposed
592 * to add additional backward compatiblity statistic TLVs.
595 if (a
->type
== TCA_OLD_COMPAT
)
596 err
= gnet_stats_start_copy_compat(skb
, 0,
597 TCA_STATS
, TCA_XSTATS
, &h
->tcf_lock
, &d
);
601 err
= gnet_stats_start_copy(skb
, TCA_ACT_STATS
,
607 if (a
->ops
!= NULL
&& a
->ops
->get_stats
!= NULL
)
608 if (a
->ops
->get_stats(skb
, a
) < 0)
611 if (gnet_stats_copy_basic(&d
, &h
->tcf_bstats
) < 0 ||
612 gnet_stats_copy_rate_est(&d
, &h
->tcf_rate_est
) < 0 ||
613 gnet_stats_copy_queue(&d
, &h
->tcf_qstats
) < 0)
616 if (gnet_stats_finish_copy(&d
) < 0)
626 tca_get_fill(struct sk_buff
*skb
, struct tc_action
*a
, u32 pid
, u32 seq
,
627 u16 flags
, int event
, int bind
, int ref
)
630 struct nlmsghdr
*nlh
;
631 unsigned char *b
= skb_tail_pointer(skb
);
634 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*t
), flags
);
637 t
->tca_family
= AF_UNSPEC
;
641 x
= (struct rtattr
*)skb_tail_pointer(skb
);
642 RTA_PUT(skb
, TCA_ACT_TAB
, 0, NULL
);
644 if (tcf_action_dump(skb
, a
, bind
, ref
) < 0)
647 x
->rta_len
= skb_tail_pointer(skb
) - (u8
*)x
;
649 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
659 act_get_notify(u32 pid
, struct nlmsghdr
*n
, struct tc_action
*a
, int event
)
663 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
666 if (tca_get_fill(skb
, a
, pid
, n
->nlmsg_seq
, 0, event
, 0, 0) <= 0) {
671 return rtnl_unicast(skb
, pid
);
674 static struct tc_action
*
675 tcf_action_get_1(struct rtattr
*rta
, struct nlmsghdr
*n
, u32 pid
, int *err
)
677 struct rtattr
*tb
[TCA_ACT_MAX
+1];
682 if (rtattr_parse_nested(tb
, TCA_ACT_MAX
, rta
) < 0)
685 if (tb
[TCA_ACT_INDEX
- 1] == NULL
||
686 RTA_PAYLOAD(tb
[TCA_ACT_INDEX
- 1]) < sizeof(index
))
688 index
= *(int *)RTA_DATA(tb
[TCA_ACT_INDEX
- 1]);
691 a
= kzalloc(sizeof(struct tc_action
), GFP_KERNEL
);
696 a
->ops
= tc_lookup_action(tb
[TCA_ACT_KIND
- 1]);
699 if (a
->ops
->lookup
== NULL
)
702 if (a
->ops
->lookup(a
, index
) == 0)
705 module_put(a
->ops
->owner
);
709 module_put(a
->ops
->owner
);
715 static void cleanup_a(struct tc_action
*act
)
719 for (a
= act
; a
; a
= act
) {
725 static struct tc_action
*create_a(int i
)
727 struct tc_action
*act
;
729 act
= kzalloc(sizeof(*act
), GFP_KERNEL
);
731 printk("create_a: failed to alloc!\n");
738 static int tca_action_flush(struct rtattr
*rta
, struct nlmsghdr
*n
, u32 pid
)
742 struct nlmsghdr
*nlh
;
744 struct netlink_callback dcb
;
746 struct rtattr
*tb
[TCA_ACT_MAX
+1];
748 struct tc_action
*a
= create_a(0);
752 printk("tca_action_flush: couldnt create tc_action\n");
756 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
758 printk("tca_action_flush: failed skb alloc\n");
763 b
= skb_tail_pointer(skb
);
765 if (rtattr_parse_nested(tb
, TCA_ACT_MAX
, rta
) < 0)
768 kind
= tb
[TCA_ACT_KIND
-1];
769 a
->ops
= tc_lookup_action(kind
);
773 nlh
= NLMSG_PUT(skb
, pid
, n
->nlmsg_seq
, RTM_DELACTION
, sizeof(*t
));
775 t
->tca_family
= AF_UNSPEC
;
779 x
= (struct rtattr
*)skb_tail_pointer(skb
);
780 RTA_PUT(skb
, TCA_ACT_TAB
, 0, NULL
);
782 err
= a
->ops
->walk(skb
, &dcb
, RTM_DELACTION
, a
);
786 x
->rta_len
= skb_tail_pointer(skb
) - (u8
*)x
;
788 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
789 nlh
->nlmsg_flags
|= NLM_F_ROOT
;
790 module_put(a
->ops
->owner
);
792 err
= rtnetlink_send(skb
, pid
, RTNLGRP_TC
, n
->nlmsg_flags
&NLM_F_ECHO
);
800 module_put(a
->ops
->owner
);
808 tca_action_gd(struct rtattr
*rta
, struct nlmsghdr
*n
, u32 pid
, int event
)
811 struct rtattr
*tb
[TCA_ACT_MAX_PRIO
+1];
812 struct tc_action
*head
= NULL
, *act
, *act_prev
= NULL
;
814 if (rtattr_parse_nested(tb
, TCA_ACT_MAX_PRIO
, rta
) < 0)
817 if (event
== RTM_DELACTION
&& n
->nlmsg_flags
&NLM_F_ROOT
) {
818 if (tb
[0] != NULL
&& tb
[1] == NULL
)
819 return tca_action_flush(tb
[0], n
, pid
);
822 for (i
=0; i
< TCA_ACT_MAX_PRIO
&& tb
[i
]; i
++) {
823 act
= tcf_action_get_1(tb
[i
], n
, pid
, &ret
);
831 act_prev
->next
= act
;
835 if (event
== RTM_GETACTION
)
836 ret
= act_get_notify(pid
, n
, head
, event
);
840 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
846 if (tca_get_fill(skb
, head
, pid
, n
->nlmsg_seq
, 0, event
,
853 /* now do the delete */
854 tcf_action_destroy(head
, 0);
855 ret
= rtnetlink_send(skb
, pid
, RTNLGRP_TC
,
856 n
->nlmsg_flags
&NLM_F_ECHO
);
866 static int tcf_add_notify(struct tc_action
*a
, u32 pid
, u32 seq
, int event
,
870 struct nlmsghdr
*nlh
;
876 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
880 b
= skb_tail_pointer(skb
);
882 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*t
), flags
);
884 t
->tca_family
= AF_UNSPEC
;
888 x
= (struct rtattr
*)skb_tail_pointer(skb
);
889 RTA_PUT(skb
, TCA_ACT_TAB
, 0, NULL
);
891 if (tcf_action_dump(skb
, a
, 0, 0) < 0)
894 x
->rta_len
= skb_tail_pointer(skb
) - (u8
*)x
;
896 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
897 NETLINK_CB(skb
).dst_group
= RTNLGRP_TC
;
899 err
= rtnetlink_send(skb
, pid
, RTNLGRP_TC
, flags
&NLM_F_ECHO
);
912 tcf_action_add(struct rtattr
*rta
, struct nlmsghdr
*n
, u32 pid
, int ovr
)
915 struct tc_action
*act
;
917 u32 seq
= n
->nlmsg_seq
;
919 act
= tcf_action_init(rta
, NULL
, NULL
, ovr
, 0, &ret
);
923 /* dump then free all the actions after update; inserted policy
926 ret
= tcf_add_notify(act
, pid
, seq
, RTM_NEWACTION
, n
->nlmsg_flags
);
927 for (a
= act
; a
; a
= act
) {
935 static int tc_ctl_action(struct sk_buff
*skb
, struct nlmsghdr
*n
, void *arg
)
937 struct rtattr
**tca
= arg
;
938 u32 pid
= skb
? NETLINK_CB(skb
).pid
: 0;
939 int ret
= 0, ovr
= 0;
941 if (tca
[TCA_ACT_TAB
-1] == NULL
) {
942 printk("tc_ctl_action: received NO action attribs\n");
946 /* n->nlmsg_flags&NLM_F_CREATE
948 switch (n
->nlmsg_type
) {
950 /* we are going to assume all other flags
951 * imply create only if it doesnt exist
952 * Note that CREATE | EXCL implies that
953 * but since we want avoid ambiguity (eg when flags
954 * is zero) then just set this
956 if (n
->nlmsg_flags
&NLM_F_REPLACE
)
959 ret
= tcf_action_add(tca
[TCA_ACT_TAB
-1], n
, pid
, ovr
);
964 ret
= tca_action_gd(tca
[TCA_ACT_TAB
-1], n
, pid
, RTM_DELACTION
);
967 ret
= tca_action_gd(tca
[TCA_ACT_TAB
-1], n
, pid
, RTM_GETACTION
);
976 static struct rtattr
*
977 find_dump_kind(struct nlmsghdr
*n
)
979 struct rtattr
*tb1
, *tb2
[TCA_ACT_MAX
+1];
980 struct rtattr
*tb
[TCA_ACT_MAX_PRIO
+ 1];
981 struct rtattr
*rta
[TCAA_MAX
+ 1];
983 int min_len
= NLMSG_LENGTH(sizeof(struct tcamsg
));
984 int attrlen
= n
->nlmsg_len
- NLMSG_ALIGN(min_len
);
985 struct rtattr
*attr
= (void *) n
+ NLMSG_ALIGN(min_len
);
987 if (rtattr_parse(rta
, TCAA_MAX
, attr
, attrlen
) < 0)
989 tb1
= rta
[TCA_ACT_TAB
- 1];
993 if (rtattr_parse(tb
, TCA_ACT_MAX_PRIO
, RTA_DATA(tb1
),
994 NLMSG_ALIGN(RTA_PAYLOAD(tb1
))) < 0)
999 if (rtattr_parse(tb2
, TCA_ACT_MAX
, RTA_DATA(tb
[0]),
1000 RTA_PAYLOAD(tb
[0])) < 0)
1002 kind
= tb2
[TCA_ACT_KIND
-1];
1008 tc_dump_action(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1010 struct nlmsghdr
*nlh
;
1011 unsigned char *b
= skb_tail_pointer(skb
);
1013 struct tc_action_ops
*a_o
;
1016 struct tcamsg
*t
= (struct tcamsg
*) NLMSG_DATA(cb
->nlh
);
1017 struct rtattr
*kind
= find_dump_kind(cb
->nlh
);
1020 printk("tc_dump_action: action bad kind\n");
1024 a_o
= tc_lookup_action(kind
);
1029 memset(&a
, 0, sizeof(struct tc_action
));
1032 if (a_o
->walk
== NULL
) {
1033 printk("tc_dump_action: %s !capable of dumping table\n", a_o
->kind
);
1034 goto rtattr_failure
;
1037 nlh
= NLMSG_PUT(skb
, NETLINK_CB(cb
->skb
).pid
, cb
->nlh
->nlmsg_seq
,
1038 cb
->nlh
->nlmsg_type
, sizeof(*t
));
1039 t
= NLMSG_DATA(nlh
);
1040 t
->tca_family
= AF_UNSPEC
;
1044 x
= (struct rtattr
*)skb_tail_pointer(skb
);
1045 RTA_PUT(skb
, TCA_ACT_TAB
, 0, NULL
);
1047 ret
= a_o
->walk(skb
, cb
, RTM_GETACTION
, &a
);
1049 goto rtattr_failure
;
1052 x
->rta_len
= skb_tail_pointer(skb
) - (u8
*)x
;
1057 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1058 if (NETLINK_CB(cb
->skb
).pid
&& ret
)
1059 nlh
->nlmsg_flags
|= NLM_F_MULTI
;
1060 module_put(a_o
->owner
);
1065 module_put(a_o
->owner
);
1070 static int __init
tc_action_init(void)
1072 rtnl_register(PF_UNSPEC
, RTM_NEWACTION
, tc_ctl_action
, NULL
);
1073 rtnl_register(PF_UNSPEC
, RTM_DELACTION
, tc_ctl_action
, NULL
);
1074 rtnl_register(PF_UNSPEC
, RTM_GETACTION
, tc_ctl_action
, tc_dump_action
);
1079 subsys_initcall(tc_action_init
);
1081 EXPORT_SYMBOL(tcf_register_action
);
1082 EXPORT_SYMBOL(tcf_unregister_action
);
1083 EXPORT_SYMBOL(tcf_action_exec
);
1084 EXPORT_SYMBOL(tcf_action_dump_1
);