]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sched/sch_ingress.c
UBUNTU: Ubuntu-raspi2-4.13.0-1014.15
[mirror_ubuntu-artful-kernel.git] / net / sched / sch_ingress.c
CommitLineData
1f211a1b
DB
1/* net/sched/sch_ingress.c - Ingress and clsact qdisc
2 *
1da177e4
LT
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.
7 *
8 * Authors: Jamal Hadi Salim 1999
9 */
10
1da177e4
LT
11#include <linux/module.h>
12#include <linux/types.h>
0ba48053 13#include <linux/list.h>
1da177e4 14#include <linux/skbuff.h>
1da177e4 15#include <linux/rtnetlink.h>
d2788d34 16
dc5fc579 17#include <net/netlink.h>
1da177e4 18#include <net/pkt_sched.h>
cf1facda 19#include <net/pkt_cls.h>
1da177e4 20
6529eaba
JP
21struct ingress_sched_data {
22 struct tcf_block *block;
23};
24
1da177e4
LT
25static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
26{
27 return NULL;
28}
29
58f4df42 30static unsigned long ingress_get(struct Qdisc *sch, u32 classid)
1da177e4 31{
1da177e4
LT
32 return TC_H_MIN(classid) + 1;
33}
34
92c075db
DB
35static bool ingress_cl_offload(u32 classid)
36{
37 return true;
38}
39
1da177e4 40static unsigned long ingress_bind_filter(struct Qdisc *sch,
58f4df42 41 unsigned long parent, u32 classid)
1da177e4
LT
42{
43 return ingress_get(sch, classid);
44}
45
1da177e4
LT
46static void ingress_put(struct Qdisc *sch, unsigned long cl)
47{
48}
49
58f4df42 50static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker)
1da177e4 51{
1da177e4
LT
52}
53
6529eaba 54static struct tcf_block *ingress_tcf_block(struct Qdisc *sch, unsigned long cl)
1da177e4 55{
6529eaba 56 struct ingress_sched_data *q = qdisc_priv(sch);
1da177e4 57
6529eaba 58 return q->block;
1da177e4
LT
59}
60
4577139b
DB
61static int ingress_init(struct Qdisc *sch, struct nlattr *opt)
62{
6529eaba
JP
63 struct ingress_sched_data *q = qdisc_priv(sch);
64 struct net_device *dev = qdisc_dev(sch);
65 int err;
66
67 err = tcf_block_get(&q->block, &dev->ingress_cl_list);
68 if (err)
69 return err;
70
4577139b 71 net_inc_ingress_queue();
087c1a60 72 sch->flags |= TCQ_F_CPUSTATS;
4577139b
DB
73
74 return 0;
75}
76
1da177e4
LT
77static void ingress_destroy(struct Qdisc *sch)
78{
6529eaba 79 struct ingress_sched_data *q = qdisc_priv(sch);
1da177e4 80
6529eaba 81 tcf_block_put(q->block);
4577139b 82 net_dec_ingress_queue();
1da177e4
LT
83}
84
1da177e4
LT
85static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
86{
4b3550ef 87 struct nlattr *nest;
1da177e4 88
4b3550ef
PM
89 nest = nla_nest_start(skb, TCA_OPTIONS);
90 if (nest == NULL)
91 goto nla_put_failure;
d2788d34 92
d59b7d80 93 return nla_nest_end(skb, nest);
1da177e4 94
1e90474c 95nla_put_failure:
4b3550ef 96 nla_nest_cancel(skb, nest);
1da177e4
LT
97 return -1;
98}
99
20fea08b 100static const struct Qdisc_class_ops ingress_class_ops = {
1da177e4
LT
101 .leaf = ingress_leaf,
102 .get = ingress_get,
103 .put = ingress_put,
1da177e4 104 .walk = ingress_walk,
6529eaba 105 .tcf_block = ingress_tcf_block,
92c075db 106 .tcf_cl_offload = ingress_cl_offload,
1da177e4
LT
107 .bind_tcf = ingress_bind_filter,
108 .unbind_tcf = ingress_put,
1da177e4
LT
109};
110
20fea08b 111static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
1da177e4
LT
112 .cl_ops = &ingress_class_ops,
113 .id = "ingress",
6529eaba 114 .priv_size = sizeof(struct ingress_sched_data),
4577139b 115 .init = ingress_init,
1da177e4 116 .destroy = ingress_destroy,
1da177e4
LT
117 .dump = ingress_dump,
118 .owner = THIS_MODULE,
119};
120
6529eaba
JP
121struct clsact_sched_data {
122 struct tcf_block *ingress_block;
123 struct tcf_block *egress_block;
124};
125
1f211a1b
DB
126static unsigned long clsact_get(struct Qdisc *sch, u32 classid)
127{
128 switch (TC_H_MIN(classid)) {
129 case TC_H_MIN(TC_H_MIN_INGRESS):
130 case TC_H_MIN(TC_H_MIN_EGRESS):
131 return TC_H_MIN(classid);
132 default:
133 return 0;
134 }
135}
136
92c075db
DB
137static bool clsact_cl_offload(u32 classid)
138{
139 return TC_H_MIN(classid) == TC_H_MIN(TC_H_MIN_INGRESS);
140}
141
1f211a1b
DB
142static unsigned long clsact_bind_filter(struct Qdisc *sch,
143 unsigned long parent, u32 classid)
144{
145 return clsact_get(sch, classid);
146}
147
6529eaba 148static struct tcf_block *clsact_tcf_block(struct Qdisc *sch, unsigned long cl)
1f211a1b 149{
6529eaba 150 struct clsact_sched_data *q = qdisc_priv(sch);
1f211a1b
DB
151
152 switch (cl) {
153 case TC_H_MIN(TC_H_MIN_INGRESS):
6529eaba 154 return q->ingress_block;
1f211a1b 155 case TC_H_MIN(TC_H_MIN_EGRESS):
6529eaba 156 return q->egress_block;
1f211a1b
DB
157 default:
158 return NULL;
159 }
160}
161
162static int clsact_init(struct Qdisc *sch, struct nlattr *opt)
163{
6529eaba
JP
164 struct clsact_sched_data *q = qdisc_priv(sch);
165 struct net_device *dev = qdisc_dev(sch);
166 int err;
167
168 err = tcf_block_get(&q->ingress_block, &dev->ingress_cl_list);
169 if (err)
170 return err;
171
172 err = tcf_block_get(&q->egress_block, &dev->egress_cl_list);
173 if (err)
174 return err;
175
1f211a1b
DB
176 net_inc_ingress_queue();
177 net_inc_egress_queue();
178
179 sch->flags |= TCQ_F_CPUSTATS;
180
181 return 0;
182}
183
184static void clsact_destroy(struct Qdisc *sch)
185{
6529eaba 186 struct clsact_sched_data *q = qdisc_priv(sch);
1f211a1b 187
6529eaba
JP
188 tcf_block_put(q->egress_block);
189 tcf_block_put(q->ingress_block);
1f211a1b
DB
190
191 net_dec_ingress_queue();
192 net_dec_egress_queue();
193}
194
195static const struct Qdisc_class_ops clsact_class_ops = {
196 .leaf = ingress_leaf,
197 .get = clsact_get,
198 .put = ingress_put,
199 .walk = ingress_walk,
6529eaba 200 .tcf_block = clsact_tcf_block,
92c075db 201 .tcf_cl_offload = clsact_cl_offload,
1f211a1b
DB
202 .bind_tcf = clsact_bind_filter,
203 .unbind_tcf = ingress_put,
204};
205
206static struct Qdisc_ops clsact_qdisc_ops __read_mostly = {
207 .cl_ops = &clsact_class_ops,
208 .id = "clsact",
6529eaba 209 .priv_size = sizeof(struct clsact_sched_data),
1f211a1b
DB
210 .init = clsact_init,
211 .destroy = clsact_destroy,
212 .dump = ingress_dump,
213 .owner = THIS_MODULE,
214};
215
1da177e4
LT
216static int __init ingress_module_init(void)
217{
1f211a1b
DB
218 int ret;
219
220 ret = register_qdisc(&ingress_qdisc_ops);
221 if (!ret) {
222 ret = register_qdisc(&clsact_qdisc_ops);
223 if (ret)
224 unregister_qdisc(&ingress_qdisc_ops);
225 }
226
227 return ret;
1da177e4 228}
58f4df42 229
10297b99 230static void __exit ingress_module_exit(void)
1da177e4
LT
231{
232 unregister_qdisc(&ingress_qdisc_ops);
1f211a1b 233 unregister_qdisc(&clsact_qdisc_ops);
1da177e4 234}
58f4df42 235
d2788d34
DB
236module_init(ingress_module_init);
237module_exit(ingress_module_exit);
238
1f211a1b 239MODULE_ALIAS("sch_clsact");
1da177e4 240MODULE_LICENSE("GPL");