1 /* net/sched/sch_ingress.c - Ingress and clsact qdisc
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version
6 * 2 of the License, or (at your option) any later version.
8 * Authors: Jamal Hadi Salim 1999
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/list.h>
14 #include <linux/skbuff.h>
15 #include <linux/rtnetlink.h>
17 #include <net/netlink.h>
18 #include <net/pkt_sched.h>
19 #include <net/pkt_cls.h>
21 struct ingress_sched_data
{
22 struct tcf_block
*block
;
23 struct tcf_block_ext_info block_info
;
24 struct mini_Qdisc_pair miniqp
;
27 static struct Qdisc
*ingress_leaf(struct Qdisc
*sch
, unsigned long arg
)
32 static unsigned long ingress_find(struct Qdisc
*sch
, u32 classid
)
34 return TC_H_MIN(classid
) + 1;
37 static unsigned long ingress_bind_filter(struct Qdisc
*sch
,
38 unsigned long parent
, u32 classid
)
40 return ingress_find(sch
, classid
);
43 static void ingress_unbind_filter(struct Qdisc
*sch
, unsigned long cl
)
47 static void ingress_walk(struct Qdisc
*sch
, struct qdisc_walker
*walker
)
51 static struct tcf_block
*ingress_tcf_block(struct Qdisc
*sch
, unsigned long cl
,
52 struct netlink_ext_ack
*extack
)
54 struct ingress_sched_data
*q
= qdisc_priv(sch
);
59 static void clsact_chain_head_change(struct tcf_proto
*tp_head
, void *priv
)
61 struct mini_Qdisc_pair
*miniqp
= priv
;
63 mini_qdisc_pair_swap(miniqp
, tp_head
);
66 static void ingress_ingress_block_set(struct Qdisc
*sch
, u32 block_index
)
68 struct ingress_sched_data
*q
= qdisc_priv(sch
);
70 q
->block_info
.block_index
= block_index
;
73 static u32
ingress_ingress_block_get(struct Qdisc
*sch
)
75 struct ingress_sched_data
*q
= qdisc_priv(sch
);
77 return q
->block_info
.block_index
;
80 static int ingress_init(struct Qdisc
*sch
, struct nlattr
*opt
,
81 struct netlink_ext_ack
*extack
)
83 struct ingress_sched_data
*q
= qdisc_priv(sch
);
84 struct net_device
*dev
= qdisc_dev(sch
);
86 net_inc_ingress_queue();
88 mini_qdisc_pair_init(&q
->miniqp
, sch
, &dev
->miniq_ingress
);
90 q
->block_info
.binder_type
= TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS
;
91 q
->block_info
.chain_head_change
= clsact_chain_head_change
;
92 q
->block_info
.chain_head_change_priv
= &q
->miniqp
;
94 return tcf_block_get_ext(&q
->block
, sch
, &q
->block_info
, extack
);
97 static void ingress_destroy(struct Qdisc
*sch
)
99 struct ingress_sched_data
*q
= qdisc_priv(sch
);
101 tcf_block_put_ext(q
->block
, sch
, &q
->block_info
);
102 net_dec_ingress_queue();
105 static int ingress_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
109 nest
= nla_nest_start(skb
, TCA_OPTIONS
);
111 goto nla_put_failure
;
113 return nla_nest_end(skb
, nest
);
116 nla_nest_cancel(skb
, nest
);
120 static const struct Qdisc_class_ops ingress_class_ops
= {
121 .leaf
= ingress_leaf
,
122 .find
= ingress_find
,
123 .walk
= ingress_walk
,
124 .tcf_block
= ingress_tcf_block
,
125 .bind_tcf
= ingress_bind_filter
,
126 .unbind_tcf
= ingress_unbind_filter
,
129 static struct Qdisc_ops ingress_qdisc_ops __read_mostly
= {
130 .cl_ops
= &ingress_class_ops
,
132 .priv_size
= sizeof(struct ingress_sched_data
),
133 .static_flags
= TCQ_F_CPUSTATS
,
134 .init
= ingress_init
,
135 .destroy
= ingress_destroy
,
136 .dump
= ingress_dump
,
137 .ingress_block_set
= ingress_ingress_block_set
,
138 .ingress_block_get
= ingress_ingress_block_get
,
139 .owner
= THIS_MODULE
,
142 struct clsact_sched_data
{
143 struct tcf_block
*ingress_block
;
144 struct tcf_block
*egress_block
;
145 struct tcf_block_ext_info ingress_block_info
;
146 struct tcf_block_ext_info egress_block_info
;
147 struct mini_Qdisc_pair miniqp_ingress
;
148 struct mini_Qdisc_pair miniqp_egress
;
151 static unsigned long clsact_find(struct Qdisc
*sch
, u32 classid
)
153 switch (TC_H_MIN(classid
)) {
154 case TC_H_MIN(TC_H_MIN_INGRESS
):
155 case TC_H_MIN(TC_H_MIN_EGRESS
):
156 return TC_H_MIN(classid
);
162 static unsigned long clsact_bind_filter(struct Qdisc
*sch
,
163 unsigned long parent
, u32 classid
)
165 return clsact_find(sch
, classid
);
168 static struct tcf_block
*clsact_tcf_block(struct Qdisc
*sch
, unsigned long cl
,
169 struct netlink_ext_ack
*extack
)
171 struct clsact_sched_data
*q
= qdisc_priv(sch
);
174 case TC_H_MIN(TC_H_MIN_INGRESS
):
175 return q
->ingress_block
;
176 case TC_H_MIN(TC_H_MIN_EGRESS
):
177 return q
->egress_block
;
183 static void clsact_ingress_block_set(struct Qdisc
*sch
, u32 block_index
)
185 struct clsact_sched_data
*q
= qdisc_priv(sch
);
187 q
->ingress_block_info
.block_index
= block_index
;
190 static void clsact_egress_block_set(struct Qdisc
*sch
, u32 block_index
)
192 struct clsact_sched_data
*q
= qdisc_priv(sch
);
194 q
->egress_block_info
.block_index
= block_index
;
197 static u32
clsact_ingress_block_get(struct Qdisc
*sch
)
199 struct clsact_sched_data
*q
= qdisc_priv(sch
);
201 return q
->ingress_block_info
.block_index
;
204 static u32
clsact_egress_block_get(struct Qdisc
*sch
)
206 struct clsact_sched_data
*q
= qdisc_priv(sch
);
208 return q
->egress_block_info
.block_index
;
211 static int clsact_init(struct Qdisc
*sch
, struct nlattr
*opt
,
212 struct netlink_ext_ack
*extack
)
214 struct clsact_sched_data
*q
= qdisc_priv(sch
);
215 struct net_device
*dev
= qdisc_dev(sch
);
218 net_inc_ingress_queue();
219 net_inc_egress_queue();
221 mini_qdisc_pair_init(&q
->miniqp_ingress
, sch
, &dev
->miniq_ingress
);
223 q
->ingress_block_info
.binder_type
= TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS
;
224 q
->ingress_block_info
.chain_head_change
= clsact_chain_head_change
;
225 q
->ingress_block_info
.chain_head_change_priv
= &q
->miniqp_ingress
;
227 err
= tcf_block_get_ext(&q
->ingress_block
, sch
, &q
->ingress_block_info
,
232 mini_qdisc_pair_init(&q
->miniqp_egress
, sch
, &dev
->miniq_egress
);
234 q
->egress_block_info
.binder_type
= TCF_BLOCK_BINDER_TYPE_CLSACT_EGRESS
;
235 q
->egress_block_info
.chain_head_change
= clsact_chain_head_change
;
236 q
->egress_block_info
.chain_head_change_priv
= &q
->miniqp_egress
;
238 return tcf_block_get_ext(&q
->egress_block
, sch
, &q
->egress_block_info
, extack
);
241 static void clsact_destroy(struct Qdisc
*sch
)
243 struct clsact_sched_data
*q
= qdisc_priv(sch
);
245 tcf_block_put_ext(q
->egress_block
, sch
, &q
->egress_block_info
);
246 tcf_block_put_ext(q
->ingress_block
, sch
, &q
->ingress_block_info
);
248 net_dec_ingress_queue();
249 net_dec_egress_queue();
252 static const struct Qdisc_class_ops clsact_class_ops
= {
253 .leaf
= ingress_leaf
,
255 .walk
= ingress_walk
,
256 .tcf_block
= clsact_tcf_block
,
257 .bind_tcf
= clsact_bind_filter
,
258 .unbind_tcf
= ingress_unbind_filter
,
261 static struct Qdisc_ops clsact_qdisc_ops __read_mostly
= {
262 .cl_ops
= &clsact_class_ops
,
264 .priv_size
= sizeof(struct clsact_sched_data
),
265 .static_flags
= TCQ_F_CPUSTATS
,
267 .destroy
= clsact_destroy
,
268 .dump
= ingress_dump
,
269 .ingress_block_set
= clsact_ingress_block_set
,
270 .egress_block_set
= clsact_egress_block_set
,
271 .ingress_block_get
= clsact_ingress_block_get
,
272 .egress_block_get
= clsact_egress_block_get
,
273 .owner
= THIS_MODULE
,
276 static int __init
ingress_module_init(void)
280 ret
= register_qdisc(&ingress_qdisc_ops
);
282 ret
= register_qdisc(&clsact_qdisc_ops
);
284 unregister_qdisc(&ingress_qdisc_ops
);
290 static void __exit
ingress_module_exit(void)
292 unregister_qdisc(&ingress_qdisc_ops
);
293 unregister_qdisc(&clsact_qdisc_ops
);
296 module_init(ingress_module_init
);
297 module_exit(ingress_module_exit
);
299 MODULE_ALIAS("sch_clsact");
300 MODULE_LICENSE("GPL");