blob: 72525710b66f49ea51a4c1b3cc682e65f338ce49 [file] [log] [blame]
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001/* net/sched/sch_ingress.c - Ingress qdisc
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version
5 * 2 of the License, or (at your option) any later version.
6 *
7 * Authors: Jamal Hadi Salim 1999
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/types.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070012#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rtnetlink.h>
15#include <linux/netfilter_ipv4.h>
16#include <linux/netfilter_ipv6.h>
17#include <linux/netfilter.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070018#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21
Patrick McHardy58f4df42008-01-21 00:11:01 -080022/* Thanks to Doron Oz for this hack */
Patrick McHardy13893562008-01-21 00:13:44 -080023#if !defined(CONFIG_NET_CLS_ACT) && defined(CONFIG_NETFILTER)
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090024static int nf_registered;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27struct ingress_qdisc_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct tcf_proto *filter_list;
29};
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/* ------------------------- Class/flow operations ------------------------- */
32
Patrick McHardy58f4df42008-01-21 00:11:01 -080033static int ingress_graft(struct Qdisc *sch, unsigned long arg,
34 struct Qdisc *new, struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Patrick McHardye0378342008-01-21 00:12:32 -080036 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
40{
41 return NULL;
42}
43
Patrick McHardy58f4df42008-01-21 00:11:01 -080044static unsigned long ingress_get(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return TC_H_MIN(classid) + 1;
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static unsigned long ingress_bind_filter(struct Qdisc *sch,
Patrick McHardy58f4df42008-01-21 00:11:01 -080050 unsigned long parent, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return ingress_get(sch, classid);
53}
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static void ingress_put(struct Qdisc *sch, unsigned long cl)
56{
57}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static int ingress_change(struct Qdisc *sch, u32 classid, u32 parent,
Patrick McHardy58f4df42008-01-21 00:11:01 -080060 struct rtattr **tca, unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return 0;
63}
64
Patrick McHardy58f4df42008-01-21 00:11:01 -080065static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Patrick McHardya4781222008-01-21 00:11:21 -080067 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Patrick McHardy58f4df42008-01-21 00:11:01 -080070static struct tcf_proto **ingress_find_tcf(struct Qdisc *sch, unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Patrick McHardycb53c042008-01-21 00:11:48 -080072 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 return &p->filter_list;
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* --------------------------- Qdisc operations ---------------------------- */
78
Patrick McHardy58f4df42008-01-21 00:11:01 -080079static int ingress_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Patrick McHardycb53c042008-01-21 00:11:48 -080081 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct tcf_result res;
83 int result;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 result = tc_classify(skb, p->filter_list, &res);
Patrick McHardya4781222008-01-21 00:11:21 -080086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /*
88 * Unlike normal "enqueue" functions, ingress_enqueue returns a
89 * firewall FW_* code.
90 */
91#ifdef CONFIG_NET_CLS_ACT
92 sch->bstats.packets++;
93 sch->bstats.bytes += skb->len;
94 switch (result) {
Patrick McHardy58f4df42008-01-21 00:11:01 -080095 case TC_ACT_SHOT:
96 result = TC_ACT_SHOT;
97 sch->qstats.drops++;
98 break;
99 case TC_ACT_STOLEN:
100 case TC_ACT_QUEUED:
101 result = TC_ACT_STOLEN;
102 break;
103 case TC_ACT_RECLASSIFY:
104 case TC_ACT_OK:
105 skb->tc_index = TC_H_MIN(res.classid);
106 default:
107 result = TC_ACT_OK;
108 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 result = NF_ACCEPT;
112 sch->bstats.packets++;
113 sch->bstats.bytes += skb->len;
114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 return result;
117}
118
Patrick McHardy13893562008-01-21 00:13:44 -0800119#if !defined(CONFIG_NET_CLS_ACT) && defined(CONFIG_NETFILTER)
Patrick McHardy58f4df42008-01-21 00:11:01 -0800120static unsigned int ing_hook(unsigned int hook, struct sk_buff *skb,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900121 const struct net_device *indev,
122 const struct net_device *outdev,
123 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct Qdisc *q;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900127 struct net_device *dev = skb->dev;
Patrick McHardy58f4df42008-01-21 00:11:01 -0800128 int fwres = NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (dev->qdisc_ingress) {
Patrick McHardyfd44de72007-04-16 17:07:08 -0700131 spin_lock(&dev->ingress_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if ((q = dev->qdisc_ingress) != NULL)
133 fwres = q->enqueue(skb, q);
Patrick McHardyfd44de72007-04-16 17:07:08 -0700134 spin_unlock(&dev->ingress_lock);
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900135 }
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return fwres;
138}
139
140/* after ipt_filter */
Patrick McHardy19994142007-12-05 01:23:00 -0800141static struct nf_hook_ops ing_ops[] __read_mostly = {
Patrick McHardy41c5b312007-12-05 01:22:43 -0800142 {
143 .hook = ing_hook,
144 .owner = THIS_MODULE,
145 .pf = PF_INET,
146 .hooknum = NF_INET_PRE_ROUTING,
147 .priority = NF_IP_PRI_FILTER + 1,
148 },
149 {
150 .hook = ing_hook,
151 .owner = THIS_MODULE,
152 .pf = PF_INET6,
153 .hooknum = NF_INET_PRE_ROUTING,
154 .priority = NF_IP6_PRI_FILTER + 1,
155 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Patrick McHardy58f4df42008-01-21 00:11:01 -0800159static int ingress_init(struct Qdisc *sch, struct rtattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Patrick McHardy13893562008-01-21 00:13:44 -0800161#if !defined(CONFIG_NET_CLS_ACT) && defined(CONFIG_NETFILTER)
Patrick McHardy645a1e32008-01-21 00:13:19 -0800162 printk("Ingress scheduler: Classifier actions prefered over netfilter\n");
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (!nf_registered) {
Patrick McHardy41c5b312007-12-05 01:22:43 -0800165 if (nf_register_hooks(ing_ops, ARRAY_SIZE(ing_ops)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 printk("ingress qdisc registration error \n");
167 return -EINVAL;
168 }
169 nf_registered++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* ------------------------------------------------------------- */
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static void ingress_destroy(struct Qdisc *sch)
178{
Patrick McHardycb53c042008-01-21 00:11:48 -0800179 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Patrick McHardya48b5a62007-03-23 11:29:43 -0700181 tcf_destroy_chain(p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
185{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700186 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 struct rtattr *rta;
188
Patrick McHardy58f4df42008-01-21 00:11:01 -0800189 rta = (struct rtattr *)b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700191 rta->rta_len = skb_tail_pointer(skb) - b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return skb->len;
193
194rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700195 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -1;
197}
198
Eric Dumazet20fea082007-11-14 01:44:41 -0800199static const struct Qdisc_class_ops ingress_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .graft = ingress_graft,
201 .leaf = ingress_leaf,
202 .get = ingress_get,
203 .put = ingress_put,
204 .change = ingress_change,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 .walk = ingress_walk,
206 .tcf_chain = ingress_find_tcf,
207 .bind_tcf = ingress_bind_filter,
208 .unbind_tcf = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Eric Dumazet20fea082007-11-14 01:44:41 -0800211static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .cl_ops = &ingress_class_ops,
213 .id = "ingress",
214 .priv_size = sizeof(struct ingress_qdisc_data),
215 .enqueue = ingress_enqueue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .init = ingress_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 .destroy = ingress_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .dump = ingress_dump,
219 .owner = THIS_MODULE,
220};
221
222static int __init ingress_module_init(void)
223{
Patrick McHardy89168762008-01-21 00:14:05 -0800224 return register_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800226
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900227static void __exit ingress_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 unregister_qdisc(&ingress_qdisc_ops);
Patrick McHardy13893562008-01-21 00:13:44 -0800230#if !defined(CONFIG_NET_CLS_ACT) && defined(CONFIG_NETFILTER)
Patrick McHardy41c5b312007-12-05 01:22:43 -0800231 if (nf_registered)
232 nf_unregister_hooks(ing_ops, ARRAY_SIZE(ing_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236module_init(ingress_module_init)
237module_exit(ingress_module_exit)
238MODULE_LICENSE("GPL");