2 * net/sched/cls_api.c Packet classifier 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.
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/err.h>
23 #include <linux/skbuff.h>
24 #include <linux/init.h>
25 #include <linux/kmod.h>
26 #include <linux/err.h>
27 #include <linux/slab.h>
28 #include <net/net_namespace.h>
30 #include <net/netlink.h>
31 #include <net/pkt_sched.h>
32 #include <net/pkt_cls.h>
34 /* The list of all installed classifier types */
35 static LIST_HEAD(tcf_proto_base);
37 /* Protects list of registered TC modules. It is pure SMP lock. */
38 static DEFINE_RWLOCK(cls_mod_lock);
40 /* Find classifier type by string name */
42 static const struct tcf_proto_ops *tcf_proto_lookup_ops(const char *kind)
44 const struct tcf_proto_ops *t, *res = NULL;
47 read_lock(&cls_mod_lock);
48 list_for_each_entry(t, &tcf_proto_base, head) {
49 if (strcmp(kind, t->kind) == 0) {
50 if (try_module_get(t->owner))
55 read_unlock(&cls_mod_lock);
60 /* Register(unregister) new classifier type */
62 int register_tcf_proto_ops(struct tcf_proto_ops *ops)
64 struct tcf_proto_ops *t;
67 write_lock(&cls_mod_lock);
68 list_for_each_entry(t, &tcf_proto_base, head)
69 if (!strcmp(ops->kind, t->kind))
72 list_add_tail(&ops->head, &tcf_proto_base);
75 write_unlock(&cls_mod_lock);
78 EXPORT_SYMBOL(register_tcf_proto_ops);
80 static struct workqueue_struct *tc_filter_wq;
82 int unregister_tcf_proto_ops(struct tcf_proto_ops *ops)
84 struct tcf_proto_ops *t;
87 /* Wait for outstanding call_rcu()s, if any, from a
88 * tcf_proto_ops's destroy() handler.
91 flush_workqueue(tc_filter_wq);
93 write_lock(&cls_mod_lock);
94 list_for_each_entry(t, &tcf_proto_base, head) {
101 write_unlock(&cls_mod_lock);
104 EXPORT_SYMBOL(unregister_tcf_proto_ops);
106 bool tcf_queue_work(struct work_struct *work)
108 return queue_work(tc_filter_wq, work);
110 EXPORT_SYMBOL(tcf_queue_work);
112 /* Select new prio value from the range, managed by kernel. */
114 static inline u32 tcf_auto_prio(struct tcf_proto *tp)
116 u32 first = TC_H_MAKE(0xC0000000U, 0U);
119 first = tp->prio - 1;
121 return TC_H_MAJ(first);
124 static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol,
125 u32 prio, u32 parent, struct Qdisc *q,
126 struct tcf_chain *chain)
128 struct tcf_proto *tp;
131 tp = kzalloc(sizeof(*tp), GFP_KERNEL);
133 return ERR_PTR(-ENOBUFS);
136 tp->ops = tcf_proto_lookup_ops(kind);
138 #ifdef CONFIG_MODULES
140 request_module("cls_%s", kind);
142 tp->ops = tcf_proto_lookup_ops(kind);
143 /* We dropped the RTNL semaphore in order to perform
144 * the module load. So, even if we succeeded in loading
145 * the module we have to replay the request. We indicate
146 * this using -EAGAIN.
149 module_put(tp->ops->owner);
157 tp->classify = tp->ops->classify;
158 tp->protocol = protocol;
160 tp->classid = parent;
164 err = tp->ops->init(tp);
166 module_put(tp->ops->owner);
176 static void tcf_proto_destroy(struct tcf_proto *tp)
178 tp->ops->destroy(tp);
179 module_put(tp->ops->owner);
183 static struct tcf_chain *tcf_chain_create(struct tcf_block *block,
186 struct tcf_chain *chain;
188 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
191 list_add_tail(&chain->list, &block->chain_list);
192 chain->block = block;
193 chain->index = chain_index;
198 static void tcf_chain_head_change(struct tcf_chain *chain,
199 struct tcf_proto *tp_head)
201 if (chain->chain_head_change)
202 chain->chain_head_change(tp_head,
203 chain->chain_head_change_priv);
206 static void tcf_chain_flush(struct tcf_chain *chain)
208 struct tcf_proto *tp = rtnl_dereference(chain->filter_chain);
210 tcf_chain_head_change(chain, NULL);
212 RCU_INIT_POINTER(chain->filter_chain, tp->next);
213 tcf_proto_destroy(tp);
214 tp = rtnl_dereference(chain->filter_chain);
215 tcf_chain_put(chain);
219 static void tcf_chain_destroy(struct tcf_chain *chain)
221 list_del(&chain->list);
225 static void tcf_chain_hold(struct tcf_chain *chain)
230 struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index,
233 struct tcf_chain *chain;
235 list_for_each_entry(chain, &block->chain_list, list) {
236 if (chain->index == chain_index) {
237 tcf_chain_hold(chain);
242 return create ? tcf_chain_create(block, chain_index) : NULL;
244 EXPORT_SYMBOL(tcf_chain_get);
246 void tcf_chain_put(struct tcf_chain *chain)
248 if (--chain->refcnt == 0)
249 tcf_chain_destroy(chain);
251 EXPORT_SYMBOL(tcf_chain_put);
253 static void tcf_block_offload_cmd(struct tcf_block *block, struct Qdisc *q,
254 struct tcf_block_ext_info *ei,
255 enum tc_block_command command)
257 struct net_device *dev = q->dev_queue->dev;
258 struct tc_block_offload bo = {};
260 if (!dev->netdev_ops->ndo_setup_tc)
262 bo.command = command;
263 bo.binder_type = ei->binder_type;
265 dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo);
268 static void tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q,
269 struct tcf_block_ext_info *ei)
271 tcf_block_offload_cmd(block, q, ei, TC_BLOCK_BIND);
274 static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q,
275 struct tcf_block_ext_info *ei)
277 tcf_block_offload_cmd(block, q, ei, TC_BLOCK_UNBIND);
280 int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
281 struct tcf_block_ext_info *ei)
283 struct tcf_block *block = kzalloc(sizeof(*block), GFP_KERNEL);
284 struct tcf_chain *chain;
289 INIT_LIST_HEAD(&block->chain_list);
290 INIT_LIST_HEAD(&block->cb_list);
292 /* Create chain 0 by default, it has to be always present. */
293 chain = tcf_chain_create(block, 0);
296 goto err_chain_create;
298 WARN_ON(!ei->chain_head_change);
299 chain->chain_head_change = ei->chain_head_change;
300 chain->chain_head_change_priv = ei->chain_head_change_priv;
301 block->net = qdisc_net(q);
303 tcf_block_offload_bind(block, q, ei);
311 EXPORT_SYMBOL(tcf_block_get_ext);
313 static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv)
315 struct tcf_proto __rcu **p_filter_chain = priv;
317 rcu_assign_pointer(*p_filter_chain, tp_head);
320 int tcf_block_get(struct tcf_block **p_block,
321 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q)
323 struct tcf_block_ext_info ei = {
324 .chain_head_change = tcf_chain_head_change_dflt,
325 .chain_head_change_priv = p_filter_chain,
328 WARN_ON(!p_filter_chain);
329 return tcf_block_get_ext(p_block, q, &ei);
331 EXPORT_SYMBOL(tcf_block_get);
333 static void tcf_block_put_final(struct work_struct *work)
335 struct tcf_block *block = container_of(work, struct tcf_block, work);
336 struct tcf_chain *chain, *tmp;
340 /* At this point, all the chains should have refcnt == 1. */
341 list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
342 tcf_chain_put(chain);
347 /* XXX: Standalone actions are not allowed to jump to any chain, and bound
348 * actions should be all removed after flushing.
350 void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
351 struct tcf_block_ext_info *ei)
353 struct tcf_chain *chain;
355 /* Hold a refcnt for all chains, except 0, so that they don't disappear
356 * while we are iterating.
358 list_for_each_entry(chain, &block->chain_list, list)
360 tcf_chain_hold(chain);
362 list_for_each_entry(chain, &block->chain_list, list)
363 tcf_chain_flush(chain);
365 tcf_block_offload_unbind(block, q, ei);
367 INIT_WORK(&block->work, tcf_block_put_final);
368 /* Wait for existing RCU callbacks to cool down, make sure their works
369 * have been queued before this. We can not flush pending works here
370 * because we are holding the RTNL lock.
373 tcf_queue_work(&block->work);
375 EXPORT_SYMBOL(tcf_block_put_ext);
377 void tcf_block_put(struct tcf_block *block)
379 struct tcf_block_ext_info ei = {0, };
383 tcf_block_put_ext(block, block->q, &ei);
386 EXPORT_SYMBOL(tcf_block_put);
388 struct tcf_block_cb {
389 struct list_head list;
396 void *tcf_block_cb_priv(struct tcf_block_cb *block_cb)
398 return block_cb->cb_priv;
400 EXPORT_SYMBOL(tcf_block_cb_priv);
402 struct tcf_block_cb *tcf_block_cb_lookup(struct tcf_block *block,
403 tc_setup_cb_t *cb, void *cb_ident)
404 { struct tcf_block_cb *block_cb;
406 list_for_each_entry(block_cb, &block->cb_list, list)
407 if (block_cb->cb == cb && block_cb->cb_ident == cb_ident)
411 EXPORT_SYMBOL(tcf_block_cb_lookup);
413 void tcf_block_cb_incref(struct tcf_block_cb *block_cb)
417 EXPORT_SYMBOL(tcf_block_cb_incref);
419 unsigned int tcf_block_cb_decref(struct tcf_block_cb *block_cb)
421 return --block_cb->refcnt;
423 EXPORT_SYMBOL(tcf_block_cb_decref);
425 struct tcf_block_cb *__tcf_block_cb_register(struct tcf_block *block,
426 tc_setup_cb_t *cb, void *cb_ident,
429 struct tcf_block_cb *block_cb;
431 block_cb = kzalloc(sizeof(*block_cb), GFP_KERNEL);
435 block_cb->cb_ident = cb_ident;
436 block_cb->cb_priv = cb_priv;
437 list_add(&block_cb->list, &block->cb_list);
440 EXPORT_SYMBOL(__tcf_block_cb_register);
442 int tcf_block_cb_register(struct tcf_block *block,
443 tc_setup_cb_t *cb, void *cb_ident,
446 struct tcf_block_cb *block_cb;
448 block_cb = __tcf_block_cb_register(block, cb, cb_ident, cb_priv);
449 return block_cb ? 0 : -ENOMEM;
451 EXPORT_SYMBOL(tcf_block_cb_register);
453 void __tcf_block_cb_unregister(struct tcf_block_cb *block_cb)
455 list_del(&block_cb->list);
458 EXPORT_SYMBOL(__tcf_block_cb_unregister);
460 void tcf_block_cb_unregister(struct tcf_block *block,
461 tc_setup_cb_t *cb, void *cb_ident)
463 struct tcf_block_cb *block_cb;
465 block_cb = tcf_block_cb_lookup(block, cb, cb_ident);
468 __tcf_block_cb_unregister(block_cb);
470 EXPORT_SYMBOL(tcf_block_cb_unregister);
472 static int tcf_block_cb_call(struct tcf_block *block, enum tc_setup_type type,
473 void *type_data, bool err_stop)
475 struct tcf_block_cb *block_cb;
479 list_for_each_entry(block_cb, &block->cb_list, list) {
480 err = block_cb->cb(type, type_data, block_cb->cb_priv);
491 /* Main classifier routine: scans classifier chain attached
492 * to this qdisc, (optionally) tests for protocol and asks
493 * specific classifiers.
495 int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
496 struct tcf_result *res, bool compat_mode)
498 __be16 protocol = tc_skb_protocol(skb);
499 #ifdef CONFIG_NET_CLS_ACT
500 const int max_reclassify_loop = 4;
501 const struct tcf_proto *orig_tp = tp;
502 const struct tcf_proto *first_tp;
507 for (; tp; tp = rcu_dereference_bh(tp->next)) {
510 if (tp->protocol != protocol &&
511 tp->protocol != htons(ETH_P_ALL))
514 err = tp->classify(skb, tp, res);
515 #ifdef CONFIG_NET_CLS_ACT
516 if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) {
519 } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) {
520 first_tp = res->goto_tp;
528 return TC_ACT_UNSPEC; /* signal: continue lookup */
529 #ifdef CONFIG_NET_CLS_ACT
531 if (unlikely(limit++ >= max_reclassify_loop)) {
532 net_notice_ratelimited("%s: reclassify loop, rule prio %u, protocol %02x\n",
533 tp->q->ops->id, tp->prio & 0xffff,
534 ntohs(tp->protocol));
539 protocol = tc_skb_protocol(skb);
543 EXPORT_SYMBOL(tcf_classify);
545 struct tcf_chain_info {
546 struct tcf_proto __rcu **pprev;
547 struct tcf_proto __rcu *next;
550 static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain_info *chain_info)
552 return rtnl_dereference(*chain_info->pprev);
555 static void tcf_chain_tp_insert(struct tcf_chain *chain,
556 struct tcf_chain_info *chain_info,
557 struct tcf_proto *tp)
559 if (*chain_info->pprev == chain->filter_chain)
560 tcf_chain_head_change(chain, tp);
561 RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain_info));
562 rcu_assign_pointer(*chain_info->pprev, tp);
563 tcf_chain_hold(chain);
566 static void tcf_chain_tp_remove(struct tcf_chain *chain,
567 struct tcf_chain_info *chain_info,
568 struct tcf_proto *tp)
570 struct tcf_proto *next = rtnl_dereference(chain_info->next);
572 if (tp == chain->filter_chain)
573 tcf_chain_head_change(chain, next);
574 RCU_INIT_POINTER(*chain_info->pprev, next);
575 tcf_chain_put(chain);
578 static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain,
579 struct tcf_chain_info *chain_info,
580 u32 protocol, u32 prio,
583 struct tcf_proto **pprev;
584 struct tcf_proto *tp;
586 /* Check the chain for existence of proto-tcf with this priority */
587 for (pprev = &chain->filter_chain;
588 (tp = rtnl_dereference(*pprev)); pprev = &tp->next) {
589 if (tp->prio >= prio) {
590 if (tp->prio == prio) {
592 (tp->protocol != protocol && protocol))
593 return ERR_PTR(-EINVAL);
600 chain_info->pprev = pprev;
601 chain_info->next = tp ? tp->next : NULL;
605 static int tcf_fill_node(struct net *net, struct sk_buff *skb,
606 struct tcf_proto *tp, struct Qdisc *q, u32 parent,
607 void *fh, u32 portid, u32 seq, u16 flags, int event)
610 struct nlmsghdr *nlh;
611 unsigned char *b = skb_tail_pointer(skb);
613 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags);
616 tcm = nlmsg_data(nlh);
617 tcm->tcm_family = AF_UNSPEC;
620 tcm->tcm_ifindex = qdisc_dev(q)->ifindex;
621 tcm->tcm_parent = parent;
622 tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
623 if (nla_put_string(skb, TCA_KIND, tp->ops->kind))
624 goto nla_put_failure;
625 if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index))
626 goto nla_put_failure;
630 if (tp->ops->dump && tp->ops->dump(net, tp, fh, skb, tcm) < 0)
631 goto nla_put_failure;
633 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
642 static int tfilter_notify(struct net *net, struct sk_buff *oskb,
643 struct nlmsghdr *n, struct tcf_proto *tp,
644 struct Qdisc *q, u32 parent,
645 void *fh, int event, bool unicast)
648 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
650 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
654 if (tcf_fill_node(net, skb, tp, q, parent, fh, portid, n->nlmsg_seq,
655 n->nlmsg_flags, event) <= 0) {
661 return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
663 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
664 n->nlmsg_flags & NLM_F_ECHO);
667 static int tfilter_del_notify(struct net *net, struct sk_buff *oskb,
668 struct nlmsghdr *n, struct tcf_proto *tp,
669 struct Qdisc *q, u32 parent,
670 void *fh, bool unicast, bool *last)
673 u32 portid = oskb ? NETLINK_CB(oskb).portid : 0;
676 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
680 if (tcf_fill_node(net, skb, tp, q, parent, fh, portid, n->nlmsg_seq,
681 n->nlmsg_flags, RTM_DELTFILTER) <= 0) {
686 err = tp->ops->delete(tp, fh, last);
693 return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT);
695 return rtnetlink_send(skb, net, portid, RTNLGRP_TC,
696 n->nlmsg_flags & NLM_F_ECHO);
699 static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb,
700 struct Qdisc *q, u32 parent,
702 struct tcf_chain *chain, int event)
704 struct tcf_proto *tp;
706 for (tp = rtnl_dereference(chain->filter_chain);
707 tp; tp = rtnl_dereference(tp->next))
708 tfilter_notify(net, oskb, n, tp, q, parent, 0, event, false);
711 /* Add/change/delete/get a filter node */
713 static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n,
714 struct netlink_ext_ack *extack)
716 struct net *net = sock_net(skb->sk);
717 struct nlattr *tca[TCA_MAX + 1];
724 struct net_device *dev;
726 struct tcf_chain_info chain_info;
727 struct tcf_chain *chain = NULL;
728 struct tcf_block *block;
729 struct tcf_proto *tp;
730 const struct Qdisc_class_ops *cops;
736 if ((n->nlmsg_type != RTM_GETTFILTER) &&
737 !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN))
743 err = nlmsg_parse(n, sizeof(*t), tca, TCA_MAX, NULL, extack);
748 protocol = TC_H_MIN(t->tcm_info);
749 prio = TC_H_MAJ(t->tcm_info);
750 prio_allocate = false;
751 parent = t->tcm_parent;
755 switch (n->nlmsg_type) {
757 if (protocol || t->tcm_handle || tca[TCA_KIND])
761 /* If no priority is provided by the user,
764 if (n->nlmsg_flags & NLM_F_CREATE) {
765 prio = TC_H_MAKE(0x80000000U, 0U);
766 prio_allocate = true;
775 /* Find head of filter chain. */
778 dev = __dev_get_by_index(net, t->tcm_ifindex);
787 q = qdisc_lookup(dev, TC_H_MAJ(t->tcm_parent));
792 /* Is it classful? */
793 cops = q->ops->cl_ops;
797 if (!cops->tcf_block)
800 /* Do we search for filter, attached to class? */
801 if (TC_H_MIN(parent)) {
802 cl = cops->find(q, parent);
807 /* And the last stroke */
808 block = cops->tcf_block(q, cl);
814 chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0;
815 if (chain_index > TC_ACT_EXT_VAL_MASK) {
819 chain = tcf_chain_get(block, chain_index,
820 n->nlmsg_type == RTM_NEWTFILTER);
822 err = n->nlmsg_type == RTM_NEWTFILTER ? -ENOMEM : -EINVAL;
826 if (n->nlmsg_type == RTM_DELTFILTER && prio == 0) {
827 tfilter_notify_chain(net, skb, q, parent, n,
828 chain, RTM_DELTFILTER);
829 tcf_chain_flush(chain);
834 tp = tcf_chain_tp_find(chain, &chain_info, protocol,
835 prio, prio_allocate);
842 /* Proto-tcf does not exist, create new one */
844 if (tca[TCA_KIND] == NULL || !protocol) {
849 if (n->nlmsg_type != RTM_NEWTFILTER ||
850 !(n->nlmsg_flags & NLM_F_CREATE)) {
856 prio = tcf_auto_prio(tcf_chain_tp_prev(&chain_info));
858 tp = tcf_proto_create(nla_data(tca[TCA_KIND]),
859 protocol, prio, parent, q, chain);
865 } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) {
870 fh = tp->ops->get(tp, t->tcm_handle);
873 if (n->nlmsg_type == RTM_DELTFILTER && t->tcm_handle == 0) {
874 tcf_chain_tp_remove(chain, &chain_info, tp);
875 tfilter_notify(net, skb, n, tp, q, parent, fh,
876 RTM_DELTFILTER, false);
877 tcf_proto_destroy(tp);
882 if (n->nlmsg_type != RTM_NEWTFILTER ||
883 !(n->nlmsg_flags & NLM_F_CREATE)) {
890 switch (n->nlmsg_type) {
892 if (n->nlmsg_flags & NLM_F_EXCL) {
894 tcf_proto_destroy(tp);
900 err = tfilter_del_notify(net, skb, n, tp, q, parent,
905 tcf_chain_tp_remove(chain, &chain_info, tp);
906 tcf_proto_destroy(tp);
910 err = tfilter_notify(net, skb, n, tp, q, parent, fh,
911 RTM_NEWTFILTER, true);
919 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh,
920 n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE);
923 tcf_chain_tp_insert(chain, &chain_info, tp);
924 tfilter_notify(net, skb, n, tp, q, parent, fh,
925 RTM_NEWTFILTER, false);
928 tcf_proto_destroy(tp);
933 tcf_chain_put(chain);
935 /* Replay the request. */
940 struct tcf_dump_args {
943 struct netlink_callback *cb;
948 static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg)
950 struct tcf_dump_args *a = (void *)arg;
951 struct net *net = sock_net(a->skb->sk);
953 return tcf_fill_node(net, a->skb, tp, a->q, a->parent,
954 n, NETLINK_CB(a->cb->skb).portid,
955 a->cb->nlh->nlmsg_seq, NLM_F_MULTI,
959 static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent,
960 struct sk_buff *skb, struct netlink_callback *cb,
961 long index_start, long *p_index)
963 struct net *net = sock_net(skb->sk);
964 struct tcmsg *tcm = nlmsg_data(cb->nlh);
965 struct tcf_dump_args arg;
966 struct tcf_proto *tp;
968 for (tp = rtnl_dereference(chain->filter_chain);
969 tp; tp = rtnl_dereference(tp->next), (*p_index)++) {
970 if (*p_index < index_start)
972 if (TC_H_MAJ(tcm->tcm_info) &&
973 TC_H_MAJ(tcm->tcm_info) != tp->prio)
975 if (TC_H_MIN(tcm->tcm_info) &&
976 TC_H_MIN(tcm->tcm_info) != tp->protocol)
978 if (*p_index > index_start)
979 memset(&cb->args[1], 0,
980 sizeof(cb->args) - sizeof(cb->args[0]));
981 if (cb->args[1] == 0) {
982 if (tcf_fill_node(net, skb, tp, q, parent, 0,
983 NETLINK_CB(cb->skb).portid,
984 cb->nlh->nlmsg_seq, NLM_F_MULTI,
985 RTM_NEWTFILTER) <= 0)
992 arg.w.fn = tcf_node_dump;
998 arg.w.skip = cb->args[1] - 1;
1000 tp->ops->walk(tp, &arg.w);
1001 cb->args[1] = arg.w.count + 1;
1008 /* called with RTNL */
1009 static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb)
1011 struct net *net = sock_net(skb->sk);
1012 struct nlattr *tca[TCA_MAX + 1];
1013 struct net_device *dev;
1015 struct tcf_block *block;
1016 struct tcf_chain *chain;
1017 struct tcmsg *tcm = nlmsg_data(cb->nlh);
1018 unsigned long cl = 0;
1019 const struct Qdisc_class_ops *cops;
1025 if (nlmsg_len(cb->nlh) < sizeof(*tcm))
1028 err = nlmsg_parse(cb->nlh, sizeof(*tcm), tca, TCA_MAX, NULL, NULL);
1032 dev = __dev_get_by_index(net, tcm->tcm_ifindex);
1036 parent = tcm->tcm_parent;
1041 q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent));
1045 cops = q->ops->cl_ops;
1048 if (!cops->tcf_block)
1050 if (TC_H_MIN(tcm->tcm_parent)) {
1051 cl = cops->find(q, tcm->tcm_parent);
1055 block = cops->tcf_block(q, cl);
1059 index_start = cb->args[0];
1062 list_for_each_entry(chain, &block->chain_list, list) {
1063 if (tca[TCA_CHAIN] &&
1064 nla_get_u32(tca[TCA_CHAIN]) != chain->index)
1066 if (!tcf_chain_dump(chain, q, parent, skb, cb,
1067 index_start, &index))
1071 cb->args[0] = index;
1077 void tcf_exts_destroy(struct tcf_exts *exts)
1079 #ifdef CONFIG_NET_CLS_ACT
1083 tcf_exts_to_list(exts, &actions);
1084 tcf_action_destroy(&actions, TCA_ACT_UNBIND);
1085 kfree(exts->actions);
1086 exts->nr_actions = 0;
1089 EXPORT_SYMBOL(tcf_exts_destroy);
1091 int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb,
1092 struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr)
1094 #ifdef CONFIG_NET_CLS_ACT
1096 struct tc_action *act;
1098 if (exts->police && tb[exts->police]) {
1099 act = tcf_action_init_1(net, tp, tb[exts->police],
1100 rate_tlv, "police", ovr,
1103 return PTR_ERR(act);
1105 act->type = exts->type = TCA_OLD_COMPAT;
1106 exts->actions[0] = act;
1107 exts->nr_actions = 1;
1108 } else if (exts->action && tb[exts->action]) {
1112 err = tcf_action_init(net, tp, tb[exts->action],
1113 rate_tlv, NULL, ovr, TCA_ACT_BIND,
1117 list_for_each_entry(act, &actions, list)
1118 exts->actions[i++] = act;
1119 exts->nr_actions = i;
1124 if ((exts->action && tb[exts->action]) ||
1125 (exts->police && tb[exts->police]))
1131 EXPORT_SYMBOL(tcf_exts_validate);
1133 void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src)
1135 #ifdef CONFIG_NET_CLS_ACT
1136 struct tcf_exts old = *dst;
1139 tcf_exts_destroy(&old);
1142 EXPORT_SYMBOL(tcf_exts_change);
1144 #ifdef CONFIG_NET_CLS_ACT
1145 static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts)
1147 if (exts->nr_actions == 0)
1150 return exts->actions[0];
1154 int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts)
1156 #ifdef CONFIG_NET_CLS_ACT
1157 struct nlattr *nest;
1159 if (exts->action && tcf_exts_has_actions(exts)) {
1161 * again for backward compatible mode - we want
1162 * to work with both old and new modes of entering
1163 * tc data even if iproute2 was newer - jhs
1165 if (exts->type != TCA_OLD_COMPAT) {
1168 nest = nla_nest_start(skb, exts->action);
1170 goto nla_put_failure;
1172 tcf_exts_to_list(exts, &actions);
1173 if (tcf_action_dump(skb, &actions, 0, 0) < 0)
1174 goto nla_put_failure;
1175 nla_nest_end(skb, nest);
1176 } else if (exts->police) {
1177 struct tc_action *act = tcf_exts_first_act(exts);
1178 nest = nla_nest_start(skb, exts->police);
1179 if (nest == NULL || !act)
1180 goto nla_put_failure;
1181 if (tcf_action_dump_old(skb, act, 0, 0) < 0)
1182 goto nla_put_failure;
1183 nla_nest_end(skb, nest);
1189 nla_nest_cancel(skb, nest);
1195 EXPORT_SYMBOL(tcf_exts_dump);
1198 int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts)
1200 #ifdef CONFIG_NET_CLS_ACT
1201 struct tc_action *a = tcf_exts_first_act(exts);
1202 if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0)
1207 EXPORT_SYMBOL(tcf_exts_dump_stats);
1209 static int tc_exts_setup_cb_egdev_call(struct tcf_exts *exts,
1210 enum tc_setup_type type,
1211 void *type_data, bool err_stop)
1214 #ifdef CONFIG_NET_CLS_ACT
1215 const struct tc_action *a;
1216 struct net_device *dev;
1219 if (!tcf_exts_has_actions(exts))
1222 for (i = 0; i < exts->nr_actions; i++) {
1223 a = exts->actions[i];
1224 if (!a->ops->get_dev)
1226 dev = a->ops->get_dev(a);
1229 ret = tc_setup_cb_egdev_call(dev, type, type_data, err_stop);
1238 int tc_setup_cb_call(struct tcf_block *block, struct tcf_exts *exts,
1239 enum tc_setup_type type, void *type_data, bool err_stop)
1244 ret = tcf_block_cb_call(block, type, type_data, err_stop);
1251 ret = tc_exts_setup_cb_egdev_call(exts, type, type_data, err_stop);
1258 EXPORT_SYMBOL(tc_setup_cb_call);
1260 static int __init tc_filter_init(void)
1262 tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0);
1266 rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_ctl_tfilter, NULL, 0);
1267 rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_ctl_tfilter, NULL, 0);
1268 rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_ctl_tfilter,
1269 tc_dump_tfilter, 0);
1274 subsys_initcall(tc_filter_init);